diff options
author | Paulb23 <p_batty@hotmail.co.uk> | 2016-06-19 14:33:42 +0100 |
---|---|---|
committer | Paulb23 <p_batty@hotmail.co.uk> | 2016-06-19 14:33:42 +0100 |
commit | 0454e1d6cbe95fa6708ea27525ea78eb181590d4 (patch) | |
tree | ae2f5f8a95e8dfc166e7c91e8523337cb6cffb63 /tools/editor/io_plugins | |
parent | 37d1bf4d53c9e057fa344d37ce208874bf319268 (diff) |
Made .fnt warning translatable
Diffstat (limited to 'tools/editor/io_plugins')
-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; } |