Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Yurkovich <jesse.y@gmail.com>2022-03-19 06:31:24 +0300
committerJesse Yurkovich <jesse.y@gmail.com>2022-03-19 06:31:24 +0300
commitc655146b87fe20853e52b87991b46732a04d749e (patch)
tree30c3604a8a6df3e89c8e00a3716a71df6b9f9362 /release/scripts/startup/bl_operators
parent7fed213ba40d6f36282b09245ea459b22d4f6c5b (diff)
Fix T96584: Properly translate operator on splash screen
The previous fix looks to have been accidentally removed as part of rB7aec5b06227. Restore the change.
Diffstat (limited to 'release/scripts/startup/bl_operators')
-rw-r--r--release/scripts/startup/bl_operators/wm.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_operators/wm.py b/release/scripts/startup/bl_operators/wm.py
index a7f401afad1..d6e5604fde0 100644
--- a/release/scripts/startup/bl_operators/wm.py
+++ b/release/scripts/startup/bl_operators/wm.py
@@ -2996,7 +2996,7 @@ class WM_MT_splash_quick_setup(Menu):
old_version = bpy.types.PREFERENCES_OT_copy_prev.previous_version()
if bpy.types.PREFERENCES_OT_copy_prev.poll(context) and old_version:
- sub.operator("preferences.copy_prev", text="Load %d.%d Settings" % old_version)
+ sub.operator("preferences.copy_prev", text=iface_("Load %d.%d Settings", "Operator") % old_version)
sub.operator("wm.save_userpref", text="Save New Settings")
else:
sub.label()