diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2016-06-19 15:57:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-19 15:57:05 +0200 |
commit | 0cf4bba6e2c3cb8c046839feebe04a76ccaa9315 (patch) | |
tree | b37870e0fa0ae4859a414e847602b2cf47338607 /tools/editor | |
parent | f84ffb9bedf307721f50d36eb5a9e5905a52a583 (diff) | |
parent | 0454e1d6cbe95fa6708ea27525ea78eb181590d4 (diff) |
Merge pull request #5293 from Paulb23/ttr_add_font_extention
Made .fnt warning translatable
Diffstat (limited to 'tools/editor')
-rw-r--r-- | tools/editor/io_plugins/editor_font_import_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/editor/io_plugins/editor_font_import_plugin.cpp b/tools/editor/io_plugins/editor_font_import_plugin.cpp index a6de849e44..caa838cfd1 100644 --- a/tools/editor/io_plugins/editor_font_import_plugin.cpp +++ b/tools/editor/io_plugins/editor_font_import_plugin.cpp @@ -533,7 +533,7 @@ class EditorFontImportDialog : public ConfirmationDialog { } if (dest->get_line_edit()->get_text().extension().to_lower() != "fnt") { - error_dialog->set_text("Invalid file extension. \nPlease use .fnt"); + error_dialog->set_text(TTR("Invalid file extension. \nPlease use .fnt")); error_dialog->popup_centered(Size2(200,100)); return; } |