summaryrefslogtreecommitdiff
path: root/src/ui/window.c
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2021-03-22 17:28:05 +0200
committerJaakko Keränen <jaakko.keranen@iki.fi>2021-03-22 17:28:05 +0200
commit36ad6cd20a07aecf69e92e9fa724beef14be536a (patch)
treee2b130724be663b48ae7949327ffca158c35bae1 /src/ui/window.c
parent157f0be146bf8122a70dcf5940f1033a6462c34c (diff)
Basic language string mechanism
Added a set of English strings. Lang can load a language. LabelWidget can replace IDs in the label. IssueID #192
Diffstat (limited to 'src/ui/window.c')
-rw-r--r--src/ui/window.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/window.c b/src/ui/window.c
index b8b2853e..2d1deb72 100644
--- a/src/ui/window.c
+++ b/src/ui/window.c
@@ -188,8 +188,8 @@ static iBool handleRootCommands_(iWidget *root, const char *cmd) {
188#if !defined (iPlatformAppleMobile) 188#if !defined (iPlatformAppleMobile)
189/* TODO: Submenus wouldn't hurt here. */ 189/* TODO: Submenus wouldn't hurt here. */
190static const iMenuItem navMenuItems_[] = { 190static const iMenuItem navMenuItems_[] = {
191 { add_Icon " ${menu.nav.newtab}", 't', KMOD_PRIMARY, "tabs.new" }, 191 { add_Icon " ${menu.newtab}", 't', KMOD_PRIMARY, "tabs.new" },
192 { "${menu.nav.openlocation}", SDLK_l, KMOD_PRIMARY, "navigate.focus" }, 192 { "${menu.openlocation}", SDLK_l, KMOD_PRIMARY, "navigate.focus" },
193 { "---", 0, 0, NULL }, 193 { "---", 0, 0, NULL },
194 { download_Icon " " saveToDownloads_Label, SDLK_s, KMOD_PRIMARY, "document.save" }, 194 { download_Icon " " saveToDownloads_Label, SDLK_s, KMOD_PRIMARY, "document.save" },
195 { "${menu.copy.source}", SDLK_c, KMOD_PRIMARY, "copy" }, 195 { "${menu.copy.source}", SDLK_c, KMOD_PRIMARY, "copy" },