Fix (unreported) untranslatable title of Quick Favorites menu.

Side minor fix found while checking on T66235.
This commit is contained in:
Bastien Montagne 2019-07-02 15:40:31 +02:00
parent 1f65606911
commit c362ca3b8a
1 changed files with 1 additions and 1 deletions

View File

@ -298,7 +298,7 @@ void ED_screen_user_menu_register(void)
{
MenuType *mt = MEM_callocN(sizeof(MenuType), __func__);
strcpy(mt->idname, "SCREEN_MT_user_menu");
strcpy(mt->label, "Quick Favorites");
strcpy(mt->label, N_("Quick Favorites"));
strcpy(mt->translation_context, BLT_I18NCONTEXT_DEFAULT_BPYRNA);
mt->draw = screen_user_menu_draw;
WM_menutype_add(mt);