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:
authorBastien Montagne <montagne29@wanadoo.fr>2019-05-13 18:57:13 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2019-05-13 18:58:25 +0300
commit93cabce3a156a07a76c26d7f3e78c3bc3212f623 (patch)
treeb09980d02b8b5fb277a4df8673d2446a59ef714c /source/blender/windowmanager/intern/wm_keymap.c
parent17e172b6c156e83d955675d5b3a3152da7769f02 (diff)
I18n Disambiguation: "Shift".
Give WM context to the shortcut, since this is more specific meaning than usual 'shifting' one... Part of T43295.
Diffstat (limited to 'source/blender/windowmanager/intern/wm_keymap.c')
-rw-r--r--source/blender/windowmanager/intern/wm_keymap.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/windowmanager/intern/wm_keymap.c b/source/blender/windowmanager/intern/wm_keymap.c
index bae9a5de1e6..c41ca67f795 100644
--- a/source/blender/windowmanager/intern/wm_keymap.c
+++ b/source/blender/windowmanager/intern/wm_keymap.c
@@ -1120,7 +1120,8 @@ const char *WM_key_event_string(const short type, const bool compact)
if (platform == MACOS) {
icon_glyph = "\xe2\x87\xa7";
}
- return key_event_icon_or_text(font_id, IFACE_("Shift"), icon_glyph);
+ return key_event_icon_or_text(
+ font_id, CTX_IFACE_(BLT_I18NCONTEXT_ID_WINDOWMANAGER, "Shift"), icon_glyph);
}
case LEFTCTRLKEY:
case RIGHTCTRLKEY: