summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2021-05-04 22:41:05 +0300
committerJaakko Keränen <jaakko.keranen@iki.fi>2021-05-04 22:41:05 +0300
commitc6dc3326596483a15b4dc9befcb8241b41017eff (patch)
tree4016723c10be981d96e1e7a5fa5a017d1ae6f498
parent7a4d9cc39337f93cb3b9e5bca982b04f0a7c7da5 (diff)
Adding special tag buttons to bookmark editor
-rw-r--r--po/en.po3
-rw-r--r--res/lang/de.binbin20024 -> 20070 bytes
-rw-r--r--res/lang/en.binbin18512 -> 18558 bytes
-rw-r--r--res/lang/es.binbin20602 -> 20648 bytes
-rw-r--r--res/lang/fi.binbin20306 -> 20352 bytes
-rw-r--r--res/lang/fr.binbin21088 -> 21134 bytes
-rw-r--r--res/lang/ia.binbin20496 -> 20542 bytes
-rw-r--r--res/lang/ie.binbin19726 -> 19772 bytes
-rw-r--r--res/lang/ru.binbin30238 -> 30284 bytes
-rw-r--r--res/lang/sr.binbin28703 -> 28749 bytes
-rw-r--r--res/lang/tok.binbin19002 -> 19048 bytes
-rw-r--r--res/lang/zh_Hans.binbin17902 -> 17948 bytes
-rw-r--r--res/lang/zh_Hant.binbin17976 -> 18022 bytes
-rw-r--r--src/ui/util.c4
14 files changed, 5 insertions, 2 deletions
diff --git a/po/en.po b/po/en.po
index e01d303b..0e316380 100644
--- a/po/en.po
+++ b/po/en.po
@@ -488,6 +488,9 @@ msgstr "Subscribe to Feed"
488msgid "bookmark.tag.remote" 488msgid "bookmark.tag.remote"
489msgstr "Use as Bookmark Source" 489msgstr "Use as Bookmark Source"
490 490
491msgid "bookmark.tag.linksplit"
492msgstr "Links open to the side"
493
491msgid "bookmark.untag.home" 494msgid "bookmark.untag.home"
492msgstr "Remove Homepage" 495msgstr "Remove Homepage"
493 496
diff --git a/res/lang/de.bin b/res/lang/de.bin
index 846dc8e1..bcefdddc 100644
--- a/res/lang/de.bin
+++ b/res/lang/de.bin
Binary files differ
diff --git a/res/lang/en.bin b/res/lang/en.bin
index 64e150d5..d2fefa4f 100644
--- a/res/lang/en.bin
+++ b/res/lang/en.bin
Binary files differ
diff --git a/res/lang/es.bin b/res/lang/es.bin
index 8fdd3d8b..8626f0a4 100644
--- a/res/lang/es.bin
+++ b/res/lang/es.bin
Binary files differ
diff --git a/res/lang/fi.bin b/res/lang/fi.bin
index 7ab951b4..383a2ed6 100644
--- a/res/lang/fi.bin
+++ b/res/lang/fi.bin
Binary files differ
diff --git a/res/lang/fr.bin b/res/lang/fr.bin
index 01cc217d..712accd7 100644
--- a/res/lang/fr.bin
+++ b/res/lang/fr.bin
Binary files differ
diff --git a/res/lang/ia.bin b/res/lang/ia.bin
index eb3e44a8..63bfb72a 100644
--- a/res/lang/ia.bin
+++ b/res/lang/ia.bin
Binary files differ
diff --git a/res/lang/ie.bin b/res/lang/ie.bin
index 62d74fa7..071a3c66 100644
--- a/res/lang/ie.bin
+++ b/res/lang/ie.bin
Binary files differ
diff --git a/res/lang/ru.bin b/res/lang/ru.bin
index 1e8a4a90..becdc9c7 100644
--- a/res/lang/ru.bin
+++ b/res/lang/ru.bin
Binary files differ
diff --git a/res/lang/sr.bin b/res/lang/sr.bin
index 08682c88..1336b719 100644
--- a/res/lang/sr.bin
+++ b/res/lang/sr.bin
Binary files differ
diff --git a/res/lang/tok.bin b/res/lang/tok.bin
index 5061520c..bf7c610e 100644
--- a/res/lang/tok.bin
+++ b/res/lang/tok.bin
Binary files differ
diff --git a/res/lang/zh_Hans.bin b/res/lang/zh_Hans.bin
index cee2f096..31e6c904 100644
--- a/res/lang/zh_Hans.bin
+++ b/res/lang/zh_Hans.bin
Binary files differ
diff --git a/res/lang/zh_Hant.bin b/res/lang/zh_Hant.bin
index 67240240..8cf25ad8 100644
--- a/res/lang/zh_Hant.bin
+++ b/res/lang/zh_Hant.bin
Binary files differ
diff --git a/src/ui/util.c b/src/ui/util.c
index 8c058ac3..d2f27a8b 100644
--- a/src/ui/util.c
+++ b/src/ui/util.c
@@ -2473,8 +2473,8 @@ iWidget *makeBookmarkEditor_Widget(void) {
2473 addChild_Widget(values, iClob(makeToggle_Widget("bmed.tag.home"))); 2473 addChild_Widget(values, iClob(makeToggle_Widget("bmed.tag.home")));
2474 addChild_Widget(headings, iClob(makeHeading_Widget("${bookmark.tag.remote}"))); 2474 addChild_Widget(headings, iClob(makeHeading_Widget("${bookmark.tag.remote}")));
2475 addChild_Widget(values, iClob(makeToggle_Widget("bmed.tag.remote"))); 2475 addChild_Widget(values, iClob(makeToggle_Widget("bmed.tag.remote")));
2476 addChild_Widget(headings, iClob(makeHeading_Widget("${bookmark.tag.sub}"))); 2476 addChild_Widget(headings, iClob(makeHeading_Widget("${bookmark.tag.linksplit}")));
2477 addChild_Widget(values, iClob(makeToggle_Widget("bmed.tag.sub"))); 2477 addChild_Widget(values, iClob(makeToggle_Widget("bmed.tag.linksplit")));
2478 arrange_Widget(dlg); 2478 arrange_Widget(dlg);
2479 for (int i = 0; i < 3; ++i) { 2479 for (int i = 0; i < 3; ++i) {
2480 as_Widget(inputs[i])->rect.size.x = 100 * gap_UI - headings->rect.size.x; 2480 as_Widget(inputs[i])->rect.size.x = 100 * gap_UI - headings->rect.size.x;