diff options
author | Jaakko Keränen <jaakko.keranen@iki.fi> | 2021-04-12 09:38:21 +0300 |
---|---|---|
committer | Jaakko Keränen <jaakko.keranen@iki.fi> | 2021-04-12 09:40:42 +0300 |
commit | 667b35a3aa60c7b4f322876850cec9154fc31057 (patch) | |
tree | 7151c5d7b4700518f85ea40afcf38effde298839 | |
parent | afce1909b4705a6b0d5b63394098f3d8b02cda54 (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.po | 3 | ||||
-rw-r--r-- | res/lang/en.bin | bin | 17207 -> 17173 bytes | |||
-rw-r--r-- | src/ui/window.c | 2 |
3 files changed, 1 insertions, 4 deletions
@@ -169,9 +169,6 @@ msgstr "Save to Files" | |||
169 | msgid "menu.save.downloads" | 169 | msgid "menu.save.downloads" |
170 | msgstr "Save to Downloads" | 170 | msgstr "Save to Downloads" |
171 | 171 | ||
172 | msgid "menu.copy.source" | ||
173 | msgstr "Copy Source Text" | ||
174 | |||
175 | msgid "menu.sidebar" | 172 | msgid "menu.sidebar" |
176 | msgstr "Toggle Sidebar" | 173 | msgstr "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" }, |