Fix typos with codespell

Using codespell 2.2-dev from current git.

Fix a couple incorrect uses of gendered pronouns.
This commit is contained in:
Rémi Verschelde
2022-06-19 13:47:53 +02:00
parent faf8a7b19e
commit 4137578369
5 changed files with 5 additions and 5 deletions

View File

@@ -240,7 +240,7 @@ bool EditorExportPlatform::fill_log_messages(RichTextLabel *p_log, Error p_err)
} else {
p_log->add_image(EditorNode::get_singleton()->get_gui_base()->get_icon("StatusSuccess", "EditorIcons"), 16 * EDSCALE, 16 * EDSCALE, RichTextLabel::INLINE_ALIGN_CENTER);
p_log->add_text(" ");
p_log->add_text(TTR("Completed sucessfully."));
p_log->add_text(TTR("Completed successfully."));
if (msg_count > 0) {
has_messages = true;
}