diff options
| author | Rémi Verschelde | 2016-05-21 16:34:56 +0200 |
|---|---|---|
| committer | Rémi Verschelde | 2016-05-21 16:34:56 +0200 |
| commit | be053e62860a6b9d712e6ece4cde025569ff2efb (patch) | |
| tree | 74da8d8fd753cffb9ec7009c2eee13741a0ffb3b /tools/editor/plugins/spatial_editor_plugin.cpp | |
| parent | a65a66b2a3b44ae93258cbdab7388752d1a05fad (diff) | |
| download | godot-be053e62860a6b9d712e6ece4cde025569ff2efb.tar.gz godot-be053e62860a6b9d712e6ece4cde025569ff2efb.tar.zst godot-be053e62860a6b9d712e6ece4cde025569ff2efb.zip | |
i18n: Use %d instead of %i in vformat
Fixes #4742.
Diffstat (limited to 'tools/editor/plugins/spatial_editor_plugin.cpp')
| -rw-r--r-- | tools/editor/plugins/spatial_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/editor/plugins/spatial_editor_plugin.cpp b/tools/editor/plugins/spatial_editor_plugin.cpp index fa99a3d33..55485d8c9 100644 --- a/tools/editor/plugins/spatial_editor_plugin.cpp +++ b/tools/editor/plugins/spatial_editor_plugin.cpp @@ -1353,7 +1353,7 @@ void SpatialEditorViewport::_sinput(const InputEvent &p_event) { scale = Math::stepify(scale,spatial_editor->get_scale_snap()); } - set_message(vformat(TTR("Scaling to %s\%."),String::num(scale,1))); + set_message(vformat(TTR("Scaling to %s%%."),String::num(scale,1))); scale/=100.0; Transform r; |
