I18n: fix footer in the text editor when loading an external file #106716

Merged
Bastien Montagne merged 1 commits from pioverfour/blender:dp_fix_text_footer into main 2023-04-12 12:19:11 +02:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 4b8af5e13a - Show all commits

View File

@ -66,12 +66,12 @@ class TEXT_HT_footer(Header):
if text.filepath:
if text.is_dirty:
row.label(
text=iface_("File: *%s (unsaved)" % text.filepath),
text=iface_("File: *%s (unsaved)") % text.filepath,
translate=False,
)
else:
row.label(
text=iface_("File: %s" % text.filepath),
text=iface_("File: %s") % text.filepath,
translate=False,
)
else: