summaryrefslogtreecommitdiffstats
path: root/editor/localization_editor.h
diff options
context:
space:
mode:
authorPucklaMotzer09 <jonaas.pucher000000@gmail.com>2022-01-02 18:56:33 +0100
committerPucklaMotzer09 <jonaas.pucher000000@gmail.com>2022-08-02 12:36:40 +0200
commit897d02e2a055cecbc88f30004d633c182957ac49 (patch)
treeca2358e0771649292e60ad8bc1a6caccbd8dda97 /editor/localization_editor.h
parent119b2874c39aeb0aff51603fbf00f75b414a1730 (diff)
downloadredot-engine-897d02e2a055cecbc88f30004d633c182957ac49.tar.gz
Change translation remaps if files are moved
Diffstat (limited to 'editor/localization_editor.h')
-rw-r--r--editor/localization_editor.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/editor/localization_editor.h b/editor/localization_editor.h
index 4b41a90cc2..7d93f3d6f8 100644
--- a/editor/localization_editor.h
+++ b/editor/localization_editor.h
@@ -36,6 +36,7 @@
#include "scene/gui/tree.h"
class EditorFileDialog;
+class FileSystemDock;
class LocalizationEditor : public VBoxContainer {
GDCLASS(LocalizationEditor, VBoxContainer);
@@ -81,6 +82,8 @@ class LocalizationEditor : public VBoxContainer {
void _pot_generate(const String &p_file);
void _update_pot_file_extensions();
+ void _filesystem_files_moved(const String &p_old_file, const String &p_new_file);
+
protected:
void _notification(int p_what);
static void _bind_methods();
@@ -88,6 +91,7 @@ protected:
public:
void add_translation(const String &p_translation);
void update_translations();
+ void connect_filesystem_dock_signals(FileSystemDock *p_fs_dock);
LocalizationEditor();
};