summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2021-04-12 09:38:21 +0300
committerJaakko Keränen <jaakko.keranen@iki.fi>2021-04-12 09:40:42 +0300
commit667b35a3aa60c7b4f322876850cec9154fc31057 (patch)
tree7151c5d7b4700518f85ea40afcf38effde298839
parentafce1909b4705a6b0d5b63394098f3d8b02cda54 (diff)
Lang: Removed redundant UI string
"menu.copy.source" had only one use and was replaced with the identical "menu.page.copysource".
-rw-r--r--po/en.po3
-rw-r--r--res/lang/en.binbin17207 -> 17173 bytes
-rw-r--r--src/ui/window.c2
3 files changed, 1 insertions, 4 deletions
diff --git a/po/en.po b/po/en.po
index b3e61483..f51e7a70 100644
--- a/po/en.po
+++ b/po/en.po
@@ -169,9 +169,6 @@ msgstr "Save to Files"
169msgid "menu.save.downloads" 169msgid "menu.save.downloads"
170msgstr "Save to Downloads" 170msgstr "Save to Downloads"
171 171
172msgid "menu.copy.source"
173msgstr "Copy Source Text"
174
175msgid "menu.sidebar" 172msgid "menu.sidebar"
176msgstr "Toggle Sidebar" 173msgstr "Toggle Sidebar"
177 174
diff --git a/res/lang/en.bin b/res/lang/en.bin
index 6c6c9171..6fef3800 100644
--- a/res/lang/en.bin
+++ b/res/lang/en.bin
Binary files differ
diff --git a/src/ui/window.c b/src/ui/window.c
index 716c1d05..b1df3805 100644
--- a/src/ui/window.c
+++ b/src/ui/window.c
@@ -194,7 +194,7 @@ static const iMenuItem navMenuItems_[] = {
194 { "${menu.openlocation}", SDLK_l, KMOD_PRIMARY, "navigate.focus" }, 194 { "${menu.openlocation}", SDLK_l, KMOD_PRIMARY, "navigate.focus" },
195 { "---", 0, 0, NULL }, 195 { "---", 0, 0, NULL },
196 { download_Icon " " saveToDownloads_Label, SDLK_s, KMOD_PRIMARY, "document.save" }, 196 { download_Icon " " saveToDownloads_Label, SDLK_s, KMOD_PRIMARY, "document.save" },
197 { "${menu.copy.source}", SDLK_c, KMOD_PRIMARY, "copy" }, 197 { "${menu.page.copysource}", SDLK_c, KMOD_PRIMARY, "copy" },
198 { "---", 0, 0, NULL }, 198 { "---", 0, 0, NULL },
199 { leftHalf_Icon " ${menu.sidebar.left}", SDLK_l, KMOD_PRIMARY | KMOD_SHIFT, "sidebar.toggle" }, 199 { leftHalf_Icon " ${menu.sidebar.left}", SDLK_l, KMOD_PRIMARY | KMOD_SHIFT, "sidebar.toggle" },
200 { rightHalf_Icon " ${menu.sidebar.right}", SDLK_p, KMOD_PRIMARY | KMOD_SHIFT, "sidebar2.toggle" }, 200 { rightHalf_Icon " ${menu.sidebar.right}", SDLK_p, KMOD_PRIMARY | KMOD_SHIFT, "sidebar2.toggle" },