summaryrefslogtreecommitdiff
path: root/src/ui/window.c
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2021-04-13 14:20:27 +0300
committerJaakko Keränen <jaakko.keranen@iki.fi>2021-04-13 14:20:27 +0300
commit4fcf0832ea5f1553115f7da1fe63a218239f5dcb (patch)
tree474c8860053d82ecc5ff0a197fabe1957335a7f0 /src/ui/window.c
parent488dcbf40df6bf80b1042d5234b60ee2973b2818 (diff)
Mobile: Use string IDs in menus
Diffstat (limited to 'src/ui/window.c')
-rw-r--r--src/ui/window.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ui/window.c b/src/ui/window.c
index 970eeeac..69669c2c 100644
--- a/src/ui/window.c
+++ b/src/ui/window.c
@@ -338,12 +338,12 @@ static void removeMacMenus_(void) {
338 338
339#if defined (iPlatformAppleMobile) 339#if defined (iPlatformAppleMobile)
340static const iMenuItem identityButtonMenuItems_[] = { 340static const iMenuItem identityButtonMenuItems_[] = {
341 { "No Active Identity", 0, 0, "ident.showactive" }, 341 { "${menu.identity.notactive}", 0, 0, "ident.showactive" },
342 { "---", 0, 0, NULL }, 342 { "---", 0, 0, NULL },
343 { add_Icon " New Identity...", SDLK_n, KMOD_PRIMARY | KMOD_SHIFT, "ident.new" }, 343 { add_Icon " ${menu.identity.new}", SDLK_n, KMOD_PRIMARY | KMOD_SHIFT, "ident.new" },
344 { "Import...", SDLK_i, KMOD_PRIMARY | KMOD_SHIFT, "ident.import" }, 344 { "${menu.identity.import}", SDLK_i, KMOD_PRIMARY | KMOD_SHIFT, "ident.import" },
345 { "---", 0, 0, NULL }, 345 { "---", 0, 0, NULL },
346 { person_Icon " Show Identities", 0, 0, "toolbar.showident" }, 346 { person_Icon " ${menu.show.identities}", 0, 0, "toolbar.showident" },
347}; 347};
348#else /* desktop */ 348#else /* desktop */
349static const iMenuItem identityButtonMenuItems_[] = { 349static const iMenuItem identityButtonMenuItems_[] = {