You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-07 12:30:27 +00:00
Change ".." punctuation for "..." in editor strings (#16507)
This commit is contained in:
committed by
Max Hilbrunner
parent
ca25f1e6ea
commit
1c419531a0
@@ -94,7 +94,7 @@ void Particles2DEditorPlugin::_generate_visibility_rect() {
|
||||
while (running < time) {
|
||||
|
||||
uint64_t ticks = OS::get_singleton()->get_ticks_usec();
|
||||
ep.step("Generating..", int(running), true);
|
||||
ep.step("Generating...", int(running), true);
|
||||
OS::get_singleton()->delay_usec(1000);
|
||||
|
||||
Rect2 capture = particles->capture_rect();
|
||||
@@ -229,7 +229,7 @@ void Particles2DEditorPlugin::_generate_emission_mask() {
|
||||
valid_normals.resize(vpc);
|
||||
}
|
||||
|
||||
ERR_EXPLAIN(TTR("No pixels with transparency > 128 in image.."));
|
||||
ERR_EXPLAIN(TTR("No pixels with transparency > 128 in image..."));
|
||||
ERR_FAIL_COND(valid_positions.size() == 0);
|
||||
|
||||
PoolVector<uint8_t> texdata;
|
||||
|
||||
Reference in New Issue
Block a user