From 5c2366786edb61f7be22a49d0243a4847be32382 Mon Sep 17 00:00:00 2001 From: boerdereinar Date: Sun, 28 Apr 2024 21:11:14 +0200 Subject: [PATCH 01/45] Change to headerless style + add compact mode --- package.json | 3 +- .../scalable/actions/blend-tool-symbolic.svg | 2 + .../actions/file-tree-end-symbolic.svg | 6 + .../actions/file-tree-middle-symbolic.svg | 6 + .../actions/paper-filled-symbolic.svg | 2 + resources/po/ar.po | 240 ++++++++--------- resources/po/bg.po | 240 ++++++++--------- resources/po/cs.po | 242 ++++++++---------- resources/po/da.po | 240 ++++++++--------- resources/po/de.po | 242 ++++++++---------- resources/po/el.po | 240 ++++++++--------- resources/po/en.po | 240 ++++++++--------- resources/po/es.po | 242 ++++++++---------- resources/po/et.po | 240 ++++++++--------- resources/po/fi.po | 240 ++++++++--------- resources/po/fr.po | 242 ++++++++---------- resources/po/he.po | 240 ++++++++--------- resources/po/hr.po | 240 ++++++++--------- resources/po/hu.po | 240 ++++++++--------- resources/po/is.po | 240 ++++++++--------- resources/po/it.po | 242 ++++++++---------- resources/po/ja.po | 240 ++++++++--------- resources/po/ko.po | 242 ++++++++---------- resources/po/nl.po | 240 ++++++++--------- resources/po/no.po | 240 ++++++++--------- resources/po/oc.po | 240 ++++++++--------- resources/po/pano@elhan.io.pot | 242 ++++++++---------- resources/po/pl.po | 240 ++++++++--------- resources/po/pt.po | 240 ++++++++--------- resources/po/pt_BR.po | 242 ++++++++---------- resources/po/ro.po | 240 ++++++++--------- resources/po/ru.po | 242 ++++++++---------- resources/po/sk.po | 240 ++++++++--------- resources/po/sv.po | 240 ++++++++--------- resources/po/tr.po | 242 ++++++++---------- resources/po/uk.po | 242 ++++++++---------- resources/po/vi.po | 240 ++++++++--------- resources/po/zh_CN.po | 242 ++++++++---------- resources/po/zh_TW.po | 242 ++++++++---------- ...rg.gnome.shell.extensions.pano.gschema.xml | 135 +++------- rollup.config.mjs | 1 - src/components/codePanoItem.ts | 3 - src/components/colorPanoItem.ts | 70 +++-- src/components/emojiPanoItem.ts | 9 +- src/components/filePanoItem.ts | 121 +++++++-- src/components/imagePanoItem.ts | 114 +-------- src/components/linkPanoItem.ts | 65 +++-- src/components/panoItem.ts | 81 ++++-- src/components/panoItemHeader.ts | 209 --------------- src/components/panoItemOverlay.ts | 114 +++++++++ src/components/searchBox.ts | 2 +- src/components/textPanoItem.ts | 5 - src/containers/panoWindow.ts | 6 +- src/prefs/customization/codeItemStyle.ts | 20 -- src/prefs/customization/colorItemStyle.ts | 20 -- src/prefs/customization/commonStyleGroup.ts | 31 ++- src/prefs/customization/emojiItemStyle.ts | 20 -- src/prefs/customization/fileItemStyle.ts | 25 +- src/prefs/customization/imageItemStyle.ts | 20 -- src/prefs/customization/linkItemStyle.ts | 20 -- src/prefs/customization/textItemStyle.ts | 20 -- src/prefs/customization/utils.ts | 20 ++ src/styles/stylesheet.css | 198 +++++++------- src/types/hex-color-converter.d.ts | 7 - src/utils/panoItemFactory.ts | 23 +- yarn.lock | 39 ++- 66 files changed, 4291 insertions(+), 5312 deletions(-) create mode 100644 resources/icons/hicolor/scalable/actions/blend-tool-symbolic.svg create mode 100644 resources/icons/hicolor/scalable/actions/file-tree-end-symbolic.svg create mode 100644 resources/icons/hicolor/scalable/actions/file-tree-middle-symbolic.svg create mode 100644 resources/icons/hicolor/scalable/actions/paper-filled-symbolic.svg delete mode 100644 src/components/panoItemHeader.ts create mode 100644 src/components/panoItemOverlay.ts delete mode 100644 src/types/hex-color-converter.d.ts diff --git a/package.json b/package.json index 404bbf07..46387e03 100644 --- a/package.json +++ b/package.json @@ -61,6 +61,7 @@ "@types/eslint": "^9.6.1", "@types/eslint__js": "^8.42.3", "@types/eslint__eslintrc": "^2.1.2", + "@types/color-string": "^1.5.5", "@types/events": "^3.0.3", "@types/gettext-parser": "^8.0.0", "@types/highlight.js": "^10.1.0", @@ -90,8 +91,8 @@ "chalk": "4.1.2" }, "dependencies": { + "color-string": "^1.9.1", "date-fns": "^2.30.0", - "hex-color-converter": "^0.2.1", "highlight.js": "^11.9.0", "htmlparser2": "^9.1.0", "is-url": "^1.2.4", diff --git a/resources/icons/hicolor/scalable/actions/blend-tool-symbolic.svg b/resources/icons/hicolor/scalable/actions/blend-tool-symbolic.svg new file mode 100644 index 00000000..6c2c19ca --- /dev/null +++ b/resources/icons/hicolor/scalable/actions/blend-tool-symbolic.svg @@ -0,0 +1,2 @@ + + diff --git a/resources/icons/hicolor/scalable/actions/file-tree-end-symbolic.svg b/resources/icons/hicolor/scalable/actions/file-tree-end-symbolic.svg new file mode 100644 index 00000000..1b9cb4db --- /dev/null +++ b/resources/icons/hicolor/scalable/actions/file-tree-end-symbolic.svg @@ -0,0 +1,6 @@ + + + + diff --git a/resources/icons/hicolor/scalable/actions/file-tree-middle-symbolic.svg b/resources/icons/hicolor/scalable/actions/file-tree-middle-symbolic.svg new file mode 100644 index 00000000..9acc7769 --- /dev/null +++ b/resources/icons/hicolor/scalable/actions/file-tree-middle-symbolic.svg @@ -0,0 +1,6 @@ + + + + diff --git a/resources/icons/hicolor/scalable/actions/paper-filled-symbolic.svg b/resources/icons/hicolor/scalable/actions/paper-filled-symbolic.svg new file mode 100644 index 00000000..97587b88 --- /dev/null +++ b/resources/icons/hicolor/scalable/actions/paper-filled-symbolic.svg @@ -0,0 +1,2 @@ + + diff --git a/resources/po/ar.po b/resources/po/ar.po index 73743734..646b4438 100644 --- a/resources/po/ar.po +++ b/resources/po/ar.po @@ -31,7 +31,7 @@ msgstr "الوضع المخفي" msgid "Settings" msgstr "الإعدادات" -#: src/components/linkPanoItem.ts:39 +#: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "" @@ -48,83 +48,43 @@ msgid "Code Item Style" msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 -#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 #: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Header Background Color" +msgid "Body Background Color" msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 -#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 #: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 -msgid "You can change the background color of the header" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:32 -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/emojiItemStyle.ts:32 -#: src/prefs/customization/fileItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -#: src/prefs/customization/textItemStyle.ts:32 -msgid "Header Text Color" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:33 -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/emojiItemStyle.ts:33 -#: src/prefs/customization/fileItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -#: src/prefs/customization/textItemStyle.ts:33 -msgid "You can change the text color of the header" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:42 -#: src/prefs/customization/emojiItemStyle.ts:42 -#: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:41 -#: src/prefs/customization/linkItemStyle.ts:42 -#: src/prefs/customization/textItemStyle.ts:42 -msgid "Body Background Color" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:43 -#: src/prefs/customization/emojiItemStyle.ts:43 -#: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:43 -#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:60 +#: src/prefs/customization/codeItemStyle.ts:35 +#: src/prefs/customization/textItemStyle.ts:40 msgid "Character Length" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:56 -#: src/prefs/customization/textItemStyle.ts:61 +#: src/prefs/customization/codeItemStyle.ts:36 +#: src/prefs/customization/textItemStyle.ts:41 msgid "You can change the character length of the visible text in the body" msgstr "" @@ -136,141 +96,141 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:51 -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/colorItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:52 -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/colorItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:52 -#: src/prefs/customization/imageItemStyle.ts:61 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:41 msgid "Metadata Text Color" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:53 -#: src/prefs/customization/imageItemStyle.ts:62 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:42 msgid "You can change the text color of the metadata" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:14 +#: src/prefs/customization/commonStyleGroup.ts:20 msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "Icon Pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:21 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Default Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:22 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Legacy Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "Item Size" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "You can change the item size" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:32 +#: src/prefs/customization/commonStyleGroup.ts:38 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:39 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:48 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:58 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:50 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:59 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "Item Title Font" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "Item Date Font" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "You can change the font of the date" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:80 +#: src/prefs/customization/commonStyleGroup.ts:89 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:90 msgid "You can change the hovered item border color" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:97 +msgid "Show Controls on Hover" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:98 +msgid "When enabled, the controls will only show on hover" +msgstr "" + #: src/prefs/customization/emojiItemStyle.ts:15 msgid "Change the style of the emoji item" msgstr "" @@ -279,11 +239,11 @@ msgstr "" msgid "Emoji Item Style" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "Emoji Size" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "You can change the emoji size" msgstr "" @@ -295,13 +255,29 @@ msgstr "" msgid "File Item Style" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:32 +msgid "Title Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:33 +msgid "You can change the text color of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "Title Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "Body Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "You can change the text color of the body" msgstr "" @@ -313,7 +289,7 @@ msgstr "" msgid "Image Item Style" msgstr "" -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "Metadata Font" msgstr "" @@ -333,51 +309,51 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata link" msgstr "" @@ -555,39 +531,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:406 +#: src/utils/panoItemFactory.ts:398 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:399 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:411 +#: src/utils/panoItemFactory.ts:403 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:413 +#: src/utils/panoItemFactory.ts:405 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:407 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:415 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:443 +#: src/utils/panoItemFactory.ts:428 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:450 +#: src/utils/panoItemFactory.ts:435 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:451 +#: src/utils/panoItemFactory.ts:436 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/bg.po b/resources/po/bg.po index 56ae4b1e..7be3cfd4 100644 --- a/resources/po/bg.po +++ b/resources/po/bg.po @@ -31,7 +31,7 @@ msgstr "Режим \"инкогнито\"" msgid "Settings" msgstr "Настройки" -#: src/components/linkPanoItem.ts:39 +#: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "" @@ -48,83 +48,43 @@ msgid "Code Item Style" msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 -#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 #: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Header Background Color" +msgid "Body Background Color" msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 -#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 #: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 -msgid "You can change the background color of the header" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:32 -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/emojiItemStyle.ts:32 -#: src/prefs/customization/fileItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -#: src/prefs/customization/textItemStyle.ts:32 -msgid "Header Text Color" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:33 -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/emojiItemStyle.ts:33 -#: src/prefs/customization/fileItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -#: src/prefs/customization/textItemStyle.ts:33 -msgid "You can change the text color of the header" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:42 -#: src/prefs/customization/emojiItemStyle.ts:42 -#: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:41 -#: src/prefs/customization/linkItemStyle.ts:42 -#: src/prefs/customization/textItemStyle.ts:42 -msgid "Body Background Color" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:43 -#: src/prefs/customization/emojiItemStyle.ts:43 -#: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:43 -#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:60 +#: src/prefs/customization/codeItemStyle.ts:35 +#: src/prefs/customization/textItemStyle.ts:40 msgid "Character Length" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:56 -#: src/prefs/customization/textItemStyle.ts:61 +#: src/prefs/customization/codeItemStyle.ts:36 +#: src/prefs/customization/textItemStyle.ts:41 msgid "You can change the character length of the visible text in the body" msgstr "" @@ -136,141 +96,141 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:51 -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/colorItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:52 -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/colorItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:52 -#: src/prefs/customization/imageItemStyle.ts:61 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:41 msgid "Metadata Text Color" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:53 -#: src/prefs/customization/imageItemStyle.ts:62 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:42 msgid "You can change the text color of the metadata" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:14 +#: src/prefs/customization/commonStyleGroup.ts:20 msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "Icon Pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:21 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Default Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:22 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Legacy Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "Item Size" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "You can change the item size" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:32 +#: src/prefs/customization/commonStyleGroup.ts:38 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:39 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:48 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:58 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:50 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:59 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "Item Title Font" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "Item Date Font" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "You can change the font of the date" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:80 +#: src/prefs/customization/commonStyleGroup.ts:89 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:90 msgid "You can change the hovered item border color" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:97 +msgid "Show Controls on Hover" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:98 +msgid "When enabled, the controls will only show on hover" +msgstr "" + #: src/prefs/customization/emojiItemStyle.ts:15 msgid "Change the style of the emoji item" msgstr "" @@ -279,11 +239,11 @@ msgstr "" msgid "Emoji Item Style" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "Emoji Size" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "You can change the emoji size" msgstr "" @@ -295,13 +255,29 @@ msgstr "" msgid "File Item Style" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:32 +msgid "Title Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:33 +msgid "You can change the text color of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "Title Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "Body Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "You can change the text color of the body" msgstr "" @@ -313,7 +289,7 @@ msgstr "" msgid "Image Item Style" msgstr "" -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "Metadata Font" msgstr "" @@ -333,51 +309,51 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata link" msgstr "" @@ -555,39 +531,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:406 +#: src/utils/panoItemFactory.ts:398 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:399 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:411 +#: src/utils/panoItemFactory.ts:403 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:413 +#: src/utils/panoItemFactory.ts:405 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:407 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:415 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:443 +#: src/utils/panoItemFactory.ts:428 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:450 +#: src/utils/panoItemFactory.ts:435 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:451 +#: src/utils/panoItemFactory.ts:436 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/cs.po b/resources/po/cs.po index 78f90e12..43b3668d 100644 --- a/resources/po/cs.po +++ b/resources/po/cs.po @@ -31,7 +31,7 @@ msgstr "Anonymní režim" msgid "Settings" msgstr "Nastavení" -#: src/components/linkPanoItem.ts:39 +#: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "Bez popisu" @@ -48,83 +48,43 @@ msgid "Code Item Style" msgstr "Kód - nastavení stylů" #: src/prefs/customization/codeItemStyle.ts:22 -#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 #: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Header Background Color" -msgstr "Barva pozadí záhlaví" +msgid "Body Background Color" +msgstr "Barva pozadí těla" #: src/prefs/customization/codeItemStyle.ts:23 -#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 #: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 -msgid "You can change the background color of the header" -msgstr "Můžete změnit barvu pozadí záhlaví" - -#: src/prefs/customization/codeItemStyle.ts:32 -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/emojiItemStyle.ts:32 -#: src/prefs/customization/fileItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -#: src/prefs/customization/textItemStyle.ts:32 -msgid "Header Text Color" -msgstr "Barva textu záhlaví" - -#: src/prefs/customization/codeItemStyle.ts:33 -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/emojiItemStyle.ts:33 -#: src/prefs/customization/fileItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -#: src/prefs/customization/textItemStyle.ts:33 -msgid "You can change the text color of the header" -msgstr "Můžete změnit barvu textu záhlaví" - -#: src/prefs/customization/codeItemStyle.ts:42 -#: src/prefs/customization/emojiItemStyle.ts:42 -#: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:41 -#: src/prefs/customization/linkItemStyle.ts:42 -#: src/prefs/customization/textItemStyle.ts:42 -msgid "Body Background Color" -msgstr "Barva pozadí těla" - -#: src/prefs/customization/codeItemStyle.ts:43 -#: src/prefs/customization/emojiItemStyle.ts:43 -#: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:43 -#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "Můžete změnit barvu pozadí těla" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" msgstr "Písmo těla" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "You can change the font of the body" msgstr "Můžete změnit písmo těla" -#: src/prefs/customization/codeItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:60 +#: src/prefs/customization/codeItemStyle.ts:35 +#: src/prefs/customization/textItemStyle.ts:40 msgid "Character Length" msgstr "Počet znaků" -#: src/prefs/customization/codeItemStyle.ts:56 -#: src/prefs/customization/textItemStyle.ts:61 +#: src/prefs/customization/codeItemStyle.ts:36 +#: src/prefs/customization/textItemStyle.ts:41 msgid "You can change the character length of the visible text in the body" msgstr "Můžete změnit počet znaků viditelného textu v těle" @@ -136,141 +96,141 @@ msgstr "Změňte styly barvy" msgid "Color Item Style" msgstr "Barva - nastavení stylů" -#: src/prefs/customization/colorItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:51 -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/colorItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 msgid "Metadata Background Color" msgstr "Barva pozadí metadat" -#: src/prefs/customization/colorItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:52 -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/colorItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 msgid "You can change the background color of the metadata" msgstr "Můžete změnit barvu pozadí metadat" -#: src/prefs/customization/colorItemStyle.ts:52 -#: src/prefs/customization/imageItemStyle.ts:61 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:41 msgid "Metadata Text Color" msgstr "Barva textu metadat" -#: src/prefs/customization/colorItemStyle.ts:53 -#: src/prefs/customization/imageItemStyle.ts:62 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:42 msgid "You can change the text color of the metadata" msgstr "Můžete změnit barvu textu metadat" -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "You can change the font of the metadata" msgstr "Můžete změnit písmo metadat" -#: src/prefs/customization/commonStyleGroup.ts:14 +#: src/prefs/customization/commonStyleGroup.ts:20 msgid "Common" msgstr "Obecné" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "Icon Pack" msgstr "Sada ikon" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "You can change the icon pack" msgstr "Můžete změnit sadu ikon" -#: src/prefs/customization/commonStyleGroup.ts:21 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Default Icons" msgstr "Výchozí ikony" -#: src/prefs/customization/commonStyleGroup.ts:22 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Legacy Icons" msgstr "Starší ikony" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "Item Size" msgstr "Velikost položky" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "You can change the item size" msgstr "Můžete změnit velikost položky" -#: src/prefs/customization/commonStyleGroup.ts:32 +#: src/prefs/customization/commonStyleGroup.ts:38 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:39 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 msgid "Window Position" msgstr "Poloha okna" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:48 msgid "You can change position of the Pano" msgstr "Můžete změnit pozici Pano" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Bottom" msgstr "Dole" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Left" msgstr "Vlevo" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Right" msgstr "Vpravo" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Top" msgstr "Nahoře" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "Window Background Color" msgstr "Barva pozadí okna" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:58 msgid "You can change the window background color" msgstr "Můžete změnit barvu pozadí okna" -#: src/prefs/customization/commonStyleGroup.ts:50 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Incognito Window Background Color" msgstr "Barva pozadí anonymního okna" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "You can change the incognito window background color" msgstr "Můžete změnit barvu pozadí anonymního okna" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Search Bar Font" msgstr "Písmo vyhledávací lišty" -#: src/prefs/customization/commonStyleGroup.ts:59 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the font of the search bar" msgstr "Můžete změnit písmo vyhledávání" -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "Item Title Font" -msgstr "Písmo názvu položky" - -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "You can change the font of the title" -msgstr "Můžete změnit písmo nadpisu" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "Item Date Font" -msgstr "Písmo položky Datum" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "You can change the font of the date" -msgstr "Můžete změnit písmo data" - -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Active Item Border Color" msgstr "Barva ohraničení aktivní položky" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the active item border color" msgstr "Můžete změnit barvu okraje aktivní položky" -#: src/prefs/customization/commonStyleGroup.ts:80 +#: src/prefs/customization/commonStyleGroup.ts:89 msgid "Hovered Item Border Color" msgstr "Barva ohraničení při najetí na položku" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:90 msgid "You can change the hovered item border color" msgstr "Můžete změnit barvu ohraničení při najetí na položku" +#: src/prefs/customization/commonStyleGroup.ts:97 +msgid "Show Controls on Hover" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:98 +msgid "When enabled, the controls will only show on hover" +msgstr "" + #: src/prefs/customization/emojiItemStyle.ts:15 msgid "Change the style of the emoji item" msgstr "Změňte styly emoji" @@ -279,11 +239,11 @@ msgstr "Změňte styly emoji" msgid "Emoji Item Style" msgstr "Emoji - nastavení stylů" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "Emoji Size" msgstr "Velikost emoji" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "You can change the emoji size" msgstr "Můžete změnit velikost emoji" @@ -295,13 +255,29 @@ msgstr "Změňte styly souboru" msgid "File Item Style" msgstr "Soubor - nastavení stylů" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:32 +msgid "Title Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:33 +msgid "You can change the text color of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "Title Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "Body Text Color" msgstr "Barva textu těla" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "You can change the text color of the body" msgstr "Můžete změnit barvu textu těla" @@ -313,7 +289,7 @@ msgstr "Změňte styly obrázku" msgid "Image Item Style" msgstr "Obrázek - nastavení stylů" -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "Metadata Font" msgstr "Písmo metadat" @@ -333,51 +309,51 @@ msgstr "Změňte styly odkazu" msgid "Link Item Style" msgstr "Odkaz - nastavení stylů" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "Barva názvu metadat" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the title color of the metadata" msgstr "Můžete změnit barvu názvu metadat" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Font" msgstr "Písmo názvu metadat" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the font of the metadata title" msgstr "Můžete změnit písmo názvu metadat" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Description Color" msgstr "Barva popisu metadat" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the description color of the metadata" msgstr "Můžete změnit barvu popisu metadat" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Font" msgstr "Písmo popisu metadat" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata description" msgstr "Můžete změnit písmo popisu metadat" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Link Color" msgstr "Barva odkazu metadat" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the link color of the metadata" msgstr "Můžete změnit barvu odkazu metadat" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Font" msgstr "Písmo odkazu metadat" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata link" msgstr "Můžete změnit písmo odkazu na metadata" @@ -555,39 +531,39 @@ msgstr "Indikátor kmitání" msgid "Wiggles the indicator on panel" msgstr "Rozhýbe indikátor na panelu" -#: src/utils/panoItemFactory.ts:406 +#: src/utils/panoItemFactory.ts:398 msgid "Image Copied" msgstr "Obrázek zkopírován" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:399 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "Šířka: %spx, Výška: %spx, Velikost: %s" -#: src/utils/panoItemFactory.ts:411 +#: src/utils/panoItemFactory.ts:403 msgid "Text Copied" msgstr "Text zkopírován" -#: src/utils/panoItemFactory.ts:413 +#: src/utils/panoItemFactory.ts:405 msgid "Code Copied" msgstr "Kód zkopírován" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:407 msgid "Emoji Copied" msgstr "Emoji zkopírováno" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:415 msgid "Link Copied" msgstr "Odkaz zkopírován" -#: src/utils/panoItemFactory.ts:443 +#: src/utils/panoItemFactory.ts:428 msgid "Color Copied" msgstr "Barva zkopírována" -#: src/utils/panoItemFactory.ts:450 +#: src/utils/panoItemFactory.ts:435 msgid "File %s" msgstr "Soubor %s" -#: src/utils/panoItemFactory.ts:451 +#: src/utils/panoItemFactory.ts:436 msgid "There are %s file(s)" msgstr "Existuje %s souborů" diff --git a/resources/po/da.po b/resources/po/da.po index 39f13bfe..25bd7dcb 100644 --- a/resources/po/da.po +++ b/resources/po/da.po @@ -31,7 +31,7 @@ msgstr "Inkognitotilstand" msgid "Settings" msgstr "Indstillinger" -#: src/components/linkPanoItem.ts:39 +#: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "" @@ -48,83 +48,43 @@ msgid "Code Item Style" msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 -#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 #: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Header Background Color" +msgid "Body Background Color" msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 -#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 #: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 -msgid "You can change the background color of the header" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:32 -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/emojiItemStyle.ts:32 -#: src/prefs/customization/fileItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -#: src/prefs/customization/textItemStyle.ts:32 -msgid "Header Text Color" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:33 -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/emojiItemStyle.ts:33 -#: src/prefs/customization/fileItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -#: src/prefs/customization/textItemStyle.ts:33 -msgid "You can change the text color of the header" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:42 -#: src/prefs/customization/emojiItemStyle.ts:42 -#: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:41 -#: src/prefs/customization/linkItemStyle.ts:42 -#: src/prefs/customization/textItemStyle.ts:42 -msgid "Body Background Color" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:43 -#: src/prefs/customization/emojiItemStyle.ts:43 -#: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:43 -#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:60 +#: src/prefs/customization/codeItemStyle.ts:35 +#: src/prefs/customization/textItemStyle.ts:40 msgid "Character Length" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:56 -#: src/prefs/customization/textItemStyle.ts:61 +#: src/prefs/customization/codeItemStyle.ts:36 +#: src/prefs/customization/textItemStyle.ts:41 msgid "You can change the character length of the visible text in the body" msgstr "" @@ -136,141 +96,141 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:51 -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/colorItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:52 -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/colorItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:52 -#: src/prefs/customization/imageItemStyle.ts:61 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:41 msgid "Metadata Text Color" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:53 -#: src/prefs/customization/imageItemStyle.ts:62 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:42 msgid "You can change the text color of the metadata" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:14 +#: src/prefs/customization/commonStyleGroup.ts:20 msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "Icon Pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:21 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Default Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:22 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Legacy Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "Item Size" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "You can change the item size" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:32 +#: src/prefs/customization/commonStyleGroup.ts:38 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:39 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:48 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:58 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:50 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:59 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "Item Title Font" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "Item Date Font" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "You can change the font of the date" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:80 +#: src/prefs/customization/commonStyleGroup.ts:89 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:90 msgid "You can change the hovered item border color" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:97 +msgid "Show Controls on Hover" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:98 +msgid "When enabled, the controls will only show on hover" +msgstr "" + #: src/prefs/customization/emojiItemStyle.ts:15 msgid "Change the style of the emoji item" msgstr "" @@ -279,11 +239,11 @@ msgstr "" msgid "Emoji Item Style" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "Emoji Size" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "You can change the emoji size" msgstr "" @@ -295,13 +255,29 @@ msgstr "" msgid "File Item Style" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:32 +msgid "Title Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:33 +msgid "You can change the text color of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "Title Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "Body Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "You can change the text color of the body" msgstr "" @@ -313,7 +289,7 @@ msgstr "" msgid "Image Item Style" msgstr "" -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "Metadata Font" msgstr "" @@ -333,51 +309,51 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata link" msgstr "" @@ -555,39 +531,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:406 +#: src/utils/panoItemFactory.ts:398 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:399 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:411 +#: src/utils/panoItemFactory.ts:403 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:413 +#: src/utils/panoItemFactory.ts:405 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:407 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:415 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:443 +#: src/utils/panoItemFactory.ts:428 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:450 +#: src/utils/panoItemFactory.ts:435 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:451 +#: src/utils/panoItemFactory.ts:436 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/de.po b/resources/po/de.po index 533bf64f..d44a0b1d 100644 --- a/resources/po/de.po +++ b/resources/po/de.po @@ -31,7 +31,7 @@ msgstr "Inkognito-Modus" msgid "Settings" msgstr "Einstellungen" -#: src/components/linkPanoItem.ts:39 +#: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "Keine Beschreibung" @@ -48,83 +48,43 @@ msgid "Code Item Style" msgstr "Stil des Code-Eintrags" #: src/prefs/customization/codeItemStyle.ts:22 -#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 #: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Header Background Color" -msgstr "Hintergrundfarbe der Überschrift" +msgid "Body Background Color" +msgstr "Hintergrundfarbe des Hauptteils" #: src/prefs/customization/codeItemStyle.ts:23 -#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 #: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 -msgid "You can change the background color of the header" -msgstr "Sie können die Hintergrundfarbe der Überschrift ändern" - -#: src/prefs/customization/codeItemStyle.ts:32 -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/emojiItemStyle.ts:32 -#: src/prefs/customization/fileItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -#: src/prefs/customization/textItemStyle.ts:32 -msgid "Header Text Color" -msgstr "Textfarbe der Überschrift" - -#: src/prefs/customization/codeItemStyle.ts:33 -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/emojiItemStyle.ts:33 -#: src/prefs/customization/fileItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -#: src/prefs/customization/textItemStyle.ts:33 -msgid "You can change the text color of the header" -msgstr "Sie können die Textfarbe der Überschrift ändern" - -#: src/prefs/customization/codeItemStyle.ts:42 -#: src/prefs/customization/emojiItemStyle.ts:42 -#: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:41 -#: src/prefs/customization/linkItemStyle.ts:42 -#: src/prefs/customization/textItemStyle.ts:42 -msgid "Body Background Color" -msgstr "Hintergrundfarbe des Hauptteils" - -#: src/prefs/customization/codeItemStyle.ts:43 -#: src/prefs/customization/emojiItemStyle.ts:43 -#: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:43 -#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "Sie können die Hintergrundfarbe des Hauptteils ändern" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" msgstr "Schriftart des Hauptteils" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "You can change the font of the body" msgstr "Sie können die Schriftart des Hauptteils ändern" -#: src/prefs/customization/codeItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:60 +#: src/prefs/customization/codeItemStyle.ts:35 +#: src/prefs/customization/textItemStyle.ts:40 msgid "Character Length" msgstr "Zeichenlänge" -#: src/prefs/customization/codeItemStyle.ts:56 -#: src/prefs/customization/textItemStyle.ts:61 +#: src/prefs/customization/codeItemStyle.ts:36 +#: src/prefs/customization/textItemStyle.ts:41 msgid "You can change the character length of the visible text in the body" msgstr "Sie können die Zeichenlänge des sichtbaren Textes im Hauptteil ändern" @@ -136,141 +96,141 @@ msgstr "Stil des Farb-Eintrags ändern" msgid "Color Item Style" msgstr "Stil des Farb-Eintrags" -#: src/prefs/customization/colorItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:51 -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/colorItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 msgid "Metadata Background Color" msgstr "Hintergrundfarbe für Metadaten" -#: src/prefs/customization/colorItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:52 -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/colorItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 msgid "You can change the background color of the metadata" msgstr "Sie können die Hintergrundfarbe der Metadaten ändern" -#: src/prefs/customization/colorItemStyle.ts:52 -#: src/prefs/customization/imageItemStyle.ts:61 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:41 msgid "Metadata Text Color" msgstr "Textfarbe für Metadaten" -#: src/prefs/customization/colorItemStyle.ts:53 -#: src/prefs/customization/imageItemStyle.ts:62 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:42 msgid "You can change the text color of the metadata" msgstr "Sie können die Textfarbe der Metadaten ändern" -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "You can change the font of the metadata" msgstr "Sie können die Schriftart der Metadaten ändern" -#: src/prefs/customization/commonStyleGroup.ts:14 +#: src/prefs/customization/commonStyleGroup.ts:20 msgid "Common" msgstr "Allgemein" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "Icon Pack" msgstr "Symbolpaket" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "You can change the icon pack" msgstr "Sie können das Symbolpaket ändern" -#: src/prefs/customization/commonStyleGroup.ts:21 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Default Icons" msgstr "Vorgabe-Icons" -#: src/prefs/customization/commonStyleGroup.ts:22 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Legacy Icons" msgstr "Veraltete Symbole" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "Item Size" msgstr "Eintragsgröße" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "You can change the item size" msgstr "Sie können die Objektgröße ändern" -#: src/prefs/customization/commonStyleGroup.ts:32 +#: src/prefs/customization/commonStyleGroup.ts:38 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:39 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 msgid "Window Position" msgstr "Fensterposition" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:48 msgid "You can change position of the Pano" msgstr "Sie können die Position von Pano ändern" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Bottom" msgstr "Unten" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Left" msgstr "Links" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Right" msgstr "Rechts" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Top" msgstr "Oben" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "Window Background Color" msgstr "Hintergrundfarbe des Fensters" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:58 msgid "You can change the window background color" msgstr "Sie können die Hintergrundfarbe des Fensters ändern" -#: src/prefs/customization/commonStyleGroup.ts:50 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Incognito Window Background Color" msgstr "Hintergrundfarbe des Inkognito-Fensters" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "You can change the incognito window background color" msgstr "Sie können die Hintergrundfarbe des Inkognito-Fensters ändern" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Search Bar Font" msgstr "Schriftart der Suchleiste" -#: src/prefs/customization/commonStyleGroup.ts:59 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the font of the search bar" msgstr "Sie können die Schriftart der Suchleiste ändern" -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "Item Title Font" -msgstr "Schriftart des Eintragtitels" - -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "You can change the font of the title" -msgstr "Sie können die Schriftart des Objekttitels ändern" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "Item Date Font" -msgstr "Schriftart des Eintragsdatums" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "You can change the font of the date" -msgstr "Sie können die Schriftart des Datums ändern" - -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Active Item Border Color" msgstr "Randfarbe des aktiven Eintrags" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the active item border color" msgstr "Sie können die Randfarbe des aktiven Eintrags ändern" -#: src/prefs/customization/commonStyleGroup.ts:80 +#: src/prefs/customization/commonStyleGroup.ts:89 msgid "Hovered Item Border Color" msgstr "Randfarbe des fokussierten Eintrags" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:90 msgid "You can change the hovered item border color" msgstr "Sie können die Randfarbe des fokussierten Eintrags ändern" +#: src/prefs/customization/commonStyleGroup.ts:97 +msgid "Show Controls on Hover" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:98 +msgid "When enabled, the controls will only show on hover" +msgstr "" + #: src/prefs/customization/emojiItemStyle.ts:15 msgid "Change the style of the emoji item" msgstr "Stil des Emoji-Eintrags ändern" @@ -279,11 +239,11 @@ msgstr "Stil des Emoji-Eintrags ändern" msgid "Emoji Item Style" msgstr "Stil des Emoji-Eintrags" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "Emoji Size" msgstr "Emoji-Größe" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "You can change the emoji size" msgstr "Sie können die Emoji-Größe ändern" @@ -295,13 +255,29 @@ msgstr "Stil des Datei-Eintrags ändern" msgid "File Item Style" msgstr "Stil des Datei-Eintrags" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:32 +msgid "Title Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:33 +msgid "You can change the text color of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "Title Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "Body Text Color" msgstr "Textfarbe des Hauptteils" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "You can change the text color of the body" msgstr "Sie können die Textfarbe des Hauptteils ändern" @@ -313,7 +289,7 @@ msgstr "Stil des Bild-Eintrags ändern" msgid "Image Item Style" msgstr "Stil des Bild-Eintrags" -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "Metadata Font" msgstr "Schriftart für Metadaten" @@ -333,51 +309,51 @@ msgstr "Stil des Verweis-Eintrags ändern" msgid "Link Item Style" msgstr "Stil Verweis-Eintrag" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "Titelfarbe für Metadaten" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the title color of the metadata" msgstr "Sie können die Titelfarbe der Metadaten ändern" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Font" msgstr "Schriftart für Metadatentitel" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the font of the metadata title" msgstr "Sie können die Schriftart des Metadatentitels ändern" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Description Color" msgstr "Farbe für Metadatenbeschreibung" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the description color of the metadata" msgstr "Sie können die Beschreibungsfarbe der Metadaten ändern" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Font" msgstr "Schriftart für Metadatenbeschreibung" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata description" msgstr "Sie können die Schriftart der Metadatenbeschreibung ändern" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Link Color" msgstr "Verweisfarbe für Metadaten" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the link color of the metadata" msgstr "Sie können die Verweisfarbe der Metadaten ändern" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Font" msgstr "Schriftart für Metadatenverweise" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata link" msgstr "Sie können die Schriftart von Metadatenlinks ändern" @@ -555,39 +531,39 @@ msgstr "Wackelindikator" msgid "Wiggles the indicator on panel" msgstr "Lässt den Indikator auf dem Bedienfeld wackeln" -#: src/utils/panoItemFactory.ts:406 +#: src/utils/panoItemFactory.ts:398 msgid "Image Copied" msgstr "Bild kopiert" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:399 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "Breite: %spx, Höhe: %spx, Größe: %s" -#: src/utils/panoItemFactory.ts:411 +#: src/utils/panoItemFactory.ts:403 msgid "Text Copied" msgstr "Text kopiert" -#: src/utils/panoItemFactory.ts:413 +#: src/utils/panoItemFactory.ts:405 msgid "Code Copied" msgstr "Code kopiert" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:407 msgid "Emoji Copied" msgstr "Emoji kopiert" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:415 msgid "Link Copied" msgstr "Verweis kopiert" -#: src/utils/panoItemFactory.ts:443 +#: src/utils/panoItemFactory.ts:428 msgid "Color Copied" msgstr "Farbe kopiert" -#: src/utils/panoItemFactory.ts:450 +#: src/utils/panoItemFactory.ts:435 msgid "File %s" msgstr "Datei %s" -#: src/utils/panoItemFactory.ts:451 +#: src/utils/panoItemFactory.ts:436 msgid "There are %s file(s)" msgstr "Es gibt %s Datei(en)" diff --git a/resources/po/el.po b/resources/po/el.po index f48ea58b..9d603d8f 100644 --- a/resources/po/el.po +++ b/resources/po/el.po @@ -31,7 +31,7 @@ msgstr "Ανώνυμης" msgid "Settings" msgstr "Ρυθμίσεις" -#: src/components/linkPanoItem.ts:39 +#: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "" @@ -48,83 +48,43 @@ msgid "Code Item Style" msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 -#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 #: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Header Background Color" +msgid "Body Background Color" msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 -#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 #: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 -msgid "You can change the background color of the header" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:32 -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/emojiItemStyle.ts:32 -#: src/prefs/customization/fileItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -#: src/prefs/customization/textItemStyle.ts:32 -msgid "Header Text Color" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:33 -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/emojiItemStyle.ts:33 -#: src/prefs/customization/fileItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -#: src/prefs/customization/textItemStyle.ts:33 -msgid "You can change the text color of the header" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:42 -#: src/prefs/customization/emojiItemStyle.ts:42 -#: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:41 -#: src/prefs/customization/linkItemStyle.ts:42 -#: src/prefs/customization/textItemStyle.ts:42 -msgid "Body Background Color" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:43 -#: src/prefs/customization/emojiItemStyle.ts:43 -#: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:43 -#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:60 +#: src/prefs/customization/codeItemStyle.ts:35 +#: src/prefs/customization/textItemStyle.ts:40 msgid "Character Length" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:56 -#: src/prefs/customization/textItemStyle.ts:61 +#: src/prefs/customization/codeItemStyle.ts:36 +#: src/prefs/customization/textItemStyle.ts:41 msgid "You can change the character length of the visible text in the body" msgstr "" @@ -136,141 +96,141 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:51 -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/colorItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:52 -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/colorItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:52 -#: src/prefs/customization/imageItemStyle.ts:61 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:41 msgid "Metadata Text Color" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:53 -#: src/prefs/customization/imageItemStyle.ts:62 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:42 msgid "You can change the text color of the metadata" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:14 +#: src/prefs/customization/commonStyleGroup.ts:20 msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "Icon Pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:21 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Default Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:22 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Legacy Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "Item Size" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "You can change the item size" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:32 +#: src/prefs/customization/commonStyleGroup.ts:38 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:39 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:48 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:58 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:50 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:59 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "Item Title Font" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "Item Date Font" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "You can change the font of the date" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:80 +#: src/prefs/customization/commonStyleGroup.ts:89 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:90 msgid "You can change the hovered item border color" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:97 +msgid "Show Controls on Hover" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:98 +msgid "When enabled, the controls will only show on hover" +msgstr "" + #: src/prefs/customization/emojiItemStyle.ts:15 msgid "Change the style of the emoji item" msgstr "" @@ -279,11 +239,11 @@ msgstr "" msgid "Emoji Item Style" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "Emoji Size" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "You can change the emoji size" msgstr "" @@ -295,13 +255,29 @@ msgstr "" msgid "File Item Style" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:32 +msgid "Title Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:33 +msgid "You can change the text color of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "Title Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "Body Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "You can change the text color of the body" msgstr "" @@ -313,7 +289,7 @@ msgstr "" msgid "Image Item Style" msgstr "" -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "Metadata Font" msgstr "" @@ -333,51 +309,51 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata link" msgstr "" @@ -555,39 +531,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:406 +#: src/utils/panoItemFactory.ts:398 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:399 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:411 +#: src/utils/panoItemFactory.ts:403 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:413 +#: src/utils/panoItemFactory.ts:405 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:407 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:415 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:443 +#: src/utils/panoItemFactory.ts:428 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:450 +#: src/utils/panoItemFactory.ts:435 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:451 +#: src/utils/panoItemFactory.ts:436 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/en.po b/resources/po/en.po index 04487429..db8fafba 100644 --- a/resources/po/en.po +++ b/resources/po/en.po @@ -31,7 +31,7 @@ msgstr "Incognito Mode" msgid "Settings" msgstr "Settings" -#: src/components/linkPanoItem.ts:39 +#: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "" @@ -48,83 +48,43 @@ msgid "Code Item Style" msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 -#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 #: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Header Background Color" +msgid "Body Background Color" msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 -#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 #: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 -msgid "You can change the background color of the header" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:32 -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/emojiItemStyle.ts:32 -#: src/prefs/customization/fileItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -#: src/prefs/customization/textItemStyle.ts:32 -msgid "Header Text Color" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:33 -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/emojiItemStyle.ts:33 -#: src/prefs/customization/fileItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -#: src/prefs/customization/textItemStyle.ts:33 -msgid "You can change the text color of the header" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:42 -#: src/prefs/customization/emojiItemStyle.ts:42 -#: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:41 -#: src/prefs/customization/linkItemStyle.ts:42 -#: src/prefs/customization/textItemStyle.ts:42 -msgid "Body Background Color" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:43 -#: src/prefs/customization/emojiItemStyle.ts:43 -#: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:43 -#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:60 +#: src/prefs/customization/codeItemStyle.ts:35 +#: src/prefs/customization/textItemStyle.ts:40 msgid "Character Length" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:56 -#: src/prefs/customization/textItemStyle.ts:61 +#: src/prefs/customization/codeItemStyle.ts:36 +#: src/prefs/customization/textItemStyle.ts:41 msgid "You can change the character length of the visible text in the body" msgstr "" @@ -136,141 +96,141 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:51 -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/colorItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:52 -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/colorItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:52 -#: src/prefs/customization/imageItemStyle.ts:61 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:41 msgid "Metadata Text Color" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:53 -#: src/prefs/customization/imageItemStyle.ts:62 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:42 msgid "You can change the text color of the metadata" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:14 +#: src/prefs/customization/commonStyleGroup.ts:20 msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "Icon Pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:21 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Default Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:22 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Legacy Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "Item Size" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "You can change the item size" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:32 +#: src/prefs/customization/commonStyleGroup.ts:38 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:39 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:48 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:58 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:50 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:59 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "Item Title Font" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "Item Date Font" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "You can change the font of the date" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:80 +#: src/prefs/customization/commonStyleGroup.ts:89 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:90 msgid "You can change the hovered item border color" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:97 +msgid "Show Controls on Hover" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:98 +msgid "When enabled, the controls will only show on hover" +msgstr "" + #: src/prefs/customization/emojiItemStyle.ts:15 msgid "Change the style of the emoji item" msgstr "" @@ -279,11 +239,11 @@ msgstr "" msgid "Emoji Item Style" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "Emoji Size" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "You can change the emoji size" msgstr "" @@ -295,13 +255,29 @@ msgstr "" msgid "File Item Style" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:32 +msgid "Title Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:33 +msgid "You can change the text color of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "Title Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "Body Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "You can change the text color of the body" msgstr "" @@ -313,7 +289,7 @@ msgstr "" msgid "Image Item Style" msgstr "" -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "Metadata Font" msgstr "" @@ -333,51 +309,51 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata link" msgstr "" @@ -555,39 +531,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:406 +#: src/utils/panoItemFactory.ts:398 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:399 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:411 +#: src/utils/panoItemFactory.ts:403 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:413 +#: src/utils/panoItemFactory.ts:405 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:407 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:415 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:443 +#: src/utils/panoItemFactory.ts:428 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:450 +#: src/utils/panoItemFactory.ts:435 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:451 +#: src/utils/panoItemFactory.ts:436 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/es.po b/resources/po/es.po index 3f959531..c716664d 100644 --- a/resources/po/es.po +++ b/resources/po/es.po @@ -31,7 +31,7 @@ msgstr "Modo incógnito" msgid "Settings" msgstr "Configuración" -#: src/components/linkPanoItem.ts:39 +#: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "Sin descripción" @@ -48,83 +48,43 @@ msgid "Code Item Style" msgstr "Estilo de las notas de código" #: src/prefs/customization/codeItemStyle.ts:22 -#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 #: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Header Background Color" -msgstr "Color de fondo del encabezado" +msgid "Body Background Color" +msgstr "Color de fondo del cuerpo" #: src/prefs/customization/codeItemStyle.ts:23 -#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 #: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 -msgid "You can change the background color of the header" -msgstr "Puedes cambiar el color de fondo del encabezado" - -#: src/prefs/customization/codeItemStyle.ts:32 -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/emojiItemStyle.ts:32 -#: src/prefs/customization/fileItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -#: src/prefs/customization/textItemStyle.ts:32 -msgid "Header Text Color" -msgstr "Color del texto del encabezado" - -#: src/prefs/customization/codeItemStyle.ts:33 -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/emojiItemStyle.ts:33 -#: src/prefs/customization/fileItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -#: src/prefs/customization/textItemStyle.ts:33 -msgid "You can change the text color of the header" -msgstr "Puedes cambiar el color del texto del encabezado" - -#: src/prefs/customization/codeItemStyle.ts:42 -#: src/prefs/customization/emojiItemStyle.ts:42 -#: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:41 -#: src/prefs/customization/linkItemStyle.ts:42 -#: src/prefs/customization/textItemStyle.ts:42 -msgid "Body Background Color" -msgstr "Color de fondo del cuerpo" - -#: src/prefs/customization/codeItemStyle.ts:43 -#: src/prefs/customization/emojiItemStyle.ts:43 -#: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:43 -#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "Puedes cambiar el color del cuerpo" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" msgstr "Tipografía del cuerpo" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "You can change the font of the body" msgstr "Puedes cambiar el tipo de letra del cuerpo" -#: src/prefs/customization/codeItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:60 +#: src/prefs/customization/codeItemStyle.ts:35 +#: src/prefs/customization/textItemStyle.ts:40 msgid "Character Length" msgstr "Número de caracteres" -#: src/prefs/customization/codeItemStyle.ts:56 -#: src/prefs/customization/textItemStyle.ts:61 +#: src/prefs/customization/codeItemStyle.ts:36 +#: src/prefs/customization/textItemStyle.ts:41 msgid "You can change the character length of the visible text in the body" msgstr "Puedes cambiar el número de caracteres visibles del texto en el cuerpo" @@ -136,141 +96,141 @@ msgstr "Cambia el estilo de las notas de color" msgid "Color Item Style" msgstr "Estilo de las notas de color" -#: src/prefs/customization/colorItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:51 -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/colorItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 msgid "Metadata Background Color" msgstr "Color de fondo de los metadatos" -#: src/prefs/customization/colorItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:52 -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/colorItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 msgid "You can change the background color of the metadata" msgstr "Puedes cambiar el color de fondo de los metadatos" -#: src/prefs/customization/colorItemStyle.ts:52 -#: src/prefs/customization/imageItemStyle.ts:61 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:41 msgid "Metadata Text Color" msgstr "Color de texto de los metadatos" -#: src/prefs/customization/colorItemStyle.ts:53 -#: src/prefs/customization/imageItemStyle.ts:62 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:42 msgid "You can change the text color of the metadata" msgstr "Puedes cambiar el color del texto de los metadatos" -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "You can change the font of the metadata" msgstr "Puedes cambiar el tipo de letra de los metadatos" -#: src/prefs/customization/commonStyleGroup.ts:14 +#: src/prefs/customization/commonStyleGroup.ts:20 msgid "Common" msgstr "Estilos generales" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "Icon Pack" msgstr "Paquete de iconos" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "You can change the icon pack" msgstr "Elige un paquete de iconos" -#: src/prefs/customization/commonStyleGroup.ts:21 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Default Icons" msgstr "Iconos por defecto" -#: src/prefs/customization/commonStyleGroup.ts:22 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Legacy Icons" msgstr "Iconos heredados" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "Item Size" msgstr "Tamaño de las notas" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "You can change the item size" msgstr "Puedes cambiar el tamaño de las notas" -#: src/prefs/customization/commonStyleGroup.ts:32 +#: src/prefs/customization/commonStyleGroup.ts:38 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:39 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 msgid "Window Position" msgstr "Posición de la ventana" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:48 msgid "You can change position of the Pano" msgstr "Elige la posición de la ventana de Pano" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Bottom" msgstr "Abajo" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Left" msgstr "A la izquierda" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Right" msgstr "A la derecha" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Top" msgstr "Arriba" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "Window Background Color" msgstr "Color de fondo de la ventana" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:58 msgid "You can change the window background color" msgstr "Puedes cambiar el color de fondo de la ventana" -#: src/prefs/customization/commonStyleGroup.ts:50 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Incognito Window Background Color" msgstr "Color de fondo de la ventana de incógnito" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "You can change the incognito window background color" msgstr "Puedes cambiar el color de fondo de la ventana cuando se ejecuta el modo incógnito" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Search Bar Font" msgstr "Tipo de letra de la barra de búsqueda" -#: src/prefs/customization/commonStyleGroup.ts:59 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the font of the search bar" msgstr "Elige la tipografía de la barra de búsqueda" -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "Item Title Font" -msgstr "Tipo de letra de los títulos de las notas" - -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "You can change the font of the title" -msgstr "Puedes cambiar la tipografía de los títulos de las notas" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "Item Date Font" -msgstr "Tipo de letra de la fecha de las notas" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "You can change the font of the date" -msgstr "Puedes cambiar la tipografía de la fecha" - -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Active Item Border Color" msgstr "Color del borde de la nota activa" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the active item border color" msgstr "Elige el color del borde de la nota activa" -#: src/prefs/customization/commonStyleGroup.ts:80 +#: src/prefs/customization/commonStyleGroup.ts:89 msgid "Hovered Item Border Color" msgstr "Color del borde de la nota al pasar el ratón" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:90 msgid "You can change the hovered item border color" msgstr "Elige el color del borde de las notas al pasar el ratón por encima" +#: src/prefs/customization/commonStyleGroup.ts:97 +msgid "Show Controls on Hover" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:98 +msgid "When enabled, the controls will only show on hover" +msgstr "" + #: src/prefs/customization/emojiItemStyle.ts:15 msgid "Change the style of the emoji item" msgstr "Cambia el estilo de las notas de emojis" @@ -279,11 +239,11 @@ msgstr "Cambia el estilo de las notas de emojis" msgid "Emoji Item Style" msgstr "Estilo de las notas de emojis" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "Emoji Size" msgstr "Tamaño del emoji" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "You can change the emoji size" msgstr "Puedes cambiar el tamaño de los emoji" @@ -295,13 +255,29 @@ msgstr "Cambia el estilo de las notas de archivos" msgid "File Item Style" msgstr "Estilo de las notas de archivos" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:32 +msgid "Title Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:33 +msgid "You can change the text color of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "Title Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "Body Text Color" msgstr "Color del texto del cuerpo" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "You can change the text color of the body" msgstr "Puedes cambiar el color del texto del cuerpo de la nota" @@ -313,7 +289,7 @@ msgstr "Cambia el estilo de las notas de imagen" msgid "Image Item Style" msgstr "Estilo de las notas de imagen" -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "Metadata Font" msgstr "Tipo de letra de los metadatos" @@ -333,51 +309,51 @@ msgstr "Cambia el estilo de las notas de enlaces" msgid "Link Item Style" msgstr "Estilo de las notas de enlaces" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "Color del título de los enlaces" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the title color of the metadata" msgstr "Puedes cambiar el color del título de los enlaces" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Font" msgstr "Tipo de letra del título de los enlaces" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the font of the metadata title" msgstr "Puedes cambiar la tipografía del título de los enlaces" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Description Color" msgstr "Color de la descripción del enlace" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the description color of the metadata" msgstr "Puedes cambiar el color de la descripción del enlace" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Font" msgstr "Tipo de letra de la descripción del enlace" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata description" msgstr "Puedes cambiar el tipo de letra de la descripción del enlace" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Link Color" msgstr "Color del enlace" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the link color of the metadata" msgstr "Puedes cambiar el color del enlace" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Font" msgstr "Tipo de letra del enlace" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata link" msgstr "Puedes cambiar la tipografía de los enlaces" @@ -555,39 +531,39 @@ msgstr "Agitar el indicador" msgid "Wiggles the indicator on panel" msgstr "Agita el indicador en el panel" -#: src/utils/panoItemFactory.ts:406 +#: src/utils/panoItemFactory.ts:398 msgid "Image Copied" msgstr "Imagen copiada" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:399 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "Anchura: %spx, Altura: %spx, Tamaño: %s" -#: src/utils/panoItemFactory.ts:411 +#: src/utils/panoItemFactory.ts:403 msgid "Text Copied" msgstr "Texto copiado" -#: src/utils/panoItemFactory.ts:413 +#: src/utils/panoItemFactory.ts:405 msgid "Code Copied" msgstr "Código copiado" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:407 msgid "Emoji Copied" msgstr "Emoji copiado" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:415 msgid "Link Copied" msgstr "Enlace copiado" -#: src/utils/panoItemFactory.ts:443 +#: src/utils/panoItemFactory.ts:428 msgid "Color Copied" msgstr "Color copiado" -#: src/utils/panoItemFactory.ts:450 +#: src/utils/panoItemFactory.ts:435 msgid "File %s" msgstr "Archivo %s" -#: src/utils/panoItemFactory.ts:451 +#: src/utils/panoItemFactory.ts:436 msgid "There are %s file(s)" msgstr "Hay %s archivo(s)" diff --git a/resources/po/et.po b/resources/po/et.po index f9d7d3f4..5ccbf664 100644 --- a/resources/po/et.po +++ b/resources/po/et.po @@ -31,7 +31,7 @@ msgstr "Inkognito režiim" msgid "Settings" msgstr "Seaded" -#: src/components/linkPanoItem.ts:39 +#: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "" @@ -48,83 +48,43 @@ msgid "Code Item Style" msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 -#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 #: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Header Background Color" +msgid "Body Background Color" msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 -#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 #: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 -msgid "You can change the background color of the header" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:32 -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/emojiItemStyle.ts:32 -#: src/prefs/customization/fileItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -#: src/prefs/customization/textItemStyle.ts:32 -msgid "Header Text Color" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:33 -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/emojiItemStyle.ts:33 -#: src/prefs/customization/fileItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -#: src/prefs/customization/textItemStyle.ts:33 -msgid "You can change the text color of the header" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:42 -#: src/prefs/customization/emojiItemStyle.ts:42 -#: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:41 -#: src/prefs/customization/linkItemStyle.ts:42 -#: src/prefs/customization/textItemStyle.ts:42 -msgid "Body Background Color" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:43 -#: src/prefs/customization/emojiItemStyle.ts:43 -#: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:43 -#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:60 +#: src/prefs/customization/codeItemStyle.ts:35 +#: src/prefs/customization/textItemStyle.ts:40 msgid "Character Length" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:56 -#: src/prefs/customization/textItemStyle.ts:61 +#: src/prefs/customization/codeItemStyle.ts:36 +#: src/prefs/customization/textItemStyle.ts:41 msgid "You can change the character length of the visible text in the body" msgstr "" @@ -136,141 +96,141 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:51 -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/colorItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:52 -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/colorItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:52 -#: src/prefs/customization/imageItemStyle.ts:61 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:41 msgid "Metadata Text Color" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:53 -#: src/prefs/customization/imageItemStyle.ts:62 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:42 msgid "You can change the text color of the metadata" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:14 +#: src/prefs/customization/commonStyleGroup.ts:20 msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "Icon Pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:21 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Default Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:22 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Legacy Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "Item Size" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "You can change the item size" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:32 +#: src/prefs/customization/commonStyleGroup.ts:38 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:39 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:48 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:58 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:50 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:59 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "Item Title Font" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "Item Date Font" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "You can change the font of the date" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:80 +#: src/prefs/customization/commonStyleGroup.ts:89 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:90 msgid "You can change the hovered item border color" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:97 +msgid "Show Controls on Hover" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:98 +msgid "When enabled, the controls will only show on hover" +msgstr "" + #: src/prefs/customization/emojiItemStyle.ts:15 msgid "Change the style of the emoji item" msgstr "" @@ -279,11 +239,11 @@ msgstr "" msgid "Emoji Item Style" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "Emoji Size" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "You can change the emoji size" msgstr "" @@ -295,13 +255,29 @@ msgstr "" msgid "File Item Style" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:32 +msgid "Title Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:33 +msgid "You can change the text color of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "Title Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "Body Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "You can change the text color of the body" msgstr "" @@ -313,7 +289,7 @@ msgstr "" msgid "Image Item Style" msgstr "" -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "Metadata Font" msgstr "" @@ -333,51 +309,51 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata link" msgstr "" @@ -555,39 +531,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:406 +#: src/utils/panoItemFactory.ts:398 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:399 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:411 +#: src/utils/panoItemFactory.ts:403 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:413 +#: src/utils/panoItemFactory.ts:405 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:407 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:415 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:443 +#: src/utils/panoItemFactory.ts:428 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:450 +#: src/utils/panoItemFactory.ts:435 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:451 +#: src/utils/panoItemFactory.ts:436 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/fi.po b/resources/po/fi.po index dc343ddd..ffbbacf1 100644 --- a/resources/po/fi.po +++ b/resources/po/fi.po @@ -31,7 +31,7 @@ msgstr "Incognito-tila" msgid "Settings" msgstr "Asetukset" -#: src/components/linkPanoItem.ts:39 +#: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "" @@ -48,83 +48,43 @@ msgid "Code Item Style" msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 -#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 #: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Header Background Color" +msgid "Body Background Color" msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 -#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 #: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 -msgid "You can change the background color of the header" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:32 -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/emojiItemStyle.ts:32 -#: src/prefs/customization/fileItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -#: src/prefs/customization/textItemStyle.ts:32 -msgid "Header Text Color" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:33 -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/emojiItemStyle.ts:33 -#: src/prefs/customization/fileItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -#: src/prefs/customization/textItemStyle.ts:33 -msgid "You can change the text color of the header" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:42 -#: src/prefs/customization/emojiItemStyle.ts:42 -#: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:41 -#: src/prefs/customization/linkItemStyle.ts:42 -#: src/prefs/customization/textItemStyle.ts:42 -msgid "Body Background Color" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:43 -#: src/prefs/customization/emojiItemStyle.ts:43 -#: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:43 -#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:60 +#: src/prefs/customization/codeItemStyle.ts:35 +#: src/prefs/customization/textItemStyle.ts:40 msgid "Character Length" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:56 -#: src/prefs/customization/textItemStyle.ts:61 +#: src/prefs/customization/codeItemStyle.ts:36 +#: src/prefs/customization/textItemStyle.ts:41 msgid "You can change the character length of the visible text in the body" msgstr "" @@ -136,141 +96,141 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:51 -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/colorItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:52 -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/colorItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:52 -#: src/prefs/customization/imageItemStyle.ts:61 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:41 msgid "Metadata Text Color" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:53 -#: src/prefs/customization/imageItemStyle.ts:62 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:42 msgid "You can change the text color of the metadata" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:14 +#: src/prefs/customization/commonStyleGroup.ts:20 msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "Icon Pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:21 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Default Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:22 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Legacy Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "Item Size" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "You can change the item size" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:32 +#: src/prefs/customization/commonStyleGroup.ts:38 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:39 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:48 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:58 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:50 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:59 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "Item Title Font" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "Item Date Font" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "You can change the font of the date" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:80 +#: src/prefs/customization/commonStyleGroup.ts:89 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:90 msgid "You can change the hovered item border color" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:97 +msgid "Show Controls on Hover" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:98 +msgid "When enabled, the controls will only show on hover" +msgstr "" + #: src/prefs/customization/emojiItemStyle.ts:15 msgid "Change the style of the emoji item" msgstr "" @@ -279,11 +239,11 @@ msgstr "" msgid "Emoji Item Style" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "Emoji Size" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "You can change the emoji size" msgstr "" @@ -295,13 +255,29 @@ msgstr "" msgid "File Item Style" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:32 +msgid "Title Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:33 +msgid "You can change the text color of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "Title Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "Body Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "You can change the text color of the body" msgstr "" @@ -313,7 +289,7 @@ msgstr "" msgid "Image Item Style" msgstr "" -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "Metadata Font" msgstr "" @@ -333,51 +309,51 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata link" msgstr "" @@ -555,39 +531,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:406 +#: src/utils/panoItemFactory.ts:398 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:399 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:411 +#: src/utils/panoItemFactory.ts:403 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:413 +#: src/utils/panoItemFactory.ts:405 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:407 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:415 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:443 +#: src/utils/panoItemFactory.ts:428 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:450 +#: src/utils/panoItemFactory.ts:435 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:451 +#: src/utils/panoItemFactory.ts:436 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/fr.po b/resources/po/fr.po index 55d2796c..c70c69af 100644 --- a/resources/po/fr.po +++ b/resources/po/fr.po @@ -31,7 +31,7 @@ msgstr "Mode incognito" msgid "Settings" msgstr "Paramètres" -#: src/components/linkPanoItem.ts:39 +#: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "Aucune description" @@ -48,83 +48,43 @@ msgid "Code Item Style" msgstr "Style de l’élément de code" #: src/prefs/customization/codeItemStyle.ts:22 -#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 #: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Header Background Color" -msgstr "Couleur de fond de l’en-tête" +msgid "Body Background Color" +msgstr "Couleur de fond du contenu" #: src/prefs/customization/codeItemStyle.ts:23 -#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 #: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 -msgid "You can change the background color of the header" -msgstr "Vous pouvez modifier la couleur d’arrière-plan de l’en-tête" - -#: src/prefs/customization/codeItemStyle.ts:32 -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/emojiItemStyle.ts:32 -#: src/prefs/customization/fileItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -#: src/prefs/customization/textItemStyle.ts:32 -msgid "Header Text Color" -msgstr "Couleur du texte de l’en-tête" - -#: src/prefs/customization/codeItemStyle.ts:33 -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/emojiItemStyle.ts:33 -#: src/prefs/customization/fileItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -#: src/prefs/customization/textItemStyle.ts:33 -msgid "You can change the text color of the header" -msgstr "Vous pouvez modifier la couleur du texte de l’en-tête" - -#: src/prefs/customization/codeItemStyle.ts:42 -#: src/prefs/customization/emojiItemStyle.ts:42 -#: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:41 -#: src/prefs/customization/linkItemStyle.ts:42 -#: src/prefs/customization/textItemStyle.ts:42 -msgid "Body Background Color" -msgstr "Couleur de fond du contenu" - -#: src/prefs/customization/codeItemStyle.ts:43 -#: src/prefs/customization/emojiItemStyle.ts:43 -#: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:43 -#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "Vous pouvez modifier la couleur d’arrière-plan du contenu" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" msgstr "Police du contenu" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "You can change the font of the body" msgstr "Vous pouvez modifier la police du contenu" -#: src/prefs/customization/codeItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:60 +#: src/prefs/customization/codeItemStyle.ts:35 +#: src/prefs/customization/textItemStyle.ts:40 msgid "Character Length" msgstr "Nombre de caractères" -#: src/prefs/customization/codeItemStyle.ts:56 -#: src/prefs/customization/textItemStyle.ts:61 +#: src/prefs/customization/codeItemStyle.ts:36 +#: src/prefs/customization/textItemStyle.ts:41 msgid "You can change the character length of the visible text in the body" msgstr "Vous pouvez modifier la longueur du texte affiché dans le contenu" @@ -136,141 +96,141 @@ msgstr "Changer le style de l’élément de couleur" msgid "Color Item Style" msgstr "Style de l’élément de couleur" -#: src/prefs/customization/colorItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:51 -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/colorItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 msgid "Metadata Background Color" msgstr "Couleur de fond des métadonnées" -#: src/prefs/customization/colorItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:52 -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/colorItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 msgid "You can change the background color of the metadata" msgstr "Vous pouvez modifier la couleur d’arrière-plan des métadonnées" -#: src/prefs/customization/colorItemStyle.ts:52 -#: src/prefs/customization/imageItemStyle.ts:61 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:41 msgid "Metadata Text Color" msgstr "Couleur du texte des métadonnées" -#: src/prefs/customization/colorItemStyle.ts:53 -#: src/prefs/customization/imageItemStyle.ts:62 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:42 msgid "You can change the text color of the metadata" msgstr "Vous pouvez modifier la couleur du texte des métadonnées" -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "You can change the font of the metadata" msgstr "Vous pouvez modifier la police des métadonnées" -#: src/prefs/customization/commonStyleGroup.ts:14 +#: src/prefs/customization/commonStyleGroup.ts:20 msgid "Common" msgstr "Commun" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "Icon Pack" msgstr "Pack d’icônes" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "You can change the icon pack" msgstr "Vous pouvez changer le pack d’icônes" -#: src/prefs/customization/commonStyleGroup.ts:21 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Default Icons" msgstr "Icônes par défaut" -#: src/prefs/customization/commonStyleGroup.ts:22 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Legacy Icons" msgstr "Anciennes icônes" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "Item Size" msgstr "Taille d’élément" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "You can change the item size" msgstr "Vous pouvez changer la taille de l’élément" -#: src/prefs/customization/commonStyleGroup.ts:32 +#: src/prefs/customization/commonStyleGroup.ts:38 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:39 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 msgid "Window Position" msgstr "Position de la fenêtre" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:48 msgid "You can change position of the Pano" msgstr "Vous pouvez modifier la position de Pano" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Bottom" msgstr "En bas" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Left" msgstr "À gauche" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Right" msgstr "À droite" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Top" msgstr "En haut" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "Window Background Color" msgstr "Couleur d’arrière-plan de la fenêtre" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:58 msgid "You can change the window background color" msgstr "Vous pouvez modifier la couleur d’arrière-plan de la fenêtre" -#: src/prefs/customization/commonStyleGroup.ts:50 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Incognito Window Background Color" msgstr "Couleur d’arrière-plan de la fenêtre incognito" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "You can change the incognito window background color" msgstr "Vous pouvez modifier la couleur d’arrière-plan de la fenêtre incognito" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Search Bar Font" msgstr "Police de la barre de recherche" -#: src/prefs/customization/commonStyleGroup.ts:59 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the font of the search bar" msgstr "Vous pouvez modifier la police de la barre de recherche" -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "Item Title Font" -msgstr "Police du titre de l’élément" - -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "You can change the font of the title" -msgstr "Vous pouvez modifier la police du titre" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "Item Date Font" -msgstr "Police de la date de l’élément" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "You can change the font of the date" -msgstr "Vous pouvez modifier la police de la date" - -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Active Item Border Color" msgstr "Couleur de bordure de l’élément actif" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the active item border color" msgstr "Vous pouvez modifier la couleur de bordure de l’élément actif" -#: src/prefs/customization/commonStyleGroup.ts:80 +#: src/prefs/customization/commonStyleGroup.ts:89 msgid "Hovered Item Border Color" msgstr "Couleur de bordure d’un élément survolé" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:90 msgid "You can change the hovered item border color" msgstr "Vous pouvez modifier la couleur de bordure d’un élément survolé" +#: src/prefs/customization/commonStyleGroup.ts:97 +msgid "Show Controls on Hover" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:98 +msgid "When enabled, the controls will only show on hover" +msgstr "" + #: src/prefs/customization/emojiItemStyle.ts:15 msgid "Change the style of the emoji item" msgstr "Changer le style de l’élément émoji" @@ -279,11 +239,11 @@ msgstr "Changer le style de l’élément émoji" msgid "Emoji Item Style" msgstr "Style de l’élément émoji" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "Emoji Size" msgstr "Taille d’émoji" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "You can change the emoji size" msgstr "Vous pouvez modifier la taille d’émoji" @@ -295,13 +255,29 @@ msgstr "Changer le style de l’élément de fichier" msgid "File Item Style" msgstr "Style de l’élément fichier" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:32 +msgid "Title Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:33 +msgid "You can change the text color of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "Title Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "Body Text Color" msgstr "Couleur du texte du corpus" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "You can change the text color of the body" msgstr "Vous pouvez modifier la couleur du texte du corpus" @@ -313,7 +289,7 @@ msgstr "Changer le style de l’élément d’image" msgid "Image Item Style" msgstr "Style de l’élément d’image" -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "Metadata Font" msgstr "Police des métadonnées" @@ -333,51 +309,51 @@ msgstr "Changer le style de l’élément de lien" msgid "Link Item Style" msgstr "Style de l’élément de lien" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "Couleur du titre des métadonnées" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the title color of the metadata" msgstr "Vous pouvez modifier la couleur du titre des métadonnées" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Font" msgstr "Police du titre des métadonnées" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the font of the metadata title" msgstr "Vous pouvez modifier la police du titre des métadonnées" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Description Color" msgstr "Couleur de la description des métadonnées" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the description color of the metadata" msgstr "Vous pouvez modifier la couleur de description des métadonnées" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Font" msgstr "Police de description des métadonnées" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata description" msgstr "Vous pouvez modifier la police de description des métadonnées" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Link Color" msgstr "Couleur du lien des métadonnées" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the link color of the metadata" msgstr "Vous pouvez modifier la couleur du lien des métadonnées" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Font" msgstr "Police du lien des métadonnées" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata link" msgstr "Vous pouvez modifier la police du lien des métadonnées" @@ -555,39 +531,39 @@ msgstr "Oscillation de l’indicateur" msgid "Wiggles the indicator on panel" msgstr "Fait bouger l’indicateur sur le panneau" -#: src/utils/panoItemFactory.ts:406 +#: src/utils/panoItemFactory.ts:398 msgid "Image Copied" msgstr "Image copiée" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:399 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "Largeur : %spx, Hauteur : %spx, Taille : %s" -#: src/utils/panoItemFactory.ts:411 +#: src/utils/panoItemFactory.ts:403 msgid "Text Copied" msgstr "Texte copié" -#: src/utils/panoItemFactory.ts:413 +#: src/utils/panoItemFactory.ts:405 msgid "Code Copied" msgstr "Code copié" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:407 msgid "Emoji Copied" msgstr "Émoji copié" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:415 msgid "Link Copied" msgstr "Lien copié" -#: src/utils/panoItemFactory.ts:443 +#: src/utils/panoItemFactory.ts:428 msgid "Color Copied" msgstr "Couleur copiée" -#: src/utils/panoItemFactory.ts:450 +#: src/utils/panoItemFactory.ts:435 msgid "File %s" msgstr "Fichier %s" -#: src/utils/panoItemFactory.ts:451 +#: src/utils/panoItemFactory.ts:436 msgid "There are %s file(s)" msgstr "Il y a %s fichier(s)" diff --git a/resources/po/he.po b/resources/po/he.po index 00400887..86ff2a75 100644 --- a/resources/po/he.po +++ b/resources/po/he.po @@ -31,7 +31,7 @@ msgstr "מצב גלישה בסתר" msgid "Settings" msgstr "הגדרות" -#: src/components/linkPanoItem.ts:39 +#: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "" @@ -48,83 +48,43 @@ msgid "Code Item Style" msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 -#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 #: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Header Background Color" +msgid "Body Background Color" msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 -#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 #: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 -msgid "You can change the background color of the header" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:32 -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/emojiItemStyle.ts:32 -#: src/prefs/customization/fileItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -#: src/prefs/customization/textItemStyle.ts:32 -msgid "Header Text Color" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:33 -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/emojiItemStyle.ts:33 -#: src/prefs/customization/fileItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -#: src/prefs/customization/textItemStyle.ts:33 -msgid "You can change the text color of the header" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:42 -#: src/prefs/customization/emojiItemStyle.ts:42 -#: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:41 -#: src/prefs/customization/linkItemStyle.ts:42 -#: src/prefs/customization/textItemStyle.ts:42 -msgid "Body Background Color" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:43 -#: src/prefs/customization/emojiItemStyle.ts:43 -#: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:43 -#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:60 +#: src/prefs/customization/codeItemStyle.ts:35 +#: src/prefs/customization/textItemStyle.ts:40 msgid "Character Length" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:56 -#: src/prefs/customization/textItemStyle.ts:61 +#: src/prefs/customization/codeItemStyle.ts:36 +#: src/prefs/customization/textItemStyle.ts:41 msgid "You can change the character length of the visible text in the body" msgstr "" @@ -136,141 +96,141 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:51 -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/colorItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:52 -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/colorItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:52 -#: src/prefs/customization/imageItemStyle.ts:61 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:41 msgid "Metadata Text Color" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:53 -#: src/prefs/customization/imageItemStyle.ts:62 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:42 msgid "You can change the text color of the metadata" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:14 +#: src/prefs/customization/commonStyleGroup.ts:20 msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "Icon Pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:21 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Default Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:22 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Legacy Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "Item Size" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "You can change the item size" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:32 +#: src/prefs/customization/commonStyleGroup.ts:38 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:39 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:48 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:58 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:50 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:59 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "Item Title Font" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "Item Date Font" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "You can change the font of the date" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:80 +#: src/prefs/customization/commonStyleGroup.ts:89 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:90 msgid "You can change the hovered item border color" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:97 +msgid "Show Controls on Hover" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:98 +msgid "When enabled, the controls will only show on hover" +msgstr "" + #: src/prefs/customization/emojiItemStyle.ts:15 msgid "Change the style of the emoji item" msgstr "" @@ -279,11 +239,11 @@ msgstr "" msgid "Emoji Item Style" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "Emoji Size" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "You can change the emoji size" msgstr "" @@ -295,13 +255,29 @@ msgstr "" msgid "File Item Style" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:32 +msgid "Title Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:33 +msgid "You can change the text color of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "Title Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "Body Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "You can change the text color of the body" msgstr "" @@ -313,7 +289,7 @@ msgstr "" msgid "Image Item Style" msgstr "" -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "Metadata Font" msgstr "" @@ -333,51 +309,51 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata link" msgstr "" @@ -555,39 +531,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:406 +#: src/utils/panoItemFactory.ts:398 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:399 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:411 +#: src/utils/panoItemFactory.ts:403 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:413 +#: src/utils/panoItemFactory.ts:405 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:407 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:415 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:443 +#: src/utils/panoItemFactory.ts:428 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:450 +#: src/utils/panoItemFactory.ts:435 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:451 +#: src/utils/panoItemFactory.ts:436 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/hr.po b/resources/po/hr.po index 6681ad43..6a04ec6e 100644 --- a/resources/po/hr.po +++ b/resources/po/hr.po @@ -31,7 +31,7 @@ msgstr "" msgid "Settings" msgstr "" -#: src/components/linkPanoItem.ts:39 +#: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "" @@ -48,83 +48,43 @@ msgid "Code Item Style" msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 -#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 #: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Header Background Color" +msgid "Body Background Color" msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 -#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 #: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 -msgid "You can change the background color of the header" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:32 -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/emojiItemStyle.ts:32 -#: src/prefs/customization/fileItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -#: src/prefs/customization/textItemStyle.ts:32 -msgid "Header Text Color" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:33 -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/emojiItemStyle.ts:33 -#: src/prefs/customization/fileItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -#: src/prefs/customization/textItemStyle.ts:33 -msgid "You can change the text color of the header" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:42 -#: src/prefs/customization/emojiItemStyle.ts:42 -#: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:41 -#: src/prefs/customization/linkItemStyle.ts:42 -#: src/prefs/customization/textItemStyle.ts:42 -msgid "Body Background Color" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:43 -#: src/prefs/customization/emojiItemStyle.ts:43 -#: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:43 -#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:60 +#: src/prefs/customization/codeItemStyle.ts:35 +#: src/prefs/customization/textItemStyle.ts:40 msgid "Character Length" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:56 -#: src/prefs/customization/textItemStyle.ts:61 +#: src/prefs/customization/codeItemStyle.ts:36 +#: src/prefs/customization/textItemStyle.ts:41 msgid "You can change the character length of the visible text in the body" msgstr "" @@ -136,141 +96,141 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:51 -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/colorItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:52 -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/colorItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:52 -#: src/prefs/customization/imageItemStyle.ts:61 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:41 msgid "Metadata Text Color" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:53 -#: src/prefs/customization/imageItemStyle.ts:62 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:42 msgid "You can change the text color of the metadata" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:14 +#: src/prefs/customization/commonStyleGroup.ts:20 msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "Icon Pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:21 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Default Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:22 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Legacy Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "Item Size" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "You can change the item size" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:32 +#: src/prefs/customization/commonStyleGroup.ts:38 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:39 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:48 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:58 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:50 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:59 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "Item Title Font" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "Item Date Font" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "You can change the font of the date" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:80 +#: src/prefs/customization/commonStyleGroup.ts:89 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:90 msgid "You can change the hovered item border color" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:97 +msgid "Show Controls on Hover" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:98 +msgid "When enabled, the controls will only show on hover" +msgstr "" + #: src/prefs/customization/emojiItemStyle.ts:15 msgid "Change the style of the emoji item" msgstr "" @@ -279,11 +239,11 @@ msgstr "" msgid "Emoji Item Style" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "Emoji Size" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "You can change the emoji size" msgstr "" @@ -295,13 +255,29 @@ msgstr "" msgid "File Item Style" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:32 +msgid "Title Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:33 +msgid "You can change the text color of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "Title Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "Body Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "You can change the text color of the body" msgstr "" @@ -313,7 +289,7 @@ msgstr "" msgid "Image Item Style" msgstr "" -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "Metadata Font" msgstr "" @@ -333,51 +309,51 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata link" msgstr "" @@ -555,39 +531,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:406 +#: src/utils/panoItemFactory.ts:398 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:399 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:411 +#: src/utils/panoItemFactory.ts:403 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:413 +#: src/utils/panoItemFactory.ts:405 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:407 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:415 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:443 +#: src/utils/panoItemFactory.ts:428 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:450 +#: src/utils/panoItemFactory.ts:435 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:451 +#: src/utils/panoItemFactory.ts:436 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/hu.po b/resources/po/hu.po index 96df7e76..1d438552 100644 --- a/resources/po/hu.po +++ b/resources/po/hu.po @@ -31,7 +31,7 @@ msgstr "Inkognitómód" msgid "Settings" msgstr "Beállítások" -#: src/components/linkPanoItem.ts:39 +#: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "" @@ -48,83 +48,43 @@ msgid "Code Item Style" msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 -#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 #: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Header Background Color" +msgid "Body Background Color" msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 -#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 #: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 -msgid "You can change the background color of the header" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:32 -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/emojiItemStyle.ts:32 -#: src/prefs/customization/fileItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -#: src/prefs/customization/textItemStyle.ts:32 -msgid "Header Text Color" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:33 -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/emojiItemStyle.ts:33 -#: src/prefs/customization/fileItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -#: src/prefs/customization/textItemStyle.ts:33 -msgid "You can change the text color of the header" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:42 -#: src/prefs/customization/emojiItemStyle.ts:42 -#: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:41 -#: src/prefs/customization/linkItemStyle.ts:42 -#: src/prefs/customization/textItemStyle.ts:42 -msgid "Body Background Color" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:43 -#: src/prefs/customization/emojiItemStyle.ts:43 -#: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:43 -#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:60 +#: src/prefs/customization/codeItemStyle.ts:35 +#: src/prefs/customization/textItemStyle.ts:40 msgid "Character Length" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:56 -#: src/prefs/customization/textItemStyle.ts:61 +#: src/prefs/customization/codeItemStyle.ts:36 +#: src/prefs/customization/textItemStyle.ts:41 msgid "You can change the character length of the visible text in the body" msgstr "" @@ -136,141 +96,141 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:51 -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/colorItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:52 -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/colorItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:52 -#: src/prefs/customization/imageItemStyle.ts:61 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:41 msgid "Metadata Text Color" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:53 -#: src/prefs/customization/imageItemStyle.ts:62 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:42 msgid "You can change the text color of the metadata" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:14 +#: src/prefs/customization/commonStyleGroup.ts:20 msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "Icon Pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:21 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Default Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:22 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Legacy Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "Item Size" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "You can change the item size" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:32 +#: src/prefs/customization/commonStyleGroup.ts:38 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:39 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:48 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:58 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:50 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:59 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "Item Title Font" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "Item Date Font" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "You can change the font of the date" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:80 +#: src/prefs/customization/commonStyleGroup.ts:89 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:90 msgid "You can change the hovered item border color" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:97 +msgid "Show Controls on Hover" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:98 +msgid "When enabled, the controls will only show on hover" +msgstr "" + #: src/prefs/customization/emojiItemStyle.ts:15 msgid "Change the style of the emoji item" msgstr "" @@ -279,11 +239,11 @@ msgstr "" msgid "Emoji Item Style" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "Emoji Size" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "You can change the emoji size" msgstr "" @@ -295,13 +255,29 @@ msgstr "" msgid "File Item Style" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:32 +msgid "Title Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:33 +msgid "You can change the text color of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "Title Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "Body Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "You can change the text color of the body" msgstr "" @@ -313,7 +289,7 @@ msgstr "" msgid "Image Item Style" msgstr "" -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "Metadata Font" msgstr "" @@ -333,51 +309,51 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata link" msgstr "" @@ -555,39 +531,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:406 +#: src/utils/panoItemFactory.ts:398 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:399 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:411 +#: src/utils/panoItemFactory.ts:403 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:413 +#: src/utils/panoItemFactory.ts:405 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:407 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:415 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:443 +#: src/utils/panoItemFactory.ts:428 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:450 +#: src/utils/panoItemFactory.ts:435 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:451 +#: src/utils/panoItemFactory.ts:436 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/is.po b/resources/po/is.po index 1126fa29..1b10a0ba 100644 --- a/resources/po/is.po +++ b/resources/po/is.po @@ -31,7 +31,7 @@ msgstr "Huliðsstilling" msgid "Settings" msgstr "Stillingar" -#: src/components/linkPanoItem.ts:39 +#: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "" @@ -48,83 +48,43 @@ msgid "Code Item Style" msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 -#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 #: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Header Background Color" +msgid "Body Background Color" msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 -#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 #: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 -msgid "You can change the background color of the header" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:32 -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/emojiItemStyle.ts:32 -#: src/prefs/customization/fileItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -#: src/prefs/customization/textItemStyle.ts:32 -msgid "Header Text Color" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:33 -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/emojiItemStyle.ts:33 -#: src/prefs/customization/fileItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -#: src/prefs/customization/textItemStyle.ts:33 -msgid "You can change the text color of the header" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:42 -#: src/prefs/customization/emojiItemStyle.ts:42 -#: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:41 -#: src/prefs/customization/linkItemStyle.ts:42 -#: src/prefs/customization/textItemStyle.ts:42 -msgid "Body Background Color" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:43 -#: src/prefs/customization/emojiItemStyle.ts:43 -#: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:43 -#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:60 +#: src/prefs/customization/codeItemStyle.ts:35 +#: src/prefs/customization/textItemStyle.ts:40 msgid "Character Length" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:56 -#: src/prefs/customization/textItemStyle.ts:61 +#: src/prefs/customization/codeItemStyle.ts:36 +#: src/prefs/customization/textItemStyle.ts:41 msgid "You can change the character length of the visible text in the body" msgstr "" @@ -136,141 +96,141 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:51 -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/colorItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:52 -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/colorItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:52 -#: src/prefs/customization/imageItemStyle.ts:61 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:41 msgid "Metadata Text Color" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:53 -#: src/prefs/customization/imageItemStyle.ts:62 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:42 msgid "You can change the text color of the metadata" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:14 +#: src/prefs/customization/commonStyleGroup.ts:20 msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "Icon Pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:21 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Default Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:22 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Legacy Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "Item Size" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "You can change the item size" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:32 +#: src/prefs/customization/commonStyleGroup.ts:38 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:39 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:48 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:58 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:50 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:59 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "Item Title Font" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "Item Date Font" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "You can change the font of the date" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:80 +#: src/prefs/customization/commonStyleGroup.ts:89 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:90 msgid "You can change the hovered item border color" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:97 +msgid "Show Controls on Hover" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:98 +msgid "When enabled, the controls will only show on hover" +msgstr "" + #: src/prefs/customization/emojiItemStyle.ts:15 msgid "Change the style of the emoji item" msgstr "" @@ -279,11 +239,11 @@ msgstr "" msgid "Emoji Item Style" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "Emoji Size" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "You can change the emoji size" msgstr "" @@ -295,13 +255,29 @@ msgstr "" msgid "File Item Style" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:32 +msgid "Title Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:33 +msgid "You can change the text color of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "Title Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "Body Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "You can change the text color of the body" msgstr "" @@ -313,7 +289,7 @@ msgstr "" msgid "Image Item Style" msgstr "" -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "Metadata Font" msgstr "" @@ -333,51 +309,51 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata link" msgstr "" @@ -555,39 +531,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:406 +#: src/utils/panoItemFactory.ts:398 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:399 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:411 +#: src/utils/panoItemFactory.ts:403 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:413 +#: src/utils/panoItemFactory.ts:405 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:407 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:415 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:443 +#: src/utils/panoItemFactory.ts:428 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:450 +#: src/utils/panoItemFactory.ts:435 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:451 +#: src/utils/panoItemFactory.ts:436 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/it.po b/resources/po/it.po index fd198e8a..2b75092c 100644 --- a/resources/po/it.po +++ b/resources/po/it.po @@ -31,7 +31,7 @@ msgstr "Modalità di navigazione in incognito" msgid "Settings" msgstr "Impostazioni" -#: src/components/linkPanoItem.ts:39 +#: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "Nessuna descrizione" @@ -48,83 +48,43 @@ msgid "Code Item Style" msgstr "Stile dell'elemento Codice" #: src/prefs/customization/codeItemStyle.ts:22 -#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 #: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Header Background Color" -msgstr "Colore di sfondo dell'intestazione" +msgid "Body Background Color" +msgstr "Colore di sfondo del corpo" #: src/prefs/customization/codeItemStyle.ts:23 -#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 #: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 -msgid "You can change the background color of the header" -msgstr "Puoi cambiare il colore di sfondo dell'intestazione" - -#: src/prefs/customization/codeItemStyle.ts:32 -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/emojiItemStyle.ts:32 -#: src/prefs/customization/fileItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -#: src/prefs/customization/textItemStyle.ts:32 -msgid "Header Text Color" -msgstr "Colore del testo dell'intestazione" - -#: src/prefs/customization/codeItemStyle.ts:33 -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/emojiItemStyle.ts:33 -#: src/prefs/customization/fileItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -#: src/prefs/customization/textItemStyle.ts:33 -msgid "You can change the text color of the header" -msgstr "Puoi cambiare il colore del testo dell'intestazione" - -#: src/prefs/customization/codeItemStyle.ts:42 -#: src/prefs/customization/emojiItemStyle.ts:42 -#: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:41 -#: src/prefs/customization/linkItemStyle.ts:42 -#: src/prefs/customization/textItemStyle.ts:42 -msgid "Body Background Color" -msgstr "Colore di sfondo del corpo" - -#: src/prefs/customization/codeItemStyle.ts:43 -#: src/prefs/customization/emojiItemStyle.ts:43 -#: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:43 -#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "Puoi cambiare il colore di sfondo del corpo" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" msgstr "Carattere del corpo" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "You can change the font of the body" msgstr "Puoi cambiare il carattere del corpo" -#: src/prefs/customization/codeItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:60 +#: src/prefs/customization/codeItemStyle.ts:35 +#: src/prefs/customization/textItemStyle.ts:40 msgid "Character Length" msgstr "Lunghezza caratteri" -#: src/prefs/customization/codeItemStyle.ts:56 -#: src/prefs/customization/textItemStyle.ts:61 +#: src/prefs/customization/codeItemStyle.ts:36 +#: src/prefs/customization/textItemStyle.ts:41 msgid "You can change the character length of the visible text in the body" msgstr "Puoi modificare la lunghezza dei caratteri del testo visibile nel corpo" @@ -136,141 +96,141 @@ msgstr "Cambia lo stile dell'elemento Colore" msgid "Color Item Style" msgstr "Stile dell'elemento Colore" -#: src/prefs/customization/colorItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:51 -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/colorItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 msgid "Metadata Background Color" msgstr "Colore di sfondo dei metadati" -#: src/prefs/customization/colorItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:52 -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/colorItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 msgid "You can change the background color of the metadata" msgstr "Puoi cambiare il colore di sfondo dei metadati" -#: src/prefs/customization/colorItemStyle.ts:52 -#: src/prefs/customization/imageItemStyle.ts:61 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:41 msgid "Metadata Text Color" msgstr "Colore del testo dei metadati" -#: src/prefs/customization/colorItemStyle.ts:53 -#: src/prefs/customization/imageItemStyle.ts:62 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:42 msgid "You can change the text color of the metadata" msgstr "Puoi cambiare il colore del testo dei metadati" -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "You can change the font of the metadata" msgstr "Puoi cambiare il carattere dei metadati" -#: src/prefs/customization/commonStyleGroup.ts:14 +#: src/prefs/customization/commonStyleGroup.ts:20 msgid "Common" msgstr "Comune" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "Icon Pack" msgstr "Pacchetto icone" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "You can change the icon pack" msgstr "Puoi cambiare il pacchetto di icone" -#: src/prefs/customization/commonStyleGroup.ts:21 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Default Icons" msgstr "Icone predefinite" -#: src/prefs/customization/commonStyleGroup.ts:22 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Legacy Icons" msgstr "Icone legacy" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "Item Size" msgstr "Dimensione elemento" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "You can change the item size" msgstr "Puoi modificare la dimensione dell'elemento" -#: src/prefs/customization/commonStyleGroup.ts:32 +#: src/prefs/customization/commonStyleGroup.ts:38 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:39 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 msgid "Window Position" msgstr "Posizione della finestra" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:48 msgid "You can change position of the Pano" msgstr "Puoi cambiare la posizione di Pano" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Bottom" msgstr "In basso" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Left" msgstr "Sinistra" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Right" msgstr "Destra" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Top" msgstr "In alto" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "Window Background Color" msgstr "Colore di sfondo della finestra" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:58 msgid "You can change the window background color" msgstr "Puoi cambiare il colore di sfondo della finestra" -#: src/prefs/customization/commonStyleGroup.ts:50 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Incognito Window Background Color" msgstr "Colore di sfondo della finestra di navigazione in incognito" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "You can change the incognito window background color" msgstr "Puoi cambiare il colore di sfondo della finestra di navigazione in incognito" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Search Bar Font" msgstr "Carattere della barra di ricerca" -#: src/prefs/customization/commonStyleGroup.ts:59 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the font of the search bar" msgstr "Puoi cambiare il carattere della barra di ricerca" -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "Item Title Font" -msgstr "Carattere del titolo dell'elemento" - -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "You can change the font of the title" -msgstr "Puoi cambiare il carattere del titolo" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "Item Date Font" -msgstr "Carattere dell'elemento data" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "You can change the font of the date" -msgstr "Puoi cambiare il font della data" - -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Active Item Border Color" msgstr "Colore del bordo dell'elemento attivo" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the active item border color" msgstr "È possibile modificare il colore del bordo dell'elemento attivo" -#: src/prefs/customization/commonStyleGroup.ts:80 +#: src/prefs/customization/commonStyleGroup.ts:89 msgid "Hovered Item Border Color" msgstr "Colore del bordo dell'elemento al passaggio del mouse" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:90 msgid "You can change the hovered item border color" msgstr "Puoi cambiare il colore del bordo dell'elemento al passaggio del mouse" +#: src/prefs/customization/commonStyleGroup.ts:97 +msgid "Show Controls on Hover" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:98 +msgid "When enabled, the controls will only show on hover" +msgstr "" + #: src/prefs/customization/emojiItemStyle.ts:15 msgid "Change the style of the emoji item" msgstr "Cambia lo stile dell'elemento emoji" @@ -279,11 +239,11 @@ msgstr "Cambia lo stile dell'elemento emoji" msgid "Emoji Item Style" msgstr "Stile oggetto Emoji" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "Emoji Size" msgstr "Dimensione emoji" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "You can change the emoji size" msgstr "Puoi modificare la dimensione dell'emoji" @@ -295,13 +255,29 @@ msgstr "Cambia lo stile dell'elemento del file" msgid "File Item Style" msgstr "Stile elemento file" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:32 +msgid "Title Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:33 +msgid "You can change the text color of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "Title Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "Body Text Color" msgstr "Colore del corpo del testo" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "You can change the text color of the body" msgstr "Puoi cambiare il colore del testo del corpo" @@ -313,7 +289,7 @@ msgstr "Cambia lo stile dell'elemento immagine" msgid "Image Item Style" msgstr "Stile oggetto immagine" -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "Metadata Font" msgstr "Carattere dei metadati" @@ -333,51 +309,51 @@ msgstr "Modificare lo stile dell'elemento di collegamento" msgid "Link Item Style" msgstr "Stile elemento di collegamento" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "Colore del titolo dei metadati" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the title color of the metadata" msgstr "Puoi cambiare il colore del titolo dei metadati" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Font" msgstr "Carattere del titolo dei metadati" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the font of the metadata title" msgstr "È possibile modificare il carattere del titolo dei metadati" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Description Color" msgstr "Descrizione Colore Metadati" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the description color of the metadata" msgstr "Puoi cambiare il colore della descrizione dei metadati" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Font" msgstr "Descrizione Carattere Metadati" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata description" msgstr "È possibile modificare il carattere della descrizione dei metadati" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Link Color" msgstr "Colore del collegamento ai metadati" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the link color of the metadata" msgstr "È possibile modificare il colore del collegamento dei metadati" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Font" msgstr "Carattere di collegamento metadati" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata link" msgstr "È possibile modificare il carattere del collegamento ai metadati" @@ -555,39 +531,39 @@ msgstr "Scuoti l'indicatore" msgid "Wiggles the indicator on panel" msgstr "Scuoti l'indicatore sul pannello" -#: src/utils/panoItemFactory.ts:406 +#: src/utils/panoItemFactory.ts:398 msgid "Image Copied" msgstr "Immagine copiata" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:399 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "Larghezza: %spx, Altezza: %spx, Dimensione: %s" -#: src/utils/panoItemFactory.ts:411 +#: src/utils/panoItemFactory.ts:403 msgid "Text Copied" msgstr "Testo copiato" -#: src/utils/panoItemFactory.ts:413 +#: src/utils/panoItemFactory.ts:405 msgid "Code Copied" msgstr "Codice copiato" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:407 msgid "Emoji Copied" msgstr "Emoji Copiata" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:415 msgid "Link Copied" msgstr "Link copiato" -#: src/utils/panoItemFactory.ts:443 +#: src/utils/panoItemFactory.ts:428 msgid "Color Copied" msgstr "Colore copiato" -#: src/utils/panoItemFactory.ts:450 +#: src/utils/panoItemFactory.ts:435 msgid "File %s" msgstr "File %s" -#: src/utils/panoItemFactory.ts:451 +#: src/utils/panoItemFactory.ts:436 msgid "There are %s file(s)" msgstr "Ci sono %s file(s)" diff --git a/resources/po/ja.po b/resources/po/ja.po index ea331e80..119dfa6a 100644 --- a/resources/po/ja.po +++ b/resources/po/ja.po @@ -31,7 +31,7 @@ msgstr "シークレットモード" msgid "Settings" msgstr "設定" -#: src/components/linkPanoItem.ts:39 +#: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "" @@ -48,83 +48,43 @@ msgid "Code Item Style" msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 -#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 #: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Header Background Color" +msgid "Body Background Color" msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 -#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 #: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 -msgid "You can change the background color of the header" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:32 -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/emojiItemStyle.ts:32 -#: src/prefs/customization/fileItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -#: src/prefs/customization/textItemStyle.ts:32 -msgid "Header Text Color" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:33 -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/emojiItemStyle.ts:33 -#: src/prefs/customization/fileItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -#: src/prefs/customization/textItemStyle.ts:33 -msgid "You can change the text color of the header" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:42 -#: src/prefs/customization/emojiItemStyle.ts:42 -#: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:41 -#: src/prefs/customization/linkItemStyle.ts:42 -#: src/prefs/customization/textItemStyle.ts:42 -msgid "Body Background Color" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:43 -#: src/prefs/customization/emojiItemStyle.ts:43 -#: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:43 -#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:60 +#: src/prefs/customization/codeItemStyle.ts:35 +#: src/prefs/customization/textItemStyle.ts:40 msgid "Character Length" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:56 -#: src/prefs/customization/textItemStyle.ts:61 +#: src/prefs/customization/codeItemStyle.ts:36 +#: src/prefs/customization/textItemStyle.ts:41 msgid "You can change the character length of the visible text in the body" msgstr "" @@ -136,141 +96,141 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:51 -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/colorItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:52 -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/colorItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:52 -#: src/prefs/customization/imageItemStyle.ts:61 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:41 msgid "Metadata Text Color" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:53 -#: src/prefs/customization/imageItemStyle.ts:62 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:42 msgid "You can change the text color of the metadata" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:14 +#: src/prefs/customization/commonStyleGroup.ts:20 msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "Icon Pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:21 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Default Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:22 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Legacy Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "Item Size" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "You can change the item size" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:32 +#: src/prefs/customization/commonStyleGroup.ts:38 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:39 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:48 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:58 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:50 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:59 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "Item Title Font" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "Item Date Font" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "You can change the font of the date" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:80 +#: src/prefs/customization/commonStyleGroup.ts:89 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:90 msgid "You can change the hovered item border color" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:97 +msgid "Show Controls on Hover" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:98 +msgid "When enabled, the controls will only show on hover" +msgstr "" + #: src/prefs/customization/emojiItemStyle.ts:15 msgid "Change the style of the emoji item" msgstr "" @@ -279,11 +239,11 @@ msgstr "" msgid "Emoji Item Style" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "Emoji Size" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "You can change the emoji size" msgstr "" @@ -295,13 +255,29 @@ msgstr "" msgid "File Item Style" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:32 +msgid "Title Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:33 +msgid "You can change the text color of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "Title Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "Body Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "You can change the text color of the body" msgstr "" @@ -313,7 +289,7 @@ msgstr "" msgid "Image Item Style" msgstr "" -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "Metadata Font" msgstr "" @@ -333,51 +309,51 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata link" msgstr "" @@ -555,39 +531,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:406 +#: src/utils/panoItemFactory.ts:398 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:399 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:411 +#: src/utils/panoItemFactory.ts:403 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:413 +#: src/utils/panoItemFactory.ts:405 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:407 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:415 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:443 +#: src/utils/panoItemFactory.ts:428 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:450 +#: src/utils/panoItemFactory.ts:435 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:451 +#: src/utils/panoItemFactory.ts:436 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/ko.po b/resources/po/ko.po index 87f12b65..0f005744 100644 --- a/resources/po/ko.po +++ b/resources/po/ko.po @@ -31,7 +31,7 @@ msgstr "시크릿 모드" msgid "Settings" msgstr "설정" -#: src/components/linkPanoItem.ts:39 +#: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "설명 없음" @@ -48,83 +48,43 @@ msgid "Code Item Style" msgstr "코드 스타일" #: src/prefs/customization/codeItemStyle.ts:22 -#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 #: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Header Background Color" -msgstr "제목 배경 색상" +msgid "Body Background Color" +msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 -#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 #: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 -msgid "You can change the background color of the header" -msgstr "제목 배경의 색상을 바꾸기" - -#: src/prefs/customization/codeItemStyle.ts:32 -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/emojiItemStyle.ts:32 -#: src/prefs/customization/fileItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -#: src/prefs/customization/textItemStyle.ts:32 -msgid "Header Text Color" -msgstr "제목 텍스트 색상" - -#: src/prefs/customization/codeItemStyle.ts:33 -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/emojiItemStyle.ts:33 -#: src/prefs/customization/fileItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -#: src/prefs/customization/textItemStyle.ts:33 -msgid "You can change the text color of the header" -msgstr "제목 텍스트의 색상을 바꾸기" - -#: src/prefs/customization/codeItemStyle.ts:42 -#: src/prefs/customization/emojiItemStyle.ts:42 -#: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:41 -#: src/prefs/customization/linkItemStyle.ts:42 -#: src/prefs/customization/textItemStyle.ts:42 -msgid "Body Background Color" -msgstr "내용 배경 색상" - -#: src/prefs/customization/codeItemStyle.ts:43 -#: src/prefs/customization/emojiItemStyle.ts:43 -#: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:43 -#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "내용 배경의 색상을 바꾸기" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" msgstr "내용 글꼴" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:60 +#: src/prefs/customization/codeItemStyle.ts:35 +#: src/prefs/customization/textItemStyle.ts:40 msgid "Character Length" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:56 -#: src/prefs/customization/textItemStyle.ts:61 +#: src/prefs/customization/codeItemStyle.ts:36 +#: src/prefs/customization/textItemStyle.ts:41 msgid "You can change the character length of the visible text in the body" msgstr "" @@ -136,141 +96,141 @@ msgstr "색상 항목의 스타일을 바꾸기" msgid "Color Item Style" msgstr "색상 항목 스타일" -#: src/prefs/customization/colorItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:51 -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/colorItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:52 -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/colorItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:52 -#: src/prefs/customization/imageItemStyle.ts:61 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:41 msgid "Metadata Text Color" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:53 -#: src/prefs/customization/imageItemStyle.ts:62 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:42 msgid "You can change the text color of the metadata" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:14 +#: src/prefs/customization/commonStyleGroup.ts:20 msgid "Common" msgstr "일반" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "Icon Pack" msgstr "아이콘 팩" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "You can change the icon pack" msgstr "아이콘 팩을 바꾸기" -#: src/prefs/customization/commonStyleGroup.ts:21 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Default Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:22 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Legacy Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "Item Size" msgstr "항목 크기" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "You can change the item size" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:32 +#: src/prefs/customization/commonStyleGroup.ts:38 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:39 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:48 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Bottom" msgstr "아래" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Left" msgstr "왼쪽" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Right" msgstr "오른쪽" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Top" msgstr "위" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:58 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:50 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Search Bar Font" msgstr "검색 창 글꼴" -#: src/prefs/customization/commonStyleGroup.ts:59 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the font of the search bar" msgstr "검색 창의 글꼴을 바꾸기" -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "Item Title Font" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "Item Date Font" -msgstr "항목 날짜 글꼴" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "You can change the font of the date" -msgstr "항목 날짜의 글꼴 바꾸기" - -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:80 +#: src/prefs/customization/commonStyleGroup.ts:89 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:90 msgid "You can change the hovered item border color" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:97 +msgid "Show Controls on Hover" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:98 +msgid "When enabled, the controls will only show on hover" +msgstr "" + #: src/prefs/customization/emojiItemStyle.ts:15 msgid "Change the style of the emoji item" msgstr "" @@ -279,11 +239,11 @@ msgstr "" msgid "Emoji Item Style" msgstr "이모티콘 항목 스타일" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "Emoji Size" msgstr "이모티콘 크기" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "You can change the emoji size" msgstr "이모티콘 크기를 바꾸기" @@ -295,13 +255,29 @@ msgstr "파일 항목의 스타일을 바꾸기" msgid "File Item Style" msgstr "파일 항목 스타일" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:32 +msgid "Title Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:33 +msgid "You can change the text color of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "Title Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "Body Text Color" msgstr "내용 텍스트 색상" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "You can change the text color of the body" msgstr "내용 텍스트 색상을 바꾸기" @@ -313,7 +289,7 @@ msgstr "이미지 항목의 스타일을 바꾸기" msgid "Image Item Style" msgstr "이미지 항목 스타일" -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "Metadata Font" msgstr "메타데이터 글꼴" @@ -333,51 +309,51 @@ msgstr "링크 항목의 스타일을 바꾸기" msgid "Link Item Style" msgstr "링크 항목 스타일" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "메타데이터 제목 색상" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the title color of the metadata" msgstr "메타데이터 제목의 색상을 바꾸기" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Font" msgstr "메타데이터 제목 글꼴" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the font of the metadata title" msgstr "메타데이터 제목의 글꼴을 바꾸기" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Description Color" msgstr "메타데이터 설명 색상" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the description color of the metadata" msgstr "메타데이터 설명의 색상을 바꾸기" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Font" msgstr "메타데이터 설명 글꼴" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata description" msgstr "메타데이터 설명의 글꼴을 바꾸기" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Link Color" msgstr "메타데이터 링크 색상" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the link color of the metadata" msgstr "메타데이터 링크의 색상을 바꾸기" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Font" msgstr "메타데이터 링크 글꼴" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata link" msgstr "메타데이터 링크의 글꼴을 바꾸기" @@ -555,39 +531,39 @@ msgstr "표시기 흔들기" msgid "Wiggles the indicator on panel" msgstr "패널의 표시기를 흔들기" -#: src/utils/panoItemFactory.ts:406 +#: src/utils/panoItemFactory.ts:398 msgid "Image Copied" msgstr "이미지 복사됨" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:399 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "너비: %spx, 높이: %spx, 크기: %s" -#: src/utils/panoItemFactory.ts:411 +#: src/utils/panoItemFactory.ts:403 msgid "Text Copied" msgstr "텍스트 복사됨" -#: src/utils/panoItemFactory.ts:413 +#: src/utils/panoItemFactory.ts:405 msgid "Code Copied" msgstr "코드 복사됨" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:407 msgid "Emoji Copied" msgstr "이모티콘 복사됨" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:415 msgid "Link Copied" msgstr "링크 복사됨" -#: src/utils/panoItemFactory.ts:443 +#: src/utils/panoItemFactory.ts:428 msgid "Color Copied" msgstr "색상 복사됨" -#: src/utils/panoItemFactory.ts:450 +#: src/utils/panoItemFactory.ts:435 msgid "File %s" msgstr "파일 %s" -#: src/utils/panoItemFactory.ts:451 +#: src/utils/panoItemFactory.ts:436 msgid "There are %s file(s)" msgstr "%s 개의 파일이 있음" diff --git a/resources/po/nl.po b/resources/po/nl.po index 853bf907..f450bcf1 100644 --- a/resources/po/nl.po +++ b/resources/po/nl.po @@ -31,7 +31,7 @@ msgstr "Incognitomodus" msgid "Settings" msgstr "Voorkeuren" -#: src/components/linkPanoItem.ts:39 +#: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "" @@ -48,83 +48,43 @@ msgid "Code Item Style" msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 -#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 #: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Header Background Color" +msgid "Body Background Color" msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 -#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 #: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 -msgid "You can change the background color of the header" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:32 -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/emojiItemStyle.ts:32 -#: src/prefs/customization/fileItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -#: src/prefs/customization/textItemStyle.ts:32 -msgid "Header Text Color" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:33 -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/emojiItemStyle.ts:33 -#: src/prefs/customization/fileItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -#: src/prefs/customization/textItemStyle.ts:33 -msgid "You can change the text color of the header" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:42 -#: src/prefs/customization/emojiItemStyle.ts:42 -#: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:41 -#: src/prefs/customization/linkItemStyle.ts:42 -#: src/prefs/customization/textItemStyle.ts:42 -msgid "Body Background Color" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:43 -#: src/prefs/customization/emojiItemStyle.ts:43 -#: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:43 -#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:60 +#: src/prefs/customization/codeItemStyle.ts:35 +#: src/prefs/customization/textItemStyle.ts:40 msgid "Character Length" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:56 -#: src/prefs/customization/textItemStyle.ts:61 +#: src/prefs/customization/codeItemStyle.ts:36 +#: src/prefs/customization/textItemStyle.ts:41 msgid "You can change the character length of the visible text in the body" msgstr "" @@ -136,141 +96,141 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:51 -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/colorItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:52 -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/colorItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:52 -#: src/prefs/customization/imageItemStyle.ts:61 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:41 msgid "Metadata Text Color" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:53 -#: src/prefs/customization/imageItemStyle.ts:62 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:42 msgid "You can change the text color of the metadata" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:14 +#: src/prefs/customization/commonStyleGroup.ts:20 msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "Icon Pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:21 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Default Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:22 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Legacy Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "Item Size" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "You can change the item size" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:32 +#: src/prefs/customization/commonStyleGroup.ts:38 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:39 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:48 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:58 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:50 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:59 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "Item Title Font" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "Item Date Font" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "You can change the font of the date" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:80 +#: src/prefs/customization/commonStyleGroup.ts:89 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:90 msgid "You can change the hovered item border color" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:97 +msgid "Show Controls on Hover" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:98 +msgid "When enabled, the controls will only show on hover" +msgstr "" + #: src/prefs/customization/emojiItemStyle.ts:15 msgid "Change the style of the emoji item" msgstr "" @@ -279,11 +239,11 @@ msgstr "" msgid "Emoji Item Style" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "Emoji Size" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "You can change the emoji size" msgstr "" @@ -295,13 +255,29 @@ msgstr "" msgid "File Item Style" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:32 +msgid "Title Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:33 +msgid "You can change the text color of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "Title Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "Body Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "You can change the text color of the body" msgstr "" @@ -313,7 +289,7 @@ msgstr "" msgid "Image Item Style" msgstr "" -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "Metadata Font" msgstr "" @@ -333,51 +309,51 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata link" msgstr "" @@ -555,39 +531,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:406 +#: src/utils/panoItemFactory.ts:398 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:399 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:411 +#: src/utils/panoItemFactory.ts:403 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:413 +#: src/utils/panoItemFactory.ts:405 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:407 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:415 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:443 +#: src/utils/panoItemFactory.ts:428 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:450 +#: src/utils/panoItemFactory.ts:435 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:451 +#: src/utils/panoItemFactory.ts:436 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/no.po b/resources/po/no.po index 29a5534e..76774aee 100644 --- a/resources/po/no.po +++ b/resources/po/no.po @@ -31,7 +31,7 @@ msgstr "Inkognitomodus" msgid "Settings" msgstr "Innstillinger" -#: src/components/linkPanoItem.ts:39 +#: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "" @@ -48,83 +48,43 @@ msgid "Code Item Style" msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 -#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 #: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Header Background Color" +msgid "Body Background Color" msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 -#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 #: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 -msgid "You can change the background color of the header" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:32 -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/emojiItemStyle.ts:32 -#: src/prefs/customization/fileItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -#: src/prefs/customization/textItemStyle.ts:32 -msgid "Header Text Color" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:33 -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/emojiItemStyle.ts:33 -#: src/prefs/customization/fileItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -#: src/prefs/customization/textItemStyle.ts:33 -msgid "You can change the text color of the header" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:42 -#: src/prefs/customization/emojiItemStyle.ts:42 -#: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:41 -#: src/prefs/customization/linkItemStyle.ts:42 -#: src/prefs/customization/textItemStyle.ts:42 -msgid "Body Background Color" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:43 -#: src/prefs/customization/emojiItemStyle.ts:43 -#: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:43 -#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:60 +#: src/prefs/customization/codeItemStyle.ts:35 +#: src/prefs/customization/textItemStyle.ts:40 msgid "Character Length" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:56 -#: src/prefs/customization/textItemStyle.ts:61 +#: src/prefs/customization/codeItemStyle.ts:36 +#: src/prefs/customization/textItemStyle.ts:41 msgid "You can change the character length of the visible text in the body" msgstr "" @@ -136,141 +96,141 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:51 -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/colorItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:52 -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/colorItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:52 -#: src/prefs/customization/imageItemStyle.ts:61 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:41 msgid "Metadata Text Color" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:53 -#: src/prefs/customization/imageItemStyle.ts:62 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:42 msgid "You can change the text color of the metadata" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:14 +#: src/prefs/customization/commonStyleGroup.ts:20 msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "Icon Pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:21 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Default Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:22 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Legacy Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "Item Size" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "You can change the item size" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:32 +#: src/prefs/customization/commonStyleGroup.ts:38 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:39 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:48 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:58 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:50 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:59 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "Item Title Font" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "Item Date Font" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "You can change the font of the date" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:80 +#: src/prefs/customization/commonStyleGroup.ts:89 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:90 msgid "You can change the hovered item border color" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:97 +msgid "Show Controls on Hover" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:98 +msgid "When enabled, the controls will only show on hover" +msgstr "" + #: src/prefs/customization/emojiItemStyle.ts:15 msgid "Change the style of the emoji item" msgstr "" @@ -279,11 +239,11 @@ msgstr "" msgid "Emoji Item Style" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "Emoji Size" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "You can change the emoji size" msgstr "" @@ -295,13 +255,29 @@ msgstr "" msgid "File Item Style" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:32 +msgid "Title Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:33 +msgid "You can change the text color of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "Title Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "Body Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "You can change the text color of the body" msgstr "" @@ -313,7 +289,7 @@ msgstr "" msgid "Image Item Style" msgstr "" -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "Metadata Font" msgstr "" @@ -333,51 +309,51 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata link" msgstr "" @@ -555,39 +531,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:406 +#: src/utils/panoItemFactory.ts:398 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:399 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:411 +#: src/utils/panoItemFactory.ts:403 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:413 +#: src/utils/panoItemFactory.ts:405 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:407 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:415 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:443 +#: src/utils/panoItemFactory.ts:428 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:450 +#: src/utils/panoItemFactory.ts:435 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:451 +#: src/utils/panoItemFactory.ts:436 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/oc.po b/resources/po/oc.po index c51a36fb..be3adcf0 100644 --- a/resources/po/oc.po +++ b/resources/po/oc.po @@ -31,7 +31,7 @@ msgstr "Mòde incognito" msgid "Settings" msgstr "Paramètres" -#: src/components/linkPanoItem.ts:39 +#: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "" @@ -48,83 +48,43 @@ msgid "Code Item Style" msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 -#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 #: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Header Background Color" +msgid "Body Background Color" msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 -#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 #: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 -msgid "You can change the background color of the header" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:32 -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/emojiItemStyle.ts:32 -#: src/prefs/customization/fileItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -#: src/prefs/customization/textItemStyle.ts:32 -msgid "Header Text Color" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:33 -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/emojiItemStyle.ts:33 -#: src/prefs/customization/fileItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -#: src/prefs/customization/textItemStyle.ts:33 -msgid "You can change the text color of the header" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:42 -#: src/prefs/customization/emojiItemStyle.ts:42 -#: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:41 -#: src/prefs/customization/linkItemStyle.ts:42 -#: src/prefs/customization/textItemStyle.ts:42 -msgid "Body Background Color" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:43 -#: src/prefs/customization/emojiItemStyle.ts:43 -#: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:43 -#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:60 +#: src/prefs/customization/codeItemStyle.ts:35 +#: src/prefs/customization/textItemStyle.ts:40 msgid "Character Length" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:56 -#: src/prefs/customization/textItemStyle.ts:61 +#: src/prefs/customization/codeItemStyle.ts:36 +#: src/prefs/customization/textItemStyle.ts:41 msgid "You can change the character length of the visible text in the body" msgstr "" @@ -136,141 +96,141 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:51 -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/colorItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:52 -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/colorItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:52 -#: src/prefs/customization/imageItemStyle.ts:61 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:41 msgid "Metadata Text Color" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:53 -#: src/prefs/customization/imageItemStyle.ts:62 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:42 msgid "You can change the text color of the metadata" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:14 +#: src/prefs/customization/commonStyleGroup.ts:20 msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "Icon Pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:21 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Default Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:22 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Legacy Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "Item Size" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "You can change the item size" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:32 +#: src/prefs/customization/commonStyleGroup.ts:38 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:39 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:48 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:58 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:50 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:59 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "Item Title Font" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "Item Date Font" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "You can change the font of the date" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:80 +#: src/prefs/customization/commonStyleGroup.ts:89 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:90 msgid "You can change the hovered item border color" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:97 +msgid "Show Controls on Hover" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:98 +msgid "When enabled, the controls will only show on hover" +msgstr "" + #: src/prefs/customization/emojiItemStyle.ts:15 msgid "Change the style of the emoji item" msgstr "" @@ -279,11 +239,11 @@ msgstr "" msgid "Emoji Item Style" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "Emoji Size" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "You can change the emoji size" msgstr "" @@ -295,13 +255,29 @@ msgstr "" msgid "File Item Style" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:32 +msgid "Title Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:33 +msgid "You can change the text color of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "Title Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "Body Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "You can change the text color of the body" msgstr "" @@ -313,7 +289,7 @@ msgstr "" msgid "Image Item Style" msgstr "" -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "Metadata Font" msgstr "" @@ -333,51 +309,51 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata link" msgstr "" @@ -555,39 +531,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:406 +#: src/utils/panoItemFactory.ts:398 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:399 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:411 +#: src/utils/panoItemFactory.ts:403 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:413 +#: src/utils/panoItemFactory.ts:405 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:407 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:415 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:443 +#: src/utils/panoItemFactory.ts:428 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:450 +#: src/utils/panoItemFactory.ts:435 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:451 +#: src/utils/panoItemFactory.ts:436 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/pano@elhan.io.pot b/resources/po/pano@elhan.io.pot index cbe41c29..f6711b55 100644 --- a/resources/po/pano@elhan.io.pot +++ b/resources/po/pano@elhan.io.pot @@ -2,7 +2,7 @@ msgid "" msgstr "" "Content-Type: text/plain; charset=UTF-8\n" -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Active Item Border Color" msgstr "" @@ -39,28 +39,28 @@ msgstr "" msgid "Are you sure you want to clear history?" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:42 -#: src/prefs/customization/emojiItemStyle.ts:42 -#: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:41 -#: src/prefs/customization/linkItemStyle.ts:42 -#: src/prefs/customization/textItemStyle.ts:42 +#: src/prefs/customization/codeItemStyle.ts:22 +#: src/prefs/customization/emojiItemStyle.ts:22 +#: src/prefs/customization/fileItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:21 +#: src/prefs/customization/linkItemStyle.ts:22 +#: src/prefs/customization/textItemStyle.ts:22 msgid "Body Background Color" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "Body Text Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Bottom" msgstr "" @@ -96,8 +96,8 @@ msgstr "" msgid "Change the style of the text item" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:60 +#: src/prefs/customization/codeItemStyle.ts:35 +#: src/prefs/customization/textItemStyle.ts:40 msgid "Character Length" msgstr "" @@ -124,7 +124,7 @@ msgstr "" msgid "Code" msgstr "" -#: src/utils/panoItemFactory.ts:413 +#: src/utils/panoItemFactory.ts:405 msgid "Code Copied" msgstr "" @@ -136,7 +136,7 @@ msgstr "" msgid "Color" msgstr "" -#: src/utils/panoItemFactory.ts:443 +#: src/utils/panoItemFactory.ts:428 msgid "Color Copied" msgstr "" @@ -144,10 +144,18 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:14 +#: src/prefs/customization/commonStyleGroup.ts:20 msgid "Common" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:38 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:39 +msgid "Controls the compactness of the clipboard item." +msgstr "" + #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "" @@ -160,7 +168,7 @@ msgstr "" msgid "Database Location" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:21 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Default Icons" msgstr "" @@ -168,7 +176,7 @@ msgstr "" msgid "Emoji" msgstr "" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:407 msgid "Emoji Copied" msgstr "" @@ -176,7 +184,7 @@ msgstr "" msgid "Emoji Item Style" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "Emoji Size" msgstr "" @@ -192,7 +200,7 @@ msgstr "" msgid "File" msgstr "" -#: src/utils/panoItemFactory.ts:450 +#: src/utils/panoItemFactory.ts:435 msgid "File %s" msgstr "" @@ -212,35 +220,15 @@ msgstr "" msgid "Global Shortcut" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:22 -#: src/prefs/customization/colorItemStyle.ts:22 -#: src/prefs/customization/emojiItemStyle.ts:22 -#: src/prefs/customization/fileItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:21 -#: src/prefs/customization/linkItemStyle.ts:22 -#: src/prefs/customization/textItemStyle.ts:22 -msgid "Header Background Color" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:32 -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/emojiItemStyle.ts:32 -#: src/prefs/customization/fileItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -#: src/prefs/customization/textItemStyle.ts:32 -msgid "Header Text Color" -msgstr "" - #: src/prefs/general/historyLength.ts:15 msgid "History Length" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:80 +#: src/prefs/customization/commonStyleGroup.ts:89 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "Icon Pack" msgstr "" @@ -248,7 +236,7 @@ msgstr "" msgid "Image" msgstr "" -#: src/utils/panoItemFactory.ts:406 +#: src/utils/panoItemFactory.ts:398 msgid "Image Copied" msgstr "" @@ -264,15 +252,11 @@ msgstr "" msgid "Incognito Mode Shortcut" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:50 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "Item Date Font" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "Item Size" msgstr "" @@ -280,10 +264,6 @@ msgstr "" msgid "Item Style" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "Item Title Font" -msgstr "" - #: src/prefs/general/keepSearchEntryOnHide.ts:15 msgid "Keep Search Entry" msgstr "" @@ -292,11 +272,11 @@ msgstr "" msgid "Keep search entry when Pano hides" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:22 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Legacy Icons" msgstr "" @@ -304,7 +284,7 @@ msgstr "" msgid "Link" msgstr "" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:415 msgid "Link Copied" msgstr "" @@ -320,42 +300,42 @@ msgstr "" msgid "Manage Exclusions" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:51 -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/colorItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "Metadata Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:52 -#: src/prefs/customization/imageItemStyle.ts:61 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:41 msgid "Metadata Text Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Font" msgstr "" @@ -364,7 +344,7 @@ msgstr "" msgid "New shortcut" msgstr "" -#: src/components/linkPanoItem.ts:39 +#: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "" @@ -388,11 +368,11 @@ msgstr "" msgid "Play an Audio on Copy" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Search Bar Font" msgstr "" @@ -413,6 +393,10 @@ msgstr "" msgid "Settings" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:97 +msgid "Show Controls on Hover" +msgstr "" + #: src/prefs/general/showIndicator.ts:15 msgid "Show Indicator" msgstr "" @@ -433,7 +417,7 @@ msgstr "" msgid "Text" msgstr "" -#: src/utils/panoItemFactory.ts:411 +#: src/utils/panoItemFactory.ts:403 msgid "Text Copied" msgstr "" @@ -441,11 +425,19 @@ msgstr "" msgid "Text Item Style" msgstr "" -#: src/utils/panoItemFactory.ts:451 +#: src/utils/panoItemFactory.ts:436 msgid "There are %s file(s)" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "Title Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:32 +msgid "Title Text Color" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Top" msgstr "" @@ -465,7 +457,11 @@ msgstr "" msgid "When enabled, Pano will not track clipboard from excluded apps" msgstr "" -#: src/utils/panoItemFactory.ts:407 +#: src/prefs/customization/commonStyleGroup.ts:98 +msgid "When enabled, the controls will only show on hover" +msgstr "" + +#: src/utils/panoItemFactory.ts:399 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" @@ -477,7 +473,7 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "Window Background Color" msgstr "" @@ -485,136 +481,116 @@ msgstr "" msgid "Window class name" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:32 +#: src/prefs/customization/commonStyleGroup.ts:47 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:48 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:43 -#: src/prefs/customization/emojiItemStyle.ts:43 -#: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:43 -#: src/prefs/customization/textItemStyle.ts:43 -msgid "You can change the background color of the body" -msgstr "" - #: src/prefs/customization/codeItemStyle.ts:23 -#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 #: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 -msgid "You can change the background color of the header" +msgid "You can change the background color of the body" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:52 -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/colorItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:56 -#: src/prefs/customization/textItemStyle.ts:61 +#: src/prefs/customization/codeItemStyle.ts:36 +#: src/prefs/customization/textItemStyle.ts:41 msgid "You can change the character length of the visible text in the body" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "You can change the emoji size" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "You can change the font of the date" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata link" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:59 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/fileItemStyle.ts:41 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:90 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "You can change the item size" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "You can change the text color of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:33 #: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/emojiItemStyle.ts:33 -#: src/prefs/customization/fileItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -#: src/prefs/customization/textItemStyle.ts:33 -msgid "You can change the text color of the header" +#: src/prefs/customization/imageItemStyle.ts:42 +msgid "You can change the text color of the metadata" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:53 -#: src/prefs/customization/imageItemStyle.ts:62 -msgid "You can change the text color of the metadata" +#: src/prefs/customization/fileItemStyle.ts:33 +msgid "You can change the text color of the title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:58 msgid "You can change the window background color" msgstr "" diff --git a/resources/po/pl.po b/resources/po/pl.po index 53cb0407..80b39515 100644 --- a/resources/po/pl.po +++ b/resources/po/pl.po @@ -31,7 +31,7 @@ msgstr "Tryb Incognito" msgid "Settings" msgstr "Ustawienia" -#: src/components/linkPanoItem.ts:39 +#: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "" @@ -48,83 +48,43 @@ msgid "Code Item Style" msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 -#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 #: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Header Background Color" +msgid "Body Background Color" msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 -#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 #: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 -msgid "You can change the background color of the header" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:32 -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/emojiItemStyle.ts:32 -#: src/prefs/customization/fileItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -#: src/prefs/customization/textItemStyle.ts:32 -msgid "Header Text Color" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:33 -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/emojiItemStyle.ts:33 -#: src/prefs/customization/fileItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -#: src/prefs/customization/textItemStyle.ts:33 -msgid "You can change the text color of the header" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:42 -#: src/prefs/customization/emojiItemStyle.ts:42 -#: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:41 -#: src/prefs/customization/linkItemStyle.ts:42 -#: src/prefs/customization/textItemStyle.ts:42 -msgid "Body Background Color" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:43 -#: src/prefs/customization/emojiItemStyle.ts:43 -#: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:43 -#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:60 +#: src/prefs/customization/codeItemStyle.ts:35 +#: src/prefs/customization/textItemStyle.ts:40 msgid "Character Length" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:56 -#: src/prefs/customization/textItemStyle.ts:61 +#: src/prefs/customization/codeItemStyle.ts:36 +#: src/prefs/customization/textItemStyle.ts:41 msgid "You can change the character length of the visible text in the body" msgstr "" @@ -136,141 +96,141 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:51 -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/colorItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:52 -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/colorItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:52 -#: src/prefs/customization/imageItemStyle.ts:61 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:41 msgid "Metadata Text Color" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:53 -#: src/prefs/customization/imageItemStyle.ts:62 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:42 msgid "You can change the text color of the metadata" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:14 +#: src/prefs/customization/commonStyleGroup.ts:20 msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "Icon Pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:21 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Default Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:22 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Legacy Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "Item Size" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "You can change the item size" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:32 +#: src/prefs/customization/commonStyleGroup.ts:38 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:39 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:48 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:58 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:50 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:59 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "Item Title Font" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "Item Date Font" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "You can change the font of the date" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:80 +#: src/prefs/customization/commonStyleGroup.ts:89 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:90 msgid "You can change the hovered item border color" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:97 +msgid "Show Controls on Hover" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:98 +msgid "When enabled, the controls will only show on hover" +msgstr "" + #: src/prefs/customization/emojiItemStyle.ts:15 msgid "Change the style of the emoji item" msgstr "" @@ -279,11 +239,11 @@ msgstr "" msgid "Emoji Item Style" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "Emoji Size" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "You can change the emoji size" msgstr "" @@ -295,13 +255,29 @@ msgstr "" msgid "File Item Style" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:32 +msgid "Title Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:33 +msgid "You can change the text color of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "Title Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "Body Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "You can change the text color of the body" msgstr "" @@ -313,7 +289,7 @@ msgstr "" msgid "Image Item Style" msgstr "" -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "Metadata Font" msgstr "" @@ -333,51 +309,51 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata link" msgstr "" @@ -555,39 +531,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:406 +#: src/utils/panoItemFactory.ts:398 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:399 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:411 +#: src/utils/panoItemFactory.ts:403 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:413 +#: src/utils/panoItemFactory.ts:405 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:407 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:415 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:443 +#: src/utils/panoItemFactory.ts:428 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:450 +#: src/utils/panoItemFactory.ts:435 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:451 +#: src/utils/panoItemFactory.ts:436 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/pt.po b/resources/po/pt.po index 4d247842..3134e030 100644 --- a/resources/po/pt.po +++ b/resources/po/pt.po @@ -31,7 +31,7 @@ msgstr "Modo de navegação anónima" msgid "Settings" msgstr "Configurações" -#: src/components/linkPanoItem.ts:39 +#: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "" @@ -48,83 +48,43 @@ msgid "Code Item Style" msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 -#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 #: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Header Background Color" +msgid "Body Background Color" msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 -#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 #: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 -msgid "You can change the background color of the header" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:32 -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/emojiItemStyle.ts:32 -#: src/prefs/customization/fileItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -#: src/prefs/customization/textItemStyle.ts:32 -msgid "Header Text Color" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:33 -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/emojiItemStyle.ts:33 -#: src/prefs/customization/fileItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -#: src/prefs/customization/textItemStyle.ts:33 -msgid "You can change the text color of the header" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:42 -#: src/prefs/customization/emojiItemStyle.ts:42 -#: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:41 -#: src/prefs/customization/linkItemStyle.ts:42 -#: src/prefs/customization/textItemStyle.ts:42 -msgid "Body Background Color" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:43 -#: src/prefs/customization/emojiItemStyle.ts:43 -#: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:43 -#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:60 +#: src/prefs/customization/codeItemStyle.ts:35 +#: src/prefs/customization/textItemStyle.ts:40 msgid "Character Length" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:56 -#: src/prefs/customization/textItemStyle.ts:61 +#: src/prefs/customization/codeItemStyle.ts:36 +#: src/prefs/customization/textItemStyle.ts:41 msgid "You can change the character length of the visible text in the body" msgstr "" @@ -136,141 +96,141 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:51 -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/colorItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:52 -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/colorItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:52 -#: src/prefs/customization/imageItemStyle.ts:61 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:41 msgid "Metadata Text Color" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:53 -#: src/prefs/customization/imageItemStyle.ts:62 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:42 msgid "You can change the text color of the metadata" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:14 +#: src/prefs/customization/commonStyleGroup.ts:20 msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "Icon Pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:21 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Default Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:22 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Legacy Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "Item Size" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "You can change the item size" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:32 +#: src/prefs/customization/commonStyleGroup.ts:38 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:39 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:48 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:58 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:50 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:59 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "Item Title Font" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "Item Date Font" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "You can change the font of the date" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:80 +#: src/prefs/customization/commonStyleGroup.ts:89 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:90 msgid "You can change the hovered item border color" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:97 +msgid "Show Controls on Hover" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:98 +msgid "When enabled, the controls will only show on hover" +msgstr "" + #: src/prefs/customization/emojiItemStyle.ts:15 msgid "Change the style of the emoji item" msgstr "" @@ -279,11 +239,11 @@ msgstr "" msgid "Emoji Item Style" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "Emoji Size" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "You can change the emoji size" msgstr "" @@ -295,13 +255,29 @@ msgstr "" msgid "File Item Style" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:32 +msgid "Title Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:33 +msgid "You can change the text color of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "Title Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "Body Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "You can change the text color of the body" msgstr "" @@ -313,7 +289,7 @@ msgstr "" msgid "Image Item Style" msgstr "" -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "Metadata Font" msgstr "" @@ -333,51 +309,51 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata link" msgstr "" @@ -555,39 +531,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:406 +#: src/utils/panoItemFactory.ts:398 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:399 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:411 +#: src/utils/panoItemFactory.ts:403 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:413 +#: src/utils/panoItemFactory.ts:405 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:407 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:415 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:443 +#: src/utils/panoItemFactory.ts:428 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:450 +#: src/utils/panoItemFactory.ts:435 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:451 +#: src/utils/panoItemFactory.ts:436 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/pt_BR.po b/resources/po/pt_BR.po index 6a263ead..da1161e3 100644 --- a/resources/po/pt_BR.po +++ b/resources/po/pt_BR.po @@ -31,7 +31,7 @@ msgstr "Modo anônimo" msgid "Settings" msgstr "Configurações" -#: src/components/linkPanoItem.ts:39 +#: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "Sem descrição" @@ -48,83 +48,43 @@ msgid "Code Item Style" msgstr "Estilo do item de código" #: src/prefs/customization/codeItemStyle.ts:22 -#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 #: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Header Background Color" -msgstr "Cor de fundo do cabeçalho" +msgid "Body Background Color" +msgstr "Cor de fundo do corpo" #: src/prefs/customization/codeItemStyle.ts:23 -#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 #: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 -msgid "You can change the background color of the header" -msgstr "Você pode mudar a cor de fundo do cabeçalho" - -#: src/prefs/customization/codeItemStyle.ts:32 -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/emojiItemStyle.ts:32 -#: src/prefs/customization/fileItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -#: src/prefs/customization/textItemStyle.ts:32 -msgid "Header Text Color" -msgstr "Cor do texto do cabeçalho" - -#: src/prefs/customization/codeItemStyle.ts:33 -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/emojiItemStyle.ts:33 -#: src/prefs/customization/fileItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -#: src/prefs/customization/textItemStyle.ts:33 -msgid "You can change the text color of the header" -msgstr "Você pode mudar a cor do texto do cabeçalho" - -#: src/prefs/customization/codeItemStyle.ts:42 -#: src/prefs/customization/emojiItemStyle.ts:42 -#: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:41 -#: src/prefs/customization/linkItemStyle.ts:42 -#: src/prefs/customization/textItemStyle.ts:42 -msgid "Body Background Color" -msgstr "Cor de fundo do corpo" - -#: src/prefs/customization/codeItemStyle.ts:43 -#: src/prefs/customization/emojiItemStyle.ts:43 -#: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:43 -#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "Você pode mudar a cor de fundo do corpo" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" msgstr "Fonte do corpo" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "You can change the font of the body" msgstr "Você pode mudar a fonte do corpo" -#: src/prefs/customization/codeItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:60 +#: src/prefs/customization/codeItemStyle.ts:35 +#: src/prefs/customization/textItemStyle.ts:40 msgid "Character Length" msgstr "Comprimento de caracteres" -#: src/prefs/customization/codeItemStyle.ts:56 -#: src/prefs/customization/textItemStyle.ts:61 +#: src/prefs/customization/codeItemStyle.ts:36 +#: src/prefs/customization/textItemStyle.ts:41 msgid "You can change the character length of the visible text in the body" msgstr "Você pode mudar o comprimento de caracteres do texto visível no corpo" @@ -136,141 +96,141 @@ msgstr "Mudar o estilo do item de cor" msgid "Color Item Style" msgstr "Estilo do item de cor" -#: src/prefs/customization/colorItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:51 -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/colorItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 msgid "Metadata Background Color" msgstr "Cor de fundo dos metadados" -#: src/prefs/customization/colorItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:52 -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/colorItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 msgid "You can change the background color of the metadata" msgstr "Você pode mudar a cor de fundo dos metadados" -#: src/prefs/customization/colorItemStyle.ts:52 -#: src/prefs/customization/imageItemStyle.ts:61 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:41 msgid "Metadata Text Color" msgstr "Cor do texto dos metadados" -#: src/prefs/customization/colorItemStyle.ts:53 -#: src/prefs/customization/imageItemStyle.ts:62 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:42 msgid "You can change the text color of the metadata" msgstr "Você pode mudar a cor do texto dos metadados" -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "You can change the font of the metadata" msgstr "Você pode mudar a fonte dos metadados" -#: src/prefs/customization/commonStyleGroup.ts:14 +#: src/prefs/customization/commonStyleGroup.ts:20 msgid "Common" msgstr "Comum" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "Icon Pack" msgstr "Pacote de ícones" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "You can change the icon pack" msgstr "Você pode mudar o pacote de ícones" -#: src/prefs/customization/commonStyleGroup.ts:21 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Default Icons" msgstr "Ícones padrão" -#: src/prefs/customization/commonStyleGroup.ts:22 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Legacy Icons" msgstr "Ícones antigos" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "Item Size" msgstr "Tamanho do item" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "You can change the item size" msgstr "Você pode mudar o tamanho do item" -#: src/prefs/customization/commonStyleGroup.ts:32 +#: src/prefs/customization/commonStyleGroup.ts:38 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:39 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 msgid "Window Position" msgstr "Posição da janela" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:48 msgid "You can change position of the Pano" msgstr "Você pode mudar a posição do Pano" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Bottom" msgstr "Inferior" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Left" msgstr "Esquerda" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Right" msgstr "Direita" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Top" msgstr "Superior" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "Window Background Color" msgstr "Cor de fundo da janela" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:58 msgid "You can change the window background color" msgstr "Você pode mudar a cor de fundo da janela" -#: src/prefs/customization/commonStyleGroup.ts:50 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Incognito Window Background Color" msgstr "Cor de fundo da janela anônima" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "You can change the incognito window background color" msgstr "Você pode mudar a cor de fundo da janela anônima" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Search Bar Font" msgstr "Fonte da barra de pesquisa" -#: src/prefs/customization/commonStyleGroup.ts:59 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the font of the search bar" msgstr "Você pode mudar a fonte da barra de pesquisa" -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "Item Title Font" -msgstr "Fonte do título do item" - -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "You can change the font of the title" -msgstr "Você pode mudar a fonte do título" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "Item Date Font" -msgstr "Fonte da data do item" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "You can change the font of the date" -msgstr "Você pode mudar a fonte da data" - -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Active Item Border Color" msgstr "Cor da borda do item ativo" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the active item border color" msgstr "Você pode mudar a cor da borda do item ativo" -#: src/prefs/customization/commonStyleGroup.ts:80 +#: src/prefs/customization/commonStyleGroup.ts:89 msgid "Hovered Item Border Color" msgstr "Cor da borda do item destacado" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:90 msgid "You can change the hovered item border color" msgstr "Você pode mudar a cor da borda do item destacado" +#: src/prefs/customization/commonStyleGroup.ts:97 +msgid "Show Controls on Hover" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:98 +msgid "When enabled, the controls will only show on hover" +msgstr "" + #: src/prefs/customization/emojiItemStyle.ts:15 msgid "Change the style of the emoji item" msgstr "Mudar o estilo do item de emoji" @@ -279,11 +239,11 @@ msgstr "Mudar o estilo do item de emoji" msgid "Emoji Item Style" msgstr "Estilo do item de emoji" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "Emoji Size" msgstr "Tamanho do emoji" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "You can change the emoji size" msgstr "Você pode mudar o tamanho do emoji" @@ -295,13 +255,29 @@ msgstr "Mudar o estilo do item de arquivo" msgid "File Item Style" msgstr "Estilo de Item de Arquivo" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:32 +msgid "Title Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:33 +msgid "You can change the text color of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "Title Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "Body Text Color" msgstr "Cor do texto do corpo" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "You can change the text color of the body" msgstr "Você pode mudar a cor do texto do corpo" @@ -313,7 +289,7 @@ msgstr "Mudar o estilo do item de imagem" msgid "Image Item Style" msgstr "Estilo de Item de Imagem" -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "Metadata Font" msgstr "Fonte da metadados" @@ -333,51 +309,51 @@ msgstr "Mudar o estilo do item de link" msgid "Link Item Style" msgstr "Estilo de Item de Link" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "Cor do título do metadado" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the title color of the metadata" msgstr "Você pode mudar a cor do título do metadado" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Font" msgstr "Fonte do título do metadado" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the font of the metadata title" msgstr "Você pode mudar a fonte do título do metadado" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Description Color" msgstr "Cor da descrição do metadado" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the description color of the metadata" msgstr "Você pode mudar a cor da descrição do metadado" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Font" msgstr "Fonte da descrição do metadado" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata description" msgstr "Você pode mudar a fonte da descrição do metadado" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Link Color" msgstr "Cor do link do metadado" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the link color of the metadata" msgstr "Você pode mudar a cor do link do metadado" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Font" msgstr "Fonte do link do metadado" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata link" msgstr "Você pode mudar a fonte do link do metadado" @@ -555,39 +531,39 @@ msgstr "Agitar Indicador" msgid "Wiggles the indicator on panel" msgstr "Agita o indicador na barra" -#: src/utils/panoItemFactory.ts:406 +#: src/utils/panoItemFactory.ts:398 msgid "Image Copied" msgstr "Imagem Copiada" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:399 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "Largura: %spx, Altura: %spx, Tamanho: %s" -#: src/utils/panoItemFactory.ts:411 +#: src/utils/panoItemFactory.ts:403 msgid "Text Copied" msgstr "Texto Copiado" -#: src/utils/panoItemFactory.ts:413 +#: src/utils/panoItemFactory.ts:405 msgid "Code Copied" msgstr "Código Copiado" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:407 msgid "Emoji Copied" msgstr "Emoji Copiado" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:415 msgid "Link Copied" msgstr "Link Copiado" -#: src/utils/panoItemFactory.ts:443 +#: src/utils/panoItemFactory.ts:428 msgid "Color Copied" msgstr "Cor Copiada" -#: src/utils/panoItemFactory.ts:450 +#: src/utils/panoItemFactory.ts:435 msgid "File %s" msgstr "Arquivo %s" -#: src/utils/panoItemFactory.ts:451 +#: src/utils/panoItemFactory.ts:436 msgid "There are %s file(s)" msgstr "Existem %s arquivo(s)" diff --git a/resources/po/ro.po b/resources/po/ro.po index 2d61532d..b4024aeb 100644 --- a/resources/po/ro.po +++ b/resources/po/ro.po @@ -31,7 +31,7 @@ msgstr "Modul incognito" msgid "Settings" msgstr "Setări" -#: src/components/linkPanoItem.ts:39 +#: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "" @@ -48,83 +48,43 @@ msgid "Code Item Style" msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 -#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 #: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Header Background Color" +msgid "Body Background Color" msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 -#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 #: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 -msgid "You can change the background color of the header" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:32 -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/emojiItemStyle.ts:32 -#: src/prefs/customization/fileItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -#: src/prefs/customization/textItemStyle.ts:32 -msgid "Header Text Color" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:33 -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/emojiItemStyle.ts:33 -#: src/prefs/customization/fileItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -#: src/prefs/customization/textItemStyle.ts:33 -msgid "You can change the text color of the header" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:42 -#: src/prefs/customization/emojiItemStyle.ts:42 -#: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:41 -#: src/prefs/customization/linkItemStyle.ts:42 -#: src/prefs/customization/textItemStyle.ts:42 -msgid "Body Background Color" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:43 -#: src/prefs/customization/emojiItemStyle.ts:43 -#: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:43 -#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:60 +#: src/prefs/customization/codeItemStyle.ts:35 +#: src/prefs/customization/textItemStyle.ts:40 msgid "Character Length" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:56 -#: src/prefs/customization/textItemStyle.ts:61 +#: src/prefs/customization/codeItemStyle.ts:36 +#: src/prefs/customization/textItemStyle.ts:41 msgid "You can change the character length of the visible text in the body" msgstr "" @@ -136,141 +96,141 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:51 -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/colorItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:52 -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/colorItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:52 -#: src/prefs/customization/imageItemStyle.ts:61 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:41 msgid "Metadata Text Color" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:53 -#: src/prefs/customization/imageItemStyle.ts:62 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:42 msgid "You can change the text color of the metadata" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:14 +#: src/prefs/customization/commonStyleGroup.ts:20 msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "Icon Pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:21 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Default Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:22 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Legacy Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "Item Size" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "You can change the item size" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:32 +#: src/prefs/customization/commonStyleGroup.ts:38 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:39 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:48 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:58 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:50 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:59 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "Item Title Font" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "Item Date Font" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "You can change the font of the date" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:80 +#: src/prefs/customization/commonStyleGroup.ts:89 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:90 msgid "You can change the hovered item border color" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:97 +msgid "Show Controls on Hover" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:98 +msgid "When enabled, the controls will only show on hover" +msgstr "" + #: src/prefs/customization/emojiItemStyle.ts:15 msgid "Change the style of the emoji item" msgstr "" @@ -279,11 +239,11 @@ msgstr "" msgid "Emoji Item Style" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "Emoji Size" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "You can change the emoji size" msgstr "" @@ -295,13 +255,29 @@ msgstr "" msgid "File Item Style" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:32 +msgid "Title Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:33 +msgid "You can change the text color of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "Title Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "Body Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "You can change the text color of the body" msgstr "" @@ -313,7 +289,7 @@ msgstr "" msgid "Image Item Style" msgstr "" -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "Metadata Font" msgstr "" @@ -333,51 +309,51 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata link" msgstr "" @@ -555,39 +531,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:406 +#: src/utils/panoItemFactory.ts:398 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:399 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:411 +#: src/utils/panoItemFactory.ts:403 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:413 +#: src/utils/panoItemFactory.ts:405 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:407 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:415 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:443 +#: src/utils/panoItemFactory.ts:428 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:450 +#: src/utils/panoItemFactory.ts:435 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:451 +#: src/utils/panoItemFactory.ts:436 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/ru.po b/resources/po/ru.po index d199a408..6d6e438c 100644 --- a/resources/po/ru.po +++ b/resources/po/ru.po @@ -31,7 +31,7 @@ msgstr "Режим инкогнито" msgid "Settings" msgstr "Настройки" -#: src/components/linkPanoItem.ts:39 +#: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "Без описания" @@ -48,83 +48,43 @@ msgid "Code Item Style" msgstr "Стиль элемента с кодом" #: src/prefs/customization/codeItemStyle.ts:22 -#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 #: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Header Background Color" -msgstr "Цвет фона заголовка" +msgid "Body Background Color" +msgstr "Цвет фона содержимого" #: src/prefs/customization/codeItemStyle.ts:23 -#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 #: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 -msgid "You can change the background color of the header" -msgstr "Вы можете изменить цвет фона заголовка" - -#: src/prefs/customization/codeItemStyle.ts:32 -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/emojiItemStyle.ts:32 -#: src/prefs/customization/fileItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -#: src/prefs/customization/textItemStyle.ts:32 -msgid "Header Text Color" -msgstr "Цвет текста заголовка" - -#: src/prefs/customization/codeItemStyle.ts:33 -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/emojiItemStyle.ts:33 -#: src/prefs/customization/fileItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -#: src/prefs/customization/textItemStyle.ts:33 -msgid "You can change the text color of the header" -msgstr "Вы можете изменить цвет текста в заголовке" - -#: src/prefs/customization/codeItemStyle.ts:42 -#: src/prefs/customization/emojiItemStyle.ts:42 -#: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:41 -#: src/prefs/customization/linkItemStyle.ts:42 -#: src/prefs/customization/textItemStyle.ts:42 -msgid "Body Background Color" -msgstr "Цвет фона содержимого" - -#: src/prefs/customization/codeItemStyle.ts:43 -#: src/prefs/customization/emojiItemStyle.ts:43 -#: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:43 -#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "Вы можете изменить цвет фона содержимого" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" msgstr "Шрифт содержимого" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "You can change the font of the body" msgstr "Вы можете изменить шрифт содержимого" -#: src/prefs/customization/codeItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:60 +#: src/prefs/customization/codeItemStyle.ts:35 +#: src/prefs/customization/textItemStyle.ts:40 msgid "Character Length" msgstr "Длина содержимого" -#: src/prefs/customization/codeItemStyle.ts:56 -#: src/prefs/customization/textItemStyle.ts:61 +#: src/prefs/customization/codeItemStyle.ts:36 +#: src/prefs/customization/textItemStyle.ts:41 msgid "You can change the character length of the visible text in the body" msgstr "Вы можете изменить длину отображаемого текста в теле карточки" @@ -136,141 +96,141 @@ msgstr "Изменить стиль элемента с цветом" msgid "Color Item Style" msgstr "Стиль элемента с цветом" -#: src/prefs/customization/colorItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:51 -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/colorItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 msgid "Metadata Background Color" msgstr "Цвет фона метаданных" -#: src/prefs/customization/colorItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:52 -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/colorItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 msgid "You can change the background color of the metadata" msgstr "Вы можете изменить цвет фона элемента со ссылкой" -#: src/prefs/customization/colorItemStyle.ts:52 -#: src/prefs/customization/imageItemStyle.ts:61 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:41 msgid "Metadata Text Color" msgstr "Цвет текста ссылки" -#: src/prefs/customization/colorItemStyle.ts:53 -#: src/prefs/customization/imageItemStyle.ts:62 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:42 msgid "You can change the text color of the metadata" msgstr "Вы можете изменить цвет текста ссылки" -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "You can change the font of the metadata" msgstr "Вы можете изменить шрифт метаданных" -#: src/prefs/customization/commonStyleGroup.ts:14 +#: src/prefs/customization/commonStyleGroup.ts:20 msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "Icon Pack" msgstr "Набор иконок" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "You can change the icon pack" msgstr "Вы можете изменить набор иконок" -#: src/prefs/customization/commonStyleGroup.ts:21 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Default Icons" msgstr "Стандартные иконки" -#: src/prefs/customization/commonStyleGroup.ts:22 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Legacy Icons" msgstr "Устаревшие иконки" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "Item Size" msgstr "Размер элемента" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "You can change the item size" msgstr "Вы можете изменить размер элемента" -#: src/prefs/customization/commonStyleGroup.ts:32 +#: src/prefs/customization/commonStyleGroup.ts:38 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:39 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 msgid "Window Position" msgstr "Положение окна" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:48 msgid "You can change position of the Pano" msgstr "Вы можете изменить положение Pano" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "Window Background Color" msgstr "Цвет фона окна" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:58 msgid "You can change the window background color" msgstr "Вы можете изменить цвет фона окна" -#: src/prefs/customization/commonStyleGroup.ts:50 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Incognito Window Background Color" msgstr "Цвет фона окна инкогнито" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "You can change the incognito window background color" msgstr "Вы можете изменить цвет фона окна инкогнито" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Search Bar Font" msgstr "Шрифт панели поиска" -#: src/prefs/customization/commonStyleGroup.ts:59 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the font of the search bar" msgstr "Вы можете изменить шрифт в строке поиска" -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "Item Title Font" -msgstr "Шрифт заголовка элемента" - -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "You can change the font of the title" -msgstr "Вы можете изменить шрифт заголовка" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "Item Date Font" -msgstr "Шрифт даты элемента" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "You can change the font of the date" -msgstr "Вы можете изменить шрифт даты" - -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Active Item Border Color" msgstr "Цвет границы активного элемента" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the active item border color" msgstr "Вы можете изменить цвет границы активного элемента" -#: src/prefs/customization/commonStyleGroup.ts:80 +#: src/prefs/customization/commonStyleGroup.ts:89 msgid "Hovered Item Border Color" msgstr "Цвет границы выбранного элемента" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:90 msgid "You can change the hovered item border color" msgstr "Вы можете изменить цвет границы выбранного элемента" +#: src/prefs/customization/commonStyleGroup.ts:97 +msgid "Show Controls on Hover" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:98 +msgid "When enabled, the controls will only show on hover" +msgstr "" + #: src/prefs/customization/emojiItemStyle.ts:15 msgid "Change the style of the emoji item" msgstr "Изменить стиль элемента с эмодзи" @@ -279,11 +239,11 @@ msgstr "Изменить стиль элемента с эмодзи" msgid "Emoji Item Style" msgstr "Стиль элемента с эмодзи" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "Emoji Size" msgstr "Размер эмодзи" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "You can change the emoji size" msgstr "Вы можите изменить размер эмодзи" @@ -295,13 +255,29 @@ msgstr "Изменить стиль элемента с файлом" msgid "File Item Style" msgstr "Стиль элемнта с файлом" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:32 +msgid "Title Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:33 +msgid "You can change the text color of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "Title Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "Body Text Color" msgstr "Цвет основного текста" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "You can change the text color of the body" msgstr "Вы можете изменить цвет основного текста" @@ -313,7 +289,7 @@ msgstr "Изменить стиль элемента с изображением msgid "Image Item Style" msgstr "Стиль элемента с изображением" -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "Metadata Font" msgstr "Шрифт метаданных" @@ -333,51 +309,51 @@ msgstr "Изменить стиль элемента со сслыкой" msgid "Link Item Style" msgstr "Стиль элемента со ссылкой" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "Цвет заголовка метаданных" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the title color of the metadata" msgstr "Вы можете изменить цвет заголовка метаданных" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Font" msgstr "Шрифт заголовка метаданных" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the font of the metadata title" msgstr "Вы можете изменить шрифт заголовка метаданных" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Description Color" msgstr "Цвет описания ссылки" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the description color of the metadata" msgstr "Вы можете изменить цвет текста описания метаданных" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Font" msgstr "Шрифт описания ссылки" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata description" msgstr "Вы можете изменить шрифт описания ссылки" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Link Color" msgstr "Цвет элемента со ссылкой" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the link color of the metadata" msgstr "Вы можете изменить цвет ссылки метаданных" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Font" msgstr "Шрифт сслыки" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata link" msgstr "Вы можете изменить шрифт ссылки" @@ -555,39 +531,39 @@ msgstr "Покачивающийся индикатор" msgid "Wiggles the indicator on panel" msgstr "Покачивающийся индикатор на панели" -#: src/utils/panoItemFactory.ts:406 +#: src/utils/panoItemFactory.ts:398 msgid "Image Copied" msgstr "Изображение скопировано" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:399 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "Ширина: %spx, Высота: %spx, Размер: %s" -#: src/utils/panoItemFactory.ts:411 +#: src/utils/panoItemFactory.ts:403 msgid "Text Copied" msgstr "Текст скопирован" -#: src/utils/panoItemFactory.ts:413 +#: src/utils/panoItemFactory.ts:405 msgid "Code Copied" msgstr "Код скопирован" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:407 msgid "Emoji Copied" msgstr "Эмодзи скопирован" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:415 msgid "Link Copied" msgstr "Ссылка скопирована" -#: src/utils/panoItemFactory.ts:443 +#: src/utils/panoItemFactory.ts:428 msgid "Color Copied" msgstr "Цвет скопирован" -#: src/utils/panoItemFactory.ts:450 +#: src/utils/panoItemFactory.ts:435 msgid "File %s" msgstr "Файл %s" -#: src/utils/panoItemFactory.ts:451 +#: src/utils/panoItemFactory.ts:436 msgid "There are %s file(s)" msgstr "Есть %s файлов" diff --git a/resources/po/sk.po b/resources/po/sk.po index 260e2f2a..943f6dac 100644 --- a/resources/po/sk.po +++ b/resources/po/sk.po @@ -31,7 +31,7 @@ msgstr "Režim inkognito" msgid "Settings" msgstr "Nastavenia" -#: src/components/linkPanoItem.ts:39 +#: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "" @@ -48,83 +48,43 @@ msgid "Code Item Style" msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 -#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 #: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Header Background Color" +msgid "Body Background Color" msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 -#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 #: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 -msgid "You can change the background color of the header" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:32 -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/emojiItemStyle.ts:32 -#: src/prefs/customization/fileItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -#: src/prefs/customization/textItemStyle.ts:32 -msgid "Header Text Color" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:33 -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/emojiItemStyle.ts:33 -#: src/prefs/customization/fileItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -#: src/prefs/customization/textItemStyle.ts:33 -msgid "You can change the text color of the header" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:42 -#: src/prefs/customization/emojiItemStyle.ts:42 -#: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:41 -#: src/prefs/customization/linkItemStyle.ts:42 -#: src/prefs/customization/textItemStyle.ts:42 -msgid "Body Background Color" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:43 -#: src/prefs/customization/emojiItemStyle.ts:43 -#: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:43 -#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:60 +#: src/prefs/customization/codeItemStyle.ts:35 +#: src/prefs/customization/textItemStyle.ts:40 msgid "Character Length" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:56 -#: src/prefs/customization/textItemStyle.ts:61 +#: src/prefs/customization/codeItemStyle.ts:36 +#: src/prefs/customization/textItemStyle.ts:41 msgid "You can change the character length of the visible text in the body" msgstr "" @@ -136,141 +96,141 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:51 -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/colorItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:52 -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/colorItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:52 -#: src/prefs/customization/imageItemStyle.ts:61 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:41 msgid "Metadata Text Color" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:53 -#: src/prefs/customization/imageItemStyle.ts:62 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:42 msgid "You can change the text color of the metadata" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:14 +#: src/prefs/customization/commonStyleGroup.ts:20 msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "Icon Pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:21 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Default Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:22 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Legacy Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "Item Size" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "You can change the item size" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:32 +#: src/prefs/customization/commonStyleGroup.ts:38 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:39 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:48 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:58 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:50 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:59 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "Item Title Font" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "Item Date Font" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "You can change the font of the date" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:80 +#: src/prefs/customization/commonStyleGroup.ts:89 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:90 msgid "You can change the hovered item border color" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:97 +msgid "Show Controls on Hover" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:98 +msgid "When enabled, the controls will only show on hover" +msgstr "" + #: src/prefs/customization/emojiItemStyle.ts:15 msgid "Change the style of the emoji item" msgstr "" @@ -279,11 +239,11 @@ msgstr "" msgid "Emoji Item Style" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "Emoji Size" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "You can change the emoji size" msgstr "" @@ -295,13 +255,29 @@ msgstr "" msgid "File Item Style" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:32 +msgid "Title Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:33 +msgid "You can change the text color of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "Title Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "Body Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "You can change the text color of the body" msgstr "" @@ -313,7 +289,7 @@ msgstr "" msgid "Image Item Style" msgstr "" -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "Metadata Font" msgstr "" @@ -333,51 +309,51 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata link" msgstr "" @@ -555,39 +531,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:406 +#: src/utils/panoItemFactory.ts:398 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:399 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:411 +#: src/utils/panoItemFactory.ts:403 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:413 +#: src/utils/panoItemFactory.ts:405 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:407 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:415 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:443 +#: src/utils/panoItemFactory.ts:428 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:450 +#: src/utils/panoItemFactory.ts:435 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:451 +#: src/utils/panoItemFactory.ts:436 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/sv.po b/resources/po/sv.po index 6b1ee2ab..416f1248 100644 --- a/resources/po/sv.po +++ b/resources/po/sv.po @@ -31,7 +31,7 @@ msgstr "Inkognitoläge" msgid "Settings" msgstr "Inställningar" -#: src/components/linkPanoItem.ts:39 +#: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "" @@ -48,83 +48,43 @@ msgid "Code Item Style" msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 -#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 #: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Header Background Color" +msgid "Body Background Color" msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 -#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 #: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 -msgid "You can change the background color of the header" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:32 -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/emojiItemStyle.ts:32 -#: src/prefs/customization/fileItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -#: src/prefs/customization/textItemStyle.ts:32 -msgid "Header Text Color" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:33 -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/emojiItemStyle.ts:33 -#: src/prefs/customization/fileItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -#: src/prefs/customization/textItemStyle.ts:33 -msgid "You can change the text color of the header" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:42 -#: src/prefs/customization/emojiItemStyle.ts:42 -#: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:41 -#: src/prefs/customization/linkItemStyle.ts:42 -#: src/prefs/customization/textItemStyle.ts:42 -msgid "Body Background Color" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:43 -#: src/prefs/customization/emojiItemStyle.ts:43 -#: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:43 -#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:60 +#: src/prefs/customization/codeItemStyle.ts:35 +#: src/prefs/customization/textItemStyle.ts:40 msgid "Character Length" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:56 -#: src/prefs/customization/textItemStyle.ts:61 +#: src/prefs/customization/codeItemStyle.ts:36 +#: src/prefs/customization/textItemStyle.ts:41 msgid "You can change the character length of the visible text in the body" msgstr "" @@ -136,141 +96,141 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:51 -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/colorItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:52 -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/colorItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:52 -#: src/prefs/customization/imageItemStyle.ts:61 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:41 msgid "Metadata Text Color" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:53 -#: src/prefs/customization/imageItemStyle.ts:62 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:42 msgid "You can change the text color of the metadata" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:14 +#: src/prefs/customization/commonStyleGroup.ts:20 msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "Icon Pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:21 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Default Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:22 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Legacy Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "Item Size" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "You can change the item size" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:32 +#: src/prefs/customization/commonStyleGroup.ts:38 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:39 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:48 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:58 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:50 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:59 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "Item Title Font" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "Item Date Font" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "You can change the font of the date" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:80 +#: src/prefs/customization/commonStyleGroup.ts:89 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:90 msgid "You can change the hovered item border color" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:97 +msgid "Show Controls on Hover" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:98 +msgid "When enabled, the controls will only show on hover" +msgstr "" + #: src/prefs/customization/emojiItemStyle.ts:15 msgid "Change the style of the emoji item" msgstr "" @@ -279,11 +239,11 @@ msgstr "" msgid "Emoji Item Style" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "Emoji Size" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "You can change the emoji size" msgstr "" @@ -295,13 +255,29 @@ msgstr "" msgid "File Item Style" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:32 +msgid "Title Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:33 +msgid "You can change the text color of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "Title Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "Body Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "You can change the text color of the body" msgstr "" @@ -313,7 +289,7 @@ msgstr "" msgid "Image Item Style" msgstr "" -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "Metadata Font" msgstr "" @@ -333,51 +309,51 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata link" msgstr "" @@ -555,39 +531,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:406 +#: src/utils/panoItemFactory.ts:398 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:399 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:411 +#: src/utils/panoItemFactory.ts:403 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:413 +#: src/utils/panoItemFactory.ts:405 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:407 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:415 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:443 +#: src/utils/panoItemFactory.ts:428 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:450 +#: src/utils/panoItemFactory.ts:435 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:451 +#: src/utils/panoItemFactory.ts:436 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/tr.po b/resources/po/tr.po index 3ed42fc4..9e4fc728 100644 --- a/resources/po/tr.po +++ b/resources/po/tr.po @@ -31,7 +31,7 @@ msgstr "Gizli Mod" msgid "Settings" msgstr "Ayarlar" -#: src/components/linkPanoItem.ts:39 +#: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "Açıklama Yok" @@ -48,83 +48,43 @@ msgid "Code Item Style" msgstr "Kod Öğe Stili" #: src/prefs/customization/codeItemStyle.ts:22 -#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 #: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Header Background Color" -msgstr "Başlık Arka Plan Rengi" +msgid "Body Background Color" +msgstr "Gövde Arkaplan Rengi" #: src/prefs/customization/codeItemStyle.ts:23 -#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 #: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 -msgid "You can change the background color of the header" -msgstr "Başlık arka plan rengini değiştirebilirsiniz." - -#: src/prefs/customization/codeItemStyle.ts:32 -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/emojiItemStyle.ts:32 -#: src/prefs/customization/fileItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -#: src/prefs/customization/textItemStyle.ts:32 -msgid "Header Text Color" -msgstr "Başlık Yazı Rengi" - -#: src/prefs/customization/codeItemStyle.ts:33 -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/emojiItemStyle.ts:33 -#: src/prefs/customization/fileItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -#: src/prefs/customization/textItemStyle.ts:33 -msgid "You can change the text color of the header" -msgstr "Başlık yazı rengini değiştirebilirsiniz" - -#: src/prefs/customization/codeItemStyle.ts:42 -#: src/prefs/customization/emojiItemStyle.ts:42 -#: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:41 -#: src/prefs/customization/linkItemStyle.ts:42 -#: src/prefs/customization/textItemStyle.ts:42 -msgid "Body Background Color" -msgstr "Gövde Arkaplan Rengi" - -#: src/prefs/customization/codeItemStyle.ts:43 -#: src/prefs/customization/emojiItemStyle.ts:43 -#: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:43 -#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "Gövde arkaplan rengini değiştirebilirsiniz" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" msgstr "Gövde Yazı Tipi" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "You can change the font of the body" msgstr "Gövde yazı tipini değiştirebilirsiniz" -#: src/prefs/customization/codeItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:60 +#: src/prefs/customization/codeItemStyle.ts:35 +#: src/prefs/customization/textItemStyle.ts:40 msgid "Character Length" msgstr "Karakter Uzunluğu" -#: src/prefs/customization/codeItemStyle.ts:56 -#: src/prefs/customization/textItemStyle.ts:61 +#: src/prefs/customization/codeItemStyle.ts:36 +#: src/prefs/customization/textItemStyle.ts:41 msgid "You can change the character length of the visible text in the body" msgstr "Gövdedeki görünebilir yazıların karakter uzunluğunu değiştirebilirsiniz" @@ -136,141 +96,141 @@ msgstr "Renk öğesinin tarzını değiştir" msgid "Color Item Style" msgstr "Renk Öğesi Tarzı" -#: src/prefs/customization/colorItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:51 -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/colorItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 msgid "Metadata Background Color" msgstr "Metaveri Arkaplan Rengi" -#: src/prefs/customization/colorItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:52 -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/colorItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 msgid "You can change the background color of the metadata" msgstr "Metaveri arkaplan rengini değiştirebilirsiniz" -#: src/prefs/customization/colorItemStyle.ts:52 -#: src/prefs/customization/imageItemStyle.ts:61 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:41 msgid "Metadata Text Color" msgstr "Metaveri Yazı Rengi" -#: src/prefs/customization/colorItemStyle.ts:53 -#: src/prefs/customization/imageItemStyle.ts:62 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:42 msgid "You can change the text color of the metadata" msgstr "Metaveri yazı rengini değiştirebilirsiniz" -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "You can change the font of the metadata" msgstr "Metaveri yazı tipini değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:14 +#: src/prefs/customization/commonStyleGroup.ts:20 msgid "Common" msgstr "Genel" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "Icon Pack" msgstr "Simge Paketi" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "You can change the icon pack" msgstr "Simge paketini değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:21 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Default Icons" msgstr "Varsayılan Simgeler" -#: src/prefs/customization/commonStyleGroup.ts:22 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Legacy Icons" msgstr "Eski Simgeler" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "Item Size" msgstr "Simge Boyutu" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "You can change the item size" msgstr "Öğe boyutunu değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:32 +#: src/prefs/customization/commonStyleGroup.ts:38 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:39 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 msgid "Window Position" msgstr "Pencere Konumu" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:48 msgid "You can change position of the Pano" msgstr "Pencere konumunu değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Bottom" msgstr "Alt" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Left" msgstr "Sol" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Right" msgstr "Sağ" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Top" msgstr "Üst" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "Window Background Color" msgstr "Pencere Arkaplan Rengi" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:58 msgid "You can change the window background color" msgstr "Pencere arkaplan rengini değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:50 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Incognito Window Background Color" msgstr "Gizli Pencere Arkaplan Rengi" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "You can change the incognito window background color" msgstr "Gizli pencere arkaplan rengini değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Search Bar Font" msgstr "Arama Çubuğu Yazı Tipi" -#: src/prefs/customization/commonStyleGroup.ts:59 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the font of the search bar" msgstr "Arama çubuğu yazı tipini değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "Item Title Font" -msgstr "Öğe Başlığı Yazı Tipi" - -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "You can change the font of the title" -msgstr "Öğe başlığının yazı tipini değiştirebilirsiniz" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "Item Date Font" -msgstr "Öğe Tarihi Yazı Tipi" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "You can change the font of the date" -msgstr "Öğe tarihi yazı tipini değiştirebilirsiniz" - -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Active Item Border Color" msgstr "Etkin Öğe Çerçeve Rengi" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the active item border color" msgstr "Etkin öğenin çerçeve rengini değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:80 +#: src/prefs/customization/commonStyleGroup.ts:89 msgid "Hovered Item Border Color" msgstr "Öğenin Üzerine Gelindiğindeki Çerçeve Rengi" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:90 msgid "You can change the hovered item border color" msgstr "Öğenin üzerine geldiğindeki çerçeve rengini değiştirebilirsiniz" +#: src/prefs/customization/commonStyleGroup.ts:97 +msgid "Show Controls on Hover" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:98 +msgid "When enabled, the controls will only show on hover" +msgstr "" + #: src/prefs/customization/emojiItemStyle.ts:15 msgid "Change the style of the emoji item" msgstr "İfadelerin tarzını değiştir" @@ -279,11 +239,11 @@ msgstr "İfadelerin tarzını değiştir" msgid "Emoji Item Style" msgstr "İfade Öğe Tarzı" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "Emoji Size" msgstr "İfade Boyutu" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "You can change the emoji size" msgstr "İfade boyutunu değiştirebilirsiniz" @@ -295,13 +255,29 @@ msgstr "Dosya öğesinin tarzını değiştir" msgid "File Item Style" msgstr "Dosya Öğe Tarzı" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:32 +msgid "Title Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:33 +msgid "You can change the text color of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "Title Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "Body Text Color" msgstr "Gövde Yazı Rengi" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "You can change the text color of the body" msgstr "Gövdenin yazı rengini değiştirebilirsiniz" @@ -313,7 +289,7 @@ msgstr "Resim öğesinin tarzını değiştirebilirsiniz" msgid "Image Item Style" msgstr "Resim Öğe Tarzı" -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "Metadata Font" msgstr "Metaveri Yazı Tipi" @@ -333,51 +309,51 @@ msgstr "Bağlantı öğesinin tarzını değiştir" msgid "Link Item Style" msgstr "Bağlantı Öğe Tarzı" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "Metaveri Başlık Rengi" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the title color of the metadata" msgstr "Metaverinin başlık rengini değiştirebilirsiniz" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Font" msgstr "Metaveri Başlık Yazı Tipi" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the font of the metadata title" msgstr "Metaverinin başlığının yazı tipini değiştirebilirsiniz" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Description Color" msgstr "Metaveri Açıklama Rengi" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the description color of the metadata" msgstr "Metaverinin açıklama rengini değiştirebilirsiniz" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Font" msgstr "Metaveri Açıklama Yazı Tipi" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata description" msgstr "Metaverinin açıklama yazı tipini değiştirebilirsiniz" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Link Color" msgstr "Metaveri Bağlantı Rengi" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the link color of the metadata" msgstr "Metaverinin bağlantı rengini değiştirebilirsiniz" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Font" msgstr "Metaveri Bağlantı Yazı Tipi" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata link" msgstr "Metaverinin bağlantı yazı tipini değiştirebilirsiniz" @@ -555,39 +531,39 @@ msgstr "Göstergeyi Oynat" msgid "Wiggles the indicator on panel" msgstr "Paneldeki göstergeyi oynatır" -#: src/utils/panoItemFactory.ts:406 +#: src/utils/panoItemFactory.ts:398 msgid "Image Copied" msgstr "Resim Kopyalandı" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:399 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "Genişlik: %spx, Yükseklik: %spx, Boyut: %s" -#: src/utils/panoItemFactory.ts:411 +#: src/utils/panoItemFactory.ts:403 msgid "Text Copied" msgstr "Yazı Kopyalandı" -#: src/utils/panoItemFactory.ts:413 +#: src/utils/panoItemFactory.ts:405 msgid "Code Copied" msgstr "Kod Kopyalandı" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:407 msgid "Emoji Copied" msgstr "İfade Kopyalandı" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:415 msgid "Link Copied" msgstr "Bağlantı Kopyalandı" -#: src/utils/panoItemFactory.ts:443 +#: src/utils/panoItemFactory.ts:428 msgid "Color Copied" msgstr "Renk Kopyalandı" -#: src/utils/panoItemFactory.ts:450 +#: src/utils/panoItemFactory.ts:435 msgid "File %s" msgstr "Dosya %s" -#: src/utils/panoItemFactory.ts:451 +#: src/utils/panoItemFactory.ts:436 msgid "There are %s file(s)" msgstr "%s kadar dosya var" diff --git a/resources/po/uk.po b/resources/po/uk.po index 8e580aed..7bb69f52 100644 --- a/resources/po/uk.po +++ b/resources/po/uk.po @@ -31,7 +31,7 @@ msgstr "Режим інкогніто" msgid "Settings" msgstr "Параметри" -#: src/components/linkPanoItem.ts:39 +#: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "Без опису" @@ -48,83 +48,43 @@ msgid "Code Item Style" msgstr "Стиль елемента коду" #: src/prefs/customization/codeItemStyle.ts:22 -#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 #: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Header Background Color" -msgstr "Колір фону заголовка" +msgid "Body Background Color" +msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 -#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 #: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 -msgid "You can change the background color of the header" -msgstr "Ви можете змінити колір фону заголовка" - -#: src/prefs/customization/codeItemStyle.ts:32 -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/emojiItemStyle.ts:32 -#: src/prefs/customization/fileItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -#: src/prefs/customization/textItemStyle.ts:32 -msgid "Header Text Color" -msgstr "Колір тексту заголовка" - -#: src/prefs/customization/codeItemStyle.ts:33 -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/emojiItemStyle.ts:33 -#: src/prefs/customization/fileItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -#: src/prefs/customization/textItemStyle.ts:33 -msgid "You can change the text color of the header" -msgstr "Ви можете змінити колір тексту заголовка" - -#: src/prefs/customization/codeItemStyle.ts:42 -#: src/prefs/customization/emojiItemStyle.ts:42 -#: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:41 -#: src/prefs/customization/linkItemStyle.ts:42 -#: src/prefs/customization/textItemStyle.ts:42 -msgid "Body Background Color" -msgstr "Колір фону тіла" - -#: src/prefs/customization/codeItemStyle.ts:43 -#: src/prefs/customization/emojiItemStyle.ts:43 -#: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:43 -#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "Ви можете змінити колір фону тіла" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" msgstr "Шрифт тіла" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "You can change the font of the body" msgstr "Ви можете змінити шрифт тіла" -#: src/prefs/customization/codeItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:60 +#: src/prefs/customization/codeItemStyle.ts:35 +#: src/prefs/customization/textItemStyle.ts:40 msgid "Character Length" msgstr "Довжина символів" -#: src/prefs/customization/codeItemStyle.ts:56 -#: src/prefs/customization/textItemStyle.ts:61 +#: src/prefs/customization/codeItemStyle.ts:36 +#: src/prefs/customization/textItemStyle.ts:41 msgid "You can change the character length of the visible text in the body" msgstr "Ви можете змінити довжину видимого тексту в тілі" @@ -136,141 +96,141 @@ msgstr "Змінити стиль елемента кольору" msgid "Color Item Style" msgstr "Стиль елемента кольору" -#: src/prefs/customization/colorItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:51 -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/colorItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 msgid "Metadata Background Color" msgstr "Колір фону метаданих" -#: src/prefs/customization/colorItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:52 -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/colorItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 msgid "You can change the background color of the metadata" msgstr "Ви можете змінити колір фону метаданих" -#: src/prefs/customization/colorItemStyle.ts:52 -#: src/prefs/customization/imageItemStyle.ts:61 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:41 msgid "Metadata Text Color" msgstr "Колір тексту метаданих" -#: src/prefs/customization/colorItemStyle.ts:53 -#: src/prefs/customization/imageItemStyle.ts:62 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:42 msgid "You can change the text color of the metadata" msgstr "Ви можете змінити колір тексту метаданих" -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "You can change the font of the metadata" msgstr "Ви можете змінити шрифт метаданих" -#: src/prefs/customization/commonStyleGroup.ts:14 +#: src/prefs/customization/commonStyleGroup.ts:20 msgid "Common" msgstr "Загальне" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "Icon Pack" msgstr "Пакет іконок" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "You can change the icon pack" msgstr "Ви можете змінити пакет іконок" -#: src/prefs/customization/commonStyleGroup.ts:21 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Default Icons" msgstr "Значки за замовчуванням" -#: src/prefs/customization/commonStyleGroup.ts:22 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Legacy Icons" msgstr "Класичні значки" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "Item Size" msgstr "Розмір елемента" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "You can change the item size" msgstr "Ви можете змінити розмір елемента" -#: src/prefs/customization/commonStyleGroup.ts:32 +#: src/prefs/customization/commonStyleGroup.ts:38 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:39 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 msgid "Window Position" msgstr "Положення вікна" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:48 msgid "You can change position of the Pano" msgstr "Ви можете змінити положення Pano" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Bottom" msgstr "Знизу" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Left" msgstr "Зліва" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Right" msgstr "Справа" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Top" msgstr "Зверху" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "Window Background Color" msgstr "Колір фону вікна" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:58 msgid "You can change the window background color" msgstr "Ви можете змінити колір фону вікна" -#: src/prefs/customization/commonStyleGroup.ts:50 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Incognito Window Background Color" msgstr "Колір фону вікна інкогніто" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "You can change the incognito window background color" msgstr "Ви можете змінити колір фону вікна інкогніто" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Search Bar Font" msgstr "Шрифт пошуку" -#: src/prefs/customization/commonStyleGroup.ts:59 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the font of the search bar" msgstr "Ви можете змінити шрифт пошукового рядка" -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "Item Title Font" -msgstr "Шрифт заголовка елемента" - -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "You can change the font of the title" -msgstr "Ви можете змінити шрифт заголовка" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "Item Date Font" -msgstr "Шрифт дати елемента" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "You can change the font of the date" -msgstr "Ви можете змінити шрифт дати" - -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Active Item Border Color" msgstr "Колір рамки активного елемента" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the active item border color" msgstr "Ви можете змінити колір рамки активного елемента" -#: src/prefs/customization/commonStyleGroup.ts:80 +#: src/prefs/customization/commonStyleGroup.ts:89 msgid "Hovered Item Border Color" msgstr "Колір рамки при наведенні на елемент" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:90 msgid "You can change the hovered item border color" msgstr "Ви можете змінити колір рамки при наведенні на елемент" +#: src/prefs/customization/commonStyleGroup.ts:97 +msgid "Show Controls on Hover" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:98 +msgid "When enabled, the controls will only show on hover" +msgstr "" + #: src/prefs/customization/emojiItemStyle.ts:15 msgid "Change the style of the emoji item" msgstr "Змінити стиль емодзі" @@ -279,11 +239,11 @@ msgstr "Змінити стиль емодзі" msgid "Emoji Item Style" msgstr "Стиль емодзі" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "Emoji Size" msgstr "Розмір емодзі" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "You can change the emoji size" msgstr "Ви можете змінити розмір емодзі" @@ -295,13 +255,29 @@ msgstr "Змінити стиль елемента файлу" msgid "File Item Style" msgstr "Стиль елемента файлу" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:32 +msgid "Title Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:33 +msgid "You can change the text color of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "Title Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "Body Text Color" msgstr "Колір тексту тіла" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "You can change the text color of the body" msgstr "Ви можете змінити колір тексту тіла" @@ -313,7 +289,7 @@ msgstr "Змінити стиль елемента зображення" msgid "Image Item Style" msgstr "Стиль елемента зображення" -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "Metadata Font" msgstr "Шрифт метаданих" @@ -333,51 +309,51 @@ msgstr "Змінити стиль елемента посилання" msgid "Link Item Style" msgstr "Стиль елемента посилання" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "Колір заголовка метаданих" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the title color of the metadata" msgstr "Ви можете змінити колір заголовка метаданих" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Font" msgstr "Шрифт заголовка метаданих" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the font of the metadata title" msgstr "Ви можете змінити шрифт заголовка метаданих" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Description Color" msgstr "Колір опису метаданих" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the description color of the metadata" msgstr "Ви можете змінити колір опису метаданих" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Font" msgstr "Шрифт опису метаданих" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata description" msgstr "Ви можете змінити шрифт опису метаданих" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Link Color" msgstr "Колір посилання метаданих" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the link color of the metadata" msgstr "Ви можете змінити колір посилання метаданих" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Font" msgstr "Шрифт посилання метаданих" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata link" msgstr "Ви можете змінити шрифт посилання метаданих" @@ -555,39 +531,39 @@ msgstr "Коливання індикатора" msgid "Wiggles the indicator on panel" msgstr "Коливає індикатор на панелі" -#: src/utils/panoItemFactory.ts:406 +#: src/utils/panoItemFactory.ts:398 msgid "Image Copied" msgstr "Зображення скопійовано" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:399 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "Ширина: %spx, Висота: %spx, Розмір: %s" -#: src/utils/panoItemFactory.ts:411 +#: src/utils/panoItemFactory.ts:403 msgid "Text Copied" msgstr "Текст скопійовано" -#: src/utils/panoItemFactory.ts:413 +#: src/utils/panoItemFactory.ts:405 msgid "Code Copied" msgstr "Код скопійовано" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:407 msgid "Emoji Copied" msgstr "Емодзі скопійовано" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:415 msgid "Link Copied" msgstr "Посилання скопійовано" -#: src/utils/panoItemFactory.ts:443 +#: src/utils/panoItemFactory.ts:428 msgid "Color Copied" msgstr "Колір скопійовано" -#: src/utils/panoItemFactory.ts:450 +#: src/utils/panoItemFactory.ts:435 msgid "File %s" msgstr "Файл %s" -#: src/utils/panoItemFactory.ts:451 +#: src/utils/panoItemFactory.ts:436 msgid "There are %s file(s)" msgstr "Існує %s файл(ів)" diff --git a/resources/po/vi.po b/resources/po/vi.po index 9e8ca59f..fa7bbf39 100644 --- a/resources/po/vi.po +++ b/resources/po/vi.po @@ -31,7 +31,7 @@ msgstr "Chế Độ Ẩn Danh" msgid "Settings" msgstr "Cài Đặt" -#: src/components/linkPanoItem.ts:39 +#: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "" @@ -48,83 +48,43 @@ msgid "Code Item Style" msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 -#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 #: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Header Background Color" +msgid "Body Background Color" msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 -#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 #: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 -msgid "You can change the background color of the header" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:32 -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/emojiItemStyle.ts:32 -#: src/prefs/customization/fileItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -#: src/prefs/customization/textItemStyle.ts:32 -msgid "Header Text Color" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:33 -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/emojiItemStyle.ts:33 -#: src/prefs/customization/fileItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -#: src/prefs/customization/textItemStyle.ts:33 -msgid "You can change the text color of the header" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:42 -#: src/prefs/customization/emojiItemStyle.ts:42 -#: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:41 -#: src/prefs/customization/linkItemStyle.ts:42 -#: src/prefs/customization/textItemStyle.ts:42 -msgid "Body Background Color" -msgstr "" - -#: src/prefs/customization/codeItemStyle.ts:43 -#: src/prefs/customization/emojiItemStyle.ts:43 -#: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:43 -#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:60 +#: src/prefs/customization/codeItemStyle.ts:35 +#: src/prefs/customization/textItemStyle.ts:40 msgid "Character Length" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:56 -#: src/prefs/customization/textItemStyle.ts:61 +#: src/prefs/customization/codeItemStyle.ts:36 +#: src/prefs/customization/textItemStyle.ts:41 msgid "You can change the character length of the visible text in the body" msgstr "" @@ -136,141 +96,141 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:51 -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/colorItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:52 -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/colorItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:52 -#: src/prefs/customization/imageItemStyle.ts:61 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:41 msgid "Metadata Text Color" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:53 -#: src/prefs/customization/imageItemStyle.ts:62 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:42 msgid "You can change the text color of the metadata" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:14 +#: src/prefs/customization/commonStyleGroup.ts:20 msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "Icon Pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:21 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Default Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:22 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Legacy Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "Item Size" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "You can change the item size" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:32 +#: src/prefs/customization/commonStyleGroup.ts:38 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:39 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:48 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:58 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:50 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:59 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "Item Title Font" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "Item Date Font" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "You can change the font of the date" -msgstr "" - -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:80 +#: src/prefs/customization/commonStyleGroup.ts:89 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:90 msgid "You can change the hovered item border color" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:97 +msgid "Show Controls on Hover" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:98 +msgid "When enabled, the controls will only show on hover" +msgstr "" + #: src/prefs/customization/emojiItemStyle.ts:15 msgid "Change the style of the emoji item" msgstr "" @@ -279,11 +239,11 @@ msgstr "" msgid "Emoji Item Style" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "Emoji Size" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "You can change the emoji size" msgstr "" @@ -295,13 +255,29 @@ msgstr "" msgid "File Item Style" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:32 +msgid "Title Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:33 +msgid "You can change the text color of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "Title Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "Body Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "You can change the text color of the body" msgstr "" @@ -313,7 +289,7 @@ msgstr "" msgid "Image Item Style" msgstr "" -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "Metadata Font" msgstr "" @@ -333,51 +309,51 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata link" msgstr "" @@ -555,39 +531,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:406 +#: src/utils/panoItemFactory.ts:398 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:399 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:411 +#: src/utils/panoItemFactory.ts:403 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:413 +#: src/utils/panoItemFactory.ts:405 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:407 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:415 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:443 +#: src/utils/panoItemFactory.ts:428 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:450 +#: src/utils/panoItemFactory.ts:435 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:451 +#: src/utils/panoItemFactory.ts:436 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/zh_CN.po b/resources/po/zh_CN.po index 45193f18..f5e37392 100644 --- a/resources/po/zh_CN.po +++ b/resources/po/zh_CN.po @@ -31,7 +31,7 @@ msgstr "隐身模式" msgid "Settings" msgstr "设置" -#: src/components/linkPanoItem.ts:39 +#: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "无详情" @@ -48,83 +48,43 @@ msgid "Code Item Style" msgstr "代码项目风格" #: src/prefs/customization/codeItemStyle.ts:22 -#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 #: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Header Background Color" -msgstr "标题背景色" +msgid "Body Background Color" +msgstr "正文背景色" #: src/prefs/customization/codeItemStyle.ts:23 -#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 #: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 -msgid "You can change the background color of the header" -msgstr "修改标题背景颜色" - -#: src/prefs/customization/codeItemStyle.ts:32 -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/emojiItemStyle.ts:32 -#: src/prefs/customization/fileItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -#: src/prefs/customization/textItemStyle.ts:32 -msgid "Header Text Color" -msgstr "标题文字颜色" - -#: src/prefs/customization/codeItemStyle.ts:33 -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/emojiItemStyle.ts:33 -#: src/prefs/customization/fileItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -#: src/prefs/customization/textItemStyle.ts:33 -msgid "You can change the text color of the header" -msgstr "修改标题文字颜色" - -#: src/prefs/customization/codeItemStyle.ts:42 -#: src/prefs/customization/emojiItemStyle.ts:42 -#: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:41 -#: src/prefs/customization/linkItemStyle.ts:42 -#: src/prefs/customization/textItemStyle.ts:42 -msgid "Body Background Color" -msgstr "正文背景色" - -#: src/prefs/customization/codeItemStyle.ts:43 -#: src/prefs/customization/emojiItemStyle.ts:43 -#: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:43 -#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "修改正文背景颜色" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" msgstr "正文字体" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "You can change the font of the body" msgstr "修改正文字体" -#: src/prefs/customization/codeItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:60 +#: src/prefs/customization/codeItemStyle.ts:35 +#: src/prefs/customization/textItemStyle.ts:40 msgid "Character Length" msgstr "字符长度" -#: src/prefs/customization/codeItemStyle.ts:56 -#: src/prefs/customization/textItemStyle.ts:61 +#: src/prefs/customization/codeItemStyle.ts:36 +#: src/prefs/customization/textItemStyle.ts:41 msgid "You can change the character length of the visible text in the body" msgstr "修改正文文本在预览时显示的字数" @@ -136,141 +96,141 @@ msgstr "修改色彩项目风格" msgid "Color Item Style" msgstr "色彩项目风格" -#: src/prefs/customization/colorItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:51 -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/colorItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 msgid "Metadata Background Color" msgstr "元数据背景色" -#: src/prefs/customization/colorItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:52 -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/colorItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 msgid "You can change the background color of the metadata" msgstr "修改元数据背景颜色" -#: src/prefs/customization/colorItemStyle.ts:52 -#: src/prefs/customization/imageItemStyle.ts:61 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:41 msgid "Metadata Text Color" msgstr "元数据文本颜色" -#: src/prefs/customization/colorItemStyle.ts:53 -#: src/prefs/customization/imageItemStyle.ts:62 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:42 msgid "You can change the text color of the metadata" msgstr "修改元数据文本颜色" -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "You can change the font of the metadata" msgstr "修改元数据文本字体" -#: src/prefs/customization/commonStyleGroup.ts:14 +#: src/prefs/customization/commonStyleGroup.ts:20 msgid "Common" msgstr "共性" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "Icon Pack" msgstr "图标包" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "You can change the icon pack" msgstr "修改图标包" -#: src/prefs/customization/commonStyleGroup.ts:21 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Default Icons" msgstr "默认图标" -#: src/prefs/customization/commonStyleGroup.ts:22 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Legacy Icons" msgstr "传统图标" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "Item Size" msgstr "项目大小" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "You can change the item size" msgstr "修改项目尺寸" -#: src/prefs/customization/commonStyleGroup.ts:32 +#: src/prefs/customization/commonStyleGroup.ts:38 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:39 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 msgid "Window Position" msgstr "窗口位置" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:48 msgid "You can change position of the Pano" msgstr "修改Pano窗口的位置" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Bottom" msgstr "底部" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Left" msgstr "左侧" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Right" msgstr "右侧" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Top" msgstr "顶部" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "Window Background Color" msgstr "窗口背景色" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:58 msgid "You can change the window background color" msgstr "修改窗口背景颜色" -#: src/prefs/customization/commonStyleGroup.ts:50 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Incognito Window Background Color" msgstr "隐私窗口背景色" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "You can change the incognito window background color" msgstr "修改隐私窗口背景颜色" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Search Bar Font" msgstr "搜索栏字体" -#: src/prefs/customization/commonStyleGroup.ts:59 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the font of the search bar" msgstr "修改搜索栏字体" -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "Item Title Font" -msgstr "项目标题字体" - -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "You can change the font of the title" -msgstr "修改项目标题字体" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "Item Date Font" -msgstr "项目日期字体" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "You can change the font of the date" -msgstr "修改项目日期字体" - -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Active Item Border Color" msgstr "激活项目边框颜色" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the active item border color" msgstr "修改激活项目的边框颜色" -#: src/prefs/customization/commonStyleGroup.ts:80 +#: src/prefs/customization/commonStyleGroup.ts:89 msgid "Hovered Item Border Color" msgstr "悬停项目边框颜色" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:90 msgid "You can change the hovered item border color" msgstr "修改鼠标悬停项目的边框颜色" +#: src/prefs/customization/commonStyleGroup.ts:97 +msgid "Show Controls on Hover" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:98 +msgid "When enabled, the controls will only show on hover" +msgstr "" + #: src/prefs/customization/emojiItemStyle.ts:15 msgid "Change the style of the emoji item" msgstr "修改表情符号项目风格" @@ -279,11 +239,11 @@ msgstr "修改表情符号项目风格" msgid "Emoji Item Style" msgstr "表情符号项目风格" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "Emoji Size" msgstr "表情符号大小" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "You can change the emoji size" msgstr "修改表情符号大小" @@ -295,13 +255,29 @@ msgstr "修改文件项目的风格" msgid "File Item Style" msgstr "文件项目风格" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:32 +msgid "Title Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:33 +msgid "You can change the text color of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "Title Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "Body Text Color" msgstr "正文字体颜色" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "You can change the text color of the body" msgstr "修改正文字体颜色" @@ -313,7 +289,7 @@ msgstr "修改图像项目风格" msgid "Image Item Style" msgstr "图像项目风格" -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "Metadata Font" msgstr "元数据字体" @@ -333,51 +309,51 @@ msgstr "修改链接项目风格" msgid "Link Item Style" msgstr "链接项目风格" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "元数据标题颜色" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the title color of the metadata" msgstr "修改元数据标题颜色" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Font" msgstr "元数据标题字体" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the font of the metadata title" msgstr "修改元数据标题字体" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Description Color" msgstr "元数据详情颜色" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the description color of the metadata" msgstr "修改元数据详情颜色" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Font" msgstr "元数据详情字体" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata description" msgstr "修改元数据详情字体" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Link Color" msgstr "元数据链接颜色" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the link color of the metadata" msgstr "修改元数据链接颜色" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Font" msgstr "元数据链接字体" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata link" msgstr "修改元数据链接字体" @@ -555,39 +531,39 @@ msgstr "抖动指示器" msgid "Wiggles the indicator on panel" msgstr "抖动面板上的程序指示器" -#: src/utils/panoItemFactory.ts:406 +#: src/utils/panoItemFactory.ts:398 msgid "Image Copied" msgstr "图像已复制" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:399 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "宽:%spx,高:%spx,尺寸:%s" -#: src/utils/panoItemFactory.ts:411 +#: src/utils/panoItemFactory.ts:403 msgid "Text Copied" msgstr "文本已复制" -#: src/utils/panoItemFactory.ts:413 +#: src/utils/panoItemFactory.ts:405 msgid "Code Copied" msgstr "代码已复制" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:407 msgid "Emoji Copied" msgstr "表情符号已复制" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:415 msgid "Link Copied" msgstr "链接已复制" -#: src/utils/panoItemFactory.ts:443 +#: src/utils/panoItemFactory.ts:428 msgid "Color Copied" msgstr "颜色已复制" -#: src/utils/panoItemFactory.ts:450 +#: src/utils/panoItemFactory.ts:435 msgid "File %s" msgstr "文件%s" -#: src/utils/panoItemFactory.ts:451 +#: src/utils/panoItemFactory.ts:436 msgid "There are %s file(s)" msgstr "%s个文件" diff --git a/resources/po/zh_TW.po b/resources/po/zh_TW.po index 147dec60..b3be5950 100644 --- a/resources/po/zh_TW.po +++ b/resources/po/zh_TW.po @@ -31,7 +31,7 @@ msgstr "無痕模式" msgid "Settings" msgstr "設定" -#: src/components/linkPanoItem.ts:39 +#: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "無說明" @@ -48,83 +48,43 @@ msgid "Code Item Style" msgstr "程式物件主題" #: src/prefs/customization/codeItemStyle.ts:22 -#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 #: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Header Background Color" -msgstr "標題背景顏色" +msgid "Body Background Color" +msgstr "內容背景顏色" #: src/prefs/customization/codeItemStyle.ts:23 -#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 #: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 -msgid "You can change the background color of the header" -msgstr "你可以更換背景顏色的" - -#: src/prefs/customization/codeItemStyle.ts:32 -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/emojiItemStyle.ts:32 -#: src/prefs/customization/fileItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -#: src/prefs/customization/textItemStyle.ts:32 -msgid "Header Text Color" -msgstr "標題字體顏色" - -#: src/prefs/customization/codeItemStyle.ts:33 -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/emojiItemStyle.ts:33 -#: src/prefs/customization/fileItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -#: src/prefs/customization/textItemStyle.ts:33 -msgid "You can change the text color of the header" -msgstr "你可以更換視窗標頭字體顏色" - -#: src/prefs/customization/codeItemStyle.ts:42 -#: src/prefs/customization/emojiItemStyle.ts:42 -#: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:41 -#: src/prefs/customization/linkItemStyle.ts:42 -#: src/prefs/customization/textItemStyle.ts:42 -msgid "Body Background Color" -msgstr "內容背景顏色" - -#: src/prefs/customization/codeItemStyle.ts:43 -#: src/prefs/customization/emojiItemStyle.ts:43 -#: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:43 -#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "你可以更換內容的背景顏色" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" msgstr "內容字體" -#: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:55 +#: src/prefs/customization/codeItemStyle.ts:30 +#: src/prefs/customization/fileItemStyle.ts:50 +#: src/prefs/customization/textItemStyle.ts:35 msgid "You can change the font of the body" msgstr "你可以更換內容的字體" -#: src/prefs/customization/codeItemStyle.ts:55 -#: src/prefs/customization/textItemStyle.ts:60 +#: src/prefs/customization/codeItemStyle.ts:35 +#: src/prefs/customization/textItemStyle.ts:40 msgid "Character Length" msgstr "字串長度" -#: src/prefs/customization/codeItemStyle.ts:56 -#: src/prefs/customization/textItemStyle.ts:61 +#: src/prefs/customization/codeItemStyle.ts:36 +#: src/prefs/customization/textItemStyle.ts:41 msgid "You can change the character length of the visible text in the body" msgstr "你可以更換內容的可見字串長度" @@ -136,141 +96,141 @@ msgstr "切換顏色物件主題" msgid "Color Item Style" msgstr "顏色物件主題" -#: src/prefs/customization/colorItemStyle.ts:42 -#: src/prefs/customization/imageItemStyle.ts:51 -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/colorItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 msgid "Metadata Background Color" msgstr "詮釋資料背景顏色" -#: src/prefs/customization/colorItemStyle.ts:43 -#: src/prefs/customization/imageItemStyle.ts:52 -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/colorItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 msgid "You can change the background color of the metadata" msgstr "你可以更換詮釋資料的背景顏色" -#: src/prefs/customization/colorItemStyle.ts:52 -#: src/prefs/customization/imageItemStyle.ts:61 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:41 msgid "Metadata Text Color" msgstr "詮釋資料字體顏色" -#: src/prefs/customization/colorItemStyle.ts:53 -#: src/prefs/customization/imageItemStyle.ts:62 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:42 msgid "You can change the text color of the metadata" msgstr "你可以更換詮釋資料的字體顏色" -#: src/prefs/customization/colorItemStyle.ts:61 -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "You can change the font of the metadata" msgstr "你可以更換詮釋資料的字體" -#: src/prefs/customization/commonStyleGroup.ts:14 +#: src/prefs/customization/commonStyleGroup.ts:20 msgid "Common" msgstr "一般" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "Icon Pack" msgstr "圖示包" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:26 msgid "You can change the icon pack" msgstr "你可以更換圖示包" -#: src/prefs/customization/commonStyleGroup.ts:21 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Default Icons" msgstr "預設圖示" -#: src/prefs/customization/commonStyleGroup.ts:22 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Legacy Icons" msgstr "復古圖示" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "Item Size" msgstr "物件大小" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:33 msgid "You can change the item size" msgstr "你可以更換物件大小" -#: src/prefs/customization/commonStyleGroup.ts:32 +#: src/prefs/customization/commonStyleGroup.ts:38 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:39 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 msgid "Window Position" msgstr "視窗位置" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:48 msgid "You can change position of the Pano" msgstr "你可以更換 Pano 的位置" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Bottom" msgstr "底部" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Left" msgstr "左邊" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Right" msgstr "右邊" -#: src/prefs/customization/commonStyleGroup.ts:36 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Top" msgstr "頂部" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "Window Background Color" msgstr "視窗背景顏色" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:58 msgid "You can change the window background color" msgstr "你可以更換視窗背景顏色" -#: src/prefs/customization/commonStyleGroup.ts:50 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Incognito Window Background Color" msgstr "無痕模式視窗背景顏色" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "You can change the incognito window background color" msgstr "你可以更換無痕模式視窗背景顏色" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Search Bar Font" msgstr "搜尋欄字體" -#: src/prefs/customization/commonStyleGroup.ts:59 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the font of the search bar" msgstr "你可以更換搜尋欄的字體" -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "Item Title Font" -msgstr "物件標題字體" - -#: src/prefs/customization/commonStyleGroup.ts:65 -msgid "You can change the font of the title" -msgstr "你可以更換標題的字體" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "Item Date Font" -msgstr "物件日期字體" - -#: src/prefs/customization/commonStyleGroup.ts:68 -msgid "You can change the font of the date" -msgstr "你可以更換日期的字體" - -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Active Item Border Color" msgstr "選取物件邊界顏色" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the active item border color" msgstr "你可以更換活躍的物件邊界顏色" -#: src/prefs/customization/commonStyleGroup.ts:80 +#: src/prefs/customization/commonStyleGroup.ts:89 msgid "Hovered Item Border Color" msgstr "被游標覆蓋物件邊界顏色" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:90 msgid "You can change the hovered item border color" msgstr "你可以更換被覆蓋物件邊界顏色" +#: src/prefs/customization/commonStyleGroup.ts:97 +msgid "Show Controls on Hover" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:98 +msgid "When enabled, the controls will only show on hover" +msgstr "" + #: src/prefs/customization/emojiItemStyle.ts:15 msgid "Change the style of the emoji item" msgstr "切換表情符號物件主題" @@ -279,11 +239,11 @@ msgstr "切換表情符號物件主題" msgid "Emoji Item Style" msgstr "表情符號物件風格" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "Emoji Size" msgstr "表情符號大小" -#: src/prefs/customization/emojiItemStyle.ts:51 +#: src/prefs/customization/emojiItemStyle.ts:31 msgid "You can change the emoji size" msgstr "你可以更換表情符號的大小" @@ -295,13 +255,29 @@ msgstr "切換檔案物件主題" msgid "File Item Style" msgstr "檔案物件風格" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:32 +msgid "Title Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:33 +msgid "You can change the text color of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "Title Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:41 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "Body Text Color" msgstr "內容字體顏色" -#: src/prefs/customization/fileItemStyle.ts:51 -#: src/prefs/customization/textItemStyle.ts:51 +#: src/prefs/customization/fileItemStyle.ts:46 +#: src/prefs/customization/textItemStyle.ts:31 msgid "You can change the text color of the body" msgstr "你可以更換內容的字體顏色" @@ -313,7 +289,7 @@ msgstr "切換圖片物件主題" msgid "Image Item Style" msgstr "圖片物件風格" -#: src/prefs/customization/imageItemStyle.ts:70 +#: src/prefs/customization/imageItemStyle.ts:50 msgid "Metadata Font" msgstr "詮釋資料字體" @@ -333,51 +309,51 @@ msgstr "切換連結物件主題" msgid "Link Item Style" msgstr "連結物件風格" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "詮釋資料標題顏色" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the title color of the metadata" msgstr "你可以更換詮釋資料的標題顏色" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Font" msgstr "詮釋資料標題字體" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the font of the metadata title" msgstr "你可以更換詮釋資料標題的字體" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Description Color" msgstr "詮釋資料說明顏色" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the description color of the metadata" msgstr "你可以更換詮釋資料的說明顏色" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Font" msgstr "詮釋資料說明字體" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata description" msgstr "你可以更換詮釋資料說明的字體" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Link Color" msgstr "詮釋資料連結顏色" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the link color of the metadata" msgstr "你可以更換詮釋資料的連結顏色" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Font" msgstr "詮釋資料連結字體" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata link" msgstr "你可以更換詮釋資料連結的字體" @@ -555,39 +531,39 @@ msgstr "振動圖示" msgid "Wiggles the indicator on panel" msgstr "在頂欄中振動圖示" -#: src/utils/panoItemFactory.ts:406 +#: src/utils/panoItemFactory.ts:398 msgid "Image Copied" msgstr "已複製圖片" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:399 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "寬度:%s個像素,高度:%s個像素,大小:%s" -#: src/utils/panoItemFactory.ts:411 +#: src/utils/panoItemFactory.ts:403 msgid "Text Copied" msgstr "已複製文字" -#: src/utils/panoItemFactory.ts:413 +#: src/utils/panoItemFactory.ts:405 msgid "Code Copied" msgstr "已複製程式碼" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:407 msgid "Emoji Copied" msgstr "已複製表情符號" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:415 msgid "Link Copied" msgstr "已複製連結" -#: src/utils/panoItemFactory.ts:443 +#: src/utils/panoItemFactory.ts:428 msgid "Color Copied" msgstr "已複製顏色" -#: src/utils/panoItemFactory.ts:450 +#: src/utils/panoItemFactory.ts:435 msgid "File %s" msgstr "檔案 %s" -#: src/utils/panoItemFactory.ts:451 +#: src/utils/panoItemFactory.ts:436 msgid "There are %s file(s)" msgstr "這裡有 %s 個檔案" diff --git a/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml b/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml index 79d5fa06..67a796b7 100644 --- a/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml +++ b/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml @@ -107,6 +107,11 @@ Item Size Controls size of the clipboard item. + + false + Compact Mode + Controls the compactness of the clipboard item. + 2 @@ -132,26 +137,6 @@ search-bar-font-size search-bar-font-size - - 'Cantarell Bold' - item-title-font-family - item-title-font-family - - - 20 - item-title-font-size - item-title-font-size - - - 'Cantarell Regular' - item-date-font-family - item-date-font-family - - - 11 - item-date-font-size - item-date-font-size - 'rgb(53, 132, 228)' active-item-border-color @@ -162,6 +147,11 @@ hovered-item-border-color hovered-item-border-color + + false + Show Controls on Hover + When enabled, the controls will only show on hover + @@ -173,23 +163,13 @@ - - 'rgb(98, 160, 234)' - header-bg-color - header-bg-color - - - 'rgb(255, 255, 255)' - header-color - header-color - - 'rgb(28, 113, 216)' + 'rgb(48, 48, 48)' body-bg-color body-bg-color - 'rgb(61, 56, 70)' + 'rgb(48, 48, 48)' metadata-bg-color metadata-bg-color @@ -241,23 +221,13 @@ - - 'rgb(26, 95, 180)' - header-bg-color - header-bg-color - - - 'rgb(255, 255, 255)' - header-color - header-color - - 'rgb(181, 131, 90)' + 'rgb(48, 48, 48)' body-bg-color body-bg-color - 'rgb(0, 0, 0)' + 'rgb(255, 255, 255)' body-color body-color @@ -280,18 +250,8 @@ - - 'rgb(255, 163, 72)' - header-bg-color - header-bg-color - - - 'rgb(255, 255, 255)' - header-color - header-color - - 'rgb(255, 190, 111)' + 'rgb(48, 48, 48)' body-bg-color body-bg-color @@ -304,23 +264,28 @@ - - 'rgb(61, 56, 70)' - header-bg-color - header-bg-color - - - 'rgb(255, 255, 255)' - header-color - header-color - - 'rgb(250, 250, 250)' + 'rgb(48, 48, 48)' body-bg-color body-bg-color + + 'rgb(255, 255, 255)' + title-color + title-color + + + 'Cantarell Regular' + title-font-family + title-font-family + + + 18 + title-font-size + title-font-size + - 'rgb(0, 0, 0)' + 'rgb(255, 255, 255)' body-color body-color @@ -337,18 +302,8 @@ - - 'rgb(237, 51, 59)' - header-bg-color - header-bg-color - - - 'rgb(255, 255, 255)' - header-color - header-color - - 'rgb(61, 56, 70)' + 'rgb(48, 48, 48)' body-bg-color body-bg-color @@ -375,18 +330,8 @@ - - 'rgb(36, 31, 49)' - header-bg-color - header-bg-color - - - 'rgb(255, 255, 255)' - header-color - header-color - - 'rgb(61, 56, 70)' + 'rgb(48, 48, 48)' body-bg-color body-bg-color @@ -409,16 +354,6 @@ - - 'rgb(145, 65, 172)' - header-bg-color - header-bg-color - - - 'rgb(255, 255, 255)' - header-color - header-color - 'rgb(0, 0, 0)' metadata-bg-color @@ -435,7 +370,7 @@ metadata-font-family - 16 + 20 metadata-font-size metadata-font-size diff --git a/rollup.config.mjs b/rollup.config.mjs index 00bba39b..54a2fd41 100644 --- a/rollup.config.mjs +++ b/rollup.config.mjs @@ -79,7 +79,6 @@ const thirdParty = [ 'prismjs', 'date-fns/formatDistanceToNow', 'date-fns/locale', - 'hex-color-converter', 'is-url', 'pretty-bytes', 'validate-color', diff --git a/src/components/codePanoItem.ts b/src/components/codePanoItem.ts index b1258b31..0a6ae356 100644 --- a/src/components/codePanoItem.ts +++ b/src/components/codePanoItem.ts @@ -30,14 +30,11 @@ export class CodePanoItem extends PanoItem { } private setStyle() { - const headerBgColor = this.codeItemSettings.get_string('header-bg-color'); - const headerColor = this.codeItemSettings.get_string('header-color'); const bodyBgColor = this.codeItemSettings.get_string('body-bg-color'); const bodyFontFamily = this.codeItemSettings.get_string('body-font-family'); const bodyFontSize = this.codeItemSettings.get_int('body-font-size'); const characterLength = this.codeItemSettings.get_int('char-length'); - this.header.set_style(`background-color: ${headerBgColor}; color: ${headerColor};`); this.body.set_style(`background-color: ${bodyBgColor}`); this.label.set_style(`font-size: ${bodyFontSize}px; font-family: ${bodyFontFamily};`); diff --git a/src/components/colorPanoItem.ts b/src/components/colorPanoItem.ts index bb18e213..b59b1380 100644 --- a/src/components/colorPanoItem.ts +++ b/src/components/colorPanoItem.ts @@ -7,40 +7,47 @@ import { ClipboardContent, ClipboardManager, ContentType } from '@pano/utils/cli import { DBItem } from '@pano/utils/db'; import { registerGObjectClass } from '@pano/utils/gjs'; import { orientationCompatibility } from '@pano/utils/shell_compatibility'; +import * as colorString from 'color-string'; + @registerGObjectClass export class ColorPanoItem extends PanoItem { private colorItemSettings: Gio.Settings; + private container: St.BoxLayout; + private icon: St.Icon; private label: St.Label; constructor(ext: ExtensionBase, clipboardManager: ClipboardManager, dbItem: DBItem) { super(ext, clipboardManager, dbItem); - this.body.add_style_class_name('pano-item-body-color'); - this.colorItemSettings = this.settings.get_child('color-item'); - const colorContainer = new St.BoxLayout({ - ...orientationCompatibility(false), + this.container = new St.BoxLayout({ + ...orientationCompatibility(true), xExpand: true, yExpand: true, - yAlign: Clutter.ActorAlign.FILL, + yAlign: Clutter.ActorAlign.CENTER, xAlign: Clutter.ActorAlign.FILL, styleClass: 'color-container', - style: `background-color: ${this.dbItem.content};`, + }); + + this.icon = new St.Icon({ + xAlign: Clutter.ActorAlign.CENTER, + yAlign: Clutter.ActorAlign.CENTER, + styleClass: 'color-icon', + gicon: Gio.icon_new_for_string(`${ext.path}/icons/hicolor/scalable/actions/blend-tool-symbolic.svg`), }); this.label = new St.Label({ xAlign: Clutter.ActorAlign.CENTER, yAlign: Clutter.ActorAlign.CENTER, - xExpand: true, - yExpand: true, text: this.dbItem.content, styleClass: 'color-label', }); - colorContainer.add_child(this.label); + this.container.add_child(this.icon); + this.container.add_child(this.label); - colorContainer.add_constraint( + this.container.add_constraint( new Clutter.AlignConstraint({ source: this, alignAxis: Clutter.AlignAxis.Y_AXIS, @@ -48,24 +55,49 @@ export class ColorPanoItem extends PanoItem { }), ); - this.body.add_child(colorContainer); + this.body.add_child(this.container); this.connect('activated', this.setClipboardContent.bind(this)); + this.setCompactMode(); + this.settings.connect('changed::compact-mode', this.setCompactMode.bind(this)); this.setStyle(); this.colorItemSettings.connect('changed', this.setStyle.bind(this)); } + private setCompactMode() { + if (this.settings.get_boolean('compact-mode')) { + this.container.vertical = false; + } else { + this.container.vertical = true; + } + } + private setStyle() { - const headerBgColor = this.colorItemSettings.get_string('header-bg-color'); - const headerColor = this.colorItemSettings.get_string('header-color'); - const metadataBgColor = this.colorItemSettings.get_string('metadata-bg-color'); - const metadataColor = this.colorItemSettings.get_string('metadata-color'); const metadataFontFamily = this.colorItemSettings.get_string('metadata-font-family'); const metadataFontSize = this.colorItemSettings.get_int('metadata-font-size'); - this.header.set_style(`background-color: ${headerBgColor}; color: ${headerColor};`); - this.label.set_style( - `background-color: ${metadataBgColor}; color: ${metadataColor}; font-family: ${metadataFontFamily}; font-size: ${metadataFontSize}px;`, - ); + // Calculate the luminance to determine the icon and text color with sufficient contrast + const rgb = colorString.get.rgb(this.dbItem.content) ?? [0, 0, 0, 0]; + const L = + 0.2126 * this.calculateChannel(rgb[0]) + + 0.7152 * this.calculateChannel(rgb[1]) + + 0.0722 * this.calculateChannel(rgb[2]); + + const delta = L > 0.179 ? -30 : 30; + const iconColor = `rgb(${Math.clamp(rgb[0] + delta, 0, 255)}, ${Math.clamp(rgb[1] + delta, 0, 255)}, ${Math.clamp(rgb[2] + delta, 0, 255)})`; + const textColor = L > 0.179 ? '#000000' : '#ffffff'; + + this.body.set_style(`background-color: ${this.dbItem.content};`); + this.icon.set_style(`color: ${iconColor};`); + this.label.set_style(`color: ${textColor}; font-family: ${metadataFontFamily}; font-size: ${metadataFontSize}px;`); + } + + private calculateChannel(c: number) { + c /= 255.0; + if (c <= 0.04045) { + return c / 12.92; + } else { + return Math.pow((c + 0.055) / 1.055, 2.4); + } } private setClipboardContent(): void { diff --git a/src/components/emojiPanoItem.ts b/src/components/emojiPanoItem.ts index ab442bd0..4a27e2a7 100644 --- a/src/components/emojiPanoItem.ts +++ b/src/components/emojiPanoItem.ts @@ -16,8 +16,6 @@ export class EmojiPanoItem extends PanoItem { constructor(ext: ExtensionBase, clipboardManager: ClipboardManager, dbItem: DBItem) { super(ext, clipboardManager, dbItem); - this.body.add_style_class_name('pano-item-body-emoji'); - this.emojiItemSettings = this.settings.get_child('emoji-item'); const emojiContainer = new St.BoxLayout({ @@ -46,17 +44,16 @@ export class EmojiPanoItem extends PanoItem { this.connect('activated', this.setClipboardContent.bind(this)); this.setStyle(); this.emojiItemSettings.connect('changed', this.setStyle.bind(this)); + this.settings.connect('changed::compact-mode', this.setStyle.bind(this)); + this.settings.connect('changed::item-size', this.setStyle.bind(this)); } private setStyle() { - const headerBgColor = this.emojiItemSettings.get_string('header-bg-color'); - const headerColor = this.emojiItemSettings.get_string('header-color'); const bodyBgColor = this.emojiItemSettings.get_string('body-bg-color'); const emojiSize = this.emojiItemSettings.get_int('emoji-size'); - this.header.set_style(`background-color: ${headerBgColor}; color: ${headerColor};`); this.body.set_style(`background-color: ${bodyBgColor};`); - this.label.set_style(`font-size: ${emojiSize}px;`); + this.label.set_style(`font-size: ${Math.min(emojiSize, this.body.height - 24)}px;`); } private setClipboardContent(): void { diff --git a/src/components/filePanoItem.ts b/src/components/filePanoItem.ts index f8b29ae4..d1d7afe6 100644 --- a/src/components/filePanoItem.ts +++ b/src/components/filePanoItem.ts @@ -14,6 +14,8 @@ export class FilePanoItem extends PanoItem { private fileList: string[]; private operation: string; private fileItemSettings: Gio.Settings; + private titleContainer: St.BoxLayout; + private copiedFilesContainer: St.BoxLayout; constructor(ext: ExtensionBase, clipboardManager: ClipboardManager, dbItem: DBItem) { super(ext, clipboardManager, dbItem); @@ -21,11 +23,38 @@ export class FilePanoItem extends PanoItem { this.fileList = JSON.parse(this.dbItem.content); this.operation = this.dbItem.metaData || 'copy'; - this.body.add_style_class_name('pano-item-body-file'); - this.fileItemSettings = this.settings.get_child('file-item'); - const container = new St.BoxLayout({ + this.titleContainer = new St.BoxLayout({ + styleClass: 'title-container', + vertical: false, + xExpand: true, + yExpand: false, + yAlign: Clutter.ActorAlign.START, + }); + + const icon = new St.Icon({ + xAlign: Clutter.ActorAlign.START, + styleClass: 'title-icon', + }); + + if (this.operation === FileOperation.CUT) { + icon.iconName = 'edit-cut-symbolic'; + } else { + icon.gicon = Gio.icon_new_for_string(`${ext.path}/icons/hicolor/scalable/actions/paper-filled-symbolic.svg`); + } + + const label = new St.Label({ + text: this.fileList.length > 1 ? `${this.fileList.length} files` : `${this.fileList.length} file`, + styleClass: 'title-label', + xAlign: Clutter.ActorAlign.FILL, + xExpand: true, + }); + + this.titleContainer.add_child(icon); + this.titleContainer.add_child(label); + + this.copiedFilesContainer = new St.BoxLayout({ styleClass: 'copied-files-container', ...orientationCompatibility(true), xExpand: true, @@ -33,12 +62,47 @@ export class FilePanoItem extends PanoItem { yAlign: Clutter.ActorAlign.FILL, }); + // Check for the common parent directory for all files + const commonDirectory = this.fileList + .map((f) => { + const items = f.split('://').filter((c) => !!c); + return decodeURIComponent(items[items.length - 1]!).split('/'); + }) + .reduce((prev, cur) => { + for (let i = 0; i < Math.min(prev.length, cur.length); i++) { + if (prev[i] !== cur[i]) { + return prev.slice(0, i); + } + } + + // Two files are the same + if (prev.length === cur.length) { + return prev.slice(0, prev.length - 1); + } + + // One file/directory is inside of the other directory + return prev.length < cur.length ? prev : cur; + }) + .join('/'); + + if (this.fileList.length > 1) { + const directoryLabel = new St.Label({ + text: commonDirectory, + styleClass: 'top-level-directory', + xAlign: Clutter.ActorAlign.FILL, + xExpand: true, + }); + directoryLabel.clutterText.ellipsize = Pango.EllipsizeMode.MIDDLE; + + this.copiedFilesContainer.add_child(directoryLabel); + } + this.fileList .map((f) => { const items = f.split('://').filter((c) => !!c); return decodeURIComponent(items[items.length - 1]!); }) - .forEach((uri) => { + .forEach((uri, i) => { const bl = new St.BoxLayout({ ...orientationCompatibility(false), styleClass: 'copied-file-name', @@ -47,26 +111,36 @@ export class FilePanoItem extends PanoItem { clipToAllocation: true, yAlign: Clutter.ActorAlign.FILL, }); - bl.add_child( - new St.Icon({ - iconName: this.operation === FileOperation.CUT ? 'edit-cut-symbolic' : 'edit-copy-symbolic', - xAlign: Clutter.ActorAlign.START, - iconSize: 14, - styleClass: 'file-icon', - }), - ); + + const iconName = i < this.fileList.length - 1 ? 'file-tree-middle' : 'file-tree-end'; + const icon = new St.Icon({ + gicon: Gio.icon_new_for_string(`${ext.path}/icons/hicolor/scalable/actions/${iconName}-symbolic.svg`), + styleClass: 'file-tree-icon', + xAlign: Clutter.ActorAlign.START, + xExpand: false, + }); + const uriLabel = new St.Label({ - text: uri, - styleClass: 'pano-item-body-file-name-label', + text: this.fileList.length == 1 ? uri : uri.substring(commonDirectory.length + 1), + styleClass: 'file-label', xAlign: Clutter.ActorAlign.FILL, + yAlign: Clutter.ActorAlign.CENTER, xExpand: true, }); + uriLabel.clutterText.ellipsize = Pango.EllipsizeMode.MIDDLE; + if (this.fileList.length == 1) { + uriLabel.clutterText.lineWrap = true; + } else { + bl.add_child(icon); + } + bl.add_child(uriLabel); - container.add_child(bl); + this.copiedFilesContainer.add_child(bl); }); - this.body.add_child(container); + this.body.add_child(this.titleContainer); + this.body.add_child(this.copiedFilesContainer); this.connect('activated', this.setClipboardContent.bind(this)); this.setStyle(); @@ -74,16 +148,21 @@ export class FilePanoItem extends PanoItem { } private setStyle() { - const headerBgColor = this.fileItemSettings.get_string('header-bg-color'); - const headerColor = this.fileItemSettings.get_string('header-color'); const bodyBgColor = this.fileItemSettings.get_string('body-bg-color'); + const titleColor = this.fileItemSettings.get_string('title-color'); + const titleFontFamily = this.fileItemSettings.get_string('title-font-family'); + const titleFontSize = this.fileItemSettings.get_int('title-font-size'); const bodyColor = this.fileItemSettings.get_string('body-color'); const bodyFontFamily = this.fileItemSettings.get_string('body-font-family'); const bodyFontSize = this.fileItemSettings.get_int('body-font-size'); - this.header.set_style(`background-color: ${headerBgColor}; color: ${headerColor};`); - this.body.set_style( - `background-color: ${bodyBgColor}; color: ${bodyColor}; font-family: ${bodyFontFamily}; font-size: ${bodyFontSize}px;`, + this.body.set_style(`background-color: ${bodyBgColor};`); + + this.titleContainer.set_style( + `color: ${titleColor}; font-family: ${titleFontFamily}; font-size: ${titleFontSize}px;`, + ); + this.copiedFilesContainer.set_style( + `color: ${bodyColor}; font-family: ${bodyFontFamily}; font-size: ${bodyFontSize}px`, ); } diff --git a/src/components/imagePanoItem.ts b/src/components/imagePanoItem.ts index 48a41b52..153ff90e 100644 --- a/src/components/imagePanoItem.ts +++ b/src/components/imagePanoItem.ts @@ -1,25 +1,16 @@ -import Clutter from '@girs/clutter-16'; import Gio from '@girs/gio-2.0'; import type { ExtensionBase } from '@girs/gnome-shell/dist/extensions/sharedInternals'; -import St from '@girs/st-16'; import { PanoItem } from '@pano/components/panoItem'; import { ClipboardContent, ClipboardManager, ContentType } from '@pano/utils/clipboardManager'; import { DBItem } from '@pano/utils/db'; import { registerGObjectClass } from '@pano/utils/gjs'; import { getImagesPath } from '@pano/utils/shell'; -import { orientationCompatibility } from '@pano/utils/shell_compatibility'; -import prettyBytes from 'pretty-bytes'; const NO_IMAGE_FOUND_FILE_NAME = 'no-image-found.svg'; @registerGObjectClass export class ImagePanoItem extends PanoItem { private imageItemSettings: Gio.Settings; - private metaContainer: St.BoxLayout; - private resolutionTitle: St.Label; - private resolutionValue: St.Label; - private sizeLabel: St.Label; - private sizeValue: St.Label; private ext: ExtensionBase; constructor(ext: ExtensionBase, clipboardManager: ClipboardManager, dbItem: DBItem) { @@ -27,121 +18,25 @@ export class ImagePanoItem extends PanoItem { this.ext = ext; - this.body.add_style_class_name('pano-item-body-image'); - this.imageItemSettings = this.settings.get_child('image-item'); - const { width, height, size }: { width: number; height: number; size: number } = JSON.parse( - dbItem.metaData || '{}', - ); - - this.metaContainer = new St.BoxLayout({ - styleClass: 'pano-item-body-meta-container', - ...orientationCompatibility(true), - xExpand: true, - yExpand: true, - yAlign: Clutter.ActorAlign.END, - xAlign: Clutter.ActorAlign.FILL, - }); - - const resolutionContainer = new St.BoxLayout({ - ...orientationCompatibility(false), - xExpand: true, - yAlign: Clutter.ActorAlign.FILL, - xAlign: Clutter.ActorAlign.FILL, - styleClass: 'pano-item-body-image-resolution-container', - }); - - this.resolutionTitle = new St.Label({ - text: 'Resolution', - xAlign: Clutter.ActorAlign.START, - xExpand: true, - styleClass: 'pano-item-body-image-meta-title', - }); - this.resolutionValue = new St.Label({ - text: `${width} x ${height}`, - xAlign: Clutter.ActorAlign.END, - xExpand: false, - styleClass: 'pano-item-body-image-meta-value', - }); - resolutionContainer.add_child(this.resolutionTitle); - resolutionContainer.add_child(this.resolutionValue); - - const sizeContainer = new St.BoxLayout({ - ...orientationCompatibility(false), - xExpand: true, - yAlign: Clutter.ActorAlign.FILL, - xAlign: Clutter.ActorAlign.FILL, - styleClass: 'pano-item-body-image-size-container', - }); - - this.sizeLabel = new St.Label({ - text: 'Size', - xAlign: Clutter.ActorAlign.START, - xExpand: true, - styleClass: 'pano-item-body-image-meta-title', - }); - this.sizeValue = new St.Label({ - text: prettyBytes(size), - xAlign: Clutter.ActorAlign.END, - xExpand: false, - styleClass: 'pano-item-body-image-meta-value', - }); - sizeContainer.add_child(this.sizeLabel); - sizeContainer.add_child(this.sizeValue); - - this.metaContainer.add_child(resolutionContainer); - this.metaContainer.add_child(sizeContainer); - this.metaContainer.add_constraint( - new Clutter.AlignConstraint({ - source: this, - alignAxis: Clutter.AlignAxis.Y_AXIS, - factor: 0.001, - }), - ); - - this.body.add_child(this.metaContainer); - this.connect('activated', this.setClipboardContent.bind(this)); this.setStyle(); this.imageItemSettings.connect('changed', this.setStyle.bind(this)); } private setStyle() { - const headerBgColor = this.imageItemSettings.get_string('header-bg-color'); - const headerColor = this.imageItemSettings.get_string('header-color'); const bodyBgColor = this.imageItemSettings.get_string('body-bg-color'); - const metadataBgColor = this.imageItemSettings.get_string('metadata-bg-color'); - const metadataColor = this.imageItemSettings.get_string('metadata-color'); - const metadataFontFamily = this.imageItemSettings.get_string('metadata-font-family'); - const metadataFontSize = this.imageItemSettings.get_int('metadata-font-size'); let imageFilePath = `file://${getImagesPath(this.ext)}/${this.dbItem.content}.png`; - let backgroundSize = 'contain'; const imageFile = Gio.File.new_for_uri(imageFilePath); if (!imageFile.query_exists(null)) { imageFilePath = `file://${this.ext.path}/images/${NO_IMAGE_FOUND_FILE_NAME}`; - backgroundSize = 'cover'; } this.body.set_style( - `background-color: ${bodyBgColor}; background-image: url(${imageFilePath}); background-size: ${backgroundSize};`, - ); - - this.header.set_style(`background-color: ${headerBgColor}; color: ${headerColor};`); - this.resolutionTitle.set_style( - `color: ${metadataColor}; font-family: ${metadataFontFamily}; font-size: ${metadataFontSize}px;`, + `background-color: ${bodyBgColor}; background-image: url(${imageFilePath}); background-size: cover;`, ); - this.resolutionValue.set_style( - `color: ${metadataColor}; font-family: ${metadataFontFamily}; font-size: ${metadataFontSize}px; font-weight: bold;`, - ); - this.sizeLabel.set_style( - `color: ${metadataColor}; font-family: ${metadataFontFamily}; font-size: ${metadataFontSize}px;`, - ); - this.sizeValue.set_style( - `color: ${metadataColor}; font-family: ${metadataFontFamily}; font-size: ${metadataFontSize}px; font-weight: bold;`, - ); - this.metaContainer.set_style(`background-color: ${metadataBgColor};`); } private setClipboardContent(): void { @@ -157,11 +52,6 @@ export class ImagePanoItem extends PanoItem { return; } - this.clipboardManager.setContent( - new ClipboardContent({ - type: ContentType.IMAGE, - value: data, - }), - ); + this.clipboardManager.setContent(new ClipboardContent({ type: ContentType.IMAGE, value: data })); } } diff --git a/src/components/linkPanoItem.ts b/src/components/linkPanoItem.ts index 2545b5ff..0ff4ce48 100644 --- a/src/components/linkPanoItem.ts +++ b/src/components/linkPanoItem.ts @@ -16,6 +16,7 @@ const DEFAULT_LINK_PREVIEW_IMAGE_NAME = 'link-preview.svg'; export class LinkPanoItem extends PanoItem { private linkItemSettings: Gio.Settings; private metaContainer: St.BoxLayout; + private imageContainer: St.BoxLayout; private titleLabel: St.Label; private descriptionLabel: St.Label; private linkLabel: St.Label; @@ -41,10 +42,8 @@ export class LinkPanoItem extends PanoItem { descriptionText = decodeURI(description); } - this.body.add_style_class_name('pano-item-body-link'); - this.metaContainer = new St.BoxLayout({ - styleClass: 'pano-item-body-meta-container', + styleClass: 'meta-container', ...orientationCompatibility(true), xExpand: true, yExpand: false, @@ -52,28 +51,19 @@ export class LinkPanoItem extends PanoItem { xAlign: Clutter.ActorAlign.FILL, }); - this.titleLabel = new St.Label({ - text: titleText, - styleClass: 'link-title-label', - }); + this.titleLabel = new St.Label({ text: titleText, styleClass: 'link-title-label' }); - this.descriptionLabel = new St.Label({ - text: descriptionText, - styleClass: 'link-description-label', - }); + this.descriptionLabel = new St.Label({ text: descriptionText, styleClass: 'link-description-label' }); this.descriptionLabel.clutterText.singleLineMode = true; - this.linkLabel = new St.Label({ - text: this.dbItem.content, - styleClass: 'link-label', - }); + this.linkLabel = new St.Label({ text: this.dbItem.content, styleClass: 'link-label' }); let imageFilePath = `file:///${ext.path}/images/${DEFAULT_LINK_PREVIEW_IMAGE_NAME}`; if (image && Gio.File.new_for_uri(`file://${getCachePath(ext)}/${image}.png`).query_exists(null)) { imageFilePath = `file://${getCachePath(ext)}/${image}.png`; } - const imageContainer = new St.BoxLayout({ + this.imageContainer = new St.BoxLayout({ ...orientationCompatibility(true), xExpand: true, yExpand: true, @@ -87,17 +77,22 @@ export class LinkPanoItem extends PanoItem { this.metaContainer.add_child(this.descriptionLabel); this.metaContainer.add_child(this.linkLabel); - this.body.add_child(imageContainer); + if (this.settings.get_boolean('compact-mode')) { + this.body.vertical = false; + this.imageContainer.width = this.body.height * 1.618; + } + + this.body.add_child(this.imageContainer); this.body.add_child(this.metaContainer); this.connect('activated', this.setClipboardContent.bind(this)); + this.setCompactMode(); + this.settings.connect('changed::compact-mode', this.setCompactMode.bind(this)); + this.settings.connect('changed::item-size', this.setCompactMode.bind(this)); this.setStyle(); this.linkItemSettings.connect('changed', this.setStyle.bind(this)); - const openLinkIcon = new St.Icon({ - iconName: 'web-browser-symbolic', - styleClass: 'pano-item-action-button-icon', - }); + const openLinkIcon = new St.Icon({ iconName: 'web-browser-symbolic', styleClass: 'pano-item-action-button-icon' }); const openLinkButton = new St.Button({ styleClass: 'pano-item-action-button pano-item-open-link-button', @@ -111,23 +106,31 @@ export class LinkPanoItem extends PanoItem { }); if (this.settings.get_boolean('open-links-in-browser')) { - this.header.actionContainer.insert_child_at_index(openLinkButton, 0); + this.overlay.actionContainer.insert_child_at_index(openLinkButton, 0); } this.settings.connect('changed::open-links-in-browser', () => { - if (this.header.actionContainer.get_child_at_index(0) === openLinkButton) { - this.header.actionContainer.remove_child(openLinkButton); + if (this.overlay.actionContainer.get_child_at_index(0) === openLinkButton) { + this.overlay.actionContainer.remove_child(openLinkButton); } if (this.settings.get_boolean('open-links-in-browser')) { - this.header.actionContainer.insert_child_at_index(openLinkButton, 0); + this.overlay.actionContainer.insert_child_at_index(openLinkButton, 0); } }); } + private setCompactMode() { + if (this.settings.get_boolean('compact-mode')) { + this.body.vertical = false; + this.imageContainer.width = this.body.height * 1.618; + } else { + this.body.vertical = true; + this.imageContainer.width = -1; + } + } + private setStyle() { - const headerBgColor = this.linkItemSettings.get_string('header-bg-color'); - const headerColor = this.linkItemSettings.get_string('header-color'); const bodyBgColor = this.linkItemSettings.get_string('body-bg-color'); const metadataBgColor = this.linkItemSettings.get_string('metadata-bg-color'); const metadataTitleColor = this.linkItemSettings.get_string('metadata-title-color'); @@ -140,7 +143,6 @@ export class LinkPanoItem extends PanoItem { const metadataDescriptionFontSize = this.linkItemSettings.get_int('metadata-description-font-size'); const metadataLinkFontSize = this.linkItemSettings.get_int('metadata-link-font-size'); - this.header.set_style(`background-color: ${headerBgColor}; color: ${headerColor};`); this.body.set_style(`background-color: ${bodyBgColor};`); this.metaContainer.set_style(`background-color: ${metadataBgColor};`); this.titleLabel.set_style( @@ -155,12 +157,7 @@ export class LinkPanoItem extends PanoItem { } private setClipboardContent(): void { - this.clipboardManager.setContent( - new ClipboardContent({ - type: ContentType.TEXT, - value: this.dbItem.content, - }), - ); + this.clipboardManager.setContent(new ClipboardContent({ type: ContentType.TEXT, value: this.dbItem.content })); } override vfunc_key_press_event(event: Clutter.Event): boolean { diff --git a/src/components/panoItem.ts b/src/components/panoItem.ts index 2f8cf324..6c6c58a2 100644 --- a/src/components/panoItem.ts +++ b/src/components/panoItem.ts @@ -7,7 +7,7 @@ import Graphene from '@girs/graphene-1.0'; import Meta from '@girs/meta-16'; import Shell from '@girs/shell-16'; import St from '@girs/st-16'; -import { PanoItemHeader } from '@pano/components/panoItemHeader'; +import { PanoItemOverlay } from '@pano/components/panoItemOverlay'; import { ClipboardManager } from '@pano/utils/clipboardManager'; import { DBItem } from '@pano/utils/db'; import { registerGObjectClass, SignalRepresentationType, SignalsDefinition } from '@pano/utils/gjs'; @@ -41,9 +41,9 @@ export class PanoItem extends St.BoxLayout { }, }; - protected header: PanoItemHeader; private timeoutId: number | undefined; protected body: St.BoxLayout; + protected overlay: PanoItemOverlay; protected clipboardManager: ClipboardManager; public dbItem: DBItem; protected settings: Gio.Settings; @@ -58,6 +58,8 @@ export class PanoItem extends St.BoxLayout { styleClass: 'pano-item', ...orientationCompatibility(true), trackHover: true, + xExpand: false, + yExpand: false, }); this.clipboardManager = clipboardManager; @@ -120,50 +122,75 @@ export class PanoItem extends St.BoxLayout { } }); - this.header = new PanoItemHeader(ext, getPanoItemTypes(ext)[dbItem.itemType], dbItem.copyDate); - this.header.setFavorite(this.dbItem.isFavorite); - this.header.connect('on-remove', () => { + this.add_style_class_name(`pano-item-${this.dbItem.itemType.toLowerCase()}`); + + this.body = new St.BoxLayout({ + styleClass: 'pano-item-body', + clipToAllocation: true, + ...orientationCompatibility(true), + xAlign: Clutter.ActorAlign.FILL, + yAlign: Clutter.ActorAlign.FILL, + xExpand: true, + yExpand: true, + }); + + this.overlay = new PanoItemOverlay(getPanoItemTypes(ext)[dbItem.itemType]); + this.overlay.setFavorite(this.dbItem.isFavorite); + this.overlay.connect('on-remove', () => { this.emit('on-remove', JSON.stringify(this.dbItem)); return Clutter.EVENT_PROPAGATE; }); - this.header.connect('on-favorite', () => { + this.overlay.connect('on-favorite', () => { this.dbItem = { ...this.dbItem, isFavorite: !this.dbItem.isFavorite }; this.emit('on-favorite', JSON.stringify(this.dbItem)); return Clutter.EVENT_PROPAGATE; }); this.connect('on-favorite', () => { - this.header.setFavorite(this.dbItem.isFavorite); + this.overlay.setFavorite(this.dbItem.isFavorite); return Clutter.EVENT_PROPAGATE; }); - this.body = new St.BoxLayout({ - styleClass: 'pano-item-body', - clipToAllocation: true, - ...orientationCompatibility(true), - xAlign: Clutter.ActorAlign.FILL, - yAlign: Clutter.ActorAlign.FILL, - xExpand: true, - yExpand: true, - }); - - this.add_child(this.header); this.add_child(this.body); + this.add_child(this.overlay); + + this.overlay.add_constraint( + new Clutter.BindConstraint({ + source: this.body, + coordinate: Clutter.BindCoordinate.Y, + }), + ); const themeContext = St.ThemeContext.get_for_stage(Shell.Global.get().get_stage()); + if (this.settings.get_boolean('compact-mode')) { + this.add_style_class_name('compact'); + } + themeContext.connect('notify::scale-factor', () => { this.setBodyDimensions(); }); this.settings.connect('changed::item-size', () => { this.setBodyDimensions(); }); + this.settings.connect('changed::compact-mode', () => { + if (this.settings.get_boolean('compact-mode')) { + this.add_style_class_name('compact'); + } else { + this.remove_style_class_name('compact'); + } + this.setBodyDimensions(); + }); this.settings.connect('changed::window-position', () => { this.setBodyDimensions(); }); this.setBodyDimensions(); + + this.setVisible(); + this.connect('style-changed', this.setVisible.bind(this)); + this.settings.connect('changed::show-controls-on-hover', this.setVisible.bind(this)); } private setBodyDimensions() { @@ -176,8 +203,21 @@ export class PanoItem extends St.BoxLayout { this.set_y_align(Clutter.ActorAlign.FILL); } const { scaleFactor } = St.ThemeContext.get_for_stage(Shell.Global.get().get_stage()); - this.body.set_height(this.settings.get_int('item-size') * scaleFactor - this.header.get_height()); + const mult = this.settings.get_boolean('compact-mode') ? 0.3 : 0.7; + const height = this.settings.get_int('item-size') * mult; + + this.set_height(height * scaleFactor); this.body.set_width(this.settings.get_int('item-size') * scaleFactor); + this.body.set_height((height - 8) * scaleFactor); + this.overlay.set_height((height - 8) * scaleFactor); + } + + private setVisible() { + if (this.hover || this.selected) { + this.overlay.setVisibility(true); + } else { + this.overlay.setVisibility(!this.settings.get_boolean('show-controls-on-hover')); + } } private setSelected(selected: boolean) { @@ -190,6 +230,7 @@ export class PanoItem extends St.BoxLayout { } this.selected = selected; } + override vfunc_key_press_event(event: Clutter.Event): boolean { if ( event.get_key_symbol() === Clutter.KEY_Return || @@ -236,7 +277,7 @@ export class PanoItem extends St.BoxLayout { GLib.Source.remove(this.timeoutId); this.timeoutId = undefined; } - this.header.destroy(); + this.overlay.destroy(); super.destroy(); } } diff --git a/src/components/panoItemHeader.ts b/src/components/panoItemHeader.ts deleted file mode 100644 index 46f50de0..00000000 --- a/src/components/panoItemHeader.ts +++ /dev/null @@ -1,209 +0,0 @@ -import Clutter from '@girs/clutter-16'; -import Gio from '@girs/gio-2.0'; -import GLib from '@girs/glib-2.0'; -import type { ExtensionBase } from '@girs/gnome-shell/dist/extensions/sharedInternals'; -import GObject from '@girs/gobject-2.0'; -import Shell from '@girs/shell-16'; -import St from '@girs/st-16'; -import { registerGObjectClass, SignalsDefinition } from '@pano/utils/gjs'; -import { ICON_PACKS, IPanoItemType } from '@pano/utils/panoItemType'; -import { getCurrentExtensionSettings } from '@pano/utils/shell'; -import { orientationCompatibility } from '@pano/utils/shell_compatibility'; -import { Locale } from 'date-fns'; -import formatDistanceToNow from 'date-fns/formatDistanceToNow'; -import * as dateLocale from 'date-fns/locale'; - -const langs = GLib.get_language_names_with_category('LC_MESSAGES').map( - (l) => l.replaceAll('_', '').replaceAll('-', '').split('.')[0], -); -const localeKey = Object.keys(dateLocale).find((key) => langs.includes(key)); - -export type PanoItemHeaderSignalType = 'on-remove' | 'on-favorite'; -interface PanoItemHeaderSignals extends SignalsDefinition { - 'on-remove': Record; - 'on-favorite': Record; -} - -type FormatOptions = { - includeSeconds?: boolean; - addSuffix?: boolean; - locale?: Locale; -}; - -@registerGObjectClass -export class PanoItemHeader extends St.BoxLayout { - static metaInfo: GObject.MetaInfo, Record, PanoItemHeaderSignals> = { - GTypeName: 'PanoItemHeader', - Signals: { - 'on-remove': {}, - 'on-favorite': {}, - }, - }; - - private dateUpdateIntervalId: any; - private favoriteButton: St.Button; - private settings: Gio.Settings; - private titleLabel: St.Label; - private dateLabel: St.Label; - actionContainer: St.BoxLayout; - titleContainer: St.BoxLayout; - iconContainer: St.BoxLayout; - itemType: IPanoItemType; - - constructor(ext: ExtensionBase, itemType: IPanoItemType, date: Date) { - super({ - styleClass: `pano-item-header pano-item-header-${itemType.classSuffix}`, - ...orientationCompatibility(false), - }); - this.itemType = itemType; - this.titleContainer = new St.BoxLayout({ - styleClass: 'pano-item-title-container', - ...orientationCompatibility(true), - xExpand: true, - }); - this.iconContainer = new St.BoxLayout({ - styleClass: 'pano-icon-container', - }); - - this.settings = getCurrentExtensionSettings(ext); - - const themeContext = St.ThemeContext.get_for_stage(Shell.Global.get().get_stage()); - - this.set_height(56 * themeContext.scaleFactor); - - themeContext.connect('notify::scale-factor', () => { - this.set_height(56 * themeContext.scaleFactor); - }); - - const icon = new St.Icon({ - styleClass: 'pano-item-title-icon', - gicon: Gio.icon_new_for_string( - `${ext.path}/icons/hicolor/scalable/actions/${ICON_PACKS[this.settings.get_uint('icon-pack')]}-${ - itemType.iconPath - }`, - ), - }); - this.iconContainer.add_child(icon); - this.settings.connect('changed::icon-pack', () => { - icon.set_gicon( - Gio.icon_new_for_string( - `${ext.path}/icons/hicolor/scalable/actions/${ICON_PACKS[this.settings.get_uint('icon-pack')]}-${ - itemType.iconPath - }`, - ), - ); - }); - - this.titleLabel = new St.Label({ - text: itemType.title, - styleClass: 'pano-item-title', - xExpand: true, - }); - - this.titleContainer.add_child(this.titleLabel); - - const options: FormatOptions = { - addSuffix: true, - }; - - if (localeKey !== undefined) { - const locale = (dateLocale as Record)[localeKey]; - if (locale) { - options.locale = locale; - } - } - - this.dateLabel = new St.Label({ - text: formatDistanceToNow(date, options), - styleClass: 'pano-item-date', - xExpand: true, - yExpand: true, - xAlign: Clutter.ActorAlign.FILL, - yAlign: Clutter.ActorAlign.CENTER, - }); - - this.dateUpdateIntervalId = GLib.timeout_add_seconds(GLib.PRIORITY_DEFAULT, 60, () => { - this.dateLabel.set_text(formatDistanceToNow(date, options)); - - return GLib.SOURCE_CONTINUE; - }); - - this.titleContainer.add_child(this.dateLabel); - - this.actionContainer = new St.BoxLayout({ - styleClass: 'pano-item-actions', - xExpand: true, - yExpand: true, - xAlign: Clutter.ActorAlign.END, - yAlign: Clutter.ActorAlign.START, - }); - - const favoriteIcon = new St.Icon({ - styleClass: 'pano-item-action-button-icon', - iconName: 'starred-symbolic', - }); - - this.favoriteButton = new St.Button({ - styleClass: 'pano-item-action-button pano-item-favorite-button', - child: favoriteIcon, - }); - - this.favoriteButton.connect('clicked', () => { - this.emit('on-favorite'); - return Clutter.EVENT_PROPAGATE; - }); - - const removeIcon = new St.Icon({ - styleClass: 'pano-item-action-button-icon pano-item-action-button-remove-icon', - iconName: 'window-close-symbolic', - }); - - const removeButton = new St.Button({ - styleClass: 'pano-item-action-button pano-item-remove-button', - child: removeIcon, - }); - - removeButton.connect('clicked', () => { - this.emit('on-remove'); - return Clutter.EVENT_PROPAGATE; - }); - - this.actionContainer.add_child(this.favoriteButton); - this.actionContainer.add_child(removeButton); - - this.add_child(this.iconContainer); - this.add_child(this.titleContainer); - this.add_child(this.actionContainer); - - this.setStyle(); - this.settings.connect('changed::item-title-font-family', this.setStyle.bind(this)); - this.settings.connect('changed::item-title-font-size', this.setStyle.bind(this)); - this.settings.connect('changed::item-date-font-family', this.setStyle.bind(this)); - this.settings.connect('changed::item-date-font-size', this.setStyle.bind(this)); - } - - private setStyle() { - const itemTitleFontFamily = this.settings.get_string('item-title-font-family'); - const itemTitleFontSize = this.settings.get_int('item-title-font-size'); - const itemDateFontFamily = this.settings.get_string('item-date-font-family'); - const itemDateFontSize = this.settings.get_int('item-date-font-size'); - this.titleLabel.set_style(`font-family: ${itemTitleFontFamily}; font-size: ${itemTitleFontSize}px;`); - this.dateLabel.set_style(`font-family: ${itemDateFontFamily}; font-size: ${itemDateFontSize}px;`); - } - - setFavorite(isFavorite: boolean): void { - if (isFavorite) { - this.favoriteButton.add_style_pseudo_class('active'); - } else { - this.favoriteButton.remove_style_pseudo_class('active'); - } - } - - override destroy(): void { - if (this.dateUpdateIntervalId) { - GLib.source_remove(this.dateUpdateIntervalId); - this.dateUpdateIntervalId = null; - } - super.destroy(); - } -} diff --git a/src/components/panoItemOverlay.ts b/src/components/panoItemOverlay.ts new file mode 100644 index 00000000..57815f94 --- /dev/null +++ b/src/components/panoItemOverlay.ts @@ -0,0 +1,114 @@ +import Clutter from '@girs/clutter-16'; +import GLib from '@girs/glib-2.0'; +import GObject from '@girs/gobject-2.0'; +import St from '@girs/st-16'; +import { registerGObjectClass, SignalsDefinition } from '@pano/utils/gjs'; +import { IPanoItemType } from '@pano/utils/panoItemType'; +import { Locale } from 'date-fns'; +import * as dateLocale from 'date-fns/locale'; + +const langs = GLib.get_language_names_with_category('LC_MESSAGES').map( + (l) => l.replaceAll('_', '').replaceAll('-', '').split('.')[0], +); +const localeKey = Object.keys(dateLocale).find((key) => langs.includes(key)); + +export type PanoItemOverlaySignalType = 'on-remove' | 'on-favorite'; +interface PanoItemOverlaySignals extends SignalsDefinition { + 'on-remove': Record; + 'on-favorite': Record; +} + +type FormatOptions = { + includeSeconds?: boolean; + addSuffix?: boolean; + locale?: Locale; +}; + +@registerGObjectClass +export class PanoItemOverlay extends St.BoxLayout { + static metaInfo: GObject.MetaInfo, Record, PanoItemOverlaySignals> = { + GTypeName: 'PanoItemOverlay', + Signals: { + 'on-remove': {}, + 'on-favorite': {}, + }, + }; + + private favoriteButton: St.Button; + actionContainer: St.BoxLayout; + itemType: IPanoItemType; + + constructor(itemType: IPanoItemType) { + super({ + styleClass: `pano-item-overlay pano-item-overlay-${itemType.classSuffix}`, + vertical: false, + }); + this.itemType = itemType; + + const options: FormatOptions = { + addSuffix: true, + }; + + if (localeKey !== undefined) { + const locale = (dateLocale as Record)[localeKey]; + if (locale) { + options.locale = locale; + } + } + + this.actionContainer = new St.BoxLayout({ + styleClass: 'pano-item-actions', + xExpand: true, + yExpand: true, + xAlign: Clutter.ActorAlign.END, + yAlign: Clutter.ActorAlign.START, + }); + + const favoriteIcon = new St.Icon({ + styleClass: 'pano-item-action-button-icon', + iconName: 'view-pin-symbolic', + }); + + this.favoriteButton = new St.Button({ + styleClass: 'pano-item-action-button pano-item-favorite-button', + child: favoriteIcon, + }); + + this.favoriteButton.connect('clicked', () => { + this.emit('on-favorite'); + return Clutter.EVENT_PROPAGATE; + }); + + const removeIcon = new St.Icon({ + styleClass: 'pano-item-action-button-icon pano-item-action-button-remove-icon', + iconName: 'user-trash-symbolic', + }); + + const removeButton = new St.Button({ + styleClass: 'pano-item-action-button pano-item-remove-button', + child: removeIcon, + }); + + removeButton.connect('clicked', () => { + this.emit('on-remove'); + return Clutter.EVENT_PROPAGATE; + }); + + this.actionContainer.add_child(this.favoriteButton); + this.actionContainer.add_child(removeButton); + + this.add_child(this.actionContainer); + } + + setVisibility(isVisible: boolean): void { + this.actionContainer.visible = isVisible; + } + + setFavorite(isFavorite: boolean): void { + if (isFavorite) { + this.favoriteButton.add_style_pseudo_class('active'); + } else { + this.favoriteButton.remove_style_pseudo_class('active'); + } + } +} diff --git a/src/components/searchBox.ts b/src/components/searchBox.ts index 2bed5093..47387aed 100644 --- a/src/components/searchBox.ts +++ b/src/components/searchBox.ts @@ -72,7 +72,7 @@ export class SearchBox extends St.BoxLayout { height: 40 * themeContext.scaleFactor, trackHover: true, primaryIcon: this.createSearchEntryIcon('edit-find-symbolic', 'search-entry-icon'), - secondaryIcon: this.createSearchEntryIcon('starred-symbolic', 'search-entry-fav-icon'), + secondaryIcon: this.createSearchEntryIcon('view-pin-symbolic', 'search-entry-fav-icon'), }); themeContext.connect('notify::scale-factor', () => { diff --git a/src/components/textPanoItem.ts b/src/components/textPanoItem.ts index aef3b491..7ec01f8a 100644 --- a/src/components/textPanoItem.ts +++ b/src/components/textPanoItem.ts @@ -32,17 +32,12 @@ export class TextPanoItem extends PanoItem { } private setStyle() { - const headerBgColor = this.textItemSettings.get_string('header-bg-color'); - const headerColor = this.textItemSettings.get_string('header-color'); const bodyBgColor = this.textItemSettings.get_string('body-bg-color'); const bodyColor = this.textItemSettings.get_string('body-color'); const bodyFontFamily = this.textItemSettings.get_string('body-font-family'); const bodyFontSize = this.textItemSettings.get_int('body-font-size'); const characterLength = this.textItemSettings.get_int('char-length'); - // Set header styles - this.header.set_style(`background-color: ${headerBgColor}; color: ${headerColor};`); - // Set body styles this.body.set_style(`background-color: ${bodyBgColor}`); diff --git a/src/containers/panoWindow.ts b/src/containers/panoWindow.ts index f9dda752..0c288f54 100644 --- a/src/containers/panoWindow.ts +++ b/src/containers/panoWindow.ts @@ -46,6 +46,9 @@ export class PanoWindow extends St.BoxLayout { this.settings.connect('changed::item-size', () => { this.setWindowDimensions(themeContext.scaleFactor); }); + this.settings.connect('changed::compact-mode', () => { + this.setWindowDimensions(themeContext.scaleFactor); + }); this.settings.connect('changed::window-position', () => { this.setWindowDimensions(themeContext.scaleFactor); this.setAlignment(); @@ -106,7 +109,8 @@ export class PanoWindow extends St.BoxLayout { this.add_style_class_name('vertical'); this.set_width((this.settings.get_int('item-size') + 20) * scaleFactor); } else { - this.set_height((this.settings.get_int('item-size') + 90) * scaleFactor); + const mult = this.settings.get_boolean('compact-mode') ? 0.3 : 0.7; + this.set_height((this.settings.get_int('item-size') * mult + 70) * scaleFactor); } } diff --git a/src/prefs/customization/codeItemStyle.ts b/src/prefs/customization/codeItemStyle.ts index 2ab059ef..0d978808 100644 --- a/src/prefs/customization/codeItemStyle.ts +++ b/src/prefs/customization/codeItemStyle.ts @@ -16,26 +16,6 @@ export class CodeItemStyleRow extends ItemExpanderRow { this.settings = getCurrentExtensionSettings(ext).get_child('code-item'); - // create header background color row - this.add_row( - createColorRow( - _('Header Background Color'), - _('You can change the background color of the header'), - this.settings, - 'header-bg-color', - ), - ); - - // create header text color row - this.add_row( - createColorRow( - _('Header Text Color'), - _('You can change the text color of the header'), - this.settings, - 'header-color', - ), - ); - // create body background color row this.add_row( createColorRow( diff --git a/src/prefs/customization/colorItemStyle.ts b/src/prefs/customization/colorItemStyle.ts index 03780bd5..ad0831ec 100644 --- a/src/prefs/customization/colorItemStyle.ts +++ b/src/prefs/customization/colorItemStyle.ts @@ -16,26 +16,6 @@ export class ColorItemStyleRow extends ItemExpanderRow { this.settings = getCurrentExtensionSettings(ext).get_child('color-item'); - // create header background color row - this.add_row( - createColorRow( - _('Header Background Color'), - _('You can change the background color of the header'), - this.settings, - 'header-bg-color', - ), - ); - - // create header text color row - this.add_row( - createColorRow( - _('Header Text Color'), - _('You can change the text color of the header'), - this.settings, - 'header-color', - ), - ); - // create metadata background color row this.add_row( createColorRow( diff --git a/src/prefs/customization/commonStyleGroup.ts b/src/prefs/customization/commonStyleGroup.ts index 41891d59..fa6d6ce6 100644 --- a/src/prefs/customization/commonStyleGroup.ts +++ b/src/prefs/customization/commonStyleGroup.ts @@ -1,7 +1,13 @@ import Adw from '@girs/adw-1'; import Gio from '@girs/gio-2.0'; import type { ExtensionBase } from '@girs/gnome-shell/dist/extensions/sharedInternals'; -import { createColorRow, createDropdownRow, createFontRow, createSpinRow } from '@pano/prefs/customization/utils'; +import { + createColorRow, + createDropdownRow, + createFontRow, + createSpinRow, + createSwitchRow, +} from '@pano/prefs/customization/utils'; import { registerGObjectClass } from '@pano/utils/gjs'; import { getCurrentExtensionSettings, gettext } from '@pano/utils/shell'; @@ -27,6 +33,15 @@ export class CommonStyleGroup extends Adw.PreferencesGroup { createSpinRow(_('Item Size'), _('You can change the item size'), this.settings, 'item-size', 5, 200, 1000), ); + this.add( + createSwitchRow( + _('Compact Mode'), + _('Controls the compactness of the clipboard item.'), + this.settings, + 'compact-mode', + ), + ); + this.add( createDropdownRow( _('Window Position'), @@ -61,12 +76,6 @@ export class CommonStyleGroup extends Adw.PreferencesGroup { 'search-bar-font', ), ); - this.add( - createFontRow(_('Item Title Font'), _('You can change the font of the title'), this.settings, 'item-title-font'), - ); - this.add( - createFontRow(_('Item Date Font'), _('You can change the font of the date'), this.settings, 'item-date-font'), - ); this.add( createColorRow( _('Active Item Border Color'), @@ -83,5 +92,13 @@ export class CommonStyleGroup extends Adw.PreferencesGroup { 'hovered-item-border-color', ), ); + this.add( + createSwitchRow( + _('Show Controls on Hover'), + _('When enabled, the controls will only show on hover'), + this.settings, + 'show-controls-on-hover', + ), + ); } } diff --git a/src/prefs/customization/emojiItemStyle.ts b/src/prefs/customization/emojiItemStyle.ts index 4756b019..c26c0629 100644 --- a/src/prefs/customization/emojiItemStyle.ts +++ b/src/prefs/customization/emojiItemStyle.ts @@ -16,26 +16,6 @@ export class EmojiItemStyleRow extends ItemExpanderRow { this.settings = getCurrentExtensionSettings(ext).get_child('emoji-item'); - // create header background color row - this.add_row( - createColorRow( - _('Header Background Color'), - _('You can change the background color of the header'), - this.settings, - 'header-bg-color', - ), - ); - - // create header text color row - this.add_row( - createColorRow( - _('Header Text Color'), - _('You can change the text color of the header'), - this.settings, - 'header-color', - ), - ); - // create body background color row this.add_row( createColorRow( diff --git a/src/prefs/customization/fileItemStyle.ts b/src/prefs/customization/fileItemStyle.ts index 8585a050..4999f8cd 100644 --- a/src/prefs/customization/fileItemStyle.ts +++ b/src/prefs/customization/fileItemStyle.ts @@ -16,34 +16,29 @@ export class FileItemStyleRow extends ItemExpanderRow { this.settings = getCurrentExtensionSettings(ext).get_child('file-item'); - // create header background color row + // create body background color row this.add_row( createColorRow( - _('Header Background Color'), - _('You can change the background color of the header'), + _('Body Background Color'), + _('You can change the background color of the body'), this.settings, - 'header-bg-color', + 'body-bg-color', ), ); - // create header text color row + // create title text color row this.add_row( createColorRow( - _('Header Text Color'), - _('You can change the text color of the header'), + _('Title Text Color'), + _('You can change the text color of the title'), this.settings, - 'header-color', + 'title-color', ), ); - // create body background color row + // create title font row this.add_row( - createColorRow( - _('Body Background Color'), - _('You can change the background color of the body'), - this.settings, - 'body-bg-color', - ), + createFontRow(_('Title Font'), _('You can change the font of the title'), this.settings, 'title-font'), ); // create body text color row diff --git a/src/prefs/customization/imageItemStyle.ts b/src/prefs/customization/imageItemStyle.ts index 2f010f61..0def2ad7 100644 --- a/src/prefs/customization/imageItemStyle.ts +++ b/src/prefs/customization/imageItemStyle.ts @@ -15,26 +15,6 @@ export class ImageItemStyleRow extends ItemExpanderRow { this.settings = getCurrentExtensionSettings(ext).get_child('image-item'); - // create header background color row - this.add_row( - createColorRow( - _('Header Background Color'), - _('You can change the background color of the header'), - this.settings, - 'header-bg-color', - ), - ); - - // create header text color row - this.add_row( - createColorRow( - _('Header Text Color'), - _('You can change the text color of the header'), - this.settings, - 'header-color', - ), - ); - // create body background color row this.add_row( createColorRow( diff --git a/src/prefs/customization/linkItemStyle.ts b/src/prefs/customization/linkItemStyle.ts index af836da8..00cf95e4 100644 --- a/src/prefs/customization/linkItemStyle.ts +++ b/src/prefs/customization/linkItemStyle.ts @@ -16,26 +16,6 @@ export class LinkItemStyleRow extends ItemExpanderRow { this.settings = getCurrentExtensionSettings(ext).get_child('link-item'); - // create header background color row - this.add_row( - createColorRow( - _('Header Background Color'), - _('You can change the background color of the header'), - this.settings, - 'header-bg-color', - ), - ); - - // create header text color row - this.add_row( - createColorRow( - _('Header Text Color'), - _('You can change the text color of the header'), - this.settings, - 'header-color', - ), - ); - // create body background color row this.add_row( createColorRow( diff --git a/src/prefs/customization/textItemStyle.ts b/src/prefs/customization/textItemStyle.ts index a2edead3..e172398f 100644 --- a/src/prefs/customization/textItemStyle.ts +++ b/src/prefs/customization/textItemStyle.ts @@ -16,26 +16,6 @@ export class TextItemStyleRow extends ItemExpanderRow { this.settings = getCurrentExtensionSettings(ext).get_child('text-item'); - // create header background color row - this.add_row( - createColorRow( - _('Header Background Color'), - _('You can change the background color of the header'), - this.settings, - 'header-bg-color', - ), - ); - - // create header text color row - this.add_row( - createColorRow( - _('Header Text Color'), - _('You can change the text color of the header'), - this.settings, - 'header-color', - ), - ); - // create body background color row this.add_row( createColorRow( diff --git a/src/prefs/customization/utils.ts b/src/prefs/customization/utils.ts index f32d226f..0fae0904 100644 --- a/src/prefs/customization/utils.ts +++ b/src/prefs/customization/utils.ts @@ -4,6 +4,26 @@ import Gio from '@girs/gio-2.0'; import Gtk4 from '@girs/gtk-4.0'; import Pango from '@girs/pango-1.0'; +export const createSwitchRow = (title: string, subtitle: string, settings: Gio.Settings, schemaKey: string) => { + const switchRow = new Adw.ActionRow({ + title, + subtitle, + }); + + const switchControl = new Gtk4.Switch({ + active: settings.get_boolean(schemaKey), + valign: Gtk4.Align.CENTER, + halign: Gtk4.Align.CENTER, + }); + + settings.bind(schemaKey, switchControl, 'active', Gio.SettingsBindFlags.DEFAULT); + + switchRow.add_suffix(switchControl); + switchRow.set_activatable_widget(switchControl); + + return switchRow; +}; + export const createColorRow = (title: string, subtitle: string, settings: Gio.Settings, schemaKey: string) => { const colorRow = new Adw.ActionRow({ title, diff --git a/src/styles/stylesheet.css b/src/styles/stylesheet.css index 6936feab..c4cd4115 100644 --- a/src/styles/stylesheet.css +++ b/src/styles/stylesheet.css @@ -1,3 +1,4 @@ +/* Window */ .pano-window.incognito { background-image: url('./images/incognito-mode.svg'); background-size: 36px; @@ -27,170 +28,173 @@ color: #f6d32d; } +.pano-monitor-box { + background-color: transparent !important; +} + +/* Item */ .pano-item { - border-radius: 11px; + border-radius: 16px; margin: 6px; border: 4px solid transparent; } -.pano-item-header { - border-radius: 6px 6px 0px 0px; - padding: 5px; +/* Overlay */ +.pano-item-overlay { + border-radius: 12px; + padding: 4px; } -.pano-item-body { - border-radius: 0px 0px 6px 6px; +.pano-item-actions { + padding: 2px; + background-color: #303030; + border-radius: 999px; } -.pano-item-body-code-content { - margin: 12px; - tab-size: 2; +.pano-item-action-button { + margin-left: 5px; + width: 20px; + height: 20px; + border-radius: 999px; + background-color: #454545; + color: white; } -.pano-item-body-link { - padding: 0px; +.pano-item-action-button:first-child { + margin-left: 0; } -.pano-item-body-link .image-container { - background-size: cover; - border-radius: 1px 1px 0px 0px; +.pano-item-action-button-icon { + margin: 4px; } -.pano-item-body-text-content { - margin: 12px; - tab-size: 2; +.pano-item-action-button-remove-icon { + width: 14px; + height: 14px; + margin: 4px; } -.pano-item-body-emoji .emoji-container { - border-radius: 0px 0px 6px 6px; +.pano-item-open-link-button:hover, +.pano-item-open-link-button:active { + background-color: #3584e4; } -.pano-item-body-emoji-content { - font-family: sans-serif; - tab-size: 2; - text-shadow: 0 0 5px #000; +.pano-item-favorite-button:active { + color: #f6d32d; } -.pano-item-body-color .color-container { - border-radius: 0px 0px 6px 6px; +.pano-item-favorite-button:hover { + background-color: #f6d32d; + color: white!important; } -.pano-item-body-color .color-label { - border-radius: 999px; - padding: 10px; +.pano-item-remove-button:hover, +.pano-item-remove-button:active { + background-color: #c01c28; } -.pano-item-title-container { - margin-left: 5px; +/* Body */ +.pano-item-body { + border-radius: 12px; } -.pano-item-title-icon { - height: 32px; - width: 32px; - margin: 2px; +/* Code Item */ +.pano-item-code .pano-item-body .pano-item-body-code-content { + margin: 12px; + tab-size: 2; } -.pano-item-title { - padding: 0px; - margin: 0px; +.pano-item-code .pano-item-overlay { + background-gradient-start: transparent; + background-gradient-end: rgba(0, 0, 0, 0.3); + background-gradient-direction: vertical; } -.pano-item-date { +/* Link Item */ +.pano-item-link .pano-item-body { padding: 0px; - margin: 0px; } -.pano-item-body-file .file-icon { - padding: 0 4px; -} - -.copied-files-container { - margin-right: 10px; - margin-left: 10px; - margin-top: 5px; +.pano-item-link .pano-item-body .image-container { + background-size: cover; + border-radius: 12px 12px 0px 0px; } -.pano-item-body-file .copied-file-name:first-child { - border-top: 0px !important; +.pano-item-link.compact .pano-item-body .image-container { + border-radius: 12px 0px 0px 12px; } -.pano-item-body-file .copied-file-name { - margin-bottom: 2px; - border-top: 1px solid rgba(63, 63, 63, 0.2); +.pano-item-link .pano-item-body .meta-container { + padding: 10px; + border-radius: 0px 0px 12px 12px; } -.pano-item-body-meta-container { - height: 50px; - padding: 10px; - border-radius: 0px 0px 5px 5px; +.pano-item-link.compact .pano-item-body .meta-container { + border-radius: 0px 12px 12px 0px; } -.pano-item-body-image-resolution-container { - border-bottom: 1px solid rgba(76, 76, 76); - padding-bottom: 5px; +.pano-item-link .pano-item-body .link-title-label { + font-weight: bold; } -.pano-item-body-image-size-container { - border-top: 1px solid rgb(76, 76, 76); - padding-top: 5px; +.pano-item-link .pano-item-body .link-label { + margin-top: 5px; } -.pano-item-body-link-meta-container { - padding: 0px, 12px, 12px, 12px; +/* Text Item */ +.pano-item-text .pano-item-body .pano-item-body-text-content { + margin: 12px; + tab-size: 2; } -.pano-item-body-link .link-title-label { - font-weight: bold; +/* Emoji Item */ +.pano-item-emoji .pano-item-body { + font-family: sans-serif; + tab-size: 2; + text-shadow: 0 0 5px #000; } -.pano-item-body-link .link-label { - margin-top: 5px; +/* Color Item */ +.pano-item-color .color-icon { + padding: 0 15px; } -.pano-item-action-button { - margin-left: 5px; - width: 20px; - height: 20px; - border-radius: 999px; - background-color: rgba(0, 0, 0, 0.3); - color: white; +.pano-item-color .color-label { + font-weight: 900; } -.pano-item-action-button-icon { - margin: 4px; +/* File Item */ +.pano-item-file .pano-item-body .title-container { + padding: 10px; } -.pano-item-open-link-button:hover, -.pano-item-open-link-button:active { - background-color: #1d5ee9; +.pano-item-file .pano-item-body .title-icon { + width: 1.2em; + height: 1.2em; } -.pano-item-remove-button:hover, -.pano-item-remove-button:active { - background-color: #e01b24; +.pano-item-file .pano-item-body .title-label { + padding-left: 10px; + font-weight: 900; } -.pano-item-action-button-remove-icon { - width: 18px; - height: 18px; - margin: 2px; +.pano-item-file .pano-item-body .copied-files-container { + margin-right: 10px; + margin-left: 10px; } -.pano-item-favorite-button:hover { - background-color: rgba(246, 211, 45, 0.3); - color: black; +.pano-item-file .pano-item-body .top-level-directory { + margin-bottom: 0.3em; } -.pano-item-favorite-button:active { - background-color: #f6d32d; - color: black; +.pano-item-file .pano-item-body .file-tree-icon { + width: 1.5em; + height: 1.5em; + color: rgb(255, 255, 255); } +/* Settings */ .indicator-icon { padding: 0px; margin: 0px; } - -.pano-monitor-box { - background-color: transparent !important; -} diff --git a/src/types/hex-color-converter.d.ts b/src/types/hex-color-converter.d.ts deleted file mode 100644 index ca1e596a..00000000 --- a/src/types/hex-color-converter.d.ts +++ /dev/null @@ -1,7 +0,0 @@ -declare module 'hex-color-converter' { - /** - * @throw Error on invalid rgb colors - - */ - export default function convert(rgbColor: string): string; -} diff --git a/src/utils/panoItemFactory.ts b/src/utils/panoItemFactory.ts index e25cbb09..86998b2a 100644 --- a/src/utils/panoItemFactory.ts +++ b/src/utils/panoItemFactory.ts @@ -25,7 +25,7 @@ import { playAudio, } from '@pano/utils/shell'; import { notify } from '@pano/utils/ui'; -import convert from 'hex-color-converter'; +import * as colorString from 'color-string'; import hljs from 'highlight.js/lib/core'; import bash from 'highlight.js/lib/languages/bash'; import c from 'highlight.js/lib/languages/c'; @@ -371,14 +371,6 @@ export const createPanoItemFromDb = ( return panoItem; }; -function converter(color: string): string | null { - try { - return convert(color); - } catch (_err) { - return null; - } -} - export const removeItemResources = (ext: ExtensionBase, dbItem: DBItem) => { db.delete(dbItem.id); if (dbItem.itemType === 'LINK') { @@ -428,18 +420,11 @@ const sendNotification = (ext: ExtensionBase, dbItem: DBItem) => { } else if (dbItem.itemType === 'COLOR') { // Create pixbuf from color const pixbuf = GdkPixbuf.Pixbuf.new(GdkPixbuf.Colorspace.RGB, true, 8, 1, 1); - let color: string | null = null; - // check if content has alpha - if (dbItem.content.includes('rgba')) { - color = converter(dbItem.content); - } else if (validateHTMLColorRgb(dbItem.content)) { - color = `${converter(dbItem.content)}ff`; - } else if (validateHTMLColorHex(dbItem.content)) { - color = `${dbItem.content}ff`; - } + // Parse the color + const color = colorString.get.rgb(dbItem.content); if (color) { - pixbuf.fill(parseInt(color.replace('#', '0x'), 16)); + pixbuf.fill((color[0] << 24) | (color[1] << 16) | (color[2] << 8) | color[3]); notify(ext, _('Color Copied'), dbItem.content, pixbuf); } } else if (dbItem.itemType === 'FILE') { diff --git a/yarn.lock b/yarn.lock index 9878a9ed..072d6789 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1119,6 +1119,11 @@ resolved "https://registry.yarnpkg.com/@tsconfig/strictest/-/strictest-2.0.5.tgz#2cbc67f207ba87fdec2a84ad79b1708cf4edd93b" integrity sha512-ec4tjL2Rr0pkZ5hww65c+EEPYwxOi4Ryv+0MtjeaSQRJyq322Q27eOQiFbuNgw2hpL4hB1/W/HBGk3VKS43osg== +"@types/color-string@^1.5.5": + version "1.5.5" + resolved "https://registry.yarnpkg.com/@types/color-string/-/color-string-1.5.5.tgz#db38c62473c76eda9696ffb3c093b9dc8e9dceea" + integrity sha512-p9+C1ssJsjnHV8nn96rkimm2h90LclLIwgBfiMCHW0oUr6jLmB+wzZUEGJPduB/D2RzI2Ahoe69xKNOawX6jgw== + "@types/conventional-commits-parser@^5.0.0": version "5.0.1" resolved "https://registry.yarnpkg.com/@types/conventional-commits-parser/-/conventional-commits-parser-5.0.1.tgz#8cb81cf170853496cbc501a3b32dcf5e46ffb61a" @@ -1549,11 +1554,19 @@ color-convert@^2.0.1: dependencies: color-name "~1.1.4" -color-name@~1.1.4: +color-name@^1.0.0, color-name@~1.1.4: version "1.1.4" resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== +color-string@^1.9.1: + version "1.9.1" + resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.9.1.tgz#4467f9146f036f855b764dfb5bf8582bf342c7a4" + integrity sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg== + dependencies: + color-name "^1.0.0" + simple-swizzle "^0.2.2" + color-support@^1.1.3: version "1.1.3" resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2" @@ -2331,18 +2344,6 @@ hasown@^2.0.2: dependencies: function-bind "^1.1.2" -hex-color-converter@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/hex-color-converter/-/hex-color-converter-0.2.1.tgz#db599ede9c05288fe1d8a893f9d32cca8901c5d3" - integrity sha512-qPFCmsTMzinuM38zf285o/MbZr1Cu4qq9/t0IQ/xn1SH247J8auSmqJsjx5WL4uUgNuhRkjKxW5oHUlyEDsezg== - dependencies: - hex-color-opacity "^0.3.0" - -hex-color-opacity@^0.3.0: - version "0.3.2" - resolved "https://registry.yarnpkg.com/hex-color-opacity/-/hex-color-opacity-0.3.2.tgz#37db36ea44019836a4582e5b0197e636de4108cb" - integrity sha512-gx4bDXXtz+n6EqHxlvf8QPGpUWh3p1eGH8sQOTWoejMUgw+TJG1fyAivjIHBVYz2piyWJ0rzMDkhYYqKOI1ZHg== - highlight.js@*, highlight.js@^11.9.0: version "11.11.1" resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-11.11.1.tgz#fca06fa0e5aeecf6c4d437239135fabc15213585" @@ -2426,6 +2427,11 @@ is-arrayish@^0.2.1: resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== +is-arrayish@^0.3.1: + version "0.3.2" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03" + integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== + is-core-module@^2.16.0: version "2.16.1" resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.16.1.tgz#2a98801a849f43e2add644fbb6bc6229b19a4ef4" @@ -3442,6 +3448,13 @@ signal-exit@^4.0.1: resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz#952188c1cbd546070e2dd20d0f41c0ae0530cb04" integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw== +simple-swizzle@^0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a" + integrity sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg== + dependencies: + is-arrayish "^0.3.1" + skip-regex@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/skip-regex/-/skip-regex-1.0.2.tgz#ac655d77e7c771ac2b9f37585fea37bff56ad65b" From 1cc39eff41fc9e466216ba631a2e4a3b1ac5f3f5 Mon Sep 17 00:00:00 2001 From: boerdereinar Date: Sun, 28 Apr 2024 21:24:50 +0200 Subject: [PATCH 02/45] Remove redundant settings --- resources/po/ar.po | 51 ++++-------------- resources/po/bg.po | 51 ++++-------------- resources/po/cs.po | 51 ++++-------------- resources/po/da.po | 51 ++++-------------- resources/po/de.po | 51 ++++-------------- resources/po/el.po | 51 ++++-------------- resources/po/en.po | 51 ++++-------------- resources/po/es.po | 51 ++++-------------- resources/po/et.po | 51 ++++-------------- resources/po/fi.po | 51 ++++-------------- resources/po/fr.po | 51 ++++-------------- resources/po/he.po | 51 ++++-------------- resources/po/hr.po | 51 ++++-------------- resources/po/hu.po | 51 ++++-------------- resources/po/is.po | 51 ++++-------------- resources/po/it.po | 51 ++++-------------- resources/po/ja.po | 51 ++++-------------- resources/po/ko.po | 51 ++++-------------- resources/po/nl.po | 51 ++++-------------- resources/po/no.po | 51 ++++-------------- resources/po/oc.po | 51 ++++-------------- resources/po/pano@elhan.io.pot | 35 ++---------- resources/po/pl.po | 51 ++++-------------- resources/po/pt.po | 51 ++++-------------- resources/po/pt_BR.po | 51 ++++-------------- resources/po/ro.po | 51 ++++-------------- resources/po/ru.po | 51 ++++-------------- resources/po/sk.po | 51 ++++-------------- resources/po/sv.po | 51 ++++-------------- resources/po/tr.po | 51 ++++-------------- resources/po/uk.po | 51 ++++-------------- resources/po/vi.po | 51 ++++-------------- resources/po/zh_CN.po | 51 ++++-------------- resources/po/zh_TW.po | 51 ++++-------------- ...rg.gnome.shell.extensions.pano.gschema.xml | 39 -------------- src/components/imagePanoItem.ts | 10 +--- src/prefs/customization/colorItemStyle.ts | 22 +------- src/prefs/customization/imageItemStyle.ts | 53 ------------------- src/prefs/customization/itemStyleGroup.ts | 2 - 39 files changed, 368 insertions(+), 1476 deletions(-) delete mode 100644 src/prefs/customization/imageItemStyle.ts diff --git a/resources/po/ar.po b/resources/po/ar.po index 646b4438..5476046e 100644 --- a/resources/po/ar.po +++ b/resources/po/ar.po @@ -50,7 +50,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 msgid "Body Background Color" @@ -59,14 +58,13 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 msgid "You can change the background color of the body" msgstr "" #: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/colorItemStyle.ts:21 #: src/prefs/customization/fileItemStyle.ts:50 #: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" @@ -96,30 +94,7 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -msgid "Metadata Background Color" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -msgid "You can change the background color of the metadata" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:41 -msgid "Metadata Text Color" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:42 -msgid "You can change the text color of the metadata" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/imageItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:21 msgid "You can change the font of the metadata" msgstr "" @@ -281,23 +256,11 @@ msgstr "" msgid "You can change the text color of the body" msgstr "" -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Change the style of the image item" -msgstr "" - -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Image Item Style" -msgstr "" - -#: src/prefs/customization/imageItemStyle.ts:50 -msgid "Metadata Font" -msgstr "" - #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "" -#: src/prefs/customization/itemStyleGroup.ts:18 +#: src/prefs/customization/itemStyleGroup.ts:17 msgid "Item Style" msgstr "" @@ -309,6 +272,14 @@ msgstr "" msgid "Link Item Style" msgstr "" +#: src/prefs/customization/linkItemStyle.ts:32 +msgid "Metadata Background Color" +msgstr "" + +#: src/prefs/customization/linkItemStyle.ts:33 +msgid "You can change the background color of the metadata" +msgstr "" + #: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "" diff --git a/resources/po/bg.po b/resources/po/bg.po index 7be3cfd4..18134260 100644 --- a/resources/po/bg.po +++ b/resources/po/bg.po @@ -50,7 +50,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 msgid "Body Background Color" @@ -59,14 +58,13 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 msgid "You can change the background color of the body" msgstr "" #: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/colorItemStyle.ts:21 #: src/prefs/customization/fileItemStyle.ts:50 #: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" @@ -96,30 +94,7 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -msgid "Metadata Background Color" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -msgid "You can change the background color of the metadata" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:41 -msgid "Metadata Text Color" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:42 -msgid "You can change the text color of the metadata" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/imageItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:21 msgid "You can change the font of the metadata" msgstr "" @@ -281,23 +256,11 @@ msgstr "" msgid "You can change the text color of the body" msgstr "" -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Change the style of the image item" -msgstr "" - -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Image Item Style" -msgstr "" - -#: src/prefs/customization/imageItemStyle.ts:50 -msgid "Metadata Font" -msgstr "" - #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "" -#: src/prefs/customization/itemStyleGroup.ts:18 +#: src/prefs/customization/itemStyleGroup.ts:17 msgid "Item Style" msgstr "" @@ -309,6 +272,14 @@ msgstr "" msgid "Link Item Style" msgstr "" +#: src/prefs/customization/linkItemStyle.ts:32 +msgid "Metadata Background Color" +msgstr "" + +#: src/prefs/customization/linkItemStyle.ts:33 +msgid "You can change the background color of the metadata" +msgstr "" + #: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "" diff --git a/resources/po/cs.po b/resources/po/cs.po index 43b3668d..817728d7 100644 --- a/resources/po/cs.po +++ b/resources/po/cs.po @@ -50,7 +50,6 @@ msgstr "Kód - nastavení stylů" #: src/prefs/customization/codeItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 msgid "Body Background Color" @@ -59,14 +58,13 @@ msgstr "Barva pozadí těla" #: src/prefs/customization/codeItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 msgid "You can change the background color of the body" msgstr "Můžete změnit barvu pozadí těla" #: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/colorItemStyle.ts:21 #: src/prefs/customization/fileItemStyle.ts:50 #: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" @@ -96,30 +94,7 @@ msgstr "Změňte styly barvy" msgid "Color Item Style" msgstr "Barva - nastavení stylů" -#: src/prefs/customization/colorItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -msgid "Metadata Background Color" -msgstr "Barva pozadí metadat" - -#: src/prefs/customization/colorItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -msgid "You can change the background color of the metadata" -msgstr "Můžete změnit barvu pozadí metadat" - -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:41 -msgid "Metadata Text Color" -msgstr "Barva textu metadat" - -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:42 -msgid "You can change the text color of the metadata" -msgstr "Můžete změnit barvu textu metadat" - -#: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/imageItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:21 msgid "You can change the font of the metadata" msgstr "Můžete změnit písmo metadat" @@ -281,23 +256,11 @@ msgstr "Barva textu těla" msgid "You can change the text color of the body" msgstr "Můžete změnit barvu textu těla" -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Change the style of the image item" -msgstr "Změňte styly obrázku" - -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Image Item Style" -msgstr "Obrázek - nastavení stylů" - -#: src/prefs/customization/imageItemStyle.ts:50 -msgid "Metadata Font" -msgstr "Písmo metadat" - #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "Přizpůsobení" -#: src/prefs/customization/itemStyleGroup.ts:18 +#: src/prefs/customization/itemStyleGroup.ts:17 msgid "Item Style" msgstr "Styly položky" @@ -309,6 +272,14 @@ msgstr "Změňte styly odkazu" msgid "Link Item Style" msgstr "Odkaz - nastavení stylů" +#: src/prefs/customization/linkItemStyle.ts:32 +msgid "Metadata Background Color" +msgstr "Barva pozadí metadat" + +#: src/prefs/customization/linkItemStyle.ts:33 +msgid "You can change the background color of the metadata" +msgstr "Můžete změnit barvu pozadí metadat" + #: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "Barva názvu metadat" diff --git a/resources/po/da.po b/resources/po/da.po index 25bd7dcb..23ec4c63 100644 --- a/resources/po/da.po +++ b/resources/po/da.po @@ -50,7 +50,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 msgid "Body Background Color" @@ -59,14 +58,13 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 msgid "You can change the background color of the body" msgstr "" #: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/colorItemStyle.ts:21 #: src/prefs/customization/fileItemStyle.ts:50 #: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" @@ -96,30 +94,7 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -msgid "Metadata Background Color" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -msgid "You can change the background color of the metadata" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:41 -msgid "Metadata Text Color" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:42 -msgid "You can change the text color of the metadata" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/imageItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:21 msgid "You can change the font of the metadata" msgstr "" @@ -281,23 +256,11 @@ msgstr "" msgid "You can change the text color of the body" msgstr "" -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Change the style of the image item" -msgstr "" - -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Image Item Style" -msgstr "" - -#: src/prefs/customization/imageItemStyle.ts:50 -msgid "Metadata Font" -msgstr "" - #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "" -#: src/prefs/customization/itemStyleGroup.ts:18 +#: src/prefs/customization/itemStyleGroup.ts:17 msgid "Item Style" msgstr "" @@ -309,6 +272,14 @@ msgstr "" msgid "Link Item Style" msgstr "" +#: src/prefs/customization/linkItemStyle.ts:32 +msgid "Metadata Background Color" +msgstr "" + +#: src/prefs/customization/linkItemStyle.ts:33 +msgid "You can change the background color of the metadata" +msgstr "" + #: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "" diff --git a/resources/po/de.po b/resources/po/de.po index d44a0b1d..c8901805 100644 --- a/resources/po/de.po +++ b/resources/po/de.po @@ -50,7 +50,6 @@ msgstr "Stil des Code-Eintrags" #: src/prefs/customization/codeItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 msgid "Body Background Color" @@ -59,14 +58,13 @@ msgstr "Hintergrundfarbe des Hauptteils" #: src/prefs/customization/codeItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 msgid "You can change the background color of the body" msgstr "Sie können die Hintergrundfarbe des Hauptteils ändern" #: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/colorItemStyle.ts:21 #: src/prefs/customization/fileItemStyle.ts:50 #: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" @@ -96,30 +94,7 @@ msgstr "Stil des Farb-Eintrags ändern" msgid "Color Item Style" msgstr "Stil des Farb-Eintrags" -#: src/prefs/customization/colorItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -msgid "Metadata Background Color" -msgstr "Hintergrundfarbe für Metadaten" - -#: src/prefs/customization/colorItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -msgid "You can change the background color of the metadata" -msgstr "Sie können die Hintergrundfarbe der Metadaten ändern" - -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:41 -msgid "Metadata Text Color" -msgstr "Textfarbe für Metadaten" - -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:42 -msgid "You can change the text color of the metadata" -msgstr "Sie können die Textfarbe der Metadaten ändern" - -#: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/imageItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:21 msgid "You can change the font of the metadata" msgstr "Sie können die Schriftart der Metadaten ändern" @@ -281,23 +256,11 @@ msgstr "Textfarbe des Hauptteils" msgid "You can change the text color of the body" msgstr "Sie können die Textfarbe des Hauptteils ändern" -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Change the style of the image item" -msgstr "Stil des Bild-Eintrags ändern" - -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Image Item Style" -msgstr "Stil des Bild-Eintrags" - -#: src/prefs/customization/imageItemStyle.ts:50 -msgid "Metadata Font" -msgstr "Schriftart für Metadaten" - #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "Anpassung" -#: src/prefs/customization/itemStyleGroup.ts:18 +#: src/prefs/customization/itemStyleGroup.ts:17 msgid "Item Style" msgstr "Eintragsstil" @@ -309,6 +272,14 @@ msgstr "Stil des Verweis-Eintrags ändern" msgid "Link Item Style" msgstr "Stil Verweis-Eintrag" +#: src/prefs/customization/linkItemStyle.ts:32 +msgid "Metadata Background Color" +msgstr "Hintergrundfarbe für Metadaten" + +#: src/prefs/customization/linkItemStyle.ts:33 +msgid "You can change the background color of the metadata" +msgstr "Sie können die Hintergrundfarbe der Metadaten ändern" + #: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "Titelfarbe für Metadaten" diff --git a/resources/po/el.po b/resources/po/el.po index 9d603d8f..ada59c17 100644 --- a/resources/po/el.po +++ b/resources/po/el.po @@ -50,7 +50,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 msgid "Body Background Color" @@ -59,14 +58,13 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 msgid "You can change the background color of the body" msgstr "" #: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/colorItemStyle.ts:21 #: src/prefs/customization/fileItemStyle.ts:50 #: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" @@ -96,30 +94,7 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -msgid "Metadata Background Color" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -msgid "You can change the background color of the metadata" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:41 -msgid "Metadata Text Color" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:42 -msgid "You can change the text color of the metadata" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/imageItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:21 msgid "You can change the font of the metadata" msgstr "" @@ -281,23 +256,11 @@ msgstr "" msgid "You can change the text color of the body" msgstr "" -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Change the style of the image item" -msgstr "" - -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Image Item Style" -msgstr "" - -#: src/prefs/customization/imageItemStyle.ts:50 -msgid "Metadata Font" -msgstr "" - #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "" -#: src/prefs/customization/itemStyleGroup.ts:18 +#: src/prefs/customization/itemStyleGroup.ts:17 msgid "Item Style" msgstr "" @@ -309,6 +272,14 @@ msgstr "" msgid "Link Item Style" msgstr "" +#: src/prefs/customization/linkItemStyle.ts:32 +msgid "Metadata Background Color" +msgstr "" + +#: src/prefs/customization/linkItemStyle.ts:33 +msgid "You can change the background color of the metadata" +msgstr "" + #: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "" diff --git a/resources/po/en.po b/resources/po/en.po index db8fafba..2df2c3c1 100644 --- a/resources/po/en.po +++ b/resources/po/en.po @@ -50,7 +50,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 msgid "Body Background Color" @@ -59,14 +58,13 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 msgid "You can change the background color of the body" msgstr "" #: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/colorItemStyle.ts:21 #: src/prefs/customization/fileItemStyle.ts:50 #: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" @@ -96,30 +94,7 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -msgid "Metadata Background Color" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -msgid "You can change the background color of the metadata" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:41 -msgid "Metadata Text Color" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:42 -msgid "You can change the text color of the metadata" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/imageItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:21 msgid "You can change the font of the metadata" msgstr "" @@ -281,23 +256,11 @@ msgstr "" msgid "You can change the text color of the body" msgstr "" -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Change the style of the image item" -msgstr "" - -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Image Item Style" -msgstr "" - -#: src/prefs/customization/imageItemStyle.ts:50 -msgid "Metadata Font" -msgstr "" - #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "" -#: src/prefs/customization/itemStyleGroup.ts:18 +#: src/prefs/customization/itemStyleGroup.ts:17 msgid "Item Style" msgstr "" @@ -309,6 +272,14 @@ msgstr "" msgid "Link Item Style" msgstr "" +#: src/prefs/customization/linkItemStyle.ts:32 +msgid "Metadata Background Color" +msgstr "" + +#: src/prefs/customization/linkItemStyle.ts:33 +msgid "You can change the background color of the metadata" +msgstr "" + #: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "" diff --git a/resources/po/es.po b/resources/po/es.po index c716664d..a66be4db 100644 --- a/resources/po/es.po +++ b/resources/po/es.po @@ -50,7 +50,6 @@ msgstr "Estilo de las notas de código" #: src/prefs/customization/codeItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 msgid "Body Background Color" @@ -59,14 +58,13 @@ msgstr "Color de fondo del cuerpo" #: src/prefs/customization/codeItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 msgid "You can change the background color of the body" msgstr "Puedes cambiar el color del cuerpo" #: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/colorItemStyle.ts:21 #: src/prefs/customization/fileItemStyle.ts:50 #: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" @@ -96,30 +94,7 @@ msgstr "Cambia el estilo de las notas de color" msgid "Color Item Style" msgstr "Estilo de las notas de color" -#: src/prefs/customization/colorItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -msgid "Metadata Background Color" -msgstr "Color de fondo de los metadatos" - -#: src/prefs/customization/colorItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -msgid "You can change the background color of the metadata" -msgstr "Puedes cambiar el color de fondo de los metadatos" - -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:41 -msgid "Metadata Text Color" -msgstr "Color de texto de los metadatos" - -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:42 -msgid "You can change the text color of the metadata" -msgstr "Puedes cambiar el color del texto de los metadatos" - -#: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/imageItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:21 msgid "You can change the font of the metadata" msgstr "Puedes cambiar el tipo de letra de los metadatos" @@ -281,23 +256,11 @@ msgstr "Color del texto del cuerpo" msgid "You can change the text color of the body" msgstr "Puedes cambiar el color del texto del cuerpo de la nota" -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Change the style of the image item" -msgstr "Cambia el estilo de las notas de imagen" - -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Image Item Style" -msgstr "Estilo de las notas de imagen" - -#: src/prefs/customization/imageItemStyle.ts:50 -msgid "Metadata Font" -msgstr "Tipo de letra de los metadatos" - #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "Personalización" -#: src/prefs/customization/itemStyleGroup.ts:18 +#: src/prefs/customization/itemStyleGroup.ts:17 msgid "Item Style" msgstr "Estilo de las notas" @@ -309,6 +272,14 @@ msgstr "Cambia el estilo de las notas de enlaces" msgid "Link Item Style" msgstr "Estilo de las notas de enlaces" +#: src/prefs/customization/linkItemStyle.ts:32 +msgid "Metadata Background Color" +msgstr "Color de fondo de los metadatos" + +#: src/prefs/customization/linkItemStyle.ts:33 +msgid "You can change the background color of the metadata" +msgstr "Puedes cambiar el color de fondo de los metadatos" + #: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "Color del título de los enlaces" diff --git a/resources/po/et.po b/resources/po/et.po index 5ccbf664..b643f961 100644 --- a/resources/po/et.po +++ b/resources/po/et.po @@ -50,7 +50,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 msgid "Body Background Color" @@ -59,14 +58,13 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 msgid "You can change the background color of the body" msgstr "" #: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/colorItemStyle.ts:21 #: src/prefs/customization/fileItemStyle.ts:50 #: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" @@ -96,30 +94,7 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -msgid "Metadata Background Color" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -msgid "You can change the background color of the metadata" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:41 -msgid "Metadata Text Color" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:42 -msgid "You can change the text color of the metadata" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/imageItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:21 msgid "You can change the font of the metadata" msgstr "" @@ -281,23 +256,11 @@ msgstr "" msgid "You can change the text color of the body" msgstr "" -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Change the style of the image item" -msgstr "" - -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Image Item Style" -msgstr "" - -#: src/prefs/customization/imageItemStyle.ts:50 -msgid "Metadata Font" -msgstr "" - #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "" -#: src/prefs/customization/itemStyleGroup.ts:18 +#: src/prefs/customization/itemStyleGroup.ts:17 msgid "Item Style" msgstr "" @@ -309,6 +272,14 @@ msgstr "" msgid "Link Item Style" msgstr "" +#: src/prefs/customization/linkItemStyle.ts:32 +msgid "Metadata Background Color" +msgstr "" + +#: src/prefs/customization/linkItemStyle.ts:33 +msgid "You can change the background color of the metadata" +msgstr "" + #: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "" diff --git a/resources/po/fi.po b/resources/po/fi.po index ffbbacf1..7c859c22 100644 --- a/resources/po/fi.po +++ b/resources/po/fi.po @@ -50,7 +50,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 msgid "Body Background Color" @@ -59,14 +58,13 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 msgid "You can change the background color of the body" msgstr "" #: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/colorItemStyle.ts:21 #: src/prefs/customization/fileItemStyle.ts:50 #: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" @@ -96,30 +94,7 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -msgid "Metadata Background Color" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -msgid "You can change the background color of the metadata" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:41 -msgid "Metadata Text Color" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:42 -msgid "You can change the text color of the metadata" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/imageItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:21 msgid "You can change the font of the metadata" msgstr "" @@ -281,23 +256,11 @@ msgstr "" msgid "You can change the text color of the body" msgstr "" -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Change the style of the image item" -msgstr "" - -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Image Item Style" -msgstr "" - -#: src/prefs/customization/imageItemStyle.ts:50 -msgid "Metadata Font" -msgstr "" - #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "" -#: src/prefs/customization/itemStyleGroup.ts:18 +#: src/prefs/customization/itemStyleGroup.ts:17 msgid "Item Style" msgstr "" @@ -309,6 +272,14 @@ msgstr "" msgid "Link Item Style" msgstr "" +#: src/prefs/customization/linkItemStyle.ts:32 +msgid "Metadata Background Color" +msgstr "" + +#: src/prefs/customization/linkItemStyle.ts:33 +msgid "You can change the background color of the metadata" +msgstr "" + #: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "" diff --git a/resources/po/fr.po b/resources/po/fr.po index c70c69af..17e24f2b 100644 --- a/resources/po/fr.po +++ b/resources/po/fr.po @@ -50,7 +50,6 @@ msgstr "Style de l’élément de code" #: src/prefs/customization/codeItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 msgid "Body Background Color" @@ -59,14 +58,13 @@ msgstr "Couleur de fond du contenu" #: src/prefs/customization/codeItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 msgid "You can change the background color of the body" msgstr "Vous pouvez modifier la couleur d’arrière-plan du contenu" #: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/colorItemStyle.ts:21 #: src/prefs/customization/fileItemStyle.ts:50 #: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" @@ -96,30 +94,7 @@ msgstr "Changer le style de l’élément de couleur" msgid "Color Item Style" msgstr "Style de l’élément de couleur" -#: src/prefs/customization/colorItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -msgid "Metadata Background Color" -msgstr "Couleur de fond des métadonnées" - -#: src/prefs/customization/colorItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -msgid "You can change the background color of the metadata" -msgstr "Vous pouvez modifier la couleur d’arrière-plan des métadonnées" - -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:41 -msgid "Metadata Text Color" -msgstr "Couleur du texte des métadonnées" - -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:42 -msgid "You can change the text color of the metadata" -msgstr "Vous pouvez modifier la couleur du texte des métadonnées" - -#: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/imageItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:21 msgid "You can change the font of the metadata" msgstr "Vous pouvez modifier la police des métadonnées" @@ -281,23 +256,11 @@ msgstr "Couleur du texte du corpus" msgid "You can change the text color of the body" msgstr "Vous pouvez modifier la couleur du texte du corpus" -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Change the style of the image item" -msgstr "Changer le style de l’élément d’image" - -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Image Item Style" -msgstr "Style de l’élément d’image" - -#: src/prefs/customization/imageItemStyle.ts:50 -msgid "Metadata Font" -msgstr "Police des métadonnées" - #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "Personnalisation" -#: src/prefs/customization/itemStyleGroup.ts:18 +#: src/prefs/customization/itemStyleGroup.ts:17 msgid "Item Style" msgstr "Style de l’élément" @@ -309,6 +272,14 @@ msgstr "Changer le style de l’élément de lien" msgid "Link Item Style" msgstr "Style de l’élément de lien" +#: src/prefs/customization/linkItemStyle.ts:32 +msgid "Metadata Background Color" +msgstr "Couleur de fond des métadonnées" + +#: src/prefs/customization/linkItemStyle.ts:33 +msgid "You can change the background color of the metadata" +msgstr "Vous pouvez modifier la couleur d’arrière-plan des métadonnées" + #: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "Couleur du titre des métadonnées" diff --git a/resources/po/he.po b/resources/po/he.po index 86ff2a75..46045386 100644 --- a/resources/po/he.po +++ b/resources/po/he.po @@ -50,7 +50,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 msgid "Body Background Color" @@ -59,14 +58,13 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 msgid "You can change the background color of the body" msgstr "" #: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/colorItemStyle.ts:21 #: src/prefs/customization/fileItemStyle.ts:50 #: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" @@ -96,30 +94,7 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -msgid "Metadata Background Color" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -msgid "You can change the background color of the metadata" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:41 -msgid "Metadata Text Color" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:42 -msgid "You can change the text color of the metadata" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/imageItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:21 msgid "You can change the font of the metadata" msgstr "" @@ -281,23 +256,11 @@ msgstr "" msgid "You can change the text color of the body" msgstr "" -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Change the style of the image item" -msgstr "" - -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Image Item Style" -msgstr "" - -#: src/prefs/customization/imageItemStyle.ts:50 -msgid "Metadata Font" -msgstr "" - #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "" -#: src/prefs/customization/itemStyleGroup.ts:18 +#: src/prefs/customization/itemStyleGroup.ts:17 msgid "Item Style" msgstr "" @@ -309,6 +272,14 @@ msgstr "" msgid "Link Item Style" msgstr "" +#: src/prefs/customization/linkItemStyle.ts:32 +msgid "Metadata Background Color" +msgstr "" + +#: src/prefs/customization/linkItemStyle.ts:33 +msgid "You can change the background color of the metadata" +msgstr "" + #: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "" diff --git a/resources/po/hr.po b/resources/po/hr.po index 6a04ec6e..54944711 100644 --- a/resources/po/hr.po +++ b/resources/po/hr.po @@ -50,7 +50,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 msgid "Body Background Color" @@ -59,14 +58,13 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 msgid "You can change the background color of the body" msgstr "" #: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/colorItemStyle.ts:21 #: src/prefs/customization/fileItemStyle.ts:50 #: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" @@ -96,30 +94,7 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -msgid "Metadata Background Color" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -msgid "You can change the background color of the metadata" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:41 -msgid "Metadata Text Color" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:42 -msgid "You can change the text color of the metadata" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/imageItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:21 msgid "You can change the font of the metadata" msgstr "" @@ -281,23 +256,11 @@ msgstr "" msgid "You can change the text color of the body" msgstr "" -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Change the style of the image item" -msgstr "" - -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Image Item Style" -msgstr "" - -#: src/prefs/customization/imageItemStyle.ts:50 -msgid "Metadata Font" -msgstr "" - #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "" -#: src/prefs/customization/itemStyleGroup.ts:18 +#: src/prefs/customization/itemStyleGroup.ts:17 msgid "Item Style" msgstr "" @@ -309,6 +272,14 @@ msgstr "" msgid "Link Item Style" msgstr "" +#: src/prefs/customization/linkItemStyle.ts:32 +msgid "Metadata Background Color" +msgstr "" + +#: src/prefs/customization/linkItemStyle.ts:33 +msgid "You can change the background color of the metadata" +msgstr "" + #: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "" diff --git a/resources/po/hu.po b/resources/po/hu.po index 1d438552..0a385367 100644 --- a/resources/po/hu.po +++ b/resources/po/hu.po @@ -50,7 +50,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 msgid "Body Background Color" @@ -59,14 +58,13 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 msgid "You can change the background color of the body" msgstr "" #: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/colorItemStyle.ts:21 #: src/prefs/customization/fileItemStyle.ts:50 #: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" @@ -96,30 +94,7 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -msgid "Metadata Background Color" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -msgid "You can change the background color of the metadata" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:41 -msgid "Metadata Text Color" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:42 -msgid "You can change the text color of the metadata" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/imageItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:21 msgid "You can change the font of the metadata" msgstr "" @@ -281,23 +256,11 @@ msgstr "" msgid "You can change the text color of the body" msgstr "" -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Change the style of the image item" -msgstr "" - -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Image Item Style" -msgstr "" - -#: src/prefs/customization/imageItemStyle.ts:50 -msgid "Metadata Font" -msgstr "" - #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "" -#: src/prefs/customization/itemStyleGroup.ts:18 +#: src/prefs/customization/itemStyleGroup.ts:17 msgid "Item Style" msgstr "" @@ -309,6 +272,14 @@ msgstr "" msgid "Link Item Style" msgstr "" +#: src/prefs/customization/linkItemStyle.ts:32 +msgid "Metadata Background Color" +msgstr "" + +#: src/prefs/customization/linkItemStyle.ts:33 +msgid "You can change the background color of the metadata" +msgstr "" + #: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "" diff --git a/resources/po/is.po b/resources/po/is.po index 1b10a0ba..15e8f04a 100644 --- a/resources/po/is.po +++ b/resources/po/is.po @@ -50,7 +50,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 msgid "Body Background Color" @@ -59,14 +58,13 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 msgid "You can change the background color of the body" msgstr "" #: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/colorItemStyle.ts:21 #: src/prefs/customization/fileItemStyle.ts:50 #: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" @@ -96,30 +94,7 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -msgid "Metadata Background Color" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -msgid "You can change the background color of the metadata" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:41 -msgid "Metadata Text Color" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:42 -msgid "You can change the text color of the metadata" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/imageItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:21 msgid "You can change the font of the metadata" msgstr "" @@ -281,23 +256,11 @@ msgstr "" msgid "You can change the text color of the body" msgstr "" -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Change the style of the image item" -msgstr "" - -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Image Item Style" -msgstr "" - -#: src/prefs/customization/imageItemStyle.ts:50 -msgid "Metadata Font" -msgstr "" - #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "" -#: src/prefs/customization/itemStyleGroup.ts:18 +#: src/prefs/customization/itemStyleGroup.ts:17 msgid "Item Style" msgstr "" @@ -309,6 +272,14 @@ msgstr "" msgid "Link Item Style" msgstr "" +#: src/prefs/customization/linkItemStyle.ts:32 +msgid "Metadata Background Color" +msgstr "" + +#: src/prefs/customization/linkItemStyle.ts:33 +msgid "You can change the background color of the metadata" +msgstr "" + #: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "" diff --git a/resources/po/it.po b/resources/po/it.po index 2b75092c..1a17bc92 100644 --- a/resources/po/it.po +++ b/resources/po/it.po @@ -50,7 +50,6 @@ msgstr "Stile dell'elemento Codice" #: src/prefs/customization/codeItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 msgid "Body Background Color" @@ -59,14 +58,13 @@ msgstr "Colore di sfondo del corpo" #: src/prefs/customization/codeItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 msgid "You can change the background color of the body" msgstr "Puoi cambiare il colore di sfondo del corpo" #: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/colorItemStyle.ts:21 #: src/prefs/customization/fileItemStyle.ts:50 #: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" @@ -96,30 +94,7 @@ msgstr "Cambia lo stile dell'elemento Colore" msgid "Color Item Style" msgstr "Stile dell'elemento Colore" -#: src/prefs/customization/colorItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -msgid "Metadata Background Color" -msgstr "Colore di sfondo dei metadati" - -#: src/prefs/customization/colorItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -msgid "You can change the background color of the metadata" -msgstr "Puoi cambiare il colore di sfondo dei metadati" - -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:41 -msgid "Metadata Text Color" -msgstr "Colore del testo dei metadati" - -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:42 -msgid "You can change the text color of the metadata" -msgstr "Puoi cambiare il colore del testo dei metadati" - -#: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/imageItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:21 msgid "You can change the font of the metadata" msgstr "Puoi cambiare il carattere dei metadati" @@ -281,23 +256,11 @@ msgstr "Colore del corpo del testo" msgid "You can change the text color of the body" msgstr "Puoi cambiare il colore del testo del corpo" -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Change the style of the image item" -msgstr "Cambia lo stile dell'elemento immagine" - -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Image Item Style" -msgstr "Stile oggetto immagine" - -#: src/prefs/customization/imageItemStyle.ts:50 -msgid "Metadata Font" -msgstr "Carattere dei metadati" - #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "Personalizzazione" -#: src/prefs/customization/itemStyleGroup.ts:18 +#: src/prefs/customization/itemStyleGroup.ts:17 msgid "Item Style" msgstr "Stile elemento" @@ -309,6 +272,14 @@ msgstr "Modificare lo stile dell'elemento di collegamento" msgid "Link Item Style" msgstr "Stile elemento di collegamento" +#: src/prefs/customization/linkItemStyle.ts:32 +msgid "Metadata Background Color" +msgstr "Colore di sfondo dei metadati" + +#: src/prefs/customization/linkItemStyle.ts:33 +msgid "You can change the background color of the metadata" +msgstr "Puoi cambiare il colore di sfondo dei metadati" + #: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "Colore del titolo dei metadati" diff --git a/resources/po/ja.po b/resources/po/ja.po index 119dfa6a..b397e94f 100644 --- a/resources/po/ja.po +++ b/resources/po/ja.po @@ -50,7 +50,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 msgid "Body Background Color" @@ -59,14 +58,13 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 msgid "You can change the background color of the body" msgstr "" #: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/colorItemStyle.ts:21 #: src/prefs/customization/fileItemStyle.ts:50 #: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" @@ -96,30 +94,7 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -msgid "Metadata Background Color" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -msgid "You can change the background color of the metadata" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:41 -msgid "Metadata Text Color" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:42 -msgid "You can change the text color of the metadata" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/imageItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:21 msgid "You can change the font of the metadata" msgstr "" @@ -281,23 +256,11 @@ msgstr "" msgid "You can change the text color of the body" msgstr "" -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Change the style of the image item" -msgstr "" - -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Image Item Style" -msgstr "" - -#: src/prefs/customization/imageItemStyle.ts:50 -msgid "Metadata Font" -msgstr "" - #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "" -#: src/prefs/customization/itemStyleGroup.ts:18 +#: src/prefs/customization/itemStyleGroup.ts:17 msgid "Item Style" msgstr "" @@ -309,6 +272,14 @@ msgstr "" msgid "Link Item Style" msgstr "" +#: src/prefs/customization/linkItemStyle.ts:32 +msgid "Metadata Background Color" +msgstr "" + +#: src/prefs/customization/linkItemStyle.ts:33 +msgid "You can change the background color of the metadata" +msgstr "" + #: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "" diff --git a/resources/po/ko.po b/resources/po/ko.po index 0f005744..e2232cce 100644 --- a/resources/po/ko.po +++ b/resources/po/ko.po @@ -50,7 +50,6 @@ msgstr "코드 스타일" #: src/prefs/customization/codeItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 msgid "Body Background Color" @@ -59,14 +58,13 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 msgid "You can change the background color of the body" msgstr "내용 배경의 색상을 바꾸기" #: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/colorItemStyle.ts:21 #: src/prefs/customization/fileItemStyle.ts:50 #: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" @@ -96,30 +94,7 @@ msgstr "색상 항목의 스타일을 바꾸기" msgid "Color Item Style" msgstr "색상 항목 스타일" -#: src/prefs/customization/colorItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -msgid "Metadata Background Color" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -msgid "You can change the background color of the metadata" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:41 -msgid "Metadata Text Color" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:42 -msgid "You can change the text color of the metadata" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/imageItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:21 msgid "You can change the font of the metadata" msgstr "" @@ -281,23 +256,11 @@ msgstr "내용 텍스트 색상" msgid "You can change the text color of the body" msgstr "내용 텍스트 색상을 바꾸기" -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Change the style of the image item" -msgstr "이미지 항목의 스타일을 바꾸기" - -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Image Item Style" -msgstr "이미지 항목 스타일" - -#: src/prefs/customization/imageItemStyle.ts:50 -msgid "Metadata Font" -msgstr "메타데이터 글꼴" - #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "개인화" -#: src/prefs/customization/itemStyleGroup.ts:18 +#: src/prefs/customization/itemStyleGroup.ts:17 msgid "Item Style" msgstr "항목 스타일" @@ -309,6 +272,14 @@ msgstr "링크 항목의 스타일을 바꾸기" msgid "Link Item Style" msgstr "링크 항목 스타일" +#: src/prefs/customization/linkItemStyle.ts:32 +msgid "Metadata Background Color" +msgstr "" + +#: src/prefs/customization/linkItemStyle.ts:33 +msgid "You can change the background color of the metadata" +msgstr "" + #: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "메타데이터 제목 색상" diff --git a/resources/po/nl.po b/resources/po/nl.po index f450bcf1..8e576933 100644 --- a/resources/po/nl.po +++ b/resources/po/nl.po @@ -50,7 +50,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 msgid "Body Background Color" @@ -59,14 +58,13 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 msgid "You can change the background color of the body" msgstr "" #: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/colorItemStyle.ts:21 #: src/prefs/customization/fileItemStyle.ts:50 #: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" @@ -96,30 +94,7 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -msgid "Metadata Background Color" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -msgid "You can change the background color of the metadata" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:41 -msgid "Metadata Text Color" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:42 -msgid "You can change the text color of the metadata" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/imageItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:21 msgid "You can change the font of the metadata" msgstr "" @@ -281,23 +256,11 @@ msgstr "" msgid "You can change the text color of the body" msgstr "" -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Change the style of the image item" -msgstr "" - -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Image Item Style" -msgstr "" - -#: src/prefs/customization/imageItemStyle.ts:50 -msgid "Metadata Font" -msgstr "" - #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "" -#: src/prefs/customization/itemStyleGroup.ts:18 +#: src/prefs/customization/itemStyleGroup.ts:17 msgid "Item Style" msgstr "" @@ -309,6 +272,14 @@ msgstr "" msgid "Link Item Style" msgstr "" +#: src/prefs/customization/linkItemStyle.ts:32 +msgid "Metadata Background Color" +msgstr "" + +#: src/prefs/customization/linkItemStyle.ts:33 +msgid "You can change the background color of the metadata" +msgstr "" + #: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "" diff --git a/resources/po/no.po b/resources/po/no.po index 76774aee..cc231644 100644 --- a/resources/po/no.po +++ b/resources/po/no.po @@ -50,7 +50,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 msgid "Body Background Color" @@ -59,14 +58,13 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 msgid "You can change the background color of the body" msgstr "" #: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/colorItemStyle.ts:21 #: src/prefs/customization/fileItemStyle.ts:50 #: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" @@ -96,30 +94,7 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -msgid "Metadata Background Color" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -msgid "You can change the background color of the metadata" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:41 -msgid "Metadata Text Color" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:42 -msgid "You can change the text color of the metadata" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/imageItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:21 msgid "You can change the font of the metadata" msgstr "" @@ -281,23 +256,11 @@ msgstr "" msgid "You can change the text color of the body" msgstr "" -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Change the style of the image item" -msgstr "" - -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Image Item Style" -msgstr "" - -#: src/prefs/customization/imageItemStyle.ts:50 -msgid "Metadata Font" -msgstr "" - #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "" -#: src/prefs/customization/itemStyleGroup.ts:18 +#: src/prefs/customization/itemStyleGroup.ts:17 msgid "Item Style" msgstr "" @@ -309,6 +272,14 @@ msgstr "" msgid "Link Item Style" msgstr "" +#: src/prefs/customization/linkItemStyle.ts:32 +msgid "Metadata Background Color" +msgstr "" + +#: src/prefs/customization/linkItemStyle.ts:33 +msgid "You can change the background color of the metadata" +msgstr "" + #: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "" diff --git a/resources/po/oc.po b/resources/po/oc.po index be3adcf0..8b659d18 100644 --- a/resources/po/oc.po +++ b/resources/po/oc.po @@ -50,7 +50,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 msgid "Body Background Color" @@ -59,14 +58,13 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 msgid "You can change the background color of the body" msgstr "" #: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/colorItemStyle.ts:21 #: src/prefs/customization/fileItemStyle.ts:50 #: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" @@ -96,30 +94,7 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -msgid "Metadata Background Color" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -msgid "You can change the background color of the metadata" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:41 -msgid "Metadata Text Color" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:42 -msgid "You can change the text color of the metadata" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/imageItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:21 msgid "You can change the font of the metadata" msgstr "" @@ -281,23 +256,11 @@ msgstr "" msgid "You can change the text color of the body" msgstr "" -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Change the style of the image item" -msgstr "" - -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Image Item Style" -msgstr "" - -#: src/prefs/customization/imageItemStyle.ts:50 -msgid "Metadata Font" -msgstr "" - #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "" -#: src/prefs/customization/itemStyleGroup.ts:18 +#: src/prefs/customization/itemStyleGroup.ts:17 msgid "Item Style" msgstr "" @@ -309,6 +272,14 @@ msgstr "" msgid "Link Item Style" msgstr "" +#: src/prefs/customization/linkItemStyle.ts:32 +msgid "Metadata Background Color" +msgstr "" + +#: src/prefs/customization/linkItemStyle.ts:33 +msgid "You can change the background color of the metadata" +msgstr "" + #: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "" diff --git a/resources/po/pano@elhan.io.pot b/resources/po/pano@elhan.io.pot index f6711b55..166cd738 100644 --- a/resources/po/pano@elhan.io.pot +++ b/resources/po/pano@elhan.io.pot @@ -42,14 +42,13 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 msgid "Body Background Color" msgstr "" #: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/colorItemStyle.ts:21 #: src/prefs/customization/fileItemStyle.ts:50 #: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" @@ -84,10 +83,6 @@ msgstr "" msgid "Change the style of the file item" msgstr "" -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Change the style of the image item" -msgstr "" - #: src/prefs/customization/linkItemStyle.ts:15 msgid "Change the style of the link item" msgstr "" @@ -240,10 +235,6 @@ msgstr "" msgid "Image Copied" msgstr "" -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Image Item Style" -msgstr "" - #: src/components/indicator/settingsMenu.ts:67 msgid "Incognito Mode" msgstr "" @@ -260,7 +251,7 @@ msgstr "" msgid "Item Size" msgstr "" -#: src/prefs/customization/itemStyleGroup.ts:18 +#: src/prefs/customization/itemStyleGroup.ts:17 msgid "Item Style" msgstr "" @@ -300,8 +291,6 @@ msgstr "" msgid "Manage Exclusions" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:31 #: src/prefs/customization/linkItemStyle.ts:32 msgid "Metadata Background Color" msgstr "" @@ -314,10 +303,6 @@ msgstr "" msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/imageItemStyle.ts:50 -msgid "Metadata Font" -msgstr "" - #: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Link Color" msgstr "" @@ -326,11 +311,6 @@ msgstr "" msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:41 -msgid "Metadata Text Color" -msgstr "" - #: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "" @@ -496,14 +476,11 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 msgid "You can change the background color of the body" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:32 #: src/prefs/customization/linkItemStyle.ts:33 msgid "You can change the background color of the metadata" msgstr "" @@ -527,8 +504,7 @@ msgstr "" msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/imageItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:21 msgid "You can change the font of the metadata" msgstr "" @@ -577,11 +553,6 @@ msgstr "" msgid "You can change the text color of the body" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:42 -msgid "You can change the text color of the metadata" -msgstr "" - #: src/prefs/customization/fileItemStyle.ts:33 msgid "You can change the text color of the title" msgstr "" diff --git a/resources/po/pl.po b/resources/po/pl.po index 80b39515..5985e242 100644 --- a/resources/po/pl.po +++ b/resources/po/pl.po @@ -50,7 +50,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 msgid "Body Background Color" @@ -59,14 +58,13 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 msgid "You can change the background color of the body" msgstr "" #: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/colorItemStyle.ts:21 #: src/prefs/customization/fileItemStyle.ts:50 #: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" @@ -96,30 +94,7 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -msgid "Metadata Background Color" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -msgid "You can change the background color of the metadata" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:41 -msgid "Metadata Text Color" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:42 -msgid "You can change the text color of the metadata" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/imageItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:21 msgid "You can change the font of the metadata" msgstr "" @@ -281,23 +256,11 @@ msgstr "" msgid "You can change the text color of the body" msgstr "" -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Change the style of the image item" -msgstr "" - -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Image Item Style" -msgstr "" - -#: src/prefs/customization/imageItemStyle.ts:50 -msgid "Metadata Font" -msgstr "" - #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "" -#: src/prefs/customization/itemStyleGroup.ts:18 +#: src/prefs/customization/itemStyleGroup.ts:17 msgid "Item Style" msgstr "" @@ -309,6 +272,14 @@ msgstr "" msgid "Link Item Style" msgstr "" +#: src/prefs/customization/linkItemStyle.ts:32 +msgid "Metadata Background Color" +msgstr "" + +#: src/prefs/customization/linkItemStyle.ts:33 +msgid "You can change the background color of the metadata" +msgstr "" + #: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "" diff --git a/resources/po/pt.po b/resources/po/pt.po index 3134e030..4dfc06a4 100644 --- a/resources/po/pt.po +++ b/resources/po/pt.po @@ -50,7 +50,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 msgid "Body Background Color" @@ -59,14 +58,13 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 msgid "You can change the background color of the body" msgstr "" #: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/colorItemStyle.ts:21 #: src/prefs/customization/fileItemStyle.ts:50 #: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" @@ -96,30 +94,7 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -msgid "Metadata Background Color" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -msgid "You can change the background color of the metadata" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:41 -msgid "Metadata Text Color" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:42 -msgid "You can change the text color of the metadata" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/imageItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:21 msgid "You can change the font of the metadata" msgstr "" @@ -281,23 +256,11 @@ msgstr "" msgid "You can change the text color of the body" msgstr "" -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Change the style of the image item" -msgstr "" - -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Image Item Style" -msgstr "" - -#: src/prefs/customization/imageItemStyle.ts:50 -msgid "Metadata Font" -msgstr "" - #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "" -#: src/prefs/customization/itemStyleGroup.ts:18 +#: src/prefs/customization/itemStyleGroup.ts:17 msgid "Item Style" msgstr "" @@ -309,6 +272,14 @@ msgstr "" msgid "Link Item Style" msgstr "" +#: src/prefs/customization/linkItemStyle.ts:32 +msgid "Metadata Background Color" +msgstr "" + +#: src/prefs/customization/linkItemStyle.ts:33 +msgid "You can change the background color of the metadata" +msgstr "" + #: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "" diff --git a/resources/po/pt_BR.po b/resources/po/pt_BR.po index da1161e3..0aa21d43 100644 --- a/resources/po/pt_BR.po +++ b/resources/po/pt_BR.po @@ -50,7 +50,6 @@ msgstr "Estilo do item de código" #: src/prefs/customization/codeItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 msgid "Body Background Color" @@ -59,14 +58,13 @@ msgstr "Cor de fundo do corpo" #: src/prefs/customization/codeItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 msgid "You can change the background color of the body" msgstr "Você pode mudar a cor de fundo do corpo" #: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/colorItemStyle.ts:21 #: src/prefs/customization/fileItemStyle.ts:50 #: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" @@ -96,30 +94,7 @@ msgstr "Mudar o estilo do item de cor" msgid "Color Item Style" msgstr "Estilo do item de cor" -#: src/prefs/customization/colorItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -msgid "Metadata Background Color" -msgstr "Cor de fundo dos metadados" - -#: src/prefs/customization/colorItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -msgid "You can change the background color of the metadata" -msgstr "Você pode mudar a cor de fundo dos metadados" - -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:41 -msgid "Metadata Text Color" -msgstr "Cor do texto dos metadados" - -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:42 -msgid "You can change the text color of the metadata" -msgstr "Você pode mudar a cor do texto dos metadados" - -#: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/imageItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:21 msgid "You can change the font of the metadata" msgstr "Você pode mudar a fonte dos metadados" @@ -281,23 +256,11 @@ msgstr "Cor do texto do corpo" msgid "You can change the text color of the body" msgstr "Você pode mudar a cor do texto do corpo" -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Change the style of the image item" -msgstr "Mudar o estilo do item de imagem" - -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Image Item Style" -msgstr "Estilo de Item de Imagem" - -#: src/prefs/customization/imageItemStyle.ts:50 -msgid "Metadata Font" -msgstr "Fonte da metadados" - #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "Customização" -#: src/prefs/customization/itemStyleGroup.ts:18 +#: src/prefs/customization/itemStyleGroup.ts:17 msgid "Item Style" msgstr "Estilo do item" @@ -309,6 +272,14 @@ msgstr "Mudar o estilo do item de link" msgid "Link Item Style" msgstr "Estilo de Item de Link" +#: src/prefs/customization/linkItemStyle.ts:32 +msgid "Metadata Background Color" +msgstr "Cor de fundo dos metadados" + +#: src/prefs/customization/linkItemStyle.ts:33 +msgid "You can change the background color of the metadata" +msgstr "Você pode mudar a cor de fundo dos metadados" + #: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "Cor do título do metadado" diff --git a/resources/po/ro.po b/resources/po/ro.po index b4024aeb..ec05a1c6 100644 --- a/resources/po/ro.po +++ b/resources/po/ro.po @@ -50,7 +50,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 msgid "Body Background Color" @@ -59,14 +58,13 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 msgid "You can change the background color of the body" msgstr "" #: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/colorItemStyle.ts:21 #: src/prefs/customization/fileItemStyle.ts:50 #: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" @@ -96,30 +94,7 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -msgid "Metadata Background Color" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -msgid "You can change the background color of the metadata" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:41 -msgid "Metadata Text Color" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:42 -msgid "You can change the text color of the metadata" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/imageItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:21 msgid "You can change the font of the metadata" msgstr "" @@ -281,23 +256,11 @@ msgstr "" msgid "You can change the text color of the body" msgstr "" -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Change the style of the image item" -msgstr "" - -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Image Item Style" -msgstr "" - -#: src/prefs/customization/imageItemStyle.ts:50 -msgid "Metadata Font" -msgstr "" - #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "" -#: src/prefs/customization/itemStyleGroup.ts:18 +#: src/prefs/customization/itemStyleGroup.ts:17 msgid "Item Style" msgstr "" @@ -309,6 +272,14 @@ msgstr "" msgid "Link Item Style" msgstr "" +#: src/prefs/customization/linkItemStyle.ts:32 +msgid "Metadata Background Color" +msgstr "" + +#: src/prefs/customization/linkItemStyle.ts:33 +msgid "You can change the background color of the metadata" +msgstr "" + #: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "" diff --git a/resources/po/ru.po b/resources/po/ru.po index 6d6e438c..cfb1bcf3 100644 --- a/resources/po/ru.po +++ b/resources/po/ru.po @@ -50,7 +50,6 @@ msgstr "Стиль элемента с кодом" #: src/prefs/customization/codeItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 msgid "Body Background Color" @@ -59,14 +58,13 @@ msgstr "Цвет фона содержимого" #: src/prefs/customization/codeItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 msgid "You can change the background color of the body" msgstr "Вы можете изменить цвет фона содержимого" #: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/colorItemStyle.ts:21 #: src/prefs/customization/fileItemStyle.ts:50 #: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" @@ -96,30 +94,7 @@ msgstr "Изменить стиль элемента с цветом" msgid "Color Item Style" msgstr "Стиль элемента с цветом" -#: src/prefs/customization/colorItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -msgid "Metadata Background Color" -msgstr "Цвет фона метаданных" - -#: src/prefs/customization/colorItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -msgid "You can change the background color of the metadata" -msgstr "Вы можете изменить цвет фона элемента со ссылкой" - -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:41 -msgid "Metadata Text Color" -msgstr "Цвет текста ссылки" - -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:42 -msgid "You can change the text color of the metadata" -msgstr "Вы можете изменить цвет текста ссылки" - -#: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/imageItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:21 msgid "You can change the font of the metadata" msgstr "Вы можете изменить шрифт метаданных" @@ -281,23 +256,11 @@ msgstr "Цвет основного текста" msgid "You can change the text color of the body" msgstr "Вы можете изменить цвет основного текста" -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Change the style of the image item" -msgstr "Изменить стиль элемента с изображением" - -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Image Item Style" -msgstr "Стиль элемента с изображением" - -#: src/prefs/customization/imageItemStyle.ts:50 -msgid "Metadata Font" -msgstr "Шрифт метаданных" - #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "Настройка" -#: src/prefs/customization/itemStyleGroup.ts:18 +#: src/prefs/customization/itemStyleGroup.ts:17 msgid "Item Style" msgstr "Стиль элемента" @@ -309,6 +272,14 @@ msgstr "Изменить стиль элемента со сслыкой" msgid "Link Item Style" msgstr "Стиль элемента со ссылкой" +#: src/prefs/customization/linkItemStyle.ts:32 +msgid "Metadata Background Color" +msgstr "Цвет фона метаданных" + +#: src/prefs/customization/linkItemStyle.ts:33 +msgid "You can change the background color of the metadata" +msgstr "Вы можете изменить цвет фона элемента со ссылкой" + #: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "Цвет заголовка метаданных" diff --git a/resources/po/sk.po b/resources/po/sk.po index 943f6dac..5ae85302 100644 --- a/resources/po/sk.po +++ b/resources/po/sk.po @@ -50,7 +50,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 msgid "Body Background Color" @@ -59,14 +58,13 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 msgid "You can change the background color of the body" msgstr "" #: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/colorItemStyle.ts:21 #: src/prefs/customization/fileItemStyle.ts:50 #: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" @@ -96,30 +94,7 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -msgid "Metadata Background Color" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -msgid "You can change the background color of the metadata" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:41 -msgid "Metadata Text Color" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:42 -msgid "You can change the text color of the metadata" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/imageItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:21 msgid "You can change the font of the metadata" msgstr "" @@ -281,23 +256,11 @@ msgstr "" msgid "You can change the text color of the body" msgstr "" -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Change the style of the image item" -msgstr "" - -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Image Item Style" -msgstr "" - -#: src/prefs/customization/imageItemStyle.ts:50 -msgid "Metadata Font" -msgstr "" - #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "" -#: src/prefs/customization/itemStyleGroup.ts:18 +#: src/prefs/customization/itemStyleGroup.ts:17 msgid "Item Style" msgstr "" @@ -309,6 +272,14 @@ msgstr "" msgid "Link Item Style" msgstr "" +#: src/prefs/customization/linkItemStyle.ts:32 +msgid "Metadata Background Color" +msgstr "" + +#: src/prefs/customization/linkItemStyle.ts:33 +msgid "You can change the background color of the metadata" +msgstr "" + #: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "" diff --git a/resources/po/sv.po b/resources/po/sv.po index 416f1248..8fda92e2 100644 --- a/resources/po/sv.po +++ b/resources/po/sv.po @@ -50,7 +50,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 msgid "Body Background Color" @@ -59,14 +58,13 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 msgid "You can change the background color of the body" msgstr "" #: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/colorItemStyle.ts:21 #: src/prefs/customization/fileItemStyle.ts:50 #: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" @@ -96,30 +94,7 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -msgid "Metadata Background Color" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -msgid "You can change the background color of the metadata" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:41 -msgid "Metadata Text Color" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:42 -msgid "You can change the text color of the metadata" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/imageItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:21 msgid "You can change the font of the metadata" msgstr "" @@ -281,23 +256,11 @@ msgstr "" msgid "You can change the text color of the body" msgstr "" -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Change the style of the image item" -msgstr "" - -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Image Item Style" -msgstr "" - -#: src/prefs/customization/imageItemStyle.ts:50 -msgid "Metadata Font" -msgstr "" - #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "" -#: src/prefs/customization/itemStyleGroup.ts:18 +#: src/prefs/customization/itemStyleGroup.ts:17 msgid "Item Style" msgstr "" @@ -309,6 +272,14 @@ msgstr "" msgid "Link Item Style" msgstr "" +#: src/prefs/customization/linkItemStyle.ts:32 +msgid "Metadata Background Color" +msgstr "" + +#: src/prefs/customization/linkItemStyle.ts:33 +msgid "You can change the background color of the metadata" +msgstr "" + #: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "" diff --git a/resources/po/tr.po b/resources/po/tr.po index 9e4fc728..e2b38d1c 100644 --- a/resources/po/tr.po +++ b/resources/po/tr.po @@ -50,7 +50,6 @@ msgstr "Kod Öğe Stili" #: src/prefs/customization/codeItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 msgid "Body Background Color" @@ -59,14 +58,13 @@ msgstr "Gövde Arkaplan Rengi" #: src/prefs/customization/codeItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 msgid "You can change the background color of the body" msgstr "Gövde arkaplan rengini değiştirebilirsiniz" #: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/colorItemStyle.ts:21 #: src/prefs/customization/fileItemStyle.ts:50 #: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" @@ -96,30 +94,7 @@ msgstr "Renk öğesinin tarzını değiştir" msgid "Color Item Style" msgstr "Renk Öğesi Tarzı" -#: src/prefs/customization/colorItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -msgid "Metadata Background Color" -msgstr "Metaveri Arkaplan Rengi" - -#: src/prefs/customization/colorItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -msgid "You can change the background color of the metadata" -msgstr "Metaveri arkaplan rengini değiştirebilirsiniz" - -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:41 -msgid "Metadata Text Color" -msgstr "Metaveri Yazı Rengi" - -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:42 -msgid "You can change the text color of the metadata" -msgstr "Metaveri yazı rengini değiştirebilirsiniz" - -#: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/imageItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:21 msgid "You can change the font of the metadata" msgstr "Metaveri yazı tipini değiştirebilirsiniz" @@ -281,23 +256,11 @@ msgstr "Gövde Yazı Rengi" msgid "You can change the text color of the body" msgstr "Gövdenin yazı rengini değiştirebilirsiniz" -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Change the style of the image item" -msgstr "Resim öğesinin tarzını değiştirebilirsiniz" - -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Image Item Style" -msgstr "Resim Öğe Tarzı" - -#: src/prefs/customization/imageItemStyle.ts:50 -msgid "Metadata Font" -msgstr "Metaveri Yazı Tipi" - #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "Özelleştirme" -#: src/prefs/customization/itemStyleGroup.ts:18 +#: src/prefs/customization/itemStyleGroup.ts:17 msgid "Item Style" msgstr "Öğe Tarzı" @@ -309,6 +272,14 @@ msgstr "Bağlantı öğesinin tarzını değiştir" msgid "Link Item Style" msgstr "Bağlantı Öğe Tarzı" +#: src/prefs/customization/linkItemStyle.ts:32 +msgid "Metadata Background Color" +msgstr "Metaveri Arkaplan Rengi" + +#: src/prefs/customization/linkItemStyle.ts:33 +msgid "You can change the background color of the metadata" +msgstr "Metaveri arkaplan rengini değiştirebilirsiniz" + #: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "Metaveri Başlık Rengi" diff --git a/resources/po/uk.po b/resources/po/uk.po index 7bb69f52..8ea8d41e 100644 --- a/resources/po/uk.po +++ b/resources/po/uk.po @@ -50,7 +50,6 @@ msgstr "Стиль елемента коду" #: src/prefs/customization/codeItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 msgid "Body Background Color" @@ -59,14 +58,13 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 msgid "You can change the background color of the body" msgstr "Ви можете змінити колір фону тіла" #: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/colorItemStyle.ts:21 #: src/prefs/customization/fileItemStyle.ts:50 #: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" @@ -96,30 +94,7 @@ msgstr "Змінити стиль елемента кольору" msgid "Color Item Style" msgstr "Стиль елемента кольору" -#: src/prefs/customization/colorItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -msgid "Metadata Background Color" -msgstr "Колір фону метаданих" - -#: src/prefs/customization/colorItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -msgid "You can change the background color of the metadata" -msgstr "Ви можете змінити колір фону метаданих" - -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:41 -msgid "Metadata Text Color" -msgstr "Колір тексту метаданих" - -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:42 -msgid "You can change the text color of the metadata" -msgstr "Ви можете змінити колір тексту метаданих" - -#: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/imageItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:21 msgid "You can change the font of the metadata" msgstr "Ви можете змінити шрифт метаданих" @@ -281,23 +256,11 @@ msgstr "Колір тексту тіла" msgid "You can change the text color of the body" msgstr "Ви можете змінити колір тексту тіла" -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Change the style of the image item" -msgstr "Змінити стиль елемента зображення" - -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Image Item Style" -msgstr "Стиль елемента зображення" - -#: src/prefs/customization/imageItemStyle.ts:50 -msgid "Metadata Font" -msgstr "Шрифт метаданих" - #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "Персоналізація" -#: src/prefs/customization/itemStyleGroup.ts:18 +#: src/prefs/customization/itemStyleGroup.ts:17 msgid "Item Style" msgstr "Стиль елемента" @@ -309,6 +272,14 @@ msgstr "Змінити стиль елемента посилання" msgid "Link Item Style" msgstr "Стиль елемента посилання" +#: src/prefs/customization/linkItemStyle.ts:32 +msgid "Metadata Background Color" +msgstr "" + +#: src/prefs/customization/linkItemStyle.ts:33 +msgid "You can change the background color of the metadata" +msgstr "" + #: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "Колір заголовка метаданих" diff --git a/resources/po/vi.po b/resources/po/vi.po index fa7bbf39..61c571d0 100644 --- a/resources/po/vi.po +++ b/resources/po/vi.po @@ -50,7 +50,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 msgid "Body Background Color" @@ -59,14 +58,13 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 msgid "You can change the background color of the body" msgstr "" #: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/colorItemStyle.ts:21 #: src/prefs/customization/fileItemStyle.ts:50 #: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" @@ -96,30 +94,7 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -msgid "Metadata Background Color" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -msgid "You can change the background color of the metadata" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:41 -msgid "Metadata Text Color" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:42 -msgid "You can change the text color of the metadata" -msgstr "" - -#: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/imageItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:21 msgid "You can change the font of the metadata" msgstr "" @@ -281,23 +256,11 @@ msgstr "" msgid "You can change the text color of the body" msgstr "" -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Change the style of the image item" -msgstr "" - -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Image Item Style" -msgstr "" - -#: src/prefs/customization/imageItemStyle.ts:50 -msgid "Metadata Font" -msgstr "" - #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "" -#: src/prefs/customization/itemStyleGroup.ts:18 +#: src/prefs/customization/itemStyleGroup.ts:17 msgid "Item Style" msgstr "" @@ -309,6 +272,14 @@ msgstr "" msgid "Link Item Style" msgstr "" +#: src/prefs/customization/linkItemStyle.ts:32 +msgid "Metadata Background Color" +msgstr "" + +#: src/prefs/customization/linkItemStyle.ts:33 +msgid "You can change the background color of the metadata" +msgstr "" + #: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "" diff --git a/resources/po/zh_CN.po b/resources/po/zh_CN.po index f5e37392..c3fa0081 100644 --- a/resources/po/zh_CN.po +++ b/resources/po/zh_CN.po @@ -50,7 +50,6 @@ msgstr "代码项目风格" #: src/prefs/customization/codeItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 msgid "Body Background Color" @@ -59,14 +58,13 @@ msgstr "正文背景色" #: src/prefs/customization/codeItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 msgid "You can change the background color of the body" msgstr "修改正文背景颜色" #: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/colorItemStyle.ts:21 #: src/prefs/customization/fileItemStyle.ts:50 #: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" @@ -96,30 +94,7 @@ msgstr "修改色彩项目风格" msgid "Color Item Style" msgstr "色彩项目风格" -#: src/prefs/customization/colorItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -msgid "Metadata Background Color" -msgstr "元数据背景色" - -#: src/prefs/customization/colorItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -msgid "You can change the background color of the metadata" -msgstr "修改元数据背景颜色" - -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:41 -msgid "Metadata Text Color" -msgstr "元数据文本颜色" - -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:42 -msgid "You can change the text color of the metadata" -msgstr "修改元数据文本颜色" - -#: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/imageItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:21 msgid "You can change the font of the metadata" msgstr "修改元数据文本字体" @@ -281,23 +256,11 @@ msgstr "正文字体颜色" msgid "You can change the text color of the body" msgstr "修改正文字体颜色" -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Change the style of the image item" -msgstr "修改图像项目风格" - -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Image Item Style" -msgstr "图像项目风格" - -#: src/prefs/customization/imageItemStyle.ts:50 -msgid "Metadata Font" -msgstr "元数据字体" - #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "自定义" -#: src/prefs/customization/itemStyleGroup.ts:18 +#: src/prefs/customization/itemStyleGroup.ts:17 msgid "Item Style" msgstr "项目风格" @@ -309,6 +272,14 @@ msgstr "修改链接项目风格" msgid "Link Item Style" msgstr "链接项目风格" +#: src/prefs/customization/linkItemStyle.ts:32 +msgid "Metadata Background Color" +msgstr "元数据背景色" + +#: src/prefs/customization/linkItemStyle.ts:33 +msgid "You can change the background color of the metadata" +msgstr "修改元数据背景颜色" + #: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "元数据标题颜色" diff --git a/resources/po/zh_TW.po b/resources/po/zh_TW.po index b3be5950..0517e645 100644 --- a/resources/po/zh_TW.po +++ b/resources/po/zh_TW.po @@ -50,7 +50,6 @@ msgstr "程式物件主題" #: src/prefs/customization/codeItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 msgid "Body Background Color" @@ -59,14 +58,13 @@ msgstr "內容背景顏色" #: src/prefs/customization/codeItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 msgid "You can change the background color of the body" msgstr "你可以更換內容的背景顏色" #: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/colorItemStyle.ts:21 #: src/prefs/customization/fileItemStyle.ts:50 #: src/prefs/customization/textItemStyle.ts:35 msgid "Body Font" @@ -96,30 +94,7 @@ msgstr "切換顏色物件主題" msgid "Color Item Style" msgstr "顏色物件主題" -#: src/prefs/customization/colorItemStyle.ts:22 -#: src/prefs/customization/imageItemStyle.ts:31 -#: src/prefs/customization/linkItemStyle.ts:32 -msgid "Metadata Background Color" -msgstr "詮釋資料背景顏色" - -#: src/prefs/customization/colorItemStyle.ts:23 -#: src/prefs/customization/imageItemStyle.ts:32 -#: src/prefs/customization/linkItemStyle.ts:33 -msgid "You can change the background color of the metadata" -msgstr "你可以更換詮釋資料的背景顏色" - -#: src/prefs/customization/colorItemStyle.ts:32 -#: src/prefs/customization/imageItemStyle.ts:41 -msgid "Metadata Text Color" -msgstr "詮釋資料字體顏色" - -#: src/prefs/customization/colorItemStyle.ts:33 -#: src/prefs/customization/imageItemStyle.ts:42 -msgid "You can change the text color of the metadata" -msgstr "你可以更換詮釋資料的字體顏色" - -#: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/imageItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:21 msgid "You can change the font of the metadata" msgstr "你可以更換詮釋資料的字體" @@ -281,23 +256,11 @@ msgstr "內容字體顏色" msgid "You can change the text color of the body" msgstr "你可以更換內容的字體顏色" -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Change the style of the image item" -msgstr "切換圖片物件主題" - -#: src/prefs/customization/imageItemStyle.ts:14 -msgid "Image Item Style" -msgstr "圖片物件風格" - -#: src/prefs/customization/imageItemStyle.ts:50 -msgid "Metadata Font" -msgstr "詮釋資料字體" - #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "個人化" -#: src/prefs/customization/itemStyleGroup.ts:18 +#: src/prefs/customization/itemStyleGroup.ts:17 msgid "Item Style" msgstr "物件風格" @@ -309,6 +272,14 @@ msgstr "切換連結物件主題" msgid "Link Item Style" msgstr "連結物件風格" +#: src/prefs/customization/linkItemStyle.ts:32 +msgid "Metadata Background Color" +msgstr "詮釋資料背景顏色" + +#: src/prefs/customization/linkItemStyle.ts:33 +msgid "You can change the background color of the metadata" +msgstr "你可以更換詮釋資料的背景顏色" + #: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Title Color" msgstr "詮釋資料標題顏色" diff --git a/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml b/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml index 67a796b7..f6760fc3 100644 --- a/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml +++ b/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml @@ -157,7 +157,6 @@ - @@ -301,34 +300,6 @@ - - - 'rgb(48, 48, 48)' - body-bg-color - body-bg-color - - - 'rgba(0, 0, 0, 0.7)' - metadata-bg-color - metadata-bg-color - - - 'rgb(255, 255, 255)' - metadata-color - metadata-color - - - 'Cantarell Regular' - metadata-font-family - metadata-font-family - - - 12 - metadata-font-size - metadata-font-size - - - 'rgb(48, 48, 48)' @@ -354,16 +325,6 @@ - - 'rgb(0, 0, 0)' - metadata-bg-color - metadata-bg-color - - - 'rgb(255, 255, 255)' - metadata-color - metadata-color - 'Cantarell Regular' metadata-font-family diff --git a/src/components/imagePanoItem.ts b/src/components/imagePanoItem.ts index 153ff90e..e68441c8 100644 --- a/src/components/imagePanoItem.ts +++ b/src/components/imagePanoItem.ts @@ -10,7 +10,6 @@ const NO_IMAGE_FOUND_FILE_NAME = 'no-image-found.svg'; @registerGObjectClass export class ImagePanoItem extends PanoItem { - private imageItemSettings: Gio.Settings; private ext: ExtensionBase; constructor(ext: ExtensionBase, clipboardManager: ClipboardManager, dbItem: DBItem) { @@ -18,25 +17,18 @@ export class ImagePanoItem extends PanoItem { this.ext = ext; - this.imageItemSettings = this.settings.get_child('image-item'); - this.connect('activated', this.setClipboardContent.bind(this)); this.setStyle(); - this.imageItemSettings.connect('changed', this.setStyle.bind(this)); } private setStyle() { - const bodyBgColor = this.imageItemSettings.get_string('body-bg-color'); - let imageFilePath = `file://${getImagesPath(this.ext)}/${this.dbItem.content}.png`; const imageFile = Gio.File.new_for_uri(imageFilePath); if (!imageFile.query_exists(null)) { imageFilePath = `file://${this.ext.path}/images/${NO_IMAGE_FOUND_FILE_NAME}`; } - this.body.set_style( - `background-color: ${bodyBgColor}; background-image: url(${imageFilePath}); background-size: cover;`, - ); + this.body.set_style(`background-image: url(${imageFilePath}); background-size: cover;`); } private setClipboardContent(): void { diff --git a/src/prefs/customization/colorItemStyle.ts b/src/prefs/customization/colorItemStyle.ts index ad0831ec..dcb427ec 100644 --- a/src/prefs/customization/colorItemStyle.ts +++ b/src/prefs/customization/colorItemStyle.ts @@ -1,7 +1,7 @@ import Gio from '@girs/gio-2.0'; import type { ExtensionBase } from '@girs/gnome-shell/dist/extensions/sharedInternals'; import { ItemExpanderRow } from '@pano/prefs/customization/itemExpanderRow'; -import { createColorRow, createFontRow } from '@pano/prefs/customization/utils'; +import { createFontRow } from '@pano/prefs/customization/utils'; import { registerGObjectClass } from '@pano/utils/gjs'; import { getPanoItemTypes } from '@pano/utils/panoItemType'; import { getCurrentExtensionSettings, gettext } from '@pano/utils/shell'; @@ -16,26 +16,6 @@ export class ColorItemStyleRow extends ItemExpanderRow { this.settings = getCurrentExtensionSettings(ext).get_child('color-item'); - // create metadata background color row - this.add_row( - createColorRow( - _('Metadata Background Color'), - _('You can change the background color of the metadata'), - this.settings, - 'metadata-bg-color', - ), - ); - - // create metadata text color row - this.add_row( - createColorRow( - _('Metadata Text Color'), - _('You can change the text color of the metadata'), - this.settings, - 'metadata-color', - ), - ); - // create metadata font row this.add_row( createFontRow(_('Body Font'), _('You can change the font of the metadata'), this.settings, 'metadata-font'), diff --git a/src/prefs/customization/imageItemStyle.ts b/src/prefs/customization/imageItemStyle.ts deleted file mode 100644 index 0def2ad7..00000000 --- a/src/prefs/customization/imageItemStyle.ts +++ /dev/null @@ -1,53 +0,0 @@ -import Gio from '@girs/gio-2.0'; -import type { ExtensionBase } from '@girs/gnome-shell/dist/extensions/sharedInternals'; -import { ItemExpanderRow } from '@pano/prefs/customization/itemExpanderRow'; -import { createColorRow, createFontRow } from '@pano/prefs/customization/utils'; -import { registerGObjectClass } from '@pano/utils/gjs'; -import { getPanoItemTypes } from '@pano/utils/panoItemType'; -import { getCurrentExtensionSettings, gettext } from '@pano/utils/shell'; -@registerGObjectClass -export class ImageItemStyleRow extends ItemExpanderRow { - private settings: Gio.Settings; - - constructor(ext: ExtensionBase) { - const _ = gettext(ext); - super(ext, _('Image Item Style'), _('Change the style of the image item'), getPanoItemTypes(ext).IMAGE.iconName); - - this.settings = getCurrentExtensionSettings(ext).get_child('image-item'); - - // create body background color row - this.add_row( - createColorRow( - _('Body Background Color'), - _('You can change the background color of the body'), - this.settings, - 'body-bg-color', - ), - ); - - // create metadata background color row - this.add_row( - createColorRow( - _('Metadata Background Color'), - _('You can change the background color of the metadata'), - this.settings, - 'metadata-bg-color', - ), - ); - - // create metadata text color row - this.add_row( - createColorRow( - _('Metadata Text Color'), - _('You can change the text color of the metadata'), - this.settings, - 'metadata-color', - ), - ); - - // create metadata font row - this.add_row( - createFontRow(_('Metadata Font'), _('You can change the font of the metadata'), this.settings, 'metadata-font'), - ); - } -} diff --git a/src/prefs/customization/itemStyleGroup.ts b/src/prefs/customization/itemStyleGroup.ts index 8c442595..23384cd0 100644 --- a/src/prefs/customization/itemStyleGroup.ts +++ b/src/prefs/customization/itemStyleGroup.ts @@ -4,7 +4,6 @@ import { CodeItemStyleRow } from '@pano/prefs/customization/codeItemStyle'; import { ColorItemStyleRow } from '@pano/prefs/customization/colorItemStyle'; import { EmojiItemStyleRow } from '@pano/prefs/customization/emojiItemStyle'; import { FileItemStyleRow } from '@pano/prefs/customization/fileItemStyle'; -import { ImageItemStyleRow } from '@pano/prefs/customization/imageItemStyle'; import { LinkItemStyleRow } from '@pano/prefs/customization/linkItemStyle'; import { TextItemStyleRow } from '@pano/prefs/customization/textItemStyle'; import { registerGObjectClass } from '@pano/utils/gjs'; @@ -23,7 +22,6 @@ export class ItemStyleGroup extends Adw.PreferencesGroup { this.add(new TextItemStyleRow(ext)); this.add(new EmojiItemStyleRow(ext)); this.add(new FileItemStyleRow(ext)); - this.add(new ImageItemStyleRow(ext)); this.add(new CodeItemStyleRow(ext)); this.add(new ColorItemStyleRow(ext)); } From cab6c9f68d91eec4f76388abd57b5ceee304e7f0 Mon Sep 17 00:00:00 2001 From: boerdereinar Date: Sun, 28 Apr 2024 22:36:11 +0200 Subject: [PATCH 03/45] Shorten /home/user to ~ --- src/components/filePanoItem.ts | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/components/filePanoItem.ts b/src/components/filePanoItem.ts index d1d7afe6..7e5af61b 100644 --- a/src/components/filePanoItem.ts +++ b/src/components/filePanoItem.ts @@ -1,5 +1,6 @@ import Clutter from '@girs/clutter-16'; import Gio from '@girs/gio-2.0'; +import GLib from '@girs/glib-2.0'; import type { ExtensionBase } from '@girs/gnome-shell/dist/extensions/sharedInternals'; import Pango from '@girs/pango-1.0'; import St from '@girs/st-16'; @@ -63,6 +64,7 @@ export class FilePanoItem extends PanoItem { }); // Check for the common parent directory for all files + const homeDir = GLib.get_home_dir(); const commonDirectory = this.fileList .map((f) => { const items = f.split('://').filter((c) => !!c); @@ -87,7 +89,7 @@ export class FilePanoItem extends PanoItem { if (this.fileList.length > 1) { const directoryLabel = new St.Label({ - text: commonDirectory, + text: commonDirectory.replace(homeDir, '~'), styleClass: 'top-level-directory', xAlign: Clutter.ActorAlign.FILL, xExpand: true, @@ -121,7 +123,10 @@ export class FilePanoItem extends PanoItem { }); const uriLabel = new St.Label({ - text: this.fileList.length == 1 ? uri : uri.substring(commonDirectory.length + 1), + text: + this.fileList.length == 1 + ? uri.replace(homeDir, '~') + : uri.substring(commonDirectory.length + 1).replace(homeDir, '~'), styleClass: 'file-label', xAlign: Clutter.ActorAlign.FILL, yAlign: Clutter.ActorAlign.CENTER, From 753732b32830c7d8c85560e8fd9e1c99a6394f26 Mon Sep 17 00:00:00 2001 From: boerdereinar Date: Mon, 29 Apr 2024 23:41:01 +0200 Subject: [PATCH 04/45] add back headers --- resources/po/ar.po | 189 ++++++++++----- resources/po/bg.po | 189 ++++++++++----- resources/po/cs.po | 191 ++++++++++----- resources/po/da.po | 189 ++++++++++----- resources/po/de.po | 191 ++++++++++----- resources/po/el.po | 189 ++++++++++----- resources/po/en.po | 189 ++++++++++----- resources/po/es.po | 191 ++++++++++----- resources/po/et.po | 189 ++++++++++----- resources/po/fi.po | 189 ++++++++++----- resources/po/fr.po | 191 ++++++++++----- resources/po/he.po | 189 ++++++++++----- resources/po/hr.po | 189 ++++++++++----- resources/po/hu.po | 189 ++++++++++----- resources/po/is.po | 189 ++++++++++----- resources/po/it.po | 191 ++++++++++----- resources/po/ja.po | 189 ++++++++++----- resources/po/ko.po | 201 ++++++++++------ resources/po/nl.po | 189 ++++++++++----- resources/po/no.po | 189 ++++++++++----- resources/po/oc.po | 189 ++++++++++----- resources/po/pano@elhan.io.pot | 193 ++++++++++----- resources/po/pl.po | 189 ++++++++++----- resources/po/pt.po | 189 ++++++++++----- resources/po/pt_BR.po | 191 ++++++++++----- resources/po/ro.po | 189 ++++++++++----- resources/po/ru.po | 191 ++++++++++----- resources/po/sk.po | 189 ++++++++++----- resources/po/sv.po | 189 ++++++++++----- resources/po/tr.po | 191 ++++++++++----- resources/po/uk.po | 221 ++++++++++++------ resources/po/vi.po | 189 ++++++++++----- resources/po/zh_CN.po | 191 ++++++++++----- resources/po/zh_TW.po | 191 ++++++++++----- ...rg.gnome.shell.extensions.pano.gschema.xml | 99 ++++++++ src/components/codePanoItem.ts | 5 +- src/components/colorPanoItem.ts | 34 ++- src/components/emojiPanoItem.ts | 25 +- src/components/filePanoItem.ts | 7 +- src/components/imagePanoItem.ts | 7 + src/components/linkPanoItem.ts | 5 +- src/components/panoItem.ts | 46 ++-- src/components/panoItemHeader.ts | 140 +++++++++++ src/components/panoItemOverlay.ts | 45 +--- src/components/textPanoItem.ts | 7 +- src/containers/panoWindow.ts | 6 +- src/prefs/customization/codeItemStyle.ts | 20 ++ src/prefs/customization/colorItemStyle.ts | 22 +- src/prefs/customization/commonStyleGroup.ts | 15 ++ src/prefs/customization/emojiItemStyle.ts | 20 ++ src/prefs/customization/fileItemStyle.ts | 20 ++ src/prefs/customization/imageItemStyle.ts | 38 +++ src/prefs/customization/itemStyleGroup.ts | 2 + src/prefs/customization/linkItemStyle.ts | 20 ++ src/prefs/customization/textItemStyle.ts | 20 ++ src/styles/stylesheet.css | 69 ++++-- 56 files changed, 4970 insertions(+), 2196 deletions(-) create mode 100644 src/components/panoItemHeader.ts create mode 100644 src/prefs/customization/imageItemStyle.ts diff --git a/resources/po/ar.po b/resources/po/ar.po index 5476046e..bab8b9f3 100644 --- a/resources/po/ar.po +++ b/resources/po/ar.po @@ -48,41 +48,81 @@ msgid "Code Item Style" msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 +#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Body Background Color" +msgid "Header Background Color" msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 +#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 +msgid "You can change the background color of the header" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:32 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/emojiItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/textItemStyle.ts:32 +msgid "Header Text Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:33 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/emojiItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/textItemStyle.ts:33 +msgid "You can change the text color of the header" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:42 +#: src/prefs/customization/emojiItemStyle.ts:42 +#: src/prefs/customization/fileItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/textItemStyle.ts:42 +msgid "Body Background Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:43 +#: src/prefs/customization/emojiItemStyle.ts:43 +#: src/prefs/customization/fileItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:21 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:35 -#: src/prefs/customization/textItemStyle.ts:40 +#: src/prefs/customization/codeItemStyle.ts:55 +#: src/prefs/customization/textItemStyle.ts:60 msgid "Character Length" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:36 -#: src/prefs/customization/textItemStyle.ts:41 +#: src/prefs/customization/codeItemStyle.ts:56 +#: src/prefs/customization/textItemStyle.ts:61 msgid "You can change the character length of the visible text in the body" msgstr "" @@ -94,7 +134,7 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:21 +#: src/prefs/customization/colorItemStyle.ts:41 msgid "You can change the font of the metadata" msgstr "" @@ -127,82 +167,107 @@ msgid "You can change the item size" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:38 -msgid "Compact Mode" +msgid "Enable Headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:39 -msgid "Controls the compactness of the clipboard item." +msgid "Controls the visibility of the clipboard item headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:47 -msgid "Window Position" +msgid "Compact Mode" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:48 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:56 +msgid "Window Position" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:67 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:75 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:83 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Item Title Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/fileItemStyle.ts:61 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "Item Date Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "You can change the font of the date" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:105 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:113 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -214,11 +279,11 @@ msgstr "" msgid "Emoji Item Style" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "Emoji Size" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "You can change the emoji size" msgstr "" @@ -230,37 +295,41 @@ msgstr "" msgid "File Item Style" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:52 msgid "Title Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:53 msgid "You can change the text color of the title" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:61 msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "Body Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "You can change the text color of the body" msgstr "" +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Change the style of the image item" +msgstr "" + +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Image Item Style" +msgstr "" + #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "" -#: src/prefs/customization/itemStyleGroup.ts:17 +#: src/prefs/customization/itemStyleGroup.ts:18 msgid "Item Style" msgstr "" @@ -272,59 +341,59 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:112 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:113 msgid "You can change the font of the metadata link" msgstr "" diff --git a/resources/po/bg.po b/resources/po/bg.po index 18134260..879fc6c1 100644 --- a/resources/po/bg.po +++ b/resources/po/bg.po @@ -48,41 +48,81 @@ msgid "Code Item Style" msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 +#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Body Background Color" +msgid "Header Background Color" msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 +#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 +msgid "You can change the background color of the header" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:32 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/emojiItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/textItemStyle.ts:32 +msgid "Header Text Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:33 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/emojiItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/textItemStyle.ts:33 +msgid "You can change the text color of the header" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:42 +#: src/prefs/customization/emojiItemStyle.ts:42 +#: src/prefs/customization/fileItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/textItemStyle.ts:42 +msgid "Body Background Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:43 +#: src/prefs/customization/emojiItemStyle.ts:43 +#: src/prefs/customization/fileItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:21 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:35 -#: src/prefs/customization/textItemStyle.ts:40 +#: src/prefs/customization/codeItemStyle.ts:55 +#: src/prefs/customization/textItemStyle.ts:60 msgid "Character Length" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:36 -#: src/prefs/customization/textItemStyle.ts:41 +#: src/prefs/customization/codeItemStyle.ts:56 +#: src/prefs/customization/textItemStyle.ts:61 msgid "You can change the character length of the visible text in the body" msgstr "" @@ -94,7 +134,7 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:21 +#: src/prefs/customization/colorItemStyle.ts:41 msgid "You can change the font of the metadata" msgstr "" @@ -127,82 +167,107 @@ msgid "You can change the item size" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:38 -msgid "Compact Mode" +msgid "Enable Headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:39 -msgid "Controls the compactness of the clipboard item." +msgid "Controls the visibility of the clipboard item headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:47 -msgid "Window Position" +msgid "Compact Mode" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:48 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:56 +msgid "Window Position" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:67 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:75 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:83 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Item Title Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/fileItemStyle.ts:61 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "Item Date Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "You can change the font of the date" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:105 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:113 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -214,11 +279,11 @@ msgstr "" msgid "Emoji Item Style" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "Emoji Size" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "You can change the emoji size" msgstr "" @@ -230,37 +295,41 @@ msgstr "" msgid "File Item Style" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:52 msgid "Title Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:53 msgid "You can change the text color of the title" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:61 msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "Body Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "You can change the text color of the body" msgstr "" +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Change the style of the image item" +msgstr "" + +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Image Item Style" +msgstr "" + #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "" -#: src/prefs/customization/itemStyleGroup.ts:17 +#: src/prefs/customization/itemStyleGroup.ts:18 msgid "Item Style" msgstr "" @@ -272,59 +341,59 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:112 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:113 msgid "You can change the font of the metadata link" msgstr "" diff --git a/resources/po/cs.po b/resources/po/cs.po index 817728d7..993cfc70 100644 --- a/resources/po/cs.po +++ b/resources/po/cs.po @@ -48,41 +48,81 @@ msgid "Code Item Style" msgstr "Kód - nastavení stylů" #: src/prefs/customization/codeItemStyle.ts:22 +#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Body Background Color" -msgstr "Barva pozadí těla" +msgid "Header Background Color" +msgstr "Barva pozadí záhlaví" #: src/prefs/customization/codeItemStyle.ts:23 +#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 +msgid "You can change the background color of the header" +msgstr "Můžete změnit barvu pozadí záhlaví" + +#: src/prefs/customization/codeItemStyle.ts:32 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/emojiItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/textItemStyle.ts:32 +msgid "Header Text Color" +msgstr "Barva textu záhlaví" + +#: src/prefs/customization/codeItemStyle.ts:33 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/emojiItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/textItemStyle.ts:33 +msgid "You can change the text color of the header" +msgstr "Můžete změnit barvu textu záhlaví" + +#: src/prefs/customization/codeItemStyle.ts:42 +#: src/prefs/customization/emojiItemStyle.ts:42 +#: src/prefs/customization/fileItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/textItemStyle.ts:42 +msgid "Body Background Color" +msgstr "Barva pozadí těla" + +#: src/prefs/customization/codeItemStyle.ts:43 +#: src/prefs/customization/emojiItemStyle.ts:43 +#: src/prefs/customization/fileItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "Můžete změnit barvu pozadí těla" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:21 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "Písmo těla" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "Můžete změnit písmo těla" -#: src/prefs/customization/codeItemStyle.ts:35 -#: src/prefs/customization/textItemStyle.ts:40 +#: src/prefs/customization/codeItemStyle.ts:55 +#: src/prefs/customization/textItemStyle.ts:60 msgid "Character Length" msgstr "Počet znaků" -#: src/prefs/customization/codeItemStyle.ts:36 -#: src/prefs/customization/textItemStyle.ts:41 +#: src/prefs/customization/codeItemStyle.ts:56 +#: src/prefs/customization/textItemStyle.ts:61 msgid "You can change the character length of the visible text in the body" msgstr "Můžete změnit počet znaků viditelného textu v těle" @@ -94,7 +134,7 @@ msgstr "Změňte styly barvy" msgid "Color Item Style" msgstr "Barva - nastavení stylů" -#: src/prefs/customization/colorItemStyle.ts:21 +#: src/prefs/customization/colorItemStyle.ts:41 msgid "You can change the font of the metadata" msgstr "Můžete změnit písmo metadat" @@ -127,82 +167,107 @@ msgid "You can change the item size" msgstr "Můžete změnit velikost položky" #: src/prefs/customization/commonStyleGroup.ts:38 -msgid "Compact Mode" +msgid "Enable Headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:39 -msgid "Controls the compactness of the clipboard item." +msgid "Controls the visibility of the clipboard item headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:48 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:56 msgid "Window Position" msgstr "Poloha okna" -#: src/prefs/customization/commonStyleGroup.ts:48 +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "You can change position of the Pano" msgstr "Můžete změnit pozici Pano" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Bottom" msgstr "Dole" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Left" msgstr "Vlevo" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Right" msgstr "Vpravo" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Top" msgstr "Nahoře" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Window Background Color" msgstr "Barva pozadí okna" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:67 msgid "You can change the window background color" msgstr "Můžete změnit barvu pozadí okna" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "Incognito Window Background Color" msgstr "Barva pozadí anonymního okna" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:75 msgid "You can change the incognito window background color" msgstr "Můžete změnit barvu pozadí anonymního okna" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "Search Bar Font" msgstr "Písmo vyhledávací lišty" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:83 msgid "You can change the font of the search bar" msgstr "Můžete změnit písmo vyhledávání" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Item Title Font" +msgstr "Písmo názvu položky" + +#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/fileItemStyle.ts:61 +msgid "You can change the font of the title" +msgstr "Můžete změnit písmo nadpisu" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "Item Date Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "You can change the font of the date" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Active Item Border Color" msgstr "Barva ohraničení aktivní položky" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "You can change the active item border color" msgstr "Můžete změnit barvu okraje aktivní položky" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Hovered Item Border Color" msgstr "Barva ohraničení při najetí na položku" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:105 msgid "You can change the hovered item border color" msgstr "Můžete změnit barvu ohraničení při najetí na položku" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:113 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -214,11 +279,11 @@ msgstr "Změňte styly emoji" msgid "Emoji Item Style" msgstr "Emoji - nastavení stylů" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "Emoji Size" msgstr "Velikost emoji" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "You can change the emoji size" msgstr "Můžete změnit velikost emoji" @@ -230,37 +295,41 @@ msgstr "Změňte styly souboru" msgid "File Item Style" msgstr "Soubor - nastavení stylů" -#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:52 msgid "Title Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:53 msgid "You can change the text color of the title" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:61 msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "Body Text Color" msgstr "Barva textu těla" -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "You can change the text color of the body" msgstr "Můžete změnit barvu textu těla" +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Change the style of the image item" +msgstr "Změňte styly obrázku" + +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Image Item Style" +msgstr "Obrázek - nastavení stylů" + #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "Přizpůsobení" -#: src/prefs/customization/itemStyleGroup.ts:17 +#: src/prefs/customization/itemStyleGroup.ts:18 msgid "Item Style" msgstr "Styly položky" @@ -272,59 +341,59 @@ msgstr "Změňte styly odkazu" msgid "Link Item Style" msgstr "Odkaz - nastavení stylů" -#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Background Color" msgstr "Barva pozadí metadat" -#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the background color of the metadata" msgstr "Můžete změnit barvu pozadí metadat" -#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Color" msgstr "Barva názvu metadat" -#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the title color of the metadata" msgstr "Můžete změnit barvu názvu metadat" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Title Font" msgstr "Písmo názvu metadat" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata title" msgstr "Můžete změnit písmo názvu metadat" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Color" msgstr "Barva popisu metadat" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the description color of the metadata" msgstr "Můžete změnit barvu popisu metadat" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Description Font" msgstr "Písmo popisu metadat" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata description" msgstr "Můžete změnit písmo popisu metadat" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Color" msgstr "Barva odkazu metadat" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the link color of the metadata" msgstr "Můžete změnit barvu odkazu metadat" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:112 msgid "Metadata Link Font" msgstr "Písmo odkazu metadat" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:113 msgid "You can change the font of the metadata link" msgstr "Můžete změnit písmo odkazu na metadata" diff --git a/resources/po/da.po b/resources/po/da.po index 23ec4c63..693c0637 100644 --- a/resources/po/da.po +++ b/resources/po/da.po @@ -48,41 +48,81 @@ msgid "Code Item Style" msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 +#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Body Background Color" +msgid "Header Background Color" msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 +#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 +msgid "You can change the background color of the header" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:32 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/emojiItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/textItemStyle.ts:32 +msgid "Header Text Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:33 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/emojiItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/textItemStyle.ts:33 +msgid "You can change the text color of the header" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:42 +#: src/prefs/customization/emojiItemStyle.ts:42 +#: src/prefs/customization/fileItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/textItemStyle.ts:42 +msgid "Body Background Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:43 +#: src/prefs/customization/emojiItemStyle.ts:43 +#: src/prefs/customization/fileItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:21 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:35 -#: src/prefs/customization/textItemStyle.ts:40 +#: src/prefs/customization/codeItemStyle.ts:55 +#: src/prefs/customization/textItemStyle.ts:60 msgid "Character Length" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:36 -#: src/prefs/customization/textItemStyle.ts:41 +#: src/prefs/customization/codeItemStyle.ts:56 +#: src/prefs/customization/textItemStyle.ts:61 msgid "You can change the character length of the visible text in the body" msgstr "" @@ -94,7 +134,7 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:21 +#: src/prefs/customization/colorItemStyle.ts:41 msgid "You can change the font of the metadata" msgstr "" @@ -127,82 +167,107 @@ msgid "You can change the item size" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:38 -msgid "Compact Mode" +msgid "Enable Headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:39 -msgid "Controls the compactness of the clipboard item." +msgid "Controls the visibility of the clipboard item headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:47 -msgid "Window Position" +msgid "Compact Mode" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:48 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:56 +msgid "Window Position" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:67 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:75 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:83 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Item Title Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/fileItemStyle.ts:61 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "Item Date Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "You can change the font of the date" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:105 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:113 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -214,11 +279,11 @@ msgstr "" msgid "Emoji Item Style" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "Emoji Size" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "You can change the emoji size" msgstr "" @@ -230,37 +295,41 @@ msgstr "" msgid "File Item Style" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:52 msgid "Title Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:53 msgid "You can change the text color of the title" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:61 msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "Body Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "You can change the text color of the body" msgstr "" +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Change the style of the image item" +msgstr "" + +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Image Item Style" +msgstr "" + #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "" -#: src/prefs/customization/itemStyleGroup.ts:17 +#: src/prefs/customization/itemStyleGroup.ts:18 msgid "Item Style" msgstr "" @@ -272,59 +341,59 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:112 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:113 msgid "You can change the font of the metadata link" msgstr "" diff --git a/resources/po/de.po b/resources/po/de.po index c8901805..246d567b 100644 --- a/resources/po/de.po +++ b/resources/po/de.po @@ -48,41 +48,81 @@ msgid "Code Item Style" msgstr "Stil des Code-Eintrags" #: src/prefs/customization/codeItemStyle.ts:22 +#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Body Background Color" -msgstr "Hintergrundfarbe des Hauptteils" +msgid "Header Background Color" +msgstr "Hintergrundfarbe der Überschrift" #: src/prefs/customization/codeItemStyle.ts:23 +#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 +msgid "You can change the background color of the header" +msgstr "Sie können die Hintergrundfarbe der Überschrift ändern" + +#: src/prefs/customization/codeItemStyle.ts:32 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/emojiItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/textItemStyle.ts:32 +msgid "Header Text Color" +msgstr "Textfarbe der Überschrift" + +#: src/prefs/customization/codeItemStyle.ts:33 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/emojiItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/textItemStyle.ts:33 +msgid "You can change the text color of the header" +msgstr "Sie können die Textfarbe der Überschrift ändern" + +#: src/prefs/customization/codeItemStyle.ts:42 +#: src/prefs/customization/emojiItemStyle.ts:42 +#: src/prefs/customization/fileItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/textItemStyle.ts:42 +msgid "Body Background Color" +msgstr "Hintergrundfarbe des Hauptteils" + +#: src/prefs/customization/codeItemStyle.ts:43 +#: src/prefs/customization/emojiItemStyle.ts:43 +#: src/prefs/customization/fileItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "Sie können die Hintergrundfarbe des Hauptteils ändern" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:21 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "Schriftart des Hauptteils" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "Sie können die Schriftart des Hauptteils ändern" -#: src/prefs/customization/codeItemStyle.ts:35 -#: src/prefs/customization/textItemStyle.ts:40 +#: src/prefs/customization/codeItemStyle.ts:55 +#: src/prefs/customization/textItemStyle.ts:60 msgid "Character Length" msgstr "Zeichenlänge" -#: src/prefs/customization/codeItemStyle.ts:36 -#: src/prefs/customization/textItemStyle.ts:41 +#: src/prefs/customization/codeItemStyle.ts:56 +#: src/prefs/customization/textItemStyle.ts:61 msgid "You can change the character length of the visible text in the body" msgstr "Sie können die Zeichenlänge des sichtbaren Textes im Hauptteil ändern" @@ -94,7 +134,7 @@ msgstr "Stil des Farb-Eintrags ändern" msgid "Color Item Style" msgstr "Stil des Farb-Eintrags" -#: src/prefs/customization/colorItemStyle.ts:21 +#: src/prefs/customization/colorItemStyle.ts:41 msgid "You can change the font of the metadata" msgstr "Sie können die Schriftart der Metadaten ändern" @@ -127,82 +167,107 @@ msgid "You can change the item size" msgstr "Sie können die Objektgröße ändern" #: src/prefs/customization/commonStyleGroup.ts:38 -msgid "Compact Mode" +msgid "Enable Headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:39 -msgid "Controls the compactness of the clipboard item." +msgid "Controls the visibility of the clipboard item headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:48 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:56 msgid "Window Position" msgstr "Fensterposition" -#: src/prefs/customization/commonStyleGroup.ts:48 +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "You can change position of the Pano" msgstr "Sie können die Position von Pano ändern" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Bottom" msgstr "Unten" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Left" msgstr "Links" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Right" msgstr "Rechts" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Top" msgstr "Oben" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Window Background Color" msgstr "Hintergrundfarbe des Fensters" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:67 msgid "You can change the window background color" msgstr "Sie können die Hintergrundfarbe des Fensters ändern" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "Incognito Window Background Color" msgstr "Hintergrundfarbe des Inkognito-Fensters" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:75 msgid "You can change the incognito window background color" msgstr "Sie können die Hintergrundfarbe des Inkognito-Fensters ändern" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "Search Bar Font" msgstr "Schriftart der Suchleiste" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:83 msgid "You can change the font of the search bar" msgstr "Sie können die Schriftart der Suchleiste ändern" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Item Title Font" +msgstr "Schriftart des Eintragtitels" + +#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/fileItemStyle.ts:61 +msgid "You can change the font of the title" +msgstr "Sie können die Schriftart des Objekttitels ändern" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "Item Date Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "You can change the font of the date" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Active Item Border Color" msgstr "Randfarbe des aktiven Eintrags" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "You can change the active item border color" msgstr "Sie können die Randfarbe des aktiven Eintrags ändern" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Hovered Item Border Color" msgstr "Randfarbe des fokussierten Eintrags" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:105 msgid "You can change the hovered item border color" msgstr "Sie können die Randfarbe des fokussierten Eintrags ändern" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:113 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -214,11 +279,11 @@ msgstr "Stil des Emoji-Eintrags ändern" msgid "Emoji Item Style" msgstr "Stil des Emoji-Eintrags" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "Emoji Size" msgstr "Emoji-Größe" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "You can change the emoji size" msgstr "Sie können die Emoji-Größe ändern" @@ -230,37 +295,41 @@ msgstr "Stil des Datei-Eintrags ändern" msgid "File Item Style" msgstr "Stil des Datei-Eintrags" -#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:52 msgid "Title Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:53 msgid "You can change the text color of the title" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:61 msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "Body Text Color" msgstr "Textfarbe des Hauptteils" -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "You can change the text color of the body" msgstr "Sie können die Textfarbe des Hauptteils ändern" +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Change the style of the image item" +msgstr "Stil des Bild-Eintrags ändern" + +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Image Item Style" +msgstr "Stil des Bild-Eintrags" + #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "Anpassung" -#: src/prefs/customization/itemStyleGroup.ts:17 +#: src/prefs/customization/itemStyleGroup.ts:18 msgid "Item Style" msgstr "Eintragsstil" @@ -272,59 +341,59 @@ msgstr "Stil des Verweis-Eintrags ändern" msgid "Link Item Style" msgstr "Stil Verweis-Eintrag" -#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Background Color" msgstr "Hintergrundfarbe für Metadaten" -#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the background color of the metadata" msgstr "Sie können die Hintergrundfarbe der Metadaten ändern" -#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Color" msgstr "Titelfarbe für Metadaten" -#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the title color of the metadata" msgstr "Sie können die Titelfarbe der Metadaten ändern" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Title Font" msgstr "Schriftart für Metadatentitel" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata title" msgstr "Sie können die Schriftart des Metadatentitels ändern" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Color" msgstr "Farbe für Metadatenbeschreibung" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the description color of the metadata" msgstr "Sie können die Beschreibungsfarbe der Metadaten ändern" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Description Font" msgstr "Schriftart für Metadatenbeschreibung" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata description" msgstr "Sie können die Schriftart der Metadatenbeschreibung ändern" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Color" msgstr "Verweisfarbe für Metadaten" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the link color of the metadata" msgstr "Sie können die Verweisfarbe der Metadaten ändern" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:112 msgid "Metadata Link Font" msgstr "Schriftart für Metadatenverweise" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:113 msgid "You can change the font of the metadata link" msgstr "Sie können die Schriftart von Metadatenlinks ändern" diff --git a/resources/po/el.po b/resources/po/el.po index ada59c17..534c2b71 100644 --- a/resources/po/el.po +++ b/resources/po/el.po @@ -48,41 +48,81 @@ msgid "Code Item Style" msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 +#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Body Background Color" +msgid "Header Background Color" msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 +#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 +msgid "You can change the background color of the header" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:32 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/emojiItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/textItemStyle.ts:32 +msgid "Header Text Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:33 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/emojiItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/textItemStyle.ts:33 +msgid "You can change the text color of the header" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:42 +#: src/prefs/customization/emojiItemStyle.ts:42 +#: src/prefs/customization/fileItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/textItemStyle.ts:42 +msgid "Body Background Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:43 +#: src/prefs/customization/emojiItemStyle.ts:43 +#: src/prefs/customization/fileItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:21 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:35 -#: src/prefs/customization/textItemStyle.ts:40 +#: src/prefs/customization/codeItemStyle.ts:55 +#: src/prefs/customization/textItemStyle.ts:60 msgid "Character Length" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:36 -#: src/prefs/customization/textItemStyle.ts:41 +#: src/prefs/customization/codeItemStyle.ts:56 +#: src/prefs/customization/textItemStyle.ts:61 msgid "You can change the character length of the visible text in the body" msgstr "" @@ -94,7 +134,7 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:21 +#: src/prefs/customization/colorItemStyle.ts:41 msgid "You can change the font of the metadata" msgstr "" @@ -127,82 +167,107 @@ msgid "You can change the item size" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:38 -msgid "Compact Mode" +msgid "Enable Headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:39 -msgid "Controls the compactness of the clipboard item." +msgid "Controls the visibility of the clipboard item headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:47 -msgid "Window Position" +msgid "Compact Mode" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:48 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:56 +msgid "Window Position" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:67 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:75 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:83 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Item Title Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/fileItemStyle.ts:61 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "Item Date Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "You can change the font of the date" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:105 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:113 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -214,11 +279,11 @@ msgstr "" msgid "Emoji Item Style" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "Emoji Size" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "You can change the emoji size" msgstr "" @@ -230,37 +295,41 @@ msgstr "" msgid "File Item Style" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:52 msgid "Title Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:53 msgid "You can change the text color of the title" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:61 msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "Body Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "You can change the text color of the body" msgstr "" +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Change the style of the image item" +msgstr "" + +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Image Item Style" +msgstr "" + #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "" -#: src/prefs/customization/itemStyleGroup.ts:17 +#: src/prefs/customization/itemStyleGroup.ts:18 msgid "Item Style" msgstr "" @@ -272,59 +341,59 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:112 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:113 msgid "You can change the font of the metadata link" msgstr "" diff --git a/resources/po/en.po b/resources/po/en.po index 2df2c3c1..c000557e 100644 --- a/resources/po/en.po +++ b/resources/po/en.po @@ -48,41 +48,81 @@ msgid "Code Item Style" msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 +#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Body Background Color" +msgid "Header Background Color" msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 +#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 +msgid "You can change the background color of the header" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:32 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/emojiItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/textItemStyle.ts:32 +msgid "Header Text Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:33 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/emojiItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/textItemStyle.ts:33 +msgid "You can change the text color of the header" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:42 +#: src/prefs/customization/emojiItemStyle.ts:42 +#: src/prefs/customization/fileItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/textItemStyle.ts:42 +msgid "Body Background Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:43 +#: src/prefs/customization/emojiItemStyle.ts:43 +#: src/prefs/customization/fileItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:21 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:35 -#: src/prefs/customization/textItemStyle.ts:40 +#: src/prefs/customization/codeItemStyle.ts:55 +#: src/prefs/customization/textItemStyle.ts:60 msgid "Character Length" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:36 -#: src/prefs/customization/textItemStyle.ts:41 +#: src/prefs/customization/codeItemStyle.ts:56 +#: src/prefs/customization/textItemStyle.ts:61 msgid "You can change the character length of the visible text in the body" msgstr "" @@ -94,7 +134,7 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:21 +#: src/prefs/customization/colorItemStyle.ts:41 msgid "You can change the font of the metadata" msgstr "" @@ -127,82 +167,107 @@ msgid "You can change the item size" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:38 -msgid "Compact Mode" +msgid "Enable Headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:39 -msgid "Controls the compactness of the clipboard item." +msgid "Controls the visibility of the clipboard item headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:47 -msgid "Window Position" +msgid "Compact Mode" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:48 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:56 +msgid "Window Position" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:67 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:75 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:83 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Item Title Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/fileItemStyle.ts:61 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "Item Date Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "You can change the font of the date" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:105 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:113 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -214,11 +279,11 @@ msgstr "" msgid "Emoji Item Style" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "Emoji Size" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "You can change the emoji size" msgstr "" @@ -230,37 +295,41 @@ msgstr "" msgid "File Item Style" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:52 msgid "Title Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:53 msgid "You can change the text color of the title" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:61 msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "Body Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "You can change the text color of the body" msgstr "" +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Change the style of the image item" +msgstr "" + +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Image Item Style" +msgstr "" + #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "" -#: src/prefs/customization/itemStyleGroup.ts:17 +#: src/prefs/customization/itemStyleGroup.ts:18 msgid "Item Style" msgstr "" @@ -272,59 +341,59 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:112 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:113 msgid "You can change the font of the metadata link" msgstr "" diff --git a/resources/po/es.po b/resources/po/es.po index a66be4db..69f2b3f1 100644 --- a/resources/po/es.po +++ b/resources/po/es.po @@ -48,41 +48,81 @@ msgid "Code Item Style" msgstr "Estilo de las notas de código" #: src/prefs/customization/codeItemStyle.ts:22 +#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Body Background Color" -msgstr "Color de fondo del cuerpo" +msgid "Header Background Color" +msgstr "Color de fondo del encabezado" #: src/prefs/customization/codeItemStyle.ts:23 +#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 +msgid "You can change the background color of the header" +msgstr "Puedes cambiar el color de fondo del encabezado" + +#: src/prefs/customization/codeItemStyle.ts:32 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/emojiItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/textItemStyle.ts:32 +msgid "Header Text Color" +msgstr "Color del texto del encabezado" + +#: src/prefs/customization/codeItemStyle.ts:33 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/emojiItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/textItemStyle.ts:33 +msgid "You can change the text color of the header" +msgstr "Puedes cambiar el color del texto del encabezado" + +#: src/prefs/customization/codeItemStyle.ts:42 +#: src/prefs/customization/emojiItemStyle.ts:42 +#: src/prefs/customization/fileItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/textItemStyle.ts:42 +msgid "Body Background Color" +msgstr "Color de fondo del cuerpo" + +#: src/prefs/customization/codeItemStyle.ts:43 +#: src/prefs/customization/emojiItemStyle.ts:43 +#: src/prefs/customization/fileItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "Puedes cambiar el color del cuerpo" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:21 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "Tipografía del cuerpo" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "Puedes cambiar el tipo de letra del cuerpo" -#: src/prefs/customization/codeItemStyle.ts:35 -#: src/prefs/customization/textItemStyle.ts:40 +#: src/prefs/customization/codeItemStyle.ts:55 +#: src/prefs/customization/textItemStyle.ts:60 msgid "Character Length" msgstr "Número de caracteres" -#: src/prefs/customization/codeItemStyle.ts:36 -#: src/prefs/customization/textItemStyle.ts:41 +#: src/prefs/customization/codeItemStyle.ts:56 +#: src/prefs/customization/textItemStyle.ts:61 msgid "You can change the character length of the visible text in the body" msgstr "Puedes cambiar el número de caracteres visibles del texto en el cuerpo" @@ -94,7 +134,7 @@ msgstr "Cambia el estilo de las notas de color" msgid "Color Item Style" msgstr "Estilo de las notas de color" -#: src/prefs/customization/colorItemStyle.ts:21 +#: src/prefs/customization/colorItemStyle.ts:41 msgid "You can change the font of the metadata" msgstr "Puedes cambiar el tipo de letra de los metadatos" @@ -127,82 +167,107 @@ msgid "You can change the item size" msgstr "Puedes cambiar el tamaño de las notas" #: src/prefs/customization/commonStyleGroup.ts:38 -msgid "Compact Mode" +msgid "Enable Headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:39 -msgid "Controls the compactness of the clipboard item." +msgid "Controls the visibility of the clipboard item headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:48 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:56 msgid "Window Position" msgstr "Posición de la ventana" -#: src/prefs/customization/commonStyleGroup.ts:48 +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "You can change position of the Pano" msgstr "Elige la posición de la ventana de Pano" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Bottom" msgstr "Abajo" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Left" msgstr "A la izquierda" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Right" msgstr "A la derecha" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Top" msgstr "Arriba" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Window Background Color" msgstr "Color de fondo de la ventana" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:67 msgid "You can change the window background color" msgstr "Puedes cambiar el color de fondo de la ventana" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "Incognito Window Background Color" msgstr "Color de fondo de la ventana de incógnito" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:75 msgid "You can change the incognito window background color" msgstr "Puedes cambiar el color de fondo de la ventana cuando se ejecuta el modo incógnito" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "Search Bar Font" msgstr "Tipo de letra de la barra de búsqueda" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:83 msgid "You can change the font of the search bar" msgstr "Elige la tipografía de la barra de búsqueda" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Item Title Font" +msgstr "Tipo de letra de los títulos de las notas" + +#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/fileItemStyle.ts:61 +msgid "You can change the font of the title" +msgstr "Puedes cambiar la tipografía de los títulos de las notas" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "Item Date Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "You can change the font of the date" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Active Item Border Color" msgstr "Color del borde de la nota activa" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "You can change the active item border color" msgstr "Elige el color del borde de la nota activa" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Hovered Item Border Color" msgstr "Color del borde de la nota al pasar el ratón" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:105 msgid "You can change the hovered item border color" msgstr "Elige el color del borde de las notas al pasar el ratón por encima" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:113 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -214,11 +279,11 @@ msgstr "Cambia el estilo de las notas de emojis" msgid "Emoji Item Style" msgstr "Estilo de las notas de emojis" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "Emoji Size" msgstr "Tamaño del emoji" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "You can change the emoji size" msgstr "Puedes cambiar el tamaño de los emoji" @@ -230,37 +295,41 @@ msgstr "Cambia el estilo de las notas de archivos" msgid "File Item Style" msgstr "Estilo de las notas de archivos" -#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:52 msgid "Title Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:53 msgid "You can change the text color of the title" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:61 msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "Body Text Color" msgstr "Color del texto del cuerpo" -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "You can change the text color of the body" msgstr "Puedes cambiar el color del texto del cuerpo de la nota" +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Change the style of the image item" +msgstr "Cambia el estilo de las notas de imagen" + +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Image Item Style" +msgstr "Estilo de las notas de imagen" + #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "Personalización" -#: src/prefs/customization/itemStyleGroup.ts:17 +#: src/prefs/customization/itemStyleGroup.ts:18 msgid "Item Style" msgstr "Estilo de las notas" @@ -272,59 +341,59 @@ msgstr "Cambia el estilo de las notas de enlaces" msgid "Link Item Style" msgstr "Estilo de las notas de enlaces" -#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Background Color" msgstr "Color de fondo de los metadatos" -#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the background color of the metadata" msgstr "Puedes cambiar el color de fondo de los metadatos" -#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Color" msgstr "Color del título de los enlaces" -#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the title color of the metadata" msgstr "Puedes cambiar el color del título de los enlaces" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Title Font" msgstr "Tipo de letra del título de los enlaces" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata title" msgstr "Puedes cambiar la tipografía del título de los enlaces" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Color" msgstr "Color de la descripción del enlace" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the description color of the metadata" msgstr "Puedes cambiar el color de la descripción del enlace" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Description Font" msgstr "Tipo de letra de la descripción del enlace" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata description" msgstr "Puedes cambiar el tipo de letra de la descripción del enlace" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Color" msgstr "Color del enlace" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the link color of the metadata" msgstr "Puedes cambiar el color del enlace" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:112 msgid "Metadata Link Font" msgstr "Tipo de letra del enlace" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:113 msgid "You can change the font of the metadata link" msgstr "Puedes cambiar la tipografía de los enlaces" diff --git a/resources/po/et.po b/resources/po/et.po index b643f961..f80bf6c4 100644 --- a/resources/po/et.po +++ b/resources/po/et.po @@ -48,41 +48,81 @@ msgid "Code Item Style" msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 +#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Body Background Color" +msgid "Header Background Color" msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 +#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 +msgid "You can change the background color of the header" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:32 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/emojiItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/textItemStyle.ts:32 +msgid "Header Text Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:33 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/emojiItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/textItemStyle.ts:33 +msgid "You can change the text color of the header" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:42 +#: src/prefs/customization/emojiItemStyle.ts:42 +#: src/prefs/customization/fileItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/textItemStyle.ts:42 +msgid "Body Background Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:43 +#: src/prefs/customization/emojiItemStyle.ts:43 +#: src/prefs/customization/fileItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:21 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:35 -#: src/prefs/customization/textItemStyle.ts:40 +#: src/prefs/customization/codeItemStyle.ts:55 +#: src/prefs/customization/textItemStyle.ts:60 msgid "Character Length" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:36 -#: src/prefs/customization/textItemStyle.ts:41 +#: src/prefs/customization/codeItemStyle.ts:56 +#: src/prefs/customization/textItemStyle.ts:61 msgid "You can change the character length of the visible text in the body" msgstr "" @@ -94,7 +134,7 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:21 +#: src/prefs/customization/colorItemStyle.ts:41 msgid "You can change the font of the metadata" msgstr "" @@ -127,82 +167,107 @@ msgid "You can change the item size" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:38 -msgid "Compact Mode" +msgid "Enable Headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:39 -msgid "Controls the compactness of the clipboard item." +msgid "Controls the visibility of the clipboard item headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:47 -msgid "Window Position" +msgid "Compact Mode" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:48 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:56 +msgid "Window Position" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:67 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:75 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:83 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Item Title Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/fileItemStyle.ts:61 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "Item Date Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "You can change the font of the date" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:105 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:113 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -214,11 +279,11 @@ msgstr "" msgid "Emoji Item Style" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "Emoji Size" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "You can change the emoji size" msgstr "" @@ -230,37 +295,41 @@ msgstr "" msgid "File Item Style" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:52 msgid "Title Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:53 msgid "You can change the text color of the title" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:61 msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "Body Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "You can change the text color of the body" msgstr "" +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Change the style of the image item" +msgstr "" + +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Image Item Style" +msgstr "" + #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "" -#: src/prefs/customization/itemStyleGroup.ts:17 +#: src/prefs/customization/itemStyleGroup.ts:18 msgid "Item Style" msgstr "" @@ -272,59 +341,59 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:112 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:113 msgid "You can change the font of the metadata link" msgstr "" diff --git a/resources/po/fi.po b/resources/po/fi.po index 7c859c22..a13d320a 100644 --- a/resources/po/fi.po +++ b/resources/po/fi.po @@ -48,41 +48,81 @@ msgid "Code Item Style" msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 +#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Body Background Color" +msgid "Header Background Color" msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 +#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 +msgid "You can change the background color of the header" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:32 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/emojiItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/textItemStyle.ts:32 +msgid "Header Text Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:33 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/emojiItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/textItemStyle.ts:33 +msgid "You can change the text color of the header" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:42 +#: src/prefs/customization/emojiItemStyle.ts:42 +#: src/prefs/customization/fileItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/textItemStyle.ts:42 +msgid "Body Background Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:43 +#: src/prefs/customization/emojiItemStyle.ts:43 +#: src/prefs/customization/fileItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:21 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:35 -#: src/prefs/customization/textItemStyle.ts:40 +#: src/prefs/customization/codeItemStyle.ts:55 +#: src/prefs/customization/textItemStyle.ts:60 msgid "Character Length" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:36 -#: src/prefs/customization/textItemStyle.ts:41 +#: src/prefs/customization/codeItemStyle.ts:56 +#: src/prefs/customization/textItemStyle.ts:61 msgid "You can change the character length of the visible text in the body" msgstr "" @@ -94,7 +134,7 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:21 +#: src/prefs/customization/colorItemStyle.ts:41 msgid "You can change the font of the metadata" msgstr "" @@ -127,82 +167,107 @@ msgid "You can change the item size" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:38 -msgid "Compact Mode" +msgid "Enable Headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:39 -msgid "Controls the compactness of the clipboard item." +msgid "Controls the visibility of the clipboard item headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:47 -msgid "Window Position" +msgid "Compact Mode" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:48 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:56 +msgid "Window Position" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:67 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:75 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:83 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Item Title Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/fileItemStyle.ts:61 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "Item Date Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "You can change the font of the date" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:105 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:113 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -214,11 +279,11 @@ msgstr "" msgid "Emoji Item Style" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "Emoji Size" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "You can change the emoji size" msgstr "" @@ -230,37 +295,41 @@ msgstr "" msgid "File Item Style" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:52 msgid "Title Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:53 msgid "You can change the text color of the title" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:61 msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "Body Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "You can change the text color of the body" msgstr "" +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Change the style of the image item" +msgstr "" + +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Image Item Style" +msgstr "" + #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "" -#: src/prefs/customization/itemStyleGroup.ts:17 +#: src/prefs/customization/itemStyleGroup.ts:18 msgid "Item Style" msgstr "" @@ -272,59 +341,59 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:112 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:113 msgid "You can change the font of the metadata link" msgstr "" diff --git a/resources/po/fr.po b/resources/po/fr.po index 17e24f2b..bfd2fb58 100644 --- a/resources/po/fr.po +++ b/resources/po/fr.po @@ -48,41 +48,81 @@ msgid "Code Item Style" msgstr "Style de l’élément de code" #: src/prefs/customization/codeItemStyle.ts:22 +#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Body Background Color" -msgstr "Couleur de fond du contenu" +msgid "Header Background Color" +msgstr "Couleur de fond de l’en-tête" #: src/prefs/customization/codeItemStyle.ts:23 +#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 +msgid "You can change the background color of the header" +msgstr "Vous pouvez modifier la couleur d’arrière-plan de l’en-tête" + +#: src/prefs/customization/codeItemStyle.ts:32 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/emojiItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/textItemStyle.ts:32 +msgid "Header Text Color" +msgstr "Couleur du texte de l’en-tête" + +#: src/prefs/customization/codeItemStyle.ts:33 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/emojiItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/textItemStyle.ts:33 +msgid "You can change the text color of the header" +msgstr "Vous pouvez modifier la couleur du texte de l’en-tête" + +#: src/prefs/customization/codeItemStyle.ts:42 +#: src/prefs/customization/emojiItemStyle.ts:42 +#: src/prefs/customization/fileItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/textItemStyle.ts:42 +msgid "Body Background Color" +msgstr "Couleur de fond du contenu" + +#: src/prefs/customization/codeItemStyle.ts:43 +#: src/prefs/customization/emojiItemStyle.ts:43 +#: src/prefs/customization/fileItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "Vous pouvez modifier la couleur d’arrière-plan du contenu" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:21 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "Police du contenu" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "Vous pouvez modifier la police du contenu" -#: src/prefs/customization/codeItemStyle.ts:35 -#: src/prefs/customization/textItemStyle.ts:40 +#: src/prefs/customization/codeItemStyle.ts:55 +#: src/prefs/customization/textItemStyle.ts:60 msgid "Character Length" msgstr "Nombre de caractères" -#: src/prefs/customization/codeItemStyle.ts:36 -#: src/prefs/customization/textItemStyle.ts:41 +#: src/prefs/customization/codeItemStyle.ts:56 +#: src/prefs/customization/textItemStyle.ts:61 msgid "You can change the character length of the visible text in the body" msgstr "Vous pouvez modifier la longueur du texte affiché dans le contenu" @@ -94,7 +134,7 @@ msgstr "Changer le style de l’élément de couleur" msgid "Color Item Style" msgstr "Style de l’élément de couleur" -#: src/prefs/customization/colorItemStyle.ts:21 +#: src/prefs/customization/colorItemStyle.ts:41 msgid "You can change the font of the metadata" msgstr "Vous pouvez modifier la police des métadonnées" @@ -127,82 +167,107 @@ msgid "You can change the item size" msgstr "Vous pouvez changer la taille de l’élément" #: src/prefs/customization/commonStyleGroup.ts:38 -msgid "Compact Mode" +msgid "Enable Headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:39 -msgid "Controls the compactness of the clipboard item." +msgid "Controls the visibility of the clipboard item headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:48 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:56 msgid "Window Position" msgstr "Position de la fenêtre" -#: src/prefs/customization/commonStyleGroup.ts:48 +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "You can change position of the Pano" msgstr "Vous pouvez modifier la position de Pano" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Bottom" msgstr "En bas" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Left" msgstr "À gauche" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Right" msgstr "À droite" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Top" msgstr "En haut" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Window Background Color" msgstr "Couleur d’arrière-plan de la fenêtre" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:67 msgid "You can change the window background color" msgstr "Vous pouvez modifier la couleur d’arrière-plan de la fenêtre" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "Incognito Window Background Color" msgstr "Couleur d’arrière-plan de la fenêtre incognito" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:75 msgid "You can change the incognito window background color" msgstr "Vous pouvez modifier la couleur d’arrière-plan de la fenêtre incognito" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "Search Bar Font" msgstr "Police de la barre de recherche" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:83 msgid "You can change the font of the search bar" msgstr "Vous pouvez modifier la police de la barre de recherche" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Item Title Font" +msgstr "Police du titre de l’élément" + +#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/fileItemStyle.ts:61 +msgid "You can change the font of the title" +msgstr "Vous pouvez modifier la police du titre" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "Item Date Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "You can change the font of the date" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Active Item Border Color" msgstr "Couleur de bordure de l’élément actif" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "You can change the active item border color" msgstr "Vous pouvez modifier la couleur de bordure de l’élément actif" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Hovered Item Border Color" msgstr "Couleur de bordure d’un élément survolé" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:105 msgid "You can change the hovered item border color" msgstr "Vous pouvez modifier la couleur de bordure d’un élément survolé" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:113 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -214,11 +279,11 @@ msgstr "Changer le style de l’élément émoji" msgid "Emoji Item Style" msgstr "Style de l’élément émoji" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "Emoji Size" msgstr "Taille d’émoji" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "You can change the emoji size" msgstr "Vous pouvez modifier la taille d’émoji" @@ -230,37 +295,41 @@ msgstr "Changer le style de l’élément de fichier" msgid "File Item Style" msgstr "Style de l’élément fichier" -#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:52 msgid "Title Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:53 msgid "You can change the text color of the title" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:61 msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "Body Text Color" msgstr "Couleur du texte du corpus" -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "You can change the text color of the body" msgstr "Vous pouvez modifier la couleur du texte du corpus" +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Change the style of the image item" +msgstr "Changer le style de l’élément d’image" + +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Image Item Style" +msgstr "Style de l’élément d’image" + #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "Personnalisation" -#: src/prefs/customization/itemStyleGroup.ts:17 +#: src/prefs/customization/itemStyleGroup.ts:18 msgid "Item Style" msgstr "Style de l’élément" @@ -272,59 +341,59 @@ msgstr "Changer le style de l’élément de lien" msgid "Link Item Style" msgstr "Style de l’élément de lien" -#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Background Color" msgstr "Couleur de fond des métadonnées" -#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the background color of the metadata" msgstr "Vous pouvez modifier la couleur d’arrière-plan des métadonnées" -#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Color" msgstr "Couleur du titre des métadonnées" -#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the title color of the metadata" msgstr "Vous pouvez modifier la couleur du titre des métadonnées" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Title Font" msgstr "Police du titre des métadonnées" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata title" msgstr "Vous pouvez modifier la police du titre des métadonnées" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Color" msgstr "Couleur de la description des métadonnées" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the description color of the metadata" msgstr "Vous pouvez modifier la couleur de description des métadonnées" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Description Font" msgstr "Police de description des métadonnées" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata description" msgstr "Vous pouvez modifier la police de description des métadonnées" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Color" msgstr "Couleur du lien des métadonnées" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the link color of the metadata" msgstr "Vous pouvez modifier la couleur du lien des métadonnées" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:112 msgid "Metadata Link Font" msgstr "Police du lien des métadonnées" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:113 msgid "You can change the font of the metadata link" msgstr "Vous pouvez modifier la police du lien des métadonnées" diff --git a/resources/po/he.po b/resources/po/he.po index 46045386..2c2e7b80 100644 --- a/resources/po/he.po +++ b/resources/po/he.po @@ -48,41 +48,81 @@ msgid "Code Item Style" msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 +#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Body Background Color" +msgid "Header Background Color" msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 +#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 +msgid "You can change the background color of the header" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:32 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/emojiItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/textItemStyle.ts:32 +msgid "Header Text Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:33 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/emojiItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/textItemStyle.ts:33 +msgid "You can change the text color of the header" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:42 +#: src/prefs/customization/emojiItemStyle.ts:42 +#: src/prefs/customization/fileItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/textItemStyle.ts:42 +msgid "Body Background Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:43 +#: src/prefs/customization/emojiItemStyle.ts:43 +#: src/prefs/customization/fileItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:21 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:35 -#: src/prefs/customization/textItemStyle.ts:40 +#: src/prefs/customization/codeItemStyle.ts:55 +#: src/prefs/customization/textItemStyle.ts:60 msgid "Character Length" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:36 -#: src/prefs/customization/textItemStyle.ts:41 +#: src/prefs/customization/codeItemStyle.ts:56 +#: src/prefs/customization/textItemStyle.ts:61 msgid "You can change the character length of the visible text in the body" msgstr "" @@ -94,7 +134,7 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:21 +#: src/prefs/customization/colorItemStyle.ts:41 msgid "You can change the font of the metadata" msgstr "" @@ -127,82 +167,107 @@ msgid "You can change the item size" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:38 -msgid "Compact Mode" +msgid "Enable Headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:39 -msgid "Controls the compactness of the clipboard item." +msgid "Controls the visibility of the clipboard item headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:47 -msgid "Window Position" +msgid "Compact Mode" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:48 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:56 +msgid "Window Position" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:67 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:75 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:83 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Item Title Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/fileItemStyle.ts:61 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "Item Date Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "You can change the font of the date" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:105 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:113 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -214,11 +279,11 @@ msgstr "" msgid "Emoji Item Style" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "Emoji Size" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "You can change the emoji size" msgstr "" @@ -230,37 +295,41 @@ msgstr "" msgid "File Item Style" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:52 msgid "Title Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:53 msgid "You can change the text color of the title" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:61 msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "Body Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "You can change the text color of the body" msgstr "" +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Change the style of the image item" +msgstr "" + +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Image Item Style" +msgstr "" + #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "" -#: src/prefs/customization/itemStyleGroup.ts:17 +#: src/prefs/customization/itemStyleGroup.ts:18 msgid "Item Style" msgstr "" @@ -272,59 +341,59 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:112 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:113 msgid "You can change the font of the metadata link" msgstr "" diff --git a/resources/po/hr.po b/resources/po/hr.po index 54944711..80060841 100644 --- a/resources/po/hr.po +++ b/resources/po/hr.po @@ -48,41 +48,81 @@ msgid "Code Item Style" msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 +#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Body Background Color" +msgid "Header Background Color" msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 +#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 +msgid "You can change the background color of the header" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:32 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/emojiItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/textItemStyle.ts:32 +msgid "Header Text Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:33 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/emojiItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/textItemStyle.ts:33 +msgid "You can change the text color of the header" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:42 +#: src/prefs/customization/emojiItemStyle.ts:42 +#: src/prefs/customization/fileItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/textItemStyle.ts:42 +msgid "Body Background Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:43 +#: src/prefs/customization/emojiItemStyle.ts:43 +#: src/prefs/customization/fileItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:21 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:35 -#: src/prefs/customization/textItemStyle.ts:40 +#: src/prefs/customization/codeItemStyle.ts:55 +#: src/prefs/customization/textItemStyle.ts:60 msgid "Character Length" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:36 -#: src/prefs/customization/textItemStyle.ts:41 +#: src/prefs/customization/codeItemStyle.ts:56 +#: src/prefs/customization/textItemStyle.ts:61 msgid "You can change the character length of the visible text in the body" msgstr "" @@ -94,7 +134,7 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:21 +#: src/prefs/customization/colorItemStyle.ts:41 msgid "You can change the font of the metadata" msgstr "" @@ -127,82 +167,107 @@ msgid "You can change the item size" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:38 -msgid "Compact Mode" +msgid "Enable Headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:39 -msgid "Controls the compactness of the clipboard item." +msgid "Controls the visibility of the clipboard item headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:47 -msgid "Window Position" +msgid "Compact Mode" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:48 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:56 +msgid "Window Position" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:67 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:75 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:83 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Item Title Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/fileItemStyle.ts:61 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "Item Date Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "You can change the font of the date" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:105 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:113 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -214,11 +279,11 @@ msgstr "" msgid "Emoji Item Style" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "Emoji Size" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "You can change the emoji size" msgstr "" @@ -230,37 +295,41 @@ msgstr "" msgid "File Item Style" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:52 msgid "Title Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:53 msgid "You can change the text color of the title" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:61 msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "Body Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "You can change the text color of the body" msgstr "" +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Change the style of the image item" +msgstr "" + +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Image Item Style" +msgstr "" + #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "" -#: src/prefs/customization/itemStyleGroup.ts:17 +#: src/prefs/customization/itemStyleGroup.ts:18 msgid "Item Style" msgstr "" @@ -272,59 +341,59 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:112 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:113 msgid "You can change the font of the metadata link" msgstr "" diff --git a/resources/po/hu.po b/resources/po/hu.po index 0a385367..2d732cfe 100644 --- a/resources/po/hu.po +++ b/resources/po/hu.po @@ -48,41 +48,81 @@ msgid "Code Item Style" msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 +#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Body Background Color" +msgid "Header Background Color" msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 +#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 +msgid "You can change the background color of the header" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:32 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/emojiItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/textItemStyle.ts:32 +msgid "Header Text Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:33 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/emojiItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/textItemStyle.ts:33 +msgid "You can change the text color of the header" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:42 +#: src/prefs/customization/emojiItemStyle.ts:42 +#: src/prefs/customization/fileItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/textItemStyle.ts:42 +msgid "Body Background Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:43 +#: src/prefs/customization/emojiItemStyle.ts:43 +#: src/prefs/customization/fileItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:21 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:35 -#: src/prefs/customization/textItemStyle.ts:40 +#: src/prefs/customization/codeItemStyle.ts:55 +#: src/prefs/customization/textItemStyle.ts:60 msgid "Character Length" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:36 -#: src/prefs/customization/textItemStyle.ts:41 +#: src/prefs/customization/codeItemStyle.ts:56 +#: src/prefs/customization/textItemStyle.ts:61 msgid "You can change the character length of the visible text in the body" msgstr "" @@ -94,7 +134,7 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:21 +#: src/prefs/customization/colorItemStyle.ts:41 msgid "You can change the font of the metadata" msgstr "" @@ -127,82 +167,107 @@ msgid "You can change the item size" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:38 -msgid "Compact Mode" +msgid "Enable Headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:39 -msgid "Controls the compactness of the clipboard item." +msgid "Controls the visibility of the clipboard item headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:47 -msgid "Window Position" +msgid "Compact Mode" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:48 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:56 +msgid "Window Position" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:67 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:75 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:83 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Item Title Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/fileItemStyle.ts:61 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "Item Date Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "You can change the font of the date" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:105 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:113 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -214,11 +279,11 @@ msgstr "" msgid "Emoji Item Style" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "Emoji Size" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "You can change the emoji size" msgstr "" @@ -230,37 +295,41 @@ msgstr "" msgid "File Item Style" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:52 msgid "Title Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:53 msgid "You can change the text color of the title" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:61 msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "Body Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "You can change the text color of the body" msgstr "" +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Change the style of the image item" +msgstr "" + +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Image Item Style" +msgstr "" + #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "" -#: src/prefs/customization/itemStyleGroup.ts:17 +#: src/prefs/customization/itemStyleGroup.ts:18 msgid "Item Style" msgstr "" @@ -272,59 +341,59 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:112 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:113 msgid "You can change the font of the metadata link" msgstr "" diff --git a/resources/po/is.po b/resources/po/is.po index 15e8f04a..cea512be 100644 --- a/resources/po/is.po +++ b/resources/po/is.po @@ -48,41 +48,81 @@ msgid "Code Item Style" msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 +#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Body Background Color" +msgid "Header Background Color" msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 +#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 +msgid "You can change the background color of the header" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:32 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/emojiItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/textItemStyle.ts:32 +msgid "Header Text Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:33 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/emojiItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/textItemStyle.ts:33 +msgid "You can change the text color of the header" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:42 +#: src/prefs/customization/emojiItemStyle.ts:42 +#: src/prefs/customization/fileItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/textItemStyle.ts:42 +msgid "Body Background Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:43 +#: src/prefs/customization/emojiItemStyle.ts:43 +#: src/prefs/customization/fileItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:21 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:35 -#: src/prefs/customization/textItemStyle.ts:40 +#: src/prefs/customization/codeItemStyle.ts:55 +#: src/prefs/customization/textItemStyle.ts:60 msgid "Character Length" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:36 -#: src/prefs/customization/textItemStyle.ts:41 +#: src/prefs/customization/codeItemStyle.ts:56 +#: src/prefs/customization/textItemStyle.ts:61 msgid "You can change the character length of the visible text in the body" msgstr "" @@ -94,7 +134,7 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:21 +#: src/prefs/customization/colorItemStyle.ts:41 msgid "You can change the font of the metadata" msgstr "" @@ -127,82 +167,107 @@ msgid "You can change the item size" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:38 -msgid "Compact Mode" +msgid "Enable Headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:39 -msgid "Controls the compactness of the clipboard item." +msgid "Controls the visibility of the clipboard item headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:47 -msgid "Window Position" +msgid "Compact Mode" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:48 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:56 +msgid "Window Position" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:67 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:75 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:83 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Item Title Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/fileItemStyle.ts:61 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "Item Date Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "You can change the font of the date" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:105 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:113 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -214,11 +279,11 @@ msgstr "" msgid "Emoji Item Style" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "Emoji Size" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "You can change the emoji size" msgstr "" @@ -230,37 +295,41 @@ msgstr "" msgid "File Item Style" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:52 msgid "Title Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:53 msgid "You can change the text color of the title" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:61 msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "Body Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "You can change the text color of the body" msgstr "" +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Change the style of the image item" +msgstr "" + +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Image Item Style" +msgstr "" + #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "" -#: src/prefs/customization/itemStyleGroup.ts:17 +#: src/prefs/customization/itemStyleGroup.ts:18 msgid "Item Style" msgstr "" @@ -272,59 +341,59 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:112 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:113 msgid "You can change the font of the metadata link" msgstr "" diff --git a/resources/po/it.po b/resources/po/it.po index 1a17bc92..21030974 100644 --- a/resources/po/it.po +++ b/resources/po/it.po @@ -48,41 +48,81 @@ msgid "Code Item Style" msgstr "Stile dell'elemento Codice" #: src/prefs/customization/codeItemStyle.ts:22 +#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Body Background Color" -msgstr "Colore di sfondo del corpo" +msgid "Header Background Color" +msgstr "Colore di sfondo dell'intestazione" #: src/prefs/customization/codeItemStyle.ts:23 +#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 +msgid "You can change the background color of the header" +msgstr "Puoi cambiare il colore di sfondo dell'intestazione" + +#: src/prefs/customization/codeItemStyle.ts:32 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/emojiItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/textItemStyle.ts:32 +msgid "Header Text Color" +msgstr "Colore del testo dell'intestazione" + +#: src/prefs/customization/codeItemStyle.ts:33 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/emojiItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/textItemStyle.ts:33 +msgid "You can change the text color of the header" +msgstr "Puoi cambiare il colore del testo dell'intestazione" + +#: src/prefs/customization/codeItemStyle.ts:42 +#: src/prefs/customization/emojiItemStyle.ts:42 +#: src/prefs/customization/fileItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/textItemStyle.ts:42 +msgid "Body Background Color" +msgstr "Colore di sfondo del corpo" + +#: src/prefs/customization/codeItemStyle.ts:43 +#: src/prefs/customization/emojiItemStyle.ts:43 +#: src/prefs/customization/fileItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "Puoi cambiare il colore di sfondo del corpo" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:21 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "Carattere del corpo" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "Puoi cambiare il carattere del corpo" -#: src/prefs/customization/codeItemStyle.ts:35 -#: src/prefs/customization/textItemStyle.ts:40 +#: src/prefs/customization/codeItemStyle.ts:55 +#: src/prefs/customization/textItemStyle.ts:60 msgid "Character Length" msgstr "Lunghezza caratteri" -#: src/prefs/customization/codeItemStyle.ts:36 -#: src/prefs/customization/textItemStyle.ts:41 +#: src/prefs/customization/codeItemStyle.ts:56 +#: src/prefs/customization/textItemStyle.ts:61 msgid "You can change the character length of the visible text in the body" msgstr "Puoi modificare la lunghezza dei caratteri del testo visibile nel corpo" @@ -94,7 +134,7 @@ msgstr "Cambia lo stile dell'elemento Colore" msgid "Color Item Style" msgstr "Stile dell'elemento Colore" -#: src/prefs/customization/colorItemStyle.ts:21 +#: src/prefs/customization/colorItemStyle.ts:41 msgid "You can change the font of the metadata" msgstr "Puoi cambiare il carattere dei metadati" @@ -127,82 +167,107 @@ msgid "You can change the item size" msgstr "Puoi modificare la dimensione dell'elemento" #: src/prefs/customization/commonStyleGroup.ts:38 -msgid "Compact Mode" +msgid "Enable Headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:39 -msgid "Controls the compactness of the clipboard item." +msgid "Controls the visibility of the clipboard item headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:48 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:56 msgid "Window Position" msgstr "Posizione della finestra" -#: src/prefs/customization/commonStyleGroup.ts:48 +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "You can change position of the Pano" msgstr "Puoi cambiare la posizione di Pano" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Bottom" msgstr "In basso" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Left" msgstr "Sinistra" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Right" msgstr "Destra" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Top" msgstr "In alto" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Window Background Color" msgstr "Colore di sfondo della finestra" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:67 msgid "You can change the window background color" msgstr "Puoi cambiare il colore di sfondo della finestra" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "Incognito Window Background Color" msgstr "Colore di sfondo della finestra di navigazione in incognito" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:75 msgid "You can change the incognito window background color" msgstr "Puoi cambiare il colore di sfondo della finestra di navigazione in incognito" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "Search Bar Font" msgstr "Carattere della barra di ricerca" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:83 msgid "You can change the font of the search bar" msgstr "Puoi cambiare il carattere della barra di ricerca" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Item Title Font" +msgstr "Font del titolo dell'elemento" + +#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/fileItemStyle.ts:61 +msgid "You can change the font of the title" +msgstr "Puoi cambiare il font del titolo" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "Item Date Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "You can change the font of the date" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Active Item Border Color" msgstr "Colore del bordo dell'elemento attivo" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "You can change the active item border color" msgstr "È possibile modificare il colore del bordo dell'elemento attivo" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Hovered Item Border Color" msgstr "Colore del bordo dell'elemento al passaggio del mouse" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:105 msgid "You can change the hovered item border color" msgstr "Puoi cambiare il colore del bordo dell'elemento al passaggio del mouse" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:113 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -214,11 +279,11 @@ msgstr "Cambia lo stile dell'elemento emoji" msgid "Emoji Item Style" msgstr "Stile oggetto Emoji" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "Emoji Size" msgstr "Dimensione emoji" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "You can change the emoji size" msgstr "Puoi modificare la dimensione dell'emoji" @@ -230,37 +295,41 @@ msgstr "Cambia lo stile dell'elemento del file" msgid "File Item Style" msgstr "Stile elemento file" -#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:52 msgid "Title Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:53 msgid "You can change the text color of the title" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:61 msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "Body Text Color" msgstr "Colore del corpo del testo" -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "You can change the text color of the body" msgstr "Puoi cambiare il colore del testo del corpo" +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Change the style of the image item" +msgstr "Cambia lo stile dell'elemento immagine" + +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Image Item Style" +msgstr "Stile oggetto immagine" + #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "Personalizzazione" -#: src/prefs/customization/itemStyleGroup.ts:17 +#: src/prefs/customization/itemStyleGroup.ts:18 msgid "Item Style" msgstr "Stile elemento" @@ -272,59 +341,59 @@ msgstr "Modificare lo stile dell'elemento di collegamento" msgid "Link Item Style" msgstr "Stile elemento di collegamento" -#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Background Color" msgstr "Colore di sfondo dei metadati" -#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the background color of the metadata" msgstr "Puoi cambiare il colore di sfondo dei metadati" -#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Color" msgstr "Colore del titolo dei metadati" -#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the title color of the metadata" msgstr "Puoi cambiare il colore del titolo dei metadati" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Title Font" msgstr "Carattere del titolo dei metadati" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata title" msgstr "È possibile modificare il carattere del titolo dei metadati" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Color" msgstr "Descrizione Colore Metadati" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the description color of the metadata" msgstr "Puoi cambiare il colore della descrizione dei metadati" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Description Font" msgstr "Descrizione Carattere Metadati" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata description" msgstr "È possibile modificare il carattere della descrizione dei metadati" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Color" msgstr "Colore del collegamento ai metadati" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the link color of the metadata" msgstr "È possibile modificare il colore del collegamento dei metadati" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:112 msgid "Metadata Link Font" msgstr "Carattere di collegamento metadati" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:113 msgid "You can change the font of the metadata link" msgstr "È possibile modificare il carattere del collegamento ai metadati" diff --git a/resources/po/ja.po b/resources/po/ja.po index b397e94f..e08a115c 100644 --- a/resources/po/ja.po +++ b/resources/po/ja.po @@ -48,41 +48,81 @@ msgid "Code Item Style" msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 +#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Body Background Color" +msgid "Header Background Color" msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 +#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 +msgid "You can change the background color of the header" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:32 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/emojiItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/textItemStyle.ts:32 +msgid "Header Text Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:33 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/emojiItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/textItemStyle.ts:33 +msgid "You can change the text color of the header" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:42 +#: src/prefs/customization/emojiItemStyle.ts:42 +#: src/prefs/customization/fileItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/textItemStyle.ts:42 +msgid "Body Background Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:43 +#: src/prefs/customization/emojiItemStyle.ts:43 +#: src/prefs/customization/fileItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:21 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:35 -#: src/prefs/customization/textItemStyle.ts:40 +#: src/prefs/customization/codeItemStyle.ts:55 +#: src/prefs/customization/textItemStyle.ts:60 msgid "Character Length" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:36 -#: src/prefs/customization/textItemStyle.ts:41 +#: src/prefs/customization/codeItemStyle.ts:56 +#: src/prefs/customization/textItemStyle.ts:61 msgid "You can change the character length of the visible text in the body" msgstr "" @@ -94,7 +134,7 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:21 +#: src/prefs/customization/colorItemStyle.ts:41 msgid "You can change the font of the metadata" msgstr "" @@ -127,82 +167,107 @@ msgid "You can change the item size" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:38 -msgid "Compact Mode" +msgid "Enable Headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:39 -msgid "Controls the compactness of the clipboard item." +msgid "Controls the visibility of the clipboard item headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:47 -msgid "Window Position" +msgid "Compact Mode" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:48 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:56 +msgid "Window Position" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:67 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:75 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:83 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Item Title Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/fileItemStyle.ts:61 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "Item Date Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "You can change the font of the date" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:105 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:113 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -214,11 +279,11 @@ msgstr "" msgid "Emoji Item Style" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "Emoji Size" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "You can change the emoji size" msgstr "" @@ -230,37 +295,41 @@ msgstr "" msgid "File Item Style" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:52 msgid "Title Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:53 msgid "You can change the text color of the title" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:61 msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "Body Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "You can change the text color of the body" msgstr "" +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Change the style of the image item" +msgstr "" + +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Image Item Style" +msgstr "" + #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "" -#: src/prefs/customization/itemStyleGroup.ts:17 +#: src/prefs/customization/itemStyleGroup.ts:18 msgid "Item Style" msgstr "" @@ -272,59 +341,59 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:112 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:113 msgid "You can change the font of the metadata link" msgstr "" diff --git a/resources/po/ko.po b/resources/po/ko.po index e2232cce..27d2a1c3 100644 --- a/resources/po/ko.po +++ b/resources/po/ko.po @@ -48,41 +48,81 @@ msgid "Code Item Style" msgstr "코드 스타일" #: src/prefs/customization/codeItemStyle.ts:22 +#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Body Background Color" +msgid "Header Background Color" msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 +#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 +msgid "You can change the background color of the header" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:32 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/emojiItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/textItemStyle.ts:32 +msgid "Header Text Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:33 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/emojiItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/textItemStyle.ts:33 +msgid "You can change the text color of the header" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:42 +#: src/prefs/customization/emojiItemStyle.ts:42 +#: src/prefs/customization/fileItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/textItemStyle.ts:42 +msgid "Body Background Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:43 +#: src/prefs/customization/emojiItemStyle.ts:43 +#: src/prefs/customization/fileItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "내용 배경의 색상을 바꾸기" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:21 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "내용 글꼴" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:35 -#: src/prefs/customization/textItemStyle.ts:40 +#: src/prefs/customization/codeItemStyle.ts:55 +#: src/prefs/customization/textItemStyle.ts:60 msgid "Character Length" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:36 -#: src/prefs/customization/textItemStyle.ts:41 +#: src/prefs/customization/codeItemStyle.ts:56 +#: src/prefs/customization/textItemStyle.ts:61 msgid "You can change the character length of the visible text in the body" msgstr "" @@ -94,7 +134,7 @@ msgstr "색상 항목의 스타일을 바꾸기" msgid "Color Item Style" msgstr "색상 항목 스타일" -#: src/prefs/customization/colorItemStyle.ts:21 +#: src/prefs/customization/colorItemStyle.ts:41 msgid "You can change the font of the metadata" msgstr "" @@ -127,82 +167,107 @@ msgid "You can change the item size" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:38 -msgid "Compact Mode" +msgid "Enable Headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:39 -msgid "Controls the compactness of the clipboard item." +msgid "Controls the visibility of the clipboard item headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:47 -msgid "Window Position" +msgid "Compact Mode" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:48 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:56 +msgid "Window Position" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Bottom" -msgstr "아래" +msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Left" -msgstr "왼쪽" +msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Right" -msgstr "오른쪽" +msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Top" -msgstr "위" +msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:67 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:75 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "Search Bar Font" -msgstr "검색 창 글꼴" +msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:83 msgid "You can change the font of the search bar" -msgstr "검색 창의 글꼴을 바꾸기" +msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Item Title Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/fileItemStyle.ts:61 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "Item Date Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "You can change the font of the date" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:105 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:113 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -214,11 +279,11 @@ msgstr "" msgid "Emoji Item Style" msgstr "이모티콘 항목 스타일" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "Emoji Size" msgstr "이모티콘 크기" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "You can change the emoji size" msgstr "이모티콘 크기를 바꾸기" @@ -230,37 +295,41 @@ msgstr "파일 항목의 스타일을 바꾸기" msgid "File Item Style" msgstr "파일 항목 스타일" -#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:52 msgid "Title Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:53 msgid "You can change the text color of the title" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:61 msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "Body Text Color" msgstr "내용 텍스트 색상" -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "You can change the text color of the body" msgstr "내용 텍스트 색상을 바꾸기" +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Change the style of the image item" +msgstr "" + +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Image Item Style" +msgstr "" + #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "개인화" -#: src/prefs/customization/itemStyleGroup.ts:17 +#: src/prefs/customization/itemStyleGroup.ts:18 msgid "Item Style" msgstr "항목 스타일" @@ -272,59 +341,59 @@ msgstr "링크 항목의 스타일을 바꾸기" msgid "Link Item Style" msgstr "링크 항목 스타일" -#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Color" msgstr "메타데이터 제목 색상" -#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the title color of the metadata" msgstr "메타데이터 제목의 색상을 바꾸기" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Title Font" msgstr "메타데이터 제목 글꼴" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata title" msgstr "메타데이터 제목의 글꼴을 바꾸기" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Color" msgstr "메타데이터 설명 색상" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the description color of the metadata" msgstr "메타데이터 설명의 색상을 바꾸기" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Description Font" msgstr "메타데이터 설명 글꼴" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata description" msgstr "메타데이터 설명의 글꼴을 바꾸기" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Color" msgstr "메타데이터 링크 색상" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the link color of the metadata" msgstr "메타데이터 링크의 색상을 바꾸기" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:112 msgid "Metadata Link Font" msgstr "메타데이터 링크 글꼴" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:113 msgid "You can change the font of the metadata link" msgstr "메타데이터 링크의 글꼴을 바꾸기" diff --git a/resources/po/nl.po b/resources/po/nl.po index 8e576933..5f1ce446 100644 --- a/resources/po/nl.po +++ b/resources/po/nl.po @@ -48,41 +48,81 @@ msgid "Code Item Style" msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 +#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Body Background Color" +msgid "Header Background Color" msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 +#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 +msgid "You can change the background color of the header" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:32 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/emojiItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/textItemStyle.ts:32 +msgid "Header Text Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:33 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/emojiItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/textItemStyle.ts:33 +msgid "You can change the text color of the header" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:42 +#: src/prefs/customization/emojiItemStyle.ts:42 +#: src/prefs/customization/fileItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/textItemStyle.ts:42 +msgid "Body Background Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:43 +#: src/prefs/customization/emojiItemStyle.ts:43 +#: src/prefs/customization/fileItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:21 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:35 -#: src/prefs/customization/textItemStyle.ts:40 +#: src/prefs/customization/codeItemStyle.ts:55 +#: src/prefs/customization/textItemStyle.ts:60 msgid "Character Length" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:36 -#: src/prefs/customization/textItemStyle.ts:41 +#: src/prefs/customization/codeItemStyle.ts:56 +#: src/prefs/customization/textItemStyle.ts:61 msgid "You can change the character length of the visible text in the body" msgstr "" @@ -94,7 +134,7 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:21 +#: src/prefs/customization/colorItemStyle.ts:41 msgid "You can change the font of the metadata" msgstr "" @@ -127,82 +167,107 @@ msgid "You can change the item size" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:38 -msgid "Compact Mode" +msgid "Enable Headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:39 -msgid "Controls the compactness of the clipboard item." +msgid "Controls the visibility of the clipboard item headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:47 -msgid "Window Position" +msgid "Compact Mode" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:48 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:56 +msgid "Window Position" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:67 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:75 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:83 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Item Title Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/fileItemStyle.ts:61 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "Item Date Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "You can change the font of the date" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:105 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:113 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -214,11 +279,11 @@ msgstr "" msgid "Emoji Item Style" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "Emoji Size" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "You can change the emoji size" msgstr "" @@ -230,37 +295,41 @@ msgstr "" msgid "File Item Style" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:52 msgid "Title Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:53 msgid "You can change the text color of the title" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:61 msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "Body Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "You can change the text color of the body" msgstr "" +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Change the style of the image item" +msgstr "" + +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Image Item Style" +msgstr "" + #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "" -#: src/prefs/customization/itemStyleGroup.ts:17 +#: src/prefs/customization/itemStyleGroup.ts:18 msgid "Item Style" msgstr "" @@ -272,59 +341,59 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:112 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:113 msgid "You can change the font of the metadata link" msgstr "" diff --git a/resources/po/no.po b/resources/po/no.po index cc231644..08157b60 100644 --- a/resources/po/no.po +++ b/resources/po/no.po @@ -48,41 +48,81 @@ msgid "Code Item Style" msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 +#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Body Background Color" +msgid "Header Background Color" msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 +#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 +msgid "You can change the background color of the header" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:32 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/emojiItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/textItemStyle.ts:32 +msgid "Header Text Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:33 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/emojiItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/textItemStyle.ts:33 +msgid "You can change the text color of the header" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:42 +#: src/prefs/customization/emojiItemStyle.ts:42 +#: src/prefs/customization/fileItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/textItemStyle.ts:42 +msgid "Body Background Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:43 +#: src/prefs/customization/emojiItemStyle.ts:43 +#: src/prefs/customization/fileItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:21 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:35 -#: src/prefs/customization/textItemStyle.ts:40 +#: src/prefs/customization/codeItemStyle.ts:55 +#: src/prefs/customization/textItemStyle.ts:60 msgid "Character Length" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:36 -#: src/prefs/customization/textItemStyle.ts:41 +#: src/prefs/customization/codeItemStyle.ts:56 +#: src/prefs/customization/textItemStyle.ts:61 msgid "You can change the character length of the visible text in the body" msgstr "" @@ -94,7 +134,7 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:21 +#: src/prefs/customization/colorItemStyle.ts:41 msgid "You can change the font of the metadata" msgstr "" @@ -127,82 +167,107 @@ msgid "You can change the item size" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:38 -msgid "Compact Mode" +msgid "Enable Headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:39 -msgid "Controls the compactness of the clipboard item." +msgid "Controls the visibility of the clipboard item headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:47 -msgid "Window Position" +msgid "Compact Mode" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:48 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:56 +msgid "Window Position" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:67 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:75 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:83 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Item Title Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/fileItemStyle.ts:61 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "Item Date Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "You can change the font of the date" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:105 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:113 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -214,11 +279,11 @@ msgstr "" msgid "Emoji Item Style" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "Emoji Size" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "You can change the emoji size" msgstr "" @@ -230,37 +295,41 @@ msgstr "" msgid "File Item Style" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:52 msgid "Title Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:53 msgid "You can change the text color of the title" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:61 msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "Body Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "You can change the text color of the body" msgstr "" +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Change the style of the image item" +msgstr "" + +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Image Item Style" +msgstr "" + #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "" -#: src/prefs/customization/itemStyleGroup.ts:17 +#: src/prefs/customization/itemStyleGroup.ts:18 msgid "Item Style" msgstr "" @@ -272,59 +341,59 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:112 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:113 msgid "You can change the font of the metadata link" msgstr "" diff --git a/resources/po/oc.po b/resources/po/oc.po index 8b659d18..9451e4eb 100644 --- a/resources/po/oc.po +++ b/resources/po/oc.po @@ -48,41 +48,81 @@ msgid "Code Item Style" msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 +#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Body Background Color" +msgid "Header Background Color" msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 +#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 +msgid "You can change the background color of the header" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:32 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/emojiItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/textItemStyle.ts:32 +msgid "Header Text Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:33 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/emojiItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/textItemStyle.ts:33 +msgid "You can change the text color of the header" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:42 +#: src/prefs/customization/emojiItemStyle.ts:42 +#: src/prefs/customization/fileItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/textItemStyle.ts:42 +msgid "Body Background Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:43 +#: src/prefs/customization/emojiItemStyle.ts:43 +#: src/prefs/customization/fileItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:21 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:35 -#: src/prefs/customization/textItemStyle.ts:40 +#: src/prefs/customization/codeItemStyle.ts:55 +#: src/prefs/customization/textItemStyle.ts:60 msgid "Character Length" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:36 -#: src/prefs/customization/textItemStyle.ts:41 +#: src/prefs/customization/codeItemStyle.ts:56 +#: src/prefs/customization/textItemStyle.ts:61 msgid "You can change the character length of the visible text in the body" msgstr "" @@ -94,7 +134,7 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:21 +#: src/prefs/customization/colorItemStyle.ts:41 msgid "You can change the font of the metadata" msgstr "" @@ -127,82 +167,107 @@ msgid "You can change the item size" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:38 -msgid "Compact Mode" +msgid "Enable Headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:39 -msgid "Controls the compactness of the clipboard item." +msgid "Controls the visibility of the clipboard item headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:47 -msgid "Window Position" +msgid "Compact Mode" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:48 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:56 +msgid "Window Position" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:67 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:75 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:83 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Item Title Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/fileItemStyle.ts:61 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "Item Date Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "You can change the font of the date" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:105 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:113 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -214,11 +279,11 @@ msgstr "" msgid "Emoji Item Style" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "Emoji Size" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "You can change the emoji size" msgstr "" @@ -230,37 +295,41 @@ msgstr "" msgid "File Item Style" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:52 msgid "Title Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:53 msgid "You can change the text color of the title" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:61 msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "Body Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "You can change the text color of the body" msgstr "" +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Change the style of the image item" +msgstr "" + +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Image Item Style" +msgstr "" + #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "" -#: src/prefs/customization/itemStyleGroup.ts:17 +#: src/prefs/customization/itemStyleGroup.ts:18 msgid "Item Style" msgstr "" @@ -272,59 +341,59 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:112 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:113 msgid "You can change the font of the metadata link" msgstr "" diff --git a/resources/po/pano@elhan.io.pot b/resources/po/pano@elhan.io.pot index 166cd738..b47a3b76 100644 --- a/resources/po/pano@elhan.io.pot +++ b/resources/po/pano@elhan.io.pot @@ -2,7 +2,7 @@ msgid "" msgstr "" "Content-Type: text/plain; charset=UTF-8\n" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Active Item Border Color" msgstr "" @@ -39,27 +39,27 @@ msgstr "" msgid "Are you sure you want to clear history?" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:22 -#: src/prefs/customization/emojiItemStyle.ts:22 -#: src/prefs/customization/fileItemStyle.ts:22 -#: src/prefs/customization/linkItemStyle.ts:22 -#: src/prefs/customization/textItemStyle.ts:22 +#: src/prefs/customization/codeItemStyle.ts:42 +#: src/prefs/customization/emojiItemStyle.ts:42 +#: src/prefs/customization/fileItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/textItemStyle.ts:42 msgid "Body Background Color" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:21 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "Body Text Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Bottom" msgstr "" @@ -83,6 +83,10 @@ msgstr "" msgid "Change the style of the file item" msgstr "" +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Change the style of the image item" +msgstr "" + #: src/prefs/customization/linkItemStyle.ts:15 msgid "Change the style of the link item" msgstr "" @@ -91,8 +95,8 @@ msgstr "" msgid "Change the style of the text item" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:35 -#: src/prefs/customization/textItemStyle.ts:40 +#: src/prefs/customization/codeItemStyle.ts:55 +#: src/prefs/customization/textItemStyle.ts:60 msgid "Character Length" msgstr "" @@ -143,14 +147,18 @@ msgstr "" msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:38 +#: src/prefs/customization/commonStyleGroup.ts:47 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:39 +#: src/prefs/customization/commonStyleGroup.ts:48 msgid "Controls the compactness of the clipboard item." msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:39 +msgid "Controls the visibility of the clipboard item headers" +msgstr "" + #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "" @@ -179,10 +187,14 @@ msgstr "" msgid "Emoji Item Style" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "Emoji Size" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:38 +msgid "Enable Headers" +msgstr "" + #: src/prefs/general/exclusionGroup.ts:24 msgid "Excluded Apps" msgstr "" @@ -215,11 +227,31 @@ msgstr "" msgid "Global Shortcut" msgstr "" +#: src/prefs/customization/codeItemStyle.ts:22 +#: src/prefs/customization/colorItemStyle.ts:22 +#: src/prefs/customization/emojiItemStyle.ts:22 +#: src/prefs/customization/fileItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:21 +#: src/prefs/customization/linkItemStyle.ts:22 +#: src/prefs/customization/textItemStyle.ts:22 +msgid "Header Background Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:32 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/emojiItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/textItemStyle.ts:32 +msgid "Header Text Color" +msgstr "" + #: src/prefs/general/historyLength.ts:15 msgid "History Length" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Hovered Item Border Color" msgstr "" @@ -235,6 +267,10 @@ msgstr "" msgid "Image Copied" msgstr "" +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Image Item Style" +msgstr "" + #: src/components/indicator/settingsMenu.ts:67 msgid "Incognito Mode" msgstr "" @@ -243,18 +279,26 @@ msgstr "" msgid "Incognito Mode Shortcut" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "Incognito Window Background Color" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "Item Date Font" +msgstr "" + #: src/prefs/customization/commonStyleGroup.ts:33 msgid "Item Size" msgstr "" -#: src/prefs/customization/itemStyleGroup.ts:17 +#: src/prefs/customization/itemStyleGroup.ts:18 msgid "Item Style" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Item Title Font" +msgstr "" + #: src/prefs/general/keepSearchEntryOnHide.ts:15 msgid "Keep Search Entry" msgstr "" @@ -263,7 +307,7 @@ msgstr "" msgid "Keep search entry when Pano hides" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Left" msgstr "" @@ -291,31 +335,31 @@ msgstr "" msgid "Manage Exclusions" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:112 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Title Font" msgstr "" @@ -348,11 +392,11 @@ msgstr "" msgid "Play an Audio on Copy" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "Search Bar Font" msgstr "" @@ -373,7 +417,7 @@ msgstr "" msgid "Settings" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "Show Controls on Hover" msgstr "" @@ -409,15 +453,15 @@ msgstr "" msgid "There are %s file(s)" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:61 msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:52 msgid "Title Text Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Top" msgstr "" @@ -437,7 +481,7 @@ msgstr "" msgid "When enabled, Pano will not track clipboard from excluded apps" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:113 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -453,7 +497,7 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Window Background Color" msgstr "" @@ -461,74 +505,89 @@ msgstr "" msgid "Window class name" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:47 +#: src/prefs/customization/commonStyleGroup.ts:56 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:48 +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "You can change the active item border color" msgstr "" +#: src/prefs/customization/codeItemStyle.ts:43 +#: src/prefs/customization/emojiItemStyle.ts:43 +#: src/prefs/customization/fileItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/textItemStyle.ts:43 +msgid "You can change the background color of the body" +msgstr "" + #: src/prefs/customization/codeItemStyle.ts:23 +#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 -msgid "You can change the background color of the body" +msgid "You can change the background color of the header" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:36 -#: src/prefs/customization/textItemStyle.ts:41 +#: src/prefs/customization/codeItemStyle.ts:56 +#: src/prefs/customization/textItemStyle.ts:61 msgid "You can change the character length of the visible text in the body" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "You can change the emoji size" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:21 +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "You can change the font of the date" +msgstr "" + +#: src/prefs/customization/colorItemStyle.ts:41 msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:113 msgid "You can change the font of the metadata link" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:83 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 +#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:105 msgid "You can change the hovered item border color" msgstr "" @@ -536,7 +595,7 @@ msgstr "" msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:75 msgid "You can change the incognito window background color" msgstr "" @@ -544,24 +603,34 @@ msgstr "" msgid "You can change the item size" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "You can change the text color of the body" msgstr "" +#: src/prefs/customization/codeItemStyle.ts:33 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/emojiItemStyle.ts:33 #: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/textItemStyle.ts:33 +msgid "You can change the text color of the header" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:53 msgid "You can change the text color of the title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:67 msgid "You can change the window background color" msgstr "" diff --git a/resources/po/pl.po b/resources/po/pl.po index 5985e242..84196df1 100644 --- a/resources/po/pl.po +++ b/resources/po/pl.po @@ -48,41 +48,81 @@ msgid "Code Item Style" msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 +#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Body Background Color" +msgid "Header Background Color" msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 +#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 +msgid "You can change the background color of the header" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:32 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/emojiItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/textItemStyle.ts:32 +msgid "Header Text Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:33 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/emojiItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/textItemStyle.ts:33 +msgid "You can change the text color of the header" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:42 +#: src/prefs/customization/emojiItemStyle.ts:42 +#: src/prefs/customization/fileItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/textItemStyle.ts:42 +msgid "Body Background Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:43 +#: src/prefs/customization/emojiItemStyle.ts:43 +#: src/prefs/customization/fileItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:21 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:35 -#: src/prefs/customization/textItemStyle.ts:40 +#: src/prefs/customization/codeItemStyle.ts:55 +#: src/prefs/customization/textItemStyle.ts:60 msgid "Character Length" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:36 -#: src/prefs/customization/textItemStyle.ts:41 +#: src/prefs/customization/codeItemStyle.ts:56 +#: src/prefs/customization/textItemStyle.ts:61 msgid "You can change the character length of the visible text in the body" msgstr "" @@ -94,7 +134,7 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:21 +#: src/prefs/customization/colorItemStyle.ts:41 msgid "You can change the font of the metadata" msgstr "" @@ -127,82 +167,107 @@ msgid "You can change the item size" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:38 -msgid "Compact Mode" +msgid "Enable Headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:39 -msgid "Controls the compactness of the clipboard item." +msgid "Controls the visibility of the clipboard item headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:47 -msgid "Window Position" +msgid "Compact Mode" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:48 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:56 +msgid "Window Position" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:67 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:75 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:83 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Item Title Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/fileItemStyle.ts:61 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "Item Date Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "You can change the font of the date" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:105 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:113 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -214,11 +279,11 @@ msgstr "" msgid "Emoji Item Style" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "Emoji Size" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "You can change the emoji size" msgstr "" @@ -230,37 +295,41 @@ msgstr "" msgid "File Item Style" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:52 msgid "Title Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:53 msgid "You can change the text color of the title" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:61 msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "Body Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "You can change the text color of the body" msgstr "" +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Change the style of the image item" +msgstr "" + +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Image Item Style" +msgstr "" + #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "" -#: src/prefs/customization/itemStyleGroup.ts:17 +#: src/prefs/customization/itemStyleGroup.ts:18 msgid "Item Style" msgstr "" @@ -272,59 +341,59 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:112 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:113 msgid "You can change the font of the metadata link" msgstr "" diff --git a/resources/po/pt.po b/resources/po/pt.po index 4dfc06a4..91f1e4f1 100644 --- a/resources/po/pt.po +++ b/resources/po/pt.po @@ -48,41 +48,81 @@ msgid "Code Item Style" msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 +#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Body Background Color" +msgid "Header Background Color" msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 +#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 +msgid "You can change the background color of the header" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:32 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/emojiItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/textItemStyle.ts:32 +msgid "Header Text Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:33 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/emojiItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/textItemStyle.ts:33 +msgid "You can change the text color of the header" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:42 +#: src/prefs/customization/emojiItemStyle.ts:42 +#: src/prefs/customization/fileItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/textItemStyle.ts:42 +msgid "Body Background Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:43 +#: src/prefs/customization/emojiItemStyle.ts:43 +#: src/prefs/customization/fileItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:21 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:35 -#: src/prefs/customization/textItemStyle.ts:40 +#: src/prefs/customization/codeItemStyle.ts:55 +#: src/prefs/customization/textItemStyle.ts:60 msgid "Character Length" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:36 -#: src/prefs/customization/textItemStyle.ts:41 +#: src/prefs/customization/codeItemStyle.ts:56 +#: src/prefs/customization/textItemStyle.ts:61 msgid "You can change the character length of the visible text in the body" msgstr "" @@ -94,7 +134,7 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:21 +#: src/prefs/customization/colorItemStyle.ts:41 msgid "You can change the font of the metadata" msgstr "" @@ -127,82 +167,107 @@ msgid "You can change the item size" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:38 -msgid "Compact Mode" +msgid "Enable Headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:39 -msgid "Controls the compactness of the clipboard item." +msgid "Controls the visibility of the clipboard item headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:47 -msgid "Window Position" +msgid "Compact Mode" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:48 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:56 +msgid "Window Position" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:67 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:75 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:83 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Item Title Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/fileItemStyle.ts:61 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "Item Date Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "You can change the font of the date" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:105 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:113 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -214,11 +279,11 @@ msgstr "" msgid "Emoji Item Style" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "Emoji Size" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "You can change the emoji size" msgstr "" @@ -230,37 +295,41 @@ msgstr "" msgid "File Item Style" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:52 msgid "Title Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:53 msgid "You can change the text color of the title" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:61 msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "Body Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "You can change the text color of the body" msgstr "" +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Change the style of the image item" +msgstr "" + +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Image Item Style" +msgstr "" + #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "" -#: src/prefs/customization/itemStyleGroup.ts:17 +#: src/prefs/customization/itemStyleGroup.ts:18 msgid "Item Style" msgstr "" @@ -272,59 +341,59 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:112 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:113 msgid "You can change the font of the metadata link" msgstr "" diff --git a/resources/po/pt_BR.po b/resources/po/pt_BR.po index 0aa21d43..9535b2ea 100644 --- a/resources/po/pt_BR.po +++ b/resources/po/pt_BR.po @@ -48,41 +48,81 @@ msgid "Code Item Style" msgstr "Estilo do item de código" #: src/prefs/customization/codeItemStyle.ts:22 +#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Body Background Color" -msgstr "Cor de fundo do corpo" +msgid "Header Background Color" +msgstr "Cor de fundo do cabeçalho" #: src/prefs/customization/codeItemStyle.ts:23 +#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 +msgid "You can change the background color of the header" +msgstr "Você pode mudar a cor de fundo do cabeçalho" + +#: src/prefs/customization/codeItemStyle.ts:32 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/emojiItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/textItemStyle.ts:32 +msgid "Header Text Color" +msgstr "Cor do texto do cabeçalho" + +#: src/prefs/customization/codeItemStyle.ts:33 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/emojiItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/textItemStyle.ts:33 +msgid "You can change the text color of the header" +msgstr "Você pode mudar a cor do texto do cabeçalho" + +#: src/prefs/customization/codeItemStyle.ts:42 +#: src/prefs/customization/emojiItemStyle.ts:42 +#: src/prefs/customization/fileItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/textItemStyle.ts:42 +msgid "Body Background Color" +msgstr "Cor de fundo do corpo" + +#: src/prefs/customization/codeItemStyle.ts:43 +#: src/prefs/customization/emojiItemStyle.ts:43 +#: src/prefs/customization/fileItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "Você pode mudar a cor de fundo do corpo" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:21 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "Fonte do corpo" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "Você pode mudar a fonte do corpo" -#: src/prefs/customization/codeItemStyle.ts:35 -#: src/prefs/customization/textItemStyle.ts:40 +#: src/prefs/customization/codeItemStyle.ts:55 +#: src/prefs/customization/textItemStyle.ts:60 msgid "Character Length" msgstr "Comprimento de caracteres" -#: src/prefs/customization/codeItemStyle.ts:36 -#: src/prefs/customization/textItemStyle.ts:41 +#: src/prefs/customization/codeItemStyle.ts:56 +#: src/prefs/customization/textItemStyle.ts:61 msgid "You can change the character length of the visible text in the body" msgstr "Você pode mudar o comprimento de caracteres do texto visível no corpo" @@ -94,7 +134,7 @@ msgstr "Mudar o estilo do item de cor" msgid "Color Item Style" msgstr "Estilo do item de cor" -#: src/prefs/customization/colorItemStyle.ts:21 +#: src/prefs/customization/colorItemStyle.ts:41 msgid "You can change the font of the metadata" msgstr "Você pode mudar a fonte dos metadados" @@ -127,82 +167,107 @@ msgid "You can change the item size" msgstr "Você pode mudar o tamanho do item" #: src/prefs/customization/commonStyleGroup.ts:38 -msgid "Compact Mode" +msgid "Enable Headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:39 -msgid "Controls the compactness of the clipboard item." +msgid "Controls the visibility of the clipboard item headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:48 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:56 msgid "Window Position" msgstr "Posição da janela" -#: src/prefs/customization/commonStyleGroup.ts:48 +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "You can change position of the Pano" msgstr "Você pode mudar a posição do Pano" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Bottom" msgstr "Inferior" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Left" msgstr "Esquerda" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Right" msgstr "Direita" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Top" msgstr "Superior" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Window Background Color" msgstr "Cor de fundo da janela" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:67 msgid "You can change the window background color" msgstr "Você pode mudar a cor de fundo da janela" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "Incognito Window Background Color" msgstr "Cor de fundo da janela anônima" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:75 msgid "You can change the incognito window background color" msgstr "Você pode mudar a cor de fundo da janela anônima" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "Search Bar Font" msgstr "Fonte da barra de pesquisa" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:83 msgid "You can change the font of the search bar" msgstr "Você pode mudar a fonte da barra de pesquisa" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Item Title Font" +msgstr "Fonte do título do item" + +#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/fileItemStyle.ts:61 +msgid "You can change the font of the title" +msgstr "Você pode mudar a fonte do título" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "Item Date Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "You can change the font of the date" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Active Item Border Color" msgstr "Cor da borda do item ativo" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "You can change the active item border color" msgstr "Você pode mudar a cor da borda do item ativo" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Hovered Item Border Color" msgstr "Cor da borda do item destacado" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:105 msgid "You can change the hovered item border color" msgstr "Você pode mudar a cor da borda do item destacado" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:113 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -214,11 +279,11 @@ msgstr "Mudar o estilo do item de emoji" msgid "Emoji Item Style" msgstr "Estilo do item de emoji" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "Emoji Size" msgstr "Tamanho do emoji" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "You can change the emoji size" msgstr "Você pode mudar o tamanho do emoji" @@ -230,37 +295,41 @@ msgstr "Mudar o estilo do item de arquivo" msgid "File Item Style" msgstr "Estilo de Item de Arquivo" -#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:52 msgid "Title Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:53 msgid "You can change the text color of the title" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:61 msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "Body Text Color" msgstr "Cor do texto do corpo" -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "You can change the text color of the body" msgstr "Você pode mudar a cor do texto do corpo" +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Change the style of the image item" +msgstr "Mudar o estilo do item de imagem" + +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Image Item Style" +msgstr "Estilo de Item de Imagem" + #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "Customização" -#: src/prefs/customization/itemStyleGroup.ts:17 +#: src/prefs/customization/itemStyleGroup.ts:18 msgid "Item Style" msgstr "Estilo do item" @@ -272,59 +341,59 @@ msgstr "Mudar o estilo do item de link" msgid "Link Item Style" msgstr "Estilo de Item de Link" -#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Background Color" msgstr "Cor de fundo dos metadados" -#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the background color of the metadata" msgstr "Você pode mudar a cor de fundo dos metadados" -#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Color" msgstr "Cor do título do metadado" -#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the title color of the metadata" msgstr "Você pode mudar a cor do título do metadado" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Title Font" msgstr "Fonte do título do metadado" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata title" msgstr "Você pode mudar a fonte do título do metadado" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Color" msgstr "Cor da descrição do metadado" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the description color of the metadata" msgstr "Você pode mudar a cor da descrição do metadado" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Description Font" msgstr "Fonte da descrição do metadado" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata description" msgstr "Você pode mudar a fonte da descrição do metadado" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Color" msgstr "Cor do link do metadado" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the link color of the metadata" msgstr "Você pode mudar a cor do link do metadado" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:112 msgid "Metadata Link Font" msgstr "Fonte do link do metadado" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:113 msgid "You can change the font of the metadata link" msgstr "Você pode mudar a fonte do link do metadado" diff --git a/resources/po/ro.po b/resources/po/ro.po index ec05a1c6..9eb5a53d 100644 --- a/resources/po/ro.po +++ b/resources/po/ro.po @@ -48,41 +48,81 @@ msgid "Code Item Style" msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 +#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Body Background Color" +msgid "Header Background Color" msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 +#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 +msgid "You can change the background color of the header" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:32 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/emojiItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/textItemStyle.ts:32 +msgid "Header Text Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:33 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/emojiItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/textItemStyle.ts:33 +msgid "You can change the text color of the header" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:42 +#: src/prefs/customization/emojiItemStyle.ts:42 +#: src/prefs/customization/fileItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/textItemStyle.ts:42 +msgid "Body Background Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:43 +#: src/prefs/customization/emojiItemStyle.ts:43 +#: src/prefs/customization/fileItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:21 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:35 -#: src/prefs/customization/textItemStyle.ts:40 +#: src/prefs/customization/codeItemStyle.ts:55 +#: src/prefs/customization/textItemStyle.ts:60 msgid "Character Length" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:36 -#: src/prefs/customization/textItemStyle.ts:41 +#: src/prefs/customization/codeItemStyle.ts:56 +#: src/prefs/customization/textItemStyle.ts:61 msgid "You can change the character length of the visible text in the body" msgstr "" @@ -94,7 +134,7 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:21 +#: src/prefs/customization/colorItemStyle.ts:41 msgid "You can change the font of the metadata" msgstr "" @@ -127,82 +167,107 @@ msgid "You can change the item size" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:38 -msgid "Compact Mode" +msgid "Enable Headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:39 -msgid "Controls the compactness of the clipboard item." +msgid "Controls the visibility of the clipboard item headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:47 -msgid "Window Position" +msgid "Compact Mode" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:48 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:56 +msgid "Window Position" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:67 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:75 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:83 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Item Title Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/fileItemStyle.ts:61 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "Item Date Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "You can change the font of the date" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:105 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:113 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -214,11 +279,11 @@ msgstr "" msgid "Emoji Item Style" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "Emoji Size" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "You can change the emoji size" msgstr "" @@ -230,37 +295,41 @@ msgstr "" msgid "File Item Style" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:52 msgid "Title Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:53 msgid "You can change the text color of the title" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:61 msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "Body Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "You can change the text color of the body" msgstr "" +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Change the style of the image item" +msgstr "" + +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Image Item Style" +msgstr "" + #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "" -#: src/prefs/customization/itemStyleGroup.ts:17 +#: src/prefs/customization/itemStyleGroup.ts:18 msgid "Item Style" msgstr "" @@ -272,59 +341,59 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:112 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:113 msgid "You can change the font of the metadata link" msgstr "" diff --git a/resources/po/ru.po b/resources/po/ru.po index cfb1bcf3..6d6a276d 100644 --- a/resources/po/ru.po +++ b/resources/po/ru.po @@ -48,41 +48,81 @@ msgid "Code Item Style" msgstr "Стиль элемента с кодом" #: src/prefs/customization/codeItemStyle.ts:22 +#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Body Background Color" -msgstr "Цвет фона содержимого" +msgid "Header Background Color" +msgstr "Цвет фона заголовка" #: src/prefs/customization/codeItemStyle.ts:23 +#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 +msgid "You can change the background color of the header" +msgstr "Вы можете изменить цвет фона заголовка" + +#: src/prefs/customization/codeItemStyle.ts:32 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/emojiItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/textItemStyle.ts:32 +msgid "Header Text Color" +msgstr "Цвет текста заголовка" + +#: src/prefs/customization/codeItemStyle.ts:33 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/emojiItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/textItemStyle.ts:33 +msgid "You can change the text color of the header" +msgstr "Вы можете изменить цвет текста в заголовке" + +#: src/prefs/customization/codeItemStyle.ts:42 +#: src/prefs/customization/emojiItemStyle.ts:42 +#: src/prefs/customization/fileItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/textItemStyle.ts:42 +msgid "Body Background Color" +msgstr "Цвет фона содержимого" + +#: src/prefs/customization/codeItemStyle.ts:43 +#: src/prefs/customization/emojiItemStyle.ts:43 +#: src/prefs/customization/fileItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "Вы можете изменить цвет фона содержимого" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:21 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "Шрифт содержимого" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "Вы можете изменить шрифт содержимого" -#: src/prefs/customization/codeItemStyle.ts:35 -#: src/prefs/customization/textItemStyle.ts:40 +#: src/prefs/customization/codeItemStyle.ts:55 +#: src/prefs/customization/textItemStyle.ts:60 msgid "Character Length" msgstr "Длина содержимого" -#: src/prefs/customization/codeItemStyle.ts:36 -#: src/prefs/customization/textItemStyle.ts:41 +#: src/prefs/customization/codeItemStyle.ts:56 +#: src/prefs/customization/textItemStyle.ts:61 msgid "You can change the character length of the visible text in the body" msgstr "Вы можете изменить длину отображаемого текста в теле карточки" @@ -94,7 +134,7 @@ msgstr "Изменить стиль элемента с цветом" msgid "Color Item Style" msgstr "Стиль элемента с цветом" -#: src/prefs/customization/colorItemStyle.ts:21 +#: src/prefs/customization/colorItemStyle.ts:41 msgid "You can change the font of the metadata" msgstr "Вы можете изменить шрифт метаданных" @@ -127,82 +167,107 @@ msgid "You can change the item size" msgstr "Вы можете изменить размер элемента" #: src/prefs/customization/commonStyleGroup.ts:38 -msgid "Compact Mode" +msgid "Enable Headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:39 -msgid "Controls the compactness of the clipboard item." +msgid "Controls the visibility of the clipboard item headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:48 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:56 msgid "Window Position" msgstr "Положение окна" -#: src/prefs/customization/commonStyleGroup.ts:48 +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "You can change position of the Pano" msgstr "Вы можете изменить положение Pano" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Window Background Color" msgstr "Цвет фона окна" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:67 msgid "You can change the window background color" msgstr "Вы можете изменить цвет фона окна" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "Incognito Window Background Color" msgstr "Цвет фона окна инкогнито" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:75 msgid "You can change the incognito window background color" msgstr "Вы можете изменить цвет фона окна инкогнито" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "Search Bar Font" msgstr "Шрифт панели поиска" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:83 msgid "You can change the font of the search bar" msgstr "Вы можете изменить шрифт в строке поиска" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Item Title Font" +msgstr "Шрифт заголовка элемента" + +#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/fileItemStyle.ts:61 +msgid "You can change the font of the title" +msgstr "Вы можете изменить шрифт заголовка" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "Item Date Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "You can change the font of the date" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Active Item Border Color" msgstr "Цвет границы активного элемента" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "You can change the active item border color" msgstr "Вы можете изменить цвет границы активного элемента" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Hovered Item Border Color" msgstr "Цвет границы выбранного элемента" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:105 msgid "You can change the hovered item border color" msgstr "Вы можете изменить цвет границы выбранного элемента" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:113 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -214,11 +279,11 @@ msgstr "Изменить стиль элемента с эмодзи" msgid "Emoji Item Style" msgstr "Стиль элемента с эмодзи" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "Emoji Size" msgstr "Размер эмодзи" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "You can change the emoji size" msgstr "Вы можите изменить размер эмодзи" @@ -230,37 +295,41 @@ msgstr "Изменить стиль элемента с файлом" msgid "File Item Style" msgstr "Стиль элемнта с файлом" -#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:52 msgid "Title Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:53 msgid "You can change the text color of the title" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:61 msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "Body Text Color" msgstr "Цвет основного текста" -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "You can change the text color of the body" msgstr "Вы можете изменить цвет основного текста" +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Change the style of the image item" +msgstr "Изменить стиль элемента с изображением" + +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Image Item Style" +msgstr "Стиль элемента с изображением" + #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "Настройка" -#: src/prefs/customization/itemStyleGroup.ts:17 +#: src/prefs/customization/itemStyleGroup.ts:18 msgid "Item Style" msgstr "Стиль элемента" @@ -272,59 +341,59 @@ msgstr "Изменить стиль элемента со сслыкой" msgid "Link Item Style" msgstr "Стиль элемента со ссылкой" -#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Background Color" msgstr "Цвет фона метаданных" -#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the background color of the metadata" msgstr "Вы можете изменить цвет фона элемента со ссылкой" -#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Color" msgstr "Цвет заголовка метаданных" -#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the title color of the metadata" msgstr "Вы можете изменить цвет заголовка метаданных" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Title Font" msgstr "Шрифт заголовка метаданных" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata title" msgstr "Вы можете изменить шрифт заголовка метаданных" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Color" msgstr "Цвет описания ссылки" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the description color of the metadata" msgstr "Вы можете изменить цвет текста описания метаданных" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Description Font" msgstr "Шрифт описания ссылки" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata description" msgstr "Вы можете изменить шрифт описания ссылки" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Color" msgstr "Цвет элемента со ссылкой" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the link color of the metadata" msgstr "Вы можете изменить цвет ссылки метаданных" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:112 msgid "Metadata Link Font" msgstr "Шрифт сслыки" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:113 msgid "You can change the font of the metadata link" msgstr "Вы можете изменить шрифт ссылки" diff --git a/resources/po/sk.po b/resources/po/sk.po index 5ae85302..9acb6ae8 100644 --- a/resources/po/sk.po +++ b/resources/po/sk.po @@ -48,41 +48,81 @@ msgid "Code Item Style" msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 +#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Body Background Color" +msgid "Header Background Color" msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 +#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 +msgid "You can change the background color of the header" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:32 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/emojiItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/textItemStyle.ts:32 +msgid "Header Text Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:33 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/emojiItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/textItemStyle.ts:33 +msgid "You can change the text color of the header" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:42 +#: src/prefs/customization/emojiItemStyle.ts:42 +#: src/prefs/customization/fileItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/textItemStyle.ts:42 +msgid "Body Background Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:43 +#: src/prefs/customization/emojiItemStyle.ts:43 +#: src/prefs/customization/fileItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:21 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:35 -#: src/prefs/customization/textItemStyle.ts:40 +#: src/prefs/customization/codeItemStyle.ts:55 +#: src/prefs/customization/textItemStyle.ts:60 msgid "Character Length" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:36 -#: src/prefs/customization/textItemStyle.ts:41 +#: src/prefs/customization/codeItemStyle.ts:56 +#: src/prefs/customization/textItemStyle.ts:61 msgid "You can change the character length of the visible text in the body" msgstr "" @@ -94,7 +134,7 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:21 +#: src/prefs/customization/colorItemStyle.ts:41 msgid "You can change the font of the metadata" msgstr "" @@ -127,82 +167,107 @@ msgid "You can change the item size" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:38 -msgid "Compact Mode" +msgid "Enable Headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:39 -msgid "Controls the compactness of the clipboard item." +msgid "Controls the visibility of the clipboard item headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:47 -msgid "Window Position" +msgid "Compact Mode" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:48 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:56 +msgid "Window Position" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:67 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:75 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:83 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Item Title Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/fileItemStyle.ts:61 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "Item Date Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "You can change the font of the date" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:105 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:113 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -214,11 +279,11 @@ msgstr "" msgid "Emoji Item Style" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "Emoji Size" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "You can change the emoji size" msgstr "" @@ -230,37 +295,41 @@ msgstr "" msgid "File Item Style" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:52 msgid "Title Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:53 msgid "You can change the text color of the title" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:61 msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "Body Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "You can change the text color of the body" msgstr "" +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Change the style of the image item" +msgstr "" + +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Image Item Style" +msgstr "" + #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "" -#: src/prefs/customization/itemStyleGroup.ts:17 +#: src/prefs/customization/itemStyleGroup.ts:18 msgid "Item Style" msgstr "" @@ -272,59 +341,59 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:112 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:113 msgid "You can change the font of the metadata link" msgstr "" diff --git a/resources/po/sv.po b/resources/po/sv.po index 8fda92e2..5012c7cf 100644 --- a/resources/po/sv.po +++ b/resources/po/sv.po @@ -48,41 +48,81 @@ msgid "Code Item Style" msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 +#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Body Background Color" +msgid "Header Background Color" msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 +#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 +msgid "You can change the background color of the header" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:32 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/emojiItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/textItemStyle.ts:32 +msgid "Header Text Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:33 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/emojiItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/textItemStyle.ts:33 +msgid "You can change the text color of the header" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:42 +#: src/prefs/customization/emojiItemStyle.ts:42 +#: src/prefs/customization/fileItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/textItemStyle.ts:42 +msgid "Body Background Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:43 +#: src/prefs/customization/emojiItemStyle.ts:43 +#: src/prefs/customization/fileItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:21 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:35 -#: src/prefs/customization/textItemStyle.ts:40 +#: src/prefs/customization/codeItemStyle.ts:55 +#: src/prefs/customization/textItemStyle.ts:60 msgid "Character Length" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:36 -#: src/prefs/customization/textItemStyle.ts:41 +#: src/prefs/customization/codeItemStyle.ts:56 +#: src/prefs/customization/textItemStyle.ts:61 msgid "You can change the character length of the visible text in the body" msgstr "" @@ -94,7 +134,7 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:21 +#: src/prefs/customization/colorItemStyle.ts:41 msgid "You can change the font of the metadata" msgstr "" @@ -127,82 +167,107 @@ msgid "You can change the item size" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:38 -msgid "Compact Mode" +msgid "Enable Headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:39 -msgid "Controls the compactness of the clipboard item." +msgid "Controls the visibility of the clipboard item headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:47 -msgid "Window Position" +msgid "Compact Mode" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:48 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:56 +msgid "Window Position" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:67 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:75 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:83 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Item Title Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/fileItemStyle.ts:61 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "Item Date Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "You can change the font of the date" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:105 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:113 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -214,11 +279,11 @@ msgstr "" msgid "Emoji Item Style" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "Emoji Size" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "You can change the emoji size" msgstr "" @@ -230,37 +295,41 @@ msgstr "" msgid "File Item Style" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:52 msgid "Title Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:53 msgid "You can change the text color of the title" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:61 msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "Body Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "You can change the text color of the body" msgstr "" +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Change the style of the image item" +msgstr "" + +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Image Item Style" +msgstr "" + #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "" -#: src/prefs/customization/itemStyleGroup.ts:17 +#: src/prefs/customization/itemStyleGroup.ts:18 msgid "Item Style" msgstr "" @@ -272,59 +341,59 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:112 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:113 msgid "You can change the font of the metadata link" msgstr "" diff --git a/resources/po/tr.po b/resources/po/tr.po index e2b38d1c..48900e5d 100644 --- a/resources/po/tr.po +++ b/resources/po/tr.po @@ -48,41 +48,81 @@ msgid "Code Item Style" msgstr "Kod Öğe Stili" #: src/prefs/customization/codeItemStyle.ts:22 +#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Body Background Color" -msgstr "Gövde Arkaplan Rengi" +msgid "Header Background Color" +msgstr "Başlık Arka Plan Rengi" #: src/prefs/customization/codeItemStyle.ts:23 +#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 +msgid "You can change the background color of the header" +msgstr "Başlık arka plan rengini değiştirebilirsiniz." + +#: src/prefs/customization/codeItemStyle.ts:32 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/emojiItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/textItemStyle.ts:32 +msgid "Header Text Color" +msgstr "Başlık Yazı Rengi" + +#: src/prefs/customization/codeItemStyle.ts:33 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/emojiItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/textItemStyle.ts:33 +msgid "You can change the text color of the header" +msgstr "Başlık yazı rengini değiştirebilirsiniz" + +#: src/prefs/customization/codeItemStyle.ts:42 +#: src/prefs/customization/emojiItemStyle.ts:42 +#: src/prefs/customization/fileItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/textItemStyle.ts:42 +msgid "Body Background Color" +msgstr "Gövde Arkaplan Rengi" + +#: src/prefs/customization/codeItemStyle.ts:43 +#: src/prefs/customization/emojiItemStyle.ts:43 +#: src/prefs/customization/fileItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "Gövde arkaplan rengini değiştirebilirsiniz" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:21 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "Gövde Yazı Tipi" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "Gövde yazı tipini değiştirebilirsiniz" -#: src/prefs/customization/codeItemStyle.ts:35 -#: src/prefs/customization/textItemStyle.ts:40 +#: src/prefs/customization/codeItemStyle.ts:55 +#: src/prefs/customization/textItemStyle.ts:60 msgid "Character Length" msgstr "Karakter Uzunluğu" -#: src/prefs/customization/codeItemStyle.ts:36 -#: src/prefs/customization/textItemStyle.ts:41 +#: src/prefs/customization/codeItemStyle.ts:56 +#: src/prefs/customization/textItemStyle.ts:61 msgid "You can change the character length of the visible text in the body" msgstr "Gövdedeki görünebilir yazıların karakter uzunluğunu değiştirebilirsiniz" @@ -94,7 +134,7 @@ msgstr "Renk öğesinin tarzını değiştir" msgid "Color Item Style" msgstr "Renk Öğesi Tarzı" -#: src/prefs/customization/colorItemStyle.ts:21 +#: src/prefs/customization/colorItemStyle.ts:41 msgid "You can change the font of the metadata" msgstr "Metaveri yazı tipini değiştirebilirsiniz" @@ -127,82 +167,107 @@ msgid "You can change the item size" msgstr "Öğe boyutunu değiştirebilirsiniz" #: src/prefs/customization/commonStyleGroup.ts:38 -msgid "Compact Mode" +msgid "Enable Headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:39 -msgid "Controls the compactness of the clipboard item." +msgid "Controls the visibility of the clipboard item headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:48 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:56 msgid "Window Position" msgstr "Pencere Konumu" -#: src/prefs/customization/commonStyleGroup.ts:48 +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "You can change position of the Pano" msgstr "Pencere konumunu değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Bottom" msgstr "Alt" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Left" msgstr "Sol" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Right" msgstr "Sağ" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Top" msgstr "Üst" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Window Background Color" msgstr "Pencere Arkaplan Rengi" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:67 msgid "You can change the window background color" msgstr "Pencere arkaplan rengini değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "Incognito Window Background Color" msgstr "Gizli Pencere Arkaplan Rengi" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:75 msgid "You can change the incognito window background color" msgstr "Gizli pencere arkaplan rengini değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "Search Bar Font" msgstr "Arama Çubuğu Yazı Tipi" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:83 msgid "You can change the font of the search bar" msgstr "Arama çubuğu yazı tipini değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Item Title Font" +msgstr "Öğe Başlığı Yazı Tipi" + +#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/fileItemStyle.ts:61 +msgid "You can change the font of the title" +msgstr "Öğe başlığının yazı tipini değiştirebilirsiniz" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "Item Date Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "You can change the font of the date" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Active Item Border Color" msgstr "Etkin Öğe Çerçeve Rengi" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "You can change the active item border color" msgstr "Etkin öğenin çerçeve rengini değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Hovered Item Border Color" msgstr "Öğenin Üzerine Gelindiğindeki Çerçeve Rengi" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:105 msgid "You can change the hovered item border color" msgstr "Öğenin üzerine geldiğindeki çerçeve rengini değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:113 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -214,11 +279,11 @@ msgstr "İfadelerin tarzını değiştir" msgid "Emoji Item Style" msgstr "İfade Öğe Tarzı" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "Emoji Size" msgstr "İfade Boyutu" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "You can change the emoji size" msgstr "İfade boyutunu değiştirebilirsiniz" @@ -230,37 +295,41 @@ msgstr "Dosya öğesinin tarzını değiştir" msgid "File Item Style" msgstr "Dosya Öğe Tarzı" -#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:52 msgid "Title Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:53 msgid "You can change the text color of the title" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:61 msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "Body Text Color" msgstr "Gövde Yazı Rengi" -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "You can change the text color of the body" msgstr "Gövdenin yazı rengini değiştirebilirsiniz" +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Change the style of the image item" +msgstr "Resim öğesinin tarzını değiştirebilirsiniz" + +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Image Item Style" +msgstr "Resim Öğe Tarzı" + #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "Özelleştirme" -#: src/prefs/customization/itemStyleGroup.ts:17 +#: src/prefs/customization/itemStyleGroup.ts:18 msgid "Item Style" msgstr "Öğe Tarzı" @@ -272,59 +341,59 @@ msgstr "Bağlantı öğesinin tarzını değiştir" msgid "Link Item Style" msgstr "Bağlantı Öğe Tarzı" -#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Background Color" msgstr "Metaveri Arkaplan Rengi" -#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the background color of the metadata" msgstr "Metaveri arkaplan rengini değiştirebilirsiniz" -#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Color" msgstr "Metaveri Başlık Rengi" -#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the title color of the metadata" msgstr "Metaverinin başlık rengini değiştirebilirsiniz" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Title Font" msgstr "Metaveri Başlık Yazı Tipi" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata title" msgstr "Metaverinin başlığının yazı tipini değiştirebilirsiniz" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Color" msgstr "Metaveri Açıklama Rengi" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the description color of the metadata" msgstr "Metaverinin açıklama rengini değiştirebilirsiniz" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Description Font" msgstr "Metaveri Açıklama Yazı Tipi" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata description" msgstr "Metaverinin açıklama yazı tipini değiştirebilirsiniz" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Color" msgstr "Metaveri Bağlantı Rengi" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the link color of the metadata" msgstr "Metaverinin bağlantı rengini değiştirebilirsiniz" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:112 msgid "Metadata Link Font" msgstr "Metaveri Bağlantı Yazı Tipi" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:113 msgid "You can change the font of the metadata link" msgstr "Metaverinin bağlantı yazı tipini değiştirebilirsiniz" diff --git a/resources/po/uk.po b/resources/po/uk.po index 8ea8d41e..1c46e51d 100644 --- a/resources/po/uk.po +++ b/resources/po/uk.po @@ -48,41 +48,81 @@ msgid "Code Item Style" msgstr "Стиль елемента коду" #: src/prefs/customization/codeItemStyle.ts:22 +#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Body Background Color" +msgid "Header Background Color" msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 +#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 +msgid "You can change the background color of the header" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:32 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/emojiItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/textItemStyle.ts:32 +msgid "Header Text Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:33 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/emojiItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/textItemStyle.ts:33 +msgid "You can change the text color of the header" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:42 +#: src/prefs/customization/emojiItemStyle.ts:42 +#: src/prefs/customization/fileItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/textItemStyle.ts:42 +msgid "Body Background Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:43 +#: src/prefs/customization/emojiItemStyle.ts:43 +#: src/prefs/customization/fileItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "Ви можете змінити колір фону тіла" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:21 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "Шрифт тіла" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "Ви можете змінити шрифт тіла" -#: src/prefs/customization/codeItemStyle.ts:35 -#: src/prefs/customization/textItemStyle.ts:40 +#: src/prefs/customization/codeItemStyle.ts:55 +#: src/prefs/customization/textItemStyle.ts:60 msgid "Character Length" msgstr "Довжина символів" -#: src/prefs/customization/codeItemStyle.ts:36 -#: src/prefs/customization/textItemStyle.ts:41 +#: src/prefs/customization/codeItemStyle.ts:56 +#: src/prefs/customization/textItemStyle.ts:61 msgid "You can change the character length of the visible text in the body" msgstr "Ви можете змінити довжину видимого тексту в тілі" @@ -94,7 +134,7 @@ msgstr "Змінити стиль елемента кольору" msgid "Color Item Style" msgstr "Стиль елемента кольору" -#: src/prefs/customization/colorItemStyle.ts:21 +#: src/prefs/customization/colorItemStyle.ts:41 msgid "You can change the font of the metadata" msgstr "Ви можете змінити шрифт метаданих" @@ -127,82 +167,107 @@ msgid "You can change the item size" msgstr "Ви можете змінити розмір елемента" #: src/prefs/customization/commonStyleGroup.ts:38 -msgid "Compact Mode" +msgid "Enable Headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:39 -msgid "Controls the compactness of the clipboard item." +msgid "Controls the visibility of the clipboard item headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:47 -msgid "Window Position" -msgstr "Положення вікна" +msgid "Compact Mode" +msgstr "" #: src/prefs/customization/commonStyleGroup.ts:48 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:56 +msgid "Window Position" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "You can change position of the Pano" -msgstr "Ви можете змінити положення Pano" +msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Bottom" -msgstr "Знизу" +msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Left" -msgstr "Зліва" +msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Right" -msgstr "Справа" +msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Top" -msgstr "Зверху" +msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Window Background Color" -msgstr "Колір фону вікна" +msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:67 msgid "You can change the window background color" -msgstr "Ви можете змінити колір фону вікна" +msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "Incognito Window Background Color" -msgstr "Колір фону вікна інкогніто" +msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:75 msgid "You can change the incognito window background color" -msgstr "Ви можете змінити колір фону вікна інкогніто" +msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "Search Bar Font" -msgstr "Шрифт пошуку" +msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:83 msgid "You can change the font of the search bar" -msgstr "Ви можете змінити шрифт пошукового рядка" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Item Title Font" +msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/fileItemStyle.ts:61 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "Item Date Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "You can change the font of the date" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Active Item Border Color" -msgstr "Колір рамки активного елемента" +msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "You can change the active item border color" -msgstr "Ви можете змінити колір рамки активного елемента" +msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Hovered Item Border Color" -msgstr "Колір рамки при наведенні на елемент" +msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:105 msgid "You can change the hovered item border color" -msgstr "Ви можете змінити колір рамки при наведенні на елемент" +msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:113 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -214,11 +279,11 @@ msgstr "Змінити стиль емодзі" msgid "Emoji Item Style" msgstr "Стиль емодзі" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "Emoji Size" msgstr "Розмір емодзі" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "You can change the emoji size" msgstr "Ви можете змінити розмір емодзі" @@ -230,37 +295,41 @@ msgstr "Змінити стиль елемента файлу" msgid "File Item Style" msgstr "Стиль елемента файлу" -#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:52 msgid "Title Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:53 msgid "You can change the text color of the title" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:61 msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "Body Text Color" msgstr "Колір тексту тіла" -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "You can change the text color of the body" msgstr "Ви можете змінити колір тексту тіла" +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Change the style of the image item" +msgstr "" + +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Image Item Style" +msgstr "" + #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "Персоналізація" -#: src/prefs/customization/itemStyleGroup.ts:17 +#: src/prefs/customization/itemStyleGroup.ts:18 msgid "Item Style" msgstr "Стиль елемента" @@ -272,59 +341,59 @@ msgstr "Змінити стиль елемента посилання" msgid "Link Item Style" msgstr "Стиль елемента посилання" -#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Color" msgstr "Колір заголовка метаданих" -#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the title color of the metadata" msgstr "Ви можете змінити колір заголовка метаданих" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Title Font" msgstr "Шрифт заголовка метаданих" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata title" msgstr "Ви можете змінити шрифт заголовка метаданих" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Color" msgstr "Колір опису метаданих" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the description color of the metadata" msgstr "Ви можете змінити колір опису метаданих" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Description Font" msgstr "Шрифт опису метаданих" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata description" msgstr "Ви можете змінити шрифт опису метаданих" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Color" msgstr "Колір посилання метаданих" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the link color of the metadata" msgstr "Ви можете змінити колір посилання метаданих" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:112 msgid "Metadata Link Font" msgstr "Шрифт посилання метаданих" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:113 msgid "You can change the font of the metadata link" msgstr "Ви можете змінити шрифт посилання метаданих" diff --git a/resources/po/vi.po b/resources/po/vi.po index 61c571d0..959e0deb 100644 --- a/resources/po/vi.po +++ b/resources/po/vi.po @@ -48,41 +48,81 @@ msgid "Code Item Style" msgstr "" #: src/prefs/customization/codeItemStyle.ts:22 +#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Body Background Color" +msgid "Header Background Color" msgstr "" #: src/prefs/customization/codeItemStyle.ts:23 +#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 +msgid "You can change the background color of the header" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:32 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/emojiItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/textItemStyle.ts:32 +msgid "Header Text Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:33 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/emojiItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/textItemStyle.ts:33 +msgid "You can change the text color of the header" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:42 +#: src/prefs/customization/emojiItemStyle.ts:42 +#: src/prefs/customization/fileItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/textItemStyle.ts:42 +msgid "Body Background Color" +msgstr "" + +#: src/prefs/customization/codeItemStyle.ts:43 +#: src/prefs/customization/emojiItemStyle.ts:43 +#: src/prefs/customization/fileItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:21 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:35 -#: src/prefs/customization/textItemStyle.ts:40 +#: src/prefs/customization/codeItemStyle.ts:55 +#: src/prefs/customization/textItemStyle.ts:60 msgid "Character Length" msgstr "" -#: src/prefs/customization/codeItemStyle.ts:36 -#: src/prefs/customization/textItemStyle.ts:41 +#: src/prefs/customization/codeItemStyle.ts:56 +#: src/prefs/customization/textItemStyle.ts:61 msgid "You can change the character length of the visible text in the body" msgstr "" @@ -94,7 +134,7 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/colorItemStyle.ts:21 +#: src/prefs/customization/colorItemStyle.ts:41 msgid "You can change the font of the metadata" msgstr "" @@ -127,82 +167,107 @@ msgid "You can change the item size" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:38 -msgid "Compact Mode" +msgid "Enable Headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:39 -msgid "Controls the compactness of the clipboard item." +msgid "Controls the visibility of the clipboard item headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:47 -msgid "Window Position" +msgid "Compact Mode" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:48 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:56 +msgid "Window Position" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:67 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:75 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:83 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Item Title Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/fileItemStyle.ts:61 +msgid "You can change the font of the title" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "Item Date Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "You can change the font of the date" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:105 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:113 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -214,11 +279,11 @@ msgstr "" msgid "Emoji Item Style" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "Emoji Size" msgstr "" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "You can change the emoji size" msgstr "" @@ -230,37 +295,41 @@ msgstr "" msgid "File Item Style" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:52 msgid "Title Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:53 msgid "You can change the text color of the title" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:61 msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "Body Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "You can change the text color of the body" msgstr "" +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Change the style of the image item" +msgstr "" + +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Image Item Style" +msgstr "" + #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "" -#: src/prefs/customization/itemStyleGroup.ts:17 +#: src/prefs/customization/itemStyleGroup.ts:18 msgid "Item Style" msgstr "" @@ -272,59 +341,59 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:112 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:113 msgid "You can change the font of the metadata link" msgstr "" diff --git a/resources/po/zh_CN.po b/resources/po/zh_CN.po index c3fa0081..9de47bbc 100644 --- a/resources/po/zh_CN.po +++ b/resources/po/zh_CN.po @@ -48,41 +48,81 @@ msgid "Code Item Style" msgstr "代码项目风格" #: src/prefs/customization/codeItemStyle.ts:22 +#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Body Background Color" -msgstr "正文背景色" +msgid "Header Background Color" +msgstr "标题背景色" #: src/prefs/customization/codeItemStyle.ts:23 +#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 +msgid "You can change the background color of the header" +msgstr "修改标题背景颜色" + +#: src/prefs/customization/codeItemStyle.ts:32 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/emojiItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/textItemStyle.ts:32 +msgid "Header Text Color" +msgstr "标题文字颜色" + +#: src/prefs/customization/codeItemStyle.ts:33 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/emojiItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/textItemStyle.ts:33 +msgid "You can change the text color of the header" +msgstr "修改标题文字颜色" + +#: src/prefs/customization/codeItemStyle.ts:42 +#: src/prefs/customization/emojiItemStyle.ts:42 +#: src/prefs/customization/fileItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/textItemStyle.ts:42 +msgid "Body Background Color" +msgstr "正文背景色" + +#: src/prefs/customization/codeItemStyle.ts:43 +#: src/prefs/customization/emojiItemStyle.ts:43 +#: src/prefs/customization/fileItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "修改正文背景颜色" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:21 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "正文字体" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "修改正文字体" -#: src/prefs/customization/codeItemStyle.ts:35 -#: src/prefs/customization/textItemStyle.ts:40 +#: src/prefs/customization/codeItemStyle.ts:55 +#: src/prefs/customization/textItemStyle.ts:60 msgid "Character Length" msgstr "字符长度" -#: src/prefs/customization/codeItemStyle.ts:36 -#: src/prefs/customization/textItemStyle.ts:41 +#: src/prefs/customization/codeItemStyle.ts:56 +#: src/prefs/customization/textItemStyle.ts:61 msgid "You can change the character length of the visible text in the body" msgstr "修改正文文本在预览时显示的字数" @@ -94,7 +134,7 @@ msgstr "修改色彩项目风格" msgid "Color Item Style" msgstr "色彩项目风格" -#: src/prefs/customization/colorItemStyle.ts:21 +#: src/prefs/customization/colorItemStyle.ts:41 msgid "You can change the font of the metadata" msgstr "修改元数据文本字体" @@ -127,82 +167,107 @@ msgid "You can change the item size" msgstr "修改项目尺寸" #: src/prefs/customization/commonStyleGroup.ts:38 -msgid "Compact Mode" +msgid "Enable Headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:39 -msgid "Controls the compactness of the clipboard item." +msgid "Controls the visibility of the clipboard item headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:48 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:56 msgid "Window Position" msgstr "窗口位置" -#: src/prefs/customization/commonStyleGroup.ts:48 +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "You can change position of the Pano" msgstr "修改Pano窗口的位置" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Bottom" msgstr "底部" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Left" msgstr "左侧" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Right" msgstr "右侧" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Top" msgstr "顶部" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Window Background Color" msgstr "窗口背景色" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:67 msgid "You can change the window background color" msgstr "修改窗口背景颜色" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "Incognito Window Background Color" msgstr "隐私窗口背景色" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:75 msgid "You can change the incognito window background color" msgstr "修改隐私窗口背景颜色" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "Search Bar Font" msgstr "搜索栏字体" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:83 msgid "You can change the font of the search bar" msgstr "修改搜索栏字体" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Item Title Font" +msgstr "项目标题字体" + +#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/fileItemStyle.ts:61 +msgid "You can change the font of the title" +msgstr "修改项目标题字体" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "Item Date Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "You can change the font of the date" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Active Item Border Color" msgstr "激活项目边框颜色" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "You can change the active item border color" msgstr "修改激活项目的边框颜色" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Hovered Item Border Color" msgstr "悬停项目边框颜色" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:105 msgid "You can change the hovered item border color" msgstr "修改鼠标悬停项目的边框颜色" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:113 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -214,11 +279,11 @@ msgstr "修改表情符号项目风格" msgid "Emoji Item Style" msgstr "表情符号项目风格" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "Emoji Size" msgstr "表情符号大小" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "You can change the emoji size" msgstr "修改表情符号大小" @@ -230,37 +295,41 @@ msgstr "修改文件项目的风格" msgid "File Item Style" msgstr "文件项目风格" -#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:52 msgid "Title Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:53 msgid "You can change the text color of the title" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:61 msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "Body Text Color" msgstr "正文字体颜色" -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "You can change the text color of the body" msgstr "修改正文字体颜色" +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Change the style of the image item" +msgstr "修改图像项目风格" + +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Image Item Style" +msgstr "图像项目风格" + #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "自定义" -#: src/prefs/customization/itemStyleGroup.ts:17 +#: src/prefs/customization/itemStyleGroup.ts:18 msgid "Item Style" msgstr "项目风格" @@ -272,59 +341,59 @@ msgstr "修改链接项目风格" msgid "Link Item Style" msgstr "链接项目风格" -#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Background Color" msgstr "元数据背景色" -#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the background color of the metadata" msgstr "修改元数据背景颜色" -#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Color" msgstr "元数据标题颜色" -#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the title color of the metadata" msgstr "修改元数据标题颜色" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Title Font" msgstr "元数据标题字体" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata title" msgstr "修改元数据标题字体" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Color" msgstr "元数据详情颜色" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the description color of the metadata" msgstr "修改元数据详情颜色" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Description Font" msgstr "元数据详情字体" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata description" msgstr "修改元数据详情字体" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Color" msgstr "元数据链接颜色" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the link color of the metadata" msgstr "修改元数据链接颜色" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:112 msgid "Metadata Link Font" msgstr "元数据链接字体" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:113 msgid "You can change the font of the metadata link" msgstr "修改元数据链接字体" diff --git a/resources/po/zh_TW.po b/resources/po/zh_TW.po index 0517e645..9c4acd1b 100644 --- a/resources/po/zh_TW.po +++ b/resources/po/zh_TW.po @@ -48,41 +48,81 @@ msgid "Code Item Style" msgstr "程式物件主題" #: src/prefs/customization/codeItemStyle.ts:22 +#: src/prefs/customization/colorItemStyle.ts:22 #: src/prefs/customization/emojiItemStyle.ts:22 #: src/prefs/customization/fileItemStyle.ts:22 +#: src/prefs/customization/imageItemStyle.ts:21 #: src/prefs/customization/linkItemStyle.ts:22 #: src/prefs/customization/textItemStyle.ts:22 -msgid "Body Background Color" -msgstr "內容背景顏色" +msgid "Header Background Color" +msgstr "標題背景顏色" #: src/prefs/customization/codeItemStyle.ts:23 +#: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 #: src/prefs/customization/fileItemStyle.ts:23 +#: src/prefs/customization/imageItemStyle.ts:22 #: src/prefs/customization/linkItemStyle.ts:23 #: src/prefs/customization/textItemStyle.ts:23 +msgid "You can change the background color of the header" +msgstr "你可以更換背景顏色的" + +#: src/prefs/customization/codeItemStyle.ts:32 +#: src/prefs/customization/colorItemStyle.ts:32 +#: src/prefs/customization/emojiItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/imageItemStyle.ts:31 +#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/textItemStyle.ts:32 +msgid "Header Text Color" +msgstr "標題字體顏色" + +#: src/prefs/customization/codeItemStyle.ts:33 +#: src/prefs/customization/colorItemStyle.ts:33 +#: src/prefs/customization/emojiItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/imageItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/textItemStyle.ts:33 +msgid "You can change the text color of the header" +msgstr "你可以更換視窗標頭字體顏色" + +#: src/prefs/customization/codeItemStyle.ts:42 +#: src/prefs/customization/emojiItemStyle.ts:42 +#: src/prefs/customization/fileItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/textItemStyle.ts:42 +msgid "Body Background Color" +msgstr "內容背景顏色" + +#: src/prefs/customization/codeItemStyle.ts:43 +#: src/prefs/customization/emojiItemStyle.ts:43 +#: src/prefs/customization/fileItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "你可以更換內容的背景顏色" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/colorItemStyle.ts:21 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/colorItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "內容字體" -#: src/prefs/customization/codeItemStyle.ts:30 -#: src/prefs/customization/fileItemStyle.ts:50 -#: src/prefs/customization/textItemStyle.ts:35 +#: src/prefs/customization/codeItemStyle.ts:50 +#: src/prefs/customization/fileItemStyle.ts:70 +#: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "你可以更換內容的字體" -#: src/prefs/customization/codeItemStyle.ts:35 -#: src/prefs/customization/textItemStyle.ts:40 +#: src/prefs/customization/codeItemStyle.ts:55 +#: src/prefs/customization/textItemStyle.ts:60 msgid "Character Length" msgstr "字串長度" -#: src/prefs/customization/codeItemStyle.ts:36 -#: src/prefs/customization/textItemStyle.ts:41 +#: src/prefs/customization/codeItemStyle.ts:56 +#: src/prefs/customization/textItemStyle.ts:61 msgid "You can change the character length of the visible text in the body" msgstr "你可以更換內容的可見字串長度" @@ -94,7 +134,7 @@ msgstr "切換顏色物件主題" msgid "Color Item Style" msgstr "顏色物件主題" -#: src/prefs/customization/colorItemStyle.ts:21 +#: src/prefs/customization/colorItemStyle.ts:41 msgid "You can change the font of the metadata" msgstr "你可以更換詮釋資料的字體" @@ -127,82 +167,107 @@ msgid "You can change the item size" msgstr "你可以更換物件大小" #: src/prefs/customization/commonStyleGroup.ts:38 -msgid "Compact Mode" +msgid "Enable Headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:39 -msgid "Controls the compactness of the clipboard item." +msgid "Controls the visibility of the clipboard item headers" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:48 +msgid "Controls the compactness of the clipboard item." +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:56 msgid "Window Position" msgstr "視窗位置" -#: src/prefs/customization/commonStyleGroup.ts:48 +#: src/prefs/customization/commonStyleGroup.ts:57 msgid "You can change position of the Pano" msgstr "你可以更換 Pano 的位置" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Bottom" msgstr "底部" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Left" msgstr "左邊" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Right" msgstr "右邊" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Top" msgstr "頂部" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Window Background Color" msgstr "視窗背景顏色" -#: src/prefs/customization/commonStyleGroup.ts:58 +#: src/prefs/customization/commonStyleGroup.ts:67 msgid "You can change the window background color" msgstr "你可以更換視窗背景顏色" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "Incognito Window Background Color" msgstr "無痕模式視窗背景顏色" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:75 msgid "You can change the incognito window background color" msgstr "你可以更換無痕模式視窗背景顏色" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "Search Bar Font" msgstr "搜尋欄字體" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:83 msgid "You can change the font of the search bar" msgstr "你可以更換搜尋欄的字體" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Item Title Font" +msgstr "物件標題字體" + +#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/fileItemStyle.ts:61 +msgid "You can change the font of the title" +msgstr "你可以更換標題的字體" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "Item Date Font" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:92 +msgid "You can change the font of the date" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Active Item Border Color" msgstr "選取物件邊界顏色" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "You can change the active item border color" msgstr "你可以更換活躍的物件邊界顏色" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Hovered Item Border Color" msgstr "被游標覆蓋物件邊界顏色" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:105 msgid "You can change the hovered item border color" msgstr "你可以更換被覆蓋物件邊界顏色" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:113 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -214,11 +279,11 @@ msgstr "切換表情符號物件主題" msgid "Emoji Item Style" msgstr "表情符號物件風格" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "Emoji Size" msgstr "表情符號大小" -#: src/prefs/customization/emojiItemStyle.ts:31 +#: src/prefs/customization/emojiItemStyle.ts:51 msgid "You can change the emoji size" msgstr "你可以更換表情符號的大小" @@ -230,37 +295,41 @@ msgstr "切換檔案物件主題" msgid "File Item Style" msgstr "檔案物件風格" -#: src/prefs/customization/fileItemStyle.ts:32 +#: src/prefs/customization/fileItemStyle.ts:52 msgid "Title Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:33 +#: src/prefs/customization/fileItemStyle.ts:53 msgid "You can change the text color of the title" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 +#: src/prefs/customization/fileItemStyle.ts:61 msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:41 -msgid "You can change the font of the title" -msgstr "" - -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "Body Text Color" msgstr "內容字體顏色" -#: src/prefs/customization/fileItemStyle.ts:46 -#: src/prefs/customization/textItemStyle.ts:31 +#: src/prefs/customization/fileItemStyle.ts:66 +#: src/prefs/customization/textItemStyle.ts:51 msgid "You can change the text color of the body" msgstr "你可以更換內容的字體顏色" +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Change the style of the image item" +msgstr "切換圖片物件主題" + +#: src/prefs/customization/imageItemStyle.ts:14 +msgid "Image Item Style" +msgstr "圖片物件風格" + #: src/prefs/customization/index.ts:13 msgid "Customization" msgstr "個人化" -#: src/prefs/customization/itemStyleGroup.ts:17 +#: src/prefs/customization/itemStyleGroup.ts:18 msgid "Item Style" msgstr "物件風格" @@ -272,59 +341,59 @@ msgstr "切換連結物件主題" msgid "Link Item Style" msgstr "連結物件風格" -#: src/prefs/customization/linkItemStyle.ts:32 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Background Color" msgstr "詮釋資料背景顏色" -#: src/prefs/customization/linkItemStyle.ts:33 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the background color of the metadata" msgstr "你可以更換詮釋資料的背景顏色" -#: src/prefs/customization/linkItemStyle.ts:42 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Color" msgstr "詮釋資料標題顏色" -#: src/prefs/customization/linkItemStyle.ts:43 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the title color of the metadata" msgstr "你可以更換詮釋資料的標題顏色" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Title Font" msgstr "詮釋資料標題字體" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the font of the metadata title" msgstr "你可以更換詮釋資料標題的字體" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Color" msgstr "詮釋資料說明顏色" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the description color of the metadata" msgstr "你可以更換詮釋資料的說明顏色" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Description Font" msgstr "詮釋資料說明字體" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the font of the metadata description" msgstr "你可以更換詮釋資料說明的字體" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Color" msgstr "詮釋資料連結顏色" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the link color of the metadata" msgstr "你可以更換詮釋資料的連結顏色" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:112 msgid "Metadata Link Font" msgstr "詮釋資料連結字體" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:113 msgid "You can change the font of the metadata link" msgstr "你可以更換詮釋資料連結的字體" diff --git a/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml b/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml index f6760fc3..cd3abac8 100644 --- a/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml +++ b/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml @@ -107,6 +107,11 @@ Item Size Controls size of the clipboard item. + + false + Enable Headers + Controls the visibility of the clipboard item headers. + false Compact Mode @@ -137,6 +142,26 @@ search-bar-font-size search-bar-font-size + + 'Cantarell Regular' + item-title-font-family + item-title-font-family + + + 20 + item-title-font-size + item-title-font-size + + + 'Cantarell Regular' + item-date-font-family + item-date-font-family + + + 11 + item-date-font-size + item-date-font-size + 'rgb(53, 132, 228)' active-item-border-color @@ -157,11 +182,22 @@ + + + 'rgb(98, 160, 234)' + header-bg-color + header-bg-color + + + 'rgb(255, 255, 255)' + header-color + header-color + 'rgb(48, 48, 48)' body-bg-color @@ -220,6 +256,16 @@ + + 'rgb(26, 95, 180)' + header-bg-color + header-bg-color + + + 'rgb(255, 255, 255)' + header-color + header-color + 'rgb(48, 48, 48)' body-bg-color @@ -249,6 +295,16 @@ + + 'rgb(255, 163, 72)' + header-bg-color + header-bg-color + + + 'rgb(255, 255, 255)' + header-color + header-color + 'rgb(48, 48, 48)' body-bg-color @@ -263,6 +319,16 @@ + + 'rgb(61, 56, 70)' + header-bg-color + header-bg-color + + + 'rgb(255, 255, 255)' + header-color + header-color + 'rgb(48, 48, 48)' body-bg-color @@ -300,7 +366,30 @@ + + + 'rgb(237, 51, 59)' + header-bg-color + header-bg-color + + + 'rgb(255, 255, 255)' + header-color + header-color + + + + + 'rgb(36, 31, 49)' + header-bg-color + header-bg-color + + + 'rgb(255, 255, 255)' + header-color + header-color + 'rgb(48, 48, 48)' body-bg-color @@ -325,6 +414,16 @@ + + 'rgb(145, 65, 172)' + header-bg-color + header-bg-color + + + 'rgb(255, 255, 255)' + header-color + header-color + 'Cantarell Regular' metadata-font-family diff --git a/src/components/codePanoItem.ts b/src/components/codePanoItem.ts index 0a6ae356..53842ef1 100644 --- a/src/components/codePanoItem.ts +++ b/src/components/codePanoItem.ts @@ -30,12 +30,15 @@ export class CodePanoItem extends PanoItem { } private setStyle() { + const headerBgColor = this.codeItemSettings.get_string('header-bg-color'); + const headerColor = this.codeItemSettings.get_string('header-color'); const bodyBgColor = this.codeItemSettings.get_string('body-bg-color'); const bodyFontFamily = this.codeItemSettings.get_string('body-font-family'); const bodyFontSize = this.codeItemSettings.get_int('body-font-size'); const characterLength = this.codeItemSettings.get_int('char-length'); - this.body.set_style(`background-color: ${bodyBgColor}`); + this.header.set_style(`background-color: ${headerBgColor}; color: ${headerColor};`); + this.container.set_style(`background-color: ${bodyBgColor}`); this.label.set_style(`font-size: ${bodyFontSize}px; font-family: ${bodyFontFamily};`); this.label.clutterText.set_markup(markupCode(this.dbItem.content.trim(), characterLength)); diff --git a/src/components/colorPanoItem.ts b/src/components/colorPanoItem.ts index b59b1380..e544e917 100644 --- a/src/components/colorPanoItem.ts +++ b/src/components/colorPanoItem.ts @@ -12,7 +12,7 @@ import * as colorString from 'color-string'; @registerGObjectClass export class ColorPanoItem extends PanoItem { private colorItemSettings: Gio.Settings; - private container: St.BoxLayout; + private colorContainer: St.BoxLayout; private icon: St.Icon; private label: St.Label; @@ -21,7 +21,7 @@ export class ColorPanoItem extends PanoItem { this.colorItemSettings = this.settings.get_child('color-item'); - this.container = new St.BoxLayout({ + this.colorContainer = new St.BoxLayout({ ...orientationCompatibility(true), xExpand: true, yExpand: true, @@ -44,18 +44,14 @@ export class ColorPanoItem extends PanoItem { styleClass: 'color-label', }); - this.container.add_child(this.icon); - this.container.add_child(this.label); + this.colorContainer.add_child(this.icon); + this.colorContainer.add_child(this.label); - this.container.add_constraint( - new Clutter.AlignConstraint({ - source: this, - alignAxis: Clutter.AlignAxis.Y_AXIS, - factor: 0.005, - }), + this.colorContainer.add_constraint( + new Clutter.AlignConstraint({ source: this, alignAxis: Clutter.AlignAxis.Y_AXIS, factor: 0.005 }), ); - this.body.add_child(this.container); + this.body.add_child(this.colorContainer); this.connect('activated', this.setClipboardContent.bind(this)); this.setCompactMode(); this.settings.connect('changed::compact-mode', this.setCompactMode.bind(this)); @@ -65,13 +61,15 @@ export class ColorPanoItem extends PanoItem { private setCompactMode() { if (this.settings.get_boolean('compact-mode')) { - this.container.vertical = false; + this.colorContainer.vertical = false; } else { - this.container.vertical = true; + this.colorContainer.vertical = true; } } private setStyle() { + const headerBgColor = this.colorItemSettings.get_string('header-bg-color'); + const headerColor = this.colorItemSettings.get_string('header-color'); const metadataFontFamily = this.colorItemSettings.get_string('metadata-font-family'); const metadataFontSize = this.colorItemSettings.get_int('metadata-font-size'); @@ -86,7 +84,8 @@ export class ColorPanoItem extends PanoItem { const iconColor = `rgb(${Math.clamp(rgb[0] + delta, 0, 255)}, ${Math.clamp(rgb[1] + delta, 0, 255)}, ${Math.clamp(rgb[2] + delta, 0, 255)})`; const textColor = L > 0.179 ? '#000000' : '#ffffff'; - this.body.set_style(`background-color: ${this.dbItem.content};`); + this.header.set_style(`background-color: ${headerBgColor}; color: ${headerColor};`); + this.container.set_style(`background-color: ${this.dbItem.content};`); this.icon.set_style(`color: ${iconColor};`); this.label.set_style(`color: ${textColor}; font-family: ${metadataFontFamily}; font-size: ${metadataFontSize}px;`); } @@ -101,11 +100,6 @@ export class ColorPanoItem extends PanoItem { } private setClipboardContent(): void { - this.clipboardManager.setContent( - new ClipboardContent({ - type: ContentType.TEXT, - value: this.dbItem.content, - }), - ); + this.clipboardManager.setContent(new ClipboardContent({ type: ContentType.TEXT, value: this.dbItem.content })); } } diff --git a/src/components/emojiPanoItem.ts b/src/components/emojiPanoItem.ts index 4a27e2a7..8fad081c 100644 --- a/src/components/emojiPanoItem.ts +++ b/src/components/emojiPanoItem.ts @@ -7,7 +7,6 @@ import { PanoItem } from '@pano/components/panoItem'; import { ClipboardContent, ClipboardManager, ContentType } from '@pano/utils/clipboardManager'; import { DBItem } from '@pano/utils/db'; import { registerGObjectClass } from '@pano/utils/gjs'; -import { orientationCompatibility } from '@pano/utils/shell_compatibility'; @registerGObjectClass export class EmojiPanoItem extends PanoItem { private emojiItemSettings: Gio.Settings; @@ -18,15 +17,6 @@ export class EmojiPanoItem extends PanoItem { this.emojiItemSettings = this.settings.get_child('emoji-item'); - const emojiContainer = new St.BoxLayout({ - ...orientationCompatibility(false), - xExpand: true, - yExpand: true, - yAlign: Clutter.ActorAlign.FILL, - xAlign: Clutter.ActorAlign.FILL, - styleClass: 'emoji-container', - }); - this.label = new St.Label({ xAlign: Clutter.ActorAlign.CENTER, yAlign: Clutter.ActorAlign.CENTER, @@ -38,9 +28,8 @@ export class EmojiPanoItem extends PanoItem { this.label.clutterText.lineWrap = true; this.label.clutterText.lineWrapMode = Pango.WrapMode.WORD_CHAR; this.label.clutterText.ellipsize = Pango.EllipsizeMode.END; - emojiContainer.add_child(this.label); - this.body.add_child(emojiContainer); + this.body.add_child(this.label); this.connect('activated', this.setClipboardContent.bind(this)); this.setStyle(); this.emojiItemSettings.connect('changed', this.setStyle.bind(this)); @@ -49,19 +38,17 @@ export class EmojiPanoItem extends PanoItem { } private setStyle() { + const headerBgColor = this.emojiItemSettings.get_string('header-bg-color'); + const headerColor = this.emojiItemSettings.get_string('header-color'); const bodyBgColor = this.emojiItemSettings.get_string('body-bg-color'); const emojiSize = this.emojiItemSettings.get_int('emoji-size'); - this.body.set_style(`background-color: ${bodyBgColor};`); + this.header.set_style(`background-color: ${headerBgColor}; color: ${headerColor};`); + this.container.set_style(`background-color: ${bodyBgColor};`); this.label.set_style(`font-size: ${Math.min(emojiSize, this.body.height - 24)}px;`); } private setClipboardContent(): void { - this.clipboardManager.setContent( - new ClipboardContent({ - type: ContentType.TEXT, - value: this.dbItem.content, - }), - ); + this.clipboardManager.setContent(new ClipboardContent({ type: ContentType.TEXT, value: this.dbItem.content })); } } diff --git a/src/components/filePanoItem.ts b/src/components/filePanoItem.ts index 7e5af61b..85fd191b 100644 --- a/src/components/filePanoItem.ts +++ b/src/components/filePanoItem.ts @@ -149,10 +149,13 @@ export class FilePanoItem extends PanoItem { this.connect('activated', this.setClipboardContent.bind(this)); this.setStyle(); + this.settings.connect('changed::enable-headers', this.setStyle.bind(this)); this.fileItemSettings.connect('changed', this.setStyle.bind(this)); } private setStyle() { + const headerBgColor = this.fileItemSettings.get_string('header-bg-color'); + const headerColor = this.fileItemSettings.get_string('header-color'); const bodyBgColor = this.fileItemSettings.get_string('body-bg-color'); const titleColor = this.fileItemSettings.get_string('title-color'); const titleFontFamily = this.fileItemSettings.get_string('title-font-family'); @@ -161,8 +164,10 @@ export class FilePanoItem extends PanoItem { const bodyFontFamily = this.fileItemSettings.get_string('body-font-family'); const bodyFontSize = this.fileItemSettings.get_int('body-font-size'); - this.body.set_style(`background-color: ${bodyBgColor};`); + this.header.set_style(`background-color: ${headerBgColor}; color: ${headerColor};`); + this.container.set_style(`background-color: ${bodyBgColor};`); + this.titleContainer.visible = !this.settings.get_boolean('enable-headers'); this.titleContainer.set_style( `color: ${titleColor}; font-family: ${titleFontFamily}; font-size: ${titleFontSize}px;`, ); diff --git a/src/components/imagePanoItem.ts b/src/components/imagePanoItem.ts index e68441c8..4b5f48f7 100644 --- a/src/components/imagePanoItem.ts +++ b/src/components/imagePanoItem.ts @@ -10,6 +10,7 @@ const NO_IMAGE_FOUND_FILE_NAME = 'no-image-found.svg'; @registerGObjectClass export class ImagePanoItem extends PanoItem { + private imageItemSettings: Gio.Settings; private ext: ExtensionBase; constructor(ext: ExtensionBase, clipboardManager: ClipboardManager, dbItem: DBItem) { @@ -17,17 +18,23 @@ export class ImagePanoItem extends PanoItem { this.ext = ext; + this.imageItemSettings = this.settings.get_child('image-item'); + this.connect('activated', this.setClipboardContent.bind(this)); this.setStyle(); } private setStyle() { + const headerBgColor = this.imageItemSettings.get_string('header-bg-color'); + const headerColor = this.imageItemSettings.get_string('header-color'); + let imageFilePath = `file://${getImagesPath(this.ext)}/${this.dbItem.content}.png`; const imageFile = Gio.File.new_for_uri(imageFilePath); if (!imageFile.query_exists(null)) { imageFilePath = `file://${this.ext.path}/images/${NO_IMAGE_FOUND_FILE_NAME}`; } + this.header.style = `background-color: ${headerBgColor}; color: ${headerColor};`; this.body.set_style(`background-image: url(${imageFilePath}); background-size: cover;`); } diff --git a/src/components/linkPanoItem.ts b/src/components/linkPanoItem.ts index 0ff4ce48..ee28ec74 100644 --- a/src/components/linkPanoItem.ts +++ b/src/components/linkPanoItem.ts @@ -131,6 +131,8 @@ export class LinkPanoItem extends PanoItem { } private setStyle() { + const headerBgColor = this.linkItemSettings.get_string('header-bg-color'); + const headerColor = this.linkItemSettings.get_string('header-color'); const bodyBgColor = this.linkItemSettings.get_string('body-bg-color'); const metadataBgColor = this.linkItemSettings.get_string('metadata-bg-color'); const metadataTitleColor = this.linkItemSettings.get_string('metadata-title-color'); @@ -143,7 +145,8 @@ export class LinkPanoItem extends PanoItem { const metadataDescriptionFontSize = this.linkItemSettings.get_int('metadata-description-font-size'); const metadataLinkFontSize = this.linkItemSettings.get_int('metadata-link-font-size'); - this.body.set_style(`background-color: ${bodyBgColor};`); + this.header.set_style(`background-color: ${headerBgColor}; color: ${headerColor};`); + this.container.set_style(`background-color: ${bodyBgColor};`); this.metaContainer.set_style(`background-color: ${metadataBgColor};`); this.titleLabel.set_style( `color: ${metadataTitleColor}; font-family: ${metadataTitleFontFamily}; font-size: ${metadataTitleFontSize}px;`, diff --git a/src/components/panoItem.ts b/src/components/panoItem.ts index 6c6c58a2..0a4490da 100644 --- a/src/components/panoItem.ts +++ b/src/components/panoItem.ts @@ -7,6 +7,7 @@ import Graphene from '@girs/graphene-1.0'; import Meta from '@girs/meta-16'; import Shell from '@girs/shell-16'; import St from '@girs/st-16'; +import { PanoItemHeader } from '@pano/components/panoItemHeader'; import { PanoItemOverlay } from '@pano/components/panoItemOverlay'; import { ClipboardManager } from '@pano/utils/clipboardManager'; import { DBItem } from '@pano/utils/db'; @@ -42,6 +43,8 @@ export class PanoItem extends St.BoxLayout { }; private timeoutId: number | undefined; + protected container: St.BoxLayout; + protected header: PanoItemHeader; protected body: St.BoxLayout; protected overlay: PanoItemOverlay; protected clipboardManager: ClipboardManager; @@ -124,6 +127,18 @@ export class PanoItem extends St.BoxLayout { this.add_style_class_name(`pano-item-${this.dbItem.itemType.toLowerCase()}`); + this.container = new St.BoxLayout({ + styleClass: 'pano-item-container', + clipToAllocation: true, + vertical: true, + xAlign: Clutter.ActorAlign.FILL, + yAlign: Clutter.ActorAlign.FILL, + xExpand: true, + yExpand: true, + }); + + this.header = new PanoItemHeader(ext, getPanoItemTypes(ext)[this.dbItem.itemType], this.dbItem.copyDate); + this.body = new St.BoxLayout({ styleClass: 'pano-item-body', clipToAllocation: true, @@ -134,7 +149,10 @@ export class PanoItem extends St.BoxLayout { yExpand: true, }); - this.overlay = new PanoItemOverlay(getPanoItemTypes(ext)[dbItem.itemType]); + this.container.add_child(this.header); + this.container.add_child(this.body); + + this.overlay = new PanoItemOverlay(); this.overlay.setFavorite(this.dbItem.isFavorite); this.overlay.connect('on-remove', () => { this.emit('on-remove', JSON.stringify(this.dbItem)); @@ -152,12 +170,12 @@ export class PanoItem extends St.BoxLayout { return Clutter.EVENT_PROPAGATE; }); - this.add_child(this.body); + this.add_child(this.container); this.add_child(this.overlay); this.overlay.add_constraint( new Clutter.BindConstraint({ - source: this.body, + source: this.container, coordinate: Clutter.BindCoordinate.Y, }), ); @@ -168,12 +186,9 @@ export class PanoItem extends St.BoxLayout { this.add_style_class_name('compact'); } - themeContext.connect('notify::scale-factor', () => { - this.setBodyDimensions(); - }); - this.settings.connect('changed::item-size', () => { - this.setBodyDimensions(); - }); + themeContext.connect('notify::scale-factor', this.setBodyDimensions.bind(this)); + this.settings.connect('changed::item-size', this.setBodyDimensions.bind(this)); + this.settings.connect('changed::enable-headers', this.setBodyDimensions.bind(this)); this.settings.connect('changed::compact-mode', () => { if (this.settings.get_boolean('compact-mode')) { this.add_style_class_name('compact'); @@ -182,9 +197,7 @@ export class PanoItem extends St.BoxLayout { } this.setBodyDimensions(); }); - this.settings.connect('changed::window-position', () => { - this.setBodyDimensions(); - }); + this.settings.connect('changed::window-position', this.setBodyDimensions.bind(this)); this.setBodyDimensions(); @@ -204,12 +217,15 @@ export class PanoItem extends St.BoxLayout { } const { scaleFactor } = St.ThemeContext.get_for_stage(Shell.Global.get().get_stage()); const mult = this.settings.get_boolean('compact-mode') ? 0.3 : 0.7; - const height = this.settings.get_int('item-size') * mult; + const header = this.settings.get_boolean('enable-headers') ? 48 : 0; + const height = this.settings.get_int('item-size') * mult + header; this.set_height(height * scaleFactor); - this.body.set_width(this.settings.get_int('item-size') * scaleFactor); - this.body.set_height((height - 8) * scaleFactor); + this.container.set_width(this.settings.get_int('item-size') * scaleFactor); + this.container.set_height((height - 8) * scaleFactor); + this.body.set_height((height - 8 - header) * scaleFactor); this.overlay.set_height((height - 8) * scaleFactor); + this.header.visible = this.settings.get_boolean('enable-headers'); } private setVisible() { diff --git a/src/components/panoItemHeader.ts b/src/components/panoItemHeader.ts new file mode 100644 index 00000000..217abf5a --- /dev/null +++ b/src/components/panoItemHeader.ts @@ -0,0 +1,140 @@ +import Clutter from '@girs/clutter-16'; +import Gio from '@girs/gio-2.0'; +import GLib from '@girs/glib-2.0'; +import type { ExtensionBase } from '@girs/gnome-shell/dist/extensions/sharedInternals'; +import Shell from '@girs/shell-16'; +import St from '@girs/st-16'; +import { registerGObjectClass } from '@pano/utils/gjs'; +import { ICON_PACKS, IPanoItemType } from '@pano/utils/panoItemType'; +import { getCurrentExtensionSettings } from '@pano/utils/shell'; +import { Locale } from 'date-fns'; +import formatDistanceToNow from 'date-fns/formatDistanceToNow'; +import * as dateLocale from 'date-fns/locale'; + +const langs = GLib.get_language_names_with_category('LC_MESSAGES').map( + (l) => l.replaceAll('_', '').replaceAll('-', '').split('.')[0], +); +const localeKey = Object.keys(dateLocale).find((key) => langs.includes(key)); + +type FormatOptions = { + includeSeconds?: boolean; + addSuffix?: boolean; + locale?: Locale; +}; + +@registerGObjectClass +export class PanoItemHeader extends St.BoxLayout { + private dateUpdateIntervalId: any; + private settings: Gio.Settings; + private titleLabel: St.Label; + private dateLabel: St.Label; + private titleContainer: St.BoxLayout; + + constructor(ext: ExtensionBase, itemType: IPanoItemType, date: Date) { + super({ + styleClass: 'pano-item-header', + vertical: false, + }); + + this.settings = getCurrentExtensionSettings(ext); + + const themeContext = St.ThemeContext.get_for_stage(Shell.Global.get().get_stage()); + + this.set_height(48 * themeContext.scaleFactor); + + themeContext.connect('notify::scale-factor', () => { + this.set_height(48 * themeContext.scaleFactor); + }); + + const icon = new St.Icon({ + styleClass: 'pano-item-title-icon', + gicon: Gio.icon_new_for_string( + `${ext.path}/icons/hicolor/scalable/actions/${ICON_PACKS[this.settings.get_uint('icon-pack')]}-${ + itemType.iconPath + }`, + ), + }); + + this.settings.connect('changed::icon-pack', () => { + icon.set_gicon( + Gio.icon_new_for_string( + `${ext.path}/icons/hicolor/scalable/actions/${ICON_PACKS[this.settings.get_uint('icon-pack')]}-${ + itemType.iconPath + }`, + ), + ); + }); + + this.titleContainer = new St.BoxLayout({ + styleClass: 'pano-item-title-container', + vertical: true, + xExpand: true, + xAlign: Clutter.ActorAlign.FILL, + yAlign: Clutter.ActorAlign.CENTER, + }); + + this.titleLabel = new St.Label({ + text: itemType.title, + styleClass: 'pano-item-title', + xExpand: true, + yExpand: false, + xAlign: Clutter.ActorAlign.FILL, + yAlign: Clutter.ActorAlign.CENTER, + }); + + const options: FormatOptions = { + addSuffix: true, + }; + + if (localeKey !== undefined) { + const locale = (dateLocale as Record)[localeKey]; + if (locale) { + options.locale = locale; + } + } + + this.dateLabel = new St.Label({ + text: formatDistanceToNow(date, options), + styleClass: 'pano-item-date', + xExpand: true, + yExpand: false, + xAlign: Clutter.ActorAlign.FILL, + yAlign: Clutter.ActorAlign.END, + }); + + this.dateUpdateIntervalId = GLib.timeout_add_seconds(GLib.PRIORITY_DEFAULT, 60, () => { + this.dateLabel.set_text(formatDistanceToNow(date, options)); + + return GLib.SOURCE_CONTINUE; + }); + + this.titleContainer.add_child(this.titleLabel); + this.titleContainer.add_child(this.dateLabel); + + this.add_child(icon); + this.add_child(this.titleContainer); + + this.setStyle(); + this.settings.connect('changed::item-title-font-family', this.setStyle.bind(this)); + this.settings.connect('changed::item-title-font-size', this.setStyle.bind(this)); + this.settings.connect('changed::item-date-font-family', this.setStyle.bind(this)); + this.settings.connect('changed::item-date-font-size', this.setStyle.bind(this)); + } + + private setStyle() { + const itemTitleFontFamily = this.settings.get_string('item-title-font-family'); + const itemTitleFontSize = this.settings.get_int('item-title-font-size'); + const itemDateFontFamily = this.settings.get_string('item-date-font-family'); + const itemDateFontSize = this.settings.get_int('item-date-font-size'); + this.titleLabel.set_style(`font-family: ${itemTitleFontFamily}; font-size: ${itemTitleFontSize}px;`); + this.dateLabel.set_style(`font-family: ${itemDateFontFamily}; font-size: ${itemDateFontSize}px;`); + } + + override destroy(): void { + if (this.dateUpdateIntervalId) { + GLib.source_remove(this.dateUpdateIntervalId); + this.dateUpdateIntervalId = null; + } + super.destroy(); + } +} diff --git a/src/components/panoItemOverlay.ts b/src/components/panoItemOverlay.ts index 57815f94..6ff2bcb5 100644 --- a/src/components/panoItemOverlay.ts +++ b/src/components/panoItemOverlay.ts @@ -1,16 +1,7 @@ import Clutter from '@girs/clutter-16'; -import GLib from '@girs/glib-2.0'; import GObject from '@girs/gobject-2.0'; import St from '@girs/st-16'; import { registerGObjectClass, SignalsDefinition } from '@pano/utils/gjs'; -import { IPanoItemType } from '@pano/utils/panoItemType'; -import { Locale } from 'date-fns'; -import * as dateLocale from 'date-fns/locale'; - -const langs = GLib.get_language_names_with_category('LC_MESSAGES').map( - (l) => l.replaceAll('_', '').replaceAll('-', '').split('.')[0], -); -const localeKey = Object.keys(dateLocale).find((key) => langs.includes(key)); export type PanoItemOverlaySignalType = 'on-remove' | 'on-favorite'; interface PanoItemOverlaySignals extends SignalsDefinition { @@ -18,43 +9,18 @@ interface PanoItemOverlaySignals extends SignalsDefinition; } -type FormatOptions = { - includeSeconds?: boolean; - addSuffix?: boolean; - locale?: Locale; -}; - @registerGObjectClass export class PanoItemOverlay extends St.BoxLayout { static metaInfo: GObject.MetaInfo, Record, PanoItemOverlaySignals> = { GTypeName: 'PanoItemOverlay', - Signals: { - 'on-remove': {}, - 'on-favorite': {}, - }, + Signals: { 'on-remove': {}, 'on-favorite': {} }, }; private favoriteButton: St.Button; actionContainer: St.BoxLayout; - itemType: IPanoItemType; - - constructor(itemType: IPanoItemType) { - super({ - styleClass: `pano-item-overlay pano-item-overlay-${itemType.classSuffix}`, - vertical: false, - }); - this.itemType = itemType; - const options: FormatOptions = { - addSuffix: true, - }; - - if (localeKey !== undefined) { - const locale = (dateLocale as Record)[localeKey]; - if (locale) { - options.locale = locale; - } - } + constructor() { + super({ styleClass: 'pano-item-overlay', vertical: false }); this.actionContainer = new St.BoxLayout({ styleClass: 'pano-item-actions', @@ -64,10 +30,7 @@ export class PanoItemOverlay extends St.BoxLayout { yAlign: Clutter.ActorAlign.START, }); - const favoriteIcon = new St.Icon({ - styleClass: 'pano-item-action-button-icon', - iconName: 'view-pin-symbolic', - }); + const favoriteIcon = new St.Icon({ styleClass: 'pano-item-action-button-icon', iconName: 'view-pin-symbolic' }); this.favoriteButton = new St.Button({ styleClass: 'pano-item-action-button pano-item-favorite-button', diff --git a/src/components/textPanoItem.ts b/src/components/textPanoItem.ts index 7ec01f8a..21335dc0 100644 --- a/src/components/textPanoItem.ts +++ b/src/components/textPanoItem.ts @@ -32,14 +32,19 @@ export class TextPanoItem extends PanoItem { } private setStyle() { + const headerBgColor = this.textItemSettings.get_string('header-bg-color'); + const headerColor = this.textItemSettings.get_string('header-color'); const bodyBgColor = this.textItemSettings.get_string('body-bg-color'); const bodyColor = this.textItemSettings.get_string('body-color'); const bodyFontFamily = this.textItemSettings.get_string('body-font-family'); const bodyFontSize = this.textItemSettings.get_int('body-font-size'); const characterLength = this.textItemSettings.get_int('char-length'); + // Set header styles + this.header.set_style(`background-color: ${headerBgColor}; color: ${headerColor};`); + // Set body styles - this.body.set_style(`background-color: ${bodyBgColor}`); + this.container.set_style(`background-color: ${bodyBgColor}`); // set label styles this.label.set_text(this.dbItem.content.trim().slice(0, characterLength)); diff --git a/src/containers/panoWindow.ts b/src/containers/panoWindow.ts index 0c288f54..ee063b73 100644 --- a/src/containers/panoWindow.ts +++ b/src/containers/panoWindow.ts @@ -46,6 +46,9 @@ export class PanoWindow extends St.BoxLayout { this.settings.connect('changed::item-size', () => { this.setWindowDimensions(themeContext.scaleFactor); }); + this.settings.connect('changed::enable-headers', () => { + this.setWindowDimensions(themeContext.scaleFactor); + }); this.settings.connect('changed::compact-mode', () => { this.setWindowDimensions(themeContext.scaleFactor); }); @@ -110,7 +113,8 @@ export class PanoWindow extends St.BoxLayout { this.set_width((this.settings.get_int('item-size') + 20) * scaleFactor); } else { const mult = this.settings.get_boolean('compact-mode') ? 0.3 : 0.7; - this.set_height((this.settings.get_int('item-size') * mult + 70) * scaleFactor); + const header = this.settings.get_boolean('enable-headers') ? 48 : 0; + this.set_height((this.settings.get_int('item-size') * mult + 70 + header) * scaleFactor); } } diff --git a/src/prefs/customization/codeItemStyle.ts b/src/prefs/customization/codeItemStyle.ts index 0d978808..2ab059ef 100644 --- a/src/prefs/customization/codeItemStyle.ts +++ b/src/prefs/customization/codeItemStyle.ts @@ -16,6 +16,26 @@ export class CodeItemStyleRow extends ItemExpanderRow { this.settings = getCurrentExtensionSettings(ext).get_child('code-item'); + // create header background color row + this.add_row( + createColorRow( + _('Header Background Color'), + _('You can change the background color of the header'), + this.settings, + 'header-bg-color', + ), + ); + + // create header text color row + this.add_row( + createColorRow( + _('Header Text Color'), + _('You can change the text color of the header'), + this.settings, + 'header-color', + ), + ); + // create body background color row this.add_row( createColorRow( diff --git a/src/prefs/customization/colorItemStyle.ts b/src/prefs/customization/colorItemStyle.ts index dcb427ec..ec1cc888 100644 --- a/src/prefs/customization/colorItemStyle.ts +++ b/src/prefs/customization/colorItemStyle.ts @@ -1,7 +1,7 @@ import Gio from '@girs/gio-2.0'; import type { ExtensionBase } from '@girs/gnome-shell/dist/extensions/sharedInternals'; import { ItemExpanderRow } from '@pano/prefs/customization/itemExpanderRow'; -import { createFontRow } from '@pano/prefs/customization/utils'; +import { createColorRow, createFontRow } from '@pano/prefs/customization/utils'; import { registerGObjectClass } from '@pano/utils/gjs'; import { getPanoItemTypes } from '@pano/utils/panoItemType'; import { getCurrentExtensionSettings, gettext } from '@pano/utils/shell'; @@ -16,6 +16,26 @@ export class ColorItemStyleRow extends ItemExpanderRow { this.settings = getCurrentExtensionSettings(ext).get_child('color-item'); + // create header background color row + this.add_row( + createColorRow( + _('Header Background Color'), + _('You can change the background color of the header'), + this.settings, + 'header-bg-color', + ), + ); + + // create header text color row + this.add_row( + createColorRow( + _('Header Text Color'), + _('You can change the text color of the header'), + this.settings, + 'header-color', + ), + ); + // create metadata font row this.add_row( createFontRow(_('Body Font'), _('You can change the font of the metadata'), this.settings, 'metadata-font'), diff --git a/src/prefs/customization/commonStyleGroup.ts b/src/prefs/customization/commonStyleGroup.ts index fa6d6ce6..bdb1177a 100644 --- a/src/prefs/customization/commonStyleGroup.ts +++ b/src/prefs/customization/commonStyleGroup.ts @@ -33,6 +33,15 @@ export class CommonStyleGroup extends Adw.PreferencesGroup { createSpinRow(_('Item Size'), _('You can change the item size'), this.settings, 'item-size', 5, 200, 1000), ); + this.add( + createSwitchRow( + _('Enable Headers'), + _('Controls the visibility of the clipboard item headers'), + this.settings, + 'enable-headers', + ), + ); + this.add( createSwitchRow( _('Compact Mode'), @@ -76,6 +85,12 @@ export class CommonStyleGroup extends Adw.PreferencesGroup { 'search-bar-font', ), ); + this.add( + createFontRow(_('Item Title Font'), _('You can change the font of the title'), this.settings, 'item-title-font'), + ); + this.add( + createFontRow(_('Item Date Font'), _('You can change the font of the date'), this.settings, 'item-date-font'), + ); this.add( createColorRow( _('Active Item Border Color'), diff --git a/src/prefs/customization/emojiItemStyle.ts b/src/prefs/customization/emojiItemStyle.ts index c26c0629..4756b019 100644 --- a/src/prefs/customization/emojiItemStyle.ts +++ b/src/prefs/customization/emojiItemStyle.ts @@ -16,6 +16,26 @@ export class EmojiItemStyleRow extends ItemExpanderRow { this.settings = getCurrentExtensionSettings(ext).get_child('emoji-item'); + // create header background color row + this.add_row( + createColorRow( + _('Header Background Color'), + _('You can change the background color of the header'), + this.settings, + 'header-bg-color', + ), + ); + + // create header text color row + this.add_row( + createColorRow( + _('Header Text Color'), + _('You can change the text color of the header'), + this.settings, + 'header-color', + ), + ); + // create body background color row this.add_row( createColorRow( diff --git a/src/prefs/customization/fileItemStyle.ts b/src/prefs/customization/fileItemStyle.ts index 4999f8cd..cb09a101 100644 --- a/src/prefs/customization/fileItemStyle.ts +++ b/src/prefs/customization/fileItemStyle.ts @@ -16,6 +16,26 @@ export class FileItemStyleRow extends ItemExpanderRow { this.settings = getCurrentExtensionSettings(ext).get_child('file-item'); + // create header background color row + this.add_row( + createColorRow( + _('Header Background Color'), + _('You can change the background color of the header'), + this.settings, + 'header-bg-color', + ), + ); + + // create header text color row + this.add_row( + createColorRow( + _('Header Text Color'), + _('You can change the text color of the header'), + this.settings, + 'header-color', + ), + ); + // create body background color row this.add_row( createColorRow( diff --git a/src/prefs/customization/imageItemStyle.ts b/src/prefs/customization/imageItemStyle.ts new file mode 100644 index 00000000..45489590 --- /dev/null +++ b/src/prefs/customization/imageItemStyle.ts @@ -0,0 +1,38 @@ +import Gio from '@girs/gio-2.0'; +import type { ExtensionBase } from '@girs/gnome-shell/dist/extensions/sharedInternals'; +import { ItemExpanderRow } from '@pano/prefs/customization/itemExpanderRow'; +import { createColorRow } from '@pano/prefs/customization/utils'; +import { registerGObjectClass } from '@pano/utils/gjs'; +import { getPanoItemTypes } from '@pano/utils/panoItemType'; +import { getCurrentExtensionSettings, gettext } from '@pano/utils/shell'; +@registerGObjectClass +export class ImageItemStyleRow extends ItemExpanderRow { + private settings: Gio.Settings; + + constructor(ext: ExtensionBase) { + const _ = gettext(ext); + super(ext, _('Image Item Style'), _('Change the style of the image item'), getPanoItemTypes(ext).IMAGE.iconName); + + this.settings = getCurrentExtensionSettings(ext).get_child('image-item'); + + // create header background color row + this.add_row( + createColorRow( + _('Header Background Color'), + _('You can change the background color of the header'), + this.settings, + 'header-bg-color', + ), + ); + + // create header text color row + this.add_row( + createColorRow( + _('Header Text Color'), + _('You can change the text color of the header'), + this.settings, + 'header-color', + ), + ); + } +} diff --git a/src/prefs/customization/itemStyleGroup.ts b/src/prefs/customization/itemStyleGroup.ts index 23384cd0..8c442595 100644 --- a/src/prefs/customization/itemStyleGroup.ts +++ b/src/prefs/customization/itemStyleGroup.ts @@ -4,6 +4,7 @@ import { CodeItemStyleRow } from '@pano/prefs/customization/codeItemStyle'; import { ColorItemStyleRow } from '@pano/prefs/customization/colorItemStyle'; import { EmojiItemStyleRow } from '@pano/prefs/customization/emojiItemStyle'; import { FileItemStyleRow } from '@pano/prefs/customization/fileItemStyle'; +import { ImageItemStyleRow } from '@pano/prefs/customization/imageItemStyle'; import { LinkItemStyleRow } from '@pano/prefs/customization/linkItemStyle'; import { TextItemStyleRow } from '@pano/prefs/customization/textItemStyle'; import { registerGObjectClass } from '@pano/utils/gjs'; @@ -22,6 +23,7 @@ export class ItemStyleGroup extends Adw.PreferencesGroup { this.add(new TextItemStyleRow(ext)); this.add(new EmojiItemStyleRow(ext)); this.add(new FileItemStyleRow(ext)); + this.add(new ImageItemStyleRow(ext)); this.add(new CodeItemStyleRow(ext)); this.add(new ColorItemStyleRow(ext)); } diff --git a/src/prefs/customization/linkItemStyle.ts b/src/prefs/customization/linkItemStyle.ts index 00cf95e4..af836da8 100644 --- a/src/prefs/customization/linkItemStyle.ts +++ b/src/prefs/customization/linkItemStyle.ts @@ -16,6 +16,26 @@ export class LinkItemStyleRow extends ItemExpanderRow { this.settings = getCurrentExtensionSettings(ext).get_child('link-item'); + // create header background color row + this.add_row( + createColorRow( + _('Header Background Color'), + _('You can change the background color of the header'), + this.settings, + 'header-bg-color', + ), + ); + + // create header text color row + this.add_row( + createColorRow( + _('Header Text Color'), + _('You can change the text color of the header'), + this.settings, + 'header-color', + ), + ); + // create body background color row this.add_row( createColorRow( diff --git a/src/prefs/customization/textItemStyle.ts b/src/prefs/customization/textItemStyle.ts index e172398f..a2edead3 100644 --- a/src/prefs/customization/textItemStyle.ts +++ b/src/prefs/customization/textItemStyle.ts @@ -16,6 +16,26 @@ export class TextItemStyleRow extends ItemExpanderRow { this.settings = getCurrentExtensionSettings(ext).get_child('text-item'); + // create header background color row + this.add_row( + createColorRow( + _('Header Background Color'), + _('You can change the background color of the header'), + this.settings, + 'header-bg-color', + ), + ); + + // create header text color row + this.add_row( + createColorRow( + _('Header Text Color'), + _('You can change the text color of the header'), + this.settings, + 'header-color', + ), + ); + // create body background color row this.add_row( createColorRow( diff --git a/src/styles/stylesheet.css b/src/styles/stylesheet.css index c4cd4115..ed3b4bf8 100644 --- a/src/styles/stylesheet.css +++ b/src/styles/stylesheet.css @@ -39,6 +39,10 @@ border: 4px solid transparent; } +.pano-item-container { + border-radius: 12px; +} + /* Overlay */ .pano-item-overlay { border-radius: 12px; @@ -93,56 +97,78 @@ background-color: #c01c28; } +/* Header */ +.pano-item-header { + border-radius: 12px 12px 0px 0px; +} + +.pano-item-title-icon { + width: 32px; + height: 32px; + margin: 0px 8px; +} + +.pano-item-title { + font-weight: 600; +} + /* Body */ .pano-item-body { + border-radius: 0px 0px 12px 12px; +} + +.pano-item-body:first-child { border-radius: 12px; } /* Code Item */ -.pano-item-code .pano-item-body .pano-item-body-code-content { +.pano-item-code .pano-item-body-code-content { margin: 12px; tab-size: 2; } -.pano-item-code .pano-item-overlay { +/* .pano-item-code .pano-item-overlay { background-gradient-start: transparent; background-gradient-end: rgba(0, 0, 0, 0.3); background-gradient-direction: vertical; -} +} */ /* Link Item */ -.pano-item-link .pano-item-body { +.pano-item-link { padding: 0px; } -.pano-item-link .pano-item-body .image-container { +.pano-item-link .image-container { background-size: cover; +} + +.pano-item-link .pano-item-body:first-child .image-container { border-radius: 12px 12px 0px 0px; } -.pano-item-link.compact .pano-item-body .image-container { +.pano-item-link.compact .image-container { border-radius: 12px 0px 0px 12px; } -.pano-item-link .pano-item-body .meta-container { +.pano-item-link .meta-container { padding: 10px; border-radius: 0px 0px 12px 12px; } -.pano-item-link.compact .pano-item-body .meta-container { +.pano-item-link.compact .meta-container { border-radius: 0px 12px 12px 0px; } -.pano-item-link .pano-item-body .link-title-label { +.pano-item-link .link-title-label { font-weight: bold; } -.pano-item-link .pano-item-body .link-label { +.pano-item-link .link-label { margin-top: 5px; } /* Text Item */ -.pano-item-text .pano-item-body .pano-item-body-text-content { +.pano-item-text .pano-item-body-text-content { margin: 12px; tab-size: 2; } @@ -164,30 +190,31 @@ } /* File Item */ -.pano-item-file .pano-item-body .title-container { - padding: 10px; +.pano-item-file .title-container { + padding: 10px 10px 0 10px; } -.pano-item-file .pano-item-body .title-icon { +.pano-item-file .title-icon { width: 1.2em; height: 1.2em; } -.pano-item-file .pano-item-body .title-label { +.pano-item-file .title-label { padding-left: 10px; font-weight: 900; } -.pano-item-file .pano-item-body .copied-files-container { - margin-right: 10px; - margin-left: 10px; +.pano-item-file .top-level-directory { + margin-bottom: 0.3em; } -.pano-item-file .pano-item-body .top-level-directory { - margin-bottom: 0.3em; +.pano-item-file .copied-files-container { + margin-top: 10px; + margin-right: 10px; + margin-left: 10px; } -.pano-item-file .pano-item-body .file-tree-icon { +.pano-item-file .file-tree-icon { width: 1.5em; height: 1.5em; color: rgb(255, 255, 255); From a0c6d08a898c9eabc65eb32c64ff5224e643b9c5 Mon Sep 17 00:00:00 2001 From: boerdereinar Date: Tue, 30 Apr 2024 23:23:59 +0200 Subject: [PATCH 05/45] add close item with middle click --- resources/po/ar.po | 10 +++++- resources/po/bg.po | 10 +++++- resources/po/cs.po | 10 +++++- resources/po/da.po | 10 +++++- resources/po/de.po | 10 +++++- resources/po/el.po | 10 +++++- resources/po/en.po | 10 +++++- resources/po/es.po | 10 +++++- resources/po/et.po | 10 +++++- resources/po/fi.po | 10 +++++- resources/po/fr.po | 10 +++++- resources/po/he.po | 10 +++++- resources/po/hr.po | 10 +++++- resources/po/hu.po | 10 +++++- resources/po/is.po | 10 +++++- resources/po/it.po | 10 +++++- resources/po/ja.po | 10 +++++- resources/po/ko.po | 10 +++++- resources/po/nl.po | 10 +++++- resources/po/no.po | 10 +++++- resources/po/oc.po | 10 +++++- resources/po/pano@elhan.io.pot | 10 +++++- resources/po/pl.po | 10 +++++- resources/po/pt.po | 10 +++++- resources/po/pt_BR.po | 10 +++++- resources/po/ro.po | 10 +++++- resources/po/ru.po | 10 +++++- resources/po/sk.po | 10 +++++- resources/po/sv.po | 10 +++++- resources/po/tr.po | 10 +++++- resources/po/uk.po | 10 +++++- resources/po/vi.po | 10 +++++- resources/po/zh_CN.po | 10 +++++- resources/po/zh_TW.po | 10 +++++- ...rg.gnome.shell.extensions.pano.gschema.xml | 5 +++ src/components/panoItem.ts | 7 +++- src/prefs/general/generalGroup.ts | 2 ++ src/prefs/general/removeOnMiddleClick.ts | 32 +++++++++++++++++++ 38 files changed, 351 insertions(+), 35 deletions(-) create mode 100644 src/prefs/general/removeOnMiddleClick.ts diff --git a/resources/po/ar.po b/resources/po/ar.po index bab8b9f3..19ccd94b 100644 --- a/resources/po/ar.po +++ b/resources/po/ar.po @@ -449,7 +449,7 @@ msgstr "سيمتنع بانو عن التتبع إذا فُعلت نافذة م msgid "Window class name" msgstr "اسم طراز النافذة" -#: src/prefs/general/generalGroup.ts:25 +#: src/prefs/general/generalGroup.ts:26 msgid "General Options" msgstr "خيارات عامة" @@ -523,6 +523,14 @@ msgstr "تشغيل مقطع صوتي عند النسخ" msgid "Allow Pano to play an audio when copying new content" msgstr "يسمح لبانو بتشغيل مقطع صوتي عند نسخ محتوى جديد" +#: src/prefs/general/removeOnMiddleClick.ts:15 +msgid "Remove on Middle Click" +msgstr "" + +#: src/prefs/general/removeOnMiddleClick.ts:16 +msgid "Allow Pano to remove clipboard items on middle click" +msgstr "" + #: src/prefs/general/sendNotificationOnCopy.ts:16 msgid "Send Notification on Copy" msgstr "" diff --git a/resources/po/bg.po b/resources/po/bg.po index 879fc6c1..95954842 100644 --- a/resources/po/bg.po +++ b/resources/po/bg.po @@ -449,7 +449,7 @@ msgstr "Pano ще спре проследяването, ако някой пр msgid "Window class name" msgstr "Име на класа на прозореца" -#: src/prefs/general/generalGroup.ts:25 +#: src/prefs/general/generalGroup.ts:26 msgid "General Options" msgstr "Общи опции" @@ -523,6 +523,14 @@ msgstr "Възпроизвеждане на аудио на копие" msgid "Allow Pano to play an audio when copying new content" msgstr "Позволяване на Pano да възпроизвежда аудио при копиране на ново съдържание" +#: src/prefs/general/removeOnMiddleClick.ts:15 +msgid "Remove on Middle Click" +msgstr "" + +#: src/prefs/general/removeOnMiddleClick.ts:16 +msgid "Allow Pano to remove clipboard items on middle click" +msgstr "" + #: src/prefs/general/sendNotificationOnCopy.ts:16 msgid "Send Notification on Copy" msgstr "" diff --git a/resources/po/cs.po b/resources/po/cs.po index 993cfc70..f10d1014 100644 --- a/resources/po/cs.po +++ b/resources/po/cs.po @@ -449,7 +449,7 @@ msgstr "Pano přestane sledovat, pokud je vybráno jakékoli okno ze seznamu" msgid "Window class name" msgstr "Název třídy okna" -#: src/prefs/general/generalGroup.ts:25 +#: src/prefs/general/generalGroup.ts:26 msgid "General Options" msgstr "Obecné možnosti" @@ -523,6 +523,14 @@ msgstr "Přehrát zvuk při kopírování" msgid "Allow Pano to play an audio when copying new content" msgstr "Při kopírování nového obsahu povolte Pano přehrát zvuk" +#: src/prefs/general/removeOnMiddleClick.ts:15 +msgid "Remove on Middle Click" +msgstr "" + +#: src/prefs/general/removeOnMiddleClick.ts:16 +msgid "Allow Pano to remove clipboard items on middle click" +msgstr "" + #: src/prefs/general/sendNotificationOnCopy.ts:16 msgid "Send Notification on Copy" msgstr "Odeslat oznámení o kopírování" diff --git a/resources/po/da.po b/resources/po/da.po index 693c0637..e32fb774 100644 --- a/resources/po/da.po +++ b/resources/po/da.po @@ -449,7 +449,7 @@ msgstr "Pano stopper sporingen, hvis et vindue fra listen er fokuseret" msgid "Window class name" msgstr "Navn på vinduesklasse" -#: src/prefs/general/generalGroup.ts:25 +#: src/prefs/general/generalGroup.ts:26 msgid "General Options" msgstr "Generelle indstillinger" @@ -523,6 +523,14 @@ msgstr "Afspil en lyd på kopi" msgid "Allow Pano to play an audio when copying new content" msgstr "Tillad Pano at afspille en lyd, når du kopierer nyt indhold" +#: src/prefs/general/removeOnMiddleClick.ts:15 +msgid "Remove on Middle Click" +msgstr "" + +#: src/prefs/general/removeOnMiddleClick.ts:16 +msgid "Allow Pano to remove clipboard items on middle click" +msgstr "" + #: src/prefs/general/sendNotificationOnCopy.ts:16 msgid "Send Notification on Copy" msgstr "" diff --git a/resources/po/de.po b/resources/po/de.po index 246d567b..976b5afa 100644 --- a/resources/po/de.po +++ b/resources/po/de.po @@ -449,7 +449,7 @@ msgstr "Pano wird nichts verfolgen, wenn ein Fenster aus der Liste fokussiert is msgid "Window class name" msgstr "Klassenname des Fensters" -#: src/prefs/general/generalGroup.ts:25 +#: src/prefs/general/generalGroup.ts:26 msgid "General Options" msgstr "Allgemeine Optionen" @@ -523,6 +523,14 @@ msgstr "Beim Kopieren Audio abspielen" msgid "Allow Pano to play an audio when copying new content" msgstr "Pano erlauben, beim Kopieren von Inhalten Audio abzuspielen" +#: src/prefs/general/removeOnMiddleClick.ts:15 +msgid "Remove on Middle Click" +msgstr "" + +#: src/prefs/general/removeOnMiddleClick.ts:16 +msgid "Allow Pano to remove clipboard items on middle click" +msgstr "" + #: src/prefs/general/sendNotificationOnCopy.ts:16 msgid "Send Notification on Copy" msgstr "Beim Kopieren eine Benachrichtigung senden" diff --git a/resources/po/el.po b/resources/po/el.po index 534c2b71..f8953d5b 100644 --- a/resources/po/el.po +++ b/resources/po/el.po @@ -449,7 +449,7 @@ msgstr "Το Pano θα σταματήσει να παρακολουθεί εάν msgid "Window class name" msgstr "Όνομα κλάσης παραθύρου" -#: src/prefs/general/generalGroup.ts:25 +#: src/prefs/general/generalGroup.ts:26 msgid "General Options" msgstr "Γενικές επιλογές" @@ -523,6 +523,14 @@ msgstr "Αναπαραγωγή ήχου σε αντιγραφή" msgid "Allow Pano to play an audio when copying new content" msgstr "Να επιτρέπεται στο Pano η αναπαραγωγή ήχου κατά την αντιγραφή νέου περιεχομένου" +#: src/prefs/general/removeOnMiddleClick.ts:15 +msgid "Remove on Middle Click" +msgstr "" + +#: src/prefs/general/removeOnMiddleClick.ts:16 +msgid "Allow Pano to remove clipboard items on middle click" +msgstr "" + #: src/prefs/general/sendNotificationOnCopy.ts:16 msgid "Send Notification on Copy" msgstr "" diff --git a/resources/po/en.po b/resources/po/en.po index c000557e..f0856f7b 100644 --- a/resources/po/en.po +++ b/resources/po/en.po @@ -449,7 +449,7 @@ msgstr "Pano will stop tracking if any window from the list is focussed" msgid "Window class name" msgstr "Window class name" -#: src/prefs/general/generalGroup.ts:25 +#: src/prefs/general/generalGroup.ts:26 msgid "General Options" msgstr "General Options" @@ -523,6 +523,14 @@ msgstr "Play an Audio on Copy" msgid "Allow Pano to play an audio when copying new content" msgstr "Allow Pano to play an audio when copying new content" +#: src/prefs/general/removeOnMiddleClick.ts:15 +msgid "Remove on Middle Click" +msgstr "" + +#: src/prefs/general/removeOnMiddleClick.ts:16 +msgid "Allow Pano to remove clipboard items on middle click" +msgstr "" + #: src/prefs/general/sendNotificationOnCopy.ts:16 msgid "Send Notification on Copy" msgstr "" diff --git a/resources/po/es.po b/resources/po/es.po index 69f2b3f1..da21656c 100644 --- a/resources/po/es.po +++ b/resources/po/es.po @@ -449,7 +449,7 @@ msgstr "Pano dejará de rastrearte si alguna ventana de la lista está en primer msgid "Window class name" msgstr "Nombre de clase de ventana" -#: src/prefs/general/generalGroup.ts:25 +#: src/prefs/general/generalGroup.ts:26 msgid "General Options" msgstr "Opciones generales" @@ -523,6 +523,14 @@ msgstr "Reproducir sonido al copiar" msgid "Allow Pano to play an audio when copying new content" msgstr "Permitir que Pano reproduzca un audio al copiar contenido nuevo" +#: src/prefs/general/removeOnMiddleClick.ts:15 +msgid "Remove on Middle Click" +msgstr "" + +#: src/prefs/general/removeOnMiddleClick.ts:16 +msgid "Allow Pano to remove clipboard items on middle click" +msgstr "" + #: src/prefs/general/sendNotificationOnCopy.ts:16 msgid "Send Notification on Copy" msgstr "Enviar una notificación al copiar" diff --git a/resources/po/et.po b/resources/po/et.po index f80bf6c4..1a5db623 100644 --- a/resources/po/et.po +++ b/resources/po/et.po @@ -449,7 +449,7 @@ msgstr "Pano lõpetab jälgimise, kui mõni loendi aken on fokusseeritud" msgid "Window class name" msgstr "Aknaklassi nimi" -#: src/prefs/general/generalGroup.ts:25 +#: src/prefs/general/generalGroup.ts:26 msgid "General Options" msgstr "Üldised valikud" @@ -523,6 +523,14 @@ msgstr "Heli esitamine kopeerimisel" msgid "Allow Pano to play an audio when copying new content" msgstr "Luba Panol uue sisu kopeerimisel heli esitada" +#: src/prefs/general/removeOnMiddleClick.ts:15 +msgid "Remove on Middle Click" +msgstr "" + +#: src/prefs/general/removeOnMiddleClick.ts:16 +msgid "Allow Pano to remove clipboard items on middle click" +msgstr "" + #: src/prefs/general/sendNotificationOnCopy.ts:16 msgid "Send Notification on Copy" msgstr "" diff --git a/resources/po/fi.po b/resources/po/fi.po index a13d320a..3dfc72b2 100644 --- a/resources/po/fi.po +++ b/resources/po/fi.po @@ -449,7 +449,7 @@ msgstr "Pano lopettaa seurannan, jos jokin luettelon ikkuna on kohdistettu" msgid "Window class name" msgstr "Ikkunaluokan nimi" -#: src/prefs/general/generalGroup.ts:25 +#: src/prefs/general/generalGroup.ts:26 msgid "General Options" msgstr "Yleiset vaihtoehdot" @@ -523,6 +523,14 @@ msgstr "Toista ääni kopioitaessa" msgid "Allow Pano to play an audio when copying new content" msgstr "Anna Panon toistaa ääntä, kun kopioit uutta sisältöä" +#: src/prefs/general/removeOnMiddleClick.ts:15 +msgid "Remove on Middle Click" +msgstr "" + +#: src/prefs/general/removeOnMiddleClick.ts:16 +msgid "Allow Pano to remove clipboard items on middle click" +msgstr "" + #: src/prefs/general/sendNotificationOnCopy.ts:16 msgid "Send Notification on Copy" msgstr "" diff --git a/resources/po/fr.po b/resources/po/fr.po index bfd2fb58..417fe931 100644 --- a/resources/po/fr.po +++ b/resources/po/fr.po @@ -449,7 +449,7 @@ msgstr "Pano arrêtera le suivi si une fenêtre d’une application de la liste msgid "Window class name" msgstr "Nom de la classe de la fenêtre" -#: src/prefs/general/generalGroup.ts:25 +#: src/prefs/general/generalGroup.ts:26 msgid "General Options" msgstr "Options générales" @@ -523,6 +523,14 @@ msgstr "Jouer un son lors de la copie" msgid "Allow Pano to play an audio when copying new content" msgstr "Autoriser Pano à jouer un son lors de la copie de nouveau contenu" +#: src/prefs/general/removeOnMiddleClick.ts:15 +msgid "Remove on Middle Click" +msgstr "" + +#: src/prefs/general/removeOnMiddleClick.ts:16 +msgid "Allow Pano to remove clipboard items on middle click" +msgstr "" + #: src/prefs/general/sendNotificationOnCopy.ts:16 msgid "Send Notification on Copy" msgstr "Envoyer une notification lors de la copie" diff --git a/resources/po/he.po b/resources/po/he.po index 2c2e7b80..9b8379ba 100644 --- a/resources/po/he.po +++ b/resources/po/he.po @@ -449,7 +449,7 @@ msgstr "Pano תפסיק את המעקב אם חלון כלשהו מהרשימה msgid "Window class name" msgstr "שם כיתת חלון" -#: src/prefs/general/generalGroup.ts:25 +#: src/prefs/general/generalGroup.ts:26 msgid "General Options" msgstr "אפשרויות כלליות" @@ -523,6 +523,14 @@ msgstr "הפעלת שמע בהעתקה" msgid "Allow Pano to play an audio when copying new content" msgstr "אפשר ל-Pano להשמיע שמע בעת העתקת תוכן חדש" +#: src/prefs/general/removeOnMiddleClick.ts:15 +msgid "Remove on Middle Click" +msgstr "" + +#: src/prefs/general/removeOnMiddleClick.ts:16 +msgid "Allow Pano to remove clipboard items on middle click" +msgstr "" + #: src/prefs/general/sendNotificationOnCopy.ts:16 msgid "Send Notification on Copy" msgstr "" diff --git a/resources/po/hr.po b/resources/po/hr.po index 80060841..27735efd 100644 --- a/resources/po/hr.po +++ b/resources/po/hr.po @@ -449,7 +449,7 @@ msgstr "" msgid "Window class name" msgstr "" -#: src/prefs/general/generalGroup.ts:25 +#: src/prefs/general/generalGroup.ts:26 msgid "General Options" msgstr "" @@ -523,6 +523,14 @@ msgstr "" msgid "Allow Pano to play an audio when copying new content" msgstr "" +#: src/prefs/general/removeOnMiddleClick.ts:15 +msgid "Remove on Middle Click" +msgstr "" + +#: src/prefs/general/removeOnMiddleClick.ts:16 +msgid "Allow Pano to remove clipboard items on middle click" +msgstr "" + #: src/prefs/general/sendNotificationOnCopy.ts:16 msgid "Send Notification on Copy" msgstr "" diff --git a/resources/po/hu.po b/resources/po/hu.po index 2d732cfe..7dba1466 100644 --- a/resources/po/hu.po +++ b/resources/po/hu.po @@ -449,7 +449,7 @@ msgstr "A Pano leállítja a követést, ha a lista bármely ablaka fókuszban v msgid "Window class name" msgstr "Ablakosztály neve" -#: src/prefs/general/generalGroup.ts:25 +#: src/prefs/general/generalGroup.ts:26 msgid "General Options" msgstr "Általános beállítások" @@ -523,6 +523,14 @@ msgstr "Hang lejátszása másoláskor" msgid "Allow Pano to play an audio when copying new content" msgstr "Hang lejátszásának engedélyezése a Pano számára új tartalom másolásakor" +#: src/prefs/general/removeOnMiddleClick.ts:15 +msgid "Remove on Middle Click" +msgstr "" + +#: src/prefs/general/removeOnMiddleClick.ts:16 +msgid "Allow Pano to remove clipboard items on middle click" +msgstr "" + #: src/prefs/general/sendNotificationOnCopy.ts:16 msgid "Send Notification on Copy" msgstr "" diff --git a/resources/po/is.po b/resources/po/is.po index cea512be..90f7eb8e 100644 --- a/resources/po/is.po +++ b/resources/po/is.po @@ -449,7 +449,7 @@ msgstr "Pano mun hætta að fylgjast með ef einhver gluggi af listanum er fóku msgid "Window class name" msgstr "Heiti gluggaflokks" -#: src/prefs/general/generalGroup.ts:25 +#: src/prefs/general/generalGroup.ts:26 msgid "General Options" msgstr "Almennir valkostir" @@ -523,6 +523,14 @@ msgstr "Spilaðu hljóð á afriti" msgid "Allow Pano to play an audio when copying new content" msgstr "Leyfa Pano að spila hljóð þegar þú afritar nýtt efni" +#: src/prefs/general/removeOnMiddleClick.ts:15 +msgid "Remove on Middle Click" +msgstr "" + +#: src/prefs/general/removeOnMiddleClick.ts:16 +msgid "Allow Pano to remove clipboard items on middle click" +msgstr "" + #: src/prefs/general/sendNotificationOnCopy.ts:16 msgid "Send Notification on Copy" msgstr "" diff --git a/resources/po/it.po b/resources/po/it.po index 21030974..5a61919e 100644 --- a/resources/po/it.po +++ b/resources/po/it.po @@ -449,7 +449,7 @@ msgstr "Pano interromperà il monitoraggio se una finestra dell'elenco è focali msgid "Window class name" msgstr "Nome della classe finestra" -#: src/prefs/general/generalGroup.ts:25 +#: src/prefs/general/generalGroup.ts:26 msgid "General Options" msgstr "Opzioni generali" @@ -523,6 +523,14 @@ msgstr "Riproduci un audio su Copia" msgid "Allow Pano to play an audio when copying new content" msgstr "Consenti a Pano di riprodurre un audio durante la copia di nuovi contenuti" +#: src/prefs/general/removeOnMiddleClick.ts:15 +msgid "Remove on Middle Click" +msgstr "" + +#: src/prefs/general/removeOnMiddleClick.ts:16 +msgid "Allow Pano to remove clipboard items on middle click" +msgstr "" + #: src/prefs/general/sendNotificationOnCopy.ts:16 msgid "Send Notification on Copy" msgstr "Invia notifica su copia" diff --git a/resources/po/ja.po b/resources/po/ja.po index e08a115c..aaf09c91 100644 --- a/resources/po/ja.po +++ b/resources/po/ja.po @@ -449,7 +449,7 @@ msgstr "Pano は、リストのいずれかのウィンドウがフォーカス msgid "Window class name" msgstr "ウィンドウ クラス名" -#: src/prefs/general/generalGroup.ts:25 +#: src/prefs/general/generalGroup.ts:26 msgid "General Options" msgstr "全般オプション" @@ -523,6 +523,14 @@ msgstr "コピー時にオーディオを再生する" msgid "Allow Pano to play an audio when copying new content" msgstr "新しいコンテンツをコピーするときにPanoがオーディオを再生できるようにする" +#: src/prefs/general/removeOnMiddleClick.ts:15 +msgid "Remove on Middle Click" +msgstr "" + +#: src/prefs/general/removeOnMiddleClick.ts:16 +msgid "Allow Pano to remove clipboard items on middle click" +msgstr "" + #: src/prefs/general/sendNotificationOnCopy.ts:16 msgid "Send Notification on Copy" msgstr "" diff --git a/resources/po/ko.po b/resources/po/ko.po index 27d2a1c3..3541835d 100644 --- a/resources/po/ko.po +++ b/resources/po/ko.po @@ -449,7 +449,7 @@ msgstr "Pano는 목록의 창에 포커스가 있는 경우 추적을 중지" msgid "Window class name" msgstr "창 클래스 이름" -#: src/prefs/general/generalGroup.ts:25 +#: src/prefs/general/generalGroup.ts:26 msgid "General Options" msgstr "일반 옵션" @@ -523,6 +523,14 @@ msgstr "복사 시 오디오 재생" msgid "Allow Pano to play an audio when copying new content" msgstr "Pano가 새 콘텐츠를 복사할 때 오디오를 재생하도록 허용" +#: src/prefs/general/removeOnMiddleClick.ts:15 +msgid "Remove on Middle Click" +msgstr "" + +#: src/prefs/general/removeOnMiddleClick.ts:16 +msgid "Allow Pano to remove clipboard items on middle click" +msgstr "" + #: src/prefs/general/sendNotificationOnCopy.ts:16 msgid "Send Notification on Copy" msgstr "복사 시 알림 보내기" diff --git a/resources/po/nl.po b/resources/po/nl.po index 5f1ce446..112cd8e3 100644 --- a/resources/po/nl.po +++ b/resources/po/nl.po @@ -449,7 +449,7 @@ msgstr "Pano volgt geen vensters van toepassingen op de lijst" msgid "Window class name" msgstr "Vensterklassenaam" -#: src/prefs/general/generalGroup.ts:25 +#: src/prefs/general/generalGroup.ts:26 msgid "General Options" msgstr "Algemene voorkeuren" @@ -523,6 +523,14 @@ msgstr "Geluid afspelen na kopiëren van item/tekst" msgid "Allow Pano to play an audio when copying new content" msgstr "Geluid afspelen na kopiëren van item/tekst" +#: src/prefs/general/removeOnMiddleClick.ts:15 +msgid "Remove on Middle Click" +msgstr "" + +#: src/prefs/general/removeOnMiddleClick.ts:16 +msgid "Allow Pano to remove clipboard items on middle click" +msgstr "" + #: src/prefs/general/sendNotificationOnCopy.ts:16 msgid "Send Notification on Copy" msgstr "" diff --git a/resources/po/no.po b/resources/po/no.po index 08157b60..b86ea3ac 100644 --- a/resources/po/no.po +++ b/resources/po/no.po @@ -449,7 +449,7 @@ msgstr "Pano vil slutte å spore hvis et vindu fra listen er fokusert" msgid "Window class name" msgstr "Navn på vindusklasse" -#: src/prefs/general/generalGroup.ts:25 +#: src/prefs/general/generalGroup.ts:26 msgid "General Options" msgstr "Generelle alternativer" @@ -523,6 +523,14 @@ msgstr "Spill av en lyd på Copy" msgid "Allow Pano to play an audio when copying new content" msgstr "Tillat Pano å spille av en lyd når du kopierer nytt innhold" +#: src/prefs/general/removeOnMiddleClick.ts:15 +msgid "Remove on Middle Click" +msgstr "" + +#: src/prefs/general/removeOnMiddleClick.ts:16 +msgid "Allow Pano to remove clipboard items on middle click" +msgstr "" + #: src/prefs/general/sendNotificationOnCopy.ts:16 msgid "Send Notification on Copy" msgstr "" diff --git a/resources/po/oc.po b/resources/po/oc.po index 9451e4eb..c7082e9a 100644 --- a/resources/po/oc.po +++ b/resources/po/oc.po @@ -449,7 +449,7 @@ msgstr "" msgid "Window class name" msgstr "Nom de classa de la fenèstra" -#: src/prefs/general/generalGroup.ts:25 +#: src/prefs/general/generalGroup.ts:26 msgid "General Options" msgstr "Opcions generalas" @@ -523,6 +523,14 @@ msgstr "Jogar un son en copiant" msgid "Allow Pano to play an audio when copying new content" msgstr "Permet a Pano de jogar un son quand un contengut novèl es copiat" +#: src/prefs/general/removeOnMiddleClick.ts:15 +msgid "Remove on Middle Click" +msgstr "" + +#: src/prefs/general/removeOnMiddleClick.ts:16 +msgid "Allow Pano to remove clipboard items on middle click" +msgstr "" + #: src/prefs/general/sendNotificationOnCopy.ts:16 msgid "Send Notification on Copy" msgstr "" diff --git a/resources/po/pano@elhan.io.pot b/resources/po/pano@elhan.io.pot index b47a3b76..809638cd 100644 --- a/resources/po/pano@elhan.io.pot +++ b/resources/po/pano@elhan.io.pot @@ -18,6 +18,10 @@ msgstr "" msgid "Allow Pano to play an audio when copying new content" msgstr "" +#: src/prefs/general/removeOnMiddleClick.ts:16 +msgid "Allow Pano to remove clipboard items on middle click" +msgstr "" + #: src/prefs/general/sendNotificationOnCopy.ts:17 msgid "Allow Pano to send notification when copying new content" msgstr "" @@ -219,7 +223,7 @@ msgstr "" msgid "General" msgstr "" -#: src/prefs/general/generalGroup.ts:25 +#: src/prefs/general/generalGroup.ts:26 msgid "General Options" msgstr "" @@ -392,6 +396,10 @@ msgstr "" msgid "Play an Audio on Copy" msgstr "" +#: src/prefs/general/removeOnMiddleClick.ts:15 +msgid "Remove on Middle Click" +msgstr "" + #: src/prefs/customization/commonStyleGroup.ts:60 msgid "Right" msgstr "" diff --git a/resources/po/pl.po b/resources/po/pl.po index 84196df1..998362a8 100644 --- a/resources/po/pl.po +++ b/resources/po/pl.po @@ -449,7 +449,7 @@ msgstr "Pano przestanie śledzić jeśli któreś z tych programów jest używan msgid "Window class name" msgstr "Nazwa programu" -#: src/prefs/general/generalGroup.ts:25 +#: src/prefs/general/generalGroup.ts:26 msgid "General Options" msgstr "Ogólne Opcje" @@ -523,6 +523,14 @@ msgstr "Wydaj dźwięk podczas kopiowania" msgid "Allow Pano to play an audio when copying new content" msgstr "Pozwala Pano na wydanie dźwięku podczas kopiowania" +#: src/prefs/general/removeOnMiddleClick.ts:15 +msgid "Remove on Middle Click" +msgstr "" + +#: src/prefs/general/removeOnMiddleClick.ts:16 +msgid "Allow Pano to remove clipboard items on middle click" +msgstr "" + #: src/prefs/general/sendNotificationOnCopy.ts:16 msgid "Send Notification on Copy" msgstr "" diff --git a/resources/po/pt.po b/resources/po/pt.po index 91f1e4f1..df16e884 100644 --- a/resources/po/pt.po +++ b/resources/po/pt.po @@ -449,7 +449,7 @@ msgstr "O Pano interromperá o rastreamento se alguma janela da lista estiver fo msgid "Window class name" msgstr "Nome da classe Window" -#: src/prefs/general/generalGroup.ts:25 +#: src/prefs/general/generalGroup.ts:26 msgid "General Options" msgstr "Opções Gerais" @@ -523,6 +523,14 @@ msgstr "Reproduzir um áudio ao copiar" msgid "Allow Pano to play an audio when copying new content" msgstr "Permitir que o Pano reproduza um áudio ao copiar um novo conteúdo" +#: src/prefs/general/removeOnMiddleClick.ts:15 +msgid "Remove on Middle Click" +msgstr "" + +#: src/prefs/general/removeOnMiddleClick.ts:16 +msgid "Allow Pano to remove clipboard items on middle click" +msgstr "" + #: src/prefs/general/sendNotificationOnCopy.ts:16 msgid "Send Notification on Copy" msgstr "" diff --git a/resources/po/pt_BR.po b/resources/po/pt_BR.po index 9535b2ea..70208733 100644 --- a/resources/po/pt_BR.po +++ b/resources/po/pt_BR.po @@ -449,7 +449,7 @@ msgstr "O Pano deixará de rastrear se qualquer janela da lista estiver em foco" msgid "Window class name" msgstr "Nome da classe da janela" -#: src/prefs/general/generalGroup.ts:25 +#: src/prefs/general/generalGroup.ts:26 msgid "General Options" msgstr "Opções gerais" @@ -523,6 +523,14 @@ msgstr "Tocar um áudio ao copiar" msgid "Allow Pano to play an audio when copying new content" msgstr "Permitir que o Pano toque um áudio ao copiar novo conteúdo" +#: src/prefs/general/removeOnMiddleClick.ts:15 +msgid "Remove on Middle Click" +msgstr "" + +#: src/prefs/general/removeOnMiddleClick.ts:16 +msgid "Allow Pano to remove clipboard items on middle click" +msgstr "" + #: src/prefs/general/sendNotificationOnCopy.ts:16 msgid "Send Notification on Copy" msgstr "Enviar notificação ao copiar" diff --git a/resources/po/ro.po b/resources/po/ro.po index 9eb5a53d..73d4208e 100644 --- a/resources/po/ro.po +++ b/resources/po/ro.po @@ -449,7 +449,7 @@ msgstr "Pano va opri urmărirea dacă orice fereastră din listă este focalizat msgid "Window class name" msgstr "Numele clasei de fereastră" -#: src/prefs/general/generalGroup.ts:25 +#: src/prefs/general/generalGroup.ts:26 msgid "General Options" msgstr "Opțiuni generale" @@ -523,6 +523,14 @@ msgstr "Redarea unui audio pe copiere" msgid "Allow Pano to play an audio when copying new content" msgstr "Permiteți-i lui Pano să redea un sunet atunci când copiază conținut nou" +#: src/prefs/general/removeOnMiddleClick.ts:15 +msgid "Remove on Middle Click" +msgstr "" + +#: src/prefs/general/removeOnMiddleClick.ts:16 +msgid "Allow Pano to remove clipboard items on middle click" +msgstr "" + #: src/prefs/general/sendNotificationOnCopy.ts:16 msgid "Send Notification on Copy" msgstr "" diff --git a/resources/po/ru.po b/resources/po/ru.po index 6d6a276d..178b6636 100644 --- a/resources/po/ru.po +++ b/resources/po/ru.po @@ -449,7 +449,7 @@ msgstr "Pano остановит отслеживание если какое-л msgid "Window class name" msgstr "Имя класса окна" -#: src/prefs/general/generalGroup.ts:25 +#: src/prefs/general/generalGroup.ts:26 msgid "General Options" msgstr "Общие настройки" @@ -523,6 +523,14 @@ msgstr "Воспроизводить звук при копировании" msgid "Allow Pano to play an audio when copying new content" msgstr "Разрешить Pano воспроизводить звук при копировании нового содержимого" +#: src/prefs/general/removeOnMiddleClick.ts:15 +msgid "Remove on Middle Click" +msgstr "" + +#: src/prefs/general/removeOnMiddleClick.ts:16 +msgid "Allow Pano to remove clipboard items on middle click" +msgstr "" + #: src/prefs/general/sendNotificationOnCopy.ts:16 msgid "Send Notification on Copy" msgstr "Отправить уведомление о копировании" diff --git a/resources/po/sk.po b/resources/po/sk.po index 9acb6ae8..33867233 100644 --- a/resources/po/sk.po +++ b/resources/po/sk.po @@ -449,7 +449,7 @@ msgstr "Pano prestane sledovať, ak je zaostrené ktorékoľvek okno zo zoznamu" msgid "Window class name" msgstr "Názov triedy okna" -#: src/prefs/general/generalGroup.ts:25 +#: src/prefs/general/generalGroup.ts:26 msgid "General Options" msgstr "Všeobecné možnosti" @@ -523,6 +523,14 @@ msgstr "Prehrávanie zvuku v kópii" msgid "Allow Pano to play an audio when copying new content" msgstr "Povolenie prehrávania zvuku spoločnosťou Pano pri kopírovaní nového obsahu" +#: src/prefs/general/removeOnMiddleClick.ts:15 +msgid "Remove on Middle Click" +msgstr "" + +#: src/prefs/general/removeOnMiddleClick.ts:16 +msgid "Allow Pano to remove clipboard items on middle click" +msgstr "" + #: src/prefs/general/sendNotificationOnCopy.ts:16 msgid "Send Notification on Copy" msgstr "" diff --git a/resources/po/sv.po b/resources/po/sv.po index 5012c7cf..bbf6466b 100644 --- a/resources/po/sv.po +++ b/resources/po/sv.po @@ -449,7 +449,7 @@ msgstr "Pano slutar spåra om något fönster från listan är fokuserat" msgid "Window class name" msgstr "Namn på fönsterklass" -#: src/prefs/general/generalGroup.ts:25 +#: src/prefs/general/generalGroup.ts:26 msgid "General Options" msgstr "Allmänna alternativ" @@ -523,6 +523,14 @@ msgstr "Spela upp ett ljud på kopia" msgid "Allow Pano to play an audio when copying new content" msgstr "Tillåt Pano att spela upp ett ljud när du kopierar nytt innehåll" +#: src/prefs/general/removeOnMiddleClick.ts:15 +msgid "Remove on Middle Click" +msgstr "" + +#: src/prefs/general/removeOnMiddleClick.ts:16 +msgid "Allow Pano to remove clipboard items on middle click" +msgstr "" + #: src/prefs/general/sendNotificationOnCopy.ts:16 msgid "Send Notification on Copy" msgstr "" diff --git a/resources/po/tr.po b/resources/po/tr.po index 48900e5d..a6975260 100644 --- a/resources/po/tr.po +++ b/resources/po/tr.po @@ -449,7 +449,7 @@ msgstr "Listedeki herhangi bir pencereye odaklanılırsa Pano izlemeyi durduraca msgid "Window class name" msgstr "Pencere sınıfı adı" -#: src/prefs/general/generalGroup.ts:25 +#: src/prefs/general/generalGroup.ts:26 msgid "General Options" msgstr "Genel seçenekler" @@ -523,6 +523,14 @@ msgstr "Kopyalarken Ses Çal" msgid "Allow Pano to play an audio when copying new content" msgstr "Pano'nun yeni bir içerik kopyalarken ses çalmasına izin verir" +#: src/prefs/general/removeOnMiddleClick.ts:15 +msgid "Remove on Middle Click" +msgstr "" + +#: src/prefs/general/removeOnMiddleClick.ts:16 +msgid "Allow Pano to remove clipboard items on middle click" +msgstr "" + #: src/prefs/general/sendNotificationOnCopy.ts:16 msgid "Send Notification on Copy" msgstr "Kopyalarken Bildirim Gönder" diff --git a/resources/po/uk.po b/resources/po/uk.po index 1c46e51d..642db97b 100644 --- a/resources/po/uk.po +++ b/resources/po/uk.po @@ -449,7 +449,7 @@ msgstr "Pano припинить відстеження, якщо фокусов msgid "Window class name" msgstr "Ім'я класу вікна" -#: src/prefs/general/generalGroup.ts:25 +#: src/prefs/general/generalGroup.ts:26 msgid "General Options" msgstr "Загальні параметри" @@ -523,6 +523,14 @@ msgstr "Відтворення аудіо на копії" msgid "Allow Pano to play an audio when copying new content" msgstr "Дозволити Pano відтворювати аудіо під час копіювання нового вмісту" +#: src/prefs/general/removeOnMiddleClick.ts:15 +msgid "Remove on Middle Click" +msgstr "" + +#: src/prefs/general/removeOnMiddleClick.ts:16 +msgid "Allow Pano to remove clipboard items on middle click" +msgstr "" + #: src/prefs/general/sendNotificationOnCopy.ts:16 msgid "Send Notification on Copy" msgstr "Надсилати сповіщення під час копіювання" diff --git a/resources/po/vi.po b/resources/po/vi.po index 959e0deb..168af97b 100644 --- a/resources/po/vi.po +++ b/resources/po/vi.po @@ -449,7 +449,7 @@ msgstr "Pano sẽ ngừng lưu dữ liệu khay nhớ tạm trong cửa sổ c msgid "Window class name" msgstr "Tên của cửa sổ" -#: src/prefs/general/generalGroup.ts:25 +#: src/prefs/general/generalGroup.ts:26 msgid "General Options" msgstr "Tùy Chọn Chung" @@ -523,6 +523,14 @@ msgstr "Chơi Âm Thanh Khi Sao Chép" msgid "Allow Pano to play an audio when copying new content" msgstr "Cho phép Pano chơi âm thanh báo khi chép dữ liệu mới" +#: src/prefs/general/removeOnMiddleClick.ts:15 +msgid "Remove on Middle Click" +msgstr "" + +#: src/prefs/general/removeOnMiddleClick.ts:16 +msgid "Allow Pano to remove clipboard items on middle click" +msgstr "" + #: src/prefs/general/sendNotificationOnCopy.ts:16 msgid "Send Notification on Copy" msgstr "" diff --git a/resources/po/zh_CN.po b/resources/po/zh_CN.po index 9de47bbc..c462d08b 100644 --- a/resources/po/zh_CN.po +++ b/resources/po/zh_CN.po @@ -449,7 +449,7 @@ msgstr "如果选中以下任意程序,Pano将停止监视剪切板" msgid "Window class name" msgstr "窗口类名" -#: src/prefs/general/generalGroup.ts:25 +#: src/prefs/general/generalGroup.ts:26 msgid "General Options" msgstr "常规选项" @@ -523,6 +523,14 @@ msgstr "复制时播放提示音" msgid "Allow Pano to play an audio when copying new content" msgstr "允许Pano在复制新内容时播放声音提示" +#: src/prefs/general/removeOnMiddleClick.ts:15 +msgid "Remove on Middle Click" +msgstr "" + +#: src/prefs/general/removeOnMiddleClick.ts:16 +msgid "Allow Pano to remove clipboard items on middle click" +msgstr "" + #: src/prefs/general/sendNotificationOnCopy.ts:16 msgid "Send Notification on Copy" msgstr "复制时弹出提醒" diff --git a/resources/po/zh_TW.po b/resources/po/zh_TW.po index 9c4acd1b..27b31ebc 100644 --- a/resources/po/zh_TW.po +++ b/resources/po/zh_TW.po @@ -449,7 +449,7 @@ msgstr "Pano 會在開啟以下應用程式時停止追蹤" msgid "Window class name" msgstr "視窗類別名稱" -#: src/prefs/general/generalGroup.ts:25 +#: src/prefs/general/generalGroup.ts:26 msgid "General Options" msgstr "一般設定" @@ -523,6 +523,14 @@ msgstr "在複製時播放音效" msgid "Allow Pano to play an audio when copying new content" msgstr "允許 Pano 在複製新物件時播放音效" +#: src/prefs/general/removeOnMiddleClick.ts:15 +msgid "Remove on Middle Click" +msgstr "" + +#: src/prefs/general/removeOnMiddleClick.ts:16 +msgid "Allow Pano to remove clipboard items on middle click" +msgstr "" + #: src/prefs/general/sendNotificationOnCopy.ts:16 msgid "Send Notification on Copy" msgstr "複製時傳送訊息" diff --git a/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml b/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml index cd3abac8..f52c3179 100644 --- a/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml +++ b/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml @@ -37,6 +37,11 @@ Paste item on select Allow Pano to paste content on select. + + false + Remove item on middle click + Allow Pano to remove clipboard items on middle click. + true Send Notification on Copy diff --git a/src/components/panoItem.ts b/src/components/panoItem.ts index 0a4490da..fd264e2d 100644 --- a/src/components/panoItem.ts +++ b/src/components/panoItem.ts @@ -272,11 +272,16 @@ export class PanoItem extends St.BoxLayout { } override vfunc_button_release_event(event: Clutter.Event): boolean { - if (event.get_button() === 1) { + if (event.get_button() === Clutter.BUTTON_PRIMARY) { this.emit('activated'); return Clutter.EVENT_STOP; } + // Delete item on middle click + if (this.settings.get_boolean('remove-on-middle-click') && event.get_button() === Clutter.BUTTON_MIDDLE) { + this.emit('on-remove', JSON.stringify(this.dbItem)); + } + return Clutter.EVENT_PROPAGATE; } diff --git a/src/prefs/general/generalGroup.ts b/src/prefs/general/generalGroup.ts index a6c14a00..deb84c34 100644 --- a/src/prefs/general/generalGroup.ts +++ b/src/prefs/general/generalGroup.ts @@ -8,6 +8,7 @@ import { LinkPreviewsRow } from '@pano/prefs/general/linkPreviews'; import { OpenLinksInBrowserRow } from '@pano/prefs/general/openLinksInBrowser'; import { PasteOnSelectRow } from '@pano/prefs/general/pasteOnSelect'; import { PlayAudioOnCopyRow } from '@pano/prefs/general/playAudioOnCopy'; +import { RemoveOnMiddleClickRow } from '@pano/prefs/general/removeOnMiddleClick'; import { SendNotificationOnCopyRow } from '@pano/prefs/general/sendNotificationOnCopy'; import { ShortcutRow } from '@pano/prefs/general/shortcutRow'; import { ShowIndicatorRow } from '@pano/prefs/general/showIndicator'; @@ -31,6 +32,7 @@ export class GeneralGroup extends Adw.PreferencesGroup { this.add(new IncognitoShortcutRow(ext)); this.add(new SyncPrimaryRow(ext)); this.add(new PasteOnSelectRow(ext)); + this.add(new RemoveOnMiddleClickRow(ext)); this.add(new SendNotificationOnCopyRow(ext)); this.add(new PlayAudioOnCopyRow(ext)); this.add(new KeepSearchEntryRow(ext)); diff --git a/src/prefs/general/removeOnMiddleClick.ts b/src/prefs/general/removeOnMiddleClick.ts new file mode 100644 index 00000000..08104b1e --- /dev/null +++ b/src/prefs/general/removeOnMiddleClick.ts @@ -0,0 +1,32 @@ +import Adw from '@girs/adw-1'; +import Gio from '@girs/gio-2.0'; +import type { ExtensionBase } from '@girs/gnome-shell/dist/extensions/sharedInternals'; +import Gtk4 from '@girs/gtk-4.0'; +import { registerGObjectClass } from '@pano/utils/gjs'; +import { getCurrentExtensionSettings, gettext } from '@pano/utils/shell'; + +@registerGObjectClass +export class RemoveOnMiddleClickRow extends Adw.ActionRow { + private settings: Gio.Settings; + + constructor(ext: ExtensionBase) { + const _ = gettext(ext); + super({ + title: _('Remove on Middle Click'), + subtitle: _('Allow Pano to remove clipboard items on middle click'), + }); + + this.settings = getCurrentExtensionSettings(ext); + + const removeOnMiddleClickSwitch = new Gtk4.Switch({ + active: this.settings.get_boolean('remove-on-middle-click'), + valign: Gtk4.Align.CENTER, + halign: Gtk4.Align.CENTER, + }); + + this.settings.bind('remove-on-middle-click', removeOnMiddleClickSwitch, 'active', Gio.SettingsBindFlags.DEFAULT); + + this.add_suffix(removeOnMiddleClickSwitch); + this.set_activatable_widget(removeOnMiddleClickSwitch); + } +} From 4d205370b6cb389b0e5b467135176070e5965cf1 Mon Sep 17 00:00:00 2001 From: boerdereinar Date: Thu, 2 May 2024 01:39:51 +0200 Subject: [PATCH 06/45] Add file preview + various style fixes --- resources/po/ar.po | 24 +++++ resources/po/bg.po | 24 +++++ resources/po/cs.po | 24 +++++ resources/po/da.po | 24 +++++ resources/po/de.po | 24 +++++ resources/po/el.po | 24 +++++ resources/po/en.po | 24 +++++ resources/po/es.po | 24 +++++ resources/po/et.po | 24 +++++ resources/po/fi.po | 24 +++++ resources/po/fr.po | 24 +++++ resources/po/he.po | 24 +++++ resources/po/hr.po | 24 +++++ resources/po/hu.po | 24 +++++ resources/po/is.po | 24 +++++ resources/po/it.po | 24 +++++ resources/po/ja.po | 24 +++++ resources/po/ko.po | 24 +++++ resources/po/nl.po | 24 +++++ resources/po/no.po | 24 +++++ resources/po/oc.po | 24 +++++ resources/po/pano@elhan.io.pot | 24 +++++ resources/po/pl.po | 24 +++++ resources/po/pt.po | 24 +++++ resources/po/pt_BR.po | 24 +++++ resources/po/ro.po | 24 +++++ resources/po/ru.po | 24 +++++ resources/po/sk.po | 24 +++++ resources/po/sv.po | 24 +++++ resources/po/tr.po | 24 +++++ resources/po/uk.po | 24 +++++ resources/po/vi.po | 24 +++++ resources/po/zh_CN.po | 24 +++++ resources/po/zh_TW.po | 24 +++++ ...rg.gnome.shell.extensions.pano.gschema.xml | 20 ++++ src/components/filePanoItem.ts | 101 ++++++++++++++++++ src/components/panoItem.ts | 2 +- src/prefs/customization/fileItemStyle.ts | 25 +++++ src/styles/stylesheet.css | 30 +++--- 39 files changed, 981 insertions(+), 13 deletions(-) diff --git a/resources/po/ar.po b/resources/po/ar.po index 19ccd94b..d041b52b 100644 --- a/resources/po/ar.po +++ b/resources/po/ar.po @@ -317,6 +317,30 @@ msgstr "" msgid "You can change the text color of the body" msgstr "" +#: src/prefs/customization/fileItemStyle.ts:75 +msgid "Preview Background Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:76 +msgid "You can change the background color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:85 +msgid "Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:86 +msgid "You can change the text color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "You can change the font of the preview" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "" diff --git a/resources/po/bg.po b/resources/po/bg.po index 95954842..dee43f01 100644 --- a/resources/po/bg.po +++ b/resources/po/bg.po @@ -317,6 +317,30 @@ msgstr "" msgid "You can change the text color of the body" msgstr "" +#: src/prefs/customization/fileItemStyle.ts:75 +msgid "Preview Background Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:76 +msgid "You can change the background color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:85 +msgid "Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:86 +msgid "You can change the text color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "You can change the font of the preview" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "" diff --git a/resources/po/cs.po b/resources/po/cs.po index f10d1014..af1e76b2 100644 --- a/resources/po/cs.po +++ b/resources/po/cs.po @@ -317,6 +317,30 @@ msgstr "Barva textu těla" msgid "You can change the text color of the body" msgstr "Můžete změnit barvu textu těla" +#: src/prefs/customization/fileItemStyle.ts:75 +msgid "Preview Background Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:76 +msgid "You can change the background color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:85 +msgid "Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:86 +msgid "You can change the text color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "You can change the font of the preview" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "Změňte styly obrázku" diff --git a/resources/po/da.po b/resources/po/da.po index e32fb774..10b52e26 100644 --- a/resources/po/da.po +++ b/resources/po/da.po @@ -317,6 +317,30 @@ msgstr "" msgid "You can change the text color of the body" msgstr "" +#: src/prefs/customization/fileItemStyle.ts:75 +msgid "Preview Background Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:76 +msgid "You can change the background color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:85 +msgid "Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:86 +msgid "You can change the text color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "You can change the font of the preview" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "" diff --git a/resources/po/de.po b/resources/po/de.po index 976b5afa..090ab14b 100644 --- a/resources/po/de.po +++ b/resources/po/de.po @@ -317,6 +317,30 @@ msgstr "Textfarbe des Hauptteils" msgid "You can change the text color of the body" msgstr "Sie können die Textfarbe des Hauptteils ändern" +#: src/prefs/customization/fileItemStyle.ts:75 +msgid "Preview Background Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:76 +msgid "You can change the background color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:85 +msgid "Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:86 +msgid "You can change the text color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "You can change the font of the preview" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "Stil des Bild-Eintrags ändern" diff --git a/resources/po/el.po b/resources/po/el.po index f8953d5b..03ddee72 100644 --- a/resources/po/el.po +++ b/resources/po/el.po @@ -317,6 +317,30 @@ msgstr "" msgid "You can change the text color of the body" msgstr "" +#: src/prefs/customization/fileItemStyle.ts:75 +msgid "Preview Background Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:76 +msgid "You can change the background color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:85 +msgid "Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:86 +msgid "You can change the text color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "You can change the font of the preview" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "" diff --git a/resources/po/en.po b/resources/po/en.po index f0856f7b..9f5f3b38 100644 --- a/resources/po/en.po +++ b/resources/po/en.po @@ -317,6 +317,30 @@ msgstr "" msgid "You can change the text color of the body" msgstr "" +#: src/prefs/customization/fileItemStyle.ts:75 +msgid "Preview Background Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:76 +msgid "You can change the background color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:85 +msgid "Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:86 +msgid "You can change the text color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "You can change the font of the preview" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "" diff --git a/resources/po/es.po b/resources/po/es.po index da21656c..d5cb339d 100644 --- a/resources/po/es.po +++ b/resources/po/es.po @@ -317,6 +317,30 @@ msgstr "Color del texto del cuerpo" msgid "You can change the text color of the body" msgstr "Puedes cambiar el color del texto del cuerpo de la nota" +#: src/prefs/customization/fileItemStyle.ts:75 +msgid "Preview Background Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:76 +msgid "You can change the background color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:85 +msgid "Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:86 +msgid "You can change the text color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "You can change the font of the preview" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "Cambia el estilo de las notas de imagen" diff --git a/resources/po/et.po b/resources/po/et.po index 1a5db623..7d8772fc 100644 --- a/resources/po/et.po +++ b/resources/po/et.po @@ -317,6 +317,30 @@ msgstr "" msgid "You can change the text color of the body" msgstr "" +#: src/prefs/customization/fileItemStyle.ts:75 +msgid "Preview Background Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:76 +msgid "You can change the background color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:85 +msgid "Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:86 +msgid "You can change the text color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "You can change the font of the preview" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "" diff --git a/resources/po/fi.po b/resources/po/fi.po index 3dfc72b2..51cb1535 100644 --- a/resources/po/fi.po +++ b/resources/po/fi.po @@ -317,6 +317,30 @@ msgstr "" msgid "You can change the text color of the body" msgstr "" +#: src/prefs/customization/fileItemStyle.ts:75 +msgid "Preview Background Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:76 +msgid "You can change the background color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:85 +msgid "Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:86 +msgid "You can change the text color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "You can change the font of the preview" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "" diff --git a/resources/po/fr.po b/resources/po/fr.po index 417fe931..ba20ace1 100644 --- a/resources/po/fr.po +++ b/resources/po/fr.po @@ -317,6 +317,30 @@ msgstr "Couleur du texte du corpus" msgid "You can change the text color of the body" msgstr "Vous pouvez modifier la couleur du texte du corpus" +#: src/prefs/customization/fileItemStyle.ts:75 +msgid "Preview Background Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:76 +msgid "You can change the background color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:85 +msgid "Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:86 +msgid "You can change the text color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "You can change the font of the preview" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "Changer le style de l’élément d’image" diff --git a/resources/po/he.po b/resources/po/he.po index 9b8379ba..35203feb 100644 --- a/resources/po/he.po +++ b/resources/po/he.po @@ -317,6 +317,30 @@ msgstr "" msgid "You can change the text color of the body" msgstr "" +#: src/prefs/customization/fileItemStyle.ts:75 +msgid "Preview Background Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:76 +msgid "You can change the background color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:85 +msgid "Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:86 +msgid "You can change the text color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "You can change the font of the preview" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "" diff --git a/resources/po/hr.po b/resources/po/hr.po index 27735efd..32ed6861 100644 --- a/resources/po/hr.po +++ b/resources/po/hr.po @@ -317,6 +317,30 @@ msgstr "" msgid "You can change the text color of the body" msgstr "" +#: src/prefs/customization/fileItemStyle.ts:75 +msgid "Preview Background Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:76 +msgid "You can change the background color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:85 +msgid "Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:86 +msgid "You can change the text color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "You can change the font of the preview" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "" diff --git a/resources/po/hu.po b/resources/po/hu.po index 7dba1466..52e9e643 100644 --- a/resources/po/hu.po +++ b/resources/po/hu.po @@ -317,6 +317,30 @@ msgstr "" msgid "You can change the text color of the body" msgstr "" +#: src/prefs/customization/fileItemStyle.ts:75 +msgid "Preview Background Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:76 +msgid "You can change the background color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:85 +msgid "Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:86 +msgid "You can change the text color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "You can change the font of the preview" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "" diff --git a/resources/po/is.po b/resources/po/is.po index 90f7eb8e..5e8f8b5d 100644 --- a/resources/po/is.po +++ b/resources/po/is.po @@ -317,6 +317,30 @@ msgstr "" msgid "You can change the text color of the body" msgstr "" +#: src/prefs/customization/fileItemStyle.ts:75 +msgid "Preview Background Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:76 +msgid "You can change the background color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:85 +msgid "Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:86 +msgid "You can change the text color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "You can change the font of the preview" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "" diff --git a/resources/po/it.po b/resources/po/it.po index 5a61919e..84551f43 100644 --- a/resources/po/it.po +++ b/resources/po/it.po @@ -317,6 +317,30 @@ msgstr "Colore del corpo del testo" msgid "You can change the text color of the body" msgstr "Puoi cambiare il colore del testo del corpo" +#: src/prefs/customization/fileItemStyle.ts:75 +msgid "Preview Background Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:76 +msgid "You can change the background color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:85 +msgid "Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:86 +msgid "You can change the text color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "You can change the font of the preview" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "Cambia lo stile dell'elemento immagine" diff --git a/resources/po/ja.po b/resources/po/ja.po index aaf09c91..946f1f62 100644 --- a/resources/po/ja.po +++ b/resources/po/ja.po @@ -317,6 +317,30 @@ msgstr "" msgid "You can change the text color of the body" msgstr "" +#: src/prefs/customization/fileItemStyle.ts:75 +msgid "Preview Background Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:76 +msgid "You can change the background color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:85 +msgid "Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:86 +msgid "You can change the text color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "You can change the font of the preview" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "" diff --git a/resources/po/ko.po b/resources/po/ko.po index 3541835d..12673ce3 100644 --- a/resources/po/ko.po +++ b/resources/po/ko.po @@ -317,6 +317,30 @@ msgstr "내용 텍스트 색상" msgid "You can change the text color of the body" msgstr "내용 텍스트 색상을 바꾸기" +#: src/prefs/customization/fileItemStyle.ts:75 +msgid "Preview Background Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:76 +msgid "You can change the background color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:85 +msgid "Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:86 +msgid "You can change the text color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "You can change the font of the preview" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "" diff --git a/resources/po/nl.po b/resources/po/nl.po index 112cd8e3..2258b81d 100644 --- a/resources/po/nl.po +++ b/resources/po/nl.po @@ -317,6 +317,30 @@ msgstr "" msgid "You can change the text color of the body" msgstr "" +#: src/prefs/customization/fileItemStyle.ts:75 +msgid "Preview Background Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:76 +msgid "You can change the background color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:85 +msgid "Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:86 +msgid "You can change the text color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "You can change the font of the preview" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "" diff --git a/resources/po/no.po b/resources/po/no.po index b86ea3ac..5bfdd8fd 100644 --- a/resources/po/no.po +++ b/resources/po/no.po @@ -317,6 +317,30 @@ msgstr "" msgid "You can change the text color of the body" msgstr "" +#: src/prefs/customization/fileItemStyle.ts:75 +msgid "Preview Background Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:76 +msgid "You can change the background color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:85 +msgid "Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:86 +msgid "You can change the text color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "You can change the font of the preview" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "" diff --git a/resources/po/oc.po b/resources/po/oc.po index c7082e9a..bd4e8eb3 100644 --- a/resources/po/oc.po +++ b/resources/po/oc.po @@ -317,6 +317,30 @@ msgstr "" msgid "You can change the text color of the body" msgstr "" +#: src/prefs/customization/fileItemStyle.ts:75 +msgid "Preview Background Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:76 +msgid "You can change the background color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:85 +msgid "Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:86 +msgid "You can change the text color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "You can change the font of the preview" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "" diff --git a/resources/po/pano@elhan.io.pot b/resources/po/pano@elhan.io.pot index 809638cd..31e739c0 100644 --- a/resources/po/pano@elhan.io.pot +++ b/resources/po/pano@elhan.io.pot @@ -396,6 +396,18 @@ msgstr "" msgid "Play an Audio on Copy" msgstr "" +#: src/prefs/customization/fileItemStyle.ts:75 +msgid "Preview Background Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:85 +msgid "Preview Text Color" +msgstr "" + #: src/prefs/general/removeOnMiddleClick.ts:15 msgid "Remove on Middle Click" msgstr "" @@ -547,6 +559,10 @@ msgstr "" msgid "You can change the background color of the metadata" msgstr "" +#: src/prefs/customization/fileItemStyle.ts:76 +msgid "You can change the background color of the preview" +msgstr "" + #: src/prefs/customization/codeItemStyle.ts:56 #: src/prefs/customization/textItemStyle.ts:61 msgid "You can change the character length of the visible text in the body" @@ -586,6 +602,10 @@ msgstr "" msgid "You can change the font of the metadata title" msgstr "" +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "You can change the font of the preview" +msgstr "" + #: src/prefs/customization/commonStyleGroup.ts:83 msgid "You can change the font of the search bar" msgstr "" @@ -630,6 +650,10 @@ msgstr "" msgid "You can change the text color of the header" msgstr "" +#: src/prefs/customization/fileItemStyle.ts:86 +msgid "You can change the text color of the preview" +msgstr "" + #: src/prefs/customization/fileItemStyle.ts:53 msgid "You can change the text color of the title" msgstr "" diff --git a/resources/po/pl.po b/resources/po/pl.po index 998362a8..0aeecf23 100644 --- a/resources/po/pl.po +++ b/resources/po/pl.po @@ -317,6 +317,30 @@ msgstr "" msgid "You can change the text color of the body" msgstr "" +#: src/prefs/customization/fileItemStyle.ts:75 +msgid "Preview Background Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:76 +msgid "You can change the background color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:85 +msgid "Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:86 +msgid "You can change the text color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "You can change the font of the preview" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "" diff --git a/resources/po/pt.po b/resources/po/pt.po index df16e884..6f554cd7 100644 --- a/resources/po/pt.po +++ b/resources/po/pt.po @@ -317,6 +317,30 @@ msgstr "" msgid "You can change the text color of the body" msgstr "" +#: src/prefs/customization/fileItemStyle.ts:75 +msgid "Preview Background Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:76 +msgid "You can change the background color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:85 +msgid "Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:86 +msgid "You can change the text color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "You can change the font of the preview" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "" diff --git a/resources/po/pt_BR.po b/resources/po/pt_BR.po index 70208733..e5cf10d9 100644 --- a/resources/po/pt_BR.po +++ b/resources/po/pt_BR.po @@ -317,6 +317,30 @@ msgstr "Cor do texto do corpo" msgid "You can change the text color of the body" msgstr "Você pode mudar a cor do texto do corpo" +#: src/prefs/customization/fileItemStyle.ts:75 +msgid "Preview Background Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:76 +msgid "You can change the background color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:85 +msgid "Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:86 +msgid "You can change the text color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "You can change the font of the preview" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "Mudar o estilo do item de imagem" diff --git a/resources/po/ro.po b/resources/po/ro.po index 73d4208e..a32ee7da 100644 --- a/resources/po/ro.po +++ b/resources/po/ro.po @@ -317,6 +317,30 @@ msgstr "" msgid "You can change the text color of the body" msgstr "" +#: src/prefs/customization/fileItemStyle.ts:75 +msgid "Preview Background Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:76 +msgid "You can change the background color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:85 +msgid "Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:86 +msgid "You can change the text color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "You can change the font of the preview" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "" diff --git a/resources/po/ru.po b/resources/po/ru.po index 178b6636..cc282c16 100644 --- a/resources/po/ru.po +++ b/resources/po/ru.po @@ -317,6 +317,30 @@ msgstr "Цвет основного текста" msgid "You can change the text color of the body" msgstr "Вы можете изменить цвет основного текста" +#: src/prefs/customization/fileItemStyle.ts:75 +msgid "Preview Background Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:76 +msgid "You can change the background color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:85 +msgid "Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:86 +msgid "You can change the text color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "You can change the font of the preview" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "Изменить стиль элемента с изображением" diff --git a/resources/po/sk.po b/resources/po/sk.po index 33867233..65a7be32 100644 --- a/resources/po/sk.po +++ b/resources/po/sk.po @@ -317,6 +317,30 @@ msgstr "" msgid "You can change the text color of the body" msgstr "" +#: src/prefs/customization/fileItemStyle.ts:75 +msgid "Preview Background Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:76 +msgid "You can change the background color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:85 +msgid "Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:86 +msgid "You can change the text color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "You can change the font of the preview" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "" diff --git a/resources/po/sv.po b/resources/po/sv.po index bbf6466b..65cea4ae 100644 --- a/resources/po/sv.po +++ b/resources/po/sv.po @@ -317,6 +317,30 @@ msgstr "" msgid "You can change the text color of the body" msgstr "" +#: src/prefs/customization/fileItemStyle.ts:75 +msgid "Preview Background Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:76 +msgid "You can change the background color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:85 +msgid "Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:86 +msgid "You can change the text color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "You can change the font of the preview" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "" diff --git a/resources/po/tr.po b/resources/po/tr.po index a6975260..44b7796d 100644 --- a/resources/po/tr.po +++ b/resources/po/tr.po @@ -317,6 +317,30 @@ msgstr "Gövde Yazı Rengi" msgid "You can change the text color of the body" msgstr "Gövdenin yazı rengini değiştirebilirsiniz" +#: src/prefs/customization/fileItemStyle.ts:75 +msgid "Preview Background Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:76 +msgid "You can change the background color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:85 +msgid "Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:86 +msgid "You can change the text color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "You can change the font of the preview" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "Resim öğesinin tarzını değiştirebilirsiniz" diff --git a/resources/po/uk.po b/resources/po/uk.po index 642db97b..52051559 100644 --- a/resources/po/uk.po +++ b/resources/po/uk.po @@ -317,6 +317,30 @@ msgstr "Колір тексту тіла" msgid "You can change the text color of the body" msgstr "Ви можете змінити колір тексту тіла" +#: src/prefs/customization/fileItemStyle.ts:75 +msgid "Preview Background Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:76 +msgid "You can change the background color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:85 +msgid "Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:86 +msgid "You can change the text color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "You can change the font of the preview" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "" diff --git a/resources/po/vi.po b/resources/po/vi.po index 168af97b..f76b7b30 100644 --- a/resources/po/vi.po +++ b/resources/po/vi.po @@ -317,6 +317,30 @@ msgstr "" msgid "You can change the text color of the body" msgstr "" +#: src/prefs/customization/fileItemStyle.ts:75 +msgid "Preview Background Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:76 +msgid "You can change the background color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:85 +msgid "Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:86 +msgid "You can change the text color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "You can change the font of the preview" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "" diff --git a/resources/po/zh_CN.po b/resources/po/zh_CN.po index c462d08b..bb6f0371 100644 --- a/resources/po/zh_CN.po +++ b/resources/po/zh_CN.po @@ -317,6 +317,30 @@ msgstr "正文字体颜色" msgid "You can change the text color of the body" msgstr "修改正文字体颜色" +#: src/prefs/customization/fileItemStyle.ts:75 +msgid "Preview Background Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:76 +msgid "You can change the background color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:85 +msgid "Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:86 +msgid "You can change the text color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "You can change the font of the preview" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "修改图像项目风格" diff --git a/resources/po/zh_TW.po b/resources/po/zh_TW.po index 27b31ebc..04aa6539 100644 --- a/resources/po/zh_TW.po +++ b/resources/po/zh_TW.po @@ -317,6 +317,30 @@ msgstr "內容字體顏色" msgid "You can change the text color of the body" msgstr "你可以更換內容的字體顏色" +#: src/prefs/customization/fileItemStyle.ts:75 +msgid "Preview Background Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:76 +msgid "You can change the background color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:85 +msgid "Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:86 +msgid "You can change the text color of the preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:94 +msgid "You can change the font of the preview" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "切換圖片物件主題" diff --git a/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml b/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml index f52c3179..0b7a509c 100644 --- a/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml +++ b/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml @@ -369,6 +369,26 @@ body-font-size body-font-size + + 'rgb(36, 36, 36)' + preview-bg-color + preview-bg-color + + + 'rgb(255, 255, 255)' + preview-color + preview-color + + + 'Source Code Pro' + preview-font-family + preview-font-family + + + 10 + preview-font-size + preview-font-size + diff --git a/src/components/filePanoItem.ts b/src/components/filePanoItem.ts index 85fd191b..8e9b9b5b 100644 --- a/src/components/filePanoItem.ts +++ b/src/components/filePanoItem.ts @@ -17,6 +17,7 @@ export class FilePanoItem extends PanoItem { private fileItemSettings: Gio.Settings; private titleContainer: St.BoxLayout; private copiedFilesContainer: St.BoxLayout; + private preview: St.BoxLayout | St.Label | null = null; constructor(ext: ExtensionBase, clipboardManager: ClipboardManager, dbItem: DBItem) { super(ext, clipboardManager, dbItem); @@ -147,9 +148,95 @@ export class FilePanoItem extends PanoItem { this.body.add_child(this.titleContainer); this.body.add_child(this.copiedFilesContainer); + // Create file preview + if (this.fileList.length === 1) { + const file = Gio.File.new_for_uri(this.fileList[0]!); + if (file.query_exists(null)) { + const contentType = Gio.content_type_guess(this.fileList[0]!, null)[0]; + + if (Gio.content_type_is_a(contentType, 'text/plain')) { + // Text + let fileStream: Gio.FileInputStream | null = null; + try { + fileStream = file.read(null); + const stream = new Gio.DataInputStream({ baseStream: fileStream }); + + let text = ''; + for (let i = 0; i < 30; i++) { + const line = stream.read_line_utf8(null)[0]; + if (line) { + if (i > 0) text += '\n'; + text += line; + } else { + break; + } + } + + this.preview = new St.Label({ + text: text, + styleClass: 'copied-file-preview copied-file-preview-text', + xExpand: true, + yExpand: true, + xAlign: Clutter.ActorAlign.FILL, + yAlign: Clutter.ActorAlign.FILL, + minHeight: 0, + }); + this.preview.clutterText.lineWrap = false; + this.preview.clutterText.ellipsize = Pango.EllipsizeMode.END; + } catch (e) { + console.error(e); + } finally { + fileStream?.close(null); + } + } else if (Gio.content_type_is_a(contentType, 'image/*')) { + // Images + this.preview = new St.BoxLayout({ + styleClass: 'copied-file-preview copied-file-preview-image', + xExpand: true, + yExpand: true, + xAlign: Clutter.ActorAlign.FILL, + yAlign: Clutter.ActorAlign.FILL, + style: `background-image: url(${this.fileList[0]!}); background-size: cover;`, + }); + } else { + // Other files that might have a thumbnail available i.e. videos or pdf files + const md5 = GLib.compute_checksum_for_string( + GLib.ChecksumType.MD5, + this.fileList[0]!, + this.fileList[0]!.length, + ); + + const thumbnail1 = Gio.File.new_for_path(`${homeDir}/.thumbnails/${md5}.png`); + const thumbnail2 = Gio.File.new_for_path(`${homeDir}/.cache/thumbnails/large/${md5}.png`); + const uri = thumbnail1.query_exists(null) + ? thumbnail1.get_uri() + : thumbnail2.query_exists(null) + ? thumbnail2.get_uri() + : null; + + if (uri) { + this.preview = new St.BoxLayout({ + styleClass: 'copied-file-preview copied-file-preview-image', + xExpand: true, + yExpand: true, + xAlign: Clutter.ActorAlign.FILL, + yAlign: Clutter.ActorAlign.FILL, + style: `background-image: url(${uri}); background-size: cover;`, + }); + } + } + + if (this.preview) { + this.preview.visible = this.settings.get_boolean('compact-mode'); + this.body.add_child(this.preview); + } + } + } + this.connect('activated', this.setClipboardContent.bind(this)); this.setStyle(); this.settings.connect('changed::enable-headers', this.setStyle.bind(this)); + this.settings.connect('changed::compact-mode', this.setStyle.bind(this)); this.fileItemSettings.connect('changed', this.setStyle.bind(this)); } @@ -163,6 +250,10 @@ export class FilePanoItem extends PanoItem { const bodyColor = this.fileItemSettings.get_string('body-color'); const bodyFontFamily = this.fileItemSettings.get_string('body-font-family'); const bodyFontSize = this.fileItemSettings.get_int('body-font-size'); + const previewBgColor = this.fileItemSettings.get_string('preview-bg-color'); + const previewColor = this.fileItemSettings.get_string('preview-color'); + const previewFontFamily = this.fileItemSettings.get_string('preview-font-family'); + const previewFontSize = this.fileItemSettings.get_int('preview-font-size'); this.header.set_style(`background-color: ${headerBgColor}; color: ${headerColor};`); this.container.set_style(`background-color: ${bodyBgColor};`); @@ -174,6 +265,16 @@ export class FilePanoItem extends PanoItem { this.copiedFilesContainer.set_style( `color: ${bodyColor}; font-family: ${bodyFontFamily}; font-size: ${bodyFontSize}px`, ); + + if (this.preview) { + this.preview.visible = !this.settings.get_boolean('compact-mode'); + } + + if (this.preview?.styleClass.endsWith('copied-file-preview-text')) { + this.preview.set_style( + `background-color: ${previewBgColor}; color: ${previewColor}; font-family: ${previewFontFamily}; font-size: ${previewFontSize}px;`, + ); + } } private setClipboardContent(): void { diff --git a/src/components/panoItem.ts b/src/components/panoItem.ts index fd264e2d..ae8d0f4e 100644 --- a/src/components/panoItem.ts +++ b/src/components/panoItem.ts @@ -223,7 +223,7 @@ export class PanoItem extends St.BoxLayout { this.set_height(height * scaleFactor); this.container.set_width(this.settings.get_int('item-size') * scaleFactor); this.container.set_height((height - 8) * scaleFactor); - this.body.set_height((height - 8 - header) * scaleFactor); + this.body.set_height((height - 10 - header) * scaleFactor); this.overlay.set_height((height - 8) * scaleFactor); this.header.visible = this.settings.get_boolean('enable-headers'); } diff --git a/src/prefs/customization/fileItemStyle.ts b/src/prefs/customization/fileItemStyle.ts index cb09a101..5f012701 100644 --- a/src/prefs/customization/fileItemStyle.ts +++ b/src/prefs/customization/fileItemStyle.ts @@ -68,5 +68,30 @@ export class FileItemStyleRow extends ItemExpanderRow { // create body font row this.add_row(createFontRow(_('Body Font'), _('You can change the font of the body'), this.settings, 'body-font')); + + // create preview background color row + this.add_row( + createColorRow( + _('Preview Background Color'), + _('You can change the background color of the preview'), + this.settings, + 'preview-bg-color', + ), + ); + + // create preview text color row + this.add_row( + createColorRow( + _('Preview Text Color'), + _('You can change the text color of the preview'), + this.settings, + 'preview-color', + ), + ); + + // create preview font row + this.add_row( + createFontRow(_('Preview Font'), _('You can change the font of the preview'), this.settings, 'preview-font'), + ); } } diff --git a/src/styles/stylesheet.css b/src/styles/stylesheet.css index ed3b4bf8..b889599a 100644 --- a/src/styles/stylesheet.css +++ b/src/styles/stylesheet.css @@ -14,6 +14,10 @@ padding-bottom: 5px; } +.pano-window .search-entry-container StEntry { + border-radius: 999px; +} + .pano-window .search-entry-icon { padding: 0 4px; color: inherit; @@ -41,6 +45,7 @@ .pano-item-container { border-radius: 12px; + border: 1px inset rgba(255, 255, 255, 0.1); } /* Overlay */ @@ -127,12 +132,6 @@ tab-size: 2; } -/* .pano-item-code .pano-item-overlay { - background-gradient-start: transparent; - background-gradient-end: rgba(0, 0, 0, 0.3); - background-gradient-direction: vertical; -} */ - /* Link Item */ .pano-item-link { padding: 0px; @@ -142,11 +141,15 @@ background-size: cover; } +.pano-item-link.compact .image-container { + border-radius: 0px 0px 0px 12px; +} + .pano-item-link .pano-item-body:first-child .image-container { border-radius: 12px 12px 0px 0px; } -.pano-item-link.compact .image-container { +.pano-item-link.compact .pano-item-body:first-child .image-container { border-radius: 12px 0px 0px 12px; } @@ -204,12 +207,8 @@ font-weight: 900; } -.pano-item-file .top-level-directory { - margin-bottom: 0.3em; -} - .pano-item-file .copied-files-container { - margin-top: 10px; + margin-top: 5px; margin-right: 10px; margin-left: 10px; } @@ -220,6 +219,13 @@ color: rgb(255, 255, 255); } +.pano-item-file .copied-file-preview { + margin: 10px; + padding: 5px 5px 0px 5px; + border-radius: 5px; + box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1); +} + /* Settings */ .indicator-icon { padding: 0px; From 5fae86f9a53fed6d0ccc4634cd5f2784a5a93b50 Mon Sep 17 00:00:00 2001 From: boerdereinar Date: Fri, 3 May 2024 01:37:01 +0200 Subject: [PATCH 07/45] Add file type detection for files without an extension --- src/components/filePanoItem.ts | 16 ++++++++++++++-- src/components/panoItem.ts | 5 +++-- 2 files changed, 17 insertions(+), 4 deletions(-) diff --git a/src/components/filePanoItem.ts b/src/components/filePanoItem.ts index 8e9b9b5b..5fb250c7 100644 --- a/src/components/filePanoItem.ts +++ b/src/components/filePanoItem.ts @@ -152,7 +152,19 @@ export class FilePanoItem extends PanoItem { if (this.fileList.length === 1) { const file = Gio.File.new_for_uri(this.fileList[0]!); if (file.query_exists(null)) { - const contentType = Gio.content_type_guess(this.fileList[0]!, null)[0]; + // Read first 64 bytes of the file to guess the content type for files without an extension + let data: Uint8Array | null = null; + let fileStream: Gio.FileInputStream | null = null; + try { + if (file.query_file_type(Gio.FileQueryInfoFlags.NONE, null) === Gio.FileType.REGULAR) { + fileStream = file.read(null); + data = fileStream.read_bytes(64, null).toArray(); + } + } finally { + fileStream?.close(null); + } + + const contentType = Gio.content_type_guess(this.fileList[0]!, data)[0]; if (Gio.content_type_is_a(contentType, 'text/plain')) { // Text @@ -164,7 +176,7 @@ export class FilePanoItem extends PanoItem { let text = ''; for (let i = 0; i < 30; i++) { const line = stream.read_line_utf8(null)[0]; - if (line) { + if (line !== null) { if (i > 0) text += '\n'; text += line; } else { diff --git a/src/components/panoItem.ts b/src/components/panoItem.ts index ae8d0f4e..465418c2 100644 --- a/src/components/panoItem.ts +++ b/src/components/panoItem.ts @@ -125,7 +125,8 @@ export class PanoItem extends St.BoxLayout { } }); - this.add_style_class_name(`pano-item-${this.dbItem.itemType.toLowerCase()}`); + const itemType = getPanoItemTypes(ext)[this.dbItem.itemType]; + this.add_style_class_name(`pano-item-${itemType.classSuffix}`); this.container = new St.BoxLayout({ styleClass: 'pano-item-container', @@ -137,7 +138,7 @@ export class PanoItem extends St.BoxLayout { yExpand: true, }); - this.header = new PanoItemHeader(ext, getPanoItemTypes(ext)[this.dbItem.itemType], this.dbItem.copyDate); + this.header = new PanoItemHeader(ext, itemType, this.dbItem.copyDate); this.body = new St.BoxLayout({ styleClass: 'pano-item-body', From e3296f696bc3d146c658a916ae3d00c91c605ed0 Mon Sep 17 00:00:00 2001 From: boerdereinar Date: Sat, 4 May 2024 20:28:59 +0200 Subject: [PATCH 08/45] Modify file item look --- .../actions/file-tree-end-symbolic.svg | 6 - .../actions/file-tree-middle-symbolic.svg | 6 - ...rg.gnome.shell.extensions.pano.gschema.xml | 4 +- src/components/filePanoItem.ts | 196 +++++++++--------- src/components/linkPanoItem.ts | 2 +- src/styles/stylesheet.css | 47 +++-- 6 files changed, 129 insertions(+), 132 deletions(-) delete mode 100644 resources/icons/hicolor/scalable/actions/file-tree-end-symbolic.svg delete mode 100644 resources/icons/hicolor/scalable/actions/file-tree-middle-symbolic.svg diff --git a/resources/icons/hicolor/scalable/actions/file-tree-end-symbolic.svg b/resources/icons/hicolor/scalable/actions/file-tree-end-symbolic.svg deleted file mode 100644 index 1b9cb4db..00000000 --- a/resources/icons/hicolor/scalable/actions/file-tree-end-symbolic.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - diff --git a/resources/icons/hicolor/scalable/actions/file-tree-middle-symbolic.svg b/resources/icons/hicolor/scalable/actions/file-tree-middle-symbolic.svg deleted file mode 100644 index 9acc7769..00000000 --- a/resources/icons/hicolor/scalable/actions/file-tree-middle-symbolic.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - diff --git a/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml b/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml index 0b7a509c..d3cef9d6 100644 --- a/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml +++ b/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml @@ -178,7 +178,7 @@ hovered-item-border-color - false + true Show Controls on Hover When enabled, the controls will only show on hover @@ -350,7 +350,7 @@ title-font-family - 18 + 13 title-font-size title-font-size diff --git a/src/components/filePanoItem.ts b/src/components/filePanoItem.ts index 5fb250c7..01c834e1 100644 --- a/src/components/filePanoItem.ts +++ b/src/components/filePanoItem.ts @@ -8,7 +8,6 @@ import { PanoItem } from '@pano/components/panoItem'; import { ClipboardContent, ClipboardManager, ContentType, FileOperation } from '@pano/utils/clipboardManager'; import { DBItem } from '@pano/utils/db'; import { registerGObjectClass } from '@pano/utils/gjs'; -import { orientationCompatibility } from '@pano/utils/shell_compatibility'; @registerGObjectClass export class FilePanoItem extends PanoItem { @@ -16,7 +15,7 @@ export class FilePanoItem extends PanoItem { private operation: string; private fileItemSettings: Gio.Settings; private titleContainer: St.BoxLayout; - private copiedFilesContainer: St.BoxLayout; + private copiedFilesContainer: St.BoxLayout | null = null; private preview: St.BoxLayout | St.Label | null = null; constructor(ext: ExtensionBase, clipboardManager: ClipboardManager, dbItem: DBItem) { @@ -32,11 +31,12 @@ export class FilePanoItem extends PanoItem { vertical: false, xExpand: true, yExpand: false, - yAlign: Clutter.ActorAlign.START, + yAlign: Clutter.ActorAlign.FILL, }); const icon = new St.Icon({ xAlign: Clutter.ActorAlign.START, + yAlign: Clutter.ActorAlign.START, styleClass: 'title-icon', }); @@ -47,109 +47,26 @@ export class FilePanoItem extends PanoItem { } const label = new St.Label({ - text: this.fileList.length > 1 ? `${this.fileList.length} files` : `${this.fileList.length} file`, styleClass: 'title-label', xAlign: Clutter.ActorAlign.FILL, + yAlign: Clutter.ActorAlign.CENTER, xExpand: true, }); + label.clutterText.lineWrap = true; + label.clutterText.ellipsize = Pango.EllipsizeMode.MIDDLE; this.titleContainer.add_child(icon); - this.titleContainer.add_child(label); - - this.copiedFilesContainer = new St.BoxLayout({ - styleClass: 'copied-files-container', - ...orientationCompatibility(true), - xExpand: true, - yExpand: false, - yAlign: Clutter.ActorAlign.FILL, - }); - // Check for the common parent directory for all files const homeDir = GLib.get_home_dir(); - const commonDirectory = this.fileList - .map((f) => { - const items = f.split('://').filter((c) => !!c); - return decodeURIComponent(items[items.length - 1]!).split('/'); - }) - .reduce((prev, cur) => { - for (let i = 0; i < Math.min(prev.length, cur.length); i++) { - if (prev[i] !== cur[i]) { - return prev.slice(0, i); - } - } - - // Two files are the same - if (prev.length === cur.length) { - return prev.slice(0, prev.length - 1); - } - // One file/directory is inside of the other directory - return prev.length < cur.length ? prev : cur; - }) - .join('/'); - - if (this.fileList.length > 1) { - const directoryLabel = new St.Label({ - text: commonDirectory.replace(homeDir, '~'), - styleClass: 'top-level-directory', - xAlign: Clutter.ActorAlign.FILL, - xExpand: true, - }); - directoryLabel.clutterText.ellipsize = Pango.EllipsizeMode.MIDDLE; - - this.copiedFilesContainer.add_child(directoryLabel); - } - - this.fileList - .map((f) => { - const items = f.split('://').filter((c) => !!c); - return decodeURIComponent(items[items.length - 1]!); - }) - .forEach((uri, i) => { - const bl = new St.BoxLayout({ - ...orientationCompatibility(false), - styleClass: 'copied-file-name', - xExpand: true, - xAlign: Clutter.ActorAlign.FILL, - clipToAllocation: true, - yAlign: Clutter.ActorAlign.FILL, - }); - - const iconName = i < this.fileList.length - 1 ? 'file-tree-middle' : 'file-tree-end'; - const icon = new St.Icon({ - gicon: Gio.icon_new_for_string(`${ext.path}/icons/hicolor/scalable/actions/${iconName}-symbolic.svg`), - styleClass: 'file-tree-icon', - xAlign: Clutter.ActorAlign.START, - xExpand: false, - }); - - const uriLabel = new St.Label({ - text: - this.fileList.length == 1 - ? uri.replace(homeDir, '~') - : uri.substring(commonDirectory.length + 1).replace(homeDir, '~'), - styleClass: 'file-label', - xAlign: Clutter.ActorAlign.FILL, - yAlign: Clutter.ActorAlign.CENTER, - xExpand: true, - }); - - uriLabel.clutterText.ellipsize = Pango.EllipsizeMode.MIDDLE; - if (this.fileList.length == 1) { - uriLabel.clutterText.lineWrap = true; - } else { - bl.add_child(icon); - } - - bl.add_child(uriLabel); - this.copiedFilesContainer.add_child(bl); - }); + if (this.fileList.length === 1) { + const items = this.fileList[0]!.split('://').filter((c) => !!c); + label.text = decodeURIComponent(items[items.length - 1]!).replace(homeDir, '~'); - this.body.add_child(this.titleContainer); - this.body.add_child(this.copiedFilesContainer); + this.titleContainer.add_child(label); + this.body.add_child(this.titleContainer); - // Create file preview - if (this.fileList.length === 1) { + // Try to create file preview const file = Gio.File.new_for_uri(this.fileList[0]!); if (file.query_exists(null)) { // Read first 64 bytes of the file to guess the content type for files without an extension @@ -235,6 +152,8 @@ export class FilePanoItem extends PanoItem { yAlign: Clutter.ActorAlign.FILL, style: `background-image: url(${uri}); background-size: cover;`, }); + } else { + this.add_style_class_name('no-preview'); } } @@ -243,6 +162,78 @@ export class FilePanoItem extends PanoItem { this.body.add_child(this.preview); } } + } else { + // Check for the common parent directory for all files + const commonDirectory = this.fileList + .map((f) => { + const items = f.split('://').filter((c) => !!c); + return decodeURIComponent(items[items.length - 1]!).split('/'); + }) + .reduce((prev, cur) => { + for (let i = 0; i < Math.min(prev.length, cur.length); i++) { + if (prev[i] !== cur[i]) { + return prev.slice(0, i); + } + } + + // Two files are the same + if (prev.length === cur.length) { + return prev.slice(0, prev.length - 1); + } + + // One file/directory is inside of the other directory + return prev.length < cur.length ? prev : cur; + }) + .join('/'); + + label.text = `${commonDirectory.replace(homeDir, '~')}`; + + const labelContainer = new St.BoxLayout({ + vertical: true, + xExpand: true, + yExpand: false, + xAlign: Clutter.ActorAlign.FILL, + yAlign: Clutter.ActorAlign.CENTER, + }); + labelContainer.add_child(label); + labelContainer.add_child( + new St.Label({ + text: `${this.fileList.length} items`, + styleClass: 'copied-files-count', + }), + ); + + this.titleContainer.add_child(labelContainer); + this.body.add_child(this.titleContainer); + + this.copiedFilesContainer = new St.BoxLayout({ + styleClass: 'copied-files-container', + clipToAllocation: true, + vertical: true, + xExpand: true, + yExpand: true, + yAlign: Clutter.ActorAlign.FILL, + minHeight: 0, + }); + + this.fileList + .map((f) => { + const items = f.split('://').filter((c) => !!c); + return decodeURIComponent(items[items.length - 1]!); + }) + .forEach((uri) => { + const uriLabel = new St.Label({ + text: uri.substring(commonDirectory.length + 1).replace(homeDir, '~'), + styleClass: 'copied-file-name', + xAlign: Clutter.ActorAlign.FILL, + xExpand: true, + }); + uriLabel.clutterText.ellipsize = Pango.EllipsizeMode.MIDDLE; + + this.copiedFilesContainer!.add_child(uriLabel); + }); + + this.body.add_child(this.copiedFilesContainer); } this.connect('activated', this.setClipboardContent.bind(this)); @@ -253,6 +244,7 @@ export class FilePanoItem extends PanoItem { } private setStyle() { + const compactMode = this.settings.get_boolean('compact-mode'); const headerBgColor = this.fileItemSettings.get_string('header-bg-color'); const headerColor = this.fileItemSettings.get_string('header-color'); const bodyBgColor = this.fileItemSettings.get_string('body-bg-color'); @@ -270,16 +262,20 @@ export class FilePanoItem extends PanoItem { this.header.set_style(`background-color: ${headerBgColor}; color: ${headerColor};`); this.container.set_style(`background-color: ${bodyBgColor};`); - this.titleContainer.visible = !this.settings.get_boolean('enable-headers'); this.titleContainer.set_style( `color: ${titleColor}; font-family: ${titleFontFamily}; font-size: ${titleFontSize}px;`, ); - this.copiedFilesContainer.set_style( - `color: ${bodyColor}; font-family: ${bodyFontFamily}; font-size: ${bodyFontSize}px`, - ); + if (this.copiedFilesContainer) { + this.copiedFilesContainer.visible = !compactMode; + this.copiedFilesContainer?.set_style( + `background-color: ${previewBgColor}; color: ${bodyColor}; font-family: ${bodyFontFamily}; font-size: ${bodyFontSize}px`, + ); + } + + this.titleContainer.vertical = this.preview === null && this.copiedFilesContainer === null && !compactMode; if (this.preview) { - this.preview.visible = !this.settings.get_boolean('compact-mode'); + this.preview.visible = !compactMode; } if (this.preview?.styleClass.endsWith('copied-file-preview-text')) { diff --git a/src/components/linkPanoItem.ts b/src/components/linkPanoItem.ts index ee28ec74..da61b95c 100644 --- a/src/components/linkPanoItem.ts +++ b/src/components/linkPanoItem.ts @@ -47,7 +47,7 @@ export class LinkPanoItem extends PanoItem { ...orientationCompatibility(true), xExpand: true, yExpand: false, - yAlign: Clutter.ActorAlign.END, + yAlign: Clutter.ActorAlign.CENTER, xAlign: Clutter.ActorAlign.FILL, }); diff --git a/src/styles/stylesheet.css b/src/styles/stylesheet.css index b889599a..01e7abf8 100644 --- a/src/styles/stylesheet.css +++ b/src/styles/stylesheet.css @@ -94,7 +94,7 @@ .pano-item-favorite-button:hover { background-color: #f6d32d; - color: white!important; + color: #454545; } .pano-item-remove-button:hover, @@ -159,6 +159,7 @@ } .pano-item-link.compact .meta-container { + padding: 0 10px; border-radius: 0px 12px 12px 0px; } @@ -194,36 +195,48 @@ /* File Item */ .pano-item-file .title-container { - padding: 10px 10px 0 10px; + margin: 5px 10px 0 10px; + height: 2.8em; +} + +.pano-item-file.no-preview .title-container, .pano-item-file.compact .title-container { + height: auto; } .pano-item-file .title-icon { - width: 1.2em; - height: 1.2em; + margin-top: 5px; + margin-bottom: 5px; + margin-right: 10px; + width: 2em; + height: 2em; } .pano-item-file .title-label { - padding-left: 10px; - font-weight: 900; + font-weight: 700; } -.pano-item-file .copied-files-container { - margin-top: 5px; - margin-right: 10px; - margin-left: 10px; +.pano-item-file .copied-files-count { + font-size: 0.8em; } -.pano-item-file .file-tree-icon { - width: 1.5em; - height: 1.5em; - color: rgb(255, 255, 255); +.pano-item-file .copied-files-container, .pano-item-file .copied-file-preview { + margin: 10px; + margin-top: 7px; + border-radius: 5px; + box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1); } .pano-item-file .copied-file-preview { - margin: 10px; padding: 5px 5px 0px 5px; - border-radius: 5px; - box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1); +} + +.pano-item-file .copied-files-container .copied-file-name { + padding: 2px 10px; + border-top: 1px solid rgba(255, 255, 255, 0.1); +} + +.pano-item-file .copied-files-container .copied-file-name:first-child { + border-top: none; } /* Settings */ From 6d69a70fa5cc4049e9d8257857b112627b68a0b7 Mon Sep 17 00:00:00 2001 From: boerdereinar Date: Sun, 5 May 2024 16:46:48 +0200 Subject: [PATCH 09/45] Change file styling again --- ...rg.gnome.shell.extensions.pano.gschema.xml | 2 +- src/components/filePanoItem.ts | 86 +++++++++++-------- src/styles/stylesheet.css | 14 +-- 3 files changed, 62 insertions(+), 40 deletions(-) diff --git a/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml b/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml index d3cef9d6..3ccdff7c 100644 --- a/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml +++ b/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml @@ -370,7 +370,7 @@ body-font-size - 'rgb(36, 36, 36)' + 'rgba(255, 255, 255, 0.08)' preview-bg-color preview-bg-color diff --git a/src/components/filePanoItem.ts b/src/components/filePanoItem.ts index 01c834e1..899428bd 100644 --- a/src/components/filePanoItem.ts +++ b/src/components/filePanoItem.ts @@ -9,14 +9,21 @@ import { ClipboardContent, ClipboardManager, ContentType, FileOperation } from ' import { DBItem } from '@pano/utils/db'; import { registerGObjectClass } from '@pano/utils/gjs'; +enum PreviewType { + NONE = 'none', + FILES = 'files', + IMAGE = 'image', + TEXT = 'text', +} + @registerGObjectClass export class FilePanoItem extends PanoItem { private fileList: string[]; private operation: string; private fileItemSettings: Gio.Settings; private titleContainer: St.BoxLayout; - private copiedFilesContainer: St.BoxLayout | null = null; private preview: St.BoxLayout | St.Label | null = null; + private previewType: PreviewType = PreviewType.NONE; constructor(ext: ExtensionBase, clipboardManager: ClipboardManager, dbItem: DBItem) { super(ext, clipboardManager, dbItem); @@ -112,6 +119,7 @@ export class FilePanoItem extends PanoItem { }); this.preview.clutterText.lineWrap = false; this.preview.clutterText.ellipsize = Pango.EllipsizeMode.END; + this.previewType = PreviewType.TEXT; } catch (e) { console.error(e); } finally { @@ -127,31 +135,20 @@ export class FilePanoItem extends PanoItem { yAlign: Clutter.ActorAlign.FILL, style: `background-image: url(${this.fileList[0]!}); background-size: cover;`, }); + this.previewType = PreviewType.IMAGE; } else { // Other files that might have a thumbnail available i.e. videos or pdf files - const md5 = GLib.compute_checksum_for_string( - GLib.ChecksumType.MD5, - this.fileList[0]!, - this.fileList[0]!.length, - ); - - const thumbnail1 = Gio.File.new_for_path(`${homeDir}/.thumbnails/${md5}.png`); - const thumbnail2 = Gio.File.new_for_path(`${homeDir}/.cache/thumbnails/large/${md5}.png`); - const uri = thumbnail1.query_exists(null) - ? thumbnail1.get_uri() - : thumbnail2.query_exists(null) - ? thumbnail2.get_uri() - : null; - - if (uri) { + const thumbnail = FilePanoItem.getThumbnail(homeDir, this.fileList[0]!); + if (thumbnail !== null) { this.preview = new St.BoxLayout({ styleClass: 'copied-file-preview copied-file-preview-image', xExpand: true, yExpand: true, xAlign: Clutter.ActorAlign.FILL, yAlign: Clutter.ActorAlign.FILL, - style: `background-image: url(${uri}); background-size: cover;`, + style: `background-image: url(${thumbnail.get_uri()}); background-size: cover;`, }); + this.previewType = PreviewType.IMAGE; } else { this.add_style_class_name('no-preview'); } @@ -206,8 +203,8 @@ export class FilePanoItem extends PanoItem { this.titleContainer.add_child(labelContainer); this.body.add_child(this.titleContainer); - this.copiedFilesContainer = new St.BoxLayout({ - styleClass: 'copied-files-container', + this.preview = new St.BoxLayout({ + styleClass: 'copied-file-preview copied-file-preview-files', clipToAllocation: true, vertical: true, xExpand: true, @@ -215,6 +212,7 @@ export class FilePanoItem extends PanoItem { yAlign: Clutter.ActorAlign.FILL, minHeight: 0, }); + this.previewType = PreviewType.FILES; this.fileList .map((f) => { @@ -230,10 +228,10 @@ export class FilePanoItem extends PanoItem { }); uriLabel.clutterText.ellipsize = Pango.EllipsizeMode.MIDDLE; - this.copiedFilesContainer!.add_child(uriLabel); + this.preview!.add_child(uriLabel); }); - this.body.add_child(this.copiedFilesContainer); + this.body.add_child(this.preview); } this.connect('activated', this.setClipboardContent.bind(this)); @@ -266,22 +264,19 @@ export class FilePanoItem extends PanoItem { `color: ${titleColor}; font-family: ${titleFontFamily}; font-size: ${titleFontSize}px;`, ); - if (this.copiedFilesContainer) { - this.copiedFilesContainer.visible = !compactMode; - this.copiedFilesContainer?.set_style( - `background-color: ${previewBgColor}; color: ${bodyColor}; font-family: ${bodyFontFamily}; font-size: ${bodyFontSize}px`, - ); - } - - this.titleContainer.vertical = this.preview === null && this.copiedFilesContainer === null && !compactMode; + this.titleContainer.vertical = this.preview === null && !compactMode; if (this.preview) { this.preview.visible = !compactMode; - } - if (this.preview?.styleClass.endsWith('copied-file-preview-text')) { - this.preview.set_style( - `background-color: ${previewBgColor}; color: ${previewColor}; font-family: ${previewFontFamily}; font-size: ${previewFontSize}px;`, - ); + if (this.previewType == PreviewType.FILES) { + this.preview.set_style( + `background-color: ${previewBgColor}; color: ${bodyColor}; font-family: ${bodyFontFamily}; font-size: ${bodyFontSize}px;`, + ); + } else if (this.previewType == PreviewType.TEXT) { + this.preview.set_style( + `background-color: ${previewBgColor}; color: ${previewColor}; font-family: ${previewFontFamily}; font-size: ${previewFontSize}px;`, + ); + } } } @@ -293,4 +288,27 @@ export class FilePanoItem extends PanoItem { }), ); } + + private static getThumbnail(homeDir: string, file: string): Gio.File | null { + const md5 = GLib.compute_checksum_for_string(GLib.ChecksumType.MD5, file, file.length); + + try { + const thumbnailDir = Gio.File.new_for_path(`${homeDir}/.cache/thumbnails`); + const enumerator = thumbnailDir.enumerate_children('standard::*', 0, null); + + let f: Gio.FileInfo | null = null; + while ((f = enumerator.next_file(null)) !== null) { + if (f.get_file_type() == Gio.FileType.DIRECTORY) { + const thumbnailFile = thumbnailDir.get_child(f.get_name()).get_child(`${md5}.png`); + if (thumbnailFile.query_exists(null)) { + return thumbnailFile; + } + } + } + } catch { + // ignore + } + + return null; + } } diff --git a/src/styles/stylesheet.css b/src/styles/stylesheet.css index 01e7abf8..7c2c6cac 100644 --- a/src/styles/stylesheet.css +++ b/src/styles/stylesheet.css @@ -41,11 +41,15 @@ border-radius: 16px; margin: 6px; border: 4px solid transparent; + box-shadow: 0 0 4px rgba(0, 0, 0, 0.1); +} + +.pano-item:hover { + box-shadow: none; } .pano-item-container { border-radius: 12px; - border: 1px inset rgba(255, 255, 255, 0.1); } /* Overlay */ @@ -219,23 +223,23 @@ font-size: 0.8em; } -.pano-item-file .copied-files-container, .pano-item-file .copied-file-preview { +.pano-item-file .copied-file-preview { margin: 10px; margin-top: 7px; border-radius: 5px; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1); } -.pano-item-file .copied-file-preview { +.pano-item-file .copied-file-preview-text { padding: 5px 5px 0px 5px; } -.pano-item-file .copied-files-container .copied-file-name { +.pano-item-file .copied-file-preview-files .copied-file-name { padding: 2px 10px; border-top: 1px solid rgba(255, 255, 255, 0.1); } -.pano-item-file .copied-files-container .copied-file-name:first-child { +.pano-item-file .copied-file-preview-files .copied-file-name:first-child { border-top: none; } From 64e3fdb5c1a23e28debbf0f60c2a9a1dadd3c010 Mon Sep 17 00:00:00 2001 From: boerdereinar Date: Sun, 5 May 2024 21:57:07 +0200 Subject: [PATCH 10/45] Rename preview settings --- resources/po/ar.po | 64 +++++++++++------ resources/po/bg.po | 64 +++++++++++------ resources/po/cs.po | 68 ++++++++++++------ resources/po/da.po | 64 +++++++++++------ resources/po/de.po | 68 ++++++++++++------ resources/po/el.po | 64 +++++++++++------ resources/po/en.po | 64 +++++++++++------ resources/po/es.po | 68 ++++++++++++------ resources/po/et.po | 64 +++++++++++------ resources/po/fi.po | 64 +++++++++++------ resources/po/fr.po | 68 ++++++++++++------ resources/po/he.po | 64 +++++++++++------ resources/po/hr.po | 64 +++++++++++------ resources/po/hu.po | 64 +++++++++++------ resources/po/is.po | 64 +++++++++++------ resources/po/it.po | 68 ++++++++++++------ resources/po/ja.po | 64 +++++++++++------ resources/po/ko.po | 68 ++++++++++++------ resources/po/nl.po | 64 +++++++++++------ resources/po/no.po | 64 +++++++++++------ resources/po/oc.po | 64 +++++++++++------ resources/po/pano@elhan.io.pot | 72 ++++++++++++------- resources/po/pl.po | 64 +++++++++++------ resources/po/pt.po | 64 +++++++++++------ resources/po/pt_BR.po | 68 ++++++++++++------ resources/po/ro.po | 64 +++++++++++------ resources/po/ru.po | 68 ++++++++++++------ resources/po/sk.po | 64 +++++++++++------ resources/po/sv.po | 64 +++++++++++------ resources/po/tr.po | 68 ++++++++++++------ resources/po/uk.po | 68 ++++++++++++------ resources/po/vi.po | 64 +++++++++++------ resources/po/zh_CN.po | 68 ++++++++++++------ resources/po/zh_TW.po | 68 ++++++++++++------ ...rg.gnome.shell.extensions.pano.gschema.xml | 49 +++++++------ src/components/filePanoItem.ts | 29 ++++---- src/prefs/customization/fileItemStyle.ts | 55 ++++++++++---- src/styles/stylesheet.css | 18 +++++ 38 files changed, 1627 insertions(+), 756 deletions(-) diff --git a/resources/po/ar.po b/resources/po/ar.po index d041b52b..8033aafa 100644 --- a/resources/po/ar.po +++ b/resources/po/ar.po @@ -31,6 +31,10 @@ msgstr "الوضع المخفي" msgid "Settings" msgstr "الإعدادات" +#: src/components/filePanoItem.ts:202 +msgid "items" +msgstr "" + #: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "" @@ -105,13 +109,11 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:50 #: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "" #: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" @@ -307,38 +309,52 @@ msgstr "" msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "Body Text Color" +#: src/prefs/customization/fileItemStyle.ts:67 +msgid "Files Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "You can change the text color of the body" +#: src/prefs/customization/fileItemStyle.ts:68 +msgid "You can change the background color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:77 +msgid "Files Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:78 +msgid "You can change the text color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:87 +msgid "Files Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:88 +msgid "You can change the font of the files preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:75 -msgid "Preview Background Color" +#: src/prefs/customization/fileItemStyle.ts:97 +msgid "Text Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:76 -msgid "You can change the background color of the preview" +#: src/prefs/customization/fileItemStyle.ts:98 +msgid "You can change the background color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:85 -msgid "Preview Text Color" +#: src/prefs/customization/fileItemStyle.ts:107 +msgid "Text Preview Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:86 -msgid "You can change the text color of the preview" +#: src/prefs/customization/fileItemStyle.ts:108 +msgid "You can change the text color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "Preview Font" +#: src/prefs/customization/fileItemStyle.ts:117 +msgid "Text Preview Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "You can change the font of the preview" +#: src/prefs/customization/fileItemStyle.ts:118 +msgid "You can change the font of the text preview" msgstr "" #: src/prefs/customization/imageItemStyle.ts:14 @@ -429,6 +445,14 @@ msgstr "" msgid "Text Item Style" msgstr "" +#: src/prefs/customization/textItemStyle.ts:51 +msgid "Body Text Color" +msgstr "" + +#: src/prefs/customization/textItemStyle.ts:51 +msgid "You can change the text color of the body" +msgstr "" + #: src/prefs/dangerZone/clearHistory.ts:15 msgid "Clears the clipboard database and cache" msgstr "يزيل قاعدة بيانات الحافظة وذاكرتها المؤقتة" diff --git a/resources/po/bg.po b/resources/po/bg.po index dee43f01..5357ef80 100644 --- a/resources/po/bg.po +++ b/resources/po/bg.po @@ -31,6 +31,10 @@ msgstr "Режим \"инкогнито\"" msgid "Settings" msgstr "Настройки" +#: src/components/filePanoItem.ts:202 +msgid "items" +msgstr "" + #: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "" @@ -105,13 +109,11 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:50 #: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "" #: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" @@ -307,38 +309,52 @@ msgstr "" msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "Body Text Color" +#: src/prefs/customization/fileItemStyle.ts:67 +msgid "Files Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "You can change the text color of the body" +#: src/prefs/customization/fileItemStyle.ts:68 +msgid "You can change the background color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:77 +msgid "Files Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:78 +msgid "You can change the text color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:87 +msgid "Files Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:88 +msgid "You can change the font of the files preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:75 -msgid "Preview Background Color" +#: src/prefs/customization/fileItemStyle.ts:97 +msgid "Text Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:76 -msgid "You can change the background color of the preview" +#: src/prefs/customization/fileItemStyle.ts:98 +msgid "You can change the background color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:85 -msgid "Preview Text Color" +#: src/prefs/customization/fileItemStyle.ts:107 +msgid "Text Preview Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:86 -msgid "You can change the text color of the preview" +#: src/prefs/customization/fileItemStyle.ts:108 +msgid "You can change the text color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "Preview Font" +#: src/prefs/customization/fileItemStyle.ts:117 +msgid "Text Preview Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "You can change the font of the preview" +#: src/prefs/customization/fileItemStyle.ts:118 +msgid "You can change the font of the text preview" msgstr "" #: src/prefs/customization/imageItemStyle.ts:14 @@ -429,6 +445,14 @@ msgstr "" msgid "Text Item Style" msgstr "" +#: src/prefs/customization/textItemStyle.ts:51 +msgid "Body Text Color" +msgstr "" + +#: src/prefs/customization/textItemStyle.ts:51 +msgid "You can change the text color of the body" +msgstr "" + #: src/prefs/dangerZone/clearHistory.ts:15 msgid "Clears the clipboard database and cache" msgstr "Изчиства базата данни и кеша на клипборда" diff --git a/resources/po/cs.po b/resources/po/cs.po index af1e76b2..50bf4fbb 100644 --- a/resources/po/cs.po +++ b/resources/po/cs.po @@ -31,6 +31,10 @@ msgstr "Anonymní režim" msgid "Settings" msgstr "Nastavení" +#: src/components/filePanoItem.ts:202 +msgid "items" +msgstr "" + #: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "Bez popisu" @@ -105,13 +109,11 @@ msgstr "Můžete změnit barvu pozadí těla" #: src/prefs/customization/codeItemStyle.ts:50 #: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "Písmo těla" #: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "Můžete změnit písmo těla" @@ -307,38 +309,52 @@ msgstr "" msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "Body Text Color" -msgstr "Barva textu těla" +#: src/prefs/customization/fileItemStyle.ts:67 +msgid "Files Preview Background Color" +msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "You can change the text color of the body" -msgstr "Můžete změnit barvu textu těla" +#: src/prefs/customization/fileItemStyle.ts:68 +msgid "You can change the background color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:77 +msgid "Files Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:78 +msgid "You can change the text color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:87 +msgid "Files Preview Font" +msgstr "" -#: src/prefs/customization/fileItemStyle.ts:75 -msgid "Preview Background Color" +#: src/prefs/customization/fileItemStyle.ts:88 +msgid "You can change the font of the files preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:76 -msgid "You can change the background color of the preview" +#: src/prefs/customization/fileItemStyle.ts:97 +msgid "Text Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:85 -msgid "Preview Text Color" +#: src/prefs/customization/fileItemStyle.ts:98 +msgid "You can change the background color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:86 -msgid "You can change the text color of the preview" +#: src/prefs/customization/fileItemStyle.ts:107 +msgid "Text Preview Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "Preview Font" +#: src/prefs/customization/fileItemStyle.ts:108 +msgid "You can change the text color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "You can change the font of the preview" +#: src/prefs/customization/fileItemStyle.ts:117 +msgid "Text Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:118 +msgid "You can change the font of the text preview" msgstr "" #: src/prefs/customization/imageItemStyle.ts:14 @@ -429,6 +445,14 @@ msgstr "Změňte styly textu" msgid "Text Item Style" msgstr "Text - nastavení stylů" +#: src/prefs/customization/textItemStyle.ts:51 +msgid "Body Text Color" +msgstr "Barva textu těla" + +#: src/prefs/customization/textItemStyle.ts:51 +msgid "You can change the text color of the body" +msgstr "Můžete změnit barvu textu těla" + #: src/prefs/dangerZone/clearHistory.ts:15 msgid "Clears the clipboard database and cache" msgstr "Vymaže databázi schránky a mezipaměť" diff --git a/resources/po/da.po b/resources/po/da.po index 10b52e26..b35c87aa 100644 --- a/resources/po/da.po +++ b/resources/po/da.po @@ -31,6 +31,10 @@ msgstr "Inkognitotilstand" msgid "Settings" msgstr "Indstillinger" +#: src/components/filePanoItem.ts:202 +msgid "items" +msgstr "" + #: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "" @@ -105,13 +109,11 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:50 #: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "" #: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" @@ -307,38 +309,52 @@ msgstr "" msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "Body Text Color" +#: src/prefs/customization/fileItemStyle.ts:67 +msgid "Files Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "You can change the text color of the body" +#: src/prefs/customization/fileItemStyle.ts:68 +msgid "You can change the background color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:77 +msgid "Files Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:78 +msgid "You can change the text color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:87 +msgid "Files Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:88 +msgid "You can change the font of the files preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:75 -msgid "Preview Background Color" +#: src/prefs/customization/fileItemStyle.ts:97 +msgid "Text Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:76 -msgid "You can change the background color of the preview" +#: src/prefs/customization/fileItemStyle.ts:98 +msgid "You can change the background color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:85 -msgid "Preview Text Color" +#: src/prefs/customization/fileItemStyle.ts:107 +msgid "Text Preview Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:86 -msgid "You can change the text color of the preview" +#: src/prefs/customization/fileItemStyle.ts:108 +msgid "You can change the text color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "Preview Font" +#: src/prefs/customization/fileItemStyle.ts:117 +msgid "Text Preview Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "You can change the font of the preview" +#: src/prefs/customization/fileItemStyle.ts:118 +msgid "You can change the font of the text preview" msgstr "" #: src/prefs/customization/imageItemStyle.ts:14 @@ -429,6 +445,14 @@ msgstr "" msgid "Text Item Style" msgstr "" +#: src/prefs/customization/textItemStyle.ts:51 +msgid "Body Text Color" +msgstr "" + +#: src/prefs/customization/textItemStyle.ts:51 +msgid "You can change the text color of the body" +msgstr "" + #: src/prefs/dangerZone/clearHistory.ts:15 msgid "Clears the clipboard database and cache" msgstr "Rydder udklipsholderens database og cache" diff --git a/resources/po/de.po b/resources/po/de.po index 090ab14b..6f74667d 100644 --- a/resources/po/de.po +++ b/resources/po/de.po @@ -31,6 +31,10 @@ msgstr "Inkognito-Modus" msgid "Settings" msgstr "Einstellungen" +#: src/components/filePanoItem.ts:202 +msgid "items" +msgstr "" + #: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "Keine Beschreibung" @@ -105,13 +109,11 @@ msgstr "Sie können die Hintergrundfarbe des Hauptteils ändern" #: src/prefs/customization/codeItemStyle.ts:50 #: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "Schriftart des Hauptteils" #: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "Sie können die Schriftart des Hauptteils ändern" @@ -307,38 +309,52 @@ msgstr "" msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "Body Text Color" -msgstr "Textfarbe des Hauptteils" +#: src/prefs/customization/fileItemStyle.ts:67 +msgid "Files Preview Background Color" +msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "You can change the text color of the body" -msgstr "Sie können die Textfarbe des Hauptteils ändern" +#: src/prefs/customization/fileItemStyle.ts:68 +msgid "You can change the background color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:77 +msgid "Files Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:78 +msgid "You can change the text color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:87 +msgid "Files Preview Font" +msgstr "" -#: src/prefs/customization/fileItemStyle.ts:75 -msgid "Preview Background Color" +#: src/prefs/customization/fileItemStyle.ts:88 +msgid "You can change the font of the files preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:76 -msgid "You can change the background color of the preview" +#: src/prefs/customization/fileItemStyle.ts:97 +msgid "Text Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:85 -msgid "Preview Text Color" +#: src/prefs/customization/fileItemStyle.ts:98 +msgid "You can change the background color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:86 -msgid "You can change the text color of the preview" +#: src/prefs/customization/fileItemStyle.ts:107 +msgid "Text Preview Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "Preview Font" +#: src/prefs/customization/fileItemStyle.ts:108 +msgid "You can change the text color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "You can change the font of the preview" +#: src/prefs/customization/fileItemStyle.ts:117 +msgid "Text Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:118 +msgid "You can change the font of the text preview" msgstr "" #: src/prefs/customization/imageItemStyle.ts:14 @@ -429,6 +445,14 @@ msgstr "Stil des Text-Eintrags ändern" msgid "Text Item Style" msgstr "Stil des Text-Eintrags" +#: src/prefs/customization/textItemStyle.ts:51 +msgid "Body Text Color" +msgstr "Textfarbe des Hauptteils" + +#: src/prefs/customization/textItemStyle.ts:51 +msgid "You can change the text color of the body" +msgstr "Sie können die Textfarbe des Hauptteils ändern" + #: src/prefs/dangerZone/clearHistory.ts:15 msgid "Clears the clipboard database and cache" msgstr "Leert die Zwischenablage-Datenbank und den Cache" diff --git a/resources/po/el.po b/resources/po/el.po index 03ddee72..ae63265e 100644 --- a/resources/po/el.po +++ b/resources/po/el.po @@ -31,6 +31,10 @@ msgstr "Ανώνυμης" msgid "Settings" msgstr "Ρυθμίσεις" +#: src/components/filePanoItem.ts:202 +msgid "items" +msgstr "" + #: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "" @@ -105,13 +109,11 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:50 #: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "" #: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" @@ -307,38 +309,52 @@ msgstr "" msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "Body Text Color" +#: src/prefs/customization/fileItemStyle.ts:67 +msgid "Files Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "You can change the text color of the body" +#: src/prefs/customization/fileItemStyle.ts:68 +msgid "You can change the background color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:77 +msgid "Files Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:78 +msgid "You can change the text color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:87 +msgid "Files Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:88 +msgid "You can change the font of the files preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:75 -msgid "Preview Background Color" +#: src/prefs/customization/fileItemStyle.ts:97 +msgid "Text Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:76 -msgid "You can change the background color of the preview" +#: src/prefs/customization/fileItemStyle.ts:98 +msgid "You can change the background color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:85 -msgid "Preview Text Color" +#: src/prefs/customization/fileItemStyle.ts:107 +msgid "Text Preview Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:86 -msgid "You can change the text color of the preview" +#: src/prefs/customization/fileItemStyle.ts:108 +msgid "You can change the text color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "Preview Font" +#: src/prefs/customization/fileItemStyle.ts:117 +msgid "Text Preview Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "You can change the font of the preview" +#: src/prefs/customization/fileItemStyle.ts:118 +msgid "You can change the font of the text preview" msgstr "" #: src/prefs/customization/imageItemStyle.ts:14 @@ -429,6 +445,14 @@ msgstr "" msgid "Text Item Style" msgstr "" +#: src/prefs/customization/textItemStyle.ts:51 +msgid "Body Text Color" +msgstr "" + +#: src/prefs/customization/textItemStyle.ts:51 +msgid "You can change the text color of the body" +msgstr "" + #: src/prefs/dangerZone/clearHistory.ts:15 msgid "Clears the clipboard database and cache" msgstr "Διαγράφει τη βάση δεδομένων και τη μνήμη cache του προχείρου" diff --git a/resources/po/en.po b/resources/po/en.po index 9f5f3b38..f2239098 100644 --- a/resources/po/en.po +++ b/resources/po/en.po @@ -31,6 +31,10 @@ msgstr "Incognito Mode" msgid "Settings" msgstr "Settings" +#: src/components/filePanoItem.ts:202 +msgid "items" +msgstr "" + #: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "" @@ -105,13 +109,11 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:50 #: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "" #: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" @@ -307,38 +309,52 @@ msgstr "" msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "Body Text Color" +#: src/prefs/customization/fileItemStyle.ts:67 +msgid "Files Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "You can change the text color of the body" +#: src/prefs/customization/fileItemStyle.ts:68 +msgid "You can change the background color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:77 +msgid "Files Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:78 +msgid "You can change the text color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:87 +msgid "Files Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:88 +msgid "You can change the font of the files preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:75 -msgid "Preview Background Color" +#: src/prefs/customization/fileItemStyle.ts:97 +msgid "Text Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:76 -msgid "You can change the background color of the preview" +#: src/prefs/customization/fileItemStyle.ts:98 +msgid "You can change the background color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:85 -msgid "Preview Text Color" +#: src/prefs/customization/fileItemStyle.ts:107 +msgid "Text Preview Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:86 -msgid "You can change the text color of the preview" +#: src/prefs/customization/fileItemStyle.ts:108 +msgid "You can change the text color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "Preview Font" +#: src/prefs/customization/fileItemStyle.ts:117 +msgid "Text Preview Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "You can change the font of the preview" +#: src/prefs/customization/fileItemStyle.ts:118 +msgid "You can change the font of the text preview" msgstr "" #: src/prefs/customization/imageItemStyle.ts:14 @@ -429,6 +445,14 @@ msgstr "" msgid "Text Item Style" msgstr "" +#: src/prefs/customization/textItemStyle.ts:51 +msgid "Body Text Color" +msgstr "" + +#: src/prefs/customization/textItemStyle.ts:51 +msgid "You can change the text color of the body" +msgstr "" + #: src/prefs/dangerZone/clearHistory.ts:15 msgid "Clears the clipboard database and cache" msgstr "Clears the clipboard database and cache" diff --git a/resources/po/es.po b/resources/po/es.po index d5cb339d..7b8ba138 100644 --- a/resources/po/es.po +++ b/resources/po/es.po @@ -31,6 +31,10 @@ msgstr "Modo incógnito" msgid "Settings" msgstr "Configuración" +#: src/components/filePanoItem.ts:202 +msgid "items" +msgstr "" + #: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "Sin descripción" @@ -105,13 +109,11 @@ msgstr "Puedes cambiar el color del cuerpo" #: src/prefs/customization/codeItemStyle.ts:50 #: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "Tipografía del cuerpo" #: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "Puedes cambiar el tipo de letra del cuerpo" @@ -307,38 +309,52 @@ msgstr "" msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "Body Text Color" -msgstr "Color del texto del cuerpo" +#: src/prefs/customization/fileItemStyle.ts:67 +msgid "Files Preview Background Color" +msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "You can change the text color of the body" -msgstr "Puedes cambiar el color del texto del cuerpo de la nota" +#: src/prefs/customization/fileItemStyle.ts:68 +msgid "You can change the background color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:77 +msgid "Files Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:78 +msgid "You can change the text color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:87 +msgid "Files Preview Font" +msgstr "" -#: src/prefs/customization/fileItemStyle.ts:75 -msgid "Preview Background Color" +#: src/prefs/customization/fileItemStyle.ts:88 +msgid "You can change the font of the files preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:76 -msgid "You can change the background color of the preview" +#: src/prefs/customization/fileItemStyle.ts:97 +msgid "Text Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:85 -msgid "Preview Text Color" +#: src/prefs/customization/fileItemStyle.ts:98 +msgid "You can change the background color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:86 -msgid "You can change the text color of the preview" +#: src/prefs/customization/fileItemStyle.ts:107 +msgid "Text Preview Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "Preview Font" +#: src/prefs/customization/fileItemStyle.ts:108 +msgid "You can change the text color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "You can change the font of the preview" +#: src/prefs/customization/fileItemStyle.ts:117 +msgid "Text Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:118 +msgid "You can change the font of the text preview" msgstr "" #: src/prefs/customization/imageItemStyle.ts:14 @@ -429,6 +445,14 @@ msgstr "Cambia el estilo de las notas de texto" msgid "Text Item Style" msgstr "Estilo de las notas de texto" +#: src/prefs/customization/textItemStyle.ts:51 +msgid "Body Text Color" +msgstr "Color del texto del cuerpo" + +#: src/prefs/customization/textItemStyle.ts:51 +msgid "You can change the text color of the body" +msgstr "Puedes cambiar el color del texto del cuerpo de la nota" + #: src/prefs/dangerZone/clearHistory.ts:15 msgid "Clears the clipboard database and cache" msgstr "Borra la base de datos y la caché del portapapeles" diff --git a/resources/po/et.po b/resources/po/et.po index 7d8772fc..6e8556b8 100644 --- a/resources/po/et.po +++ b/resources/po/et.po @@ -31,6 +31,10 @@ msgstr "Inkognito režiim" msgid "Settings" msgstr "Seaded" +#: src/components/filePanoItem.ts:202 +msgid "items" +msgstr "" + #: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "" @@ -105,13 +109,11 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:50 #: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "" #: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" @@ -307,38 +309,52 @@ msgstr "" msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "Body Text Color" +#: src/prefs/customization/fileItemStyle.ts:67 +msgid "Files Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "You can change the text color of the body" +#: src/prefs/customization/fileItemStyle.ts:68 +msgid "You can change the background color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:77 +msgid "Files Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:78 +msgid "You can change the text color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:87 +msgid "Files Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:88 +msgid "You can change the font of the files preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:75 -msgid "Preview Background Color" +#: src/prefs/customization/fileItemStyle.ts:97 +msgid "Text Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:76 -msgid "You can change the background color of the preview" +#: src/prefs/customization/fileItemStyle.ts:98 +msgid "You can change the background color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:85 -msgid "Preview Text Color" +#: src/prefs/customization/fileItemStyle.ts:107 +msgid "Text Preview Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:86 -msgid "You can change the text color of the preview" +#: src/prefs/customization/fileItemStyle.ts:108 +msgid "You can change the text color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "Preview Font" +#: src/prefs/customization/fileItemStyle.ts:117 +msgid "Text Preview Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "You can change the font of the preview" +#: src/prefs/customization/fileItemStyle.ts:118 +msgid "You can change the font of the text preview" msgstr "" #: src/prefs/customization/imageItemStyle.ts:14 @@ -429,6 +445,14 @@ msgstr "" msgid "Text Item Style" msgstr "" +#: src/prefs/customization/textItemStyle.ts:51 +msgid "Body Text Color" +msgstr "" + +#: src/prefs/customization/textItemStyle.ts:51 +msgid "You can change the text color of the body" +msgstr "" + #: src/prefs/dangerZone/clearHistory.ts:15 msgid "Clears the clipboard database and cache" msgstr "Tühjendab lõikelaua andmebaasi ja vahemälu" diff --git a/resources/po/fi.po b/resources/po/fi.po index 51cb1535..c5418bd9 100644 --- a/resources/po/fi.po +++ b/resources/po/fi.po @@ -31,6 +31,10 @@ msgstr "Incognito-tila" msgid "Settings" msgstr "Asetukset" +#: src/components/filePanoItem.ts:202 +msgid "items" +msgstr "" + #: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "" @@ -105,13 +109,11 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:50 #: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "" #: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" @@ -307,38 +309,52 @@ msgstr "" msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "Body Text Color" +#: src/prefs/customization/fileItemStyle.ts:67 +msgid "Files Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "You can change the text color of the body" +#: src/prefs/customization/fileItemStyle.ts:68 +msgid "You can change the background color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:77 +msgid "Files Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:78 +msgid "You can change the text color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:87 +msgid "Files Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:88 +msgid "You can change the font of the files preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:75 -msgid "Preview Background Color" +#: src/prefs/customization/fileItemStyle.ts:97 +msgid "Text Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:76 -msgid "You can change the background color of the preview" +#: src/prefs/customization/fileItemStyle.ts:98 +msgid "You can change the background color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:85 -msgid "Preview Text Color" +#: src/prefs/customization/fileItemStyle.ts:107 +msgid "Text Preview Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:86 -msgid "You can change the text color of the preview" +#: src/prefs/customization/fileItemStyle.ts:108 +msgid "You can change the text color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "Preview Font" +#: src/prefs/customization/fileItemStyle.ts:117 +msgid "Text Preview Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "You can change the font of the preview" +#: src/prefs/customization/fileItemStyle.ts:118 +msgid "You can change the font of the text preview" msgstr "" #: src/prefs/customization/imageItemStyle.ts:14 @@ -429,6 +445,14 @@ msgstr "" msgid "Text Item Style" msgstr "" +#: src/prefs/customization/textItemStyle.ts:51 +msgid "Body Text Color" +msgstr "" + +#: src/prefs/customization/textItemStyle.ts:51 +msgid "You can change the text color of the body" +msgstr "" + #: src/prefs/dangerZone/clearHistory.ts:15 msgid "Clears the clipboard database and cache" msgstr "Tyhjentää leikepöydän tietokannan ja välimuistin" diff --git a/resources/po/fr.po b/resources/po/fr.po index ba20ace1..ef9b392f 100644 --- a/resources/po/fr.po +++ b/resources/po/fr.po @@ -31,6 +31,10 @@ msgstr "Mode incognito" msgid "Settings" msgstr "Paramètres" +#: src/components/filePanoItem.ts:202 +msgid "items" +msgstr "" + #: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "Aucune description" @@ -105,13 +109,11 @@ msgstr "Vous pouvez modifier la couleur d’arrière-plan du contenu" #: src/prefs/customization/codeItemStyle.ts:50 #: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "Police du contenu" #: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "Vous pouvez modifier la police du contenu" @@ -307,38 +309,52 @@ msgstr "" msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "Body Text Color" -msgstr "Couleur du texte du corpus" +#: src/prefs/customization/fileItemStyle.ts:67 +msgid "Files Preview Background Color" +msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "You can change the text color of the body" -msgstr "Vous pouvez modifier la couleur du texte du corpus" +#: src/prefs/customization/fileItemStyle.ts:68 +msgid "You can change the background color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:77 +msgid "Files Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:78 +msgid "You can change the text color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:87 +msgid "Files Preview Font" +msgstr "" -#: src/prefs/customization/fileItemStyle.ts:75 -msgid "Preview Background Color" +#: src/prefs/customization/fileItemStyle.ts:88 +msgid "You can change the font of the files preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:76 -msgid "You can change the background color of the preview" +#: src/prefs/customization/fileItemStyle.ts:97 +msgid "Text Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:85 -msgid "Preview Text Color" +#: src/prefs/customization/fileItemStyle.ts:98 +msgid "You can change the background color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:86 -msgid "You can change the text color of the preview" +#: src/prefs/customization/fileItemStyle.ts:107 +msgid "Text Preview Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "Preview Font" +#: src/prefs/customization/fileItemStyle.ts:108 +msgid "You can change the text color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "You can change the font of the preview" +#: src/prefs/customization/fileItemStyle.ts:117 +msgid "Text Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:118 +msgid "You can change the font of the text preview" msgstr "" #: src/prefs/customization/imageItemStyle.ts:14 @@ -429,6 +445,14 @@ msgstr "Changer le style de l’élément de texte" msgid "Text Item Style" msgstr "Style de l’élément de texte" +#: src/prefs/customization/textItemStyle.ts:51 +msgid "Body Text Color" +msgstr "Couleur du texte du corpus" + +#: src/prefs/customization/textItemStyle.ts:51 +msgid "You can change the text color of the body" +msgstr "Vous pouvez modifier la couleur du texte du corpus" + #: src/prefs/dangerZone/clearHistory.ts:15 msgid "Clears the clipboard database and cache" msgstr "Vider la base de données du presse-papiers et le cache" diff --git a/resources/po/he.po b/resources/po/he.po index 35203feb..0b1d0f04 100644 --- a/resources/po/he.po +++ b/resources/po/he.po @@ -31,6 +31,10 @@ msgstr "מצב גלישה בסתר" msgid "Settings" msgstr "הגדרות" +#: src/components/filePanoItem.ts:202 +msgid "items" +msgstr "" + #: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "" @@ -105,13 +109,11 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:50 #: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "" #: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" @@ -307,38 +309,52 @@ msgstr "" msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "Body Text Color" +#: src/prefs/customization/fileItemStyle.ts:67 +msgid "Files Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "You can change the text color of the body" +#: src/prefs/customization/fileItemStyle.ts:68 +msgid "You can change the background color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:77 +msgid "Files Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:78 +msgid "You can change the text color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:87 +msgid "Files Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:88 +msgid "You can change the font of the files preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:75 -msgid "Preview Background Color" +#: src/prefs/customization/fileItemStyle.ts:97 +msgid "Text Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:76 -msgid "You can change the background color of the preview" +#: src/prefs/customization/fileItemStyle.ts:98 +msgid "You can change the background color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:85 -msgid "Preview Text Color" +#: src/prefs/customization/fileItemStyle.ts:107 +msgid "Text Preview Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:86 -msgid "You can change the text color of the preview" +#: src/prefs/customization/fileItemStyle.ts:108 +msgid "You can change the text color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "Preview Font" +#: src/prefs/customization/fileItemStyle.ts:117 +msgid "Text Preview Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "You can change the font of the preview" +#: src/prefs/customization/fileItemStyle.ts:118 +msgid "You can change the font of the text preview" msgstr "" #: src/prefs/customization/imageItemStyle.ts:14 @@ -429,6 +445,14 @@ msgstr "" msgid "Text Item Style" msgstr "" +#: src/prefs/customization/textItemStyle.ts:51 +msgid "Body Text Color" +msgstr "" + +#: src/prefs/customization/textItemStyle.ts:51 +msgid "You can change the text color of the body" +msgstr "" + #: src/prefs/dangerZone/clearHistory.ts:15 msgid "Clears the clipboard database and cache" msgstr "מנקה את מסד הנתונים והמטמון של הלוח" diff --git a/resources/po/hr.po b/resources/po/hr.po index 32ed6861..ff348cce 100644 --- a/resources/po/hr.po +++ b/resources/po/hr.po @@ -31,6 +31,10 @@ msgstr "" msgid "Settings" msgstr "" +#: src/components/filePanoItem.ts:202 +msgid "items" +msgstr "" + #: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "" @@ -105,13 +109,11 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:50 #: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "" #: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" @@ -307,38 +309,52 @@ msgstr "" msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "Body Text Color" +#: src/prefs/customization/fileItemStyle.ts:67 +msgid "Files Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "You can change the text color of the body" +#: src/prefs/customization/fileItemStyle.ts:68 +msgid "You can change the background color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:77 +msgid "Files Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:78 +msgid "You can change the text color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:87 +msgid "Files Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:88 +msgid "You can change the font of the files preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:75 -msgid "Preview Background Color" +#: src/prefs/customization/fileItemStyle.ts:97 +msgid "Text Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:76 -msgid "You can change the background color of the preview" +#: src/prefs/customization/fileItemStyle.ts:98 +msgid "You can change the background color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:85 -msgid "Preview Text Color" +#: src/prefs/customization/fileItemStyle.ts:107 +msgid "Text Preview Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:86 -msgid "You can change the text color of the preview" +#: src/prefs/customization/fileItemStyle.ts:108 +msgid "You can change the text color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "Preview Font" +#: src/prefs/customization/fileItemStyle.ts:117 +msgid "Text Preview Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "You can change the font of the preview" +#: src/prefs/customization/fileItemStyle.ts:118 +msgid "You can change the font of the text preview" msgstr "" #: src/prefs/customization/imageItemStyle.ts:14 @@ -429,6 +445,14 @@ msgstr "" msgid "Text Item Style" msgstr "" +#: src/prefs/customization/textItemStyle.ts:51 +msgid "Body Text Color" +msgstr "" + +#: src/prefs/customization/textItemStyle.ts:51 +msgid "You can change the text color of the body" +msgstr "" + #: src/prefs/dangerZone/clearHistory.ts:15 msgid "Clears the clipboard database and cache" msgstr "Briše bazu podataka međuspremnika i predmemoriju" diff --git a/resources/po/hu.po b/resources/po/hu.po index 52e9e643..5d0ff664 100644 --- a/resources/po/hu.po +++ b/resources/po/hu.po @@ -31,6 +31,10 @@ msgstr "Inkognitómód" msgid "Settings" msgstr "Beállítások" +#: src/components/filePanoItem.ts:202 +msgid "items" +msgstr "" + #: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "" @@ -105,13 +109,11 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:50 #: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "" #: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" @@ -307,38 +309,52 @@ msgstr "" msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "Body Text Color" +#: src/prefs/customization/fileItemStyle.ts:67 +msgid "Files Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "You can change the text color of the body" +#: src/prefs/customization/fileItemStyle.ts:68 +msgid "You can change the background color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:77 +msgid "Files Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:78 +msgid "You can change the text color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:87 +msgid "Files Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:88 +msgid "You can change the font of the files preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:75 -msgid "Preview Background Color" +#: src/prefs/customization/fileItemStyle.ts:97 +msgid "Text Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:76 -msgid "You can change the background color of the preview" +#: src/prefs/customization/fileItemStyle.ts:98 +msgid "You can change the background color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:85 -msgid "Preview Text Color" +#: src/prefs/customization/fileItemStyle.ts:107 +msgid "Text Preview Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:86 -msgid "You can change the text color of the preview" +#: src/prefs/customization/fileItemStyle.ts:108 +msgid "You can change the text color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "Preview Font" +#: src/prefs/customization/fileItemStyle.ts:117 +msgid "Text Preview Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "You can change the font of the preview" +#: src/prefs/customization/fileItemStyle.ts:118 +msgid "You can change the font of the text preview" msgstr "" #: src/prefs/customization/imageItemStyle.ts:14 @@ -429,6 +445,14 @@ msgstr "" msgid "Text Item Style" msgstr "" +#: src/prefs/customization/textItemStyle.ts:51 +msgid "Body Text Color" +msgstr "" + +#: src/prefs/customization/textItemStyle.ts:51 +msgid "You can change the text color of the body" +msgstr "" + #: src/prefs/dangerZone/clearHistory.ts:15 msgid "Clears the clipboard database and cache" msgstr "Törli a vágólap adatbázisát és gyorsítótárát" diff --git a/resources/po/is.po b/resources/po/is.po index 5e8f8b5d..760c006b 100644 --- a/resources/po/is.po +++ b/resources/po/is.po @@ -31,6 +31,10 @@ msgstr "Huliðsstilling" msgid "Settings" msgstr "Stillingar" +#: src/components/filePanoItem.ts:202 +msgid "items" +msgstr "" + #: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "" @@ -105,13 +109,11 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:50 #: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "" #: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" @@ -307,38 +309,52 @@ msgstr "" msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "Body Text Color" +#: src/prefs/customization/fileItemStyle.ts:67 +msgid "Files Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "You can change the text color of the body" +#: src/prefs/customization/fileItemStyle.ts:68 +msgid "You can change the background color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:77 +msgid "Files Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:78 +msgid "You can change the text color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:87 +msgid "Files Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:88 +msgid "You can change the font of the files preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:75 -msgid "Preview Background Color" +#: src/prefs/customization/fileItemStyle.ts:97 +msgid "Text Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:76 -msgid "You can change the background color of the preview" +#: src/prefs/customization/fileItemStyle.ts:98 +msgid "You can change the background color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:85 -msgid "Preview Text Color" +#: src/prefs/customization/fileItemStyle.ts:107 +msgid "Text Preview Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:86 -msgid "You can change the text color of the preview" +#: src/prefs/customization/fileItemStyle.ts:108 +msgid "You can change the text color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "Preview Font" +#: src/prefs/customization/fileItemStyle.ts:117 +msgid "Text Preview Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "You can change the font of the preview" +#: src/prefs/customization/fileItemStyle.ts:118 +msgid "You can change the font of the text preview" msgstr "" #: src/prefs/customization/imageItemStyle.ts:14 @@ -429,6 +445,14 @@ msgstr "" msgid "Text Item Style" msgstr "" +#: src/prefs/customization/textItemStyle.ts:51 +msgid "Body Text Color" +msgstr "" + +#: src/prefs/customization/textItemStyle.ts:51 +msgid "You can change the text color of the body" +msgstr "" + #: src/prefs/dangerZone/clearHistory.ts:15 msgid "Clears the clipboard database and cache" msgstr "Hreinsar klippispjaldsgagnagrunninn og skyndiminnið" diff --git a/resources/po/it.po b/resources/po/it.po index 84551f43..5f73d563 100644 --- a/resources/po/it.po +++ b/resources/po/it.po @@ -31,6 +31,10 @@ msgstr "Modalità di navigazione in incognito" msgid "Settings" msgstr "Impostazioni" +#: src/components/filePanoItem.ts:202 +msgid "items" +msgstr "" + #: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "Nessuna descrizione" @@ -105,13 +109,11 @@ msgstr "Puoi cambiare il colore di sfondo del corpo" #: src/prefs/customization/codeItemStyle.ts:50 #: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "Carattere del corpo" #: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "Puoi cambiare il carattere del corpo" @@ -307,38 +309,52 @@ msgstr "" msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "Body Text Color" -msgstr "Colore del corpo del testo" +#: src/prefs/customization/fileItemStyle.ts:67 +msgid "Files Preview Background Color" +msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "You can change the text color of the body" -msgstr "Puoi cambiare il colore del testo del corpo" +#: src/prefs/customization/fileItemStyle.ts:68 +msgid "You can change the background color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:77 +msgid "Files Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:78 +msgid "You can change the text color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:87 +msgid "Files Preview Font" +msgstr "" -#: src/prefs/customization/fileItemStyle.ts:75 -msgid "Preview Background Color" +#: src/prefs/customization/fileItemStyle.ts:88 +msgid "You can change the font of the files preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:76 -msgid "You can change the background color of the preview" +#: src/prefs/customization/fileItemStyle.ts:97 +msgid "Text Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:85 -msgid "Preview Text Color" +#: src/prefs/customization/fileItemStyle.ts:98 +msgid "You can change the background color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:86 -msgid "You can change the text color of the preview" +#: src/prefs/customization/fileItemStyle.ts:107 +msgid "Text Preview Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "Preview Font" +#: src/prefs/customization/fileItemStyle.ts:108 +msgid "You can change the text color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "You can change the font of the preview" +#: src/prefs/customization/fileItemStyle.ts:117 +msgid "Text Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:118 +msgid "You can change the font of the text preview" msgstr "" #: src/prefs/customization/imageItemStyle.ts:14 @@ -429,6 +445,14 @@ msgstr "Cambia lo stile dell'elemento di testo" msgid "Text Item Style" msgstr "Stile elemento di testo" +#: src/prefs/customization/textItemStyle.ts:51 +msgid "Body Text Color" +msgstr "Colore del corpo del testo" + +#: src/prefs/customization/textItemStyle.ts:51 +msgid "You can change the text color of the body" +msgstr "Puoi cambiare il colore del testo del corpo" + #: src/prefs/dangerZone/clearHistory.ts:15 msgid "Clears the clipboard database and cache" msgstr "Cancella il database degli Appunti e la cache" diff --git a/resources/po/ja.po b/resources/po/ja.po index 946f1f62..39d3b975 100644 --- a/resources/po/ja.po +++ b/resources/po/ja.po @@ -31,6 +31,10 @@ msgstr "シークレットモード" msgid "Settings" msgstr "設定" +#: src/components/filePanoItem.ts:202 +msgid "items" +msgstr "" + #: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "" @@ -105,13 +109,11 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:50 #: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "" #: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" @@ -307,38 +309,52 @@ msgstr "" msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "Body Text Color" +#: src/prefs/customization/fileItemStyle.ts:67 +msgid "Files Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "You can change the text color of the body" +#: src/prefs/customization/fileItemStyle.ts:68 +msgid "You can change the background color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:77 +msgid "Files Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:78 +msgid "You can change the text color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:87 +msgid "Files Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:88 +msgid "You can change the font of the files preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:75 -msgid "Preview Background Color" +#: src/prefs/customization/fileItemStyle.ts:97 +msgid "Text Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:76 -msgid "You can change the background color of the preview" +#: src/prefs/customization/fileItemStyle.ts:98 +msgid "You can change the background color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:85 -msgid "Preview Text Color" +#: src/prefs/customization/fileItemStyle.ts:107 +msgid "Text Preview Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:86 -msgid "You can change the text color of the preview" +#: src/prefs/customization/fileItemStyle.ts:108 +msgid "You can change the text color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "Preview Font" +#: src/prefs/customization/fileItemStyle.ts:117 +msgid "Text Preview Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "You can change the font of the preview" +#: src/prefs/customization/fileItemStyle.ts:118 +msgid "You can change the font of the text preview" msgstr "" #: src/prefs/customization/imageItemStyle.ts:14 @@ -429,6 +445,14 @@ msgstr "" msgid "Text Item Style" msgstr "" +#: src/prefs/customization/textItemStyle.ts:51 +msgid "Body Text Color" +msgstr "" + +#: src/prefs/customization/textItemStyle.ts:51 +msgid "You can change the text color of the body" +msgstr "" + #: src/prefs/dangerZone/clearHistory.ts:15 msgid "Clears the clipboard database and cache" msgstr "クリップボードのデータベースとキャッシュをクリアします。" diff --git a/resources/po/ko.po b/resources/po/ko.po index 12673ce3..469dc42c 100644 --- a/resources/po/ko.po +++ b/resources/po/ko.po @@ -31,6 +31,10 @@ msgstr "시크릿 모드" msgid "Settings" msgstr "설정" +#: src/components/filePanoItem.ts:202 +msgid "items" +msgstr "" + #: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "설명 없음" @@ -105,13 +109,11 @@ msgstr "내용 배경의 색상을 바꾸기" #: src/prefs/customization/codeItemStyle.ts:50 #: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "내용 글꼴" #: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" @@ -307,38 +309,52 @@ msgstr "" msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "Body Text Color" -msgstr "내용 텍스트 색상" +#: src/prefs/customization/fileItemStyle.ts:67 +msgid "Files Preview Background Color" +msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "You can change the text color of the body" -msgstr "내용 텍스트 색상을 바꾸기" +#: src/prefs/customization/fileItemStyle.ts:68 +msgid "You can change the background color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:77 +msgid "Files Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:78 +msgid "You can change the text color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:87 +msgid "Files Preview Font" +msgstr "" -#: src/prefs/customization/fileItemStyle.ts:75 -msgid "Preview Background Color" +#: src/prefs/customization/fileItemStyle.ts:88 +msgid "You can change the font of the files preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:76 -msgid "You can change the background color of the preview" +#: src/prefs/customization/fileItemStyle.ts:97 +msgid "Text Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:85 -msgid "Preview Text Color" +#: src/prefs/customization/fileItemStyle.ts:98 +msgid "You can change the background color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:86 -msgid "You can change the text color of the preview" +#: src/prefs/customization/fileItemStyle.ts:107 +msgid "Text Preview Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "Preview Font" +#: src/prefs/customization/fileItemStyle.ts:108 +msgid "You can change the text color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "You can change the font of the preview" +#: src/prefs/customization/fileItemStyle.ts:117 +msgid "Text Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:118 +msgid "You can change the font of the text preview" msgstr "" #: src/prefs/customization/imageItemStyle.ts:14 @@ -429,6 +445,14 @@ msgstr "텍스트 항목의 스타일을 바꾸기" msgid "Text Item Style" msgstr "텍스트 항목 스타일" +#: src/prefs/customization/textItemStyle.ts:51 +msgid "Body Text Color" +msgstr "내용 텍스트 색상" + +#: src/prefs/customization/textItemStyle.ts:51 +msgid "You can change the text color of the body" +msgstr "내용 텍스트 색상을 바꾸기" + #: src/prefs/dangerZone/clearHistory.ts:15 msgid "Clears the clipboard database and cache" msgstr "클립보드 데이터베이스 및 캐시를 삭제" diff --git a/resources/po/nl.po b/resources/po/nl.po index 2258b81d..b37a2768 100644 --- a/resources/po/nl.po +++ b/resources/po/nl.po @@ -31,6 +31,10 @@ msgstr "Incognitomodus" msgid "Settings" msgstr "Voorkeuren" +#: src/components/filePanoItem.ts:202 +msgid "items" +msgstr "" + #: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "" @@ -105,13 +109,11 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:50 #: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "" #: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" @@ -307,38 +309,52 @@ msgstr "" msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "Body Text Color" +#: src/prefs/customization/fileItemStyle.ts:67 +msgid "Files Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "You can change the text color of the body" +#: src/prefs/customization/fileItemStyle.ts:68 +msgid "You can change the background color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:77 +msgid "Files Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:78 +msgid "You can change the text color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:87 +msgid "Files Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:88 +msgid "You can change the font of the files preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:75 -msgid "Preview Background Color" +#: src/prefs/customization/fileItemStyle.ts:97 +msgid "Text Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:76 -msgid "You can change the background color of the preview" +#: src/prefs/customization/fileItemStyle.ts:98 +msgid "You can change the background color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:85 -msgid "Preview Text Color" +#: src/prefs/customization/fileItemStyle.ts:107 +msgid "Text Preview Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:86 -msgid "You can change the text color of the preview" +#: src/prefs/customization/fileItemStyle.ts:108 +msgid "You can change the text color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "Preview Font" +#: src/prefs/customization/fileItemStyle.ts:117 +msgid "Text Preview Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "You can change the font of the preview" +#: src/prefs/customization/fileItemStyle.ts:118 +msgid "You can change the font of the text preview" msgstr "" #: src/prefs/customization/imageItemStyle.ts:14 @@ -429,6 +445,14 @@ msgstr "" msgid "Text Item Style" msgstr "" +#: src/prefs/customization/textItemStyle.ts:51 +msgid "Body Text Color" +msgstr "" + +#: src/prefs/customization/textItemStyle.ts:51 +msgid "You can change the text color of the body" +msgstr "" + #: src/prefs/dangerZone/clearHistory.ts:15 msgid "Clears the clipboard database and cache" msgstr "Wis het klembord en de cache" diff --git a/resources/po/no.po b/resources/po/no.po index 5bfdd8fd..bc43a58e 100644 --- a/resources/po/no.po +++ b/resources/po/no.po @@ -31,6 +31,10 @@ msgstr "Inkognitomodus" msgid "Settings" msgstr "Innstillinger" +#: src/components/filePanoItem.ts:202 +msgid "items" +msgstr "" + #: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "" @@ -105,13 +109,11 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:50 #: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "" #: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" @@ -307,38 +309,52 @@ msgstr "" msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "Body Text Color" +#: src/prefs/customization/fileItemStyle.ts:67 +msgid "Files Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "You can change the text color of the body" +#: src/prefs/customization/fileItemStyle.ts:68 +msgid "You can change the background color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:77 +msgid "Files Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:78 +msgid "You can change the text color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:87 +msgid "Files Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:88 +msgid "You can change the font of the files preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:75 -msgid "Preview Background Color" +#: src/prefs/customization/fileItemStyle.ts:97 +msgid "Text Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:76 -msgid "You can change the background color of the preview" +#: src/prefs/customization/fileItemStyle.ts:98 +msgid "You can change the background color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:85 -msgid "Preview Text Color" +#: src/prefs/customization/fileItemStyle.ts:107 +msgid "Text Preview Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:86 -msgid "You can change the text color of the preview" +#: src/prefs/customization/fileItemStyle.ts:108 +msgid "You can change the text color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "Preview Font" +#: src/prefs/customization/fileItemStyle.ts:117 +msgid "Text Preview Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "You can change the font of the preview" +#: src/prefs/customization/fileItemStyle.ts:118 +msgid "You can change the font of the text preview" msgstr "" #: src/prefs/customization/imageItemStyle.ts:14 @@ -429,6 +445,14 @@ msgstr "" msgid "Text Item Style" msgstr "" +#: src/prefs/customization/textItemStyle.ts:51 +msgid "Body Text Color" +msgstr "" + +#: src/prefs/customization/textItemStyle.ts:51 +msgid "You can change the text color of the body" +msgstr "" + #: src/prefs/dangerZone/clearHistory.ts:15 msgid "Clears the clipboard database and cache" msgstr "Tømmer utklippstavledatabasen og hurtigbufferen" diff --git a/resources/po/oc.po b/resources/po/oc.po index bd4e8eb3..25497a87 100644 --- a/resources/po/oc.po +++ b/resources/po/oc.po @@ -31,6 +31,10 @@ msgstr "Mòde incognito" msgid "Settings" msgstr "Paramètres" +#: src/components/filePanoItem.ts:202 +msgid "items" +msgstr "" + #: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "" @@ -105,13 +109,11 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:50 #: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "" #: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" @@ -307,38 +309,52 @@ msgstr "" msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "Body Text Color" +#: src/prefs/customization/fileItemStyle.ts:67 +msgid "Files Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "You can change the text color of the body" +#: src/prefs/customization/fileItemStyle.ts:68 +msgid "You can change the background color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:77 +msgid "Files Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:78 +msgid "You can change the text color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:87 +msgid "Files Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:88 +msgid "You can change the font of the files preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:75 -msgid "Preview Background Color" +#: src/prefs/customization/fileItemStyle.ts:97 +msgid "Text Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:76 -msgid "You can change the background color of the preview" +#: src/prefs/customization/fileItemStyle.ts:98 +msgid "You can change the background color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:85 -msgid "Preview Text Color" +#: src/prefs/customization/fileItemStyle.ts:107 +msgid "Text Preview Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:86 -msgid "You can change the text color of the preview" +#: src/prefs/customization/fileItemStyle.ts:108 +msgid "You can change the text color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "Preview Font" +#: src/prefs/customization/fileItemStyle.ts:117 +msgid "Text Preview Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "You can change the font of the preview" +#: src/prefs/customization/fileItemStyle.ts:118 +msgid "You can change the font of the text preview" msgstr "" #: src/prefs/customization/imageItemStyle.ts:14 @@ -429,6 +445,14 @@ msgstr "" msgid "Text Item Style" msgstr "" +#: src/prefs/customization/textItemStyle.ts:51 +msgid "Body Text Color" +msgstr "" + +#: src/prefs/customization/textItemStyle.ts:51 +msgid "You can change the text color of the body" +msgstr "" + #: src/prefs/dangerZone/clearHistory.ts:15 msgid "Clears the clipboard database and cache" msgstr "Escafa la basa de donadas del quichapapièrs e lo cache" diff --git a/resources/po/pano@elhan.io.pot b/resources/po/pano@elhan.io.pot index 31e739c0..30c0091d 100644 --- a/resources/po/pano@elhan.io.pot +++ b/resources/po/pano@elhan.io.pot @@ -53,12 +53,10 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:50 #: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 #: src/prefs/customization/textItemStyle.ts:51 msgid "Body Text Color" msgstr "" @@ -219,6 +217,18 @@ msgstr "" msgid "File Item Style" msgstr "" +#: src/prefs/customization/fileItemStyle.ts:67 +msgid "Files Preview Background Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:87 +msgid "Files Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:77 +msgid "Files Preview Text Color" +msgstr "" + #: src/prefs/general/index.ts:13 msgid "General" msgstr "" @@ -303,6 +313,10 @@ msgstr "" msgid "Item Title Font" msgstr "" +#: src/components/filePanoItem.ts:202 +msgid "items" +msgstr "" + #: src/prefs/general/keepSearchEntryOnHide.ts:15 msgid "Keep Search Entry" msgstr "" @@ -396,18 +410,6 @@ msgstr "" msgid "Play an Audio on Copy" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:75 -msgid "Preview Background Color" -msgstr "" - -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "Preview Font" -msgstr "" - -#: src/prefs/customization/fileItemStyle.ts:85 -msgid "Preview Text Color" -msgstr "" - #: src/prefs/general/removeOnMiddleClick.ts:15 msgid "Remove on Middle Click" msgstr "" @@ -469,6 +471,18 @@ msgstr "" msgid "Text Item Style" msgstr "" +#: src/prefs/customization/fileItemStyle.ts:97 +msgid "Text Preview Background Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:117 +msgid "Text Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:107 +msgid "Text Preview Text Color" +msgstr "" + #: src/utils/panoItemFactory.ts:436 msgid "There are %s file(s)" msgstr "" @@ -545,6 +559,10 @@ msgstr "" msgid "You can change the background color of the body" msgstr "" +#: src/prefs/customization/fileItemStyle.ts:68 +msgid "You can change the background color of the files preview" +msgstr "" + #: src/prefs/customization/codeItemStyle.ts:23 #: src/prefs/customization/colorItemStyle.ts:23 #: src/prefs/customization/emojiItemStyle.ts:23 @@ -559,8 +577,8 @@ msgstr "" msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:76 -msgid "You can change the background color of the preview" +#: src/prefs/customization/fileItemStyle.ts:98 +msgid "You can change the background color of the text preview" msgstr "" #: src/prefs/customization/codeItemStyle.ts:56 @@ -577,7 +595,6 @@ msgid "You can change the emoji size" msgstr "" #: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" @@ -586,6 +603,10 @@ msgstr "" msgid "You can change the font of the date" msgstr "" +#: src/prefs/customization/fileItemStyle.ts:88 +msgid "You can change the font of the files preview" +msgstr "" + #: src/prefs/customization/colorItemStyle.ts:41 msgid "You can change the font of the metadata" msgstr "" @@ -602,14 +623,14 @@ msgstr "" msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "You can change the font of the preview" -msgstr "" - #: src/prefs/customization/commonStyleGroup.ts:83 msgid "You can change the font of the search bar" msgstr "" +#: src/prefs/customization/fileItemStyle.ts:118 +msgid "You can change the font of the text preview" +msgstr "" + #: src/prefs/customization/commonStyleGroup.ts:89 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" @@ -635,11 +656,14 @@ msgstr "" msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 #: src/prefs/customization/textItemStyle.ts:51 msgid "You can change the text color of the body" msgstr "" +#: src/prefs/customization/fileItemStyle.ts:78 +msgid "You can change the text color of the files preview" +msgstr "" + #: src/prefs/customization/codeItemStyle.ts:33 #: src/prefs/customization/colorItemStyle.ts:33 #: src/prefs/customization/emojiItemStyle.ts:33 @@ -650,8 +674,8 @@ msgstr "" msgid "You can change the text color of the header" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:86 -msgid "You can change the text color of the preview" +#: src/prefs/customization/fileItemStyle.ts:108 +msgid "You can change the text color of the text preview" msgstr "" #: src/prefs/customization/fileItemStyle.ts:53 diff --git a/resources/po/pl.po b/resources/po/pl.po index 0aeecf23..3771a58e 100644 --- a/resources/po/pl.po +++ b/resources/po/pl.po @@ -31,6 +31,10 @@ msgstr "Tryb Incognito" msgid "Settings" msgstr "Ustawienia" +#: src/components/filePanoItem.ts:202 +msgid "items" +msgstr "" + #: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "" @@ -105,13 +109,11 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:50 #: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "" #: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" @@ -307,38 +309,52 @@ msgstr "" msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "Body Text Color" +#: src/prefs/customization/fileItemStyle.ts:67 +msgid "Files Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "You can change the text color of the body" +#: src/prefs/customization/fileItemStyle.ts:68 +msgid "You can change the background color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:77 +msgid "Files Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:78 +msgid "You can change the text color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:87 +msgid "Files Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:88 +msgid "You can change the font of the files preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:75 -msgid "Preview Background Color" +#: src/prefs/customization/fileItemStyle.ts:97 +msgid "Text Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:76 -msgid "You can change the background color of the preview" +#: src/prefs/customization/fileItemStyle.ts:98 +msgid "You can change the background color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:85 -msgid "Preview Text Color" +#: src/prefs/customization/fileItemStyle.ts:107 +msgid "Text Preview Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:86 -msgid "You can change the text color of the preview" +#: src/prefs/customization/fileItemStyle.ts:108 +msgid "You can change the text color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "Preview Font" +#: src/prefs/customization/fileItemStyle.ts:117 +msgid "Text Preview Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "You can change the font of the preview" +#: src/prefs/customization/fileItemStyle.ts:118 +msgid "You can change the font of the text preview" msgstr "" #: src/prefs/customization/imageItemStyle.ts:14 @@ -429,6 +445,14 @@ msgstr "" msgid "Text Item Style" msgstr "" +#: src/prefs/customization/textItemStyle.ts:51 +msgid "Body Text Color" +msgstr "" + +#: src/prefs/customization/textItemStyle.ts:51 +msgid "You can change the text color of the body" +msgstr "" + #: src/prefs/dangerZone/clearHistory.ts:15 msgid "Clears the clipboard database and cache" msgstr "Czyści schowek i pamięć podręczną" diff --git a/resources/po/pt.po b/resources/po/pt.po index 6f554cd7..3fcca939 100644 --- a/resources/po/pt.po +++ b/resources/po/pt.po @@ -31,6 +31,10 @@ msgstr "Modo de navegação anónima" msgid "Settings" msgstr "Configurações" +#: src/components/filePanoItem.ts:202 +msgid "items" +msgstr "" + #: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "" @@ -105,13 +109,11 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:50 #: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "" #: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" @@ -307,38 +309,52 @@ msgstr "" msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "Body Text Color" +#: src/prefs/customization/fileItemStyle.ts:67 +msgid "Files Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "You can change the text color of the body" +#: src/prefs/customization/fileItemStyle.ts:68 +msgid "You can change the background color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:77 +msgid "Files Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:78 +msgid "You can change the text color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:87 +msgid "Files Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:88 +msgid "You can change the font of the files preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:75 -msgid "Preview Background Color" +#: src/prefs/customization/fileItemStyle.ts:97 +msgid "Text Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:76 -msgid "You can change the background color of the preview" +#: src/prefs/customization/fileItemStyle.ts:98 +msgid "You can change the background color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:85 -msgid "Preview Text Color" +#: src/prefs/customization/fileItemStyle.ts:107 +msgid "Text Preview Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:86 -msgid "You can change the text color of the preview" +#: src/prefs/customization/fileItemStyle.ts:108 +msgid "You can change the text color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "Preview Font" +#: src/prefs/customization/fileItemStyle.ts:117 +msgid "Text Preview Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "You can change the font of the preview" +#: src/prefs/customization/fileItemStyle.ts:118 +msgid "You can change the font of the text preview" msgstr "" #: src/prefs/customization/imageItemStyle.ts:14 @@ -429,6 +445,14 @@ msgstr "" msgid "Text Item Style" msgstr "" +#: src/prefs/customization/textItemStyle.ts:51 +msgid "Body Text Color" +msgstr "" + +#: src/prefs/customization/textItemStyle.ts:51 +msgid "You can change the text color of the body" +msgstr "" + #: src/prefs/dangerZone/clearHistory.ts:15 msgid "Clears the clipboard database and cache" msgstr "Limpa o banco de dados e o cache da área de transferência" diff --git a/resources/po/pt_BR.po b/resources/po/pt_BR.po index e5cf10d9..2af0b08a 100644 --- a/resources/po/pt_BR.po +++ b/resources/po/pt_BR.po @@ -31,6 +31,10 @@ msgstr "Modo anônimo" msgid "Settings" msgstr "Configurações" +#: src/components/filePanoItem.ts:202 +msgid "items" +msgstr "" + #: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "Sem descrição" @@ -105,13 +109,11 @@ msgstr "Você pode mudar a cor de fundo do corpo" #: src/prefs/customization/codeItemStyle.ts:50 #: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "Fonte do corpo" #: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "Você pode mudar a fonte do corpo" @@ -307,38 +309,52 @@ msgstr "" msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "Body Text Color" -msgstr "Cor do texto do corpo" +#: src/prefs/customization/fileItemStyle.ts:67 +msgid "Files Preview Background Color" +msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "You can change the text color of the body" -msgstr "Você pode mudar a cor do texto do corpo" +#: src/prefs/customization/fileItemStyle.ts:68 +msgid "You can change the background color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:77 +msgid "Files Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:78 +msgid "You can change the text color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:87 +msgid "Files Preview Font" +msgstr "" -#: src/prefs/customization/fileItemStyle.ts:75 -msgid "Preview Background Color" +#: src/prefs/customization/fileItemStyle.ts:88 +msgid "You can change the font of the files preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:76 -msgid "You can change the background color of the preview" +#: src/prefs/customization/fileItemStyle.ts:97 +msgid "Text Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:85 -msgid "Preview Text Color" +#: src/prefs/customization/fileItemStyle.ts:98 +msgid "You can change the background color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:86 -msgid "You can change the text color of the preview" +#: src/prefs/customization/fileItemStyle.ts:107 +msgid "Text Preview Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "Preview Font" +#: src/prefs/customization/fileItemStyle.ts:108 +msgid "You can change the text color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "You can change the font of the preview" +#: src/prefs/customization/fileItemStyle.ts:117 +msgid "Text Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:118 +msgid "You can change the font of the text preview" msgstr "" #: src/prefs/customization/imageItemStyle.ts:14 @@ -429,6 +445,14 @@ msgstr "Mude o estilo do item de texto" msgid "Text Item Style" msgstr "Estilo de item de texto" +#: src/prefs/customization/textItemStyle.ts:51 +msgid "Body Text Color" +msgstr "Cor do texto do corpo" + +#: src/prefs/customization/textItemStyle.ts:51 +msgid "You can change the text color of the body" +msgstr "Você pode mudar a cor do texto do corpo" + #: src/prefs/dangerZone/clearHistory.ts:15 msgid "Clears the clipboard database and cache" msgstr "Limpa o banco de dados da área de transferência e o cache" diff --git a/resources/po/ro.po b/resources/po/ro.po index a32ee7da..9a082591 100644 --- a/resources/po/ro.po +++ b/resources/po/ro.po @@ -31,6 +31,10 @@ msgstr "Modul incognito" msgid "Settings" msgstr "Setări" +#: src/components/filePanoItem.ts:202 +msgid "items" +msgstr "" + #: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "" @@ -105,13 +109,11 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:50 #: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "" #: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" @@ -307,38 +309,52 @@ msgstr "" msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "Body Text Color" +#: src/prefs/customization/fileItemStyle.ts:67 +msgid "Files Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "You can change the text color of the body" +#: src/prefs/customization/fileItemStyle.ts:68 +msgid "You can change the background color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:77 +msgid "Files Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:78 +msgid "You can change the text color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:87 +msgid "Files Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:88 +msgid "You can change the font of the files preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:75 -msgid "Preview Background Color" +#: src/prefs/customization/fileItemStyle.ts:97 +msgid "Text Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:76 -msgid "You can change the background color of the preview" +#: src/prefs/customization/fileItemStyle.ts:98 +msgid "You can change the background color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:85 -msgid "Preview Text Color" +#: src/prefs/customization/fileItemStyle.ts:107 +msgid "Text Preview Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:86 -msgid "You can change the text color of the preview" +#: src/prefs/customization/fileItemStyle.ts:108 +msgid "You can change the text color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "Preview Font" +#: src/prefs/customization/fileItemStyle.ts:117 +msgid "Text Preview Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "You can change the font of the preview" +#: src/prefs/customization/fileItemStyle.ts:118 +msgid "You can change the font of the text preview" msgstr "" #: src/prefs/customization/imageItemStyle.ts:14 @@ -429,6 +445,14 @@ msgstr "" msgid "Text Item Style" msgstr "" +#: src/prefs/customization/textItemStyle.ts:51 +msgid "Body Text Color" +msgstr "" + +#: src/prefs/customization/textItemStyle.ts:51 +msgid "You can change the text color of the body" +msgstr "" + #: src/prefs/dangerZone/clearHistory.ts:15 msgid "Clears the clipboard database and cache" msgstr "Golește baza de date clipboard și memoria cache" diff --git a/resources/po/ru.po b/resources/po/ru.po index cc282c16..e255c3cb 100644 --- a/resources/po/ru.po +++ b/resources/po/ru.po @@ -31,6 +31,10 @@ msgstr "Режим инкогнито" msgid "Settings" msgstr "Настройки" +#: src/components/filePanoItem.ts:202 +msgid "items" +msgstr "" + #: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "Без описания" @@ -105,13 +109,11 @@ msgstr "Вы можете изменить цвет фона содержимо #: src/prefs/customization/codeItemStyle.ts:50 #: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "Шрифт содержимого" #: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "Вы можете изменить шрифт содержимого" @@ -307,38 +309,52 @@ msgstr "" msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "Body Text Color" -msgstr "Цвет основного текста" +#: src/prefs/customization/fileItemStyle.ts:67 +msgid "Files Preview Background Color" +msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "You can change the text color of the body" -msgstr "Вы можете изменить цвет основного текста" +#: src/prefs/customization/fileItemStyle.ts:68 +msgid "You can change the background color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:77 +msgid "Files Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:78 +msgid "You can change the text color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:87 +msgid "Files Preview Font" +msgstr "" -#: src/prefs/customization/fileItemStyle.ts:75 -msgid "Preview Background Color" +#: src/prefs/customization/fileItemStyle.ts:88 +msgid "You can change the font of the files preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:76 -msgid "You can change the background color of the preview" +#: src/prefs/customization/fileItemStyle.ts:97 +msgid "Text Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:85 -msgid "Preview Text Color" +#: src/prefs/customization/fileItemStyle.ts:98 +msgid "You can change the background color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:86 -msgid "You can change the text color of the preview" +#: src/prefs/customization/fileItemStyle.ts:107 +msgid "Text Preview Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "Preview Font" +#: src/prefs/customization/fileItemStyle.ts:108 +msgid "You can change the text color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "You can change the font of the preview" +#: src/prefs/customization/fileItemStyle.ts:117 +msgid "Text Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:118 +msgid "You can change the font of the text preview" msgstr "" #: src/prefs/customization/imageItemStyle.ts:14 @@ -429,6 +445,14 @@ msgstr "Изменить стиль элемента с текстом" msgid "Text Item Style" msgstr "Стиль элемента с текстом" +#: src/prefs/customization/textItemStyle.ts:51 +msgid "Body Text Color" +msgstr "Цвет основного текста" + +#: src/prefs/customization/textItemStyle.ts:51 +msgid "You can change the text color of the body" +msgstr "Вы можете изменить цвет основного текста" + #: src/prefs/dangerZone/clearHistory.ts:15 msgid "Clears the clipboard database and cache" msgstr "Очистить базу данных буфера обмена и кэш" diff --git a/resources/po/sk.po b/resources/po/sk.po index 65a7be32..bd9bf130 100644 --- a/resources/po/sk.po +++ b/resources/po/sk.po @@ -31,6 +31,10 @@ msgstr "Režim inkognito" msgid "Settings" msgstr "Nastavenia" +#: src/components/filePanoItem.ts:202 +msgid "items" +msgstr "" + #: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "" @@ -105,13 +109,11 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:50 #: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "" #: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" @@ -307,38 +309,52 @@ msgstr "" msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "Body Text Color" +#: src/prefs/customization/fileItemStyle.ts:67 +msgid "Files Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "You can change the text color of the body" +#: src/prefs/customization/fileItemStyle.ts:68 +msgid "You can change the background color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:77 +msgid "Files Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:78 +msgid "You can change the text color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:87 +msgid "Files Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:88 +msgid "You can change the font of the files preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:75 -msgid "Preview Background Color" +#: src/prefs/customization/fileItemStyle.ts:97 +msgid "Text Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:76 -msgid "You can change the background color of the preview" +#: src/prefs/customization/fileItemStyle.ts:98 +msgid "You can change the background color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:85 -msgid "Preview Text Color" +#: src/prefs/customization/fileItemStyle.ts:107 +msgid "Text Preview Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:86 -msgid "You can change the text color of the preview" +#: src/prefs/customization/fileItemStyle.ts:108 +msgid "You can change the text color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "Preview Font" +#: src/prefs/customization/fileItemStyle.ts:117 +msgid "Text Preview Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "You can change the font of the preview" +#: src/prefs/customization/fileItemStyle.ts:118 +msgid "You can change the font of the text preview" msgstr "" #: src/prefs/customization/imageItemStyle.ts:14 @@ -429,6 +445,14 @@ msgstr "" msgid "Text Item Style" msgstr "" +#: src/prefs/customization/textItemStyle.ts:51 +msgid "Body Text Color" +msgstr "" + +#: src/prefs/customization/textItemStyle.ts:51 +msgid "You can change the text color of the body" +msgstr "" + #: src/prefs/dangerZone/clearHistory.ts:15 msgid "Clears the clipboard database and cache" msgstr "Vymaže databázu schránky a vyrovnávaciu pamäť" diff --git a/resources/po/sv.po b/resources/po/sv.po index 65cea4ae..fac07b45 100644 --- a/resources/po/sv.po +++ b/resources/po/sv.po @@ -31,6 +31,10 @@ msgstr "Inkognitoläge" msgid "Settings" msgstr "Inställningar" +#: src/components/filePanoItem.ts:202 +msgid "items" +msgstr "" + #: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "" @@ -105,13 +109,11 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:50 #: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "" #: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" @@ -307,38 +309,52 @@ msgstr "" msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "Body Text Color" +#: src/prefs/customization/fileItemStyle.ts:67 +msgid "Files Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "You can change the text color of the body" +#: src/prefs/customization/fileItemStyle.ts:68 +msgid "You can change the background color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:77 +msgid "Files Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:78 +msgid "You can change the text color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:87 +msgid "Files Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:88 +msgid "You can change the font of the files preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:75 -msgid "Preview Background Color" +#: src/prefs/customization/fileItemStyle.ts:97 +msgid "Text Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:76 -msgid "You can change the background color of the preview" +#: src/prefs/customization/fileItemStyle.ts:98 +msgid "You can change the background color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:85 -msgid "Preview Text Color" +#: src/prefs/customization/fileItemStyle.ts:107 +msgid "Text Preview Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:86 -msgid "You can change the text color of the preview" +#: src/prefs/customization/fileItemStyle.ts:108 +msgid "You can change the text color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "Preview Font" +#: src/prefs/customization/fileItemStyle.ts:117 +msgid "Text Preview Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "You can change the font of the preview" +#: src/prefs/customization/fileItemStyle.ts:118 +msgid "You can change the font of the text preview" msgstr "" #: src/prefs/customization/imageItemStyle.ts:14 @@ -429,6 +445,14 @@ msgstr "" msgid "Text Item Style" msgstr "" +#: src/prefs/customization/textItemStyle.ts:51 +msgid "Body Text Color" +msgstr "" + +#: src/prefs/customization/textItemStyle.ts:51 +msgid "You can change the text color of the body" +msgstr "" + #: src/prefs/dangerZone/clearHistory.ts:15 msgid "Clears the clipboard database and cache" msgstr "Rensar urklippsdatabasen och cacheminnet" diff --git a/resources/po/tr.po b/resources/po/tr.po index 44b7796d..1377e190 100644 --- a/resources/po/tr.po +++ b/resources/po/tr.po @@ -31,6 +31,10 @@ msgstr "Gizli Mod" msgid "Settings" msgstr "Ayarlar" +#: src/components/filePanoItem.ts:202 +msgid "items" +msgstr "" + #: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "Açıklama Yok" @@ -105,13 +109,11 @@ msgstr "Gövde arkaplan rengini değiştirebilirsiniz" #: src/prefs/customization/codeItemStyle.ts:50 #: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "Gövde Yazı Tipi" #: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "Gövde yazı tipini değiştirebilirsiniz" @@ -307,38 +309,52 @@ msgstr "" msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "Body Text Color" -msgstr "Gövde Yazı Rengi" +#: src/prefs/customization/fileItemStyle.ts:67 +msgid "Files Preview Background Color" +msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "You can change the text color of the body" -msgstr "Gövdenin yazı rengini değiştirebilirsiniz" +#: src/prefs/customization/fileItemStyle.ts:68 +msgid "You can change the background color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:77 +msgid "Files Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:78 +msgid "You can change the text color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:87 +msgid "Files Preview Font" +msgstr "" -#: src/prefs/customization/fileItemStyle.ts:75 -msgid "Preview Background Color" +#: src/prefs/customization/fileItemStyle.ts:88 +msgid "You can change the font of the files preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:76 -msgid "You can change the background color of the preview" +#: src/prefs/customization/fileItemStyle.ts:97 +msgid "Text Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:85 -msgid "Preview Text Color" +#: src/prefs/customization/fileItemStyle.ts:98 +msgid "You can change the background color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:86 -msgid "You can change the text color of the preview" +#: src/prefs/customization/fileItemStyle.ts:107 +msgid "Text Preview Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "Preview Font" +#: src/prefs/customization/fileItemStyle.ts:108 +msgid "You can change the text color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "You can change the font of the preview" +#: src/prefs/customization/fileItemStyle.ts:117 +msgid "Text Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:118 +msgid "You can change the font of the text preview" msgstr "" #: src/prefs/customization/imageItemStyle.ts:14 @@ -429,6 +445,14 @@ msgstr "Yazı öğesinin tarzını değiştirebilirsiniz" msgid "Text Item Style" msgstr "Yazı Öğe Tarzı" +#: src/prefs/customization/textItemStyle.ts:51 +msgid "Body Text Color" +msgstr "Gövde Yazı Rengi" + +#: src/prefs/customization/textItemStyle.ts:51 +msgid "You can change the text color of the body" +msgstr "Gövdenin yazı rengini değiştirebilirsiniz" + #: src/prefs/dangerZone/clearHistory.ts:15 msgid "Clears the clipboard database and cache" msgstr "Pano veritabanını ve önbelleği temizler" diff --git a/resources/po/uk.po b/resources/po/uk.po index 52051559..89f24203 100644 --- a/resources/po/uk.po +++ b/resources/po/uk.po @@ -31,6 +31,10 @@ msgstr "Режим інкогніто" msgid "Settings" msgstr "Параметри" +#: src/components/filePanoItem.ts:202 +msgid "items" +msgstr "" + #: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "Без опису" @@ -105,13 +109,11 @@ msgstr "Ви можете змінити колір фону тіла" #: src/prefs/customization/codeItemStyle.ts:50 #: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "Шрифт тіла" #: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "Ви можете змінити шрифт тіла" @@ -307,38 +309,52 @@ msgstr "" msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "Body Text Color" -msgstr "Колір тексту тіла" +#: src/prefs/customization/fileItemStyle.ts:67 +msgid "Files Preview Background Color" +msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "You can change the text color of the body" -msgstr "Ви можете змінити колір тексту тіла" +#: src/prefs/customization/fileItemStyle.ts:68 +msgid "You can change the background color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:77 +msgid "Files Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:78 +msgid "You can change the text color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:87 +msgid "Files Preview Font" +msgstr "" -#: src/prefs/customization/fileItemStyle.ts:75 -msgid "Preview Background Color" +#: src/prefs/customization/fileItemStyle.ts:88 +msgid "You can change the font of the files preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:76 -msgid "You can change the background color of the preview" +#: src/prefs/customization/fileItemStyle.ts:97 +msgid "Text Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:85 -msgid "Preview Text Color" +#: src/prefs/customization/fileItemStyle.ts:98 +msgid "You can change the background color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:86 -msgid "You can change the text color of the preview" +#: src/prefs/customization/fileItemStyle.ts:107 +msgid "Text Preview Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "Preview Font" +#: src/prefs/customization/fileItemStyle.ts:108 +msgid "You can change the text color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "You can change the font of the preview" +#: src/prefs/customization/fileItemStyle.ts:117 +msgid "Text Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:118 +msgid "You can change the font of the text preview" msgstr "" #: src/prefs/customization/imageItemStyle.ts:14 @@ -429,6 +445,14 @@ msgstr "Змінити стиль текстового елемента" msgid "Text Item Style" msgstr "Стиль текстового елемента" +#: src/prefs/customization/textItemStyle.ts:51 +msgid "Body Text Color" +msgstr "Колір тексту тіла" + +#: src/prefs/customization/textItemStyle.ts:51 +msgid "You can change the text color of the body" +msgstr "Ви можете змінити колір тексту тіла" + #: src/prefs/dangerZone/clearHistory.ts:15 msgid "Clears the clipboard database and cache" msgstr "Очищає базу даних і кеш буфера обміну" diff --git a/resources/po/vi.po b/resources/po/vi.po index f76b7b30..366c7442 100644 --- a/resources/po/vi.po +++ b/resources/po/vi.po @@ -31,6 +31,10 @@ msgstr "Chế Độ Ẩn Danh" msgid "Settings" msgstr "Cài Đặt" +#: src/components/filePanoItem.ts:202 +msgid "items" +msgstr "" + #: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "" @@ -105,13 +109,11 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:50 #: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "" #: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" @@ -307,38 +309,52 @@ msgstr "" msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "Body Text Color" +#: src/prefs/customization/fileItemStyle.ts:67 +msgid "Files Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "You can change the text color of the body" +#: src/prefs/customization/fileItemStyle.ts:68 +msgid "You can change the background color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:77 +msgid "Files Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:78 +msgid "You can change the text color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:87 +msgid "Files Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:88 +msgid "You can change the font of the files preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:75 -msgid "Preview Background Color" +#: src/prefs/customization/fileItemStyle.ts:97 +msgid "Text Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:76 -msgid "You can change the background color of the preview" +#: src/prefs/customization/fileItemStyle.ts:98 +msgid "You can change the background color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:85 -msgid "Preview Text Color" +#: src/prefs/customization/fileItemStyle.ts:107 +msgid "Text Preview Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:86 -msgid "You can change the text color of the preview" +#: src/prefs/customization/fileItemStyle.ts:108 +msgid "You can change the text color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "Preview Font" +#: src/prefs/customization/fileItemStyle.ts:117 +msgid "Text Preview Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "You can change the font of the preview" +#: src/prefs/customization/fileItemStyle.ts:118 +msgid "You can change the font of the text preview" msgstr "" #: src/prefs/customization/imageItemStyle.ts:14 @@ -429,6 +445,14 @@ msgstr "" msgid "Text Item Style" msgstr "" +#: src/prefs/customization/textItemStyle.ts:51 +msgid "Body Text Color" +msgstr "" + +#: src/prefs/customization/textItemStyle.ts:51 +msgid "You can change the text color of the body" +msgstr "" + #: src/prefs/dangerZone/clearHistory.ts:15 msgid "Clears the clipboard database and cache" msgstr "Xóa dữ liệu khay nhớ tạm và dữ liệu tạm thời" diff --git a/resources/po/zh_CN.po b/resources/po/zh_CN.po index bb6f0371..8d24ca9a 100644 --- a/resources/po/zh_CN.po +++ b/resources/po/zh_CN.po @@ -31,6 +31,10 @@ msgstr "隐身模式" msgid "Settings" msgstr "设置" +#: src/components/filePanoItem.ts:202 +msgid "items" +msgstr "" + #: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "无详情" @@ -105,13 +109,11 @@ msgstr "修改正文背景颜色" #: src/prefs/customization/codeItemStyle.ts:50 #: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "正文字体" #: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "修改正文字体" @@ -307,38 +309,52 @@ msgstr "" msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "Body Text Color" -msgstr "正文字体颜色" +#: src/prefs/customization/fileItemStyle.ts:67 +msgid "Files Preview Background Color" +msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "You can change the text color of the body" -msgstr "修改正文字体颜色" +#: src/prefs/customization/fileItemStyle.ts:68 +msgid "You can change the background color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:77 +msgid "Files Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:78 +msgid "You can change the text color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:87 +msgid "Files Preview Font" +msgstr "" -#: src/prefs/customization/fileItemStyle.ts:75 -msgid "Preview Background Color" +#: src/prefs/customization/fileItemStyle.ts:88 +msgid "You can change the font of the files preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:76 -msgid "You can change the background color of the preview" +#: src/prefs/customization/fileItemStyle.ts:97 +msgid "Text Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:85 -msgid "Preview Text Color" +#: src/prefs/customization/fileItemStyle.ts:98 +msgid "You can change the background color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:86 -msgid "You can change the text color of the preview" +#: src/prefs/customization/fileItemStyle.ts:107 +msgid "Text Preview Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "Preview Font" +#: src/prefs/customization/fileItemStyle.ts:108 +msgid "You can change the text color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "You can change the font of the preview" +#: src/prefs/customization/fileItemStyle.ts:117 +msgid "Text Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:118 +msgid "You can change the font of the text preview" msgstr "" #: src/prefs/customization/imageItemStyle.ts:14 @@ -429,6 +445,14 @@ msgstr "修改文本项目风格" msgid "Text Item Style" msgstr "文本项目风格" +#: src/prefs/customization/textItemStyle.ts:51 +msgid "Body Text Color" +msgstr "正文字体颜色" + +#: src/prefs/customization/textItemStyle.ts:51 +msgid "You can change the text color of the body" +msgstr "修改正文字体颜色" + #: src/prefs/dangerZone/clearHistory.ts:15 msgid "Clears the clipboard database and cache" msgstr "清除剪贴板数据库和缓存" diff --git a/resources/po/zh_TW.po b/resources/po/zh_TW.po index 04aa6539..3910dec2 100644 --- a/resources/po/zh_TW.po +++ b/resources/po/zh_TW.po @@ -31,6 +31,10 @@ msgstr "無痕模式" msgid "Settings" msgstr "設定" +#: src/components/filePanoItem.ts:202 +msgid "items" +msgstr "" + #: src/components/linkPanoItem.ts:40 msgid "No Description" msgstr "無說明" @@ -105,13 +109,11 @@ msgstr "你可以更換內容的背景顏色" #: src/prefs/customization/codeItemStyle.ts:50 #: src/prefs/customization/colorItemStyle.ts:41 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "Body Font" msgstr "內容字體" #: src/prefs/customization/codeItemStyle.ts:50 -#: src/prefs/customization/fileItemStyle.ts:70 #: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "你可以更換內容的字體" @@ -307,38 +309,52 @@ msgstr "" msgid "Title Font" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "Body Text Color" -msgstr "內容字體顏色" +#: src/prefs/customization/fileItemStyle.ts:67 +msgid "Files Preview Background Color" +msgstr "" -#: src/prefs/customization/fileItemStyle.ts:66 -#: src/prefs/customization/textItemStyle.ts:51 -msgid "You can change the text color of the body" -msgstr "你可以更換內容的字體顏色" +#: src/prefs/customization/fileItemStyle.ts:68 +msgid "You can change the background color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:77 +msgid "Files Preview Text Color" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:78 +msgid "You can change the text color of the files preview" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:87 +msgid "Files Preview Font" +msgstr "" -#: src/prefs/customization/fileItemStyle.ts:75 -msgid "Preview Background Color" +#: src/prefs/customization/fileItemStyle.ts:88 +msgid "You can change the font of the files preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:76 -msgid "You can change the background color of the preview" +#: src/prefs/customization/fileItemStyle.ts:97 +msgid "Text Preview Background Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:85 -msgid "Preview Text Color" +#: src/prefs/customization/fileItemStyle.ts:98 +msgid "You can change the background color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:86 -msgid "You can change the text color of the preview" +#: src/prefs/customization/fileItemStyle.ts:107 +msgid "Text Preview Text Color" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "Preview Font" +#: src/prefs/customization/fileItemStyle.ts:108 +msgid "You can change the text color of the text preview" msgstr "" -#: src/prefs/customization/fileItemStyle.ts:94 -msgid "You can change the font of the preview" +#: src/prefs/customization/fileItemStyle.ts:117 +msgid "Text Preview Font" +msgstr "" + +#: src/prefs/customization/fileItemStyle.ts:118 +msgid "You can change the font of the text preview" msgstr "" #: src/prefs/customization/imageItemStyle.ts:14 @@ -429,6 +445,14 @@ msgstr "切換文字物件主題" msgid "Text Item Style" msgstr "文字物件風格" +#: src/prefs/customization/textItemStyle.ts:51 +msgid "Body Text Color" +msgstr "內容字體顏色" + +#: src/prefs/customization/textItemStyle.ts:51 +msgid "You can change the text color of the body" +msgstr "你可以更換內容的字體顏色" + #: src/prefs/dangerZone/clearHistory.ts:15 msgid "Clears the clipboard database and cache" msgstr "清除剪貼簿資料庫和快取" diff --git a/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml b/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml index 3ccdff7c..ac80cb7e 100644 --- a/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml +++ b/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml @@ -354,40 +354,45 @@ title-font-size title-font-size - + + 'rgba(255, 255, 255, 0.08)' + files-preview-bg-color + files-preview-bg-color + + 'rgb(255, 255, 255)' - body-color - body-color + files-preview-color + files-preview-color - + 'Cantarell Regular' - body-font-family - body-font-family + files-preview-font-family + files-preview-font-family - + 13 - body-font-size - body-font-size + files-preview-font-size + files-preview-font-size - - 'rgba(255, 255, 255, 0.08)' - preview-bg-color - preview-bg-color + + 'rgb(36, 36, 36)' + text-preview-bg-color + text-preview-bg-color - + 'rgb(255, 255, 255)' - preview-color - preview-color + text-preview-color + text-preview-color - + 'Source Code Pro' - preview-font-family - preview-font-family + text-preview-font-family + text-preview-font-family - + 10 - preview-font-size - preview-font-size + text-preview-font-size + text-preview-font-size diff --git a/src/components/filePanoItem.ts b/src/components/filePanoItem.ts index 899428bd..f0830591 100644 --- a/src/components/filePanoItem.ts +++ b/src/components/filePanoItem.ts @@ -8,6 +8,7 @@ import { PanoItem } from '@pano/components/panoItem'; import { ClipboardContent, ClipboardManager, ContentType, FileOperation } from '@pano/utils/clipboardManager'; import { DBItem } from '@pano/utils/db'; import { registerGObjectClass } from '@pano/utils/gjs'; +import { gettext } from '@pano/utils/shell'; enum PreviewType { NONE = 'none', @@ -27,6 +28,7 @@ export class FilePanoItem extends PanoItem { constructor(ext: ExtensionBase, clipboardManager: ClipboardManager, dbItem: DBItem) { super(ext, clipboardManager, dbItem); + const _ = gettext(ext); this.fileList = JSON.parse(this.dbItem.content); this.operation = this.dbItem.metaData || 'copy'; @@ -149,15 +151,17 @@ export class FilePanoItem extends PanoItem { style: `background-image: url(${thumbnail.get_uri()}); background-size: cover;`, }); this.previewType = PreviewType.IMAGE; - } else { - this.add_style_class_name('no-preview'); } } if (this.preview) { this.preview.visible = this.settings.get_boolean('compact-mode'); this.body.add_child(this.preview); + } else { + this.add_style_class_name('no-preview'); } + } else { + this.add_style_class_name('no-preview'); } } else { // Check for the common parent directory for all files @@ -195,7 +199,7 @@ export class FilePanoItem extends PanoItem { labelContainer.add_child(label); labelContainer.add_child( new St.Label({ - text: `${this.fileList.length} items`, + text: `${this.fileList.length} ${_('items')}`, styleClass: 'copied-files-count', }), ); @@ -249,13 +253,14 @@ export class FilePanoItem extends PanoItem { const titleColor = this.fileItemSettings.get_string('title-color'); const titleFontFamily = this.fileItemSettings.get_string('title-font-family'); const titleFontSize = this.fileItemSettings.get_int('title-font-size'); - const bodyColor = this.fileItemSettings.get_string('body-color'); - const bodyFontFamily = this.fileItemSettings.get_string('body-font-family'); - const bodyFontSize = this.fileItemSettings.get_int('body-font-size'); - const previewBgColor = this.fileItemSettings.get_string('preview-bg-color'); - const previewColor = this.fileItemSettings.get_string('preview-color'); - const previewFontFamily = this.fileItemSettings.get_string('preview-font-family'); - const previewFontSize = this.fileItemSettings.get_int('preview-font-size'); + const filesPreviewBgColor = this.fileItemSettings.get_string('files-preview-bg-color'); + const filesPreviewColor = this.fileItemSettings.get_string('files-preview-color'); + const filesPreviewFontFamily = this.fileItemSettings.get_string('files-preview-font-family'); + const filesPreviewFontSize = this.fileItemSettings.get_int('files-preview-font-size'); + const textPreviewBgColor = this.fileItemSettings.get_string('text-preview-bg-color'); + const textPreviewColor = this.fileItemSettings.get_string('text-preview-color'); + const textPreviewFontFamily = this.fileItemSettings.get_string('text-preview-font-family'); + const textPreviewFontSize = this.fileItemSettings.get_int('text-preview-font-size'); this.header.set_style(`background-color: ${headerBgColor}; color: ${headerColor};`); this.container.set_style(`background-color: ${bodyBgColor};`); @@ -270,11 +275,11 @@ export class FilePanoItem extends PanoItem { if (this.previewType == PreviewType.FILES) { this.preview.set_style( - `background-color: ${previewBgColor}; color: ${bodyColor}; font-family: ${bodyFontFamily}; font-size: ${bodyFontSize}px;`, + `background-color: ${filesPreviewBgColor}; color: ${filesPreviewColor}; font-family: ${filesPreviewFontFamily}; font-size: ${filesPreviewFontSize}px;`, ); } else if (this.previewType == PreviewType.TEXT) { this.preview.set_style( - `background-color: ${previewBgColor}; color: ${previewColor}; font-family: ${previewFontFamily}; font-size: ${previewFontSize}px;`, + `background-color: ${textPreviewBgColor}; color: ${textPreviewColor}; font-family: ${textPreviewFontFamily}; font-size: ${textPreviewFontSize}px;`, ); } } diff --git a/src/prefs/customization/fileItemStyle.ts b/src/prefs/customization/fileItemStyle.ts index 5f012701..a49edef9 100644 --- a/src/prefs/customization/fileItemStyle.ts +++ b/src/prefs/customization/fileItemStyle.ts @@ -61,37 +61,64 @@ export class FileItemStyleRow extends ItemExpanderRow { createFontRow(_('Title Font'), _('You can change the font of the title'), this.settings, 'title-font'), ); - // create body text color row + // create files preview background color row this.add_row( - createColorRow(_('Body Text Color'), _('You can change the text color of the body'), this.settings, 'body-color'), + createColorRow( + _('Files Preview Background Color'), + _('You can change the background color of the files preview'), + this.settings, + 'files-preview-bg-color', + ), ); - // create body font row - this.add_row(createFontRow(_('Body Font'), _('You can change the font of the body'), this.settings, 'body-font')); + // create files preview text color row + this.add_row( + createColorRow( + _('Files Preview Text Color'), + _('You can change the text color of the files preview'), + this.settings, + 'files-preview-color', + ), + ); - // create preview background color row + // create files preview font row + this.add_row( + createFontRow( + _('Files Preview Font'), + _('You can change the font of the files preview'), + this.settings, + 'files-preview-font', + ), + ); + + // create text preview background color row this.add_row( createColorRow( - _('Preview Background Color'), - _('You can change the background color of the preview'), + _('Text Preview Background Color'), + _('You can change the background color of the text preview'), this.settings, - 'preview-bg-color', + 'text-preview-bg-color', ), ); - // create preview text color row + // create text preview text color row this.add_row( createColorRow( - _('Preview Text Color'), - _('You can change the text color of the preview'), + _('Text Preview Text Color'), + _('You can change the text color of the text preview'), this.settings, - 'preview-color', + 'text-preview-color', ), ); - // create preview font row + // create text preview font row this.add_row( - createFontRow(_('Preview Font'), _('You can change the font of the preview'), this.settings, 'preview-font'), + createFontRow( + _('Text Preview Font'), + _('You can change the font of the text preview'), + this.settings, + 'text-preview-font', + ), ); } } diff --git a/src/styles/stylesheet.css b/src/styles/stylesheet.css index 7c2c6cac..a4fd25b4 100644 --- a/src/styles/stylesheet.css +++ b/src/styles/stylesheet.css @@ -44,6 +44,24 @@ box-shadow: 0 0 4px rgba(0, 0, 0, 0.1); } +.pano-item.compact { + margin: 6px 3px; +} + +.pano-window.vertical .pano-item.compact { + margin: 3px 6px; +} + +.pano-item.compact:first-child { + margin-top: 6px!important; + margin-left: 6px!important; +} + +.pano-item.compact:last-child { + margin-bottom: 6px!important; + margin-right: 6px!important; +} + .pano-item:hover { box-shadow: none; } From 2b155e901e5c9b8cb69f2364a8cc397abbbf5ccf Mon Sep 17 00:00:00 2001 From: boerdereinar Date: Mon, 6 May 2024 00:35:01 +0200 Subject: [PATCH 11/45] Don't select on item removal --- src/components/panoScrollView.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/components/panoScrollView.ts b/src/components/panoScrollView.ts index ffe743df..4271985d 100644 --- a/src/components/panoScrollView.ts +++ b/src/components/panoScrollView.ts @@ -233,8 +233,6 @@ export class PanoScrollView extends St.ScrollView { this.filter(this.currentFilter, this.currentItemTypeFilter, this.showFavorites); if (this.getVisibleItems().length === 0) { this.emit('scroll-focus-out'); - } else { - this.focusOnClosest(); } }); } From 817fe07847724450db0a3da5dc050898738c9d7d Mon Sep 17 00:00:00 2001 From: boerdereinar Date: Mon, 6 May 2024 19:17:55 +0200 Subject: [PATCH 12/45] Replace validate-color calls with color-string + make clean:ts failable in build:ts + style changes clean:ts is now able to fail so that I can build Pano while it is still running --- package.json | 5 ++--- resources/po/ar.po | 18 +++++++++--------- resources/po/bg.po | 18 +++++++++--------- resources/po/cs.po | 18 +++++++++--------- resources/po/da.po | 18 +++++++++--------- resources/po/de.po | 18 +++++++++--------- resources/po/el.po | 18 +++++++++--------- resources/po/en.po | 18 +++++++++--------- resources/po/es.po | 18 +++++++++--------- resources/po/et.po | 18 +++++++++--------- resources/po/fi.po | 18 +++++++++--------- resources/po/fr.po | 18 +++++++++--------- resources/po/he.po | 18 +++++++++--------- resources/po/hr.po | 18 +++++++++--------- resources/po/hu.po | 18 +++++++++--------- resources/po/is.po | 18 +++++++++--------- resources/po/it.po | 18 +++++++++--------- resources/po/ja.po | 18 +++++++++--------- resources/po/ko.po | 18 +++++++++--------- resources/po/nl.po | 18 +++++++++--------- resources/po/no.po | 18 +++++++++--------- resources/po/oc.po | 18 +++++++++--------- resources/po/pano@elhan.io.pot | 18 +++++++++--------- resources/po/pl.po | 18 +++++++++--------- resources/po/pt.po | 18 +++++++++--------- resources/po/pt_BR.po | 18 +++++++++--------- resources/po/ro.po | 18 +++++++++--------- resources/po/ru.po | 18 +++++++++--------- resources/po/sk.po | 18 +++++++++--------- resources/po/sv.po | 18 +++++++++--------- resources/po/tr.po | 18 +++++++++--------- resources/po/uk.po | 18 +++++++++--------- resources/po/vi.po | 18 +++++++++--------- resources/po/zh_CN.po | 18 +++++++++--------- resources/po/zh_TW.po | 18 +++++++++--------- rollup.config.mjs | 1 - src/components/colorPanoItem.ts | 6 +++--- src/styles/stylesheet.css | 6 +++--- src/utils/panoItemFactory.ts | 7 +------ yarn.lock | 4 ---- 40 files changed, 315 insertions(+), 326 deletions(-) diff --git a/package.json b/package.json index 46387e03..d72a609e 100644 --- a/package.json +++ b/package.json @@ -97,8 +97,7 @@ "htmlparser2": "^9.1.0", "is-url": "^1.2.4", "pretty-bytes": "^6.1.1", - "prismjs": "^1.29.0", - "validate-color": "https://gitpkg.now.sh/dreamyguy/validate-color/src/validate-color" + "prismjs": "^1.29.0" }, - "packageManager": "yarn@1.22.22" + "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e" } diff --git a/resources/po/ar.po b/resources/po/ar.po index 8033aafa..769920aa 100644 --- a/resources/po/ar.po +++ b/resources/po/ar.po @@ -627,39 +627,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:393 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:399 +#: src/utils/panoItemFactory.ts:394 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:403 +#: src/utils/panoItemFactory.ts:398 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:405 +#: src/utils/panoItemFactory.ts:400 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:402 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:410 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:428 +#: src/utils/panoItemFactory.ts:423 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:435 +#: src/utils/panoItemFactory.ts:430 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:436 +#: src/utils/panoItemFactory.ts:431 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/bg.po b/resources/po/bg.po index 5357ef80..51491598 100644 --- a/resources/po/bg.po +++ b/resources/po/bg.po @@ -627,39 +627,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:393 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:399 +#: src/utils/panoItemFactory.ts:394 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:403 +#: src/utils/panoItemFactory.ts:398 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:405 +#: src/utils/panoItemFactory.ts:400 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:402 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:410 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:428 +#: src/utils/panoItemFactory.ts:423 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:435 +#: src/utils/panoItemFactory.ts:430 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:436 +#: src/utils/panoItemFactory.ts:431 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/cs.po b/resources/po/cs.po index 50bf4fbb..a3e15597 100644 --- a/resources/po/cs.po +++ b/resources/po/cs.po @@ -627,39 +627,39 @@ msgstr "Indikátor kmitání" msgid "Wiggles the indicator on panel" msgstr "Rozhýbe indikátor na panelu" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:393 msgid "Image Copied" msgstr "Obrázek zkopírován" -#: src/utils/panoItemFactory.ts:399 +#: src/utils/panoItemFactory.ts:394 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "Šířka: %spx, Výška: %spx, Velikost: %s" -#: src/utils/panoItemFactory.ts:403 +#: src/utils/panoItemFactory.ts:398 msgid "Text Copied" msgstr "Text zkopírován" -#: src/utils/panoItemFactory.ts:405 +#: src/utils/panoItemFactory.ts:400 msgid "Code Copied" msgstr "Kód zkopírován" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:402 msgid "Emoji Copied" msgstr "Emoji zkopírováno" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:410 msgid "Link Copied" msgstr "Odkaz zkopírován" -#: src/utils/panoItemFactory.ts:428 +#: src/utils/panoItemFactory.ts:423 msgid "Color Copied" msgstr "Barva zkopírována" -#: src/utils/panoItemFactory.ts:435 +#: src/utils/panoItemFactory.ts:430 msgid "File %s" msgstr "Soubor %s" -#: src/utils/panoItemFactory.ts:436 +#: src/utils/panoItemFactory.ts:431 msgid "There are %s file(s)" msgstr "Existuje %s souborů" diff --git a/resources/po/da.po b/resources/po/da.po index b35c87aa..f9180b70 100644 --- a/resources/po/da.po +++ b/resources/po/da.po @@ -627,39 +627,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:393 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:399 +#: src/utils/panoItemFactory.ts:394 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:403 +#: src/utils/panoItemFactory.ts:398 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:405 +#: src/utils/panoItemFactory.ts:400 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:402 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:410 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:428 +#: src/utils/panoItemFactory.ts:423 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:435 +#: src/utils/panoItemFactory.ts:430 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:436 +#: src/utils/panoItemFactory.ts:431 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/de.po b/resources/po/de.po index 6f74667d..1e64308e 100644 --- a/resources/po/de.po +++ b/resources/po/de.po @@ -627,39 +627,39 @@ msgstr "Wackelindikator" msgid "Wiggles the indicator on panel" msgstr "Lässt den Indikator auf dem Bedienfeld wackeln" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:393 msgid "Image Copied" msgstr "Bild kopiert" -#: src/utils/panoItemFactory.ts:399 +#: src/utils/panoItemFactory.ts:394 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "Breite: %spx, Höhe: %spx, Größe: %s" -#: src/utils/panoItemFactory.ts:403 +#: src/utils/panoItemFactory.ts:398 msgid "Text Copied" msgstr "Text kopiert" -#: src/utils/panoItemFactory.ts:405 +#: src/utils/panoItemFactory.ts:400 msgid "Code Copied" msgstr "Code kopiert" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:402 msgid "Emoji Copied" msgstr "Emoji kopiert" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:410 msgid "Link Copied" msgstr "Verweis kopiert" -#: src/utils/panoItemFactory.ts:428 +#: src/utils/panoItemFactory.ts:423 msgid "Color Copied" msgstr "Farbe kopiert" -#: src/utils/panoItemFactory.ts:435 +#: src/utils/panoItemFactory.ts:430 msgid "File %s" msgstr "Datei %s" -#: src/utils/panoItemFactory.ts:436 +#: src/utils/panoItemFactory.ts:431 msgid "There are %s file(s)" msgstr "Es gibt %s Datei(en)" diff --git a/resources/po/el.po b/resources/po/el.po index ae63265e..22975784 100644 --- a/resources/po/el.po +++ b/resources/po/el.po @@ -627,39 +627,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:393 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:399 +#: src/utils/panoItemFactory.ts:394 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:403 +#: src/utils/panoItemFactory.ts:398 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:405 +#: src/utils/panoItemFactory.ts:400 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:402 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:410 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:428 +#: src/utils/panoItemFactory.ts:423 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:435 +#: src/utils/panoItemFactory.ts:430 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:436 +#: src/utils/panoItemFactory.ts:431 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/en.po b/resources/po/en.po index f2239098..4311c2f9 100644 --- a/resources/po/en.po +++ b/resources/po/en.po @@ -627,39 +627,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:393 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:399 +#: src/utils/panoItemFactory.ts:394 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:403 +#: src/utils/panoItemFactory.ts:398 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:405 +#: src/utils/panoItemFactory.ts:400 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:402 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:410 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:428 +#: src/utils/panoItemFactory.ts:423 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:435 +#: src/utils/panoItemFactory.ts:430 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:436 +#: src/utils/panoItemFactory.ts:431 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/es.po b/resources/po/es.po index 7b8ba138..9a78b939 100644 --- a/resources/po/es.po +++ b/resources/po/es.po @@ -627,39 +627,39 @@ msgstr "Agitar el indicador" msgid "Wiggles the indicator on panel" msgstr "Agita el indicador en el panel" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:393 msgid "Image Copied" msgstr "Imagen copiada" -#: src/utils/panoItemFactory.ts:399 +#: src/utils/panoItemFactory.ts:394 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "Anchura: %spx, Altura: %spx, Tamaño: %s" -#: src/utils/panoItemFactory.ts:403 +#: src/utils/panoItemFactory.ts:398 msgid "Text Copied" msgstr "Texto copiado" -#: src/utils/panoItemFactory.ts:405 +#: src/utils/panoItemFactory.ts:400 msgid "Code Copied" msgstr "Código copiado" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:402 msgid "Emoji Copied" msgstr "Emoji copiado" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:410 msgid "Link Copied" msgstr "Enlace copiado" -#: src/utils/panoItemFactory.ts:428 +#: src/utils/panoItemFactory.ts:423 msgid "Color Copied" msgstr "Color copiado" -#: src/utils/panoItemFactory.ts:435 +#: src/utils/panoItemFactory.ts:430 msgid "File %s" msgstr "Archivo %s" -#: src/utils/panoItemFactory.ts:436 +#: src/utils/panoItemFactory.ts:431 msgid "There are %s file(s)" msgstr "Hay %s archivo(s)" diff --git a/resources/po/et.po b/resources/po/et.po index 6e8556b8..5a783c3d 100644 --- a/resources/po/et.po +++ b/resources/po/et.po @@ -627,39 +627,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:393 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:399 +#: src/utils/panoItemFactory.ts:394 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:403 +#: src/utils/panoItemFactory.ts:398 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:405 +#: src/utils/panoItemFactory.ts:400 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:402 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:410 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:428 +#: src/utils/panoItemFactory.ts:423 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:435 +#: src/utils/panoItemFactory.ts:430 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:436 +#: src/utils/panoItemFactory.ts:431 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/fi.po b/resources/po/fi.po index c5418bd9..8d6a2a2e 100644 --- a/resources/po/fi.po +++ b/resources/po/fi.po @@ -627,39 +627,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:393 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:399 +#: src/utils/panoItemFactory.ts:394 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:403 +#: src/utils/panoItemFactory.ts:398 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:405 +#: src/utils/panoItemFactory.ts:400 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:402 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:410 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:428 +#: src/utils/panoItemFactory.ts:423 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:435 +#: src/utils/panoItemFactory.ts:430 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:436 +#: src/utils/panoItemFactory.ts:431 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/fr.po b/resources/po/fr.po index ef9b392f..b586e3b5 100644 --- a/resources/po/fr.po +++ b/resources/po/fr.po @@ -627,39 +627,39 @@ msgstr "Oscillation de l’indicateur" msgid "Wiggles the indicator on panel" msgstr "Fait bouger l’indicateur sur le panneau" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:393 msgid "Image Copied" msgstr "Image copiée" -#: src/utils/panoItemFactory.ts:399 +#: src/utils/panoItemFactory.ts:394 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "Largeur : %spx, Hauteur : %spx, Taille : %s" -#: src/utils/panoItemFactory.ts:403 +#: src/utils/panoItemFactory.ts:398 msgid "Text Copied" msgstr "Texte copié" -#: src/utils/panoItemFactory.ts:405 +#: src/utils/panoItemFactory.ts:400 msgid "Code Copied" msgstr "Code copié" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:402 msgid "Emoji Copied" msgstr "Émoji copié" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:410 msgid "Link Copied" msgstr "Lien copié" -#: src/utils/panoItemFactory.ts:428 +#: src/utils/panoItemFactory.ts:423 msgid "Color Copied" msgstr "Couleur copiée" -#: src/utils/panoItemFactory.ts:435 +#: src/utils/panoItemFactory.ts:430 msgid "File %s" msgstr "Fichier %s" -#: src/utils/panoItemFactory.ts:436 +#: src/utils/panoItemFactory.ts:431 msgid "There are %s file(s)" msgstr "Il y a %s fichier(s)" diff --git a/resources/po/he.po b/resources/po/he.po index 0b1d0f04..33c416f4 100644 --- a/resources/po/he.po +++ b/resources/po/he.po @@ -627,39 +627,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:393 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:399 +#: src/utils/panoItemFactory.ts:394 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:403 +#: src/utils/panoItemFactory.ts:398 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:405 +#: src/utils/panoItemFactory.ts:400 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:402 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:410 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:428 +#: src/utils/panoItemFactory.ts:423 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:435 +#: src/utils/panoItemFactory.ts:430 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:436 +#: src/utils/panoItemFactory.ts:431 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/hr.po b/resources/po/hr.po index ff348cce..e2c6c23f 100644 --- a/resources/po/hr.po +++ b/resources/po/hr.po @@ -627,39 +627,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:393 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:399 +#: src/utils/panoItemFactory.ts:394 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:403 +#: src/utils/panoItemFactory.ts:398 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:405 +#: src/utils/panoItemFactory.ts:400 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:402 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:410 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:428 +#: src/utils/panoItemFactory.ts:423 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:435 +#: src/utils/panoItemFactory.ts:430 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:436 +#: src/utils/panoItemFactory.ts:431 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/hu.po b/resources/po/hu.po index 5d0ff664..9949fb8c 100644 --- a/resources/po/hu.po +++ b/resources/po/hu.po @@ -627,39 +627,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:393 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:399 +#: src/utils/panoItemFactory.ts:394 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:403 +#: src/utils/panoItemFactory.ts:398 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:405 +#: src/utils/panoItemFactory.ts:400 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:402 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:410 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:428 +#: src/utils/panoItemFactory.ts:423 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:435 +#: src/utils/panoItemFactory.ts:430 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:436 +#: src/utils/panoItemFactory.ts:431 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/is.po b/resources/po/is.po index 760c006b..a164d756 100644 --- a/resources/po/is.po +++ b/resources/po/is.po @@ -627,39 +627,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:393 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:399 +#: src/utils/panoItemFactory.ts:394 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:403 +#: src/utils/panoItemFactory.ts:398 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:405 +#: src/utils/panoItemFactory.ts:400 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:402 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:410 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:428 +#: src/utils/panoItemFactory.ts:423 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:435 +#: src/utils/panoItemFactory.ts:430 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:436 +#: src/utils/panoItemFactory.ts:431 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/it.po b/resources/po/it.po index 5f73d563..915fde3a 100644 --- a/resources/po/it.po +++ b/resources/po/it.po @@ -627,39 +627,39 @@ msgstr "Scuoti l'indicatore" msgid "Wiggles the indicator on panel" msgstr "Scuoti l'indicatore sul pannello" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:393 msgid "Image Copied" msgstr "Immagine copiata" -#: src/utils/panoItemFactory.ts:399 +#: src/utils/panoItemFactory.ts:394 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "Larghezza: %spx, Altezza: %spx, Dimensione: %s" -#: src/utils/panoItemFactory.ts:403 +#: src/utils/panoItemFactory.ts:398 msgid "Text Copied" msgstr "Testo copiato" -#: src/utils/panoItemFactory.ts:405 +#: src/utils/panoItemFactory.ts:400 msgid "Code Copied" msgstr "Codice copiato" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:402 msgid "Emoji Copied" msgstr "Emoji Copiata" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:410 msgid "Link Copied" msgstr "Link copiato" -#: src/utils/panoItemFactory.ts:428 +#: src/utils/panoItemFactory.ts:423 msgid "Color Copied" msgstr "Colore copiato" -#: src/utils/panoItemFactory.ts:435 +#: src/utils/panoItemFactory.ts:430 msgid "File %s" msgstr "File %s" -#: src/utils/panoItemFactory.ts:436 +#: src/utils/panoItemFactory.ts:431 msgid "There are %s file(s)" msgstr "Ci sono %s file(s)" diff --git a/resources/po/ja.po b/resources/po/ja.po index 39d3b975..afcb1203 100644 --- a/resources/po/ja.po +++ b/resources/po/ja.po @@ -627,39 +627,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:393 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:399 +#: src/utils/panoItemFactory.ts:394 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:403 +#: src/utils/panoItemFactory.ts:398 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:405 +#: src/utils/panoItemFactory.ts:400 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:402 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:410 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:428 +#: src/utils/panoItemFactory.ts:423 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:435 +#: src/utils/panoItemFactory.ts:430 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:436 +#: src/utils/panoItemFactory.ts:431 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/ko.po b/resources/po/ko.po index 469dc42c..2df27837 100644 --- a/resources/po/ko.po +++ b/resources/po/ko.po @@ -627,39 +627,39 @@ msgstr "표시기 흔들기" msgid "Wiggles the indicator on panel" msgstr "패널의 표시기를 흔들기" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:393 msgid "Image Copied" msgstr "이미지 복사됨" -#: src/utils/panoItemFactory.ts:399 +#: src/utils/panoItemFactory.ts:394 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "너비: %spx, 높이: %spx, 크기: %s" -#: src/utils/panoItemFactory.ts:403 +#: src/utils/panoItemFactory.ts:398 msgid "Text Copied" msgstr "텍스트 복사됨" -#: src/utils/panoItemFactory.ts:405 +#: src/utils/panoItemFactory.ts:400 msgid "Code Copied" msgstr "코드 복사됨" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:402 msgid "Emoji Copied" msgstr "이모티콘 복사됨" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:410 msgid "Link Copied" msgstr "링크 복사됨" -#: src/utils/panoItemFactory.ts:428 +#: src/utils/panoItemFactory.ts:423 msgid "Color Copied" msgstr "색상 복사됨" -#: src/utils/panoItemFactory.ts:435 +#: src/utils/panoItemFactory.ts:430 msgid "File %s" msgstr "파일 %s" -#: src/utils/panoItemFactory.ts:436 +#: src/utils/panoItemFactory.ts:431 msgid "There are %s file(s)" msgstr "%s 개의 파일이 있음" diff --git a/resources/po/nl.po b/resources/po/nl.po index b37a2768..06216418 100644 --- a/resources/po/nl.po +++ b/resources/po/nl.po @@ -627,39 +627,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:393 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:399 +#: src/utils/panoItemFactory.ts:394 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:403 +#: src/utils/panoItemFactory.ts:398 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:405 +#: src/utils/panoItemFactory.ts:400 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:402 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:410 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:428 +#: src/utils/panoItemFactory.ts:423 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:435 +#: src/utils/panoItemFactory.ts:430 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:436 +#: src/utils/panoItemFactory.ts:431 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/no.po b/resources/po/no.po index bc43a58e..1bad3a1e 100644 --- a/resources/po/no.po +++ b/resources/po/no.po @@ -627,39 +627,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:393 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:399 +#: src/utils/panoItemFactory.ts:394 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:403 +#: src/utils/panoItemFactory.ts:398 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:405 +#: src/utils/panoItemFactory.ts:400 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:402 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:410 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:428 +#: src/utils/panoItemFactory.ts:423 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:435 +#: src/utils/panoItemFactory.ts:430 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:436 +#: src/utils/panoItemFactory.ts:431 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/oc.po b/resources/po/oc.po index 25497a87..33ab1012 100644 --- a/resources/po/oc.po +++ b/resources/po/oc.po @@ -627,39 +627,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:393 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:399 +#: src/utils/panoItemFactory.ts:394 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:403 +#: src/utils/panoItemFactory.ts:398 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:405 +#: src/utils/panoItemFactory.ts:400 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:402 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:410 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:428 +#: src/utils/panoItemFactory.ts:423 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:435 +#: src/utils/panoItemFactory.ts:430 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:436 +#: src/utils/panoItemFactory.ts:431 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/pano@elhan.io.pot b/resources/po/pano@elhan.io.pot index 30c0091d..d6a24b21 100644 --- a/resources/po/pano@elhan.io.pot +++ b/resources/po/pano@elhan.io.pot @@ -125,7 +125,7 @@ msgstr "" msgid "Code" msgstr "" -#: src/utils/panoItemFactory.ts:405 +#: src/utils/panoItemFactory.ts:400 msgid "Code Copied" msgstr "" @@ -137,7 +137,7 @@ msgstr "" msgid "Color" msgstr "" -#: src/utils/panoItemFactory.ts:428 +#: src/utils/panoItemFactory.ts:423 msgid "Color Copied" msgstr "" @@ -181,7 +181,7 @@ msgstr "" msgid "Emoji" msgstr "" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:402 msgid "Emoji Copied" msgstr "" @@ -209,7 +209,7 @@ msgstr "" msgid "File" msgstr "" -#: src/utils/panoItemFactory.ts:435 +#: src/utils/panoItemFactory.ts:430 msgid "File %s" msgstr "" @@ -277,7 +277,7 @@ msgstr "" msgid "Image" msgstr "" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:393 msgid "Image Copied" msgstr "" @@ -337,7 +337,7 @@ msgstr "" msgid "Link" msgstr "" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:410 msgid "Link Copied" msgstr "" @@ -463,7 +463,7 @@ msgstr "" msgid "Text" msgstr "" -#: src/utils/panoItemFactory.ts:403 +#: src/utils/panoItemFactory.ts:398 msgid "Text Copied" msgstr "" @@ -483,7 +483,7 @@ msgstr "" msgid "Text Preview Text Color" msgstr "" -#: src/utils/panoItemFactory.ts:436 +#: src/utils/panoItemFactory.ts:431 msgid "There are %s file(s)" msgstr "" @@ -519,7 +519,7 @@ msgstr "" msgid "When enabled, the controls will only show on hover" msgstr "" -#: src/utils/panoItemFactory.ts:399 +#: src/utils/panoItemFactory.ts:394 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" diff --git a/resources/po/pl.po b/resources/po/pl.po index 3771a58e..f9177c0a 100644 --- a/resources/po/pl.po +++ b/resources/po/pl.po @@ -627,39 +627,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:393 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:399 +#: src/utils/panoItemFactory.ts:394 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:403 +#: src/utils/panoItemFactory.ts:398 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:405 +#: src/utils/panoItemFactory.ts:400 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:402 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:410 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:428 +#: src/utils/panoItemFactory.ts:423 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:435 +#: src/utils/panoItemFactory.ts:430 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:436 +#: src/utils/panoItemFactory.ts:431 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/pt.po b/resources/po/pt.po index 3fcca939..2783f591 100644 --- a/resources/po/pt.po +++ b/resources/po/pt.po @@ -627,39 +627,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:393 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:399 +#: src/utils/panoItemFactory.ts:394 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:403 +#: src/utils/panoItemFactory.ts:398 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:405 +#: src/utils/panoItemFactory.ts:400 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:402 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:410 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:428 +#: src/utils/panoItemFactory.ts:423 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:435 +#: src/utils/panoItemFactory.ts:430 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:436 +#: src/utils/panoItemFactory.ts:431 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/pt_BR.po b/resources/po/pt_BR.po index 2af0b08a..6a21cf40 100644 --- a/resources/po/pt_BR.po +++ b/resources/po/pt_BR.po @@ -627,39 +627,39 @@ msgstr "Agitar Indicador" msgid "Wiggles the indicator on panel" msgstr "Agita o indicador na barra" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:393 msgid "Image Copied" msgstr "Imagem Copiada" -#: src/utils/panoItemFactory.ts:399 +#: src/utils/panoItemFactory.ts:394 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "Largura: %spx, Altura: %spx, Tamanho: %s" -#: src/utils/panoItemFactory.ts:403 +#: src/utils/panoItemFactory.ts:398 msgid "Text Copied" msgstr "Texto Copiado" -#: src/utils/panoItemFactory.ts:405 +#: src/utils/panoItemFactory.ts:400 msgid "Code Copied" msgstr "Código Copiado" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:402 msgid "Emoji Copied" msgstr "Emoji Copiado" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:410 msgid "Link Copied" msgstr "Link Copiado" -#: src/utils/panoItemFactory.ts:428 +#: src/utils/panoItemFactory.ts:423 msgid "Color Copied" msgstr "Cor Copiada" -#: src/utils/panoItemFactory.ts:435 +#: src/utils/panoItemFactory.ts:430 msgid "File %s" msgstr "Arquivo %s" -#: src/utils/panoItemFactory.ts:436 +#: src/utils/panoItemFactory.ts:431 msgid "There are %s file(s)" msgstr "Existem %s arquivo(s)" diff --git a/resources/po/ro.po b/resources/po/ro.po index 9a082591..6b5ae5e8 100644 --- a/resources/po/ro.po +++ b/resources/po/ro.po @@ -627,39 +627,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:393 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:399 +#: src/utils/panoItemFactory.ts:394 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:403 +#: src/utils/panoItemFactory.ts:398 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:405 +#: src/utils/panoItemFactory.ts:400 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:402 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:410 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:428 +#: src/utils/panoItemFactory.ts:423 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:435 +#: src/utils/panoItemFactory.ts:430 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:436 +#: src/utils/panoItemFactory.ts:431 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/ru.po b/resources/po/ru.po index e255c3cb..713e609c 100644 --- a/resources/po/ru.po +++ b/resources/po/ru.po @@ -627,39 +627,39 @@ msgstr "Покачивающийся индикатор" msgid "Wiggles the indicator on panel" msgstr "Покачивающийся индикатор на панели" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:393 msgid "Image Copied" msgstr "Изображение скопировано" -#: src/utils/panoItemFactory.ts:399 +#: src/utils/panoItemFactory.ts:394 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "Ширина: %spx, Высота: %spx, Размер: %s" -#: src/utils/panoItemFactory.ts:403 +#: src/utils/panoItemFactory.ts:398 msgid "Text Copied" msgstr "Текст скопирован" -#: src/utils/panoItemFactory.ts:405 +#: src/utils/panoItemFactory.ts:400 msgid "Code Copied" msgstr "Код скопирован" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:402 msgid "Emoji Copied" msgstr "Эмодзи скопирован" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:410 msgid "Link Copied" msgstr "Ссылка скопирована" -#: src/utils/panoItemFactory.ts:428 +#: src/utils/panoItemFactory.ts:423 msgid "Color Copied" msgstr "Цвет скопирован" -#: src/utils/panoItemFactory.ts:435 +#: src/utils/panoItemFactory.ts:430 msgid "File %s" msgstr "Файл %s" -#: src/utils/panoItemFactory.ts:436 +#: src/utils/panoItemFactory.ts:431 msgid "There are %s file(s)" msgstr "Есть %s файлов" diff --git a/resources/po/sk.po b/resources/po/sk.po index bd9bf130..203388ee 100644 --- a/resources/po/sk.po +++ b/resources/po/sk.po @@ -627,39 +627,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:393 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:399 +#: src/utils/panoItemFactory.ts:394 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:403 +#: src/utils/panoItemFactory.ts:398 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:405 +#: src/utils/panoItemFactory.ts:400 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:402 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:410 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:428 +#: src/utils/panoItemFactory.ts:423 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:435 +#: src/utils/panoItemFactory.ts:430 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:436 +#: src/utils/panoItemFactory.ts:431 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/sv.po b/resources/po/sv.po index fac07b45..a7d0c2d5 100644 --- a/resources/po/sv.po +++ b/resources/po/sv.po @@ -627,39 +627,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:393 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:399 +#: src/utils/panoItemFactory.ts:394 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:403 +#: src/utils/panoItemFactory.ts:398 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:405 +#: src/utils/panoItemFactory.ts:400 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:402 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:410 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:428 +#: src/utils/panoItemFactory.ts:423 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:435 +#: src/utils/panoItemFactory.ts:430 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:436 +#: src/utils/panoItemFactory.ts:431 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/tr.po b/resources/po/tr.po index 1377e190..64288f88 100644 --- a/resources/po/tr.po +++ b/resources/po/tr.po @@ -627,39 +627,39 @@ msgstr "Göstergeyi Oynat" msgid "Wiggles the indicator on panel" msgstr "Paneldeki göstergeyi oynatır" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:393 msgid "Image Copied" msgstr "Resim Kopyalandı" -#: src/utils/panoItemFactory.ts:399 +#: src/utils/panoItemFactory.ts:394 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "Genişlik: %spx, Yükseklik: %spx, Boyut: %s" -#: src/utils/panoItemFactory.ts:403 +#: src/utils/panoItemFactory.ts:398 msgid "Text Copied" msgstr "Yazı Kopyalandı" -#: src/utils/panoItemFactory.ts:405 +#: src/utils/panoItemFactory.ts:400 msgid "Code Copied" msgstr "Kod Kopyalandı" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:402 msgid "Emoji Copied" msgstr "İfade Kopyalandı" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:410 msgid "Link Copied" msgstr "Bağlantı Kopyalandı" -#: src/utils/panoItemFactory.ts:428 +#: src/utils/panoItemFactory.ts:423 msgid "Color Copied" msgstr "Renk Kopyalandı" -#: src/utils/panoItemFactory.ts:435 +#: src/utils/panoItemFactory.ts:430 msgid "File %s" msgstr "Dosya %s" -#: src/utils/panoItemFactory.ts:436 +#: src/utils/panoItemFactory.ts:431 msgid "There are %s file(s)" msgstr "%s kadar dosya var" diff --git a/resources/po/uk.po b/resources/po/uk.po index 89f24203..7b8e9cf8 100644 --- a/resources/po/uk.po +++ b/resources/po/uk.po @@ -627,39 +627,39 @@ msgstr "Коливання індикатора" msgid "Wiggles the indicator on panel" msgstr "Коливає індикатор на панелі" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:393 msgid "Image Copied" msgstr "Зображення скопійовано" -#: src/utils/panoItemFactory.ts:399 +#: src/utils/panoItemFactory.ts:394 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "Ширина: %spx, Висота: %spx, Розмір: %s" -#: src/utils/panoItemFactory.ts:403 +#: src/utils/panoItemFactory.ts:398 msgid "Text Copied" msgstr "Текст скопійовано" -#: src/utils/panoItemFactory.ts:405 +#: src/utils/panoItemFactory.ts:400 msgid "Code Copied" msgstr "Код скопійовано" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:402 msgid "Emoji Copied" msgstr "Емодзі скопійовано" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:410 msgid "Link Copied" msgstr "Посилання скопійовано" -#: src/utils/panoItemFactory.ts:428 +#: src/utils/panoItemFactory.ts:423 msgid "Color Copied" msgstr "Колір скопійовано" -#: src/utils/panoItemFactory.ts:435 +#: src/utils/panoItemFactory.ts:430 msgid "File %s" msgstr "Файл %s" -#: src/utils/panoItemFactory.ts:436 +#: src/utils/panoItemFactory.ts:431 msgid "There are %s file(s)" msgstr "Існує %s файл(ів)" diff --git a/resources/po/vi.po b/resources/po/vi.po index 366c7442..7216be4f 100644 --- a/resources/po/vi.po +++ b/resources/po/vi.po @@ -627,39 +627,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:393 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:399 +#: src/utils/panoItemFactory.ts:394 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:403 +#: src/utils/panoItemFactory.ts:398 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:405 +#: src/utils/panoItemFactory.ts:400 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:402 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:410 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:428 +#: src/utils/panoItemFactory.ts:423 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:435 +#: src/utils/panoItemFactory.ts:430 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:436 +#: src/utils/panoItemFactory.ts:431 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/zh_CN.po b/resources/po/zh_CN.po index 8d24ca9a..b3dbb880 100644 --- a/resources/po/zh_CN.po +++ b/resources/po/zh_CN.po @@ -627,39 +627,39 @@ msgstr "抖动指示器" msgid "Wiggles the indicator on panel" msgstr "抖动面板上的程序指示器" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:393 msgid "Image Copied" msgstr "图像已复制" -#: src/utils/panoItemFactory.ts:399 +#: src/utils/panoItemFactory.ts:394 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "宽:%spx,高:%spx,尺寸:%s" -#: src/utils/panoItemFactory.ts:403 +#: src/utils/panoItemFactory.ts:398 msgid "Text Copied" msgstr "文本已复制" -#: src/utils/panoItemFactory.ts:405 +#: src/utils/panoItemFactory.ts:400 msgid "Code Copied" msgstr "代码已复制" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:402 msgid "Emoji Copied" msgstr "表情符号已复制" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:410 msgid "Link Copied" msgstr "链接已复制" -#: src/utils/panoItemFactory.ts:428 +#: src/utils/panoItemFactory.ts:423 msgid "Color Copied" msgstr "颜色已复制" -#: src/utils/panoItemFactory.ts:435 +#: src/utils/panoItemFactory.ts:430 msgid "File %s" msgstr "文件%s" -#: src/utils/panoItemFactory.ts:436 +#: src/utils/panoItemFactory.ts:431 msgid "There are %s file(s)" msgstr "%s个文件" diff --git a/resources/po/zh_TW.po b/resources/po/zh_TW.po index 3910dec2..7592d606 100644 --- a/resources/po/zh_TW.po +++ b/resources/po/zh_TW.po @@ -627,39 +627,39 @@ msgstr "振動圖示" msgid "Wiggles the indicator on panel" msgstr "在頂欄中振動圖示" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:393 msgid "Image Copied" msgstr "已複製圖片" -#: src/utils/panoItemFactory.ts:399 +#: src/utils/panoItemFactory.ts:394 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "寬度:%s個像素,高度:%s個像素,大小:%s" -#: src/utils/panoItemFactory.ts:403 +#: src/utils/panoItemFactory.ts:398 msgid "Text Copied" msgstr "已複製文字" -#: src/utils/panoItemFactory.ts:405 +#: src/utils/panoItemFactory.ts:400 msgid "Code Copied" msgstr "已複製程式碼" -#: src/utils/panoItemFactory.ts:407 +#: src/utils/panoItemFactory.ts:402 msgid "Emoji Copied" msgstr "已複製表情符號" -#: src/utils/panoItemFactory.ts:415 +#: src/utils/panoItemFactory.ts:410 msgid "Link Copied" msgstr "已複製連結" -#: src/utils/panoItemFactory.ts:428 +#: src/utils/panoItemFactory.ts:423 msgid "Color Copied" msgstr "已複製顏色" -#: src/utils/panoItemFactory.ts:435 +#: src/utils/panoItemFactory.ts:430 msgid "File %s" msgstr "檔案 %s" -#: src/utils/panoItemFactory.ts:436 +#: src/utils/panoItemFactory.ts:431 msgid "There are %s file(s)" msgstr "這裡有 %s 個檔案" diff --git a/rollup.config.mjs b/rollup.config.mjs index 54a2fd41..46cea8d8 100644 --- a/rollup.config.mjs +++ b/rollup.config.mjs @@ -81,7 +81,6 @@ const thirdParty = [ 'date-fns/locale', 'is-url', 'pretty-bytes', - 'validate-color', 'highlight.js/lib/core', 'highlight.js/lib/languages/bash', 'highlight.js/lib/languages/c', diff --git a/src/components/colorPanoItem.ts b/src/components/colorPanoItem.ts index e544e917..6a43ba9f 100644 --- a/src/components/colorPanoItem.ts +++ b/src/components/colorPanoItem.ts @@ -7,7 +7,7 @@ import { ClipboardContent, ClipboardManager, ContentType } from '@pano/utils/cli import { DBItem } from '@pano/utils/db'; import { registerGObjectClass } from '@pano/utils/gjs'; import { orientationCompatibility } from '@pano/utils/shell_compatibility'; -import * as colorString from 'color-string'; +import { get as getColor } from 'color-string'; @registerGObjectClass export class ColorPanoItem extends PanoItem { @@ -74,7 +74,7 @@ export class ColorPanoItem extends PanoItem { const metadataFontSize = this.colorItemSettings.get_int('metadata-font-size'); // Calculate the luminance to determine the icon and text color with sufficient contrast - const rgb = colorString.get.rgb(this.dbItem.content) ?? [0, 0, 0, 0]; + const rgb = getColor.rgb(this.dbItem.content) ?? [0, 0, 0, 0]; const L = 0.2126 * this.calculateChannel(rgb[0]) + 0.7152 * this.calculateChannel(rgb[1]) + @@ -85,7 +85,7 @@ export class ColorPanoItem extends PanoItem { const textColor = L > 0.179 ? '#000000' : '#ffffff'; this.header.set_style(`background-color: ${headerBgColor}; color: ${headerColor};`); - this.container.set_style(`background-color: ${this.dbItem.content};`); + this.container.set_style(`background-color: rgb(${rgb[0]}, ${rgb[1]}, ${rgb[2]});`); this.icon.set_style(`color: ${iconColor};`); this.label.set_style(`color: ${textColor}; font-family: ${metadataFontFamily}; font-size: ${metadataFontSize}px;`); } diff --git a/src/styles/stylesheet.css b/src/styles/stylesheet.css index a4fd25b4..af8278b3 100644 --- a/src/styles/stylesheet.css +++ b/src/styles/stylesheet.css @@ -244,8 +244,8 @@ .pano-item-file .copied-file-preview { margin: 10px; margin-top: 7px; - border-radius: 5px; - box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1); + border-radius: 12px; + border: 1px solid rgba(0, 0, 0, 0.36); } .pano-item-file .copied-file-preview-text { @@ -254,7 +254,7 @@ .pano-item-file .copied-file-preview-files .copied-file-name { padding: 2px 10px; - border-top: 1px solid rgba(255, 255, 255, 0.1); + border-top: 1px solid rgba(0, 0, 0, 0.36); } .pano-item-file .copied-file-preview-files .copied-file-name:first-child { diff --git a/src/utils/panoItemFactory.ts b/src/utils/panoItemFactory.ts index 86998b2a..f99c4028 100644 --- a/src/utils/panoItemFactory.ts +++ b/src/utils/panoItemFactory.ts @@ -54,7 +54,6 @@ import typescript from 'highlight.js/lib/languages/typescript'; import yaml from 'highlight.js/lib/languages/yaml'; import isUrl from 'is-url'; import prettyBytes from 'pretty-bytes'; -import { validateHTMLColorHex, validateHTMLColorName, validateHTMLColorRgb } from 'validate-color'; hljs.registerLanguage('python', python); hljs.registerLanguage('markdown', markdown); @@ -238,11 +237,7 @@ const findOrCreateDbItem = async (ext: ExtensionBase, clip: ClipboardContent): P return linkDbItem; } - if ( - validateHTMLColorHex(trimmedValue) || - validateHTMLColorRgb(trimmedValue) || - validateHTMLColorName(trimmedValue) - ) { + if (colorString.get(trimmedValue) !== null) { return db.save({ content: trimmedValue, copyDate: new Date(), diff --git a/yarn.lock b/yarn.lock index 072d6789..3d8d1a4a 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3724,10 +3724,6 @@ v8-compile-cache-lib@^3.0.1: resolved "https://registry.yarnpkg.com/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz#6336e8d71965cb3d35a1bbb7868445a7c05264bf" integrity sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg== -"validate-color@https://gitpkg.now.sh/dreamyguy/validate-color/src/validate-color": - version "0.0.0" - resolved "https://gitpkg.now.sh/dreamyguy/validate-color/src/validate-color#9e890cb48fed5e22027a67d98750232c4ce780f6" - vinyl@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-3.0.0.tgz#11e14732bf56e2faa98ffde5157fe6c13259ff30" From 5cf4897d6afa15cb02b152057bb34091f375b42c Mon Sep 17 00:00:00 2001 From: boerdereinar Date: Mon, 6 May 2024 20:39:44 +0200 Subject: [PATCH 13/45] Add color-string to rollup --- rollup.config.mjs | 1 + src/components/colorPanoItem.ts | 4 ++-- src/utils/panoItemFactory.ts | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/rollup.config.mjs b/rollup.config.mjs index 46cea8d8..7e1c5422 100644 --- a/rollup.config.mjs +++ b/rollup.config.mjs @@ -81,6 +81,7 @@ const thirdParty = [ 'date-fns/locale', 'is-url', 'pretty-bytes', + 'color-string', 'highlight.js/lib/core', 'highlight.js/lib/languages/bash', 'highlight.js/lib/languages/c', diff --git a/src/components/colorPanoItem.ts b/src/components/colorPanoItem.ts index 6a43ba9f..88516ad2 100644 --- a/src/components/colorPanoItem.ts +++ b/src/components/colorPanoItem.ts @@ -7,7 +7,7 @@ import { ClipboardContent, ClipboardManager, ContentType } from '@pano/utils/cli import { DBItem } from '@pano/utils/db'; import { registerGObjectClass } from '@pano/utils/gjs'; import { orientationCompatibility } from '@pano/utils/shell_compatibility'; -import { get as getColor } from 'color-string'; +import colorString from 'color-string'; @registerGObjectClass export class ColorPanoItem extends PanoItem { @@ -74,7 +74,7 @@ export class ColorPanoItem extends PanoItem { const metadataFontSize = this.colorItemSettings.get_int('metadata-font-size'); // Calculate the luminance to determine the icon and text color with sufficient contrast - const rgb = getColor.rgb(this.dbItem.content) ?? [0, 0, 0, 0]; + const rgb = colorString.get.rgb(this.dbItem.content) ?? [0, 0, 0, 0]; const L = 0.2126 * this.calculateChannel(rgb[0]) + 0.7152 * this.calculateChannel(rgb[1]) + diff --git a/src/utils/panoItemFactory.ts b/src/utils/panoItemFactory.ts index f99c4028..45271e62 100644 --- a/src/utils/panoItemFactory.ts +++ b/src/utils/panoItemFactory.ts @@ -25,7 +25,7 @@ import { playAudio, } from '@pano/utils/shell'; import { notify } from '@pano/utils/ui'; -import * as colorString from 'color-string'; +import colorString from 'color-string'; import hljs from 'highlight.js/lib/core'; import bash from 'highlight.js/lib/languages/bash'; import c from 'highlight.js/lib/languages/c'; From eb2f77b4b2a4ccd92ed53ffeb6edee3e38f5b239 Mon Sep 17 00:00:00 2001 From: boerdereinar Date: Mon, 6 May 2024 20:45:15 +0200 Subject: [PATCH 14/45] Fix prettier problems --- src/styles/stylesheet.css | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/styles/stylesheet.css b/src/styles/stylesheet.css index af8278b3..17729704 100644 --- a/src/styles/stylesheet.css +++ b/src/styles/stylesheet.css @@ -53,13 +53,13 @@ } .pano-item.compact:first-child { - margin-top: 6px!important; - margin-left: 6px!important; + margin-top: 6px !important; + margin-left: 6px !important; } .pano-item.compact:last-child { - margin-bottom: 6px!important; - margin-right: 6px!important; + margin-bottom: 6px !important; + margin-right: 6px !important; } .pano-item:hover { @@ -221,7 +221,8 @@ height: 2.8em; } -.pano-item-file.no-preview .title-container, .pano-item-file.compact .title-container { +.pano-item-file.no-preview .title-container, +.pano-item-file.compact .title-container { height: auto; } From d1b4098c3cdf5cc8d8def8b8c7b6dfe4483ebc64 Mon Sep 17 00:00:00 2001 From: boerdereinar Date: Tue, 7 May 2024 10:40:13 +0200 Subject: [PATCH 15/45] Re-add removed translations --- resources/po/cs.po | 4 ++-- resources/po/de.po | 4 ++-- resources/po/es.po | 4 ++-- resources/po/fr.po | 4 ++-- resources/po/it.po | 4 ++-- resources/po/pt_BR.po | 4 ++-- resources/po/ru.po | 4 ++-- resources/po/tr.po | 4 ++-- resources/po/zh_CN.po | 4 ++-- resources/po/zh_TW.po | 4 ++-- 10 files changed, 20 insertions(+), 20 deletions(-) diff --git a/resources/po/cs.po b/resources/po/cs.po index a3e15597..934eae1c 100644 --- a/resources/po/cs.po +++ b/resources/po/cs.po @@ -243,11 +243,11 @@ msgstr "Můžete změnit písmo nadpisu" #: src/prefs/customization/commonStyleGroup.ts:92 msgid "Item Date Font" -msgstr "" +msgstr "Písmo položky Datum" #: src/prefs/customization/commonStyleGroup.ts:92 msgid "You can change the font of the date" -msgstr "" +msgstr "Můžete změnit písmo data" #: src/prefs/customization/commonStyleGroup.ts:96 msgid "Active Item Border Color" diff --git a/resources/po/de.po b/resources/po/de.po index 1e64308e..c353a21c 100644 --- a/resources/po/de.po +++ b/resources/po/de.po @@ -243,11 +243,11 @@ msgstr "Sie können die Schriftart des Objekttitels ändern" #: src/prefs/customization/commonStyleGroup.ts:92 msgid "Item Date Font" -msgstr "" +msgstr "Schriftart des Eintragsdatums" #: src/prefs/customization/commonStyleGroup.ts:92 msgid "You can change the font of the date" -msgstr "" +msgstr "Sie können die Schriftart des Datums ändern" #: src/prefs/customization/commonStyleGroup.ts:96 msgid "Active Item Border Color" diff --git a/resources/po/es.po b/resources/po/es.po index 9a78b939..b83ba68e 100644 --- a/resources/po/es.po +++ b/resources/po/es.po @@ -243,11 +243,11 @@ msgstr "Puedes cambiar la tipografía de los títulos de las notas" #: src/prefs/customization/commonStyleGroup.ts:92 msgid "Item Date Font" -msgstr "" +msgstr "Tipo de letra de la fecha de las notas" #: src/prefs/customization/commonStyleGroup.ts:92 msgid "You can change the font of the date" -msgstr "" +msgstr "Puedes cambiar la tipografía de la fecha" #: src/prefs/customization/commonStyleGroup.ts:96 msgid "Active Item Border Color" diff --git a/resources/po/fr.po b/resources/po/fr.po index b586e3b5..f3e18749 100644 --- a/resources/po/fr.po +++ b/resources/po/fr.po @@ -243,11 +243,11 @@ msgstr "Vous pouvez modifier la police du titre" #: src/prefs/customization/commonStyleGroup.ts:92 msgid "Item Date Font" -msgstr "" +msgstr "Police de la date de l’élément" #: src/prefs/customization/commonStyleGroup.ts:92 msgid "You can change the font of the date" -msgstr "" +msgstr "Vous pouvez modifier la police de la date" #: src/prefs/customization/commonStyleGroup.ts:96 msgid "Active Item Border Color" diff --git a/resources/po/it.po b/resources/po/it.po index 915fde3a..fee5f603 100644 --- a/resources/po/it.po +++ b/resources/po/it.po @@ -243,11 +243,11 @@ msgstr "Puoi cambiare il font del titolo" #: src/prefs/customization/commonStyleGroup.ts:92 msgid "Item Date Font" -msgstr "" +msgstr "Data font elemento" #: src/prefs/customization/commonStyleGroup.ts:92 msgid "You can change the font of the date" -msgstr "" +msgstr "Puoi cambiare il font della data" #: src/prefs/customization/commonStyleGroup.ts:96 msgid "Active Item Border Color" diff --git a/resources/po/pt_BR.po b/resources/po/pt_BR.po index 6a21cf40..fe9e7dcc 100644 --- a/resources/po/pt_BR.po +++ b/resources/po/pt_BR.po @@ -243,11 +243,11 @@ msgstr "Você pode mudar a fonte do título" #: src/prefs/customization/commonStyleGroup.ts:92 msgid "Item Date Font" -msgstr "" +msgstr "Fonte da data do item" #: src/prefs/customization/commonStyleGroup.ts:92 msgid "You can change the font of the date" -msgstr "" +msgstr "Você pode mudar a fonte da data" #: src/prefs/customization/commonStyleGroup.ts:96 msgid "Active Item Border Color" diff --git a/resources/po/ru.po b/resources/po/ru.po index 713e609c..b84d6b52 100644 --- a/resources/po/ru.po +++ b/resources/po/ru.po @@ -243,11 +243,11 @@ msgstr "Вы можете изменить шрифт заголовка" #: src/prefs/customization/commonStyleGroup.ts:92 msgid "Item Date Font" -msgstr "" +msgstr "Шрифт даты элемента" #: src/prefs/customization/commonStyleGroup.ts:92 msgid "You can change the font of the date" -msgstr "" +msgstr "Вы можете изменить шрифт даты" #: src/prefs/customization/commonStyleGroup.ts:96 msgid "Active Item Border Color" diff --git a/resources/po/tr.po b/resources/po/tr.po index 64288f88..0d8883e6 100644 --- a/resources/po/tr.po +++ b/resources/po/tr.po @@ -243,11 +243,11 @@ msgstr "Öğe başlığının yazı tipini değiştirebilirsiniz" #: src/prefs/customization/commonStyleGroup.ts:92 msgid "Item Date Font" -msgstr "" +msgstr "Öğe Tarihi Yazı Tipi" #: src/prefs/customization/commonStyleGroup.ts:92 msgid "You can change the font of the date" -msgstr "" +msgstr "Öğe tarihi yazı tipini değiştirebilirsiniz" #: src/prefs/customization/commonStyleGroup.ts:96 msgid "Active Item Border Color" diff --git a/resources/po/zh_CN.po b/resources/po/zh_CN.po index b3dbb880..1297edeb 100644 --- a/resources/po/zh_CN.po +++ b/resources/po/zh_CN.po @@ -243,11 +243,11 @@ msgstr "修改项目标题字体" #: src/prefs/customization/commonStyleGroup.ts:92 msgid "Item Date Font" -msgstr "" +msgstr "项目日期字体" #: src/prefs/customization/commonStyleGroup.ts:92 msgid "You can change the font of the date" -msgstr "" +msgstr "修改项目日期字体" #: src/prefs/customization/commonStyleGroup.ts:96 msgid "Active Item Border Color" diff --git a/resources/po/zh_TW.po b/resources/po/zh_TW.po index 7592d606..814f1243 100644 --- a/resources/po/zh_TW.po +++ b/resources/po/zh_TW.po @@ -243,11 +243,11 @@ msgstr "你可以更換標題的字體" #: src/prefs/customization/commonStyleGroup.ts:92 msgid "Item Date Font" -msgstr "" +msgstr "物件日期字體" #: src/prefs/customization/commonStyleGroup.ts:92 msgid "You can change the font of the date" -msgstr "" +msgstr "你可以更換日期的字體" #: src/prefs/customization/commonStyleGroup.ts:96 msgid "Active Item Border Color" From 3ffe4b8c92c435caff32fc54097c2a016e968437 Mon Sep 17 00:00:00 2001 From: boerdereinar Date: Tue, 7 May 2024 17:51:11 +0200 Subject: [PATCH 16/45] Make item width and height configurable --- resources/po/ar.po | 64 +++++++++-------- resources/po/bg.po | 64 +++++++++-------- resources/po/cs.po | 68 +++++++++++-------- resources/po/da.po | 64 +++++++++-------- resources/po/de.po | 68 +++++++++++-------- resources/po/el.po | 64 +++++++++-------- resources/po/en.po | 64 +++++++++-------- resources/po/es.po | 68 +++++++++++-------- resources/po/et.po | 64 +++++++++-------- resources/po/fi.po | 64 +++++++++-------- resources/po/fr.po | 68 +++++++++++-------- resources/po/he.po | 64 +++++++++-------- resources/po/hr.po | 64 +++++++++-------- resources/po/hu.po | 64 +++++++++-------- resources/po/is.po | 64 +++++++++-------- resources/po/it.po | 68 +++++++++++-------- resources/po/ja.po | 64 +++++++++-------- resources/po/ko.po | 66 ++++++++++-------- resources/po/nl.po | 64 +++++++++-------- resources/po/no.po | 64 +++++++++-------- resources/po/oc.po | 64 +++++++++-------- resources/po/pano@elhan.io.pot | 66 ++++++++++-------- resources/po/pl.po | 64 +++++++++-------- resources/po/pt.po | 64 +++++++++-------- resources/po/pt_BR.po | 68 +++++++++++-------- resources/po/ro.po | 64 +++++++++-------- resources/po/ru.po | 68 +++++++++++-------- resources/po/sk.po | 64 +++++++++-------- resources/po/sv.po | 64 +++++++++-------- resources/po/tr.po | 68 +++++++++++-------- resources/po/uk.po | 68 +++++++++++-------- resources/po/vi.po | 64 +++++++++-------- resources/po/zh_CN.po | 68 +++++++++++-------- resources/po/zh_TW.po | 68 +++++++++++-------- ...rg.gnome.shell.extensions.pano.gschema.xml | 12 +++- src/components/emojiPanoItem.ts | 2 +- src/components/filePanoItem.ts | 3 +- src/components/linkPanoItem.ts | 4 +- src/components/panoItem.ts | 9 +-- src/containers/panoWindow.ts | 11 +-- src/prefs/customization/commonStyleGroup.ts | 6 +- 41 files changed, 1279 insertions(+), 992 deletions(-) diff --git a/resources/po/ar.po b/resources/po/ar.po index 769920aa..7f32f319 100644 --- a/resources/po/ar.po +++ b/resources/po/ar.po @@ -161,115 +161,123 @@ msgid "Legacy Icons" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "Item Size" +msgid "Item Width" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "You can change the item size" +msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:38 +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "Item Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "You can change the item height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:42 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:39 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:47 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:48 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:56 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:70 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:67 +#: src/prefs/customization/commonStyleGroup.ts:71 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:78 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:75 +#: src/prefs/customization/commonStyleGroup.ts:79 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:83 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:100 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:108 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:105 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:113 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/bg.po b/resources/po/bg.po index 51491598..660a6b63 100644 --- a/resources/po/bg.po +++ b/resources/po/bg.po @@ -161,115 +161,123 @@ msgid "Legacy Icons" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "Item Size" +msgid "Item Width" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "You can change the item size" +msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:38 +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "Item Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "You can change the item height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:42 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:39 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:47 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:48 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:56 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:70 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:67 +#: src/prefs/customization/commonStyleGroup.ts:71 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:78 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:75 +#: src/prefs/customization/commonStyleGroup.ts:79 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:83 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:100 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:108 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:105 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:113 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/cs.po b/resources/po/cs.po index 934eae1c..5eb72254 100644 --- a/resources/po/cs.po +++ b/resources/po/cs.po @@ -161,115 +161,123 @@ msgid "Legacy Icons" msgstr "Starší ikony" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "Item Size" -msgstr "Velikost položky" +msgid "Item Width" +msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "You can change the item size" -msgstr "Můžete změnit velikost položky" +msgid "You can change the item width" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "Item Height" +msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:38 +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "You can change the item height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:42 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:39 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:47 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:48 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:56 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Window Position" msgstr "Poloha okna" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "You can change position of the Pano" msgstr "Můžete změnit pozici Pano" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Bottom" msgstr "Dole" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Left" msgstr "Vlevo" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Right" msgstr "Vpravo" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Top" msgstr "Nahoře" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:70 msgid "Window Background Color" msgstr "Barva pozadí okna" -#: src/prefs/customization/commonStyleGroup.ts:67 +#: src/prefs/customization/commonStyleGroup.ts:71 msgid "You can change the window background color" msgstr "Můžete změnit barvu pozadí okna" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:78 msgid "Incognito Window Background Color" msgstr "Barva pozadí anonymního okna" -#: src/prefs/customization/commonStyleGroup.ts:75 +#: src/prefs/customization/commonStyleGroup.ts:79 msgid "You can change the incognito window background color" msgstr "Můžete změnit barvu pozadí anonymního okna" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Search Bar Font" msgstr "Písmo vyhledávací lišty" -#: src/prefs/customization/commonStyleGroup.ts:83 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the font of the search bar" msgstr "Můžete změnit písmo vyhledávání" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Item Title Font" msgstr "Písmo názvu položky" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "Můžete změnit písmo nadpisu" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Item Date Font" msgstr "Písmo položky Datum" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "You can change the font of the date" msgstr "Můžete změnit písmo data" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:100 msgid "Active Item Border Color" msgstr "Barva ohraničení aktivní položky" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "You can change the active item border color" msgstr "Můžete změnit barvu okraje aktivní položky" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:108 msgid "Hovered Item Border Color" msgstr "Barva ohraničení při najetí na položku" -#: src/prefs/customization/commonStyleGroup.ts:105 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "You can change the hovered item border color" msgstr "Můžete změnit barvu ohraničení při najetí na položku" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:113 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/da.po b/resources/po/da.po index f9180b70..7bc73fdf 100644 --- a/resources/po/da.po +++ b/resources/po/da.po @@ -161,115 +161,123 @@ msgid "Legacy Icons" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "Item Size" +msgid "Item Width" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "You can change the item size" +msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:38 +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "Item Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "You can change the item height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:42 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:39 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:47 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:48 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:56 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:70 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:67 +#: src/prefs/customization/commonStyleGroup.ts:71 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:78 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:75 +#: src/prefs/customization/commonStyleGroup.ts:79 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:83 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:100 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:108 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:105 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:113 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/de.po b/resources/po/de.po index c353a21c..7458eea0 100644 --- a/resources/po/de.po +++ b/resources/po/de.po @@ -161,115 +161,123 @@ msgid "Legacy Icons" msgstr "Veraltete Symbole" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "Item Size" -msgstr "Eintragsgröße" +msgid "Item Width" +msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "You can change the item size" -msgstr "Sie können die Objektgröße ändern" +msgid "You can change the item width" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "Item Height" +msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:38 +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "You can change the item height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:42 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:39 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:47 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:48 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:56 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Window Position" msgstr "Fensterposition" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "You can change position of the Pano" msgstr "Sie können die Position von Pano ändern" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Bottom" msgstr "Unten" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Left" msgstr "Links" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Right" msgstr "Rechts" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Top" msgstr "Oben" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:70 msgid "Window Background Color" msgstr "Hintergrundfarbe des Fensters" -#: src/prefs/customization/commonStyleGroup.ts:67 +#: src/prefs/customization/commonStyleGroup.ts:71 msgid "You can change the window background color" msgstr "Sie können die Hintergrundfarbe des Fensters ändern" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:78 msgid "Incognito Window Background Color" msgstr "Hintergrundfarbe des Inkognito-Fensters" -#: src/prefs/customization/commonStyleGroup.ts:75 +#: src/prefs/customization/commonStyleGroup.ts:79 msgid "You can change the incognito window background color" msgstr "Sie können die Hintergrundfarbe des Inkognito-Fensters ändern" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Search Bar Font" msgstr "Schriftart der Suchleiste" -#: src/prefs/customization/commonStyleGroup.ts:83 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the font of the search bar" msgstr "Sie können die Schriftart der Suchleiste ändern" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Item Title Font" msgstr "Schriftart des Eintragtitels" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "Sie können die Schriftart des Objekttitels ändern" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Item Date Font" msgstr "Schriftart des Eintragsdatums" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "You can change the font of the date" msgstr "Sie können die Schriftart des Datums ändern" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:100 msgid "Active Item Border Color" msgstr "Randfarbe des aktiven Eintrags" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "You can change the active item border color" msgstr "Sie können die Randfarbe des aktiven Eintrags ändern" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:108 msgid "Hovered Item Border Color" msgstr "Randfarbe des fokussierten Eintrags" -#: src/prefs/customization/commonStyleGroup.ts:105 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "You can change the hovered item border color" msgstr "Sie können die Randfarbe des fokussierten Eintrags ändern" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:113 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/el.po b/resources/po/el.po index 22975784..8554f560 100644 --- a/resources/po/el.po +++ b/resources/po/el.po @@ -161,115 +161,123 @@ msgid "Legacy Icons" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "Item Size" +msgid "Item Width" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "You can change the item size" +msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:38 +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "Item Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "You can change the item height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:42 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:39 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:47 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:48 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:56 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:70 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:67 +#: src/prefs/customization/commonStyleGroup.ts:71 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:78 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:75 +#: src/prefs/customization/commonStyleGroup.ts:79 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:83 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:100 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:108 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:105 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:113 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/en.po b/resources/po/en.po index 4311c2f9..ff995a73 100644 --- a/resources/po/en.po +++ b/resources/po/en.po @@ -161,115 +161,123 @@ msgid "Legacy Icons" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "Item Size" +msgid "Item Width" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "You can change the item size" +msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:38 +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "Item Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "You can change the item height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:42 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:39 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:47 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:48 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:56 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:70 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:67 +#: src/prefs/customization/commonStyleGroup.ts:71 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:78 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:75 +#: src/prefs/customization/commonStyleGroup.ts:79 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:83 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:100 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:108 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:105 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:113 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/es.po b/resources/po/es.po index b83ba68e..67ff8161 100644 --- a/resources/po/es.po +++ b/resources/po/es.po @@ -161,115 +161,123 @@ msgid "Legacy Icons" msgstr "Iconos heredados" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "Item Size" -msgstr "Tamaño de las notas" +msgid "Item Width" +msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "You can change the item size" -msgstr "Puedes cambiar el tamaño de las notas" +msgid "You can change the item width" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "Item Height" +msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:38 +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "You can change the item height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:42 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:39 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:47 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:48 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:56 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Window Position" msgstr "Posición de la ventana" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "You can change position of the Pano" msgstr "Elige la posición de la ventana de Pano" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Bottom" msgstr "Abajo" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Left" msgstr "A la izquierda" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Right" msgstr "A la derecha" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Top" msgstr "Arriba" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:70 msgid "Window Background Color" msgstr "Color de fondo de la ventana" -#: src/prefs/customization/commonStyleGroup.ts:67 +#: src/prefs/customization/commonStyleGroup.ts:71 msgid "You can change the window background color" msgstr "Puedes cambiar el color de fondo de la ventana" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:78 msgid "Incognito Window Background Color" msgstr "Color de fondo de la ventana de incógnito" -#: src/prefs/customization/commonStyleGroup.ts:75 +#: src/prefs/customization/commonStyleGroup.ts:79 msgid "You can change the incognito window background color" msgstr "Puedes cambiar el color de fondo de la ventana cuando se ejecuta el modo incógnito" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Search Bar Font" msgstr "Tipo de letra de la barra de búsqueda" -#: src/prefs/customization/commonStyleGroup.ts:83 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the font of the search bar" msgstr "Elige la tipografía de la barra de búsqueda" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Item Title Font" msgstr "Tipo de letra de los títulos de las notas" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "Puedes cambiar la tipografía de los títulos de las notas" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Item Date Font" msgstr "Tipo de letra de la fecha de las notas" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "You can change the font of the date" msgstr "Puedes cambiar la tipografía de la fecha" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:100 msgid "Active Item Border Color" msgstr "Color del borde de la nota activa" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "You can change the active item border color" msgstr "Elige el color del borde de la nota activa" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:108 msgid "Hovered Item Border Color" msgstr "Color del borde de la nota al pasar el ratón" -#: src/prefs/customization/commonStyleGroup.ts:105 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "You can change the hovered item border color" msgstr "Elige el color del borde de las notas al pasar el ratón por encima" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:113 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/et.po b/resources/po/et.po index 5a783c3d..704978d9 100644 --- a/resources/po/et.po +++ b/resources/po/et.po @@ -161,115 +161,123 @@ msgid "Legacy Icons" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "Item Size" +msgid "Item Width" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "You can change the item size" +msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:38 +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "Item Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "You can change the item height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:42 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:39 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:47 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:48 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:56 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:70 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:67 +#: src/prefs/customization/commonStyleGroup.ts:71 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:78 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:75 +#: src/prefs/customization/commonStyleGroup.ts:79 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:83 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:100 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:108 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:105 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:113 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/fi.po b/resources/po/fi.po index 8d6a2a2e..9313e8de 100644 --- a/resources/po/fi.po +++ b/resources/po/fi.po @@ -161,115 +161,123 @@ msgid "Legacy Icons" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "Item Size" +msgid "Item Width" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "You can change the item size" +msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:38 +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "Item Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "You can change the item height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:42 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:39 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:47 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:48 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:56 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:70 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:67 +#: src/prefs/customization/commonStyleGroup.ts:71 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:78 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:75 +#: src/prefs/customization/commonStyleGroup.ts:79 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:83 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:100 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:108 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:105 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:113 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/fr.po b/resources/po/fr.po index f3e18749..173f19c1 100644 --- a/resources/po/fr.po +++ b/resources/po/fr.po @@ -161,115 +161,123 @@ msgid "Legacy Icons" msgstr "Anciennes icônes" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "Item Size" -msgstr "Taille d’élément" +msgid "Item Width" +msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "You can change the item size" -msgstr "Vous pouvez changer la taille de l’élément" +msgid "You can change the item width" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "Item Height" +msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:38 +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "You can change the item height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:42 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:39 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:47 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:48 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:56 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Window Position" msgstr "Position de la fenêtre" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "You can change position of the Pano" msgstr "Vous pouvez modifier la position de Pano" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Bottom" msgstr "En bas" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Left" msgstr "À gauche" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Right" msgstr "À droite" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Top" msgstr "En haut" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:70 msgid "Window Background Color" msgstr "Couleur d’arrière-plan de la fenêtre" -#: src/prefs/customization/commonStyleGroup.ts:67 +#: src/prefs/customization/commonStyleGroup.ts:71 msgid "You can change the window background color" msgstr "Vous pouvez modifier la couleur d’arrière-plan de la fenêtre" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:78 msgid "Incognito Window Background Color" msgstr "Couleur d’arrière-plan de la fenêtre incognito" -#: src/prefs/customization/commonStyleGroup.ts:75 +#: src/prefs/customization/commonStyleGroup.ts:79 msgid "You can change the incognito window background color" msgstr "Vous pouvez modifier la couleur d’arrière-plan de la fenêtre incognito" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Search Bar Font" msgstr "Police de la barre de recherche" -#: src/prefs/customization/commonStyleGroup.ts:83 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the font of the search bar" msgstr "Vous pouvez modifier la police de la barre de recherche" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Item Title Font" msgstr "Police du titre de l’élément" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "Vous pouvez modifier la police du titre" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Item Date Font" msgstr "Police de la date de l’élément" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "You can change the font of the date" msgstr "Vous pouvez modifier la police de la date" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:100 msgid "Active Item Border Color" msgstr "Couleur de bordure de l’élément actif" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "You can change the active item border color" msgstr "Vous pouvez modifier la couleur de bordure de l’élément actif" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:108 msgid "Hovered Item Border Color" msgstr "Couleur de bordure d’un élément survolé" -#: src/prefs/customization/commonStyleGroup.ts:105 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "You can change the hovered item border color" msgstr "Vous pouvez modifier la couleur de bordure d’un élément survolé" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:113 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/he.po b/resources/po/he.po index 33c416f4..b3aae9f4 100644 --- a/resources/po/he.po +++ b/resources/po/he.po @@ -161,115 +161,123 @@ msgid "Legacy Icons" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "Item Size" +msgid "Item Width" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "You can change the item size" +msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:38 +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "Item Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "You can change the item height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:42 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:39 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:47 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:48 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:56 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:70 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:67 +#: src/prefs/customization/commonStyleGroup.ts:71 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:78 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:75 +#: src/prefs/customization/commonStyleGroup.ts:79 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:83 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:100 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:108 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:105 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:113 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/hr.po b/resources/po/hr.po index e2c6c23f..f6f60dbd 100644 --- a/resources/po/hr.po +++ b/resources/po/hr.po @@ -161,115 +161,123 @@ msgid "Legacy Icons" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "Item Size" +msgid "Item Width" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "You can change the item size" +msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:38 +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "Item Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "You can change the item height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:42 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:39 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:47 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:48 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:56 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:70 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:67 +#: src/prefs/customization/commonStyleGroup.ts:71 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:78 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:75 +#: src/prefs/customization/commonStyleGroup.ts:79 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:83 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:100 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:108 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:105 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:113 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/hu.po b/resources/po/hu.po index 9949fb8c..6ca5323c 100644 --- a/resources/po/hu.po +++ b/resources/po/hu.po @@ -161,115 +161,123 @@ msgid "Legacy Icons" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "Item Size" +msgid "Item Width" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "You can change the item size" +msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:38 +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "Item Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "You can change the item height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:42 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:39 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:47 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:48 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:56 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:70 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:67 +#: src/prefs/customization/commonStyleGroup.ts:71 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:78 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:75 +#: src/prefs/customization/commonStyleGroup.ts:79 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:83 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:100 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:108 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:105 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:113 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/is.po b/resources/po/is.po index a164d756..b0c8398e 100644 --- a/resources/po/is.po +++ b/resources/po/is.po @@ -161,115 +161,123 @@ msgid "Legacy Icons" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "Item Size" +msgid "Item Width" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "You can change the item size" +msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:38 +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "Item Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "You can change the item height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:42 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:39 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:47 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:48 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:56 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:70 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:67 +#: src/prefs/customization/commonStyleGroup.ts:71 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:78 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:75 +#: src/prefs/customization/commonStyleGroup.ts:79 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:83 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:100 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:108 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:105 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:113 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/it.po b/resources/po/it.po index fee5f603..a656afde 100644 --- a/resources/po/it.po +++ b/resources/po/it.po @@ -161,115 +161,123 @@ msgid "Legacy Icons" msgstr "Icone legacy" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "Item Size" -msgstr "Dimensione elemento" +msgid "Item Width" +msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "You can change the item size" -msgstr "Puoi modificare la dimensione dell'elemento" +msgid "You can change the item width" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "Item Height" +msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:38 +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "You can change the item height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:42 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:39 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:47 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:48 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:56 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Window Position" msgstr "Posizione della finestra" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "You can change position of the Pano" msgstr "Puoi cambiare la posizione di Pano" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Bottom" msgstr "In basso" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Left" msgstr "Sinistra" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Right" msgstr "Destra" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Top" msgstr "In alto" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:70 msgid "Window Background Color" msgstr "Colore di sfondo della finestra" -#: src/prefs/customization/commonStyleGroup.ts:67 +#: src/prefs/customization/commonStyleGroup.ts:71 msgid "You can change the window background color" msgstr "Puoi cambiare il colore di sfondo della finestra" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:78 msgid "Incognito Window Background Color" msgstr "Colore di sfondo della finestra di navigazione in incognito" -#: src/prefs/customization/commonStyleGroup.ts:75 +#: src/prefs/customization/commonStyleGroup.ts:79 msgid "You can change the incognito window background color" msgstr "Puoi cambiare il colore di sfondo della finestra di navigazione in incognito" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Search Bar Font" msgstr "Carattere della barra di ricerca" -#: src/prefs/customization/commonStyleGroup.ts:83 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the font of the search bar" msgstr "Puoi cambiare il carattere della barra di ricerca" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Item Title Font" msgstr "Font del titolo dell'elemento" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "Puoi cambiare il font del titolo" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Item Date Font" msgstr "Data font elemento" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "You can change the font of the date" msgstr "Puoi cambiare il font della data" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:100 msgid "Active Item Border Color" msgstr "Colore del bordo dell'elemento attivo" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "You can change the active item border color" msgstr "È possibile modificare il colore del bordo dell'elemento attivo" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:108 msgid "Hovered Item Border Color" msgstr "Colore del bordo dell'elemento al passaggio del mouse" -#: src/prefs/customization/commonStyleGroup.ts:105 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "You can change the hovered item border color" msgstr "Puoi cambiare il colore del bordo dell'elemento al passaggio del mouse" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:113 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/ja.po b/resources/po/ja.po index afcb1203..f0669b95 100644 --- a/resources/po/ja.po +++ b/resources/po/ja.po @@ -161,115 +161,123 @@ msgid "Legacy Icons" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "Item Size" +msgid "Item Width" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "You can change the item size" +msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:38 +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "Item Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "You can change the item height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:42 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:39 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:47 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:48 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:56 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:70 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:67 +#: src/prefs/customization/commonStyleGroup.ts:71 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:78 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:75 +#: src/prefs/customization/commonStyleGroup.ts:79 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:83 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:100 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:108 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:105 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:113 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/ko.po b/resources/po/ko.po index 2df27837..e7e0e5a4 100644 --- a/resources/po/ko.po +++ b/resources/po/ko.po @@ -161,115 +161,123 @@ msgid "Legacy Icons" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "Item Size" -msgstr "항목 크기" +msgid "Item Width" +msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "You can change the item size" +msgid "You can change the item width" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "Item Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:38 +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "You can change the item height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:42 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:39 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:47 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:48 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:56 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:70 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:67 +#: src/prefs/customization/commonStyleGroup.ts:71 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:78 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:75 +#: src/prefs/customization/commonStyleGroup.ts:79 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:83 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:100 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:108 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:105 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:113 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/nl.po b/resources/po/nl.po index 06216418..ca5cef96 100644 --- a/resources/po/nl.po +++ b/resources/po/nl.po @@ -161,115 +161,123 @@ msgid "Legacy Icons" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "Item Size" +msgid "Item Width" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "You can change the item size" +msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:38 +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "Item Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "You can change the item height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:42 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:39 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:47 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:48 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:56 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:70 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:67 +#: src/prefs/customization/commonStyleGroup.ts:71 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:78 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:75 +#: src/prefs/customization/commonStyleGroup.ts:79 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:83 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:100 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:108 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:105 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:113 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/no.po b/resources/po/no.po index 1bad3a1e..e33462fc 100644 --- a/resources/po/no.po +++ b/resources/po/no.po @@ -161,115 +161,123 @@ msgid "Legacy Icons" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "Item Size" +msgid "Item Width" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "You can change the item size" +msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:38 +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "Item Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "You can change the item height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:42 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:39 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:47 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:48 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:56 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:70 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:67 +#: src/prefs/customization/commonStyleGroup.ts:71 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:78 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:75 +#: src/prefs/customization/commonStyleGroup.ts:79 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:83 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:100 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:108 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:105 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:113 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/oc.po b/resources/po/oc.po index 33ab1012..c254587d 100644 --- a/resources/po/oc.po +++ b/resources/po/oc.po @@ -161,115 +161,123 @@ msgid "Legacy Icons" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "Item Size" +msgid "Item Width" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "You can change the item size" +msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:38 +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "Item Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "You can change the item height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:42 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:39 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:47 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:48 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:56 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:70 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:67 +#: src/prefs/customization/commonStyleGroup.ts:71 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:78 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:75 +#: src/prefs/customization/commonStyleGroup.ts:79 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:83 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:100 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:108 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:105 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:113 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/pano@elhan.io.pot b/resources/po/pano@elhan.io.pot index d6a24b21..a998e83f 100644 --- a/resources/po/pano@elhan.io.pot +++ b/resources/po/pano@elhan.io.pot @@ -2,7 +2,7 @@ msgid "" msgstr "" "Content-Type: text/plain; charset=UTF-8\n" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:100 msgid "Active Item Border Color" msgstr "" @@ -61,7 +61,7 @@ msgstr "" msgid "Body Text Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Bottom" msgstr "" @@ -149,15 +149,15 @@ msgstr "" msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:47 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:48 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:39 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Controls the visibility of the clipboard item headers" msgstr "" @@ -193,7 +193,7 @@ msgstr "" msgid "Emoji Size" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:38 +#: src/prefs/customization/commonStyleGroup.ts:42 msgid "Enable Headers" msgstr "" @@ -265,7 +265,7 @@ msgstr "" msgid "History Length" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:108 msgid "Hovered Item Border Color" msgstr "" @@ -293,26 +293,30 @@ msgstr "" msgid "Incognito Mode Shortcut" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:78 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 -msgid "Item Size" +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "Item Height" msgstr "" #: src/prefs/customization/itemStyleGroup.ts:18 msgid "Item Style" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Item Title Font" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:33 +msgid "Item Width" +msgstr "" + #: src/components/filePanoItem.ts:202 msgid "items" msgstr "" @@ -325,7 +329,7 @@ msgstr "" msgid "Keep search entry when Pano hides" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Left" msgstr "" @@ -414,11 +418,11 @@ msgstr "" msgid "Remove on Middle Click" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Search Bar Font" msgstr "" @@ -439,7 +443,7 @@ msgstr "" msgid "Settings" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Show Controls on Hover" msgstr "" @@ -495,7 +499,7 @@ msgstr "" msgid "Title Text Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Top" msgstr "" @@ -515,7 +519,7 @@ msgstr "" msgid "When enabled, Pano will not track clipboard from excluded apps" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:113 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -531,7 +535,7 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:70 msgid "Window Background Color" msgstr "" @@ -539,15 +543,15 @@ msgstr "" msgid "Window class name" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:56 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "You can change the active item border color" msgstr "" @@ -599,7 +603,7 @@ msgstr "" msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "You can change the font of the date" msgstr "" @@ -623,7 +627,7 @@ msgstr "" msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:83 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the font of the search bar" msgstr "" @@ -631,12 +635,12 @@ msgstr "" msgid "You can change the font of the text preview" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:105 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "You can change the hovered item border color" msgstr "" @@ -644,12 +648,16 @@ msgstr "" msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:75 +#: src/prefs/customization/commonStyleGroup.ts:79 msgid "You can change the incognito window background color" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "You can change the item height" +msgstr "" + #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "You can change the item size" +msgid "You can change the item width" msgstr "" #: src/prefs/customization/linkItemStyle.ts:103 @@ -686,7 +694,7 @@ msgstr "" msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:67 +#: src/prefs/customization/commonStyleGroup.ts:71 msgid "You can change the window background color" msgstr "" diff --git a/resources/po/pl.po b/resources/po/pl.po index f9177c0a..1f2d9f23 100644 --- a/resources/po/pl.po +++ b/resources/po/pl.po @@ -161,115 +161,123 @@ msgid "Legacy Icons" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "Item Size" +msgid "Item Width" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "You can change the item size" +msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:38 +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "Item Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "You can change the item height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:42 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:39 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:47 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:48 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:56 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:70 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:67 +#: src/prefs/customization/commonStyleGroup.ts:71 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:78 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:75 +#: src/prefs/customization/commonStyleGroup.ts:79 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:83 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:100 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:108 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:105 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:113 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/pt.po b/resources/po/pt.po index 2783f591..98422cfa 100644 --- a/resources/po/pt.po +++ b/resources/po/pt.po @@ -161,115 +161,123 @@ msgid "Legacy Icons" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "Item Size" +msgid "Item Width" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "You can change the item size" +msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:38 +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "Item Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "You can change the item height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:42 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:39 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:47 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:48 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:56 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:70 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:67 +#: src/prefs/customization/commonStyleGroup.ts:71 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:78 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:75 +#: src/prefs/customization/commonStyleGroup.ts:79 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:83 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:100 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:108 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:105 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:113 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/pt_BR.po b/resources/po/pt_BR.po index fe9e7dcc..27193ede 100644 --- a/resources/po/pt_BR.po +++ b/resources/po/pt_BR.po @@ -161,115 +161,123 @@ msgid "Legacy Icons" msgstr "Ícones antigos" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "Item Size" -msgstr "Tamanho do item" +msgid "Item Width" +msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "You can change the item size" -msgstr "Você pode mudar o tamanho do item" +msgid "You can change the item width" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "Item Height" +msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:38 +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "You can change the item height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:42 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:39 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:47 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:48 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:56 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Window Position" msgstr "Posição da janela" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "You can change position of the Pano" msgstr "Você pode mudar a posição do Pano" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Bottom" msgstr "Inferior" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Left" msgstr "Esquerda" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Right" msgstr "Direita" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Top" msgstr "Superior" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:70 msgid "Window Background Color" msgstr "Cor de fundo da janela" -#: src/prefs/customization/commonStyleGroup.ts:67 +#: src/prefs/customization/commonStyleGroup.ts:71 msgid "You can change the window background color" msgstr "Você pode mudar a cor de fundo da janela" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:78 msgid "Incognito Window Background Color" msgstr "Cor de fundo da janela anônima" -#: src/prefs/customization/commonStyleGroup.ts:75 +#: src/prefs/customization/commonStyleGroup.ts:79 msgid "You can change the incognito window background color" msgstr "Você pode mudar a cor de fundo da janela anônima" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Search Bar Font" msgstr "Fonte da barra de pesquisa" -#: src/prefs/customization/commonStyleGroup.ts:83 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the font of the search bar" msgstr "Você pode mudar a fonte da barra de pesquisa" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Item Title Font" msgstr "Fonte do título do item" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "Você pode mudar a fonte do título" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Item Date Font" msgstr "Fonte da data do item" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "You can change the font of the date" msgstr "Você pode mudar a fonte da data" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:100 msgid "Active Item Border Color" msgstr "Cor da borda do item ativo" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "You can change the active item border color" msgstr "Você pode mudar a cor da borda do item ativo" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:108 msgid "Hovered Item Border Color" msgstr "Cor da borda do item destacado" -#: src/prefs/customization/commonStyleGroup.ts:105 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "You can change the hovered item border color" msgstr "Você pode mudar a cor da borda do item destacado" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:113 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/ro.po b/resources/po/ro.po index 6b5ae5e8..0c232ed8 100644 --- a/resources/po/ro.po +++ b/resources/po/ro.po @@ -161,115 +161,123 @@ msgid "Legacy Icons" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "Item Size" +msgid "Item Width" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "You can change the item size" +msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:38 +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "Item Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "You can change the item height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:42 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:39 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:47 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:48 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:56 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:70 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:67 +#: src/prefs/customization/commonStyleGroup.ts:71 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:78 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:75 +#: src/prefs/customization/commonStyleGroup.ts:79 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:83 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:100 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:108 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:105 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:113 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/ru.po b/resources/po/ru.po index b84d6b52..eaccf99a 100644 --- a/resources/po/ru.po +++ b/resources/po/ru.po @@ -161,115 +161,123 @@ msgid "Legacy Icons" msgstr "Устаревшие иконки" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "Item Size" -msgstr "Размер элемента" +msgid "Item Width" +msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "You can change the item size" -msgstr "Вы можете изменить размер элемента" +msgid "You can change the item width" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "Item Height" +msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:38 +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "You can change the item height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:42 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:39 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:47 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:48 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:56 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Window Position" msgstr "Положение окна" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "You can change position of the Pano" msgstr "Вы можете изменить положение Pano" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:70 msgid "Window Background Color" msgstr "Цвет фона окна" -#: src/prefs/customization/commonStyleGroup.ts:67 +#: src/prefs/customization/commonStyleGroup.ts:71 msgid "You can change the window background color" msgstr "Вы можете изменить цвет фона окна" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:78 msgid "Incognito Window Background Color" msgstr "Цвет фона окна инкогнито" -#: src/prefs/customization/commonStyleGroup.ts:75 +#: src/prefs/customization/commonStyleGroup.ts:79 msgid "You can change the incognito window background color" msgstr "Вы можете изменить цвет фона окна инкогнито" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Search Bar Font" msgstr "Шрифт панели поиска" -#: src/prefs/customization/commonStyleGroup.ts:83 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the font of the search bar" msgstr "Вы можете изменить шрифт в строке поиска" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Item Title Font" msgstr "Шрифт заголовка элемента" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "Вы можете изменить шрифт заголовка" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Item Date Font" msgstr "Шрифт даты элемента" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "You can change the font of the date" msgstr "Вы можете изменить шрифт даты" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:100 msgid "Active Item Border Color" msgstr "Цвет границы активного элемента" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "You can change the active item border color" msgstr "Вы можете изменить цвет границы активного элемента" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:108 msgid "Hovered Item Border Color" msgstr "Цвет границы выбранного элемента" -#: src/prefs/customization/commonStyleGroup.ts:105 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "You can change the hovered item border color" msgstr "Вы можете изменить цвет границы выбранного элемента" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:113 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/sk.po b/resources/po/sk.po index 203388ee..7b770cb6 100644 --- a/resources/po/sk.po +++ b/resources/po/sk.po @@ -161,115 +161,123 @@ msgid "Legacy Icons" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "Item Size" +msgid "Item Width" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "You can change the item size" +msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:38 +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "Item Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "You can change the item height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:42 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:39 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:47 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:48 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:56 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:70 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:67 +#: src/prefs/customization/commonStyleGroup.ts:71 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:78 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:75 +#: src/prefs/customization/commonStyleGroup.ts:79 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:83 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:100 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:108 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:105 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:113 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/sv.po b/resources/po/sv.po index a7d0c2d5..b5066f92 100644 --- a/resources/po/sv.po +++ b/resources/po/sv.po @@ -161,115 +161,123 @@ msgid "Legacy Icons" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "Item Size" +msgid "Item Width" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "You can change the item size" +msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:38 +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "Item Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "You can change the item height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:42 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:39 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:47 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:48 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:56 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:70 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:67 +#: src/prefs/customization/commonStyleGroup.ts:71 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:78 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:75 +#: src/prefs/customization/commonStyleGroup.ts:79 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:83 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:100 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:108 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:105 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:113 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/tr.po b/resources/po/tr.po index 0d8883e6..843674ff 100644 --- a/resources/po/tr.po +++ b/resources/po/tr.po @@ -161,115 +161,123 @@ msgid "Legacy Icons" msgstr "Eski Simgeler" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "Item Size" -msgstr "Simge Boyutu" +msgid "Item Width" +msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "You can change the item size" -msgstr "Öğe boyutunu değiştirebilirsiniz" +msgid "You can change the item width" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "Item Height" +msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:38 +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "You can change the item height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:42 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:39 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:47 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:48 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:56 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Window Position" msgstr "Pencere Konumu" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "You can change position of the Pano" msgstr "Pencere konumunu değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Bottom" msgstr "Alt" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Left" msgstr "Sol" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Right" msgstr "Sağ" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Top" msgstr "Üst" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:70 msgid "Window Background Color" msgstr "Pencere Arkaplan Rengi" -#: src/prefs/customization/commonStyleGroup.ts:67 +#: src/prefs/customization/commonStyleGroup.ts:71 msgid "You can change the window background color" msgstr "Pencere arkaplan rengini değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:78 msgid "Incognito Window Background Color" msgstr "Gizli Pencere Arkaplan Rengi" -#: src/prefs/customization/commonStyleGroup.ts:75 +#: src/prefs/customization/commonStyleGroup.ts:79 msgid "You can change the incognito window background color" msgstr "Gizli pencere arkaplan rengini değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Search Bar Font" msgstr "Arama Çubuğu Yazı Tipi" -#: src/prefs/customization/commonStyleGroup.ts:83 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the font of the search bar" msgstr "Arama çubuğu yazı tipini değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Item Title Font" msgstr "Öğe Başlığı Yazı Tipi" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "Öğe başlığının yazı tipini değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Item Date Font" msgstr "Öğe Tarihi Yazı Tipi" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "You can change the font of the date" msgstr "Öğe tarihi yazı tipini değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:100 msgid "Active Item Border Color" msgstr "Etkin Öğe Çerçeve Rengi" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "You can change the active item border color" msgstr "Etkin öğenin çerçeve rengini değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:108 msgid "Hovered Item Border Color" msgstr "Öğenin Üzerine Gelindiğindeki Çerçeve Rengi" -#: src/prefs/customization/commonStyleGroup.ts:105 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "You can change the hovered item border color" msgstr "Öğenin üzerine geldiğindeki çerçeve rengini değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:113 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/uk.po b/resources/po/uk.po index 7b8e9cf8..7cba50ef 100644 --- a/resources/po/uk.po +++ b/resources/po/uk.po @@ -161,115 +161,123 @@ msgid "Legacy Icons" msgstr "Класичні значки" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "Item Size" -msgstr "Розмір елемента" +msgid "Item Width" +msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "You can change the item size" -msgstr "Ви можете змінити розмір елемента" +msgid "You can change the item width" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "Item Height" +msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:38 +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "You can change the item height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:42 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:39 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:47 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:48 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:56 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:70 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:67 +#: src/prefs/customization/commonStyleGroup.ts:71 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:78 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:75 +#: src/prefs/customization/commonStyleGroup.ts:79 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:83 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:100 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:108 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:105 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:113 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/vi.po b/resources/po/vi.po index 7216be4f..037d586d 100644 --- a/resources/po/vi.po +++ b/resources/po/vi.po @@ -161,115 +161,123 @@ msgid "Legacy Icons" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "Item Size" +msgid "Item Width" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "You can change the item size" +msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:38 +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "Item Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "You can change the item height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:42 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:39 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:47 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:48 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:56 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:70 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:67 +#: src/prefs/customization/commonStyleGroup.ts:71 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:78 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:75 +#: src/prefs/customization/commonStyleGroup.ts:79 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:83 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:100 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:108 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:105 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:113 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/zh_CN.po b/resources/po/zh_CN.po index 1297edeb..8d04eb3e 100644 --- a/resources/po/zh_CN.po +++ b/resources/po/zh_CN.po @@ -161,115 +161,123 @@ msgid "Legacy Icons" msgstr "传统图标" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "Item Size" -msgstr "项目大小" +msgid "Item Width" +msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "You can change the item size" -msgstr "修改项目尺寸" +msgid "You can change the item width" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "Item Height" +msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:38 +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "You can change the item height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:42 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:39 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:47 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:48 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:56 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Window Position" msgstr "窗口位置" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "You can change position of the Pano" msgstr "修改Pano窗口的位置" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Bottom" msgstr "底部" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Left" msgstr "左侧" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Right" msgstr "右侧" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Top" msgstr "顶部" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:70 msgid "Window Background Color" msgstr "窗口背景色" -#: src/prefs/customization/commonStyleGroup.ts:67 +#: src/prefs/customization/commonStyleGroup.ts:71 msgid "You can change the window background color" msgstr "修改窗口背景颜色" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:78 msgid "Incognito Window Background Color" msgstr "隐私窗口背景色" -#: src/prefs/customization/commonStyleGroup.ts:75 +#: src/prefs/customization/commonStyleGroup.ts:79 msgid "You can change the incognito window background color" msgstr "修改隐私窗口背景颜色" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Search Bar Font" msgstr "搜索栏字体" -#: src/prefs/customization/commonStyleGroup.ts:83 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the font of the search bar" msgstr "修改搜索栏字体" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Item Title Font" msgstr "项目标题字体" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "修改项目标题字体" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Item Date Font" msgstr "项目日期字体" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "You can change the font of the date" msgstr "修改项目日期字体" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:100 msgid "Active Item Border Color" msgstr "激活项目边框颜色" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "You can change the active item border color" msgstr "修改激活项目的边框颜色" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:108 msgid "Hovered Item Border Color" msgstr "悬停项目边框颜色" -#: src/prefs/customization/commonStyleGroup.ts:105 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "You can change the hovered item border color" msgstr "修改鼠标悬停项目的边框颜色" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:113 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/zh_TW.po b/resources/po/zh_TW.po index 814f1243..e9955809 100644 --- a/resources/po/zh_TW.po +++ b/resources/po/zh_TW.po @@ -161,115 +161,123 @@ msgid "Legacy Icons" msgstr "復古圖示" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "Item Size" -msgstr "物件大小" +msgid "Item Width" +msgstr "" #: src/prefs/customization/commonStyleGroup.ts:33 -msgid "You can change the item size" -msgstr "你可以更換物件大小" +msgid "You can change the item width" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "Item Height" +msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:38 +#: src/prefs/customization/commonStyleGroup.ts:37 +msgid "You can change the item height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:42 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:39 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:47 +#: src/prefs/customization/commonStyleGroup.ts:51 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:48 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:56 +#: src/prefs/customization/commonStyleGroup.ts:60 msgid "Window Position" msgstr "視窗位置" -#: src/prefs/customization/commonStyleGroup.ts:57 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "You can change position of the Pano" msgstr "你可以更換 Pano 的位置" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Bottom" msgstr "底部" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Left" msgstr "左邊" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Right" msgstr "右邊" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:64 msgid "Top" msgstr "頂部" -#: src/prefs/customization/commonStyleGroup.ts:66 +#: src/prefs/customization/commonStyleGroup.ts:70 msgid "Window Background Color" msgstr "視窗背景顏色" -#: src/prefs/customization/commonStyleGroup.ts:67 +#: src/prefs/customization/commonStyleGroup.ts:71 msgid "You can change the window background color" msgstr "你可以更換視窗背景顏色" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:78 msgid "Incognito Window Background Color" msgstr "無痕模式視窗背景顏色" -#: src/prefs/customization/commonStyleGroup.ts:75 +#: src/prefs/customization/commonStyleGroup.ts:79 msgid "You can change the incognito window background color" msgstr "你可以更換無痕模式視窗背景顏色" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Search Bar Font" msgstr "搜尋欄字體" -#: src/prefs/customization/commonStyleGroup.ts:83 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the font of the search bar" msgstr "你可以更換搜尋欄的字體" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Item Title Font" msgstr "物件標題字體" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:93 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "你可以更換標題的字體" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "Item Date Font" msgstr "物件日期字體" -#: src/prefs/customization/commonStyleGroup.ts:92 +#: src/prefs/customization/commonStyleGroup.ts:96 msgid "You can change the font of the date" msgstr "你可以更換日期的字體" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:100 msgid "Active Item Border Color" msgstr "選取物件邊界顏色" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "You can change the active item border color" msgstr "你可以更換活躍的物件邊界顏色" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:108 msgid "Hovered Item Border Color" msgstr "被游標覆蓋物件邊界顏色" -#: src/prefs/customization/commonStyleGroup.ts:105 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "You can change the hovered item border color" msgstr "你可以更換被覆蓋物件邊界顏色" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:113 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml b/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml index ac80cb7e..48423f6b 100644 --- a/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml +++ b/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml @@ -106,11 +106,17 @@ 0 icon pack: 0-default 1-legacy - + 250 - Item Size - Controls size of the clipboard item. + Item Width + Controls width of the clipboard item. + + + + 175 + Item Height + Controls height of the clipboard item. false diff --git a/src/components/emojiPanoItem.ts b/src/components/emojiPanoItem.ts index 8fad081c..c0cbe74b 100644 --- a/src/components/emojiPanoItem.ts +++ b/src/components/emojiPanoItem.ts @@ -34,7 +34,7 @@ export class EmojiPanoItem extends PanoItem { this.setStyle(); this.emojiItemSettings.connect('changed', this.setStyle.bind(this)); this.settings.connect('changed::compact-mode', this.setStyle.bind(this)); - this.settings.connect('changed::item-size', this.setStyle.bind(this)); + this.settings.connect('changed::item-height', this.setStyle.bind(this)); } private setStyle() { diff --git a/src/components/filePanoItem.ts b/src/components/filePanoItem.ts index f0830591..aea74ed4 100644 --- a/src/components/filePanoItem.ts +++ b/src/components/filePanoItem.ts @@ -194,13 +194,14 @@ export class FilePanoItem extends PanoItem { xExpand: true, yExpand: false, xAlign: Clutter.ActorAlign.FILL, - yAlign: Clutter.ActorAlign.CENTER, + yAlign: Clutter.ActorAlign.FILL, }); labelContainer.add_child(label); labelContainer.add_child( new St.Label({ text: `${this.fileList.length} ${_('items')}`, styleClass: 'copied-files-count', + yAlign: Clutter.ActorAlign.FILL, }), ); diff --git a/src/components/linkPanoItem.ts b/src/components/linkPanoItem.ts index da61b95c..81953820 100644 --- a/src/components/linkPanoItem.ts +++ b/src/components/linkPanoItem.ts @@ -88,7 +88,7 @@ export class LinkPanoItem extends PanoItem { this.connect('activated', this.setClipboardContent.bind(this)); this.setCompactMode(); this.settings.connect('changed::compact-mode', this.setCompactMode.bind(this)); - this.settings.connect('changed::item-size', this.setCompactMode.bind(this)); + this.settings.connect('changed::item-height', this.setCompactMode.bind(this)); this.setStyle(); this.linkItemSettings.connect('changed', this.setStyle.bind(this)); @@ -123,7 +123,7 @@ export class LinkPanoItem extends PanoItem { private setCompactMode() { if (this.settings.get_boolean('compact-mode')) { this.body.vertical = false; - this.imageContainer.width = this.body.height * 1.618; + this.imageContainer.width = this.settings.get_int('item-height') * 1.618; } else { this.body.vertical = true; this.imageContainer.width = -1; diff --git a/src/components/panoItem.ts b/src/components/panoItem.ts index 465418c2..cdb0505c 100644 --- a/src/components/panoItem.ts +++ b/src/components/panoItem.ts @@ -188,7 +188,8 @@ export class PanoItem extends St.BoxLayout { } themeContext.connect('notify::scale-factor', this.setBodyDimensions.bind(this)); - this.settings.connect('changed::item-size', this.setBodyDimensions.bind(this)); + this.settings.connect('changed::item-width', this.setBodyDimensions.bind(this)); + this.settings.connect('changed::item-height', this.setBodyDimensions.bind(this)); this.settings.connect('changed::enable-headers', this.setBodyDimensions.bind(this)); this.settings.connect('changed::compact-mode', () => { if (this.settings.get_boolean('compact-mode')) { @@ -217,12 +218,12 @@ export class PanoItem extends St.BoxLayout { this.set_y_align(Clutter.ActorAlign.FILL); } const { scaleFactor } = St.ThemeContext.get_for_stage(Shell.Global.get().get_stage()); - const mult = this.settings.get_boolean('compact-mode') ? 0.3 : 0.7; + const mult = this.settings.get_boolean('compact-mode') ? 0.5 : 1; const header = this.settings.get_boolean('enable-headers') ? 48 : 0; - const height = this.settings.get_int('item-size') * mult + header; + const height = this.settings.get_int('item-height') * mult + header; this.set_height(height * scaleFactor); - this.container.set_width(this.settings.get_int('item-size') * scaleFactor); + this.container.set_width(this.settings.get_int('item-width') * scaleFactor); this.container.set_height((height - 8) * scaleFactor); this.body.set_height((height - 10 - header) * scaleFactor); this.overlay.set_height((height - 8) * scaleFactor); diff --git a/src/containers/panoWindow.ts b/src/containers/panoWindow.ts index ee063b73..43701d5b 100644 --- a/src/containers/panoWindow.ts +++ b/src/containers/panoWindow.ts @@ -43,7 +43,10 @@ export class PanoWindow extends St.BoxLayout { themeContext.connect('notify::scale-factor', () => { this.setWindowDimensions(themeContext.scaleFactor); }); - this.settings.connect('changed::item-size', () => { + this.settings.connect('changed::item-width', () => { + this.setWindowDimensions(themeContext.scaleFactor); + }); + this.settings.connect('changed::item-height', () => { this.setWindowDimensions(themeContext.scaleFactor); }); this.settings.connect('changed::enable-headers', () => { @@ -110,11 +113,11 @@ export class PanoWindow extends St.BoxLayout { this.remove_style_class_name('vertical'); if (isVertical(this.settings.get_uint('window-position'))) { this.add_style_class_name('vertical'); - this.set_width((this.settings.get_int('item-size') + 20) * scaleFactor); + this.set_width((this.settings.get_int('item-width') + 20) * scaleFactor); } else { - const mult = this.settings.get_boolean('compact-mode') ? 0.3 : 0.7; + const mult = this.settings.get_boolean('compact-mode') ? 0.5 : 1; const header = this.settings.get_boolean('enable-headers') ? 48 : 0; - this.set_height((this.settings.get_int('item-size') * mult + 70 + header) * scaleFactor); + this.set_height((this.settings.get_int('item-height') * mult + 70 + header) * scaleFactor); } } diff --git a/src/prefs/customization/commonStyleGroup.ts b/src/prefs/customization/commonStyleGroup.ts index bdb1177a..a44e5afe 100644 --- a/src/prefs/customization/commonStyleGroup.ts +++ b/src/prefs/customization/commonStyleGroup.ts @@ -30,7 +30,11 @@ export class CommonStyleGroup extends Adw.PreferencesGroup { ); this.add( - createSpinRow(_('Item Size'), _('You can change the item size'), this.settings, 'item-size', 5, 200, 1000), + createSpinRow(_('Item Width'), _('You can change the item width'), this.settings, 'item-width', 5, 200, 1000), + ); + + this.add( + createSpinRow(_('Item Height'), _('You can change the item height'), this.settings, 'item-height', 5, 100, 1000), ); this.add( From cba5b0cdf2e14e85141cb6bed8a39d38fbcc1f4e Mon Sep 17 00:00:00 2001 From: boerdereinar Date: Wed, 8 May 2024 00:34:04 +0200 Subject: [PATCH 17/45] Change text styling --- src/styles/stylesheet.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/styles/stylesheet.css b/src/styles/stylesheet.css index 17729704..18518b69 100644 --- a/src/styles/stylesheet.css +++ b/src/styles/stylesheet.css @@ -195,10 +195,14 @@ /* Text Item */ .pano-item-text .pano-item-body-text-content { - margin: 12px; + margin: 22px; tab-size: 2; } +.pano-item-text.compact .pano-item-body-text-content { + margin: 10px 12px; +} + /* Emoji Item */ .pano-item-emoji .pano-item-body { font-family: sans-serif; From ab2a942c06b52a417f1631e1f521aca33815d41e Mon Sep 17 00:00:00 2001 From: boerdereinar Date: Wed, 8 May 2024 01:48:18 +0200 Subject: [PATCH 18/45] Only parse rgb, because color-string doesn't do conversions --- src/utils/panoItemFactory.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/panoItemFactory.ts b/src/utils/panoItemFactory.ts index 45271e62..e2605a20 100644 --- a/src/utils/panoItemFactory.ts +++ b/src/utils/panoItemFactory.ts @@ -237,7 +237,7 @@ const findOrCreateDbItem = async (ext: ExtensionBase, clip: ClipboardContent): P return linkDbItem; } - if (colorString.get(trimmedValue) !== null) { + if (colorString.get.rgb(trimmedValue) !== null) { return db.save({ content: trimmedValue, copyDate: new Date(), From dfa683f78f8a44499898a2a90c454f2b6605faf3 Mon Sep 17 00:00:00 2001 From: boerdereinar Date: Wed, 8 May 2024 02:14:28 +0200 Subject: [PATCH 19/45] Fix compact mode link style --- src/components/linkPanoItem.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/linkPanoItem.ts b/src/components/linkPanoItem.ts index 81953820..a839a422 100644 --- a/src/components/linkPanoItem.ts +++ b/src/components/linkPanoItem.ts @@ -123,7 +123,7 @@ export class LinkPanoItem extends PanoItem { private setCompactMode() { if (this.settings.get_boolean('compact-mode')) { this.body.vertical = false; - this.imageContainer.width = this.settings.get_int('item-height') * 1.618; + this.imageContainer.width = this.settings.get_int('item-height') * 0.5; } else { this.body.vertical = true; this.imageContainer.width = -1; From 653e28afb19dade6f8870d5285158164c505a859 Mon Sep 17 00:00:00 2001 From: boerdereinar Date: Thu, 9 May 2024 18:27:03 +0200 Subject: [PATCH 20/45] Add floating mode + fix incognito icon + modify colors to better support incognito mode --- resources/images/incognito-mode.svg | 3 +- resources/po/ar.po | 150 ++++++++++++------ resources/po/bg.po | 150 ++++++++++++------ resources/po/cs.po | 150 ++++++++++++------ resources/po/da.po | 150 ++++++++++++------ resources/po/de.po | 150 ++++++++++++------ resources/po/el.po | 150 ++++++++++++------ resources/po/en.po | 150 ++++++++++++------ resources/po/es.po | 150 ++++++++++++------ resources/po/et.po | 150 ++++++++++++------ resources/po/fi.po | 150 ++++++++++++------ resources/po/fr.po | 150 ++++++++++++------ resources/po/he.po | 150 ++++++++++++------ resources/po/hr.po | 150 ++++++++++++------ resources/po/hu.po | 150 ++++++++++++------ resources/po/is.po | 150 ++++++++++++------ resources/po/it.po | 150 ++++++++++++------ resources/po/ja.po | 150 ++++++++++++------ resources/po/ko.po | 150 ++++++++++++------ resources/po/nl.po | 150 ++++++++++++------ resources/po/no.po | 150 ++++++++++++------ resources/po/oc.po | 150 ++++++++++++------ resources/po/pano@elhan.io.pot | 150 ++++++++++++------ resources/po/pl.po | 150 ++++++++++++------ resources/po/pt.po | 150 ++++++++++++------ resources/po/pt_BR.po | 150 ++++++++++++------ resources/po/ro.po | 150 ++++++++++++------ resources/po/ru.po | 150 ++++++++++++------ resources/po/sk.po | 150 ++++++++++++------ resources/po/sv.po | 150 ++++++++++++------ resources/po/tr.po | 150 ++++++++++++------ resources/po/uk.po | 150 ++++++++++++------ resources/po/vi.po | 150 ++++++++++++------ resources/po/zh_CN.po | 150 ++++++++++++------ resources/po/zh_TW.po | 150 ++++++++++++------ ...rg.gnome.shell.extensions.pano.gschema.xml | 51 ++++-- src/components/linkPanoItem.ts | 4 +- src/components/panoItem.ts | 3 +- src/components/searchBox.ts | 10 +- src/containers/panoWindow.ts | 103 ++++++------ src/prefs/customization/commonStyleGroup.ts | 11 ++ src/prefs/customization/floatingStyleGroup.ts | 72 +++++++++ src/prefs/customization/linkItemStyle.ts | 10 -- src/styles/stylesheet.css | 48 +++--- 44 files changed, 3544 insertions(+), 1871 deletions(-) create mode 100644 src/prefs/customization/floatingStyleGroup.ts diff --git a/resources/images/incognito-mode.svg b/resources/images/incognito-mode.svg index c278d72e..ea2bc8e1 100644 --- a/resources/images/incognito-mode.svg +++ b/resources/images/incognito-mode.svg @@ -1 +1,2 @@ - \ No newline at end of file + + diff --git a/resources/po/ar.po b/resources/po/ar.po index 7f32f319..0e8cb041 100644 --- a/resources/po/ar.po +++ b/resources/po/ar.po @@ -39,7 +39,7 @@ msgstr "" msgid "No Description" msgstr "" -#: src/components/searchBox.ts:70 +#: src/components/searchBox.ts:73 msgid "Type to search, Tab to cycle" msgstr "" @@ -94,7 +94,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:42 #: src/prefs/customization/emojiItemStyle.ts:42 #: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:42 #: src/prefs/customization/textItemStyle.ts:42 msgid "Body Background Color" msgstr "" @@ -102,7 +101,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:43 #: src/prefs/customization/emojiItemStyle.ts:43 #: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/linkItemStyle.ts:43 #: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" @@ -140,144 +138,152 @@ msgstr "" msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:21 msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Icon Pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Default Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:28 +#: src/prefs/customization/commonStyleGroup.ts:29 msgid "Legacy Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "Item Width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "Item Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "You can change the item height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:44 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 +#: src/prefs/customization/commonStyleGroup.ts:53 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:70 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:78 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:79 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Search Bar Background Color" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:90 +msgid "You can change the background color of the search bar" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:87 +#: src/prefs/customization/commonStyleGroup.ts:98 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:100 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:108 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:127 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:117 +#: src/prefs/customization/commonStyleGroup.ts:128 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -365,6 +371,46 @@ msgstr "" msgid "You can change the font of the text preview" msgstr "" +#: src/prefs/customization/floatingStyleGroup.ts:14 +msgid "Floating" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:15 +msgid "You can change the floating style" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:26 +msgid "Left Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:27 +msgid "You can change the left margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:38 +msgid "Right Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:39 +msgid "You can change the right margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:50 +msgid "Top Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:51 +msgid "You can change the top margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:62 +msgid "Bottom Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:63 +msgid "You can change the bottom margin" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "" @@ -389,59 +435,59 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the font of the metadata link" msgstr "" diff --git a/resources/po/bg.po b/resources/po/bg.po index 660a6b63..6449c580 100644 --- a/resources/po/bg.po +++ b/resources/po/bg.po @@ -39,7 +39,7 @@ msgstr "" msgid "No Description" msgstr "" -#: src/components/searchBox.ts:70 +#: src/components/searchBox.ts:73 msgid "Type to search, Tab to cycle" msgstr "" @@ -94,7 +94,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:42 #: src/prefs/customization/emojiItemStyle.ts:42 #: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:42 #: src/prefs/customization/textItemStyle.ts:42 msgid "Body Background Color" msgstr "" @@ -102,7 +101,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:43 #: src/prefs/customization/emojiItemStyle.ts:43 #: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/linkItemStyle.ts:43 #: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" @@ -140,144 +138,152 @@ msgstr "" msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:21 msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Icon Pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Default Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:28 +#: src/prefs/customization/commonStyleGroup.ts:29 msgid "Legacy Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "Item Width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "Item Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "You can change the item height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:44 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 +#: src/prefs/customization/commonStyleGroup.ts:53 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:70 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:78 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:79 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Search Bar Background Color" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:90 +msgid "You can change the background color of the search bar" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:87 +#: src/prefs/customization/commonStyleGroup.ts:98 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:100 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:108 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:127 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:117 +#: src/prefs/customization/commonStyleGroup.ts:128 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -365,6 +371,46 @@ msgstr "" msgid "You can change the font of the text preview" msgstr "" +#: src/prefs/customization/floatingStyleGroup.ts:14 +msgid "Floating" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:15 +msgid "You can change the floating style" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:26 +msgid "Left Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:27 +msgid "You can change the left margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:38 +msgid "Right Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:39 +msgid "You can change the right margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:50 +msgid "Top Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:51 +msgid "You can change the top margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:62 +msgid "Bottom Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:63 +msgid "You can change the bottom margin" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "" @@ -389,59 +435,59 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the font of the metadata link" msgstr "" diff --git a/resources/po/cs.po b/resources/po/cs.po index 5eb72254..fe9dd5d3 100644 --- a/resources/po/cs.po +++ b/resources/po/cs.po @@ -39,7 +39,7 @@ msgstr "" msgid "No Description" msgstr "Bez popisu" -#: src/components/searchBox.ts:70 +#: src/components/searchBox.ts:73 msgid "Type to search, Tab to cycle" msgstr "Pište pro vyhledávání, Tab pro cyklování mezi kategoriemi" @@ -94,7 +94,6 @@ msgstr "Můžete změnit barvu textu záhlaví" #: src/prefs/customization/codeItemStyle.ts:42 #: src/prefs/customization/emojiItemStyle.ts:42 #: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:42 #: src/prefs/customization/textItemStyle.ts:42 msgid "Body Background Color" msgstr "Barva pozadí těla" @@ -102,7 +101,6 @@ msgstr "Barva pozadí těla" #: src/prefs/customization/codeItemStyle.ts:43 #: src/prefs/customization/emojiItemStyle.ts:43 #: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/linkItemStyle.ts:43 #: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "Můžete změnit barvu pozadí těla" @@ -140,144 +138,152 @@ msgstr "Barva - nastavení stylů" msgid "You can change the font of the metadata" msgstr "Můžete změnit písmo metadat" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:21 msgid "Common" msgstr "Obecné" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Icon Pack" msgstr "Sada ikon" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "You can change the icon pack" msgstr "Můžete změnit sadu ikon" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Default Icons" msgstr "Výchozí ikony" -#: src/prefs/customization/commonStyleGroup.ts:28 +#: src/prefs/customization/commonStyleGroup.ts:29 msgid "Legacy Icons" msgstr "Starší ikony" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "Item Width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "Item Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "You can change the item height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:44 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 +#: src/prefs/customization/commonStyleGroup.ts:53 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "Window Position" msgstr "Poloha okna" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "You can change position of the Pano" msgstr "Můžete změnit pozici Pano" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Bottom" msgstr "Dole" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Left" msgstr "Vlevo" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "Vpravo" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Top" msgstr "Nahoře" -#: src/prefs/customization/commonStyleGroup.ts:70 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Window Background Color" msgstr "Barva pozadí okna" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the window background color" msgstr "Můžete změnit barvu pozadí okna" -#: src/prefs/customization/commonStyleGroup.ts:78 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Incognito Window Background Color" msgstr "Barva pozadí anonymního okna" -#: src/prefs/customization/commonStyleGroup.ts:79 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the incognito window background color" msgstr "Můžete změnit barvu pozadí anonymního okna" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Search Bar Background Color" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:90 +msgid "You can change the background color of the search bar" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "Search Bar Font" msgstr "Písmo vyhledávací lišty" -#: src/prefs/customization/commonStyleGroup.ts:87 +#: src/prefs/customization/commonStyleGroup.ts:98 msgid "You can change the font of the search bar" msgstr "Můžete změnit písmo vyhledávání" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Item Title Font" msgstr "Písmo názvu položky" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "Můžete změnit písmo nadpisu" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "Item Date Font" msgstr "Písmo položky Datum" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "You can change the font of the date" msgstr "Můžete změnit písmo data" -#: src/prefs/customization/commonStyleGroup.ts:100 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "Active Item Border Color" msgstr "Barva ohraničení aktivní položky" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "You can change the active item border color" msgstr "Můžete změnit barvu okraje aktivní položky" -#: src/prefs/customization/commonStyleGroup.ts:108 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Hovered Item Border Color" msgstr "Barva ohraničení při najetí na položku" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the hovered item border color" msgstr "Můžete změnit barvu ohraničení při najetí na položku" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:127 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:117 +#: src/prefs/customization/commonStyleGroup.ts:128 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -365,6 +371,46 @@ msgstr "" msgid "You can change the font of the text preview" msgstr "" +#: src/prefs/customization/floatingStyleGroup.ts:14 +msgid "Floating" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:15 +msgid "You can change the floating style" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:26 +msgid "Left Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:27 +msgid "You can change the left margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:38 +msgid "Right Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:39 +msgid "You can change the right margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:50 +msgid "Top Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:51 +msgid "You can change the top margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:62 +msgid "Bottom Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:63 +msgid "You can change the bottom margin" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "Změňte styly obrázku" @@ -389,59 +435,59 @@ msgstr "Změňte styly odkazu" msgid "Link Item Style" msgstr "Odkaz - nastavení stylů" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Background Color" msgstr "Barva pozadí metadat" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the background color of the metadata" msgstr "Můžete změnit barvu pozadí metadat" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Color" msgstr "Barva názvu metadat" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the title color of the metadata" msgstr "Můžete změnit barvu názvu metadat" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Font" msgstr "Písmo názvu metadat" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the font of the metadata title" msgstr "Můžete změnit písmo názvu metadat" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Color" msgstr "Barva popisu metadat" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the description color of the metadata" msgstr "Můžete změnit barvu popisu metadat" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Font" msgstr "Písmo popisu metadat" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the font of the metadata description" msgstr "Můžete změnit písmo popisu metadat" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Color" msgstr "Barva odkazu metadat" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the link color of the metadata" msgstr "Můžete změnit barvu odkazu metadat" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Font" msgstr "Písmo odkazu metadat" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the font of the metadata link" msgstr "Můžete změnit písmo odkazu na metadata" diff --git a/resources/po/da.po b/resources/po/da.po index 7bc73fdf..8859cc00 100644 --- a/resources/po/da.po +++ b/resources/po/da.po @@ -39,7 +39,7 @@ msgstr "" msgid "No Description" msgstr "" -#: src/components/searchBox.ts:70 +#: src/components/searchBox.ts:73 msgid "Type to search, Tab to cycle" msgstr "" @@ -94,7 +94,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:42 #: src/prefs/customization/emojiItemStyle.ts:42 #: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:42 #: src/prefs/customization/textItemStyle.ts:42 msgid "Body Background Color" msgstr "" @@ -102,7 +101,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:43 #: src/prefs/customization/emojiItemStyle.ts:43 #: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/linkItemStyle.ts:43 #: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" @@ -140,144 +138,152 @@ msgstr "" msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:21 msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Icon Pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Default Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:28 +#: src/prefs/customization/commonStyleGroup.ts:29 msgid "Legacy Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "Item Width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "Item Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "You can change the item height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:44 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 +#: src/prefs/customization/commonStyleGroup.ts:53 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:70 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:78 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:79 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Search Bar Background Color" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:90 +msgid "You can change the background color of the search bar" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:87 +#: src/prefs/customization/commonStyleGroup.ts:98 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:100 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:108 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:127 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:117 +#: src/prefs/customization/commonStyleGroup.ts:128 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -365,6 +371,46 @@ msgstr "" msgid "You can change the font of the text preview" msgstr "" +#: src/prefs/customization/floatingStyleGroup.ts:14 +msgid "Floating" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:15 +msgid "You can change the floating style" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:26 +msgid "Left Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:27 +msgid "You can change the left margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:38 +msgid "Right Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:39 +msgid "You can change the right margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:50 +msgid "Top Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:51 +msgid "You can change the top margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:62 +msgid "Bottom Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:63 +msgid "You can change the bottom margin" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "" @@ -389,59 +435,59 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the font of the metadata link" msgstr "" diff --git a/resources/po/de.po b/resources/po/de.po index 7458eea0..650025a8 100644 --- a/resources/po/de.po +++ b/resources/po/de.po @@ -39,7 +39,7 @@ msgstr "" msgid "No Description" msgstr "Keine Beschreibung" -#: src/components/searchBox.ts:70 +#: src/components/searchBox.ts:73 msgid "Type to search, Tab to cycle" msgstr "Tippen zum Suchen, Tab zum Wechseln" @@ -94,7 +94,6 @@ msgstr "Sie können die Textfarbe der Überschrift ändern" #: src/prefs/customization/codeItemStyle.ts:42 #: src/prefs/customization/emojiItemStyle.ts:42 #: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:42 #: src/prefs/customization/textItemStyle.ts:42 msgid "Body Background Color" msgstr "Hintergrundfarbe des Hauptteils" @@ -102,7 +101,6 @@ msgstr "Hintergrundfarbe des Hauptteils" #: src/prefs/customization/codeItemStyle.ts:43 #: src/prefs/customization/emojiItemStyle.ts:43 #: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/linkItemStyle.ts:43 #: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "Sie können die Hintergrundfarbe des Hauptteils ändern" @@ -140,144 +138,152 @@ msgstr "Stil des Farb-Eintrags" msgid "You can change the font of the metadata" msgstr "Sie können die Schriftart der Metadaten ändern" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:21 msgid "Common" msgstr "Allgemein" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Icon Pack" msgstr "Symbolpaket" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "You can change the icon pack" msgstr "Sie können das Symbolpaket ändern" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Default Icons" msgstr "Vorgabe-Icons" -#: src/prefs/customization/commonStyleGroup.ts:28 +#: src/prefs/customization/commonStyleGroup.ts:29 msgid "Legacy Icons" msgstr "Veraltete Symbole" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "Item Width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "Item Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "You can change the item height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:44 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 +#: src/prefs/customization/commonStyleGroup.ts:53 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "Window Position" msgstr "Fensterposition" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "You can change position of the Pano" msgstr "Sie können die Position von Pano ändern" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Bottom" msgstr "Unten" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Left" msgstr "Links" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "Rechts" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Top" msgstr "Oben" -#: src/prefs/customization/commonStyleGroup.ts:70 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Window Background Color" msgstr "Hintergrundfarbe des Fensters" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the window background color" msgstr "Sie können die Hintergrundfarbe des Fensters ändern" -#: src/prefs/customization/commonStyleGroup.ts:78 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Incognito Window Background Color" msgstr "Hintergrundfarbe des Inkognito-Fensters" -#: src/prefs/customization/commonStyleGroup.ts:79 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the incognito window background color" msgstr "Sie können die Hintergrundfarbe des Inkognito-Fensters ändern" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Search Bar Background Color" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:90 +msgid "You can change the background color of the search bar" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "Search Bar Font" msgstr "Schriftart der Suchleiste" -#: src/prefs/customization/commonStyleGroup.ts:87 +#: src/prefs/customization/commonStyleGroup.ts:98 msgid "You can change the font of the search bar" msgstr "Sie können die Schriftart der Suchleiste ändern" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Item Title Font" msgstr "Schriftart des Eintragtitels" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "Sie können die Schriftart des Objekttitels ändern" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "Item Date Font" msgstr "Schriftart des Eintragsdatums" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "You can change the font of the date" msgstr "Sie können die Schriftart des Datums ändern" -#: src/prefs/customization/commonStyleGroup.ts:100 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "Active Item Border Color" msgstr "Randfarbe des aktiven Eintrags" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "You can change the active item border color" msgstr "Sie können die Randfarbe des aktiven Eintrags ändern" -#: src/prefs/customization/commonStyleGroup.ts:108 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Hovered Item Border Color" msgstr "Randfarbe des fokussierten Eintrags" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the hovered item border color" msgstr "Sie können die Randfarbe des fokussierten Eintrags ändern" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:127 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:117 +#: src/prefs/customization/commonStyleGroup.ts:128 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -365,6 +371,46 @@ msgstr "" msgid "You can change the font of the text preview" msgstr "" +#: src/prefs/customization/floatingStyleGroup.ts:14 +msgid "Floating" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:15 +msgid "You can change the floating style" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:26 +msgid "Left Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:27 +msgid "You can change the left margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:38 +msgid "Right Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:39 +msgid "You can change the right margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:50 +msgid "Top Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:51 +msgid "You can change the top margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:62 +msgid "Bottom Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:63 +msgid "You can change the bottom margin" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "Stil des Bild-Eintrags ändern" @@ -389,59 +435,59 @@ msgstr "Stil des Verweis-Eintrags ändern" msgid "Link Item Style" msgstr "Stil Verweis-Eintrag" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Background Color" msgstr "Hintergrundfarbe für Metadaten" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the background color of the metadata" msgstr "Sie können die Hintergrundfarbe der Metadaten ändern" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Color" msgstr "Titelfarbe für Metadaten" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the title color of the metadata" msgstr "Sie können die Titelfarbe der Metadaten ändern" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Font" msgstr "Schriftart für Metadatentitel" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the font of the metadata title" msgstr "Sie können die Schriftart des Metadatentitels ändern" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Color" msgstr "Farbe für Metadatenbeschreibung" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the description color of the metadata" msgstr "Sie können die Beschreibungsfarbe der Metadaten ändern" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Font" msgstr "Schriftart für Metadatenbeschreibung" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the font of the metadata description" msgstr "Sie können die Schriftart der Metadatenbeschreibung ändern" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Color" msgstr "Verweisfarbe für Metadaten" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the link color of the metadata" msgstr "Sie können die Verweisfarbe der Metadaten ändern" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Font" msgstr "Schriftart für Metadatenverweise" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the font of the metadata link" msgstr "Sie können die Schriftart von Metadatenlinks ändern" diff --git a/resources/po/el.po b/resources/po/el.po index 8554f560..7935c552 100644 --- a/resources/po/el.po +++ b/resources/po/el.po @@ -39,7 +39,7 @@ msgstr "" msgid "No Description" msgstr "" -#: src/components/searchBox.ts:70 +#: src/components/searchBox.ts:73 msgid "Type to search, Tab to cycle" msgstr "" @@ -94,7 +94,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:42 #: src/prefs/customization/emojiItemStyle.ts:42 #: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:42 #: src/prefs/customization/textItemStyle.ts:42 msgid "Body Background Color" msgstr "" @@ -102,7 +101,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:43 #: src/prefs/customization/emojiItemStyle.ts:43 #: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/linkItemStyle.ts:43 #: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" @@ -140,144 +138,152 @@ msgstr "" msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:21 msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Icon Pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Default Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:28 +#: src/prefs/customization/commonStyleGroup.ts:29 msgid "Legacy Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "Item Width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "Item Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "You can change the item height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:44 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 +#: src/prefs/customization/commonStyleGroup.ts:53 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:70 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:78 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:79 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Search Bar Background Color" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:90 +msgid "You can change the background color of the search bar" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:87 +#: src/prefs/customization/commonStyleGroup.ts:98 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:100 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:108 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:127 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:117 +#: src/prefs/customization/commonStyleGroup.ts:128 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -365,6 +371,46 @@ msgstr "" msgid "You can change the font of the text preview" msgstr "" +#: src/prefs/customization/floatingStyleGroup.ts:14 +msgid "Floating" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:15 +msgid "You can change the floating style" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:26 +msgid "Left Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:27 +msgid "You can change the left margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:38 +msgid "Right Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:39 +msgid "You can change the right margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:50 +msgid "Top Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:51 +msgid "You can change the top margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:62 +msgid "Bottom Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:63 +msgid "You can change the bottom margin" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "" @@ -389,59 +435,59 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the font of the metadata link" msgstr "" diff --git a/resources/po/en.po b/resources/po/en.po index ff995a73..2813e77a 100644 --- a/resources/po/en.po +++ b/resources/po/en.po @@ -39,7 +39,7 @@ msgstr "" msgid "No Description" msgstr "" -#: src/components/searchBox.ts:70 +#: src/components/searchBox.ts:73 msgid "Type to search, Tab to cycle" msgstr "" @@ -94,7 +94,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:42 #: src/prefs/customization/emojiItemStyle.ts:42 #: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:42 #: src/prefs/customization/textItemStyle.ts:42 msgid "Body Background Color" msgstr "" @@ -102,7 +101,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:43 #: src/prefs/customization/emojiItemStyle.ts:43 #: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/linkItemStyle.ts:43 #: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" @@ -140,144 +138,152 @@ msgstr "" msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:21 msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Icon Pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Default Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:28 +#: src/prefs/customization/commonStyleGroup.ts:29 msgid "Legacy Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "Item Width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "Item Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "You can change the item height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:44 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 +#: src/prefs/customization/commonStyleGroup.ts:53 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:70 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:78 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:79 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Search Bar Background Color" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:90 +msgid "You can change the background color of the search bar" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:87 +#: src/prefs/customization/commonStyleGroup.ts:98 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:100 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:108 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:127 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:117 +#: src/prefs/customization/commonStyleGroup.ts:128 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -365,6 +371,46 @@ msgstr "" msgid "You can change the font of the text preview" msgstr "" +#: src/prefs/customization/floatingStyleGroup.ts:14 +msgid "Floating" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:15 +msgid "You can change the floating style" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:26 +msgid "Left Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:27 +msgid "You can change the left margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:38 +msgid "Right Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:39 +msgid "You can change the right margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:50 +msgid "Top Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:51 +msgid "You can change the top margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:62 +msgid "Bottom Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:63 +msgid "You can change the bottom margin" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "" @@ -389,59 +435,59 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the font of the metadata link" msgstr "" diff --git a/resources/po/es.po b/resources/po/es.po index 67ff8161..5cc9ab43 100644 --- a/resources/po/es.po +++ b/resources/po/es.po @@ -39,7 +39,7 @@ msgstr "" msgid "No Description" msgstr "Sin descripción" -#: src/components/searchBox.ts:70 +#: src/components/searchBox.ts:73 msgid "Type to search, Tab to cycle" msgstr "Escriba para buscar. Pulsa el tabulador para navegar" @@ -94,7 +94,6 @@ msgstr "Puedes cambiar el color del texto del encabezado" #: src/prefs/customization/codeItemStyle.ts:42 #: src/prefs/customization/emojiItemStyle.ts:42 #: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:42 #: src/prefs/customization/textItemStyle.ts:42 msgid "Body Background Color" msgstr "Color de fondo del cuerpo" @@ -102,7 +101,6 @@ msgstr "Color de fondo del cuerpo" #: src/prefs/customization/codeItemStyle.ts:43 #: src/prefs/customization/emojiItemStyle.ts:43 #: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/linkItemStyle.ts:43 #: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "Puedes cambiar el color del cuerpo" @@ -140,144 +138,152 @@ msgstr "Estilo de las notas de color" msgid "You can change the font of the metadata" msgstr "Puedes cambiar el tipo de letra de los metadatos" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:21 msgid "Common" msgstr "Estilos generales" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Icon Pack" msgstr "Paquete de iconos" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "You can change the icon pack" msgstr "Elige un paquete de iconos" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Default Icons" msgstr "Iconos por defecto" -#: src/prefs/customization/commonStyleGroup.ts:28 +#: src/prefs/customization/commonStyleGroup.ts:29 msgid "Legacy Icons" msgstr "Iconos heredados" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "Item Width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "Item Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "You can change the item height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:44 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 +#: src/prefs/customization/commonStyleGroup.ts:53 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "Window Position" msgstr "Posición de la ventana" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "You can change position of the Pano" msgstr "Elige la posición de la ventana de Pano" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Bottom" msgstr "Abajo" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Left" msgstr "A la izquierda" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "A la derecha" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Top" msgstr "Arriba" -#: src/prefs/customization/commonStyleGroup.ts:70 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Window Background Color" msgstr "Color de fondo de la ventana" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the window background color" msgstr "Puedes cambiar el color de fondo de la ventana" -#: src/prefs/customization/commonStyleGroup.ts:78 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Incognito Window Background Color" msgstr "Color de fondo de la ventana de incógnito" -#: src/prefs/customization/commonStyleGroup.ts:79 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the incognito window background color" msgstr "Puedes cambiar el color de fondo de la ventana cuando se ejecuta el modo incógnito" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Search Bar Background Color" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:90 +msgid "You can change the background color of the search bar" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "Search Bar Font" msgstr "Tipo de letra de la barra de búsqueda" -#: src/prefs/customization/commonStyleGroup.ts:87 +#: src/prefs/customization/commonStyleGroup.ts:98 msgid "You can change the font of the search bar" msgstr "Elige la tipografía de la barra de búsqueda" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Item Title Font" msgstr "Tipo de letra de los títulos de las notas" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "Puedes cambiar la tipografía de los títulos de las notas" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "Item Date Font" msgstr "Tipo de letra de la fecha de las notas" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "You can change the font of the date" msgstr "Puedes cambiar la tipografía de la fecha" -#: src/prefs/customization/commonStyleGroup.ts:100 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "Active Item Border Color" msgstr "Color del borde de la nota activa" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "You can change the active item border color" msgstr "Elige el color del borde de la nota activa" -#: src/prefs/customization/commonStyleGroup.ts:108 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Hovered Item Border Color" msgstr "Color del borde de la nota al pasar el ratón" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the hovered item border color" msgstr "Elige el color del borde de las notas al pasar el ratón por encima" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:127 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:117 +#: src/prefs/customization/commonStyleGroup.ts:128 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -365,6 +371,46 @@ msgstr "" msgid "You can change the font of the text preview" msgstr "" +#: src/prefs/customization/floatingStyleGroup.ts:14 +msgid "Floating" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:15 +msgid "You can change the floating style" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:26 +msgid "Left Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:27 +msgid "You can change the left margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:38 +msgid "Right Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:39 +msgid "You can change the right margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:50 +msgid "Top Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:51 +msgid "You can change the top margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:62 +msgid "Bottom Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:63 +msgid "You can change the bottom margin" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "Cambia el estilo de las notas de imagen" @@ -389,59 +435,59 @@ msgstr "Cambia el estilo de las notas de enlaces" msgid "Link Item Style" msgstr "Estilo de las notas de enlaces" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Background Color" msgstr "Color de fondo de los metadatos" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the background color of the metadata" msgstr "Puedes cambiar el color de fondo de los metadatos" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Color" msgstr "Color del título de los enlaces" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the title color of the metadata" msgstr "Puedes cambiar el color del título de los enlaces" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Font" msgstr "Tipo de letra del título de los enlaces" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the font of the metadata title" msgstr "Puedes cambiar la tipografía del título de los enlaces" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Color" msgstr "Color de la descripción del enlace" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the description color of the metadata" msgstr "Puedes cambiar el color de la descripción del enlace" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Font" msgstr "Tipo de letra de la descripción del enlace" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the font of the metadata description" msgstr "Puedes cambiar el tipo de letra de la descripción del enlace" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Color" msgstr "Color del enlace" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the link color of the metadata" msgstr "Puedes cambiar el color del enlace" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Font" msgstr "Tipo de letra del enlace" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the font of the metadata link" msgstr "Puedes cambiar la tipografía de los enlaces" diff --git a/resources/po/et.po b/resources/po/et.po index 704978d9..bdaaf586 100644 --- a/resources/po/et.po +++ b/resources/po/et.po @@ -39,7 +39,7 @@ msgstr "" msgid "No Description" msgstr "" -#: src/components/searchBox.ts:70 +#: src/components/searchBox.ts:73 msgid "Type to search, Tab to cycle" msgstr "" @@ -94,7 +94,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:42 #: src/prefs/customization/emojiItemStyle.ts:42 #: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:42 #: src/prefs/customization/textItemStyle.ts:42 msgid "Body Background Color" msgstr "" @@ -102,7 +101,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:43 #: src/prefs/customization/emojiItemStyle.ts:43 #: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/linkItemStyle.ts:43 #: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" @@ -140,144 +138,152 @@ msgstr "" msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:21 msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Icon Pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Default Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:28 +#: src/prefs/customization/commonStyleGroup.ts:29 msgid "Legacy Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "Item Width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "Item Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "You can change the item height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:44 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 +#: src/prefs/customization/commonStyleGroup.ts:53 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:70 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:78 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:79 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Search Bar Background Color" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:90 +msgid "You can change the background color of the search bar" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:87 +#: src/prefs/customization/commonStyleGroup.ts:98 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:100 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:108 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:127 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:117 +#: src/prefs/customization/commonStyleGroup.ts:128 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -365,6 +371,46 @@ msgstr "" msgid "You can change the font of the text preview" msgstr "" +#: src/prefs/customization/floatingStyleGroup.ts:14 +msgid "Floating" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:15 +msgid "You can change the floating style" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:26 +msgid "Left Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:27 +msgid "You can change the left margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:38 +msgid "Right Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:39 +msgid "You can change the right margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:50 +msgid "Top Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:51 +msgid "You can change the top margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:62 +msgid "Bottom Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:63 +msgid "You can change the bottom margin" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "" @@ -389,59 +435,59 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the font of the metadata link" msgstr "" diff --git a/resources/po/fi.po b/resources/po/fi.po index 9313e8de..81f8cf6f 100644 --- a/resources/po/fi.po +++ b/resources/po/fi.po @@ -39,7 +39,7 @@ msgstr "" msgid "No Description" msgstr "" -#: src/components/searchBox.ts:70 +#: src/components/searchBox.ts:73 msgid "Type to search, Tab to cycle" msgstr "" @@ -94,7 +94,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:42 #: src/prefs/customization/emojiItemStyle.ts:42 #: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:42 #: src/prefs/customization/textItemStyle.ts:42 msgid "Body Background Color" msgstr "" @@ -102,7 +101,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:43 #: src/prefs/customization/emojiItemStyle.ts:43 #: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/linkItemStyle.ts:43 #: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" @@ -140,144 +138,152 @@ msgstr "" msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:21 msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Icon Pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Default Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:28 +#: src/prefs/customization/commonStyleGroup.ts:29 msgid "Legacy Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "Item Width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "Item Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "You can change the item height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:44 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 +#: src/prefs/customization/commonStyleGroup.ts:53 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:70 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:78 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:79 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Search Bar Background Color" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:90 +msgid "You can change the background color of the search bar" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:87 +#: src/prefs/customization/commonStyleGroup.ts:98 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:100 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:108 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:127 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:117 +#: src/prefs/customization/commonStyleGroup.ts:128 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -365,6 +371,46 @@ msgstr "" msgid "You can change the font of the text preview" msgstr "" +#: src/prefs/customization/floatingStyleGroup.ts:14 +msgid "Floating" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:15 +msgid "You can change the floating style" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:26 +msgid "Left Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:27 +msgid "You can change the left margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:38 +msgid "Right Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:39 +msgid "You can change the right margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:50 +msgid "Top Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:51 +msgid "You can change the top margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:62 +msgid "Bottom Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:63 +msgid "You can change the bottom margin" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "" @@ -389,59 +435,59 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the font of the metadata link" msgstr "" diff --git a/resources/po/fr.po b/resources/po/fr.po index 173f19c1..e51d756b 100644 --- a/resources/po/fr.po +++ b/resources/po/fr.po @@ -39,7 +39,7 @@ msgstr "" msgid "No Description" msgstr "Aucune description" -#: src/components/searchBox.ts:70 +#: src/components/searchBox.ts:73 msgid "Type to search, Tab to cycle" msgstr "Taper pour rechercher, Tabulation pour trier" @@ -94,7 +94,6 @@ msgstr "Vous pouvez modifier la couleur du texte de l’en-tête" #: src/prefs/customization/codeItemStyle.ts:42 #: src/prefs/customization/emojiItemStyle.ts:42 #: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:42 #: src/prefs/customization/textItemStyle.ts:42 msgid "Body Background Color" msgstr "Couleur de fond du contenu" @@ -102,7 +101,6 @@ msgstr "Couleur de fond du contenu" #: src/prefs/customization/codeItemStyle.ts:43 #: src/prefs/customization/emojiItemStyle.ts:43 #: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/linkItemStyle.ts:43 #: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "Vous pouvez modifier la couleur d’arrière-plan du contenu" @@ -140,144 +138,152 @@ msgstr "Style de l’élément de couleur" msgid "You can change the font of the metadata" msgstr "Vous pouvez modifier la police des métadonnées" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:21 msgid "Common" msgstr "Commun" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Icon Pack" msgstr "Pack d’icônes" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "You can change the icon pack" msgstr "Vous pouvez changer le pack d’icônes" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Default Icons" msgstr "Icônes par défaut" -#: src/prefs/customization/commonStyleGroup.ts:28 +#: src/prefs/customization/commonStyleGroup.ts:29 msgid "Legacy Icons" msgstr "Anciennes icônes" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "Item Width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "Item Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "You can change the item height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:44 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 +#: src/prefs/customization/commonStyleGroup.ts:53 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "Window Position" msgstr "Position de la fenêtre" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "You can change position of the Pano" msgstr "Vous pouvez modifier la position de Pano" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Bottom" msgstr "En bas" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Left" msgstr "À gauche" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "À droite" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Top" msgstr "En haut" -#: src/prefs/customization/commonStyleGroup.ts:70 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Window Background Color" msgstr "Couleur d’arrière-plan de la fenêtre" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the window background color" msgstr "Vous pouvez modifier la couleur d’arrière-plan de la fenêtre" -#: src/prefs/customization/commonStyleGroup.ts:78 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Incognito Window Background Color" msgstr "Couleur d’arrière-plan de la fenêtre incognito" -#: src/prefs/customization/commonStyleGroup.ts:79 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the incognito window background color" msgstr "Vous pouvez modifier la couleur d’arrière-plan de la fenêtre incognito" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Search Bar Background Color" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:90 +msgid "You can change the background color of the search bar" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "Search Bar Font" msgstr "Police de la barre de recherche" -#: src/prefs/customization/commonStyleGroup.ts:87 +#: src/prefs/customization/commonStyleGroup.ts:98 msgid "You can change the font of the search bar" msgstr "Vous pouvez modifier la police de la barre de recherche" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Item Title Font" msgstr "Police du titre de l’élément" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "Vous pouvez modifier la police du titre" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "Item Date Font" msgstr "Police de la date de l’élément" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "You can change the font of the date" msgstr "Vous pouvez modifier la police de la date" -#: src/prefs/customization/commonStyleGroup.ts:100 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "Active Item Border Color" msgstr "Couleur de bordure de l’élément actif" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "You can change the active item border color" msgstr "Vous pouvez modifier la couleur de bordure de l’élément actif" -#: src/prefs/customization/commonStyleGroup.ts:108 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Hovered Item Border Color" msgstr "Couleur de bordure d’un élément survolé" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the hovered item border color" msgstr "Vous pouvez modifier la couleur de bordure d’un élément survolé" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:127 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:117 +#: src/prefs/customization/commonStyleGroup.ts:128 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -365,6 +371,46 @@ msgstr "" msgid "You can change the font of the text preview" msgstr "" +#: src/prefs/customization/floatingStyleGroup.ts:14 +msgid "Floating" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:15 +msgid "You can change the floating style" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:26 +msgid "Left Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:27 +msgid "You can change the left margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:38 +msgid "Right Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:39 +msgid "You can change the right margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:50 +msgid "Top Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:51 +msgid "You can change the top margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:62 +msgid "Bottom Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:63 +msgid "You can change the bottom margin" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "Changer le style de l’élément d’image" @@ -389,59 +435,59 @@ msgstr "Changer le style de l’élément de lien" msgid "Link Item Style" msgstr "Style de l’élément de lien" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Background Color" msgstr "Couleur de fond des métadonnées" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the background color of the metadata" msgstr "Vous pouvez modifier la couleur d’arrière-plan des métadonnées" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Color" msgstr "Couleur du titre des métadonnées" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the title color of the metadata" msgstr "Vous pouvez modifier la couleur du titre des métadonnées" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Font" msgstr "Police du titre des métadonnées" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the font of the metadata title" msgstr "Vous pouvez modifier la police du titre des métadonnées" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Color" msgstr "Couleur de la description des métadonnées" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the description color of the metadata" msgstr "Vous pouvez modifier la couleur de description des métadonnées" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Font" msgstr "Police de description des métadonnées" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the font of the metadata description" msgstr "Vous pouvez modifier la police de description des métadonnées" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Color" msgstr "Couleur du lien des métadonnées" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the link color of the metadata" msgstr "Vous pouvez modifier la couleur du lien des métadonnées" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Font" msgstr "Police du lien des métadonnées" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the font of the metadata link" msgstr "Vous pouvez modifier la police du lien des métadonnées" diff --git a/resources/po/he.po b/resources/po/he.po index b3aae9f4..7c4b03c1 100644 --- a/resources/po/he.po +++ b/resources/po/he.po @@ -39,7 +39,7 @@ msgstr "" msgid "No Description" msgstr "" -#: src/components/searchBox.ts:70 +#: src/components/searchBox.ts:73 msgid "Type to search, Tab to cycle" msgstr "" @@ -94,7 +94,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:42 #: src/prefs/customization/emojiItemStyle.ts:42 #: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:42 #: src/prefs/customization/textItemStyle.ts:42 msgid "Body Background Color" msgstr "" @@ -102,7 +101,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:43 #: src/prefs/customization/emojiItemStyle.ts:43 #: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/linkItemStyle.ts:43 #: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" @@ -140,144 +138,152 @@ msgstr "" msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:21 msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Icon Pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Default Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:28 +#: src/prefs/customization/commonStyleGroup.ts:29 msgid "Legacy Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "Item Width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "Item Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "You can change the item height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:44 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 +#: src/prefs/customization/commonStyleGroup.ts:53 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:70 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:78 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:79 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Search Bar Background Color" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:90 +msgid "You can change the background color of the search bar" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:87 +#: src/prefs/customization/commonStyleGroup.ts:98 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:100 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:108 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:127 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:117 +#: src/prefs/customization/commonStyleGroup.ts:128 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -365,6 +371,46 @@ msgstr "" msgid "You can change the font of the text preview" msgstr "" +#: src/prefs/customization/floatingStyleGroup.ts:14 +msgid "Floating" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:15 +msgid "You can change the floating style" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:26 +msgid "Left Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:27 +msgid "You can change the left margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:38 +msgid "Right Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:39 +msgid "You can change the right margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:50 +msgid "Top Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:51 +msgid "You can change the top margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:62 +msgid "Bottom Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:63 +msgid "You can change the bottom margin" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "" @@ -389,59 +435,59 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the font of the metadata link" msgstr "" diff --git a/resources/po/hr.po b/resources/po/hr.po index f6f60dbd..eb340c18 100644 --- a/resources/po/hr.po +++ b/resources/po/hr.po @@ -39,7 +39,7 @@ msgstr "" msgid "No Description" msgstr "" -#: src/components/searchBox.ts:70 +#: src/components/searchBox.ts:73 msgid "Type to search, Tab to cycle" msgstr "" @@ -94,7 +94,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:42 #: src/prefs/customization/emojiItemStyle.ts:42 #: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:42 #: src/prefs/customization/textItemStyle.ts:42 msgid "Body Background Color" msgstr "" @@ -102,7 +101,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:43 #: src/prefs/customization/emojiItemStyle.ts:43 #: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/linkItemStyle.ts:43 #: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" @@ -140,144 +138,152 @@ msgstr "" msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:21 msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Icon Pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Default Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:28 +#: src/prefs/customization/commonStyleGroup.ts:29 msgid "Legacy Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "Item Width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "Item Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "You can change the item height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:44 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 +#: src/prefs/customization/commonStyleGroup.ts:53 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:70 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:78 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:79 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Search Bar Background Color" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:90 +msgid "You can change the background color of the search bar" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:87 +#: src/prefs/customization/commonStyleGroup.ts:98 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:100 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:108 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:127 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:117 +#: src/prefs/customization/commonStyleGroup.ts:128 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -365,6 +371,46 @@ msgstr "" msgid "You can change the font of the text preview" msgstr "" +#: src/prefs/customization/floatingStyleGroup.ts:14 +msgid "Floating" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:15 +msgid "You can change the floating style" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:26 +msgid "Left Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:27 +msgid "You can change the left margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:38 +msgid "Right Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:39 +msgid "You can change the right margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:50 +msgid "Top Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:51 +msgid "You can change the top margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:62 +msgid "Bottom Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:63 +msgid "You can change the bottom margin" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "" @@ -389,59 +435,59 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the font of the metadata link" msgstr "" diff --git a/resources/po/hu.po b/resources/po/hu.po index 6ca5323c..1bc0bd72 100644 --- a/resources/po/hu.po +++ b/resources/po/hu.po @@ -39,7 +39,7 @@ msgstr "" msgid "No Description" msgstr "" -#: src/components/searchBox.ts:70 +#: src/components/searchBox.ts:73 msgid "Type to search, Tab to cycle" msgstr "" @@ -94,7 +94,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:42 #: src/prefs/customization/emojiItemStyle.ts:42 #: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:42 #: src/prefs/customization/textItemStyle.ts:42 msgid "Body Background Color" msgstr "" @@ -102,7 +101,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:43 #: src/prefs/customization/emojiItemStyle.ts:43 #: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/linkItemStyle.ts:43 #: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" @@ -140,144 +138,152 @@ msgstr "" msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:21 msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Icon Pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Default Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:28 +#: src/prefs/customization/commonStyleGroup.ts:29 msgid "Legacy Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "Item Width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "Item Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "You can change the item height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:44 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 +#: src/prefs/customization/commonStyleGroup.ts:53 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:70 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:78 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:79 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Search Bar Background Color" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:90 +msgid "You can change the background color of the search bar" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:87 +#: src/prefs/customization/commonStyleGroup.ts:98 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:100 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:108 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:127 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:117 +#: src/prefs/customization/commonStyleGroup.ts:128 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -365,6 +371,46 @@ msgstr "" msgid "You can change the font of the text preview" msgstr "" +#: src/prefs/customization/floatingStyleGroup.ts:14 +msgid "Floating" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:15 +msgid "You can change the floating style" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:26 +msgid "Left Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:27 +msgid "You can change the left margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:38 +msgid "Right Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:39 +msgid "You can change the right margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:50 +msgid "Top Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:51 +msgid "You can change the top margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:62 +msgid "Bottom Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:63 +msgid "You can change the bottom margin" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "" @@ -389,59 +435,59 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the font of the metadata link" msgstr "" diff --git a/resources/po/is.po b/resources/po/is.po index b0c8398e..d1645ba3 100644 --- a/resources/po/is.po +++ b/resources/po/is.po @@ -39,7 +39,7 @@ msgstr "" msgid "No Description" msgstr "" -#: src/components/searchBox.ts:70 +#: src/components/searchBox.ts:73 msgid "Type to search, Tab to cycle" msgstr "" @@ -94,7 +94,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:42 #: src/prefs/customization/emojiItemStyle.ts:42 #: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:42 #: src/prefs/customization/textItemStyle.ts:42 msgid "Body Background Color" msgstr "" @@ -102,7 +101,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:43 #: src/prefs/customization/emojiItemStyle.ts:43 #: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/linkItemStyle.ts:43 #: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" @@ -140,144 +138,152 @@ msgstr "" msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:21 msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Icon Pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Default Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:28 +#: src/prefs/customization/commonStyleGroup.ts:29 msgid "Legacy Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "Item Width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "Item Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "You can change the item height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:44 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 +#: src/prefs/customization/commonStyleGroup.ts:53 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:70 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:78 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:79 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Search Bar Background Color" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:90 +msgid "You can change the background color of the search bar" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:87 +#: src/prefs/customization/commonStyleGroup.ts:98 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:100 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:108 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:127 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:117 +#: src/prefs/customization/commonStyleGroup.ts:128 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -365,6 +371,46 @@ msgstr "" msgid "You can change the font of the text preview" msgstr "" +#: src/prefs/customization/floatingStyleGroup.ts:14 +msgid "Floating" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:15 +msgid "You can change the floating style" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:26 +msgid "Left Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:27 +msgid "You can change the left margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:38 +msgid "Right Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:39 +msgid "You can change the right margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:50 +msgid "Top Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:51 +msgid "You can change the top margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:62 +msgid "Bottom Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:63 +msgid "You can change the bottom margin" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "" @@ -389,59 +435,59 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the font of the metadata link" msgstr "" diff --git a/resources/po/it.po b/resources/po/it.po index a656afde..94a1eebc 100644 --- a/resources/po/it.po +++ b/resources/po/it.po @@ -39,7 +39,7 @@ msgstr "" msgid "No Description" msgstr "Nessuna descrizione" -#: src/components/searchBox.ts:70 +#: src/components/searchBox.ts:73 msgid "Type to search, Tab to cycle" msgstr "Digita per cercare, Tab per scorrere" @@ -94,7 +94,6 @@ msgstr "Puoi cambiare il colore del testo dell'intestazione" #: src/prefs/customization/codeItemStyle.ts:42 #: src/prefs/customization/emojiItemStyle.ts:42 #: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:42 #: src/prefs/customization/textItemStyle.ts:42 msgid "Body Background Color" msgstr "Colore di sfondo del corpo" @@ -102,7 +101,6 @@ msgstr "Colore di sfondo del corpo" #: src/prefs/customization/codeItemStyle.ts:43 #: src/prefs/customization/emojiItemStyle.ts:43 #: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/linkItemStyle.ts:43 #: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "Puoi cambiare il colore di sfondo del corpo" @@ -140,144 +138,152 @@ msgstr "Stile dell'elemento Colore" msgid "You can change the font of the metadata" msgstr "Puoi cambiare il carattere dei metadati" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:21 msgid "Common" msgstr "Comune" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Icon Pack" msgstr "Pacchetto icone" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "You can change the icon pack" msgstr "Puoi cambiare il pacchetto di icone" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Default Icons" msgstr "Icone predefinite" -#: src/prefs/customization/commonStyleGroup.ts:28 +#: src/prefs/customization/commonStyleGroup.ts:29 msgid "Legacy Icons" msgstr "Icone legacy" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "Item Width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "Item Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "You can change the item height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:44 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 +#: src/prefs/customization/commonStyleGroup.ts:53 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "Window Position" msgstr "Posizione della finestra" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "You can change position of the Pano" msgstr "Puoi cambiare la posizione di Pano" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Bottom" msgstr "In basso" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Left" msgstr "Sinistra" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "Destra" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Top" msgstr "In alto" -#: src/prefs/customization/commonStyleGroup.ts:70 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Window Background Color" msgstr "Colore di sfondo della finestra" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the window background color" msgstr "Puoi cambiare il colore di sfondo della finestra" -#: src/prefs/customization/commonStyleGroup.ts:78 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Incognito Window Background Color" msgstr "Colore di sfondo della finestra di navigazione in incognito" -#: src/prefs/customization/commonStyleGroup.ts:79 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the incognito window background color" msgstr "Puoi cambiare il colore di sfondo della finestra di navigazione in incognito" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Search Bar Background Color" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:90 +msgid "You can change the background color of the search bar" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "Search Bar Font" msgstr "Carattere della barra di ricerca" -#: src/prefs/customization/commonStyleGroup.ts:87 +#: src/prefs/customization/commonStyleGroup.ts:98 msgid "You can change the font of the search bar" msgstr "Puoi cambiare il carattere della barra di ricerca" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Item Title Font" msgstr "Font del titolo dell'elemento" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "Puoi cambiare il font del titolo" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "Item Date Font" msgstr "Data font elemento" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "You can change the font of the date" msgstr "Puoi cambiare il font della data" -#: src/prefs/customization/commonStyleGroup.ts:100 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "Active Item Border Color" msgstr "Colore del bordo dell'elemento attivo" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "You can change the active item border color" msgstr "È possibile modificare il colore del bordo dell'elemento attivo" -#: src/prefs/customization/commonStyleGroup.ts:108 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Hovered Item Border Color" msgstr "Colore del bordo dell'elemento al passaggio del mouse" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the hovered item border color" msgstr "Puoi cambiare il colore del bordo dell'elemento al passaggio del mouse" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:127 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:117 +#: src/prefs/customization/commonStyleGroup.ts:128 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -365,6 +371,46 @@ msgstr "" msgid "You can change the font of the text preview" msgstr "" +#: src/prefs/customization/floatingStyleGroup.ts:14 +msgid "Floating" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:15 +msgid "You can change the floating style" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:26 +msgid "Left Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:27 +msgid "You can change the left margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:38 +msgid "Right Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:39 +msgid "You can change the right margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:50 +msgid "Top Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:51 +msgid "You can change the top margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:62 +msgid "Bottom Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:63 +msgid "You can change the bottom margin" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "Cambia lo stile dell'elemento immagine" @@ -389,59 +435,59 @@ msgstr "Modificare lo stile dell'elemento di collegamento" msgid "Link Item Style" msgstr "Stile elemento di collegamento" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Background Color" msgstr "Colore di sfondo dei metadati" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the background color of the metadata" msgstr "Puoi cambiare il colore di sfondo dei metadati" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Color" msgstr "Colore del titolo dei metadati" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the title color of the metadata" msgstr "Puoi cambiare il colore del titolo dei metadati" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Font" msgstr "Carattere del titolo dei metadati" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the font of the metadata title" msgstr "È possibile modificare il carattere del titolo dei metadati" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Color" msgstr "Descrizione Colore Metadati" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the description color of the metadata" msgstr "Puoi cambiare il colore della descrizione dei metadati" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Font" msgstr "Descrizione Carattere Metadati" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the font of the metadata description" msgstr "È possibile modificare il carattere della descrizione dei metadati" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Color" msgstr "Colore del collegamento ai metadati" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the link color of the metadata" msgstr "È possibile modificare il colore del collegamento dei metadati" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Font" msgstr "Carattere di collegamento metadati" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the font of the metadata link" msgstr "È possibile modificare il carattere del collegamento ai metadati" diff --git a/resources/po/ja.po b/resources/po/ja.po index f0669b95..698486d1 100644 --- a/resources/po/ja.po +++ b/resources/po/ja.po @@ -39,7 +39,7 @@ msgstr "" msgid "No Description" msgstr "" -#: src/components/searchBox.ts:70 +#: src/components/searchBox.ts:73 msgid "Type to search, Tab to cycle" msgstr "" @@ -94,7 +94,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:42 #: src/prefs/customization/emojiItemStyle.ts:42 #: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:42 #: src/prefs/customization/textItemStyle.ts:42 msgid "Body Background Color" msgstr "" @@ -102,7 +101,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:43 #: src/prefs/customization/emojiItemStyle.ts:43 #: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/linkItemStyle.ts:43 #: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" @@ -140,144 +138,152 @@ msgstr "" msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:21 msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Icon Pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Default Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:28 +#: src/prefs/customization/commonStyleGroup.ts:29 msgid "Legacy Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "Item Width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "Item Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "You can change the item height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:44 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 +#: src/prefs/customization/commonStyleGroup.ts:53 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:70 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:78 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:79 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Search Bar Background Color" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:90 +msgid "You can change the background color of the search bar" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:87 +#: src/prefs/customization/commonStyleGroup.ts:98 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:100 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:108 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:127 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:117 +#: src/prefs/customization/commonStyleGroup.ts:128 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -365,6 +371,46 @@ msgstr "" msgid "You can change the font of the text preview" msgstr "" +#: src/prefs/customization/floatingStyleGroup.ts:14 +msgid "Floating" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:15 +msgid "You can change the floating style" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:26 +msgid "Left Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:27 +msgid "You can change the left margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:38 +msgid "Right Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:39 +msgid "You can change the right margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:50 +msgid "Top Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:51 +msgid "You can change the top margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:62 +msgid "Bottom Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:63 +msgid "You can change the bottom margin" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "" @@ -389,59 +435,59 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the font of the metadata link" msgstr "" diff --git a/resources/po/ko.po b/resources/po/ko.po index e7e0e5a4..98117fcf 100644 --- a/resources/po/ko.po +++ b/resources/po/ko.po @@ -39,7 +39,7 @@ msgstr "" msgid "No Description" msgstr "설명 없음" -#: src/components/searchBox.ts:70 +#: src/components/searchBox.ts:73 msgid "Type to search, Tab to cycle" msgstr "검색하려면 입력, Tab으로 전환" @@ -94,7 +94,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:42 #: src/prefs/customization/emojiItemStyle.ts:42 #: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:42 #: src/prefs/customization/textItemStyle.ts:42 msgid "Body Background Color" msgstr "" @@ -102,7 +101,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:43 #: src/prefs/customization/emojiItemStyle.ts:43 #: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/linkItemStyle.ts:43 #: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "내용 배경의 색상을 바꾸기" @@ -140,144 +138,152 @@ msgstr "색상 항목 스타일" msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:21 msgid "Common" msgstr "일반" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Icon Pack" msgstr "아이콘 팩" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "You can change the icon pack" msgstr "아이콘 팩을 바꾸기" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Default Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:28 +#: src/prefs/customization/commonStyleGroup.ts:29 msgid "Legacy Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "Item Width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "Item Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "You can change the item height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:44 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 +#: src/prefs/customization/commonStyleGroup.ts:53 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:70 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:78 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:79 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Search Bar Background Color" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:90 +msgid "You can change the background color of the search bar" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:87 +#: src/prefs/customization/commonStyleGroup.ts:98 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:100 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:108 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:127 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:117 +#: src/prefs/customization/commonStyleGroup.ts:128 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -365,6 +371,46 @@ msgstr "" msgid "You can change the font of the text preview" msgstr "" +#: src/prefs/customization/floatingStyleGroup.ts:14 +msgid "Floating" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:15 +msgid "You can change the floating style" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:26 +msgid "Left Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:27 +msgid "You can change the left margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:38 +msgid "Right Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:39 +msgid "You can change the right margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:50 +msgid "Top Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:51 +msgid "You can change the top margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:62 +msgid "Bottom Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:63 +msgid "You can change the bottom margin" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "" @@ -389,59 +435,59 @@ msgstr "링크 항목의 스타일을 바꾸기" msgid "Link Item Style" msgstr "링크 항목 스타일" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Color" msgstr "메타데이터 제목 색상" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the title color of the metadata" msgstr "메타데이터 제목의 색상을 바꾸기" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Font" msgstr "메타데이터 제목 글꼴" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the font of the metadata title" msgstr "메타데이터 제목의 글꼴을 바꾸기" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Color" msgstr "메타데이터 설명 색상" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the description color of the metadata" msgstr "메타데이터 설명의 색상을 바꾸기" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Font" msgstr "메타데이터 설명 글꼴" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the font of the metadata description" msgstr "메타데이터 설명의 글꼴을 바꾸기" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Color" msgstr "메타데이터 링크 색상" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the link color of the metadata" msgstr "메타데이터 링크의 색상을 바꾸기" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Font" msgstr "메타데이터 링크 글꼴" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the font of the metadata link" msgstr "메타데이터 링크의 글꼴을 바꾸기" diff --git a/resources/po/nl.po b/resources/po/nl.po index ca5cef96..47890b44 100644 --- a/resources/po/nl.po +++ b/resources/po/nl.po @@ -39,7 +39,7 @@ msgstr "" msgid "No Description" msgstr "" -#: src/components/searchBox.ts:70 +#: src/components/searchBox.ts:73 msgid "Type to search, Tab to cycle" msgstr "" @@ -94,7 +94,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:42 #: src/prefs/customization/emojiItemStyle.ts:42 #: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:42 #: src/prefs/customization/textItemStyle.ts:42 msgid "Body Background Color" msgstr "" @@ -102,7 +101,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:43 #: src/prefs/customization/emojiItemStyle.ts:43 #: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/linkItemStyle.ts:43 #: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" @@ -140,144 +138,152 @@ msgstr "" msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:21 msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Icon Pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Default Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:28 +#: src/prefs/customization/commonStyleGroup.ts:29 msgid "Legacy Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "Item Width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "Item Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "You can change the item height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:44 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 +#: src/prefs/customization/commonStyleGroup.ts:53 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:70 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:78 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:79 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Search Bar Background Color" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:90 +msgid "You can change the background color of the search bar" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:87 +#: src/prefs/customization/commonStyleGroup.ts:98 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:100 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:108 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:127 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:117 +#: src/prefs/customization/commonStyleGroup.ts:128 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -365,6 +371,46 @@ msgstr "" msgid "You can change the font of the text preview" msgstr "" +#: src/prefs/customization/floatingStyleGroup.ts:14 +msgid "Floating" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:15 +msgid "You can change the floating style" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:26 +msgid "Left Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:27 +msgid "You can change the left margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:38 +msgid "Right Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:39 +msgid "You can change the right margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:50 +msgid "Top Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:51 +msgid "You can change the top margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:62 +msgid "Bottom Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:63 +msgid "You can change the bottom margin" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "" @@ -389,59 +435,59 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the font of the metadata link" msgstr "" diff --git a/resources/po/no.po b/resources/po/no.po index e33462fc..d5518cd5 100644 --- a/resources/po/no.po +++ b/resources/po/no.po @@ -39,7 +39,7 @@ msgstr "" msgid "No Description" msgstr "" -#: src/components/searchBox.ts:70 +#: src/components/searchBox.ts:73 msgid "Type to search, Tab to cycle" msgstr "" @@ -94,7 +94,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:42 #: src/prefs/customization/emojiItemStyle.ts:42 #: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:42 #: src/prefs/customization/textItemStyle.ts:42 msgid "Body Background Color" msgstr "" @@ -102,7 +101,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:43 #: src/prefs/customization/emojiItemStyle.ts:43 #: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/linkItemStyle.ts:43 #: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" @@ -140,144 +138,152 @@ msgstr "" msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:21 msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Icon Pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Default Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:28 +#: src/prefs/customization/commonStyleGroup.ts:29 msgid "Legacy Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "Item Width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "Item Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "You can change the item height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:44 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 +#: src/prefs/customization/commonStyleGroup.ts:53 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:70 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:78 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:79 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Search Bar Background Color" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:90 +msgid "You can change the background color of the search bar" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:87 +#: src/prefs/customization/commonStyleGroup.ts:98 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:100 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:108 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:127 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:117 +#: src/prefs/customization/commonStyleGroup.ts:128 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -365,6 +371,46 @@ msgstr "" msgid "You can change the font of the text preview" msgstr "" +#: src/prefs/customization/floatingStyleGroup.ts:14 +msgid "Floating" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:15 +msgid "You can change the floating style" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:26 +msgid "Left Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:27 +msgid "You can change the left margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:38 +msgid "Right Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:39 +msgid "You can change the right margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:50 +msgid "Top Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:51 +msgid "You can change the top margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:62 +msgid "Bottom Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:63 +msgid "You can change the bottom margin" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "" @@ -389,59 +435,59 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the font of the metadata link" msgstr "" diff --git a/resources/po/oc.po b/resources/po/oc.po index c254587d..a0802112 100644 --- a/resources/po/oc.po +++ b/resources/po/oc.po @@ -39,7 +39,7 @@ msgstr "" msgid "No Description" msgstr "" -#: src/components/searchBox.ts:70 +#: src/components/searchBox.ts:73 msgid "Type to search, Tab to cycle" msgstr "" @@ -94,7 +94,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:42 #: src/prefs/customization/emojiItemStyle.ts:42 #: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:42 #: src/prefs/customization/textItemStyle.ts:42 msgid "Body Background Color" msgstr "" @@ -102,7 +101,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:43 #: src/prefs/customization/emojiItemStyle.ts:43 #: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/linkItemStyle.ts:43 #: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" @@ -140,144 +138,152 @@ msgstr "" msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:21 msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Icon Pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Default Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:28 +#: src/prefs/customization/commonStyleGroup.ts:29 msgid "Legacy Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "Item Width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "Item Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "You can change the item height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:44 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 +#: src/prefs/customization/commonStyleGroup.ts:53 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:70 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:78 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:79 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Search Bar Background Color" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:90 +msgid "You can change the background color of the search bar" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:87 +#: src/prefs/customization/commonStyleGroup.ts:98 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:100 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:108 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:127 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:117 +#: src/prefs/customization/commonStyleGroup.ts:128 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -365,6 +371,46 @@ msgstr "" msgid "You can change the font of the text preview" msgstr "" +#: src/prefs/customization/floatingStyleGroup.ts:14 +msgid "Floating" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:15 +msgid "You can change the floating style" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:26 +msgid "Left Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:27 +msgid "You can change the left margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:38 +msgid "Right Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:39 +msgid "You can change the right margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:50 +msgid "Top Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:51 +msgid "You can change the top margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:62 +msgid "Bottom Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:63 +msgid "You can change the bottom margin" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "" @@ -389,59 +435,59 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the font of the metadata link" msgstr "" diff --git a/resources/po/pano@elhan.io.pot b/resources/po/pano@elhan.io.pot index a998e83f..2e0e0ad4 100644 --- a/resources/po/pano@elhan.io.pot +++ b/resources/po/pano@elhan.io.pot @@ -2,7 +2,7 @@ msgid "" msgstr "" "Content-Type: text/plain; charset=UTF-8\n" -#: src/prefs/customization/commonStyleGroup.ts:100 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "Active Item Border Color" msgstr "" @@ -46,7 +46,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:42 #: src/prefs/customization/emojiItemStyle.ts:42 #: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:42 #: src/prefs/customization/textItemStyle.ts:42 msgid "Body Background Color" msgstr "" @@ -61,10 +60,14 @@ msgstr "" msgid "Body Text Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Bottom" msgstr "" +#: src/prefs/customization/floatingStyleGroup.ts:62 +msgid "Bottom Margin" +msgstr "" + #: src/components/indicator/clearHistoryDialog.ts:23 msgid "Cancel" msgstr "" @@ -145,19 +148,19 @@ msgstr "" msgid "Color Item Style" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:21 msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 +#: src/prefs/customization/commonStyleGroup.ts:53 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:44 msgid "Controls the visibility of the clipboard item headers" msgstr "" @@ -173,7 +176,7 @@ msgstr "" msgid "Database Location" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Default Icons" msgstr "" @@ -193,7 +196,7 @@ msgstr "" msgid "Emoji Size" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Enable Headers" msgstr "" @@ -229,6 +232,10 @@ msgstr "" msgid "Files Preview Text Color" msgstr "" +#: src/prefs/customization/floatingStyleGroup.ts:14 +msgid "Floating" +msgstr "" + #: src/prefs/general/index.ts:13 msgid "General" msgstr "" @@ -265,11 +272,11 @@ msgstr "" msgid "History Length" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:108 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Icon Pack" msgstr "" @@ -293,15 +300,15 @@ msgstr "" msgid "Incognito Mode Shortcut" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:78 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "Item Height" msgstr "" @@ -309,11 +316,11 @@ msgstr "" msgid "Item Style" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "Item Width" msgstr "" @@ -329,11 +336,15 @@ msgstr "" msgid "Keep search entry when Pano hides" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:28 +#: src/prefs/customization/floatingStyleGroup.ts:26 +msgid "Left Margin" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:29 msgid "Legacy Icons" msgstr "" @@ -357,31 +368,31 @@ msgstr "" msgid "Manage Exclusions" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Font" msgstr "" @@ -418,11 +429,19 @@ msgstr "" msgid "Remove on Middle Click" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/floatingStyleGroup.ts:38 +msgid "Right Margin" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Search Bar Background Color" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "Search Bar Font" msgstr "" @@ -443,7 +462,7 @@ msgstr "" msgid "Settings" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:127 msgid "Show Controls on Hover" msgstr "" @@ -499,11 +518,15 @@ msgstr "" msgid "Title Text Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Top" msgstr "" -#: src/components/searchBox.ts:70 +#: src/prefs/customization/floatingStyleGroup.ts:50 +msgid "Top Margin" +msgstr "" + +#: src/components/searchBox.ts:73 msgid "Type to search, Tab to cycle" msgstr "" @@ -519,7 +542,7 @@ msgstr "" msgid "When enabled, Pano will not track clipboard from excluded apps" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:117 +#: src/prefs/customization/commonStyleGroup.ts:128 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -535,7 +558,7 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:70 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Window Background Color" msgstr "" @@ -543,22 +566,21 @@ msgstr "" msgid "Window class name" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "You can change the active item border color" msgstr "" #: src/prefs/customization/codeItemStyle.ts:43 #: src/prefs/customization/emojiItemStyle.ts:43 #: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/linkItemStyle.ts:43 #: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" @@ -577,20 +599,28 @@ msgstr "" msgid "You can change the background color of the header" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the background color of the metadata" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:90 +msgid "You can change the background color of the search bar" +msgstr "" + #: src/prefs/customization/fileItemStyle.ts:98 msgid "You can change the background color of the text preview" msgstr "" +#: src/prefs/customization/floatingStyleGroup.ts:63 +msgid "You can change the bottom margin" +msgstr "" + #: src/prefs/customization/codeItemStyle.ts:56 #: src/prefs/customization/textItemStyle.ts:61 msgid "You can change the character length of the visible text in the body" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the description color of the metadata" msgstr "" @@ -598,12 +628,16 @@ msgstr "" msgid "You can change the emoji size" msgstr "" +#: src/prefs/customization/floatingStyleGroup.ts:15 +msgid "You can change the floating style" +msgstr "" + #: src/prefs/customization/codeItemStyle.ts:50 #: src/prefs/customization/textItemStyle.ts:55 msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "You can change the font of the date" msgstr "" @@ -615,19 +649,19 @@ msgstr "" msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the font of the metadata link" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:87 +#: src/prefs/customization/commonStyleGroup.ts:98 msgid "You can change the font of the search bar" msgstr "" @@ -635,35 +669,43 @@ msgstr "" msgid "You can change the font of the text preview" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:79 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "You can change the item height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "You can change the item width" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/floatingStyleGroup.ts:27 +msgid "You can change the left margin" +msgstr "" + +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the link color of the metadata" msgstr "" +#: src/prefs/customization/floatingStyleGroup.ts:39 +msgid "You can change the right margin" +msgstr "" + #: src/prefs/customization/textItemStyle.ts:51 msgid "You can change the text color of the body" msgstr "" @@ -690,11 +732,15 @@ msgstr "" msgid "You can change the text color of the title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/floatingStyleGroup.ts:51 +msgid "You can change the top margin" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the window background color" msgstr "" diff --git a/resources/po/pl.po b/resources/po/pl.po index 1f2d9f23..cf3d9a92 100644 --- a/resources/po/pl.po +++ b/resources/po/pl.po @@ -39,7 +39,7 @@ msgstr "" msgid "No Description" msgstr "" -#: src/components/searchBox.ts:70 +#: src/components/searchBox.ts:73 msgid "Type to search, Tab to cycle" msgstr "" @@ -94,7 +94,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:42 #: src/prefs/customization/emojiItemStyle.ts:42 #: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:42 #: src/prefs/customization/textItemStyle.ts:42 msgid "Body Background Color" msgstr "" @@ -102,7 +101,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:43 #: src/prefs/customization/emojiItemStyle.ts:43 #: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/linkItemStyle.ts:43 #: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" @@ -140,144 +138,152 @@ msgstr "" msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:21 msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Icon Pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Default Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:28 +#: src/prefs/customization/commonStyleGroup.ts:29 msgid "Legacy Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "Item Width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "Item Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "You can change the item height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:44 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 +#: src/prefs/customization/commonStyleGroup.ts:53 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:70 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:78 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:79 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Search Bar Background Color" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:90 +msgid "You can change the background color of the search bar" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:87 +#: src/prefs/customization/commonStyleGroup.ts:98 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:100 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:108 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:127 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:117 +#: src/prefs/customization/commonStyleGroup.ts:128 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -365,6 +371,46 @@ msgstr "" msgid "You can change the font of the text preview" msgstr "" +#: src/prefs/customization/floatingStyleGroup.ts:14 +msgid "Floating" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:15 +msgid "You can change the floating style" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:26 +msgid "Left Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:27 +msgid "You can change the left margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:38 +msgid "Right Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:39 +msgid "You can change the right margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:50 +msgid "Top Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:51 +msgid "You can change the top margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:62 +msgid "Bottom Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:63 +msgid "You can change the bottom margin" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "" @@ -389,59 +435,59 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the font of the metadata link" msgstr "" diff --git a/resources/po/pt.po b/resources/po/pt.po index 98422cfa..f1771b7a 100644 --- a/resources/po/pt.po +++ b/resources/po/pt.po @@ -39,7 +39,7 @@ msgstr "" msgid "No Description" msgstr "" -#: src/components/searchBox.ts:70 +#: src/components/searchBox.ts:73 msgid "Type to search, Tab to cycle" msgstr "" @@ -94,7 +94,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:42 #: src/prefs/customization/emojiItemStyle.ts:42 #: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:42 #: src/prefs/customization/textItemStyle.ts:42 msgid "Body Background Color" msgstr "" @@ -102,7 +101,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:43 #: src/prefs/customization/emojiItemStyle.ts:43 #: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/linkItemStyle.ts:43 #: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" @@ -140,144 +138,152 @@ msgstr "" msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:21 msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Icon Pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Default Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:28 +#: src/prefs/customization/commonStyleGroup.ts:29 msgid "Legacy Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "Item Width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "Item Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "You can change the item height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:44 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 +#: src/prefs/customization/commonStyleGroup.ts:53 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:70 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:78 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:79 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Search Bar Background Color" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:90 +msgid "You can change the background color of the search bar" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:87 +#: src/prefs/customization/commonStyleGroup.ts:98 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:100 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:108 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:127 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:117 +#: src/prefs/customization/commonStyleGroup.ts:128 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -365,6 +371,46 @@ msgstr "" msgid "You can change the font of the text preview" msgstr "" +#: src/prefs/customization/floatingStyleGroup.ts:14 +msgid "Floating" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:15 +msgid "You can change the floating style" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:26 +msgid "Left Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:27 +msgid "You can change the left margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:38 +msgid "Right Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:39 +msgid "You can change the right margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:50 +msgid "Top Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:51 +msgid "You can change the top margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:62 +msgid "Bottom Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:63 +msgid "You can change the bottom margin" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "" @@ -389,59 +435,59 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the font of the metadata link" msgstr "" diff --git a/resources/po/pt_BR.po b/resources/po/pt_BR.po index 27193ede..e07b6271 100644 --- a/resources/po/pt_BR.po +++ b/resources/po/pt_BR.po @@ -39,7 +39,7 @@ msgstr "" msgid "No Description" msgstr "Sem descrição" -#: src/components/searchBox.ts:70 +#: src/components/searchBox.ts:73 msgid "Type to search, Tab to cycle" msgstr "Digite para pesquisar, Tab para mudar" @@ -94,7 +94,6 @@ msgstr "Você pode mudar a cor do texto do cabeçalho" #: src/prefs/customization/codeItemStyle.ts:42 #: src/prefs/customization/emojiItemStyle.ts:42 #: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:42 #: src/prefs/customization/textItemStyle.ts:42 msgid "Body Background Color" msgstr "Cor de fundo do corpo" @@ -102,7 +101,6 @@ msgstr "Cor de fundo do corpo" #: src/prefs/customization/codeItemStyle.ts:43 #: src/prefs/customization/emojiItemStyle.ts:43 #: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/linkItemStyle.ts:43 #: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "Você pode mudar a cor de fundo do corpo" @@ -140,144 +138,152 @@ msgstr "Estilo do item de cor" msgid "You can change the font of the metadata" msgstr "Você pode mudar a fonte dos metadados" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:21 msgid "Common" msgstr "Comum" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Icon Pack" msgstr "Pacote de ícones" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "You can change the icon pack" msgstr "Você pode mudar o pacote de ícones" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Default Icons" msgstr "Ícones padrão" -#: src/prefs/customization/commonStyleGroup.ts:28 +#: src/prefs/customization/commonStyleGroup.ts:29 msgid "Legacy Icons" msgstr "Ícones antigos" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "Item Width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "Item Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "You can change the item height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:44 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 +#: src/prefs/customization/commonStyleGroup.ts:53 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "Window Position" msgstr "Posição da janela" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "You can change position of the Pano" msgstr "Você pode mudar a posição do Pano" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Bottom" msgstr "Inferior" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Left" msgstr "Esquerda" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "Direita" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Top" msgstr "Superior" -#: src/prefs/customization/commonStyleGroup.ts:70 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Window Background Color" msgstr "Cor de fundo da janela" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the window background color" msgstr "Você pode mudar a cor de fundo da janela" -#: src/prefs/customization/commonStyleGroup.ts:78 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Incognito Window Background Color" msgstr "Cor de fundo da janela anônima" -#: src/prefs/customization/commonStyleGroup.ts:79 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the incognito window background color" msgstr "Você pode mudar a cor de fundo da janela anônima" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Search Bar Background Color" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:90 +msgid "You can change the background color of the search bar" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "Search Bar Font" msgstr "Fonte da barra de pesquisa" -#: src/prefs/customization/commonStyleGroup.ts:87 +#: src/prefs/customization/commonStyleGroup.ts:98 msgid "You can change the font of the search bar" msgstr "Você pode mudar a fonte da barra de pesquisa" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Item Title Font" msgstr "Fonte do título do item" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "Você pode mudar a fonte do título" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "Item Date Font" msgstr "Fonte da data do item" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "You can change the font of the date" msgstr "Você pode mudar a fonte da data" -#: src/prefs/customization/commonStyleGroup.ts:100 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "Active Item Border Color" msgstr "Cor da borda do item ativo" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "You can change the active item border color" msgstr "Você pode mudar a cor da borda do item ativo" -#: src/prefs/customization/commonStyleGroup.ts:108 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Hovered Item Border Color" msgstr "Cor da borda do item destacado" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the hovered item border color" msgstr "Você pode mudar a cor da borda do item destacado" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:127 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:117 +#: src/prefs/customization/commonStyleGroup.ts:128 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -365,6 +371,46 @@ msgstr "" msgid "You can change the font of the text preview" msgstr "" +#: src/prefs/customization/floatingStyleGroup.ts:14 +msgid "Floating" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:15 +msgid "You can change the floating style" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:26 +msgid "Left Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:27 +msgid "You can change the left margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:38 +msgid "Right Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:39 +msgid "You can change the right margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:50 +msgid "Top Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:51 +msgid "You can change the top margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:62 +msgid "Bottom Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:63 +msgid "You can change the bottom margin" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "Mudar o estilo do item de imagem" @@ -389,59 +435,59 @@ msgstr "Mudar o estilo do item de link" msgid "Link Item Style" msgstr "Estilo de Item de Link" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Background Color" msgstr "Cor de fundo dos metadados" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the background color of the metadata" msgstr "Você pode mudar a cor de fundo dos metadados" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Color" msgstr "Cor do título do metadado" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the title color of the metadata" msgstr "Você pode mudar a cor do título do metadado" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Font" msgstr "Fonte do título do metadado" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the font of the metadata title" msgstr "Você pode mudar a fonte do título do metadado" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Color" msgstr "Cor da descrição do metadado" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the description color of the metadata" msgstr "Você pode mudar a cor da descrição do metadado" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Font" msgstr "Fonte da descrição do metadado" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the font of the metadata description" msgstr "Você pode mudar a fonte da descrição do metadado" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Color" msgstr "Cor do link do metadado" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the link color of the metadata" msgstr "Você pode mudar a cor do link do metadado" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Font" msgstr "Fonte do link do metadado" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the font of the metadata link" msgstr "Você pode mudar a fonte do link do metadado" diff --git a/resources/po/ro.po b/resources/po/ro.po index 0c232ed8..6da3ae80 100644 --- a/resources/po/ro.po +++ b/resources/po/ro.po @@ -39,7 +39,7 @@ msgstr "" msgid "No Description" msgstr "" -#: src/components/searchBox.ts:70 +#: src/components/searchBox.ts:73 msgid "Type to search, Tab to cycle" msgstr "" @@ -94,7 +94,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:42 #: src/prefs/customization/emojiItemStyle.ts:42 #: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:42 #: src/prefs/customization/textItemStyle.ts:42 msgid "Body Background Color" msgstr "" @@ -102,7 +101,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:43 #: src/prefs/customization/emojiItemStyle.ts:43 #: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/linkItemStyle.ts:43 #: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" @@ -140,144 +138,152 @@ msgstr "" msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:21 msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Icon Pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Default Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:28 +#: src/prefs/customization/commonStyleGroup.ts:29 msgid "Legacy Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "Item Width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "Item Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "You can change the item height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:44 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 +#: src/prefs/customization/commonStyleGroup.ts:53 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:70 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:78 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:79 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Search Bar Background Color" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:90 +msgid "You can change the background color of the search bar" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:87 +#: src/prefs/customization/commonStyleGroup.ts:98 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:100 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:108 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:127 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:117 +#: src/prefs/customization/commonStyleGroup.ts:128 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -365,6 +371,46 @@ msgstr "" msgid "You can change the font of the text preview" msgstr "" +#: src/prefs/customization/floatingStyleGroup.ts:14 +msgid "Floating" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:15 +msgid "You can change the floating style" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:26 +msgid "Left Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:27 +msgid "You can change the left margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:38 +msgid "Right Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:39 +msgid "You can change the right margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:50 +msgid "Top Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:51 +msgid "You can change the top margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:62 +msgid "Bottom Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:63 +msgid "You can change the bottom margin" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "" @@ -389,59 +435,59 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the font of the metadata link" msgstr "" diff --git a/resources/po/ru.po b/resources/po/ru.po index eaccf99a..77d2cf27 100644 --- a/resources/po/ru.po +++ b/resources/po/ru.po @@ -39,7 +39,7 @@ msgstr "" msgid "No Description" msgstr "Без описания" -#: src/components/searchBox.ts:70 +#: src/components/searchBox.ts:73 msgid "Type to search, Tab to cycle" msgstr "Введите для поиска или нажмите Tab для переключения" @@ -94,7 +94,6 @@ msgstr "Вы можете изменить цвет текста в заголо #: src/prefs/customization/codeItemStyle.ts:42 #: src/prefs/customization/emojiItemStyle.ts:42 #: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:42 #: src/prefs/customization/textItemStyle.ts:42 msgid "Body Background Color" msgstr "Цвет фона содержимого" @@ -102,7 +101,6 @@ msgstr "Цвет фона содержимого" #: src/prefs/customization/codeItemStyle.ts:43 #: src/prefs/customization/emojiItemStyle.ts:43 #: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/linkItemStyle.ts:43 #: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "Вы можете изменить цвет фона содержимого" @@ -140,144 +138,152 @@ msgstr "Стиль элемента с цветом" msgid "You can change the font of the metadata" msgstr "Вы можете изменить шрифт метаданных" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:21 msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Icon Pack" msgstr "Набор иконок" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "You can change the icon pack" msgstr "Вы можете изменить набор иконок" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Default Icons" msgstr "Стандартные иконки" -#: src/prefs/customization/commonStyleGroup.ts:28 +#: src/prefs/customization/commonStyleGroup.ts:29 msgid "Legacy Icons" msgstr "Устаревшие иконки" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "Item Width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "Item Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "You can change the item height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:44 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 +#: src/prefs/customization/commonStyleGroup.ts:53 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "Window Position" msgstr "Положение окна" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "You can change position of the Pano" msgstr "Вы можете изменить положение Pano" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:70 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Window Background Color" msgstr "Цвет фона окна" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the window background color" msgstr "Вы можете изменить цвет фона окна" -#: src/prefs/customization/commonStyleGroup.ts:78 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Incognito Window Background Color" msgstr "Цвет фона окна инкогнито" -#: src/prefs/customization/commonStyleGroup.ts:79 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the incognito window background color" msgstr "Вы можете изменить цвет фона окна инкогнито" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Search Bar Background Color" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:90 +msgid "You can change the background color of the search bar" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "Search Bar Font" msgstr "Шрифт панели поиска" -#: src/prefs/customization/commonStyleGroup.ts:87 +#: src/prefs/customization/commonStyleGroup.ts:98 msgid "You can change the font of the search bar" msgstr "Вы можете изменить шрифт в строке поиска" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Item Title Font" msgstr "Шрифт заголовка элемента" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "Вы можете изменить шрифт заголовка" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "Item Date Font" msgstr "Шрифт даты элемента" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "You can change the font of the date" msgstr "Вы можете изменить шрифт даты" -#: src/prefs/customization/commonStyleGroup.ts:100 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "Active Item Border Color" msgstr "Цвет границы активного элемента" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "You can change the active item border color" msgstr "Вы можете изменить цвет границы активного элемента" -#: src/prefs/customization/commonStyleGroup.ts:108 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Hovered Item Border Color" msgstr "Цвет границы выбранного элемента" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the hovered item border color" msgstr "Вы можете изменить цвет границы выбранного элемента" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:127 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:117 +#: src/prefs/customization/commonStyleGroup.ts:128 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -365,6 +371,46 @@ msgstr "" msgid "You can change the font of the text preview" msgstr "" +#: src/prefs/customization/floatingStyleGroup.ts:14 +msgid "Floating" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:15 +msgid "You can change the floating style" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:26 +msgid "Left Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:27 +msgid "You can change the left margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:38 +msgid "Right Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:39 +msgid "You can change the right margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:50 +msgid "Top Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:51 +msgid "You can change the top margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:62 +msgid "Bottom Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:63 +msgid "You can change the bottom margin" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "Изменить стиль элемента с изображением" @@ -389,59 +435,59 @@ msgstr "Изменить стиль элемента со сслыкой" msgid "Link Item Style" msgstr "Стиль элемента со ссылкой" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Background Color" msgstr "Цвет фона метаданных" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the background color of the metadata" msgstr "Вы можете изменить цвет фона элемента со ссылкой" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Color" msgstr "Цвет заголовка метаданных" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the title color of the metadata" msgstr "Вы можете изменить цвет заголовка метаданных" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Font" msgstr "Шрифт заголовка метаданных" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the font of the metadata title" msgstr "Вы можете изменить шрифт заголовка метаданных" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Color" msgstr "Цвет описания ссылки" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the description color of the metadata" msgstr "Вы можете изменить цвет текста описания метаданных" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Font" msgstr "Шрифт описания ссылки" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the font of the metadata description" msgstr "Вы можете изменить шрифт описания ссылки" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Color" msgstr "Цвет элемента со ссылкой" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the link color of the metadata" msgstr "Вы можете изменить цвет ссылки метаданных" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Font" msgstr "Шрифт сслыки" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the font of the metadata link" msgstr "Вы можете изменить шрифт ссылки" diff --git a/resources/po/sk.po b/resources/po/sk.po index 7b770cb6..a888aca5 100644 --- a/resources/po/sk.po +++ b/resources/po/sk.po @@ -39,7 +39,7 @@ msgstr "" msgid "No Description" msgstr "" -#: src/components/searchBox.ts:70 +#: src/components/searchBox.ts:73 msgid "Type to search, Tab to cycle" msgstr "" @@ -94,7 +94,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:42 #: src/prefs/customization/emojiItemStyle.ts:42 #: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:42 #: src/prefs/customization/textItemStyle.ts:42 msgid "Body Background Color" msgstr "" @@ -102,7 +101,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:43 #: src/prefs/customization/emojiItemStyle.ts:43 #: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/linkItemStyle.ts:43 #: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" @@ -140,144 +138,152 @@ msgstr "" msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:21 msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Icon Pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Default Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:28 +#: src/prefs/customization/commonStyleGroup.ts:29 msgid "Legacy Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "Item Width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "Item Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "You can change the item height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:44 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 +#: src/prefs/customization/commonStyleGroup.ts:53 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:70 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:78 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:79 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Search Bar Background Color" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:90 +msgid "You can change the background color of the search bar" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:87 +#: src/prefs/customization/commonStyleGroup.ts:98 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:100 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:108 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:127 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:117 +#: src/prefs/customization/commonStyleGroup.ts:128 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -365,6 +371,46 @@ msgstr "" msgid "You can change the font of the text preview" msgstr "" +#: src/prefs/customization/floatingStyleGroup.ts:14 +msgid "Floating" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:15 +msgid "You can change the floating style" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:26 +msgid "Left Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:27 +msgid "You can change the left margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:38 +msgid "Right Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:39 +msgid "You can change the right margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:50 +msgid "Top Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:51 +msgid "You can change the top margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:62 +msgid "Bottom Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:63 +msgid "You can change the bottom margin" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "" @@ -389,59 +435,59 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the font of the metadata link" msgstr "" diff --git a/resources/po/sv.po b/resources/po/sv.po index b5066f92..a3524a62 100644 --- a/resources/po/sv.po +++ b/resources/po/sv.po @@ -39,7 +39,7 @@ msgstr "" msgid "No Description" msgstr "" -#: src/components/searchBox.ts:70 +#: src/components/searchBox.ts:73 msgid "Type to search, Tab to cycle" msgstr "" @@ -94,7 +94,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:42 #: src/prefs/customization/emojiItemStyle.ts:42 #: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:42 #: src/prefs/customization/textItemStyle.ts:42 msgid "Body Background Color" msgstr "" @@ -102,7 +101,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:43 #: src/prefs/customization/emojiItemStyle.ts:43 #: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/linkItemStyle.ts:43 #: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" @@ -140,144 +138,152 @@ msgstr "" msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:21 msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Icon Pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Default Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:28 +#: src/prefs/customization/commonStyleGroup.ts:29 msgid "Legacy Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "Item Width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "Item Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "You can change the item height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:44 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 +#: src/prefs/customization/commonStyleGroup.ts:53 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:70 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:78 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:79 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Search Bar Background Color" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:90 +msgid "You can change the background color of the search bar" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:87 +#: src/prefs/customization/commonStyleGroup.ts:98 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:100 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:108 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:127 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:117 +#: src/prefs/customization/commonStyleGroup.ts:128 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -365,6 +371,46 @@ msgstr "" msgid "You can change the font of the text preview" msgstr "" +#: src/prefs/customization/floatingStyleGroup.ts:14 +msgid "Floating" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:15 +msgid "You can change the floating style" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:26 +msgid "Left Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:27 +msgid "You can change the left margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:38 +msgid "Right Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:39 +msgid "You can change the right margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:50 +msgid "Top Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:51 +msgid "You can change the top margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:62 +msgid "Bottom Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:63 +msgid "You can change the bottom margin" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "" @@ -389,59 +435,59 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the font of the metadata link" msgstr "" diff --git a/resources/po/tr.po b/resources/po/tr.po index 843674ff..508a92f1 100644 --- a/resources/po/tr.po +++ b/resources/po/tr.po @@ -39,7 +39,7 @@ msgstr "" msgid "No Description" msgstr "Açıklama Yok" -#: src/components/searchBox.ts:70 +#: src/components/searchBox.ts:73 msgid "Type to search, Tab to cycle" msgstr "Aramak için yazın, gezinmek için Tab'a basın" @@ -94,7 +94,6 @@ msgstr "Başlık yazı rengini değiştirebilirsiniz" #: src/prefs/customization/codeItemStyle.ts:42 #: src/prefs/customization/emojiItemStyle.ts:42 #: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:42 #: src/prefs/customization/textItemStyle.ts:42 msgid "Body Background Color" msgstr "Gövde Arkaplan Rengi" @@ -102,7 +101,6 @@ msgstr "Gövde Arkaplan Rengi" #: src/prefs/customization/codeItemStyle.ts:43 #: src/prefs/customization/emojiItemStyle.ts:43 #: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/linkItemStyle.ts:43 #: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "Gövde arkaplan rengini değiştirebilirsiniz" @@ -140,144 +138,152 @@ msgstr "Renk Öğesi Tarzı" msgid "You can change the font of the metadata" msgstr "Metaveri yazı tipini değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:21 msgid "Common" msgstr "Genel" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Icon Pack" msgstr "Simge Paketi" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "You can change the icon pack" msgstr "Simge paketini değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Default Icons" msgstr "Varsayılan Simgeler" -#: src/prefs/customization/commonStyleGroup.ts:28 +#: src/prefs/customization/commonStyleGroup.ts:29 msgid "Legacy Icons" msgstr "Eski Simgeler" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "Item Width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "Item Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "You can change the item height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:44 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 +#: src/prefs/customization/commonStyleGroup.ts:53 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "Window Position" msgstr "Pencere Konumu" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "You can change position of the Pano" msgstr "Pencere konumunu değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Bottom" msgstr "Alt" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Left" msgstr "Sol" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "Sağ" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Top" msgstr "Üst" -#: src/prefs/customization/commonStyleGroup.ts:70 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Window Background Color" msgstr "Pencere Arkaplan Rengi" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the window background color" msgstr "Pencere arkaplan rengini değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:78 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Incognito Window Background Color" msgstr "Gizli Pencere Arkaplan Rengi" -#: src/prefs/customization/commonStyleGroup.ts:79 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the incognito window background color" msgstr "Gizli pencere arkaplan rengini değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Search Bar Background Color" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:90 +msgid "You can change the background color of the search bar" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "Search Bar Font" msgstr "Arama Çubuğu Yazı Tipi" -#: src/prefs/customization/commonStyleGroup.ts:87 +#: src/prefs/customization/commonStyleGroup.ts:98 msgid "You can change the font of the search bar" msgstr "Arama çubuğu yazı tipini değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Item Title Font" msgstr "Öğe Başlığı Yazı Tipi" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "Öğe başlığının yazı tipini değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "Item Date Font" msgstr "Öğe Tarihi Yazı Tipi" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "You can change the font of the date" msgstr "Öğe tarihi yazı tipini değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:100 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "Active Item Border Color" msgstr "Etkin Öğe Çerçeve Rengi" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "You can change the active item border color" msgstr "Etkin öğenin çerçeve rengini değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:108 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Hovered Item Border Color" msgstr "Öğenin Üzerine Gelindiğindeki Çerçeve Rengi" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the hovered item border color" msgstr "Öğenin üzerine geldiğindeki çerçeve rengini değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:127 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:117 +#: src/prefs/customization/commonStyleGroup.ts:128 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -365,6 +371,46 @@ msgstr "" msgid "You can change the font of the text preview" msgstr "" +#: src/prefs/customization/floatingStyleGroup.ts:14 +msgid "Floating" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:15 +msgid "You can change the floating style" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:26 +msgid "Left Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:27 +msgid "You can change the left margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:38 +msgid "Right Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:39 +msgid "You can change the right margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:50 +msgid "Top Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:51 +msgid "You can change the top margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:62 +msgid "Bottom Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:63 +msgid "You can change the bottom margin" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "Resim öğesinin tarzını değiştirebilirsiniz" @@ -389,59 +435,59 @@ msgstr "Bağlantı öğesinin tarzını değiştir" msgid "Link Item Style" msgstr "Bağlantı Öğe Tarzı" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Background Color" msgstr "Metaveri Arkaplan Rengi" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the background color of the metadata" msgstr "Metaveri arkaplan rengini değiştirebilirsiniz" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Color" msgstr "Metaveri Başlık Rengi" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the title color of the metadata" msgstr "Metaverinin başlık rengini değiştirebilirsiniz" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Font" msgstr "Metaveri Başlık Yazı Tipi" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the font of the metadata title" msgstr "Metaverinin başlığının yazı tipini değiştirebilirsiniz" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Color" msgstr "Metaveri Açıklama Rengi" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the description color of the metadata" msgstr "Metaverinin açıklama rengini değiştirebilirsiniz" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Font" msgstr "Metaveri Açıklama Yazı Tipi" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the font of the metadata description" msgstr "Metaverinin açıklama yazı tipini değiştirebilirsiniz" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Color" msgstr "Metaveri Bağlantı Rengi" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the link color of the metadata" msgstr "Metaverinin bağlantı rengini değiştirebilirsiniz" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Font" msgstr "Metaveri Bağlantı Yazı Tipi" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the font of the metadata link" msgstr "Metaverinin bağlantı yazı tipini değiştirebilirsiniz" diff --git a/resources/po/uk.po b/resources/po/uk.po index 7cba50ef..5ce4b0e9 100644 --- a/resources/po/uk.po +++ b/resources/po/uk.po @@ -39,7 +39,7 @@ msgstr "" msgid "No Description" msgstr "Без опису" -#: src/components/searchBox.ts:70 +#: src/components/searchBox.ts:73 msgid "Type to search, Tab to cycle" msgstr "Введіть для пошуку, Tab для перемикання" @@ -94,7 +94,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:42 #: src/prefs/customization/emojiItemStyle.ts:42 #: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:42 #: src/prefs/customization/textItemStyle.ts:42 msgid "Body Background Color" msgstr "" @@ -102,7 +101,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:43 #: src/prefs/customization/emojiItemStyle.ts:43 #: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/linkItemStyle.ts:43 #: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "Ви можете змінити колір фону тіла" @@ -140,144 +138,152 @@ msgstr "Стиль елемента кольору" msgid "You can change the font of the metadata" msgstr "Ви можете змінити шрифт метаданих" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:21 msgid "Common" msgstr "Загальне" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Icon Pack" msgstr "Пакет іконок" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "You can change the icon pack" msgstr "Ви можете змінити пакет іконок" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Default Icons" msgstr "Значки за замовчуванням" -#: src/prefs/customization/commonStyleGroup.ts:28 +#: src/prefs/customization/commonStyleGroup.ts:29 msgid "Legacy Icons" msgstr "Класичні значки" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "Item Width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "Item Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "You can change the item height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:44 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 +#: src/prefs/customization/commonStyleGroup.ts:53 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:70 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:78 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:79 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Search Bar Background Color" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:90 +msgid "You can change the background color of the search bar" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:87 +#: src/prefs/customization/commonStyleGroup.ts:98 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:100 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:108 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:127 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:117 +#: src/prefs/customization/commonStyleGroup.ts:128 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -365,6 +371,46 @@ msgstr "" msgid "You can change the font of the text preview" msgstr "" +#: src/prefs/customization/floatingStyleGroup.ts:14 +msgid "Floating" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:15 +msgid "You can change the floating style" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:26 +msgid "Left Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:27 +msgid "You can change the left margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:38 +msgid "Right Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:39 +msgid "You can change the right margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:50 +msgid "Top Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:51 +msgid "You can change the top margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:62 +msgid "Bottom Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:63 +msgid "You can change the bottom margin" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "" @@ -389,59 +435,59 @@ msgstr "Змінити стиль елемента посилання" msgid "Link Item Style" msgstr "Стиль елемента посилання" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Color" msgstr "Колір заголовка метаданих" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the title color of the metadata" msgstr "Ви можете змінити колір заголовка метаданих" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Font" msgstr "Шрифт заголовка метаданих" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the font of the metadata title" msgstr "Ви можете змінити шрифт заголовка метаданих" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Color" msgstr "Колір опису метаданих" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the description color of the metadata" msgstr "Ви можете змінити колір опису метаданих" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Font" msgstr "Шрифт опису метаданих" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the font of the metadata description" msgstr "Ви можете змінити шрифт опису метаданих" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Color" msgstr "Колір посилання метаданих" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the link color of the metadata" msgstr "Ви можете змінити колір посилання метаданих" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Font" msgstr "Шрифт посилання метаданих" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the font of the metadata link" msgstr "Ви можете змінити шрифт посилання метаданих" diff --git a/resources/po/vi.po b/resources/po/vi.po index 037d586d..38700e94 100644 --- a/resources/po/vi.po +++ b/resources/po/vi.po @@ -39,7 +39,7 @@ msgstr "" msgid "No Description" msgstr "" -#: src/components/searchBox.ts:70 +#: src/components/searchBox.ts:73 msgid "Type to search, Tab to cycle" msgstr "" @@ -94,7 +94,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:42 #: src/prefs/customization/emojiItemStyle.ts:42 #: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:42 #: src/prefs/customization/textItemStyle.ts:42 msgid "Body Background Color" msgstr "" @@ -102,7 +101,6 @@ msgstr "" #: src/prefs/customization/codeItemStyle.ts:43 #: src/prefs/customization/emojiItemStyle.ts:43 #: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/linkItemStyle.ts:43 #: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "" @@ -140,144 +138,152 @@ msgstr "" msgid "You can change the font of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:21 msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Icon Pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Default Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:28 +#: src/prefs/customization/commonStyleGroup.ts:29 msgid "Legacy Icons" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "Item Width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "Item Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "You can change the item height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:44 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 +#: src/prefs/customization/commonStyleGroup.ts:53 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:70 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:78 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:79 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Search Bar Background Color" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:90 +msgid "You can change the background color of the search bar" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:87 +#: src/prefs/customization/commonStyleGroup.ts:98 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:100 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:108 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:127 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:117 +#: src/prefs/customization/commonStyleGroup.ts:128 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -365,6 +371,46 @@ msgstr "" msgid "You can change the font of the text preview" msgstr "" +#: src/prefs/customization/floatingStyleGroup.ts:14 +msgid "Floating" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:15 +msgid "You can change the floating style" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:26 +msgid "Left Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:27 +msgid "You can change the left margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:38 +msgid "Right Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:39 +msgid "You can change the right margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:50 +msgid "Top Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:51 +msgid "You can change the top margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:62 +msgid "Bottom Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:63 +msgid "You can change the bottom margin" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "" @@ -389,59 +435,59 @@ msgstr "" msgid "Link Item Style" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Background Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the title color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the description color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the font of the metadata description" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Color" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the link color of the metadata" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Font" msgstr "" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the font of the metadata link" msgstr "" diff --git a/resources/po/zh_CN.po b/resources/po/zh_CN.po index 8d04eb3e..998cfe9b 100644 --- a/resources/po/zh_CN.po +++ b/resources/po/zh_CN.po @@ -39,7 +39,7 @@ msgstr "" msgid "No Description" msgstr "无详情" -#: src/components/searchBox.ts:70 +#: src/components/searchBox.ts:73 msgid "Type to search, Tab to cycle" msgstr "输入即搜索,Tab键循环" @@ -94,7 +94,6 @@ msgstr "修改标题文字颜色" #: src/prefs/customization/codeItemStyle.ts:42 #: src/prefs/customization/emojiItemStyle.ts:42 #: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:42 #: src/prefs/customization/textItemStyle.ts:42 msgid "Body Background Color" msgstr "正文背景色" @@ -102,7 +101,6 @@ msgstr "正文背景色" #: src/prefs/customization/codeItemStyle.ts:43 #: src/prefs/customization/emojiItemStyle.ts:43 #: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/linkItemStyle.ts:43 #: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "修改正文背景颜色" @@ -140,144 +138,152 @@ msgstr "色彩项目风格" msgid "You can change the font of the metadata" msgstr "修改元数据文本字体" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:21 msgid "Common" msgstr "共性" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Icon Pack" msgstr "图标包" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "You can change the icon pack" msgstr "修改图标包" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Default Icons" msgstr "默认图标" -#: src/prefs/customization/commonStyleGroup.ts:28 +#: src/prefs/customization/commonStyleGroup.ts:29 msgid "Legacy Icons" msgstr "传统图标" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "Item Width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "Item Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "You can change the item height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:44 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 +#: src/prefs/customization/commonStyleGroup.ts:53 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "Window Position" msgstr "窗口位置" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "You can change position of the Pano" msgstr "修改Pano窗口的位置" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Bottom" msgstr "底部" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Left" msgstr "左侧" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "右侧" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Top" msgstr "顶部" -#: src/prefs/customization/commonStyleGroup.ts:70 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Window Background Color" msgstr "窗口背景色" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the window background color" msgstr "修改窗口背景颜色" -#: src/prefs/customization/commonStyleGroup.ts:78 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Incognito Window Background Color" msgstr "隐私窗口背景色" -#: src/prefs/customization/commonStyleGroup.ts:79 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the incognito window background color" msgstr "修改隐私窗口背景颜色" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Search Bar Background Color" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:90 +msgid "You can change the background color of the search bar" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "Search Bar Font" msgstr "搜索栏字体" -#: src/prefs/customization/commonStyleGroup.ts:87 +#: src/prefs/customization/commonStyleGroup.ts:98 msgid "You can change the font of the search bar" msgstr "修改搜索栏字体" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Item Title Font" msgstr "项目标题字体" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "修改项目标题字体" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "Item Date Font" msgstr "项目日期字体" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "You can change the font of the date" msgstr "修改项目日期字体" -#: src/prefs/customization/commonStyleGroup.ts:100 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "Active Item Border Color" msgstr "激活项目边框颜色" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "You can change the active item border color" msgstr "修改激活项目的边框颜色" -#: src/prefs/customization/commonStyleGroup.ts:108 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Hovered Item Border Color" msgstr "悬停项目边框颜色" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the hovered item border color" msgstr "修改鼠标悬停项目的边框颜色" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:127 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:117 +#: src/prefs/customization/commonStyleGroup.ts:128 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -365,6 +371,46 @@ msgstr "" msgid "You can change the font of the text preview" msgstr "" +#: src/prefs/customization/floatingStyleGroup.ts:14 +msgid "Floating" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:15 +msgid "You can change the floating style" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:26 +msgid "Left Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:27 +msgid "You can change the left margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:38 +msgid "Right Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:39 +msgid "You can change the right margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:50 +msgid "Top Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:51 +msgid "You can change the top margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:62 +msgid "Bottom Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:63 +msgid "You can change the bottom margin" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "修改图像项目风格" @@ -389,59 +435,59 @@ msgstr "修改链接项目风格" msgid "Link Item Style" msgstr "链接项目风格" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Background Color" msgstr "元数据背景色" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the background color of the metadata" msgstr "修改元数据背景颜色" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Color" msgstr "元数据标题颜色" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the title color of the metadata" msgstr "修改元数据标题颜色" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Font" msgstr "元数据标题字体" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the font of the metadata title" msgstr "修改元数据标题字体" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Color" msgstr "元数据详情颜色" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the description color of the metadata" msgstr "修改元数据详情颜色" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Font" msgstr "元数据详情字体" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the font of the metadata description" msgstr "修改元数据详情字体" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Color" msgstr "元数据链接颜色" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the link color of the metadata" msgstr "修改元数据链接颜色" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Font" msgstr "元数据链接字体" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the font of the metadata link" msgstr "修改元数据链接字体" diff --git a/resources/po/zh_TW.po b/resources/po/zh_TW.po index e9955809..9c8b7b0e 100644 --- a/resources/po/zh_TW.po +++ b/resources/po/zh_TW.po @@ -39,7 +39,7 @@ msgstr "" msgid "No Description" msgstr "無說明" -#: src/components/searchBox.ts:70 +#: src/components/searchBox.ts:73 msgid "Type to search, Tab to cycle" msgstr "輸入以搜尋,按 Tab 循環" @@ -94,7 +94,6 @@ msgstr "你可以更換視窗標頭字體顏色" #: src/prefs/customization/codeItemStyle.ts:42 #: src/prefs/customization/emojiItemStyle.ts:42 #: src/prefs/customization/fileItemStyle.ts:42 -#: src/prefs/customization/linkItemStyle.ts:42 #: src/prefs/customization/textItemStyle.ts:42 msgid "Body Background Color" msgstr "內容背景顏色" @@ -102,7 +101,6 @@ msgstr "內容背景顏色" #: src/prefs/customization/codeItemStyle.ts:43 #: src/prefs/customization/emojiItemStyle.ts:43 #: src/prefs/customization/fileItemStyle.ts:43 -#: src/prefs/customization/linkItemStyle.ts:43 #: src/prefs/customization/textItemStyle.ts:43 msgid "You can change the background color of the body" msgstr "你可以更換內容的背景顏色" @@ -140,144 +138,152 @@ msgstr "顏色物件主題" msgid "You can change the font of the metadata" msgstr "你可以更換詮釋資料的字體" -#: src/prefs/customization/commonStyleGroup.ts:20 +#: src/prefs/customization/commonStyleGroup.ts:21 msgid "Common" msgstr "一般" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "Icon Pack" msgstr "圖示包" -#: src/prefs/customization/commonStyleGroup.ts:26 +#: src/prefs/customization/commonStyleGroup.ts:27 msgid "You can change the icon pack" msgstr "你可以更換圖示包" -#: src/prefs/customization/commonStyleGroup.ts:27 +#: src/prefs/customization/commonStyleGroup.ts:28 msgid "Default Icons" msgstr "預設圖示" -#: src/prefs/customization/commonStyleGroup.ts:28 +#: src/prefs/customization/commonStyleGroup.ts:29 msgid "Legacy Icons" msgstr "復古圖示" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "Item Width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:33 +#: src/prefs/customization/commonStyleGroup.ts:34 msgid "You can change the item width" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "Item Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:37 +#: src/prefs/customization/commonStyleGroup.ts:38 msgid "You can change the item height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:42 +#: src/prefs/customization/commonStyleGroup.ts:43 msgid "Enable Headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 +#: src/prefs/customization/commonStyleGroup.ts:44 msgid "Controls the visibility of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:51 +#: src/prefs/customization/commonStyleGroup.ts:52 msgid "Compact Mode" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 +#: src/prefs/customization/commonStyleGroup.ts:53 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:60 +#: src/prefs/customization/commonStyleGroup.ts:61 msgid "Window Position" msgstr "視窗位置" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "You can change position of the Pano" msgstr "你可以更換 Pano 的位置" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Bottom" msgstr "底部" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Left" msgstr "左邊" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "右邊" -#: src/prefs/customization/commonStyleGroup.ts:64 +#: src/prefs/customization/commonStyleGroup.ts:65 msgid "Top" msgstr "頂部" -#: src/prefs/customization/commonStyleGroup.ts:70 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "Window Background Color" msgstr "視窗背景顏色" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:74 msgid "You can change the window background color" msgstr "你可以更換視窗背景顏色" -#: src/prefs/customization/commonStyleGroup.ts:78 +#: src/prefs/customization/commonStyleGroup.ts:81 msgid "Incognito Window Background Color" msgstr "無痕模式視窗背景顏色" -#: src/prefs/customization/commonStyleGroup.ts:79 +#: src/prefs/customization/commonStyleGroup.ts:82 msgid "You can change the incognito window background color" msgstr "你可以更換無痕模式視窗背景顏色" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:89 +msgid "Search Bar Background Color" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:90 +msgid "You can change the background color of the search bar" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:97 msgid "Search Bar Font" msgstr "搜尋欄字體" -#: src/prefs/customization/commonStyleGroup.ts:87 +#: src/prefs/customization/commonStyleGroup.ts:98 msgid "You can change the font of the search bar" msgstr "你可以更換搜尋欄的字體" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 msgid "Item Title Font" msgstr "物件標題字體" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:104 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "你可以更換標題的字體" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "Item Date Font" msgstr "物件日期字體" -#: src/prefs/customization/commonStyleGroup.ts:96 +#: src/prefs/customization/commonStyleGroup.ts:107 msgid "You can change the font of the date" msgstr "你可以更換日期的字體" -#: src/prefs/customization/commonStyleGroup.ts:100 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "Active Item Border Color" msgstr "選取物件邊界顏色" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:112 msgid "You can change the active item border color" msgstr "你可以更換活躍的物件邊界顏色" -#: src/prefs/customization/commonStyleGroup.ts:108 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Hovered Item Border Color" msgstr "被游標覆蓋物件邊界顏色" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the hovered item border color" msgstr "你可以更換被覆蓋物件邊界顏色" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:127 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:117 +#: src/prefs/customization/commonStyleGroup.ts:128 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -365,6 +371,46 @@ msgstr "" msgid "You can change the font of the text preview" msgstr "" +#: src/prefs/customization/floatingStyleGroup.ts:14 +msgid "Floating" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:15 +msgid "You can change the floating style" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:26 +msgid "Left Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:27 +msgid "You can change the left margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:38 +msgid "Right Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:39 +msgid "You can change the right margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:50 +msgid "Top Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:51 +msgid "You can change the top margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:62 +msgid "Bottom Margin" +msgstr "" + +#: src/prefs/customization/floatingStyleGroup.ts:63 +msgid "You can change the bottom margin" +msgstr "" + #: src/prefs/customization/imageItemStyle.ts:14 msgid "Change the style of the image item" msgstr "切換圖片物件主題" @@ -389,59 +435,59 @@ msgstr "切換連結物件主題" msgid "Link Item Style" msgstr "連結物件風格" -#: src/prefs/customization/linkItemStyle.ts:52 +#: src/prefs/customization/linkItemStyle.ts:42 msgid "Metadata Background Color" msgstr "詮釋資料背景顏色" -#: src/prefs/customization/linkItemStyle.ts:53 +#: src/prefs/customization/linkItemStyle.ts:43 msgid "You can change the background color of the metadata" msgstr "你可以更換詮釋資料的背景顏色" -#: src/prefs/customization/linkItemStyle.ts:62 +#: src/prefs/customization/linkItemStyle.ts:52 msgid "Metadata Title Color" msgstr "詮釋資料標題顏色" -#: src/prefs/customization/linkItemStyle.ts:63 +#: src/prefs/customization/linkItemStyle.ts:53 msgid "You can change the title color of the metadata" msgstr "你可以更換詮釋資料的標題顏色" -#: src/prefs/customization/linkItemStyle.ts:72 +#: src/prefs/customization/linkItemStyle.ts:62 msgid "Metadata Title Font" msgstr "詮釋資料標題字體" -#: src/prefs/customization/linkItemStyle.ts:73 +#: src/prefs/customization/linkItemStyle.ts:63 msgid "You can change the font of the metadata title" msgstr "你可以更換詮釋資料標題的字體" -#: src/prefs/customization/linkItemStyle.ts:82 +#: src/prefs/customization/linkItemStyle.ts:72 msgid "Metadata Description Color" msgstr "詮釋資料說明顏色" -#: src/prefs/customization/linkItemStyle.ts:83 +#: src/prefs/customization/linkItemStyle.ts:73 msgid "You can change the description color of the metadata" msgstr "你可以更換詮釋資料的說明顏色" -#: src/prefs/customization/linkItemStyle.ts:92 +#: src/prefs/customization/linkItemStyle.ts:82 msgid "Metadata Description Font" msgstr "詮釋資料說明字體" -#: src/prefs/customization/linkItemStyle.ts:93 +#: src/prefs/customization/linkItemStyle.ts:83 msgid "You can change the font of the metadata description" msgstr "你可以更換詮釋資料說明的字體" -#: src/prefs/customization/linkItemStyle.ts:102 +#: src/prefs/customization/linkItemStyle.ts:92 msgid "Metadata Link Color" msgstr "詮釋資料連結顏色" -#: src/prefs/customization/linkItemStyle.ts:103 +#: src/prefs/customization/linkItemStyle.ts:93 msgid "You can change the link color of the metadata" msgstr "你可以更換詮釋資料的連結顏色" -#: src/prefs/customization/linkItemStyle.ts:112 +#: src/prefs/customization/linkItemStyle.ts:102 msgid "Metadata Link Font" msgstr "詮釋資料連結字體" -#: src/prefs/customization/linkItemStyle.ts:113 +#: src/prefs/customization/linkItemStyle.ts:103 msgid "You can change the font of the metadata link" msgstr "你可以更換詮釋資料連結的字體" diff --git a/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml b/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml index 48423f6b..6ced94b7 100644 --- a/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml +++ b/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml @@ -133,16 +133,46 @@ 2 icon pack: 0-top 1-right 2-bottom 3-left + + true + window-floating + window-floating + + + 16 + window-margin-left + window-margin-left + + + 16 + window-margin-right + window-margin-right + + + 48 + window-margin-top + window-margin-top + + + 16 + window-margin-bottom + window-margin-bottom + - 'rgba(35, 35, 35, 0.9)' + 'rgb(36, 36, 36)' window-background-color window-background-color - 'rgba(36, 31, 49, 0.9)' + 'rgb(36, 31, 49)' incognito-window-background-color incognito-window-background-color + + 'rgba(255, 255, 255, 0.155)' + search-bar-background-color + search-bar-background-color + 'Cantarell Regular' search-bar-font-family @@ -209,13 +239,8 @@ header-color header-color - - 'rgb(48, 48, 48)' - body-bg-color - body-bg-color - - 'rgb(48, 48, 48)' + 'rgba(255, 255, 255, 0.08)' metadata-bg-color metadata-bg-color @@ -278,7 +303,7 @@ header-color - 'rgb(48, 48, 48)' + 'rgba(255, 255, 255, 0.08)' body-bg-color body-bg-color @@ -317,7 +342,7 @@ header-color - 'rgb(48, 48, 48)' + 'rgba(255, 255, 255, 0.08)' body-bg-color body-bg-color @@ -341,7 +366,7 @@ header-color - 'rgb(48, 48, 48)' + 'rgba(255, 255, 255, 0.08)' body-bg-color body-bg-color @@ -381,7 +406,7 @@ files-preview-font-size - 'rgb(36, 36, 36)' + 'rgba(0, 0, 0, 0.25)' text-preview-bg-color text-preview-bg-color @@ -427,7 +452,7 @@ header-color - 'rgb(48, 48, 48)' + 'rgba(255, 255, 255, 0.08)' body-bg-color body-bg-color diff --git a/src/components/linkPanoItem.ts b/src/components/linkPanoItem.ts index a839a422..7ac677e6 100644 --- a/src/components/linkPanoItem.ts +++ b/src/components/linkPanoItem.ts @@ -133,7 +133,6 @@ export class LinkPanoItem extends PanoItem { private setStyle() { const headerBgColor = this.linkItemSettings.get_string('header-bg-color'); const headerColor = this.linkItemSettings.get_string('header-color'); - const bodyBgColor = this.linkItemSettings.get_string('body-bg-color'); const metadataBgColor = this.linkItemSettings.get_string('metadata-bg-color'); const metadataTitleColor = this.linkItemSettings.get_string('metadata-title-color'); const metadataDescriptionColor = this.linkItemSettings.get_string('metadata-description-color'); @@ -146,8 +145,7 @@ export class LinkPanoItem extends PanoItem { const metadataLinkFontSize = this.linkItemSettings.get_int('metadata-link-font-size'); this.header.set_style(`background-color: ${headerBgColor}; color: ${headerColor};`); - this.container.set_style(`background-color: ${bodyBgColor};`); - this.metaContainer.set_style(`background-color: ${metadataBgColor};`); + this.container.set_style(`background-color: ${metadataBgColor};`); this.titleLabel.set_style( `color: ${metadataTitleColor}; font-family: ${metadataTitleFontFamily}; font-size: ${metadataTitleFontSize}px;`, ); diff --git a/src/components/panoItem.ts b/src/components/panoItem.ts index cdb0505c..3e02cc63 100644 --- a/src/components/panoItem.ts +++ b/src/components/panoItem.ts @@ -220,10 +220,11 @@ export class PanoItem extends St.BoxLayout { const { scaleFactor } = St.ThemeContext.get_for_stage(Shell.Global.get().get_stage()); const mult = this.settings.get_boolean('compact-mode') ? 0.5 : 1; const header = this.settings.get_boolean('enable-headers') ? 48 : 0; - const height = this.settings.get_int('item-height') * mult + header; + const height = Math.floor(this.settings.get_int('item-height') * mult) + header; this.set_height(height * scaleFactor); this.container.set_width(this.settings.get_int('item-width') * scaleFactor); + // -2*4 for the border this.container.set_height((height - 8) * scaleFactor); this.body.set_height((height - 10 - header) * scaleFactor); this.overlay.set_height((height - 8) * scaleFactor); diff --git a/src/components/searchBox.ts b/src/components/searchBox.ts index 47387aed..3b022dd8 100644 --- a/src/components/searchBox.ts +++ b/src/components/searchBox.ts @@ -51,7 +51,8 @@ export class SearchBox extends St.BoxLayout { constructor(ext: ExtensionBase) { super({ - xAlign: Clutter.ActorAlign.CENTER, + xAlign: Clutter.ActorAlign.FILL, + xExpand: true, styleClass: 'search-entry-container', ...orientationCompatibility(false), trackHover: true, @@ -66,6 +67,8 @@ export class SearchBox extends St.BoxLayout { const themeContext = St.ThemeContext.get_for_stage(Shell.Global.get().get_stage()); this.search = new St.Entry({ + xAlign: Clutter.ActorAlign.CENTER, + xExpand: true, canFocus: true, hintText: _('Type to search, Tab to cycle'), naturalWidth: 300 * themeContext.scaleFactor, @@ -157,9 +160,12 @@ export class SearchBox extends St.BoxLayout { } private setStyle() { + const searchBarBackgroundColor = this.settings.get_string('search-bar-background-color'); const searchBarFontFamily = this.settings.get_string('search-bar-font-family'); const searchBarFontSize = this.settings.get_int('search-bar-font-size'); - this.search.set_style(`font-family: ${searchBarFontFamily}; font-size: ${searchBarFontSize}px;`); + this.search.set_style( + `background-color: ${searchBarBackgroundColor}; font-family: ${searchBarFontFamily}; font-size: ${searchBarFontSize}px;`, + ); } toggleItemType(hasShift: boolean) { diff --git a/src/containers/panoWindow.ts b/src/containers/panoWindow.ts index 43701d5b..1ed19082 100644 --- a/src/containers/panoWindow.ts +++ b/src/containers/panoWindow.ts @@ -40,84 +40,51 @@ export class PanoWindow extends St.BoxLayout { const themeContext = St.ThemeContext.get_for_stage(Shell.Global.get().get_stage()); this.setWindowDimensions(themeContext.scaleFactor); - themeContext.connect('notify::scale-factor', () => { - this.setWindowDimensions(themeContext.scaleFactor); - }); - this.settings.connect('changed::item-width', () => { - this.setWindowDimensions(themeContext.scaleFactor); - }); - this.settings.connect('changed::item-height', () => { - this.setWindowDimensions(themeContext.scaleFactor); - }); - this.settings.connect('changed::enable-headers', () => { - this.setWindowDimensions(themeContext.scaleFactor); - }); - this.settings.connect('changed::compact-mode', () => { - this.setWindowDimensions(themeContext.scaleFactor); - }); + themeContext.connect('notify::scale-factor', () => this.setWindowDimensions(themeContext.scaleFactor)); + this.settings.connect('changed::item-width', () => this.setWindowDimensions(themeContext.scaleFactor)); + this.settings.connect('changed::item-height', () => this.setWindowDimensions(themeContext.scaleFactor)); + this.settings.connect('changed::enable-headers', () => this.setWindowDimensions(themeContext.scaleFactor)); + this.settings.connect('changed::compact-mode', () => this.setWindowDimensions(themeContext.scaleFactor)); this.settings.connect('changed::window-position', () => { this.setWindowDimensions(themeContext.scaleFactor); this.setAlignment(); }); + this.settings.connect('changed::window-floating', this.setStyle.bind(this)); + this.settings.connect('changed::window-margin-left', this.setStyle.bind(this)); + this.settings.connect('changed::window-margin-right', this.setStyle.bind(this)); + this.settings.connect('changed::window-margin-top', this.setStyle.bind(this)); + this.settings.connect('changed::window-margin-bottom', this.setStyle.bind(this)); + + this.settings.connect('changed::window-background-color', this.setStyle.bind(this)); + this.settings.connect('changed::incognito-window-background-color', this.setStyle.bind(this)); + this.settings.connect('changed::is-in-incognito', this.setStyle.bind(this)); + + this.setStyle(); - this.settings.connect('changed::window-background-color', () => { - if (this.settings.get_boolean('is-in-incognito')) { - this.set_style( - `background-color: ${this.settings.get_string('incognito-window-background-color')} !important;`, - ); - } else { - this.set_style(`background-color: ${this.settings.get_string('window-background-color')}`); - } - }); - this.settings.connect('changed::incognito-window-background-color', () => { - if (this.settings.get_boolean('is-in-incognito')) { - this.set_style( - `background-color: ${this.settings.get_string('incognito-window-background-color')} !important;`, - ); - } else { - this.set_style(`background-color: ${this.settings.get_string('window-background-color')}`); - } - }); this.monitorBox = new MonitorBox(); this.searchBox = new SearchBox(ext); this.scrollView = new PanoScrollView(ext, clipboardManager, this.searchBox); + // Add incognito mode icon + this.searchBox.set_style(`background-image: url(file:///${ext.path}/images/incognito-mode.svg);`); + this.setupMonitorBox(); this.setupScrollView(); this.setupSearchBox(); this.add_child(this.searchBox); this.add_child(this.scrollView); - - this.settings.connect('changed::is-in-incognito', () => { - if (this.settings.get_boolean('is-in-incognito')) { - this.add_style_class_name('incognito'); - this.set_style( - `background-color: ${this.settings.get_string('incognito-window-background-color')} !important;`, - ); - } else { - this.remove_style_class_name('incognito'); - this.set_style(`background-color: ${this.settings.get_string('window-background-color')}`); - } - }); - - if (this.settings.get_boolean('is-in-incognito')) { - this.add_style_class_name('incognito'); - this.set_style(`background-color: ${this.settings.get_string('incognito-window-background-color')} !important;`); - } else { - this.set_style(`background-color: ${this.settings.get_string('window-background-color')}`); - } } private setWindowDimensions(scaleFactor: number) { this.remove_style_class_name('vertical'); if (isVertical(this.settings.get_uint('window-position'))) { this.add_style_class_name('vertical'); - this.set_width((this.settings.get_int('item-width') + 20) * scaleFactor); + this.set_width((this.settings.get_int('item-width') + 32) * scaleFactor); } else { const mult = this.settings.get_boolean('compact-mode') ? 0.5 : 1; const header = this.settings.get_boolean('enable-headers') ? 48 : 0; - this.set_height((this.settings.get_int('item-height') * mult + 70 + header) * scaleFactor); + this.set_height((Math.floor(this.settings.get_int('item-height') * mult) + 76 + header) * scaleFactor); } } @@ -127,6 +94,34 @@ export class PanoWindow extends St.BoxLayout { this.set_y_align(y_align); } + private setStyle() { + let backgroundColor; + if (this.settings.get_boolean('is-in-incognito')) { + this.add_style_class_name('incognito'); + backgroundColor = this.settings.get_string('incognito-window-background-color'); + } else { + this.remove_style_class_name('incognito'); + backgroundColor = this.settings.get_string('window-background-color'); + } + + let margins; + if (this.settings.get_boolean('window-floating')) { + this.add_style_class_name('floating'); + + const left = this.settings.get_int('window-margin-left'); + const right = this.settings.get_int('window-margin-right'); + const top = this.settings.get_int('window-margin-top'); + const bottom = this.settings.get_int('window-margin-bottom'); + + margins = `${top}px ${right}px ${bottom}px ${left}px`; + } else { + this.remove_style_class_name('floating'); + margins = '0px'; + } + + this.set_style(`background-color: ${backgroundColor}; margin: ${margins}`); + } + private setupMonitorBox() { this.monitorBox.connect('hide_window', () => this.hide()); } diff --git a/src/prefs/customization/commonStyleGroup.ts b/src/prefs/customization/commonStyleGroup.ts index a44e5afe..5c912f7e 100644 --- a/src/prefs/customization/commonStyleGroup.ts +++ b/src/prefs/customization/commonStyleGroup.ts @@ -1,6 +1,7 @@ import Adw from '@girs/adw-1'; import Gio from '@girs/gio-2.0'; import type { ExtensionBase } from '@girs/gnome-shell/dist/extensions/sharedInternals'; +import { FloatingStyleGroup } from '@pano/prefs/customization/floatingStyleGroup'; import { createColorRow, createDropdownRow, @@ -65,6 +66,8 @@ export class CommonStyleGroup extends Adw.PreferencesGroup { ), ); + this.add(new FloatingStyleGroup(ext)); + this.add( createColorRow( _('Window Background Color'), @@ -81,6 +84,14 @@ export class CommonStyleGroup extends Adw.PreferencesGroup { 'incognito-window-background-color', ), ); + this.add( + createColorRow( + _('Search Bar Background Color'), + _('You can change the background color of the search bar'), + this.settings, + 'search-bar-background-color', + ), + ); this.add( createFontRow( _('Search Bar Font'), diff --git a/src/prefs/customization/floatingStyleGroup.ts b/src/prefs/customization/floatingStyleGroup.ts new file mode 100644 index 00000000..eb3f65b5 --- /dev/null +++ b/src/prefs/customization/floatingStyleGroup.ts @@ -0,0 +1,72 @@ +import Adw from '@girs/adw-1'; +import Gio from '@girs/gio-2.0'; +import type { ExtensionBase } from '@girs/gnome-shell/dist/extensions/sharedInternals'; +import { createSpinRow } from '@pano/prefs/customization/utils'; +import { registerGObjectClass } from '@pano/utils/gjs'; +import { getCurrentExtensionSettings, gettext } from '@pano/utils/shell'; + +@registerGObjectClass +export class FloatingStyleGroup extends Adw.ExpanderRow { + private settings: Gio.Settings; + constructor(ext: ExtensionBase) { + const _ = gettext(ext); + super({ + title: _('Floating'), + subtitle: _('You can change the floating style'), + showEnableSwitch: true, + }); + + this.settings = getCurrentExtensionSettings(ext); + + this.enableExpansion = this.settings.get_boolean('window-floating'); + this.settings.bind('window-floating', this, 'enable-expansion', Gio.SettingsBindFlags.DEFAULT); + + this.add_row( + createSpinRow( + _('Left Margin'), + _('You can change the left margin'), + this.settings, + 'window-margin-left', + 5, + 0, + 1000, + ), + ); + + this.add_row( + createSpinRow( + _('Right Margin'), + _('You can change the right margin'), + this.settings, + 'window-margin-right', + 5, + 0, + 1000, + ), + ); + + this.add_row( + createSpinRow( + _('Top Margin'), + _('You can change the top margin'), + this.settings, + 'window-margin-top', + 5, + 0, + 1000, + ), + ); + + this.add_row( + createSpinRow( + _('Bottom Margin'), + _('You can change the bottom margin'), + this.settings, + 'window-margin-bottom', + 5, + 0, + 1000, + ), + ); + } +} diff --git a/src/prefs/customization/linkItemStyle.ts b/src/prefs/customization/linkItemStyle.ts index af836da8..fd8ce9c6 100644 --- a/src/prefs/customization/linkItemStyle.ts +++ b/src/prefs/customization/linkItemStyle.ts @@ -36,16 +36,6 @@ export class LinkItemStyleRow extends ItemExpanderRow { ), ); - // create body background color row - this.add_row( - createColorRow( - _('Body Background Color'), - _('You can change the background color of the body'), - this.settings, - 'body-bg-color', - ), - ); - // create metadata background color row this.add_row( createColorRow( diff --git a/src/styles/stylesheet.css b/src/styles/stylesheet.css index 18518b69..ff14621d 100644 --- a/src/styles/stylesheet.css +++ b/src/styles/stylesheet.css @@ -1,17 +1,25 @@ /* Window */ -.pano-window.incognito { - background-image: url('./images/incognito-mode.svg'); - background-size: 36px; - background-position: 15px 15px; +.pano-window { + box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.36); } -.pano-window.incognito.vertical { - background-size: 0; +.pano-window.floating { + border-radius: 16px; } .pano-window .search-entry-container { padding: 14px; padding-bottom: 5px; + background-size: 0; +} + +.pano-window.incognito .search-entry-container { + background-size: 36px; + background-position: 15px 15px; +} + +.pano-window.vertical.incognito .search-entry-container { + background-size: 0; } .pano-window .search-entry-container StEntry { @@ -39,27 +47,29 @@ /* Item */ .pano-item { border-radius: 16px; - margin: 6px; + margin: 6px 3px 12px 3px; border: 4px solid transparent; box-shadow: 0 0 4px rgba(0, 0, 0, 0.1); } -.pano-item.compact { - margin: 6px 3px; +.pano-window.vertical .pano-item { + margin: 3px 12px; +} + +.pano-item:first-child { + margin-left: 12px; } -.pano-window.vertical .pano-item.compact { - margin: 3px 6px; +.pano-window.vertical .pano-item:first-child { + margin-top: 6px; } -.pano-item.compact:first-child { - margin-top: 6px !important; - margin-left: 6px !important; +.pano-item:last-child { + margin-right: 12px; } -.pano-item.compact:last-child { - margin-bottom: 6px !important; - margin-right: 6px !important; +.pano-window.vertical .pano-item:last-child { + margin-bottom: 12px; } .pano-item:hover { @@ -78,7 +88,7 @@ .pano-item-actions { padding: 2px; - background-color: #303030; + background-color: #363636; border-radius: 999px; } @@ -87,7 +97,7 @@ width: 20px; height: 20px; border-radius: 999px; - background-color: #454545; + background-color: rgba(255, 255, 255, 0.15); color: white; } From 4756cd7fca9c2417ee1304e2018b235f2057ed67 Mon Sep 17 00:00:00 2001 From: boerdereinar Date: Fri, 10 May 2024 01:43:59 +0200 Subject: [PATCH 21/45] Use BinLayout for pano item --- src/components/panoItem.ts | 15 +++------------ src/components/panoItemOverlay.ts | 9 ++++++++- src/styles/stylesheet.css | 4 ++-- 3 files changed, 13 insertions(+), 15 deletions(-) diff --git a/src/components/panoItem.ts b/src/components/panoItem.ts index 3e02cc63..61004ec8 100644 --- a/src/components/panoItem.ts +++ b/src/components/panoItem.ts @@ -26,7 +26,7 @@ interface PanoItemSignals extends SignalsDefinition { } @registerGObjectClass -export class PanoItem extends St.BoxLayout { +export class PanoItem extends St.Widget { static metaInfo: GObject.MetaInfo, Record, PanoItemSignals> = { GTypeName: 'PanoItem', Signals: { @@ -55,14 +55,12 @@ export class PanoItem extends St.BoxLayout { constructor(ext: ExtensionBase, clipboardManager: ClipboardManager, dbItem: DBItem) { super({ name: 'pano-item', + styleClass: 'pano-item', + layoutManager: new Clutter.BinLayout(), visible: true, pivotPoint: Graphene.Point.alloc().init(0.5, 0.5), reactive: true, - styleClass: 'pano-item', - ...orientationCompatibility(true), trackHover: true, - xExpand: false, - yExpand: false, }); this.clipboardManager = clipboardManager; @@ -174,13 +172,6 @@ export class PanoItem extends St.BoxLayout { this.add_child(this.container); this.add_child(this.overlay); - this.overlay.add_constraint( - new Clutter.BindConstraint({ - source: this.container, - coordinate: Clutter.BindCoordinate.Y, - }), - ); - const themeContext = St.ThemeContext.get_for_stage(Shell.Global.get().get_stage()); if (this.settings.get_boolean('compact-mode')) { diff --git a/src/components/panoItemOverlay.ts b/src/components/panoItemOverlay.ts index 6ff2bcb5..51dbec05 100644 --- a/src/components/panoItemOverlay.ts +++ b/src/components/panoItemOverlay.ts @@ -20,7 +20,14 @@ export class PanoItemOverlay extends St.BoxLayout { actionContainer: St.BoxLayout; constructor() { - super({ styleClass: 'pano-item-overlay', vertical: false }); + super({ + styleClass: 'pano-item-overlay', + vertical: false, + yAlign: Clutter.ActorAlign.FILL, + xAlign: Clutter.ActorAlign.FILL, + xExpand: true, + yExpand: true, + }); this.actionContainer = new St.BoxLayout({ styleClass: 'pano-item-actions', diff --git a/src/styles/stylesheet.css b/src/styles/stylesheet.css index ff14621d..afa2e312 100644 --- a/src/styles/stylesheet.css +++ b/src/styles/stylesheet.css @@ -47,13 +47,13 @@ /* Item */ .pano-item { border-radius: 16px; - margin: 6px 3px 12px 3px; + margin: 6px 0px 12px 6px; border: 4px solid transparent; box-shadow: 0 0 4px rgba(0, 0, 0, 0.1); } .pano-window.vertical .pano-item { - margin: 3px 12px; + margin: 6px 12px 0px 12px; } .pano-item:first-child { From ca3581ac2b79730abfc0b02b86511441d884474f Mon Sep 17 00:00:00 2001 From: boerdereinar Date: Fri, 10 May 2024 15:40:41 +0200 Subject: [PATCH 22/45] Add option to open Pano at the pointer position --- resources/po/ar.po | 48 +++++++++------ resources/po/bg.po | 48 +++++++++------ resources/po/cs.po | 48 +++++++++------ resources/po/da.po | 48 +++++++++------ resources/po/de.po | 48 +++++++++------ resources/po/el.po | 48 +++++++++------ resources/po/en.po | 48 +++++++++------ resources/po/es.po | 48 +++++++++------ resources/po/et.po | 48 +++++++++------ resources/po/fi.po | 48 +++++++++------ resources/po/fr.po | 48 +++++++++------ resources/po/he.po | 48 +++++++++------ resources/po/hr.po | 48 +++++++++------ resources/po/hu.po | 48 +++++++++------ resources/po/is.po | 48 +++++++++------ resources/po/it.po | 48 +++++++++------ resources/po/ja.po | 48 +++++++++------ resources/po/ko.po | 48 +++++++++------ resources/po/nl.po | 48 +++++++++------ resources/po/no.po | 48 +++++++++------ resources/po/oc.po | 48 +++++++++------ resources/po/pano@elhan.io.pot | 48 +++++++++------ resources/po/pl.po | 48 +++++++++------ resources/po/pt.po | 48 +++++++++------ resources/po/pt_BR.po | 48 +++++++++------ resources/po/ro.po | 48 +++++++++------ resources/po/ru.po | 48 +++++++++------ resources/po/sk.po | 48 +++++++++------ resources/po/sv.po | 48 +++++++++------ resources/po/tr.po | 48 +++++++++------ resources/po/uk.po | 48 +++++++++------ resources/po/vi.po | 48 +++++++++------ resources/po/zh_CN.po | 48 +++++++++------ resources/po/zh_TW.po | 48 +++++++++------ ...rg.gnome.shell.extensions.pano.gschema.xml | 12 +++- src/containers/panoWindow.ts | 60 +++++++++++++++++-- src/extension.ts | 2 +- src/prefs/customization/commonStyleGroup.ts | 14 ++++- src/utils/ui.ts | 9 ++- 39 files changed, 1106 insertions(+), 623 deletions(-) diff --git a/resources/po/ar.po b/resources/po/ar.po index 0e8cb041..0500d94b 100644 --- a/resources/po/ar.po +++ b/resources/po/ar.po @@ -206,6 +206,10 @@ msgstr "" msgid "Left" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:65 +msgid "Pointer" +msgstr "" + #: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" @@ -214,76 +218,84 @@ msgstr "" msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:71 +msgid "Window Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:72 +msgid "You can change the height of the window if the position is \"Pointer\"" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:85 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:111 +#: src/prefs/customization/commonStyleGroup.ts:123 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:131 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:120 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:127 +#: src/prefs/customization/commonStyleGroup.ts:139 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:128 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/bg.po b/resources/po/bg.po index 6449c580..93dc2cd0 100644 --- a/resources/po/bg.po +++ b/resources/po/bg.po @@ -206,6 +206,10 @@ msgstr "" msgid "Left" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:65 +msgid "Pointer" +msgstr "" + #: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" @@ -214,76 +218,84 @@ msgstr "" msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:71 +msgid "Window Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:72 +msgid "You can change the height of the window if the position is \"Pointer\"" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:85 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:111 +#: src/prefs/customization/commonStyleGroup.ts:123 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:131 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:120 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:127 +#: src/prefs/customization/commonStyleGroup.ts:139 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:128 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/cs.po b/resources/po/cs.po index fe9dd5d3..c072f36e 100644 --- a/resources/po/cs.po +++ b/resources/po/cs.po @@ -206,6 +206,10 @@ msgstr "Dole" msgid "Left" msgstr "Vlevo" +#: src/prefs/customization/commonStyleGroup.ts:65 +msgid "Pointer" +msgstr "" + #: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "Vpravo" @@ -214,76 +218,84 @@ msgstr "Vpravo" msgid "Top" msgstr "Nahoře" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:71 +msgid "Window Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:72 +msgid "You can change the height of the window if the position is \"Pointer\"" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:85 msgid "Window Background Color" msgstr "Barva pozadí okna" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "You can change the window background color" msgstr "Můžete změnit barvu pozadí okna" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Incognito Window Background Color" msgstr "Barva pozadí anonymního okna" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "You can change the incognito window background color" msgstr "Můžete změnit barvu pozadí anonymního okna" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "Search Bar Font" msgstr "Písmo vyhledávací lišty" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "You can change the font of the search bar" msgstr "Můžete změnit písmo vyhledávání" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Item Title Font" msgstr "Písmo názvu položky" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "Můžete změnit písmo nadpisu" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Item Date Font" msgstr "Písmo položky Datum" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "You can change the font of the date" msgstr "Můžete změnit písmo data" -#: src/prefs/customization/commonStyleGroup.ts:111 +#: src/prefs/customization/commonStyleGroup.ts:123 msgid "Active Item Border Color" msgstr "Barva ohraničení aktivní položky" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "You can change the active item border color" msgstr "Můžete změnit barvu okraje aktivní položky" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:131 msgid "Hovered Item Border Color" msgstr "Barva ohraničení při najetí na položku" -#: src/prefs/customization/commonStyleGroup.ts:120 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "You can change the hovered item border color" msgstr "Můžete změnit barvu ohraničení při najetí na položku" -#: src/prefs/customization/commonStyleGroup.ts:127 +#: src/prefs/customization/commonStyleGroup.ts:139 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:128 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/da.po b/resources/po/da.po index 8859cc00..a3e796f8 100644 --- a/resources/po/da.po +++ b/resources/po/da.po @@ -206,6 +206,10 @@ msgstr "" msgid "Left" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:65 +msgid "Pointer" +msgstr "" + #: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" @@ -214,76 +218,84 @@ msgstr "" msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:71 +msgid "Window Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:72 +msgid "You can change the height of the window if the position is \"Pointer\"" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:85 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:111 +#: src/prefs/customization/commonStyleGroup.ts:123 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:131 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:120 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:127 +#: src/prefs/customization/commonStyleGroup.ts:139 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:128 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/de.po b/resources/po/de.po index 650025a8..f04fd241 100644 --- a/resources/po/de.po +++ b/resources/po/de.po @@ -206,6 +206,10 @@ msgstr "Unten" msgid "Left" msgstr "Links" +#: src/prefs/customization/commonStyleGroup.ts:65 +msgid "Pointer" +msgstr "" + #: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "Rechts" @@ -214,76 +218,84 @@ msgstr "Rechts" msgid "Top" msgstr "Oben" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:71 +msgid "Window Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:72 +msgid "You can change the height of the window if the position is \"Pointer\"" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:85 msgid "Window Background Color" msgstr "Hintergrundfarbe des Fensters" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "You can change the window background color" msgstr "Sie können die Hintergrundfarbe des Fensters ändern" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Incognito Window Background Color" msgstr "Hintergrundfarbe des Inkognito-Fensters" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "You can change the incognito window background color" msgstr "Sie können die Hintergrundfarbe des Inkognito-Fensters ändern" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "Search Bar Font" msgstr "Schriftart der Suchleiste" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "You can change the font of the search bar" msgstr "Sie können die Schriftart der Suchleiste ändern" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Item Title Font" msgstr "Schriftart des Eintragtitels" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "Sie können die Schriftart des Objekttitels ändern" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Item Date Font" msgstr "Schriftart des Eintragsdatums" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "You can change the font of the date" msgstr "Sie können die Schriftart des Datums ändern" -#: src/prefs/customization/commonStyleGroup.ts:111 +#: src/prefs/customization/commonStyleGroup.ts:123 msgid "Active Item Border Color" msgstr "Randfarbe des aktiven Eintrags" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "You can change the active item border color" msgstr "Sie können die Randfarbe des aktiven Eintrags ändern" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:131 msgid "Hovered Item Border Color" msgstr "Randfarbe des fokussierten Eintrags" -#: src/prefs/customization/commonStyleGroup.ts:120 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "You can change the hovered item border color" msgstr "Sie können die Randfarbe des fokussierten Eintrags ändern" -#: src/prefs/customization/commonStyleGroup.ts:127 +#: src/prefs/customization/commonStyleGroup.ts:139 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:128 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/el.po b/resources/po/el.po index 7935c552..c3f44326 100644 --- a/resources/po/el.po +++ b/resources/po/el.po @@ -206,6 +206,10 @@ msgstr "" msgid "Left" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:65 +msgid "Pointer" +msgstr "" + #: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" @@ -214,76 +218,84 @@ msgstr "" msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:71 +msgid "Window Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:72 +msgid "You can change the height of the window if the position is \"Pointer\"" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:85 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:111 +#: src/prefs/customization/commonStyleGroup.ts:123 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:131 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:120 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:127 +#: src/prefs/customization/commonStyleGroup.ts:139 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:128 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/en.po b/resources/po/en.po index 2813e77a..589c6845 100644 --- a/resources/po/en.po +++ b/resources/po/en.po @@ -206,6 +206,10 @@ msgstr "" msgid "Left" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:65 +msgid "Pointer" +msgstr "" + #: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" @@ -214,76 +218,84 @@ msgstr "" msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:71 +msgid "Window Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:72 +msgid "You can change the height of the window if the position is \"Pointer\"" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:85 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:111 +#: src/prefs/customization/commonStyleGroup.ts:123 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:131 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:120 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:127 +#: src/prefs/customization/commonStyleGroup.ts:139 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:128 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/es.po b/resources/po/es.po index 5cc9ab43..d32d28b0 100644 --- a/resources/po/es.po +++ b/resources/po/es.po @@ -206,6 +206,10 @@ msgstr "Abajo" msgid "Left" msgstr "A la izquierda" +#: src/prefs/customization/commonStyleGroup.ts:65 +msgid "Pointer" +msgstr "" + #: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "A la derecha" @@ -214,76 +218,84 @@ msgstr "A la derecha" msgid "Top" msgstr "Arriba" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:71 +msgid "Window Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:72 +msgid "You can change the height of the window if the position is \"Pointer\"" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:85 msgid "Window Background Color" msgstr "Color de fondo de la ventana" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "You can change the window background color" msgstr "Puedes cambiar el color de fondo de la ventana" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Incognito Window Background Color" msgstr "Color de fondo de la ventana de incógnito" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "You can change the incognito window background color" msgstr "Puedes cambiar el color de fondo de la ventana cuando se ejecuta el modo incógnito" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "Search Bar Font" msgstr "Tipo de letra de la barra de búsqueda" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "You can change the font of the search bar" msgstr "Elige la tipografía de la barra de búsqueda" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Item Title Font" msgstr "Tipo de letra de los títulos de las notas" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "Puedes cambiar la tipografía de los títulos de las notas" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Item Date Font" msgstr "Tipo de letra de la fecha de las notas" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "You can change the font of the date" msgstr "Puedes cambiar la tipografía de la fecha" -#: src/prefs/customization/commonStyleGroup.ts:111 +#: src/prefs/customization/commonStyleGroup.ts:123 msgid "Active Item Border Color" msgstr "Color del borde de la nota activa" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "You can change the active item border color" msgstr "Elige el color del borde de la nota activa" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:131 msgid "Hovered Item Border Color" msgstr "Color del borde de la nota al pasar el ratón" -#: src/prefs/customization/commonStyleGroup.ts:120 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "You can change the hovered item border color" msgstr "Elige el color del borde de las notas al pasar el ratón por encima" -#: src/prefs/customization/commonStyleGroup.ts:127 +#: src/prefs/customization/commonStyleGroup.ts:139 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:128 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/et.po b/resources/po/et.po index bdaaf586..ee0a5cbc 100644 --- a/resources/po/et.po +++ b/resources/po/et.po @@ -206,6 +206,10 @@ msgstr "" msgid "Left" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:65 +msgid "Pointer" +msgstr "" + #: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" @@ -214,76 +218,84 @@ msgstr "" msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:71 +msgid "Window Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:72 +msgid "You can change the height of the window if the position is \"Pointer\"" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:85 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:111 +#: src/prefs/customization/commonStyleGroup.ts:123 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:131 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:120 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:127 +#: src/prefs/customization/commonStyleGroup.ts:139 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:128 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/fi.po b/resources/po/fi.po index 81f8cf6f..f799ddb3 100644 --- a/resources/po/fi.po +++ b/resources/po/fi.po @@ -206,6 +206,10 @@ msgstr "" msgid "Left" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:65 +msgid "Pointer" +msgstr "" + #: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" @@ -214,76 +218,84 @@ msgstr "" msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:71 +msgid "Window Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:72 +msgid "You can change the height of the window if the position is \"Pointer\"" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:85 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:111 +#: src/prefs/customization/commonStyleGroup.ts:123 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:131 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:120 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:127 +#: src/prefs/customization/commonStyleGroup.ts:139 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:128 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/fr.po b/resources/po/fr.po index e51d756b..9ca492b8 100644 --- a/resources/po/fr.po +++ b/resources/po/fr.po @@ -206,6 +206,10 @@ msgstr "En bas" msgid "Left" msgstr "À gauche" +#: src/prefs/customization/commonStyleGroup.ts:65 +msgid "Pointer" +msgstr "" + #: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "À droite" @@ -214,76 +218,84 @@ msgstr "À droite" msgid "Top" msgstr "En haut" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:71 +msgid "Window Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:72 +msgid "You can change the height of the window if the position is \"Pointer\"" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:85 msgid "Window Background Color" msgstr "Couleur d’arrière-plan de la fenêtre" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "You can change the window background color" msgstr "Vous pouvez modifier la couleur d’arrière-plan de la fenêtre" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Incognito Window Background Color" msgstr "Couleur d’arrière-plan de la fenêtre incognito" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "You can change the incognito window background color" msgstr "Vous pouvez modifier la couleur d’arrière-plan de la fenêtre incognito" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "Search Bar Font" msgstr "Police de la barre de recherche" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "You can change the font of the search bar" msgstr "Vous pouvez modifier la police de la barre de recherche" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Item Title Font" msgstr "Police du titre de l’élément" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "Vous pouvez modifier la police du titre" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Item Date Font" msgstr "Police de la date de l’élément" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "You can change the font of the date" msgstr "Vous pouvez modifier la police de la date" -#: src/prefs/customization/commonStyleGroup.ts:111 +#: src/prefs/customization/commonStyleGroup.ts:123 msgid "Active Item Border Color" msgstr "Couleur de bordure de l’élément actif" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "You can change the active item border color" msgstr "Vous pouvez modifier la couleur de bordure de l’élément actif" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:131 msgid "Hovered Item Border Color" msgstr "Couleur de bordure d’un élément survolé" -#: src/prefs/customization/commonStyleGroup.ts:120 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "You can change the hovered item border color" msgstr "Vous pouvez modifier la couleur de bordure d’un élément survolé" -#: src/prefs/customization/commonStyleGroup.ts:127 +#: src/prefs/customization/commonStyleGroup.ts:139 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:128 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/he.po b/resources/po/he.po index 7c4b03c1..29fed7cd 100644 --- a/resources/po/he.po +++ b/resources/po/he.po @@ -206,6 +206,10 @@ msgstr "" msgid "Left" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:65 +msgid "Pointer" +msgstr "" + #: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" @@ -214,76 +218,84 @@ msgstr "" msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:71 +msgid "Window Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:72 +msgid "You can change the height of the window if the position is \"Pointer\"" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:85 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:111 +#: src/prefs/customization/commonStyleGroup.ts:123 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:131 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:120 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:127 +#: src/prefs/customization/commonStyleGroup.ts:139 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:128 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/hr.po b/resources/po/hr.po index eb340c18..fc6dc0bd 100644 --- a/resources/po/hr.po +++ b/resources/po/hr.po @@ -206,6 +206,10 @@ msgstr "" msgid "Left" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:65 +msgid "Pointer" +msgstr "" + #: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" @@ -214,76 +218,84 @@ msgstr "" msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:71 +msgid "Window Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:72 +msgid "You can change the height of the window if the position is \"Pointer\"" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:85 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:111 +#: src/prefs/customization/commonStyleGroup.ts:123 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:131 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:120 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:127 +#: src/prefs/customization/commonStyleGroup.ts:139 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:128 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/hu.po b/resources/po/hu.po index 1bc0bd72..97059ff0 100644 --- a/resources/po/hu.po +++ b/resources/po/hu.po @@ -206,6 +206,10 @@ msgstr "" msgid "Left" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:65 +msgid "Pointer" +msgstr "" + #: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" @@ -214,76 +218,84 @@ msgstr "" msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:71 +msgid "Window Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:72 +msgid "You can change the height of the window if the position is \"Pointer\"" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:85 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:111 +#: src/prefs/customization/commonStyleGroup.ts:123 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:131 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:120 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:127 +#: src/prefs/customization/commonStyleGroup.ts:139 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:128 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/is.po b/resources/po/is.po index d1645ba3..58698657 100644 --- a/resources/po/is.po +++ b/resources/po/is.po @@ -206,6 +206,10 @@ msgstr "" msgid "Left" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:65 +msgid "Pointer" +msgstr "" + #: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" @@ -214,76 +218,84 @@ msgstr "" msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:71 +msgid "Window Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:72 +msgid "You can change the height of the window if the position is \"Pointer\"" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:85 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:111 +#: src/prefs/customization/commonStyleGroup.ts:123 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:131 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:120 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:127 +#: src/prefs/customization/commonStyleGroup.ts:139 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:128 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/it.po b/resources/po/it.po index 94a1eebc..104cabe3 100644 --- a/resources/po/it.po +++ b/resources/po/it.po @@ -206,6 +206,10 @@ msgstr "In basso" msgid "Left" msgstr "Sinistra" +#: src/prefs/customization/commonStyleGroup.ts:65 +msgid "Pointer" +msgstr "" + #: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "Destra" @@ -214,76 +218,84 @@ msgstr "Destra" msgid "Top" msgstr "In alto" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:71 +msgid "Window Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:72 +msgid "You can change the height of the window if the position is \"Pointer\"" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:85 msgid "Window Background Color" msgstr "Colore di sfondo della finestra" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "You can change the window background color" msgstr "Puoi cambiare il colore di sfondo della finestra" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Incognito Window Background Color" msgstr "Colore di sfondo della finestra di navigazione in incognito" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "You can change the incognito window background color" msgstr "Puoi cambiare il colore di sfondo della finestra di navigazione in incognito" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "Search Bar Font" msgstr "Carattere della barra di ricerca" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "You can change the font of the search bar" msgstr "Puoi cambiare il carattere della barra di ricerca" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Item Title Font" msgstr "Font del titolo dell'elemento" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "Puoi cambiare il font del titolo" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Item Date Font" msgstr "Data font elemento" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "You can change the font of the date" msgstr "Puoi cambiare il font della data" -#: src/prefs/customization/commonStyleGroup.ts:111 +#: src/prefs/customization/commonStyleGroup.ts:123 msgid "Active Item Border Color" msgstr "Colore del bordo dell'elemento attivo" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "You can change the active item border color" msgstr "È possibile modificare il colore del bordo dell'elemento attivo" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:131 msgid "Hovered Item Border Color" msgstr "Colore del bordo dell'elemento al passaggio del mouse" -#: src/prefs/customization/commonStyleGroup.ts:120 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "You can change the hovered item border color" msgstr "Puoi cambiare il colore del bordo dell'elemento al passaggio del mouse" -#: src/prefs/customization/commonStyleGroup.ts:127 +#: src/prefs/customization/commonStyleGroup.ts:139 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:128 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/ja.po b/resources/po/ja.po index 698486d1..205fcff4 100644 --- a/resources/po/ja.po +++ b/resources/po/ja.po @@ -206,6 +206,10 @@ msgstr "" msgid "Left" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:65 +msgid "Pointer" +msgstr "" + #: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" @@ -214,76 +218,84 @@ msgstr "" msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:71 +msgid "Window Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:72 +msgid "You can change the height of the window if the position is \"Pointer\"" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:85 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:111 +#: src/prefs/customization/commonStyleGroup.ts:123 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:131 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:120 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:127 +#: src/prefs/customization/commonStyleGroup.ts:139 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:128 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/ko.po b/resources/po/ko.po index 98117fcf..2bf45a9a 100644 --- a/resources/po/ko.po +++ b/resources/po/ko.po @@ -206,6 +206,10 @@ msgstr "" msgid "Left" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:65 +msgid "Pointer" +msgstr "" + #: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" @@ -214,76 +218,84 @@ msgstr "" msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:71 +msgid "Window Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:72 +msgid "You can change the height of the window if the position is \"Pointer\"" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:85 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:111 +#: src/prefs/customization/commonStyleGroup.ts:123 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:131 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:120 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:127 +#: src/prefs/customization/commonStyleGroup.ts:139 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:128 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/nl.po b/resources/po/nl.po index 47890b44..3638ed5b 100644 --- a/resources/po/nl.po +++ b/resources/po/nl.po @@ -206,6 +206,10 @@ msgstr "" msgid "Left" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:65 +msgid "Pointer" +msgstr "" + #: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" @@ -214,76 +218,84 @@ msgstr "" msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:71 +msgid "Window Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:72 +msgid "You can change the height of the window if the position is \"Pointer\"" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:85 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:111 +#: src/prefs/customization/commonStyleGroup.ts:123 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:131 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:120 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:127 +#: src/prefs/customization/commonStyleGroup.ts:139 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:128 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/no.po b/resources/po/no.po index d5518cd5..58ac3932 100644 --- a/resources/po/no.po +++ b/resources/po/no.po @@ -206,6 +206,10 @@ msgstr "" msgid "Left" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:65 +msgid "Pointer" +msgstr "" + #: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" @@ -214,76 +218,84 @@ msgstr "" msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:71 +msgid "Window Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:72 +msgid "You can change the height of the window if the position is \"Pointer\"" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:85 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:111 +#: src/prefs/customization/commonStyleGroup.ts:123 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:131 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:120 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:127 +#: src/prefs/customization/commonStyleGroup.ts:139 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:128 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/oc.po b/resources/po/oc.po index a0802112..39f00a31 100644 --- a/resources/po/oc.po +++ b/resources/po/oc.po @@ -206,6 +206,10 @@ msgstr "" msgid "Left" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:65 +msgid "Pointer" +msgstr "" + #: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" @@ -214,76 +218,84 @@ msgstr "" msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:71 +msgid "Window Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:72 +msgid "You can change the height of the window if the position is \"Pointer\"" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:85 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:111 +#: src/prefs/customization/commonStyleGroup.ts:123 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:131 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:120 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:127 +#: src/prefs/customization/commonStyleGroup.ts:139 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:128 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/pano@elhan.io.pot b/resources/po/pano@elhan.io.pot index 2e0e0ad4..8b70e010 100644 --- a/resources/po/pano@elhan.io.pot +++ b/resources/po/pano@elhan.io.pot @@ -2,7 +2,7 @@ msgid "" msgstr "" "Content-Type: text/plain; charset=UTF-8\n" -#: src/prefs/customization/commonStyleGroup.ts:111 +#: src/prefs/customization/commonStyleGroup.ts:123 msgid "Active Item Border Color" msgstr "" @@ -272,7 +272,7 @@ msgstr "" msgid "History Length" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:131 msgid "Hovered Item Border Color" msgstr "" @@ -300,11 +300,11 @@ msgstr "" msgid "Incognito Mode Shortcut" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Item Date Font" msgstr "" @@ -316,7 +316,7 @@ msgstr "" msgid "Item Style" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Item Title Font" msgstr "" @@ -425,6 +425,10 @@ msgstr "" msgid "Play an Audio on Copy" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:65 +msgid "Pointer" +msgstr "" + #: src/prefs/general/removeOnMiddleClick.ts:15 msgid "Remove on Middle Click" msgstr "" @@ -437,11 +441,11 @@ msgstr "" msgid "Right Margin" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "Search Bar Font" msgstr "" @@ -462,7 +466,7 @@ msgstr "" msgid "Settings" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:127 +#: src/prefs/customization/commonStyleGroup.ts:139 msgid "Show Controls on Hover" msgstr "" @@ -542,7 +546,7 @@ msgstr "" msgid "When enabled, Pano will not track clipboard from excluded apps" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:128 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -558,7 +562,7 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:85 msgid "Window Background Color" msgstr "" @@ -566,6 +570,10 @@ msgstr "" msgid "Window class name" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:71 +msgid "Window Height" +msgstr "" + #: src/prefs/customization/commonStyleGroup.ts:61 msgid "Window Position" msgstr "" @@ -574,7 +582,7 @@ msgstr "" msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "You can change the active item border color" msgstr "" @@ -603,7 +611,7 @@ msgstr "" msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "You can change the background color of the search bar" msgstr "" @@ -637,7 +645,7 @@ msgstr "" msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "You can change the font of the date" msgstr "" @@ -661,7 +669,7 @@ msgstr "" msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "You can change the font of the search bar" msgstr "" @@ -669,12 +677,16 @@ msgstr "" msgid "You can change the font of the text preview" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:120 +#: src/prefs/customization/commonStyleGroup.ts:72 +msgid "You can change the height of the window if the position is \"Pointer\"" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "You can change the hovered item border color" msgstr "" @@ -682,7 +694,7 @@ msgstr "" msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "You can change the incognito window background color" msgstr "" @@ -740,7 +752,7 @@ msgstr "" msgid "You can change the top margin" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "You can change the window background color" msgstr "" diff --git a/resources/po/pl.po b/resources/po/pl.po index cf3d9a92..36175b61 100644 --- a/resources/po/pl.po +++ b/resources/po/pl.po @@ -206,6 +206,10 @@ msgstr "" msgid "Left" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:65 +msgid "Pointer" +msgstr "" + #: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" @@ -214,76 +218,84 @@ msgstr "" msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:71 +msgid "Window Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:72 +msgid "You can change the height of the window if the position is \"Pointer\"" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:85 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:111 +#: src/prefs/customization/commonStyleGroup.ts:123 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:131 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:120 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:127 +#: src/prefs/customization/commonStyleGroup.ts:139 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:128 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/pt.po b/resources/po/pt.po index f1771b7a..019fe36f 100644 --- a/resources/po/pt.po +++ b/resources/po/pt.po @@ -206,6 +206,10 @@ msgstr "" msgid "Left" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:65 +msgid "Pointer" +msgstr "" + #: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" @@ -214,76 +218,84 @@ msgstr "" msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:71 +msgid "Window Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:72 +msgid "You can change the height of the window if the position is \"Pointer\"" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:85 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:111 +#: src/prefs/customization/commonStyleGroup.ts:123 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:131 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:120 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:127 +#: src/prefs/customization/commonStyleGroup.ts:139 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:128 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/pt_BR.po b/resources/po/pt_BR.po index e07b6271..5a5d038f 100644 --- a/resources/po/pt_BR.po +++ b/resources/po/pt_BR.po @@ -206,6 +206,10 @@ msgstr "Inferior" msgid "Left" msgstr "Esquerda" +#: src/prefs/customization/commonStyleGroup.ts:65 +msgid "Pointer" +msgstr "" + #: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "Direita" @@ -214,76 +218,84 @@ msgstr "Direita" msgid "Top" msgstr "Superior" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:71 +msgid "Window Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:72 +msgid "You can change the height of the window if the position is \"Pointer\"" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:85 msgid "Window Background Color" msgstr "Cor de fundo da janela" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "You can change the window background color" msgstr "Você pode mudar a cor de fundo da janela" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Incognito Window Background Color" msgstr "Cor de fundo da janela anônima" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "You can change the incognito window background color" msgstr "Você pode mudar a cor de fundo da janela anônima" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "Search Bar Font" msgstr "Fonte da barra de pesquisa" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "You can change the font of the search bar" msgstr "Você pode mudar a fonte da barra de pesquisa" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Item Title Font" msgstr "Fonte do título do item" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "Você pode mudar a fonte do título" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Item Date Font" msgstr "Fonte da data do item" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "You can change the font of the date" msgstr "Você pode mudar a fonte da data" -#: src/prefs/customization/commonStyleGroup.ts:111 +#: src/prefs/customization/commonStyleGroup.ts:123 msgid "Active Item Border Color" msgstr "Cor da borda do item ativo" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "You can change the active item border color" msgstr "Você pode mudar a cor da borda do item ativo" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:131 msgid "Hovered Item Border Color" msgstr "Cor da borda do item destacado" -#: src/prefs/customization/commonStyleGroup.ts:120 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "You can change the hovered item border color" msgstr "Você pode mudar a cor da borda do item destacado" -#: src/prefs/customization/commonStyleGroup.ts:127 +#: src/prefs/customization/commonStyleGroup.ts:139 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:128 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/ro.po b/resources/po/ro.po index 6da3ae80..4be35206 100644 --- a/resources/po/ro.po +++ b/resources/po/ro.po @@ -206,6 +206,10 @@ msgstr "" msgid "Left" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:65 +msgid "Pointer" +msgstr "" + #: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" @@ -214,76 +218,84 @@ msgstr "" msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:71 +msgid "Window Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:72 +msgid "You can change the height of the window if the position is \"Pointer\"" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:85 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:111 +#: src/prefs/customization/commonStyleGroup.ts:123 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:131 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:120 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:127 +#: src/prefs/customization/commonStyleGroup.ts:139 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:128 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/ru.po b/resources/po/ru.po index 77d2cf27..fbf213f3 100644 --- a/resources/po/ru.po +++ b/resources/po/ru.po @@ -206,6 +206,10 @@ msgstr "" msgid "Left" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:65 +msgid "Pointer" +msgstr "" + #: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" @@ -214,76 +218,84 @@ msgstr "" msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:71 +msgid "Window Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:72 +msgid "You can change the height of the window if the position is \"Pointer\"" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:85 msgid "Window Background Color" msgstr "Цвет фона окна" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "You can change the window background color" msgstr "Вы можете изменить цвет фона окна" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Incognito Window Background Color" msgstr "Цвет фона окна инкогнито" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "You can change the incognito window background color" msgstr "Вы можете изменить цвет фона окна инкогнито" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "Search Bar Font" msgstr "Шрифт панели поиска" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "You can change the font of the search bar" msgstr "Вы можете изменить шрифт в строке поиска" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Item Title Font" msgstr "Шрифт заголовка элемента" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "Вы можете изменить шрифт заголовка" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Item Date Font" msgstr "Шрифт даты элемента" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "You can change the font of the date" msgstr "Вы можете изменить шрифт даты" -#: src/prefs/customization/commonStyleGroup.ts:111 +#: src/prefs/customization/commonStyleGroup.ts:123 msgid "Active Item Border Color" msgstr "Цвет границы активного элемента" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "You can change the active item border color" msgstr "Вы можете изменить цвет границы активного элемента" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:131 msgid "Hovered Item Border Color" msgstr "Цвет границы выбранного элемента" -#: src/prefs/customization/commonStyleGroup.ts:120 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "You can change the hovered item border color" msgstr "Вы можете изменить цвет границы выбранного элемента" -#: src/prefs/customization/commonStyleGroup.ts:127 +#: src/prefs/customization/commonStyleGroup.ts:139 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:128 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/sk.po b/resources/po/sk.po index a888aca5..68f8f7e0 100644 --- a/resources/po/sk.po +++ b/resources/po/sk.po @@ -206,6 +206,10 @@ msgstr "" msgid "Left" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:65 +msgid "Pointer" +msgstr "" + #: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" @@ -214,76 +218,84 @@ msgstr "" msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:71 +msgid "Window Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:72 +msgid "You can change the height of the window if the position is \"Pointer\"" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:85 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:111 +#: src/prefs/customization/commonStyleGroup.ts:123 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:131 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:120 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:127 +#: src/prefs/customization/commonStyleGroup.ts:139 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:128 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/sv.po b/resources/po/sv.po index a3524a62..6105e850 100644 --- a/resources/po/sv.po +++ b/resources/po/sv.po @@ -206,6 +206,10 @@ msgstr "" msgid "Left" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:65 +msgid "Pointer" +msgstr "" + #: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" @@ -214,76 +218,84 @@ msgstr "" msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:71 +msgid "Window Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:72 +msgid "You can change the height of the window if the position is \"Pointer\"" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:85 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:111 +#: src/prefs/customization/commonStyleGroup.ts:123 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:131 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:120 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:127 +#: src/prefs/customization/commonStyleGroup.ts:139 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:128 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/tr.po b/resources/po/tr.po index 508a92f1..a61fbe34 100644 --- a/resources/po/tr.po +++ b/resources/po/tr.po @@ -206,6 +206,10 @@ msgstr "Alt" msgid "Left" msgstr "Sol" +#: src/prefs/customization/commonStyleGroup.ts:65 +msgid "Pointer" +msgstr "" + #: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "Sağ" @@ -214,76 +218,84 @@ msgstr "Sağ" msgid "Top" msgstr "Üst" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:71 +msgid "Window Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:72 +msgid "You can change the height of the window if the position is \"Pointer\"" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:85 msgid "Window Background Color" msgstr "Pencere Arkaplan Rengi" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "You can change the window background color" msgstr "Pencere arkaplan rengini değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Incognito Window Background Color" msgstr "Gizli Pencere Arkaplan Rengi" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "You can change the incognito window background color" msgstr "Gizli pencere arkaplan rengini değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "Search Bar Font" msgstr "Arama Çubuğu Yazı Tipi" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "You can change the font of the search bar" msgstr "Arama çubuğu yazı tipini değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Item Title Font" msgstr "Öğe Başlığı Yazı Tipi" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "Öğe başlığının yazı tipini değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Item Date Font" msgstr "Öğe Tarihi Yazı Tipi" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "You can change the font of the date" msgstr "Öğe tarihi yazı tipini değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:111 +#: src/prefs/customization/commonStyleGroup.ts:123 msgid "Active Item Border Color" msgstr "Etkin Öğe Çerçeve Rengi" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "You can change the active item border color" msgstr "Etkin öğenin çerçeve rengini değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:131 msgid "Hovered Item Border Color" msgstr "Öğenin Üzerine Gelindiğindeki Çerçeve Rengi" -#: src/prefs/customization/commonStyleGroup.ts:120 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "You can change the hovered item border color" msgstr "Öğenin üzerine geldiğindeki çerçeve rengini değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:127 +#: src/prefs/customization/commonStyleGroup.ts:139 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:128 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/uk.po b/resources/po/uk.po index 5ce4b0e9..8e5a5781 100644 --- a/resources/po/uk.po +++ b/resources/po/uk.po @@ -206,6 +206,10 @@ msgstr "" msgid "Left" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:65 +msgid "Pointer" +msgstr "" + #: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" @@ -214,76 +218,84 @@ msgstr "" msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:71 +msgid "Window Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:72 +msgid "You can change the height of the window if the position is \"Pointer\"" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:85 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:111 +#: src/prefs/customization/commonStyleGroup.ts:123 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:131 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:120 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:127 +#: src/prefs/customization/commonStyleGroup.ts:139 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:128 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/vi.po b/resources/po/vi.po index 38700e94..1cfd0227 100644 --- a/resources/po/vi.po +++ b/resources/po/vi.po @@ -206,6 +206,10 @@ msgstr "" msgid "Left" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:65 +msgid "Pointer" +msgstr "" + #: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "" @@ -214,76 +218,84 @@ msgstr "" msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:71 +msgid "Window Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:72 +msgid "You can change the height of the window if the position is \"Pointer\"" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:85 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:111 +#: src/prefs/customization/commonStyleGroup.ts:123 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:131 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:120 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:127 +#: src/prefs/customization/commonStyleGroup.ts:139 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:128 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/zh_CN.po b/resources/po/zh_CN.po index 998cfe9b..78b0a6bd 100644 --- a/resources/po/zh_CN.po +++ b/resources/po/zh_CN.po @@ -206,6 +206,10 @@ msgstr "底部" msgid "Left" msgstr "左侧" +#: src/prefs/customization/commonStyleGroup.ts:65 +msgid "Pointer" +msgstr "" + #: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "右侧" @@ -214,76 +218,84 @@ msgstr "右侧" msgid "Top" msgstr "顶部" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:71 +msgid "Window Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:72 +msgid "You can change the height of the window if the position is \"Pointer\"" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:85 msgid "Window Background Color" msgstr "窗口背景色" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "You can change the window background color" msgstr "修改窗口背景颜色" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Incognito Window Background Color" msgstr "隐私窗口背景色" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "You can change the incognito window background color" msgstr "修改隐私窗口背景颜色" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "Search Bar Font" msgstr "搜索栏字体" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "You can change the font of the search bar" msgstr "修改搜索栏字体" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Item Title Font" msgstr "项目标题字体" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "修改项目标题字体" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Item Date Font" msgstr "项目日期字体" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "You can change the font of the date" msgstr "修改项目日期字体" -#: src/prefs/customization/commonStyleGroup.ts:111 +#: src/prefs/customization/commonStyleGroup.ts:123 msgid "Active Item Border Color" msgstr "激活项目边框颜色" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "You can change the active item border color" msgstr "修改激活项目的边框颜色" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:131 msgid "Hovered Item Border Color" msgstr "悬停项目边框颜色" -#: src/prefs/customization/commonStyleGroup.ts:120 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "You can change the hovered item border color" msgstr "修改鼠标悬停项目的边框颜色" -#: src/prefs/customization/commonStyleGroup.ts:127 +#: src/prefs/customization/commonStyleGroup.ts:139 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:128 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/zh_TW.po b/resources/po/zh_TW.po index 9c8b7b0e..d9c400b3 100644 --- a/resources/po/zh_TW.po +++ b/resources/po/zh_TW.po @@ -206,6 +206,10 @@ msgstr "底部" msgid "Left" msgstr "左邊" +#: src/prefs/customization/commonStyleGroup.ts:65 +msgid "Pointer" +msgstr "" + #: src/prefs/customization/commonStyleGroup.ts:65 msgid "Right" msgstr "右邊" @@ -214,76 +218,84 @@ msgstr "右邊" msgid "Top" msgstr "頂部" -#: src/prefs/customization/commonStyleGroup.ts:73 +#: src/prefs/customization/commonStyleGroup.ts:71 +msgid "Window Height" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:72 +msgid "You can change the height of the window if the position is \"Pointer\"" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:85 msgid "Window Background Color" msgstr "視窗背景顏色" -#: src/prefs/customization/commonStyleGroup.ts:74 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "You can change the window background color" msgstr "你可以更換視窗背景顏色" -#: src/prefs/customization/commonStyleGroup.ts:81 +#: src/prefs/customization/commonStyleGroup.ts:93 msgid "Incognito Window Background Color" msgstr "無痕模式視窗背景顏色" -#: src/prefs/customization/commonStyleGroup.ts:82 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "You can change the incognito window background color" msgstr "你可以更換無痕模式視窗背景顏色" -#: src/prefs/customization/commonStyleGroup.ts:89 +#: src/prefs/customization/commonStyleGroup.ts:101 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:90 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:97 +#: src/prefs/customization/commonStyleGroup.ts:109 msgid "Search Bar Font" msgstr "搜尋欄字體" -#: src/prefs/customization/commonStyleGroup.ts:98 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "You can change the font of the search bar" msgstr "你可以更換搜尋欄的字體" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 msgid "Item Title Font" msgstr "物件標題字體" -#: src/prefs/customization/commonStyleGroup.ts:104 +#: src/prefs/customization/commonStyleGroup.ts:116 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "你可以更換標題的字體" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "Item Date Font" msgstr "物件日期字體" -#: src/prefs/customization/commonStyleGroup.ts:107 +#: src/prefs/customization/commonStyleGroup.ts:119 msgid "You can change the font of the date" msgstr "你可以更換日期的字體" -#: src/prefs/customization/commonStyleGroup.ts:111 +#: src/prefs/customization/commonStyleGroup.ts:123 msgid "Active Item Border Color" msgstr "選取物件邊界顏色" -#: src/prefs/customization/commonStyleGroup.ts:112 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "You can change the active item border color" msgstr "你可以更換活躍的物件邊界顏色" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:131 msgid "Hovered Item Border Color" msgstr "被游標覆蓋物件邊界顏色" -#: src/prefs/customization/commonStyleGroup.ts:120 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "You can change the hovered item border color" msgstr "你可以更換被覆蓋物件邊界顏色" -#: src/prefs/customization/commonStyleGroup.ts:127 +#: src/prefs/customization/commonStyleGroup.ts:139 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:128 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml b/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml index 6ced94b7..6fd78139 100644 --- a/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml +++ b/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml @@ -128,10 +128,16 @@ Compact Mode Controls the compactness of the clipboard item. - - + + 2 - icon pack: 0-top 1-right 2-bottom 3-left + icon pack: 0-top 1-right 2-bottom 3-left 4-pointer + + + + 440 + window-height + window-height true diff --git a/src/containers/panoWindow.ts b/src/containers/panoWindow.ts index 1ed19082..3bd4b9f9 100644 --- a/src/containers/panoWindow.ts +++ b/src/containers/panoWindow.ts @@ -13,7 +13,15 @@ import { ItemType } from '@pano/utils/db'; import { registerGObjectClass } from '@pano/utils/gjs'; import { getCurrentExtensionSettings } from '@pano/utils/shell'; import { orientationCompatibility } from '@pano/utils/shell_compatibility'; -import { getAlignment, getMonitorConstraint, isVertical } from '@pano/utils/ui'; +import { + getAlignment, + getMonitorConstraint, + getMonitorIndexForPointer, + getMonitors, + getPointer, + isVertical, + WINDOW_POSITIONS, +} from '@pano/utils/ui'; @registerGObjectClass export class PanoWindow extends St.BoxLayout { @@ -48,6 +56,7 @@ export class PanoWindow extends St.BoxLayout { this.settings.connect('changed::window-position', () => { this.setWindowDimensions(themeContext.scaleFactor); this.setAlignment(); + this.setStyle(); }); this.settings.connect('changed::window-floating', this.setStyle.bind(this)); this.settings.connect('changed::window-margin-left', this.setStyle.bind(this)); @@ -81,6 +90,10 @@ export class PanoWindow extends St.BoxLayout { if (isVertical(this.settings.get_uint('window-position'))) { this.add_style_class_name('vertical'); this.set_width((this.settings.get_int('item-width') + 32) * scaleFactor); + + if (this.settings.get_uint('window-position') == WINDOW_POSITIONS.POINTER) { + this.set_height(this.settings.get_int('window-height') * scaleFactor); + } } else { const mult = this.settings.get_boolean('compact-mode') ? 0.5 : 1; const header = this.settings.get_boolean('enable-headers') ? 48 : 0; @@ -105,7 +118,10 @@ export class PanoWindow extends St.BoxLayout { } let margins; - if (this.settings.get_boolean('window-floating')) { + if (this.settings.get_uint('window-position') == WINDOW_POSITIONS.POINTER) { + this.add_style_class_name('floating'); + margins = '0px'; + } else if (this.settings.get_boolean('window-floating')) { this.add_style_class_name('floating'); const left = this.settings.get_int('window-margin-left'); @@ -122,6 +138,35 @@ export class PanoWindow extends St.BoxLayout { this.set_style(`background-color: ${backgroundColor}; margin: ${margins}`); } + private setPositionConstraints(at_pointer: boolean) { + if (this.settings.get_uint('window-position') == WINDOW_POSITIONS.POINTER) { + const [px, py, _] = getPointer(); + const monitor = getMonitors()[getMonitorIndexForPointer()]!; + + const left = this.settings.get_int('window-margin-left'); + const top = this.settings.get_int('window-margin-top'); + + const x = Math.max(Math.min(at_pointer ? px + 1 : left, monitor.x + monitor.width - this.width), monitor.x); + const y = Math.max(Math.min(at_pointer ? py + 1 : top, monitor.y + monitor.height - this.height), monitor.y); + + this.add_constraint( + new Clutter.BindConstraint({ + source: Shell.Global.get().stage, + coordinate: Clutter.BindCoordinate.X, + offset: x, + }), + ); + + this.add_constraint( + new Clutter.BindConstraint({ + source: Shell.Global.get().stage, + coordinate: Clutter.BindCoordinate.Y, + offset: y, + }), + ); + } + } + private setupMonitorBox() { this.monitorBox.connect('hide_window', () => this.hide()); } @@ -179,14 +224,16 @@ export class PanoWindow extends St.BoxLayout { }); } - toggle(): void { - this.is_visible() ? this.hide() : this.show(); + toggle(at_pointer: boolean = false): void { + this.is_visible() ? this.hide() : this._show(at_pointer); } - override show() { + private _show(at_pointer: boolean) { this.clear_constraints(); this.setAlignment(); this.add_constraint(getMonitorConstraint()); + this.setPositionConstraints(at_pointer); + super.show(); if (this.settings.get_boolean('keep-search-entry')) { this.searchBox.selectAll(); @@ -200,7 +247,10 @@ export class PanoWindow extends St.BoxLayout { mode: Clutter.AnimationMode.EASE_OUT_QUAD, }); this.monitorBox.open(); + } + override show() { + this._show(false); return Clutter.EVENT_PROPAGATE; } diff --git a/src/extension.ts b/src/extension.ts index 00ec5ec3..118697c0 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -81,7 +81,7 @@ export default class PanoExtension extends Extension { this.panoWindow = new PanoWindow(this, this.clipboardManager); this.trackWindow(); addTopChrome(this.panoWindow); - this.keyManager.listenFor('global-shortcut', () => this.panoWindow?.toggle()); + this.keyManager.listenFor('global-shortcut', () => this.panoWindow?.toggle(true)); this.keyManager.listenFor('incognito-shortcut', () => { this.settings?.set_boolean('is-in-incognito', !this.settings?.get_boolean('is-in-incognito')); }); diff --git a/src/prefs/customization/commonStyleGroup.ts b/src/prefs/customization/commonStyleGroup.ts index 5c912f7e..c30357ef 100644 --- a/src/prefs/customization/commonStyleGroup.ts +++ b/src/prefs/customization/commonStyleGroup.ts @@ -62,7 +62,19 @@ export class CommonStyleGroup extends Adw.PreferencesGroup { _('You can change position of the Pano'), this.settings, 'window-position', - [_('Top'), _('Right'), _('Bottom'), _('Left')], + [_('Top'), _('Right'), _('Bottom'), _('Left'), _('Pointer')], + ), + ); + + this.add( + createSpinRow( + _('Window Height'), + _('You can change the height of the window if the position is "Pointer"'), + this.settings, + 'window-height', + 1, + 100, + 4000, ), ); diff --git a/src/utils/ui.ts b/src/utils/ui.ts index 1f84fa69..3fde1b7a 100644 --- a/src/utils/ui.ts +++ b/src/utils/ui.ts @@ -59,6 +59,8 @@ export const wiggle = (actor: Clutter.Actor, { offset, duration, wiggleCount }: export const wm = main.wm; +export const getPointer = () => global.get_pointer(); + export const getMonitors = (): Monitor[] => main.layoutManager.monitors; export const getMonitorIndexForPointer = () => { @@ -118,6 +120,7 @@ export const WINDOW_POSITIONS = { RIGHT: 1, BOTTOM: 2, LEFT: 3, + POINTER: 4, }; export const getAlignment = (position: number): [Clutter.ActorAlign, Clutter.ActorAlign] => { @@ -130,11 +133,15 @@ export const getAlignment = (position: number): [Clutter.ActorAlign, Clutter.Act return [Clutter.ActorAlign.FILL, Clutter.ActorAlign.END]; case WINDOW_POSITIONS.LEFT: return [Clutter.ActorAlign.START, Clutter.ActorAlign.FILL]; + case WINDOW_POSITIONS.POINTER: + return [Clutter.ActorAlign.START, Clutter.ActorAlign.START]; } return [Clutter.ActorAlign.FILL, Clutter.ActorAlign.END]; }; export const isVertical = (position: number) => { - return position === WINDOW_POSITIONS.LEFT || position === WINDOW_POSITIONS.RIGHT; + return ( + position === WINDOW_POSITIONS.LEFT || position === WINDOW_POSITIONS.RIGHT || position === WINDOW_POSITIONS.POINTER + ); }; From 05f53145a6ed3d350e68a0544619ae9a6f5082e9 Mon Sep 17 00:00:00 2001 From: boerdereinar Date: Fri, 10 May 2024 19:44:02 +0200 Subject: [PATCH 23/45] Fix action button coloring to follow body/header color --- src/components/codePanoItem.ts | 8 +++++++ src/components/colorPanoItem.ts | 33 ++++++++++--------------- src/components/emojiPanoItem.ts | 8 +++++++ src/components/filePanoItem.ts | 8 +++++++ src/components/imagePanoItem.ts | 11 ++++++++- src/components/linkPanoItem.ts | 21 ++++++++++++++-- src/components/panoItemOverlay.ts | 11 +++++++++ src/components/textPanoItem.ts | 10 ++++++++ src/styles/stylesheet.css | 20 ++++++---------- src/utils/color.ts | 40 +++++++++++++++++++++++++++++++ 10 files changed, 133 insertions(+), 37 deletions(-) create mode 100644 src/utils/color.ts diff --git a/src/components/codePanoItem.ts b/src/components/codePanoItem.ts index 53842ef1..5ae6a4e0 100644 --- a/src/components/codePanoItem.ts +++ b/src/components/codePanoItem.ts @@ -4,6 +4,7 @@ import Pango from '@girs/pango-1.0'; import St from '@girs/st-16'; import { PanoItem } from '@pano/components/panoItem'; import { ClipboardContent, ClipboardManager, ContentType } from '@pano/utils/clipboardManager'; +import { getItemBackgroundColor } from '@pano/utils/color'; import { DBItem } from '@pano/utils/db'; import { registerGObjectClass } from '@pano/utils/gjs'; import { markupCode } from '@pano/utils/pango'; @@ -27,6 +28,12 @@ export class CodePanoItem extends PanoItem { this.connect('activated', this.setClipboardContent.bind(this)); this.setStyle(); this.codeItemSettings.connect('changed', this.setStyle.bind(this)); + + // Settings for controls + this.settings.connect('changed::is-in-incognito', this.setStyle.bind(this)); + this.settings.connect('changed::incognito-window-background-color', this.setStyle.bind(this)); + this.settings.connect('changed::window-background-color', this.setStyle.bind(this)); + this.settings.connect('changed::enable-headers', this.setStyle.bind(this)); } private setStyle() { @@ -37,6 +44,7 @@ export class CodePanoItem extends PanoItem { const bodyFontSize = this.codeItemSettings.get_int('body-font-size'); const characterLength = this.codeItemSettings.get_int('char-length'); + this.overlay.setControlsBackground(getItemBackgroundColor(this.settings, headerBgColor, bodyBgColor)); this.header.set_style(`background-color: ${headerBgColor}; color: ${headerColor};`); this.container.set_style(`background-color: ${bodyBgColor}`); this.label.set_style(`font-size: ${bodyFontSize}px; font-family: ${bodyFontFamily};`); diff --git a/src/components/colorPanoItem.ts b/src/components/colorPanoItem.ts index 88516ad2..bf131710 100644 --- a/src/components/colorPanoItem.ts +++ b/src/components/colorPanoItem.ts @@ -4,10 +4,10 @@ import type { ExtensionBase } from '@girs/gnome-shell/dist/extensions/sharedInte import St from '@girs/st-16'; import { PanoItem } from '@pano/components/panoItem'; import { ClipboardContent, ClipboardManager, ContentType } from '@pano/utils/clipboardManager'; +import { getItemBackgroundColor, isDark } from '@pano/utils/color'; import { DBItem } from '@pano/utils/db'; import { registerGObjectClass } from '@pano/utils/gjs'; import { orientationCompatibility } from '@pano/utils/shell_compatibility'; -import colorString from 'color-string'; @registerGObjectClass export class ColorPanoItem extends PanoItem { @@ -57,6 +57,12 @@ export class ColorPanoItem extends PanoItem { this.settings.connect('changed::compact-mode', this.setCompactMode.bind(this)); this.setStyle(); this.colorItemSettings.connect('changed', this.setStyle.bind(this)); + + // Settings for controls + this.settings.connect('changed::is-in-incognito', this.setStyle.bind(this)); + this.settings.connect('changed::incognito-window-background-color', this.setStyle.bind(this)); + this.settings.connect('changed::window-background-color', this.setStyle.bind(this)); + this.settings.connect('changed::enable-headers', this.setStyle.bind(this)); } private setCompactMode() { @@ -73,32 +79,17 @@ export class ColorPanoItem extends PanoItem { const metadataFontFamily = this.colorItemSettings.get_string('metadata-font-family'); const metadataFontSize = this.colorItemSettings.get_int('metadata-font-size'); - // Calculate the luminance to determine the icon and text color with sufficient contrast - const rgb = colorString.get.rgb(this.dbItem.content) ?? [0, 0, 0, 0]; - const L = - 0.2126 * this.calculateChannel(rgb[0]) + - 0.7152 * this.calculateChannel(rgb[1]) + - 0.0722 * this.calculateChannel(rgb[2]); - - const delta = L > 0.179 ? -30 : 30; - const iconColor = `rgb(${Math.clamp(rgb[0] + delta, 0, 255)}, ${Math.clamp(rgb[1] + delta, 0, 255)}, ${Math.clamp(rgb[2] + delta, 0, 255)})`; - const textColor = L > 0.179 ? '#000000' : '#ffffff'; + const dark = isDark(this.dbItem.content); + const iconColor = dark ? 'rgba(255, 255, 255, 0.3)' : 'rgba(0, 0, 0, 0.3)'; + const textColor = dark ? '#ffffff' : '#000000'; + this.overlay.setControlsBackground(getItemBackgroundColor(this.settings, headerBgColor, null)); this.header.set_style(`background-color: ${headerBgColor}; color: ${headerColor};`); - this.container.set_style(`background-color: rgb(${rgb[0]}, ${rgb[1]}, ${rgb[2]});`); + this.container.set_style(`background-color: ${this.dbItem.content};`); this.icon.set_style(`color: ${iconColor};`); this.label.set_style(`color: ${textColor}; font-family: ${metadataFontFamily}; font-size: ${metadataFontSize}px;`); } - private calculateChannel(c: number) { - c /= 255.0; - if (c <= 0.04045) { - return c / 12.92; - } else { - return Math.pow((c + 0.055) / 1.055, 2.4); - } - } - private setClipboardContent(): void { this.clipboardManager.setContent(new ClipboardContent({ type: ContentType.TEXT, value: this.dbItem.content })); } diff --git a/src/components/emojiPanoItem.ts b/src/components/emojiPanoItem.ts index c0cbe74b..2d42c4d2 100644 --- a/src/components/emojiPanoItem.ts +++ b/src/components/emojiPanoItem.ts @@ -5,6 +5,7 @@ import Pango from '@girs/pango-1.0'; import St from '@girs/st-16'; import { PanoItem } from '@pano/components/panoItem'; import { ClipboardContent, ClipboardManager, ContentType } from '@pano/utils/clipboardManager'; +import { getItemBackgroundColor } from '@pano/utils/color'; import { DBItem } from '@pano/utils/db'; import { registerGObjectClass } from '@pano/utils/gjs'; @registerGObjectClass @@ -35,6 +36,12 @@ export class EmojiPanoItem extends PanoItem { this.emojiItemSettings.connect('changed', this.setStyle.bind(this)); this.settings.connect('changed::compact-mode', this.setStyle.bind(this)); this.settings.connect('changed::item-height', this.setStyle.bind(this)); + + // Settings for controls + this.settings.connect('changed::is-in-incognito', this.setStyle.bind(this)); + this.settings.connect('changed::incognito-window-background-color', this.setStyle.bind(this)); + this.settings.connect('changed::window-background-color', this.setStyle.bind(this)); + this.settings.connect('changed::enable-headers', this.setStyle.bind(this)); } private setStyle() { @@ -43,6 +50,7 @@ export class EmojiPanoItem extends PanoItem { const bodyBgColor = this.emojiItemSettings.get_string('body-bg-color'); const emojiSize = this.emojiItemSettings.get_int('emoji-size'); + this.overlay.setControlsBackground(getItemBackgroundColor(this.settings, headerBgColor, bodyBgColor)); this.header.set_style(`background-color: ${headerBgColor}; color: ${headerColor};`); this.container.set_style(`background-color: ${bodyBgColor};`); this.label.set_style(`font-size: ${Math.min(emojiSize, this.body.height - 24)}px;`); diff --git a/src/components/filePanoItem.ts b/src/components/filePanoItem.ts index aea74ed4..59b1cd6c 100644 --- a/src/components/filePanoItem.ts +++ b/src/components/filePanoItem.ts @@ -6,6 +6,7 @@ import Pango from '@girs/pango-1.0'; import St from '@girs/st-16'; import { PanoItem } from '@pano/components/panoItem'; import { ClipboardContent, ClipboardManager, ContentType, FileOperation } from '@pano/utils/clipboardManager'; +import { getItemBackgroundColor } from '@pano/utils/color'; import { DBItem } from '@pano/utils/db'; import { registerGObjectClass } from '@pano/utils/gjs'; import { gettext } from '@pano/utils/shell'; @@ -237,6 +238,12 @@ export class FilePanoItem extends PanoItem { }); this.body.add_child(this.preview); + + // Settings for controls + this.settings.connect('changed::is-in-incognito', this.setStyle.bind(this)); + this.settings.connect('changed::incognito-window-background-color', this.setStyle.bind(this)); + this.settings.connect('changed::window-background-color', this.setStyle.bind(this)); + this.settings.connect('changed::enable-headers', this.setStyle.bind(this)); } this.connect('activated', this.setClipboardContent.bind(this)); @@ -263,6 +270,7 @@ export class FilePanoItem extends PanoItem { const textPreviewFontFamily = this.fileItemSettings.get_string('text-preview-font-family'); const textPreviewFontSize = this.fileItemSettings.get_int('text-preview-font-size'); + this.overlay.setControlsBackground(getItemBackgroundColor(this.settings, headerBgColor, bodyBgColor)); this.header.set_style(`background-color: ${headerBgColor}; color: ${headerColor};`); this.container.set_style(`background-color: ${bodyBgColor};`); diff --git a/src/components/imagePanoItem.ts b/src/components/imagePanoItem.ts index 4b5f48f7..1aaf5794 100644 --- a/src/components/imagePanoItem.ts +++ b/src/components/imagePanoItem.ts @@ -2,6 +2,7 @@ import Gio from '@girs/gio-2.0'; import type { ExtensionBase } from '@girs/gnome-shell/dist/extensions/sharedInternals'; import { PanoItem } from '@pano/components/panoItem'; import { ClipboardContent, ClipboardManager, ContentType } from '@pano/utils/clipboardManager'; +import { getItemBackgroundColor } from '@pano/utils/color'; import { DBItem } from '@pano/utils/db'; import { registerGObjectClass } from '@pano/utils/gjs'; import { getImagesPath } from '@pano/utils/shell'; @@ -22,6 +23,13 @@ export class ImagePanoItem extends PanoItem { this.connect('activated', this.setClipboardContent.bind(this)); this.setStyle(); + this.imageItemSettings.connect('changed', this.setStyle.bind(this)); + + // Settings for controls + this.settings.connect('changed::is-in-incognito', this.setStyle.bind(this)); + this.settings.connect('changed::incognito-window-background-color', this.setStyle.bind(this)); + this.settings.connect('changed::window-background-color', this.setStyle.bind(this)); + this.settings.connect('changed::enable-headers', this.setStyle.bind(this)); } private setStyle() { @@ -34,7 +42,8 @@ export class ImagePanoItem extends PanoItem { imageFilePath = `file://${this.ext.path}/images/${NO_IMAGE_FOUND_FILE_NAME}`; } - this.header.style = `background-color: ${headerBgColor}; color: ${headerColor};`; + this.overlay.setControlsBackground(getItemBackgroundColor(this.settings, headerBgColor, null)); + this.header.set_style(`background-color: ${headerBgColor}; color: ${headerColor};`); this.body.set_style(`background-image: url(${imageFilePath}); background-size: cover;`); } diff --git a/src/components/linkPanoItem.ts b/src/components/linkPanoItem.ts index 7ac677e6..7c3c2a96 100644 --- a/src/components/linkPanoItem.ts +++ b/src/components/linkPanoItem.ts @@ -5,6 +5,7 @@ import type { ExtensionBase } from '@girs/gnome-shell/dist/extensions/sharedInte import St from '@girs/st-16'; import { PanoItem } from '@pano/components/panoItem'; import { ClipboardContent, ClipboardManager, ContentType } from '@pano/utils/clipboardManager'; +import { getItemBackgroundColor } from '@pano/utils/color'; import { DBItem } from '@pano/utils/db'; import { registerGObjectClass } from '@pano/utils/gjs'; import { getCachePath, gettext, openLinkInBrowser } from '@pano/utils/shell'; @@ -87,12 +88,24 @@ export class LinkPanoItem extends PanoItem { this.connect('activated', this.setClipboardContent.bind(this)); this.setCompactMode(); - this.settings.connect('changed::compact-mode', this.setCompactMode.bind(this)); + this.settings.connect('changed::compact-mode', () => { + this.setCompactMode(); + this.setStyle(); + }); this.settings.connect('changed::item-height', this.setCompactMode.bind(this)); this.setStyle(); this.linkItemSettings.connect('changed', this.setStyle.bind(this)); - const openLinkIcon = new St.Icon({ iconName: 'web-browser-symbolic', styleClass: 'pano-item-action-button-icon' }); + // Settings for controls + this.settings.connect('changed::is-in-incognito', this.setStyle.bind(this)); + this.settings.connect('changed::incognito-window-background-color', this.setStyle.bind(this)); + this.settings.connect('changed::window-background-color', this.setStyle.bind(this)); + this.settings.connect('changed::enable-headers', this.setStyle.bind(this)); + + const openLinkIcon = new St.Icon({ + iconName: 'web-browser-symbolic', + styleClass: 'pano-item-action-button-icon', + }); const openLinkButton = new St.Button({ styleClass: 'pano-item-action-button pano-item-open-link-button', @@ -131,6 +144,7 @@ export class LinkPanoItem extends PanoItem { } private setStyle() { + const compactMode = this.settings.get_boolean('compact-mode'); const headerBgColor = this.linkItemSettings.get_string('header-bg-color'); const headerColor = this.linkItemSettings.get_string('header-color'); const metadataBgColor = this.linkItemSettings.get_string('metadata-bg-color'); @@ -144,6 +158,9 @@ export class LinkPanoItem extends PanoItem { const metadataDescriptionFontSize = this.linkItemSettings.get_int('metadata-description-font-size'); const metadataLinkFontSize = this.linkItemSettings.get_int('metadata-link-font-size'); + this.overlay.setControlsBackground( + getItemBackgroundColor(this.settings, headerBgColor, compactMode ? metadataBgColor : null), + ); this.header.set_style(`background-color: ${headerBgColor}; color: ${headerColor};`); this.container.set_style(`background-color: ${metadataBgColor};`); this.titleLabel.set_style( diff --git a/src/components/panoItemOverlay.ts b/src/components/panoItemOverlay.ts index 51dbec05..1e95bada 100644 --- a/src/components/panoItemOverlay.ts +++ b/src/components/panoItemOverlay.ts @@ -1,6 +1,7 @@ import Clutter from '@girs/clutter-16'; import GObject from '@girs/gobject-2.0'; import St from '@girs/st-16'; +import { isDark } from '@pano/utils/color'; import { registerGObjectClass, SignalsDefinition } from '@pano/utils/gjs'; export type PanoItemOverlaySignalType = 'on-remove' | 'on-favorite'; @@ -70,6 +71,16 @@ export class PanoItemOverlay extends St.BoxLayout { this.add_child(this.actionContainer); } + setControlsBackground(color: string): void { + this.actionContainer.set_style(`background-color: ${color}`); + const buttonColor = isDark(color) ? 'rgba(255, 255, 255, 0.15)' : 'rgba(0, 0, 0, 0.15)'; + for (const child of this.actionContainer.get_children()) { + if (child instanceof St.Button) { + child.set_style(`background-color: ${buttonColor}`); + } + } + } + setVisibility(isVisible: boolean): void { this.actionContainer.visible = isVisible; } diff --git a/src/components/textPanoItem.ts b/src/components/textPanoItem.ts index 21335dc0..7df27597 100644 --- a/src/components/textPanoItem.ts +++ b/src/components/textPanoItem.ts @@ -4,6 +4,7 @@ import Pango from '@girs/pango-1.0'; import St from '@girs/st-16'; import { PanoItem } from '@pano/components/panoItem'; import { ClipboardContent, ClipboardManager, ContentType } from '@pano/utils/clipboardManager'; +import { getItemBackgroundColor } from '@pano/utils/color'; import { DBItem } from '@pano/utils/db'; import { registerGObjectClass } from '@pano/utils/gjs'; @@ -29,6 +30,12 @@ export class TextPanoItem extends PanoItem { this.connect('activated', this.setClipboardContent.bind(this)); this.setStyle(); this.textItemSettings.connect('changed', this.setStyle.bind(this)); + + // Settings for controls + this.settings.connect('changed::is-in-incognito', this.setStyle.bind(this)); + this.settings.connect('changed::incognito-window-background-color', this.setStyle.bind(this)); + this.settings.connect('changed::window-background-color', this.setStyle.bind(this)); + this.settings.connect('changed::enable-headers', this.setStyle.bind(this)); } private setStyle() { @@ -40,6 +47,9 @@ export class TextPanoItem extends PanoItem { const bodyFontSize = this.textItemSettings.get_int('body-font-size'); const characterLength = this.textItemSettings.get_int('char-length'); + // Set overlay styles + this.overlay.setControlsBackground(getItemBackgroundColor(this.settings, headerBgColor, bodyBgColor)); + // Set header styles this.header.set_style(`background-color: ${headerBgColor}; color: ${headerColor};`); diff --git a/src/styles/stylesheet.css b/src/styles/stylesheet.css index afa2e312..d15c6be0 100644 --- a/src/styles/stylesheet.css +++ b/src/styles/stylesheet.css @@ -97,7 +97,6 @@ width: 20px; height: 20px; border-radius: 999px; - background-color: rgba(255, 255, 255, 0.15); color: white; } @@ -106,17 +105,12 @@ } .pano-item-action-button-icon { - margin: 4px; -} - -.pano-item-action-button-remove-icon { - width: 14px; - height: 14px; - margin: 4px; + padding: 4px; + border-radius: 999px; } -.pano-item-open-link-button:hover, -.pano-item-open-link-button:active { +.pano-item-open-link-button:hover .pano-item-action-button-icon, +.pano-item-open-link-button:active .pano-item-action-button-icon { background-color: #3584e4; } @@ -124,13 +118,13 @@ color: #f6d32d; } -.pano-item-favorite-button:hover { +.pano-item-favorite-button:hover .pano-item-action-button-icon { background-color: #f6d32d; color: #454545; } -.pano-item-remove-button:hover, -.pano-item-remove-button:active { +.pano-item-remove-button:hover .pano-item-action-button-icon, +.pano-item-remove-button:active .pano-item-action-button-icon { background-color: #c01c28; } diff --git a/src/utils/color.ts b/src/utils/color.ts new file mode 100644 index 00000000..6e522e49 --- /dev/null +++ b/src/utils/color.ts @@ -0,0 +1,40 @@ +import Gio from '@girs/gio-2.0'; +import colorString from 'color-string'; + +// Calculate luminance and determine whether the color is dark or light +export function isDark(color: string): boolean { + const [r, g, b, _] = colorString.get.rgb(color) ?? [0, 0, 0, 0]; + + function calculateChannel(c: number) { + c /= 255.0; + return c <= 0.04045 ? c / 12.92 : Math.pow((c + 0.055) / 1.055, 2.4); + } + + const L = 0.2126 * calculateChannel(r) + 0.7152 * calculateChannel(g) + 0.0722 * calculateChannel(b); + return L < 0.179; +} + +export function mixColor(color1: string, color2: string): string { + const [r1, g1, b1, _] = colorString.get.rgb(color1); + const [r2, g2, b2, a] = colorString.get.rgb(color2); + + const r = r1 * (1 - a) + r2 * a; + const g = g1 * (1 - a) + g2 * a; + const b = b1 * (1 - a) + b2 * a; + + return colorString.to.rgb(r, g, b); +} + +export function getItemBackgroundColor(settings: Gio.Settings, headerColor: string, bodyColor: string | null): string { + const windowColor = settings.get_boolean('is-in-incognito') + ? settings.get_string('incognito-window-background-color') + : settings.get_string('window-background-color'); + + if (settings.get_boolean('enable-headers')) { + return mixColor(windowColor, headerColor); + } else if (bodyColor === null) { + return windowColor; + } else { + return mixColor(windowColor, bodyColor); + } +} From 944ee861275900b1c06a5be5f93b96673d3393af Mon Sep 17 00:00:00 2001 From: boerdereinar Date: Fri, 10 May 2024 20:56:03 +0200 Subject: [PATCH 24/45] Add compact header style --- resources/po/ar.po | 78 +++++++++-------- resources/po/bg.po | 78 +++++++++-------- resources/po/cs.po | 78 +++++++++-------- resources/po/da.po | 78 +++++++++-------- resources/po/de.po | 78 +++++++++-------- resources/po/el.po | 78 +++++++++-------- resources/po/en.po | 78 +++++++++-------- resources/po/es.po | 78 +++++++++-------- resources/po/et.po | 78 +++++++++-------- resources/po/fi.po | 78 +++++++++-------- resources/po/fr.po | 78 +++++++++-------- resources/po/he.po | 78 +++++++++-------- resources/po/hr.po | 78 +++++++++-------- resources/po/hu.po | 78 +++++++++-------- resources/po/is.po | 78 +++++++++-------- resources/po/it.po | 78 +++++++++-------- resources/po/ja.po | 78 +++++++++-------- resources/po/ko.po | 78 +++++++++-------- resources/po/nl.po | 78 +++++++++-------- resources/po/no.po | 78 +++++++++-------- resources/po/oc.po | 78 +++++++++-------- resources/po/pano@elhan.io.pot | 84 +++++++++++-------- resources/po/pl.po | 78 +++++++++-------- resources/po/pt.po | 78 +++++++++-------- resources/po/pt_BR.po | 78 +++++++++-------- resources/po/ro.po | 78 +++++++++-------- resources/po/ru.po | 78 +++++++++-------- resources/po/sk.po | 78 +++++++++-------- resources/po/sv.po | 78 +++++++++-------- resources/po/tr.po | 78 +++++++++-------- resources/po/uk.po | 78 +++++++++-------- resources/po/vi.po | 78 +++++++++-------- resources/po/zh_CN.po | 78 +++++++++-------- resources/po/zh_TW.po | 78 +++++++++-------- ...rg.gnome.shell.extensions.pano.gschema.xml | 9 +- src/components/codePanoItem.ts | 2 +- src/components/colorPanoItem.ts | 2 +- src/components/emojiPanoItem.ts | 2 +- src/components/filePanoItem.ts | 13 ++- src/components/imagePanoItem.ts | 2 +- src/components/linkPanoItem.ts | 2 +- src/components/panoItem.ts | 8 +- src/components/panoItemHeader.ts | 29 +++++-- src/components/textPanoItem.ts | 2 +- src/containers/panoWindow.ts | 5 +- src/prefs/customization/commonStyleGroup.ts | 9 +- src/styles/stylesheet.css | 4 +- src/utils/color.ts | 3 +- src/utils/ui.ts | 19 +++++ 49 files changed, 1605 insertions(+), 1164 deletions(-) diff --git a/resources/po/ar.po b/resources/po/ar.po index 0500d94b..dbb0a72f 100644 --- a/resources/po/ar.po +++ b/resources/po/ar.po @@ -31,11 +31,11 @@ msgstr "الوضع المخفي" msgid "Settings" msgstr "الإعدادات" -#: src/components/filePanoItem.ts:202 +#: src/components/filePanoItem.ts:203 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:40 +#: src/components/linkPanoItem.ts:41 msgid "No Description" msgstr "" @@ -175,127 +175,139 @@ msgid "You can change the item height" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:43 -msgid "Enable Headers" +msgid "Header Style" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:44 -msgid "Controls the visibility of the clipboard item headers" +msgid "Controls the style of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 -msgid "Compact Mode" +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Compact" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Hidden" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Visible" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:53 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:54 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:62 +#: src/prefs/customization/commonStyleGroup.ts:63 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Pointer" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:72 msgid "Window Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "You can change the height of the window if the position is \"Pointer\"" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:85 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:94 +#: src/prefs/customization/commonStyleGroup.ts:95 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:102 +#: src/prefs/customization/commonStyleGroup.ts:103 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:110 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:123 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:124 +#: src/prefs/customization/commonStyleGroup.ts:125 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:131 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:132 +#: src/prefs/customization/commonStyleGroup.ts:133 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:139 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:140 +#: src/prefs/customization/commonStyleGroup.ts:141 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/bg.po b/resources/po/bg.po index 93dc2cd0..6e46ca9e 100644 --- a/resources/po/bg.po +++ b/resources/po/bg.po @@ -31,11 +31,11 @@ msgstr "Режим \"инкогнито\"" msgid "Settings" msgstr "Настройки" -#: src/components/filePanoItem.ts:202 +#: src/components/filePanoItem.ts:203 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:40 +#: src/components/linkPanoItem.ts:41 msgid "No Description" msgstr "" @@ -175,127 +175,139 @@ msgid "You can change the item height" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:43 -msgid "Enable Headers" +msgid "Header Style" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:44 -msgid "Controls the visibility of the clipboard item headers" +msgid "Controls the style of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 -msgid "Compact Mode" +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Compact" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Hidden" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Visible" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:53 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:54 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:62 +#: src/prefs/customization/commonStyleGroup.ts:63 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Pointer" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:72 msgid "Window Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "You can change the height of the window if the position is \"Pointer\"" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:85 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:94 +#: src/prefs/customization/commonStyleGroup.ts:95 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:102 +#: src/prefs/customization/commonStyleGroup.ts:103 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:110 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:123 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:124 +#: src/prefs/customization/commonStyleGroup.ts:125 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:131 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:132 +#: src/prefs/customization/commonStyleGroup.ts:133 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:139 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:140 +#: src/prefs/customization/commonStyleGroup.ts:141 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/cs.po b/resources/po/cs.po index c072f36e..75d42c2c 100644 --- a/resources/po/cs.po +++ b/resources/po/cs.po @@ -31,11 +31,11 @@ msgstr "Anonymní režim" msgid "Settings" msgstr "Nastavení" -#: src/components/filePanoItem.ts:202 +#: src/components/filePanoItem.ts:203 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:40 +#: src/components/linkPanoItem.ts:41 msgid "No Description" msgstr "Bez popisu" @@ -175,127 +175,139 @@ msgid "You can change the item height" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:43 -msgid "Enable Headers" +msgid "Header Style" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:44 -msgid "Controls the visibility of the clipboard item headers" +msgid "Controls the style of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 -msgid "Compact Mode" +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Compact" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Hidden" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Visible" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:53 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:54 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "Window Position" msgstr "Poloha okna" -#: src/prefs/customization/commonStyleGroup.ts:62 +#: src/prefs/customization/commonStyleGroup.ts:63 msgid "You can change position of the Pano" msgstr "Můžete změnit pozici Pano" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Bottom" msgstr "Dole" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Left" msgstr "Vlevo" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Pointer" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Right" msgstr "Vpravo" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Top" msgstr "Nahoře" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:72 msgid "Window Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "You can change the height of the window if the position is \"Pointer\"" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:85 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Window Background Color" msgstr "Barva pozadí okna" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the window background color" msgstr "Můžete změnit barvu pozadí okna" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "Incognito Window Background Color" msgstr "Barva pozadí anonymního okna" -#: src/prefs/customization/commonStyleGroup.ts:94 +#: src/prefs/customization/commonStyleGroup.ts:95 msgid "You can change the incognito window background color" msgstr "Můžete změnit barvu pozadí anonymního okna" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:102 +#: src/prefs/customization/commonStyleGroup.ts:103 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "Search Bar Font" msgstr "Písmo vyhledávací lišty" -#: src/prefs/customization/commonStyleGroup.ts:110 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "You can change the font of the search bar" msgstr "Můžete změnit písmo vyhledávání" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "Item Title Font" msgstr "Písmo názvu položky" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "Můžete změnit písmo nadpisu" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "Item Date Font" msgstr "Písmo položky Datum" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the font of the date" msgstr "Můžete změnit písmo data" -#: src/prefs/customization/commonStyleGroup.ts:123 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "Active Item Border Color" msgstr "Barva ohraničení aktivní položky" -#: src/prefs/customization/commonStyleGroup.ts:124 +#: src/prefs/customization/commonStyleGroup.ts:125 msgid "You can change the active item border color" msgstr "Můžete změnit barvu okraje aktivní položky" -#: src/prefs/customization/commonStyleGroup.ts:131 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "Hovered Item Border Color" msgstr "Barva ohraničení při najetí na položku" -#: src/prefs/customization/commonStyleGroup.ts:132 +#: src/prefs/customization/commonStyleGroup.ts:133 msgid "You can change the hovered item border color" msgstr "Můžete změnit barvu ohraničení při najetí na položku" -#: src/prefs/customization/commonStyleGroup.ts:139 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:140 +#: src/prefs/customization/commonStyleGroup.ts:141 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/da.po b/resources/po/da.po index a3e796f8..bf520173 100644 --- a/resources/po/da.po +++ b/resources/po/da.po @@ -31,11 +31,11 @@ msgstr "Inkognitotilstand" msgid "Settings" msgstr "Indstillinger" -#: src/components/filePanoItem.ts:202 +#: src/components/filePanoItem.ts:203 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:40 +#: src/components/linkPanoItem.ts:41 msgid "No Description" msgstr "" @@ -175,127 +175,139 @@ msgid "You can change the item height" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:43 -msgid "Enable Headers" +msgid "Header Style" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:44 -msgid "Controls the visibility of the clipboard item headers" +msgid "Controls the style of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 -msgid "Compact Mode" +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Compact" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Hidden" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Visible" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:53 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:54 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:62 +#: src/prefs/customization/commonStyleGroup.ts:63 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Pointer" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:72 msgid "Window Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "You can change the height of the window if the position is \"Pointer\"" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:85 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:94 +#: src/prefs/customization/commonStyleGroup.ts:95 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:102 +#: src/prefs/customization/commonStyleGroup.ts:103 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:110 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:123 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:124 +#: src/prefs/customization/commonStyleGroup.ts:125 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:131 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:132 +#: src/prefs/customization/commonStyleGroup.ts:133 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:139 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:140 +#: src/prefs/customization/commonStyleGroup.ts:141 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/de.po b/resources/po/de.po index f04fd241..23d73d82 100644 --- a/resources/po/de.po +++ b/resources/po/de.po @@ -31,11 +31,11 @@ msgstr "Inkognito-Modus" msgid "Settings" msgstr "Einstellungen" -#: src/components/filePanoItem.ts:202 +#: src/components/filePanoItem.ts:203 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:40 +#: src/components/linkPanoItem.ts:41 msgid "No Description" msgstr "Keine Beschreibung" @@ -175,127 +175,139 @@ msgid "You can change the item height" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:43 -msgid "Enable Headers" +msgid "Header Style" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:44 -msgid "Controls the visibility of the clipboard item headers" +msgid "Controls the style of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 -msgid "Compact Mode" +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Compact" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Hidden" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Visible" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:53 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:54 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "Window Position" msgstr "Fensterposition" -#: src/prefs/customization/commonStyleGroup.ts:62 +#: src/prefs/customization/commonStyleGroup.ts:63 msgid "You can change position of the Pano" msgstr "Sie können die Position von Pano ändern" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Bottom" msgstr "Unten" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Left" msgstr "Links" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Pointer" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Right" msgstr "Rechts" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Top" msgstr "Oben" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:72 msgid "Window Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "You can change the height of the window if the position is \"Pointer\"" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:85 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Window Background Color" msgstr "Hintergrundfarbe des Fensters" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the window background color" msgstr "Sie können die Hintergrundfarbe des Fensters ändern" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "Incognito Window Background Color" msgstr "Hintergrundfarbe des Inkognito-Fensters" -#: src/prefs/customization/commonStyleGroup.ts:94 +#: src/prefs/customization/commonStyleGroup.ts:95 msgid "You can change the incognito window background color" msgstr "Sie können die Hintergrundfarbe des Inkognito-Fensters ändern" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:102 +#: src/prefs/customization/commonStyleGroup.ts:103 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "Search Bar Font" msgstr "Schriftart der Suchleiste" -#: src/prefs/customization/commonStyleGroup.ts:110 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "You can change the font of the search bar" msgstr "Sie können die Schriftart der Suchleiste ändern" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "Item Title Font" msgstr "Schriftart des Eintragtitels" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "Sie können die Schriftart des Objekttitels ändern" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "Item Date Font" msgstr "Schriftart des Eintragsdatums" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the font of the date" msgstr "Sie können die Schriftart des Datums ändern" -#: src/prefs/customization/commonStyleGroup.ts:123 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "Active Item Border Color" msgstr "Randfarbe des aktiven Eintrags" -#: src/prefs/customization/commonStyleGroup.ts:124 +#: src/prefs/customization/commonStyleGroup.ts:125 msgid "You can change the active item border color" msgstr "Sie können die Randfarbe des aktiven Eintrags ändern" -#: src/prefs/customization/commonStyleGroup.ts:131 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "Hovered Item Border Color" msgstr "Randfarbe des fokussierten Eintrags" -#: src/prefs/customization/commonStyleGroup.ts:132 +#: src/prefs/customization/commonStyleGroup.ts:133 msgid "You can change the hovered item border color" msgstr "Sie können die Randfarbe des fokussierten Eintrags ändern" -#: src/prefs/customization/commonStyleGroup.ts:139 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:140 +#: src/prefs/customization/commonStyleGroup.ts:141 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/el.po b/resources/po/el.po index c3f44326..928f263e 100644 --- a/resources/po/el.po +++ b/resources/po/el.po @@ -31,11 +31,11 @@ msgstr "Ανώνυμης" msgid "Settings" msgstr "Ρυθμίσεις" -#: src/components/filePanoItem.ts:202 +#: src/components/filePanoItem.ts:203 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:40 +#: src/components/linkPanoItem.ts:41 msgid "No Description" msgstr "" @@ -175,127 +175,139 @@ msgid "You can change the item height" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:43 -msgid "Enable Headers" +msgid "Header Style" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:44 -msgid "Controls the visibility of the clipboard item headers" +msgid "Controls the style of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 -msgid "Compact Mode" +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Compact" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Hidden" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Visible" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:53 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:54 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:62 +#: src/prefs/customization/commonStyleGroup.ts:63 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Pointer" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:72 msgid "Window Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "You can change the height of the window if the position is \"Pointer\"" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:85 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:94 +#: src/prefs/customization/commonStyleGroup.ts:95 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:102 +#: src/prefs/customization/commonStyleGroup.ts:103 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:110 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:123 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:124 +#: src/prefs/customization/commonStyleGroup.ts:125 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:131 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:132 +#: src/prefs/customization/commonStyleGroup.ts:133 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:139 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:140 +#: src/prefs/customization/commonStyleGroup.ts:141 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/en.po b/resources/po/en.po index 589c6845..9d6fad0a 100644 --- a/resources/po/en.po +++ b/resources/po/en.po @@ -31,11 +31,11 @@ msgstr "Incognito Mode" msgid "Settings" msgstr "Settings" -#: src/components/filePanoItem.ts:202 +#: src/components/filePanoItem.ts:203 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:40 +#: src/components/linkPanoItem.ts:41 msgid "No Description" msgstr "" @@ -175,127 +175,139 @@ msgid "You can change the item height" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:43 -msgid "Enable Headers" +msgid "Header Style" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:44 -msgid "Controls the visibility of the clipboard item headers" +msgid "Controls the style of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 -msgid "Compact Mode" +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Compact" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Hidden" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Visible" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:53 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:54 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:62 +#: src/prefs/customization/commonStyleGroup.ts:63 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Pointer" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:72 msgid "Window Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "You can change the height of the window if the position is \"Pointer\"" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:85 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:94 +#: src/prefs/customization/commonStyleGroup.ts:95 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:102 +#: src/prefs/customization/commonStyleGroup.ts:103 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:110 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:123 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:124 +#: src/prefs/customization/commonStyleGroup.ts:125 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:131 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:132 +#: src/prefs/customization/commonStyleGroup.ts:133 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:139 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:140 +#: src/prefs/customization/commonStyleGroup.ts:141 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/es.po b/resources/po/es.po index d32d28b0..23c04953 100644 --- a/resources/po/es.po +++ b/resources/po/es.po @@ -31,11 +31,11 @@ msgstr "Modo incógnito" msgid "Settings" msgstr "Configuración" -#: src/components/filePanoItem.ts:202 +#: src/components/filePanoItem.ts:203 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:40 +#: src/components/linkPanoItem.ts:41 msgid "No Description" msgstr "Sin descripción" @@ -175,127 +175,139 @@ msgid "You can change the item height" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:43 -msgid "Enable Headers" +msgid "Header Style" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:44 -msgid "Controls the visibility of the clipboard item headers" +msgid "Controls the style of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 -msgid "Compact Mode" +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Compact" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Hidden" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Visible" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:53 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:54 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "Window Position" msgstr "Posición de la ventana" -#: src/prefs/customization/commonStyleGroup.ts:62 +#: src/prefs/customization/commonStyleGroup.ts:63 msgid "You can change position of the Pano" msgstr "Elige la posición de la ventana de Pano" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Bottom" msgstr "Abajo" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Left" msgstr "A la izquierda" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Pointer" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Right" msgstr "A la derecha" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Top" msgstr "Arriba" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:72 msgid "Window Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "You can change the height of the window if the position is \"Pointer\"" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:85 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Window Background Color" msgstr "Color de fondo de la ventana" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the window background color" msgstr "Puedes cambiar el color de fondo de la ventana" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "Incognito Window Background Color" msgstr "Color de fondo de la ventana de incógnito" -#: src/prefs/customization/commonStyleGroup.ts:94 +#: src/prefs/customization/commonStyleGroup.ts:95 msgid "You can change the incognito window background color" msgstr "Puedes cambiar el color de fondo de la ventana cuando se ejecuta el modo incógnito" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:102 +#: src/prefs/customization/commonStyleGroup.ts:103 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "Search Bar Font" msgstr "Tipo de letra de la barra de búsqueda" -#: src/prefs/customization/commonStyleGroup.ts:110 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "You can change the font of the search bar" msgstr "Elige la tipografía de la barra de búsqueda" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "Item Title Font" msgstr "Tipo de letra de los títulos de las notas" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "Puedes cambiar la tipografía de los títulos de las notas" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "Item Date Font" msgstr "Tipo de letra de la fecha de las notas" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the font of the date" msgstr "Puedes cambiar la tipografía de la fecha" -#: src/prefs/customization/commonStyleGroup.ts:123 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "Active Item Border Color" msgstr "Color del borde de la nota activa" -#: src/prefs/customization/commonStyleGroup.ts:124 +#: src/prefs/customization/commonStyleGroup.ts:125 msgid "You can change the active item border color" msgstr "Elige el color del borde de la nota activa" -#: src/prefs/customization/commonStyleGroup.ts:131 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "Hovered Item Border Color" msgstr "Color del borde de la nota al pasar el ratón" -#: src/prefs/customization/commonStyleGroup.ts:132 +#: src/prefs/customization/commonStyleGroup.ts:133 msgid "You can change the hovered item border color" msgstr "Elige el color del borde de las notas al pasar el ratón por encima" -#: src/prefs/customization/commonStyleGroup.ts:139 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:140 +#: src/prefs/customization/commonStyleGroup.ts:141 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/et.po b/resources/po/et.po index ee0a5cbc..2f33b494 100644 --- a/resources/po/et.po +++ b/resources/po/et.po @@ -31,11 +31,11 @@ msgstr "Inkognito režiim" msgid "Settings" msgstr "Seaded" -#: src/components/filePanoItem.ts:202 +#: src/components/filePanoItem.ts:203 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:40 +#: src/components/linkPanoItem.ts:41 msgid "No Description" msgstr "" @@ -175,127 +175,139 @@ msgid "You can change the item height" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:43 -msgid "Enable Headers" +msgid "Header Style" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:44 -msgid "Controls the visibility of the clipboard item headers" +msgid "Controls the style of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 -msgid "Compact Mode" +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Compact" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Hidden" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Visible" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:53 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:54 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:62 +#: src/prefs/customization/commonStyleGroup.ts:63 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Pointer" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:72 msgid "Window Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "You can change the height of the window if the position is \"Pointer\"" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:85 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:94 +#: src/prefs/customization/commonStyleGroup.ts:95 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:102 +#: src/prefs/customization/commonStyleGroup.ts:103 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:110 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:123 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:124 +#: src/prefs/customization/commonStyleGroup.ts:125 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:131 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:132 +#: src/prefs/customization/commonStyleGroup.ts:133 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:139 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:140 +#: src/prefs/customization/commonStyleGroup.ts:141 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/fi.po b/resources/po/fi.po index f799ddb3..eeaa3c13 100644 --- a/resources/po/fi.po +++ b/resources/po/fi.po @@ -31,11 +31,11 @@ msgstr "Incognito-tila" msgid "Settings" msgstr "Asetukset" -#: src/components/filePanoItem.ts:202 +#: src/components/filePanoItem.ts:203 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:40 +#: src/components/linkPanoItem.ts:41 msgid "No Description" msgstr "" @@ -175,127 +175,139 @@ msgid "You can change the item height" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:43 -msgid "Enable Headers" +msgid "Header Style" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:44 -msgid "Controls the visibility of the clipboard item headers" +msgid "Controls the style of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 -msgid "Compact Mode" +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Compact" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Hidden" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Visible" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:53 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:54 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:62 +#: src/prefs/customization/commonStyleGroup.ts:63 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Pointer" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:72 msgid "Window Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "You can change the height of the window if the position is \"Pointer\"" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:85 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:94 +#: src/prefs/customization/commonStyleGroup.ts:95 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:102 +#: src/prefs/customization/commonStyleGroup.ts:103 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:110 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:123 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:124 +#: src/prefs/customization/commonStyleGroup.ts:125 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:131 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:132 +#: src/prefs/customization/commonStyleGroup.ts:133 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:139 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:140 +#: src/prefs/customization/commonStyleGroup.ts:141 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/fr.po b/resources/po/fr.po index 9ca492b8..52a4ec31 100644 --- a/resources/po/fr.po +++ b/resources/po/fr.po @@ -31,11 +31,11 @@ msgstr "Mode incognito" msgid "Settings" msgstr "Paramètres" -#: src/components/filePanoItem.ts:202 +#: src/components/filePanoItem.ts:203 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:40 +#: src/components/linkPanoItem.ts:41 msgid "No Description" msgstr "Aucune description" @@ -175,127 +175,139 @@ msgid "You can change the item height" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:43 -msgid "Enable Headers" +msgid "Header Style" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:44 -msgid "Controls the visibility of the clipboard item headers" +msgid "Controls the style of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 -msgid "Compact Mode" +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Compact" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Hidden" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Visible" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:53 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:54 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "Window Position" msgstr "Position de la fenêtre" -#: src/prefs/customization/commonStyleGroup.ts:62 +#: src/prefs/customization/commonStyleGroup.ts:63 msgid "You can change position of the Pano" msgstr "Vous pouvez modifier la position de Pano" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Bottom" msgstr "En bas" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Left" msgstr "À gauche" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Pointer" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Right" msgstr "À droite" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Top" msgstr "En haut" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:72 msgid "Window Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "You can change the height of the window if the position is \"Pointer\"" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:85 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Window Background Color" msgstr "Couleur d’arrière-plan de la fenêtre" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the window background color" msgstr "Vous pouvez modifier la couleur d’arrière-plan de la fenêtre" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "Incognito Window Background Color" msgstr "Couleur d’arrière-plan de la fenêtre incognito" -#: src/prefs/customization/commonStyleGroup.ts:94 +#: src/prefs/customization/commonStyleGroup.ts:95 msgid "You can change the incognito window background color" msgstr "Vous pouvez modifier la couleur d’arrière-plan de la fenêtre incognito" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:102 +#: src/prefs/customization/commonStyleGroup.ts:103 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "Search Bar Font" msgstr "Police de la barre de recherche" -#: src/prefs/customization/commonStyleGroup.ts:110 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "You can change the font of the search bar" msgstr "Vous pouvez modifier la police de la barre de recherche" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "Item Title Font" msgstr "Police du titre de l’élément" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "Vous pouvez modifier la police du titre" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "Item Date Font" msgstr "Police de la date de l’élément" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the font of the date" msgstr "Vous pouvez modifier la police de la date" -#: src/prefs/customization/commonStyleGroup.ts:123 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "Active Item Border Color" msgstr "Couleur de bordure de l’élément actif" -#: src/prefs/customization/commonStyleGroup.ts:124 +#: src/prefs/customization/commonStyleGroup.ts:125 msgid "You can change the active item border color" msgstr "Vous pouvez modifier la couleur de bordure de l’élément actif" -#: src/prefs/customization/commonStyleGroup.ts:131 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "Hovered Item Border Color" msgstr "Couleur de bordure d’un élément survolé" -#: src/prefs/customization/commonStyleGroup.ts:132 +#: src/prefs/customization/commonStyleGroup.ts:133 msgid "You can change the hovered item border color" msgstr "Vous pouvez modifier la couleur de bordure d’un élément survolé" -#: src/prefs/customization/commonStyleGroup.ts:139 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:140 +#: src/prefs/customization/commonStyleGroup.ts:141 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/he.po b/resources/po/he.po index 29fed7cd..ca71fe7f 100644 --- a/resources/po/he.po +++ b/resources/po/he.po @@ -31,11 +31,11 @@ msgstr "מצב גלישה בסתר" msgid "Settings" msgstr "הגדרות" -#: src/components/filePanoItem.ts:202 +#: src/components/filePanoItem.ts:203 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:40 +#: src/components/linkPanoItem.ts:41 msgid "No Description" msgstr "" @@ -175,127 +175,139 @@ msgid "You can change the item height" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:43 -msgid "Enable Headers" +msgid "Header Style" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:44 -msgid "Controls the visibility of the clipboard item headers" +msgid "Controls the style of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 -msgid "Compact Mode" +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Compact" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Hidden" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Visible" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:53 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:54 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:62 +#: src/prefs/customization/commonStyleGroup.ts:63 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Pointer" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:72 msgid "Window Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "You can change the height of the window if the position is \"Pointer\"" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:85 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:94 +#: src/prefs/customization/commonStyleGroup.ts:95 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:102 +#: src/prefs/customization/commonStyleGroup.ts:103 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:110 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:123 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:124 +#: src/prefs/customization/commonStyleGroup.ts:125 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:131 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:132 +#: src/prefs/customization/commonStyleGroup.ts:133 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:139 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:140 +#: src/prefs/customization/commonStyleGroup.ts:141 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/hr.po b/resources/po/hr.po index fc6dc0bd..2d465b38 100644 --- a/resources/po/hr.po +++ b/resources/po/hr.po @@ -31,11 +31,11 @@ msgstr "" msgid "Settings" msgstr "" -#: src/components/filePanoItem.ts:202 +#: src/components/filePanoItem.ts:203 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:40 +#: src/components/linkPanoItem.ts:41 msgid "No Description" msgstr "" @@ -175,127 +175,139 @@ msgid "You can change the item height" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:43 -msgid "Enable Headers" +msgid "Header Style" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:44 -msgid "Controls the visibility of the clipboard item headers" +msgid "Controls the style of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 -msgid "Compact Mode" +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Compact" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Hidden" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Visible" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:53 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:54 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:62 +#: src/prefs/customization/commonStyleGroup.ts:63 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Pointer" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:72 msgid "Window Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "You can change the height of the window if the position is \"Pointer\"" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:85 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:94 +#: src/prefs/customization/commonStyleGroup.ts:95 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:102 +#: src/prefs/customization/commonStyleGroup.ts:103 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:110 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:123 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:124 +#: src/prefs/customization/commonStyleGroup.ts:125 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:131 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:132 +#: src/prefs/customization/commonStyleGroup.ts:133 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:139 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:140 +#: src/prefs/customization/commonStyleGroup.ts:141 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/hu.po b/resources/po/hu.po index 97059ff0..7c0c5151 100644 --- a/resources/po/hu.po +++ b/resources/po/hu.po @@ -31,11 +31,11 @@ msgstr "Inkognitómód" msgid "Settings" msgstr "Beállítások" -#: src/components/filePanoItem.ts:202 +#: src/components/filePanoItem.ts:203 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:40 +#: src/components/linkPanoItem.ts:41 msgid "No Description" msgstr "" @@ -175,127 +175,139 @@ msgid "You can change the item height" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:43 -msgid "Enable Headers" +msgid "Header Style" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:44 -msgid "Controls the visibility of the clipboard item headers" +msgid "Controls the style of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 -msgid "Compact Mode" +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Compact" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Hidden" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Visible" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:53 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:54 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:62 +#: src/prefs/customization/commonStyleGroup.ts:63 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Pointer" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:72 msgid "Window Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "You can change the height of the window if the position is \"Pointer\"" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:85 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:94 +#: src/prefs/customization/commonStyleGroup.ts:95 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:102 +#: src/prefs/customization/commonStyleGroup.ts:103 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:110 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:123 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:124 +#: src/prefs/customization/commonStyleGroup.ts:125 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:131 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:132 +#: src/prefs/customization/commonStyleGroup.ts:133 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:139 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:140 +#: src/prefs/customization/commonStyleGroup.ts:141 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/is.po b/resources/po/is.po index 58698657..91e9b5af 100644 --- a/resources/po/is.po +++ b/resources/po/is.po @@ -31,11 +31,11 @@ msgstr "Huliðsstilling" msgid "Settings" msgstr "Stillingar" -#: src/components/filePanoItem.ts:202 +#: src/components/filePanoItem.ts:203 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:40 +#: src/components/linkPanoItem.ts:41 msgid "No Description" msgstr "" @@ -175,127 +175,139 @@ msgid "You can change the item height" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:43 -msgid "Enable Headers" +msgid "Header Style" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:44 -msgid "Controls the visibility of the clipboard item headers" +msgid "Controls the style of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 -msgid "Compact Mode" +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Compact" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Hidden" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Visible" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:53 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:54 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:62 +#: src/prefs/customization/commonStyleGroup.ts:63 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Pointer" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:72 msgid "Window Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "You can change the height of the window if the position is \"Pointer\"" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:85 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:94 +#: src/prefs/customization/commonStyleGroup.ts:95 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:102 +#: src/prefs/customization/commonStyleGroup.ts:103 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:110 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:123 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:124 +#: src/prefs/customization/commonStyleGroup.ts:125 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:131 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:132 +#: src/prefs/customization/commonStyleGroup.ts:133 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:139 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:140 +#: src/prefs/customization/commonStyleGroup.ts:141 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/it.po b/resources/po/it.po index 104cabe3..cb22a9ee 100644 --- a/resources/po/it.po +++ b/resources/po/it.po @@ -31,11 +31,11 @@ msgstr "Modalità di navigazione in incognito" msgid "Settings" msgstr "Impostazioni" -#: src/components/filePanoItem.ts:202 +#: src/components/filePanoItem.ts:203 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:40 +#: src/components/linkPanoItem.ts:41 msgid "No Description" msgstr "Nessuna descrizione" @@ -175,127 +175,139 @@ msgid "You can change the item height" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:43 -msgid "Enable Headers" +msgid "Header Style" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:44 -msgid "Controls the visibility of the clipboard item headers" +msgid "Controls the style of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 -msgid "Compact Mode" +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Compact" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Hidden" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Visible" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:53 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:54 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "Window Position" msgstr "Posizione della finestra" -#: src/prefs/customization/commonStyleGroup.ts:62 +#: src/prefs/customization/commonStyleGroup.ts:63 msgid "You can change position of the Pano" msgstr "Puoi cambiare la posizione di Pano" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Bottom" msgstr "In basso" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Left" msgstr "Sinistra" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Pointer" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Right" msgstr "Destra" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Top" msgstr "In alto" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:72 msgid "Window Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "You can change the height of the window if the position is \"Pointer\"" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:85 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Window Background Color" msgstr "Colore di sfondo della finestra" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the window background color" msgstr "Puoi cambiare il colore di sfondo della finestra" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "Incognito Window Background Color" msgstr "Colore di sfondo della finestra di navigazione in incognito" -#: src/prefs/customization/commonStyleGroup.ts:94 +#: src/prefs/customization/commonStyleGroup.ts:95 msgid "You can change the incognito window background color" msgstr "Puoi cambiare il colore di sfondo della finestra di navigazione in incognito" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:102 +#: src/prefs/customization/commonStyleGroup.ts:103 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "Search Bar Font" msgstr "Carattere della barra di ricerca" -#: src/prefs/customization/commonStyleGroup.ts:110 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "You can change the font of the search bar" msgstr "Puoi cambiare il carattere della barra di ricerca" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "Item Title Font" msgstr "Font del titolo dell'elemento" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "Puoi cambiare il font del titolo" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "Item Date Font" msgstr "Data font elemento" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the font of the date" msgstr "Puoi cambiare il font della data" -#: src/prefs/customization/commonStyleGroup.ts:123 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "Active Item Border Color" msgstr "Colore del bordo dell'elemento attivo" -#: src/prefs/customization/commonStyleGroup.ts:124 +#: src/prefs/customization/commonStyleGroup.ts:125 msgid "You can change the active item border color" msgstr "È possibile modificare il colore del bordo dell'elemento attivo" -#: src/prefs/customization/commonStyleGroup.ts:131 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "Hovered Item Border Color" msgstr "Colore del bordo dell'elemento al passaggio del mouse" -#: src/prefs/customization/commonStyleGroup.ts:132 +#: src/prefs/customization/commonStyleGroup.ts:133 msgid "You can change the hovered item border color" msgstr "Puoi cambiare il colore del bordo dell'elemento al passaggio del mouse" -#: src/prefs/customization/commonStyleGroup.ts:139 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:140 +#: src/prefs/customization/commonStyleGroup.ts:141 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/ja.po b/resources/po/ja.po index 205fcff4..86f830ce 100644 --- a/resources/po/ja.po +++ b/resources/po/ja.po @@ -31,11 +31,11 @@ msgstr "シークレットモード" msgid "Settings" msgstr "設定" -#: src/components/filePanoItem.ts:202 +#: src/components/filePanoItem.ts:203 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:40 +#: src/components/linkPanoItem.ts:41 msgid "No Description" msgstr "" @@ -175,127 +175,139 @@ msgid "You can change the item height" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:43 -msgid "Enable Headers" +msgid "Header Style" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:44 -msgid "Controls the visibility of the clipboard item headers" +msgid "Controls the style of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 -msgid "Compact Mode" +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Compact" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Hidden" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Visible" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:53 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:54 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:62 +#: src/prefs/customization/commonStyleGroup.ts:63 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Pointer" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:72 msgid "Window Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "You can change the height of the window if the position is \"Pointer\"" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:85 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:94 +#: src/prefs/customization/commonStyleGroup.ts:95 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:102 +#: src/prefs/customization/commonStyleGroup.ts:103 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:110 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:123 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:124 +#: src/prefs/customization/commonStyleGroup.ts:125 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:131 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:132 +#: src/prefs/customization/commonStyleGroup.ts:133 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:139 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:140 +#: src/prefs/customization/commonStyleGroup.ts:141 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/ko.po b/resources/po/ko.po index 2bf45a9a..c597eb67 100644 --- a/resources/po/ko.po +++ b/resources/po/ko.po @@ -31,11 +31,11 @@ msgstr "시크릿 모드" msgid "Settings" msgstr "설정" -#: src/components/filePanoItem.ts:202 +#: src/components/filePanoItem.ts:203 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:40 +#: src/components/linkPanoItem.ts:41 msgid "No Description" msgstr "설명 없음" @@ -175,127 +175,139 @@ msgid "You can change the item height" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:43 -msgid "Enable Headers" +msgid "Header Style" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:44 -msgid "Controls the visibility of the clipboard item headers" +msgid "Controls the style of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 -msgid "Compact Mode" +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Compact" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Hidden" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Visible" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:53 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:54 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:62 +#: src/prefs/customization/commonStyleGroup.ts:63 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Pointer" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:72 msgid "Window Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "You can change the height of the window if the position is \"Pointer\"" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:85 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:94 +#: src/prefs/customization/commonStyleGroup.ts:95 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:102 +#: src/prefs/customization/commonStyleGroup.ts:103 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:110 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:123 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:124 +#: src/prefs/customization/commonStyleGroup.ts:125 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:131 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:132 +#: src/prefs/customization/commonStyleGroup.ts:133 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:139 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:140 +#: src/prefs/customization/commonStyleGroup.ts:141 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/nl.po b/resources/po/nl.po index 3638ed5b..94075b40 100644 --- a/resources/po/nl.po +++ b/resources/po/nl.po @@ -31,11 +31,11 @@ msgstr "Incognitomodus" msgid "Settings" msgstr "Voorkeuren" -#: src/components/filePanoItem.ts:202 +#: src/components/filePanoItem.ts:203 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:40 +#: src/components/linkPanoItem.ts:41 msgid "No Description" msgstr "" @@ -175,127 +175,139 @@ msgid "You can change the item height" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:43 -msgid "Enable Headers" +msgid "Header Style" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:44 -msgid "Controls the visibility of the clipboard item headers" +msgid "Controls the style of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 -msgid "Compact Mode" +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Compact" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Hidden" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Visible" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:53 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:54 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:62 +#: src/prefs/customization/commonStyleGroup.ts:63 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Pointer" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:72 msgid "Window Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "You can change the height of the window if the position is \"Pointer\"" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:85 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:94 +#: src/prefs/customization/commonStyleGroup.ts:95 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:102 +#: src/prefs/customization/commonStyleGroup.ts:103 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:110 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:123 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:124 +#: src/prefs/customization/commonStyleGroup.ts:125 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:131 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:132 +#: src/prefs/customization/commonStyleGroup.ts:133 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:139 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:140 +#: src/prefs/customization/commonStyleGroup.ts:141 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/no.po b/resources/po/no.po index 58ac3932..089fb7c3 100644 --- a/resources/po/no.po +++ b/resources/po/no.po @@ -31,11 +31,11 @@ msgstr "Inkognitomodus" msgid "Settings" msgstr "Innstillinger" -#: src/components/filePanoItem.ts:202 +#: src/components/filePanoItem.ts:203 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:40 +#: src/components/linkPanoItem.ts:41 msgid "No Description" msgstr "" @@ -175,127 +175,139 @@ msgid "You can change the item height" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:43 -msgid "Enable Headers" +msgid "Header Style" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:44 -msgid "Controls the visibility of the clipboard item headers" +msgid "Controls the style of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 -msgid "Compact Mode" +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Compact" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Hidden" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Visible" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:53 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:54 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:62 +#: src/prefs/customization/commonStyleGroup.ts:63 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Pointer" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:72 msgid "Window Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "You can change the height of the window if the position is \"Pointer\"" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:85 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:94 +#: src/prefs/customization/commonStyleGroup.ts:95 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:102 +#: src/prefs/customization/commonStyleGroup.ts:103 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:110 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:123 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:124 +#: src/prefs/customization/commonStyleGroup.ts:125 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:131 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:132 +#: src/prefs/customization/commonStyleGroup.ts:133 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:139 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:140 +#: src/prefs/customization/commonStyleGroup.ts:141 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/oc.po b/resources/po/oc.po index 39f00a31..90ccaf51 100644 --- a/resources/po/oc.po +++ b/resources/po/oc.po @@ -31,11 +31,11 @@ msgstr "Mòde incognito" msgid "Settings" msgstr "Paramètres" -#: src/components/filePanoItem.ts:202 +#: src/components/filePanoItem.ts:203 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:40 +#: src/components/linkPanoItem.ts:41 msgid "No Description" msgstr "" @@ -175,127 +175,139 @@ msgid "You can change the item height" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:43 -msgid "Enable Headers" +msgid "Header Style" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:44 -msgid "Controls the visibility of the clipboard item headers" +msgid "Controls the style of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 -msgid "Compact Mode" +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Compact" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Hidden" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Visible" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:53 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:54 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:62 +#: src/prefs/customization/commonStyleGroup.ts:63 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Pointer" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:72 msgid "Window Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "You can change the height of the window if the position is \"Pointer\"" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:85 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:94 +#: src/prefs/customization/commonStyleGroup.ts:95 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:102 +#: src/prefs/customization/commonStyleGroup.ts:103 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:110 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:123 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:124 +#: src/prefs/customization/commonStyleGroup.ts:125 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:131 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:132 +#: src/prefs/customization/commonStyleGroup.ts:133 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:139 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:140 +#: src/prefs/customization/commonStyleGroup.ts:141 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/pano@elhan.io.pot b/resources/po/pano@elhan.io.pot index 8b70e010..050fbd05 100644 --- a/resources/po/pano@elhan.io.pot +++ b/resources/po/pano@elhan.io.pot @@ -2,7 +2,7 @@ msgid "" msgstr "" "Content-Type: text/plain; charset=UTF-8\n" -#: src/prefs/customization/commonStyleGroup.ts:123 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "Active Item Border Color" msgstr "" @@ -60,7 +60,7 @@ msgstr "" msgid "Body Text Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Bottom" msgstr "" @@ -152,16 +152,20 @@ msgstr "" msgid "Common" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 -msgid "Compact Mode" +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Compact" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:53 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:54 msgid "Controls the compactness of the clipboard item." msgstr "" #: src/prefs/customization/commonStyleGroup.ts:44 -msgid "Controls the visibility of the clipboard item headers" +msgid "Controls the style of the clipboard item headers" msgstr "" #: src/prefs/customization/index.ts:13 @@ -196,10 +200,6 @@ msgstr "" msgid "Emoji Size" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:43 -msgid "Enable Headers" -msgstr "" - #: src/prefs/general/exclusionGroup.ts:24 msgid "Excluded Apps" msgstr "" @@ -258,6 +258,10 @@ msgstr "" msgid "Header Background Color" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:43 +msgid "Header Style" +msgstr "" + #: src/prefs/customization/codeItemStyle.ts:32 #: src/prefs/customization/colorItemStyle.ts:32 #: src/prefs/customization/emojiItemStyle.ts:32 @@ -268,11 +272,15 @@ msgstr "" msgid "Header Text Color" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Hidden" +msgstr "" + #: src/prefs/general/historyLength.ts:15 msgid "History Length" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:131 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "Hovered Item Border Color" msgstr "" @@ -300,11 +308,11 @@ msgstr "" msgid "Incognito Mode Shortcut" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "Item Date Font" msgstr "" @@ -316,7 +324,7 @@ msgstr "" msgid "Item Style" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "Item Title Font" msgstr "" @@ -324,7 +332,7 @@ msgstr "" msgid "Item Width" msgstr "" -#: src/components/filePanoItem.ts:202 +#: src/components/filePanoItem.ts:203 msgid "items" msgstr "" @@ -336,7 +344,7 @@ msgstr "" msgid "Keep search entry when Pano hides" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Left" msgstr "" @@ -401,7 +409,7 @@ msgstr "" msgid "New shortcut" msgstr "" -#: src/components/linkPanoItem.ts:40 +#: src/components/linkPanoItem.ts:41 msgid "No Description" msgstr "" @@ -425,7 +433,7 @@ msgstr "" msgid "Play an Audio on Copy" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Pointer" msgstr "" @@ -433,7 +441,7 @@ msgstr "" msgid "Remove on Middle Click" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Right" msgstr "" @@ -441,11 +449,11 @@ msgstr "" msgid "Right Margin" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "Search Bar Font" msgstr "" @@ -466,7 +474,7 @@ msgstr "" msgid "Settings" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:139 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "Show Controls on Hover" msgstr "" @@ -522,7 +530,7 @@ msgstr "" msgid "Title Text Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Top" msgstr "" @@ -534,6 +542,10 @@ msgstr "" msgid "Type to search, Tab to cycle" msgstr "" +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Visible" +msgstr "" + #: src/prefs/general/watchExclusions.ts:15 msgid "Watch Exclusions" msgstr "" @@ -546,7 +558,7 @@ msgstr "" msgid "When enabled, Pano will not track clipboard from excluded apps" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:140 +#: src/prefs/customization/commonStyleGroup.ts:141 msgid "When enabled, the controls will only show on hover" msgstr "" @@ -562,7 +574,7 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:85 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Window Background Color" msgstr "" @@ -570,19 +582,19 @@ msgstr "" msgid "Window class name" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:72 msgid "Window Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:62 +#: src/prefs/customization/commonStyleGroup.ts:63 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:124 +#: src/prefs/customization/commonStyleGroup.ts:125 msgid "You can change the active item border color" msgstr "" @@ -611,7 +623,7 @@ msgstr "" msgid "You can change the background color of the metadata" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:102 +#: src/prefs/customization/commonStyleGroup.ts:103 msgid "You can change the background color of the search bar" msgstr "" @@ -645,7 +657,7 @@ msgstr "" msgid "You can change the font of the body" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the font of the date" msgstr "" @@ -669,7 +681,7 @@ msgstr "" msgid "You can change the font of the metadata title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:110 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "You can change the font of the search bar" msgstr "" @@ -677,16 +689,16 @@ msgstr "" msgid "You can change the font of the text preview" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "You can change the height of the window if the position is \"Pointer\"" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:132 +#: src/prefs/customization/commonStyleGroup.ts:133 msgid "You can change the hovered item border color" msgstr "" @@ -694,7 +706,7 @@ msgstr "" msgid "You can change the icon pack" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:94 +#: src/prefs/customization/commonStyleGroup.ts:95 msgid "You can change the incognito window background color" msgstr "" @@ -752,7 +764,7 @@ msgstr "" msgid "You can change the top margin" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the window background color" msgstr "" diff --git a/resources/po/pl.po b/resources/po/pl.po index 36175b61..99fe3b7a 100644 --- a/resources/po/pl.po +++ b/resources/po/pl.po @@ -31,11 +31,11 @@ msgstr "Tryb Incognito" msgid "Settings" msgstr "Ustawienia" -#: src/components/filePanoItem.ts:202 +#: src/components/filePanoItem.ts:203 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:40 +#: src/components/linkPanoItem.ts:41 msgid "No Description" msgstr "" @@ -175,127 +175,139 @@ msgid "You can change the item height" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:43 -msgid "Enable Headers" +msgid "Header Style" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:44 -msgid "Controls the visibility of the clipboard item headers" +msgid "Controls the style of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 -msgid "Compact Mode" +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Compact" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Hidden" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Visible" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:53 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:54 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:62 +#: src/prefs/customization/commonStyleGroup.ts:63 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Pointer" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:72 msgid "Window Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "You can change the height of the window if the position is \"Pointer\"" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:85 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:94 +#: src/prefs/customization/commonStyleGroup.ts:95 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:102 +#: src/prefs/customization/commonStyleGroup.ts:103 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:110 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:123 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:124 +#: src/prefs/customization/commonStyleGroup.ts:125 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:131 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:132 +#: src/prefs/customization/commonStyleGroup.ts:133 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:139 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:140 +#: src/prefs/customization/commonStyleGroup.ts:141 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/pt.po b/resources/po/pt.po index 019fe36f..5012fb83 100644 --- a/resources/po/pt.po +++ b/resources/po/pt.po @@ -31,11 +31,11 @@ msgstr "Modo de navegação anónima" msgid "Settings" msgstr "Configurações" -#: src/components/filePanoItem.ts:202 +#: src/components/filePanoItem.ts:203 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:40 +#: src/components/linkPanoItem.ts:41 msgid "No Description" msgstr "" @@ -175,127 +175,139 @@ msgid "You can change the item height" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:43 -msgid "Enable Headers" +msgid "Header Style" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:44 -msgid "Controls the visibility of the clipboard item headers" +msgid "Controls the style of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 -msgid "Compact Mode" +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Compact" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Hidden" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Visible" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:53 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:54 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:62 +#: src/prefs/customization/commonStyleGroup.ts:63 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Pointer" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:72 msgid "Window Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "You can change the height of the window if the position is \"Pointer\"" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:85 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:94 +#: src/prefs/customization/commonStyleGroup.ts:95 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:102 +#: src/prefs/customization/commonStyleGroup.ts:103 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:110 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:123 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:124 +#: src/prefs/customization/commonStyleGroup.ts:125 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:131 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:132 +#: src/prefs/customization/commonStyleGroup.ts:133 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:139 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:140 +#: src/prefs/customization/commonStyleGroup.ts:141 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/pt_BR.po b/resources/po/pt_BR.po index 5a5d038f..3b85bb78 100644 --- a/resources/po/pt_BR.po +++ b/resources/po/pt_BR.po @@ -31,11 +31,11 @@ msgstr "Modo anônimo" msgid "Settings" msgstr "Configurações" -#: src/components/filePanoItem.ts:202 +#: src/components/filePanoItem.ts:203 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:40 +#: src/components/linkPanoItem.ts:41 msgid "No Description" msgstr "Sem descrição" @@ -175,127 +175,139 @@ msgid "You can change the item height" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:43 -msgid "Enable Headers" +msgid "Header Style" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:44 -msgid "Controls the visibility of the clipboard item headers" +msgid "Controls the style of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 -msgid "Compact Mode" +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Compact" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Hidden" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Visible" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:53 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:54 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "Window Position" msgstr "Posição da janela" -#: src/prefs/customization/commonStyleGroup.ts:62 +#: src/prefs/customization/commonStyleGroup.ts:63 msgid "You can change position of the Pano" msgstr "Você pode mudar a posição do Pano" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Bottom" msgstr "Inferior" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Left" msgstr "Esquerda" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Pointer" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Right" msgstr "Direita" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Top" msgstr "Superior" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:72 msgid "Window Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "You can change the height of the window if the position is \"Pointer\"" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:85 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Window Background Color" msgstr "Cor de fundo da janela" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the window background color" msgstr "Você pode mudar a cor de fundo da janela" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "Incognito Window Background Color" msgstr "Cor de fundo da janela anônima" -#: src/prefs/customization/commonStyleGroup.ts:94 +#: src/prefs/customization/commonStyleGroup.ts:95 msgid "You can change the incognito window background color" msgstr "Você pode mudar a cor de fundo da janela anônima" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:102 +#: src/prefs/customization/commonStyleGroup.ts:103 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "Search Bar Font" msgstr "Fonte da barra de pesquisa" -#: src/prefs/customization/commonStyleGroup.ts:110 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "You can change the font of the search bar" msgstr "Você pode mudar a fonte da barra de pesquisa" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "Item Title Font" msgstr "Fonte do título do item" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "Você pode mudar a fonte do título" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "Item Date Font" msgstr "Fonte da data do item" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the font of the date" msgstr "Você pode mudar a fonte da data" -#: src/prefs/customization/commonStyleGroup.ts:123 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "Active Item Border Color" msgstr "Cor da borda do item ativo" -#: src/prefs/customization/commonStyleGroup.ts:124 +#: src/prefs/customization/commonStyleGroup.ts:125 msgid "You can change the active item border color" msgstr "Você pode mudar a cor da borda do item ativo" -#: src/prefs/customization/commonStyleGroup.ts:131 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "Hovered Item Border Color" msgstr "Cor da borda do item destacado" -#: src/prefs/customization/commonStyleGroup.ts:132 +#: src/prefs/customization/commonStyleGroup.ts:133 msgid "You can change the hovered item border color" msgstr "Você pode mudar a cor da borda do item destacado" -#: src/prefs/customization/commonStyleGroup.ts:139 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:140 +#: src/prefs/customization/commonStyleGroup.ts:141 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/ro.po b/resources/po/ro.po index 4be35206..54944fb9 100644 --- a/resources/po/ro.po +++ b/resources/po/ro.po @@ -31,11 +31,11 @@ msgstr "Modul incognito" msgid "Settings" msgstr "Setări" -#: src/components/filePanoItem.ts:202 +#: src/components/filePanoItem.ts:203 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:40 +#: src/components/linkPanoItem.ts:41 msgid "No Description" msgstr "" @@ -175,127 +175,139 @@ msgid "You can change the item height" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:43 -msgid "Enable Headers" +msgid "Header Style" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:44 -msgid "Controls the visibility of the clipboard item headers" +msgid "Controls the style of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 -msgid "Compact Mode" +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Compact" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Hidden" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Visible" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:53 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:54 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:62 +#: src/prefs/customization/commonStyleGroup.ts:63 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Pointer" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:72 msgid "Window Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "You can change the height of the window if the position is \"Pointer\"" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:85 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:94 +#: src/prefs/customization/commonStyleGroup.ts:95 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:102 +#: src/prefs/customization/commonStyleGroup.ts:103 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:110 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:123 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:124 +#: src/prefs/customization/commonStyleGroup.ts:125 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:131 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:132 +#: src/prefs/customization/commonStyleGroup.ts:133 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:139 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:140 +#: src/prefs/customization/commonStyleGroup.ts:141 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/ru.po b/resources/po/ru.po index fbf213f3..724bcf6b 100644 --- a/resources/po/ru.po +++ b/resources/po/ru.po @@ -31,11 +31,11 @@ msgstr "Режим инкогнито" msgid "Settings" msgstr "Настройки" -#: src/components/filePanoItem.ts:202 +#: src/components/filePanoItem.ts:203 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:40 +#: src/components/linkPanoItem.ts:41 msgid "No Description" msgstr "Без описания" @@ -175,127 +175,139 @@ msgid "You can change the item height" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:43 -msgid "Enable Headers" +msgid "Header Style" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:44 -msgid "Controls the visibility of the clipboard item headers" +msgid "Controls the style of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 -msgid "Compact Mode" +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Compact" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Hidden" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Visible" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:53 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:54 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "Window Position" msgstr "Положение окна" -#: src/prefs/customization/commonStyleGroup.ts:62 +#: src/prefs/customization/commonStyleGroup.ts:63 msgid "You can change position of the Pano" msgstr "Вы можете изменить положение Pano" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Pointer" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:72 msgid "Window Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "You can change the height of the window if the position is \"Pointer\"" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:85 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Window Background Color" msgstr "Цвет фона окна" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the window background color" msgstr "Вы можете изменить цвет фона окна" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "Incognito Window Background Color" msgstr "Цвет фона окна инкогнито" -#: src/prefs/customization/commonStyleGroup.ts:94 +#: src/prefs/customization/commonStyleGroup.ts:95 msgid "You can change the incognito window background color" msgstr "Вы можете изменить цвет фона окна инкогнито" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:102 +#: src/prefs/customization/commonStyleGroup.ts:103 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "Search Bar Font" msgstr "Шрифт панели поиска" -#: src/prefs/customization/commonStyleGroup.ts:110 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "You can change the font of the search bar" msgstr "Вы можете изменить шрифт в строке поиска" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "Item Title Font" msgstr "Шрифт заголовка элемента" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "Вы можете изменить шрифт заголовка" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "Item Date Font" msgstr "Шрифт даты элемента" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the font of the date" msgstr "Вы можете изменить шрифт даты" -#: src/prefs/customization/commonStyleGroup.ts:123 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "Active Item Border Color" msgstr "Цвет границы активного элемента" -#: src/prefs/customization/commonStyleGroup.ts:124 +#: src/prefs/customization/commonStyleGroup.ts:125 msgid "You can change the active item border color" msgstr "Вы можете изменить цвет границы активного элемента" -#: src/prefs/customization/commonStyleGroup.ts:131 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "Hovered Item Border Color" msgstr "Цвет границы выбранного элемента" -#: src/prefs/customization/commonStyleGroup.ts:132 +#: src/prefs/customization/commonStyleGroup.ts:133 msgid "You can change the hovered item border color" msgstr "Вы можете изменить цвет границы выбранного элемента" -#: src/prefs/customization/commonStyleGroup.ts:139 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:140 +#: src/prefs/customization/commonStyleGroup.ts:141 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/sk.po b/resources/po/sk.po index 68f8f7e0..fe6b08ba 100644 --- a/resources/po/sk.po +++ b/resources/po/sk.po @@ -31,11 +31,11 @@ msgstr "Režim inkognito" msgid "Settings" msgstr "Nastavenia" -#: src/components/filePanoItem.ts:202 +#: src/components/filePanoItem.ts:203 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:40 +#: src/components/linkPanoItem.ts:41 msgid "No Description" msgstr "" @@ -175,127 +175,139 @@ msgid "You can change the item height" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:43 -msgid "Enable Headers" +msgid "Header Style" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:44 -msgid "Controls the visibility of the clipboard item headers" +msgid "Controls the style of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 -msgid "Compact Mode" +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Compact" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Hidden" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Visible" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:53 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:54 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:62 +#: src/prefs/customization/commonStyleGroup.ts:63 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Pointer" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:72 msgid "Window Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "You can change the height of the window if the position is \"Pointer\"" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:85 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:94 +#: src/prefs/customization/commonStyleGroup.ts:95 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:102 +#: src/prefs/customization/commonStyleGroup.ts:103 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:110 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:123 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:124 +#: src/prefs/customization/commonStyleGroup.ts:125 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:131 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:132 +#: src/prefs/customization/commonStyleGroup.ts:133 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:139 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:140 +#: src/prefs/customization/commonStyleGroup.ts:141 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/sv.po b/resources/po/sv.po index 6105e850..a3cfbd4e 100644 --- a/resources/po/sv.po +++ b/resources/po/sv.po @@ -31,11 +31,11 @@ msgstr "Inkognitoläge" msgid "Settings" msgstr "Inställningar" -#: src/components/filePanoItem.ts:202 +#: src/components/filePanoItem.ts:203 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:40 +#: src/components/linkPanoItem.ts:41 msgid "No Description" msgstr "" @@ -175,127 +175,139 @@ msgid "You can change the item height" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:43 -msgid "Enable Headers" +msgid "Header Style" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:44 -msgid "Controls the visibility of the clipboard item headers" +msgid "Controls the style of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 -msgid "Compact Mode" +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Compact" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Hidden" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Visible" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:53 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:54 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:62 +#: src/prefs/customization/commonStyleGroup.ts:63 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Pointer" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:72 msgid "Window Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "You can change the height of the window if the position is \"Pointer\"" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:85 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:94 +#: src/prefs/customization/commonStyleGroup.ts:95 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:102 +#: src/prefs/customization/commonStyleGroup.ts:103 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:110 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:123 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:124 +#: src/prefs/customization/commonStyleGroup.ts:125 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:131 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:132 +#: src/prefs/customization/commonStyleGroup.ts:133 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:139 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:140 +#: src/prefs/customization/commonStyleGroup.ts:141 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/tr.po b/resources/po/tr.po index a61fbe34..98f71d59 100644 --- a/resources/po/tr.po +++ b/resources/po/tr.po @@ -31,11 +31,11 @@ msgstr "Gizli Mod" msgid "Settings" msgstr "Ayarlar" -#: src/components/filePanoItem.ts:202 +#: src/components/filePanoItem.ts:203 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:40 +#: src/components/linkPanoItem.ts:41 msgid "No Description" msgstr "Açıklama Yok" @@ -175,127 +175,139 @@ msgid "You can change the item height" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:43 -msgid "Enable Headers" +msgid "Header Style" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:44 -msgid "Controls the visibility of the clipboard item headers" +msgid "Controls the style of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 -msgid "Compact Mode" +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Compact" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Hidden" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Visible" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:53 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:54 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "Window Position" msgstr "Pencere Konumu" -#: src/prefs/customization/commonStyleGroup.ts:62 +#: src/prefs/customization/commonStyleGroup.ts:63 msgid "You can change position of the Pano" msgstr "Pencere konumunu değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Bottom" msgstr "Alt" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Left" msgstr "Sol" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Pointer" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Right" msgstr "Sağ" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Top" msgstr "Üst" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:72 msgid "Window Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "You can change the height of the window if the position is \"Pointer\"" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:85 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Window Background Color" msgstr "Pencere Arkaplan Rengi" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the window background color" msgstr "Pencere arkaplan rengini değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "Incognito Window Background Color" msgstr "Gizli Pencere Arkaplan Rengi" -#: src/prefs/customization/commonStyleGroup.ts:94 +#: src/prefs/customization/commonStyleGroup.ts:95 msgid "You can change the incognito window background color" msgstr "Gizli pencere arkaplan rengini değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:102 +#: src/prefs/customization/commonStyleGroup.ts:103 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "Search Bar Font" msgstr "Arama Çubuğu Yazı Tipi" -#: src/prefs/customization/commonStyleGroup.ts:110 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "You can change the font of the search bar" msgstr "Arama çubuğu yazı tipini değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "Item Title Font" msgstr "Öğe Başlığı Yazı Tipi" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "Öğe başlığının yazı tipini değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "Item Date Font" msgstr "Öğe Tarihi Yazı Tipi" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the font of the date" msgstr "Öğe tarihi yazı tipini değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:123 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "Active Item Border Color" msgstr "Etkin Öğe Çerçeve Rengi" -#: src/prefs/customization/commonStyleGroup.ts:124 +#: src/prefs/customization/commonStyleGroup.ts:125 msgid "You can change the active item border color" msgstr "Etkin öğenin çerçeve rengini değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:131 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "Hovered Item Border Color" msgstr "Öğenin Üzerine Gelindiğindeki Çerçeve Rengi" -#: src/prefs/customization/commonStyleGroup.ts:132 +#: src/prefs/customization/commonStyleGroup.ts:133 msgid "You can change the hovered item border color" msgstr "Öğenin üzerine geldiğindeki çerçeve rengini değiştirebilirsiniz" -#: src/prefs/customization/commonStyleGroup.ts:139 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:140 +#: src/prefs/customization/commonStyleGroup.ts:141 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/uk.po b/resources/po/uk.po index 8e5a5781..262e210d 100644 --- a/resources/po/uk.po +++ b/resources/po/uk.po @@ -31,11 +31,11 @@ msgstr "Режим інкогніто" msgid "Settings" msgstr "Параметри" -#: src/components/filePanoItem.ts:202 +#: src/components/filePanoItem.ts:203 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:40 +#: src/components/linkPanoItem.ts:41 msgid "No Description" msgstr "Без опису" @@ -175,127 +175,139 @@ msgid "You can change the item height" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:43 -msgid "Enable Headers" +msgid "Header Style" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:44 -msgid "Controls the visibility of the clipboard item headers" +msgid "Controls the style of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 -msgid "Compact Mode" +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Compact" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Hidden" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Visible" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:53 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:54 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:62 +#: src/prefs/customization/commonStyleGroup.ts:63 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Pointer" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:72 msgid "Window Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "You can change the height of the window if the position is \"Pointer\"" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:85 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:94 +#: src/prefs/customization/commonStyleGroup.ts:95 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:102 +#: src/prefs/customization/commonStyleGroup.ts:103 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:110 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:123 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:124 +#: src/prefs/customization/commonStyleGroup.ts:125 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:131 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:132 +#: src/prefs/customization/commonStyleGroup.ts:133 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:139 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:140 +#: src/prefs/customization/commonStyleGroup.ts:141 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/vi.po b/resources/po/vi.po index 1cfd0227..8509d8f4 100644 --- a/resources/po/vi.po +++ b/resources/po/vi.po @@ -31,11 +31,11 @@ msgstr "Chế Độ Ẩn Danh" msgid "Settings" msgstr "Cài Đặt" -#: src/components/filePanoItem.ts:202 +#: src/components/filePanoItem.ts:203 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:40 +#: src/components/linkPanoItem.ts:41 msgid "No Description" msgstr "" @@ -175,127 +175,139 @@ msgid "You can change the item height" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:43 -msgid "Enable Headers" +msgid "Header Style" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:44 -msgid "Controls the visibility of the clipboard item headers" +msgid "Controls the style of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 -msgid "Compact Mode" +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Compact" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Hidden" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Visible" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:53 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:54 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "Window Position" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:62 +#: src/prefs/customization/commonStyleGroup.ts:63 msgid "You can change position of the Pano" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Bottom" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Left" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Pointer" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Right" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Top" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:72 msgid "Window Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "You can change the height of the window if the position is \"Pointer\"" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:85 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "Incognito Window Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:94 +#: src/prefs/customization/commonStyleGroup.ts:95 msgid "You can change the incognito window background color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:102 +#: src/prefs/customization/commonStyleGroup.ts:103 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "Search Bar Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:110 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "You can change the font of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "Item Title Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "Item Date Font" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the font of the date" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:123 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "Active Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:124 +#: src/prefs/customization/commonStyleGroup.ts:125 msgid "You can change the active item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:131 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "Hovered Item Border Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:132 +#: src/prefs/customization/commonStyleGroup.ts:133 msgid "You can change the hovered item border color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:139 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:140 +#: src/prefs/customization/commonStyleGroup.ts:141 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/zh_CN.po b/resources/po/zh_CN.po index 78b0a6bd..0feb730f 100644 --- a/resources/po/zh_CN.po +++ b/resources/po/zh_CN.po @@ -31,11 +31,11 @@ msgstr "隐身模式" msgid "Settings" msgstr "设置" -#: src/components/filePanoItem.ts:202 +#: src/components/filePanoItem.ts:203 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:40 +#: src/components/linkPanoItem.ts:41 msgid "No Description" msgstr "无详情" @@ -175,127 +175,139 @@ msgid "You can change the item height" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:43 -msgid "Enable Headers" +msgid "Header Style" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:44 -msgid "Controls the visibility of the clipboard item headers" +msgid "Controls the style of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 -msgid "Compact Mode" +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Compact" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Hidden" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Visible" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:53 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:54 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "Window Position" msgstr "窗口位置" -#: src/prefs/customization/commonStyleGroup.ts:62 +#: src/prefs/customization/commonStyleGroup.ts:63 msgid "You can change position of the Pano" msgstr "修改Pano窗口的位置" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Bottom" msgstr "底部" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Left" msgstr "左侧" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Pointer" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Right" msgstr "右侧" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Top" msgstr "顶部" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:72 msgid "Window Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "You can change the height of the window if the position is \"Pointer\"" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:85 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Window Background Color" msgstr "窗口背景色" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the window background color" msgstr "修改窗口背景颜色" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "Incognito Window Background Color" msgstr "隐私窗口背景色" -#: src/prefs/customization/commonStyleGroup.ts:94 +#: src/prefs/customization/commonStyleGroup.ts:95 msgid "You can change the incognito window background color" msgstr "修改隐私窗口背景颜色" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:102 +#: src/prefs/customization/commonStyleGroup.ts:103 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "Search Bar Font" msgstr "搜索栏字体" -#: src/prefs/customization/commonStyleGroup.ts:110 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "You can change the font of the search bar" msgstr "修改搜索栏字体" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "Item Title Font" msgstr "项目标题字体" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "修改项目标题字体" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "Item Date Font" msgstr "项目日期字体" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the font of the date" msgstr "修改项目日期字体" -#: src/prefs/customization/commonStyleGroup.ts:123 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "Active Item Border Color" msgstr "激活项目边框颜色" -#: src/prefs/customization/commonStyleGroup.ts:124 +#: src/prefs/customization/commonStyleGroup.ts:125 msgid "You can change the active item border color" msgstr "修改激活项目的边框颜色" -#: src/prefs/customization/commonStyleGroup.ts:131 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "Hovered Item Border Color" msgstr "悬停项目边框颜色" -#: src/prefs/customization/commonStyleGroup.ts:132 +#: src/prefs/customization/commonStyleGroup.ts:133 msgid "You can change the hovered item border color" msgstr "修改鼠标悬停项目的边框颜色" -#: src/prefs/customization/commonStyleGroup.ts:139 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:140 +#: src/prefs/customization/commonStyleGroup.ts:141 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/po/zh_TW.po b/resources/po/zh_TW.po index d9c400b3..9b6bb267 100644 --- a/resources/po/zh_TW.po +++ b/resources/po/zh_TW.po @@ -31,11 +31,11 @@ msgstr "無痕模式" msgid "Settings" msgstr "設定" -#: src/components/filePanoItem.ts:202 +#: src/components/filePanoItem.ts:203 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:40 +#: src/components/linkPanoItem.ts:41 msgid "No Description" msgstr "無說明" @@ -175,127 +175,139 @@ msgid "You can change the item height" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:43 -msgid "Enable Headers" +msgid "Header Style" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:44 -msgid "Controls the visibility of the clipboard item headers" +msgid "Controls the style of the clipboard item headers" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:52 -msgid "Compact Mode" +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Compact" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Hidden" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:47 +msgid "Visible" msgstr "" #: src/prefs/customization/commonStyleGroup.ts:53 +msgid "Compact Mode" +msgstr "" + +#: src/prefs/customization/commonStyleGroup.ts:54 msgid "Controls the compactness of the clipboard item." msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:61 +#: src/prefs/customization/commonStyleGroup.ts:62 msgid "Window Position" msgstr "視窗位置" -#: src/prefs/customization/commonStyleGroup.ts:62 +#: src/prefs/customization/commonStyleGroup.ts:63 msgid "You can change position of the Pano" msgstr "你可以更換 Pano 的位置" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Bottom" msgstr "底部" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Left" msgstr "左邊" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Pointer" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Right" msgstr "右邊" -#: src/prefs/customization/commonStyleGroup.ts:65 +#: src/prefs/customization/commonStyleGroup.ts:66 msgid "Top" msgstr "頂部" -#: src/prefs/customization/commonStyleGroup.ts:71 +#: src/prefs/customization/commonStyleGroup.ts:72 msgid "Window Height" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:72 +#: src/prefs/customization/commonStyleGroup.ts:73 msgid "You can change the height of the window if the position is \"Pointer\"" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:85 +#: src/prefs/customization/commonStyleGroup.ts:86 msgid "Window Background Color" msgstr "視窗背景顏色" -#: src/prefs/customization/commonStyleGroup.ts:86 +#: src/prefs/customization/commonStyleGroup.ts:87 msgid "You can change the window background color" msgstr "你可以更換視窗背景顏色" -#: src/prefs/customization/commonStyleGroup.ts:93 +#: src/prefs/customization/commonStyleGroup.ts:94 msgid "Incognito Window Background Color" msgstr "無痕模式視窗背景顏色" -#: src/prefs/customization/commonStyleGroup.ts:94 +#: src/prefs/customization/commonStyleGroup.ts:95 msgid "You can change the incognito window background color" msgstr "你可以更換無痕模式視窗背景顏色" -#: src/prefs/customization/commonStyleGroup.ts:101 +#: src/prefs/customization/commonStyleGroup.ts:102 msgid "Search Bar Background Color" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:102 +#: src/prefs/customization/commonStyleGroup.ts:103 msgid "You can change the background color of the search bar" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:109 +#: src/prefs/customization/commonStyleGroup.ts:110 msgid "Search Bar Font" msgstr "搜尋欄字體" -#: src/prefs/customization/commonStyleGroup.ts:110 +#: src/prefs/customization/commonStyleGroup.ts:111 msgid "You can change the font of the search bar" msgstr "你可以更換搜尋欄的字體" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 msgid "Item Title Font" msgstr "物件標題字體" -#: src/prefs/customization/commonStyleGroup.ts:116 +#: src/prefs/customization/commonStyleGroup.ts:117 #: src/prefs/customization/fileItemStyle.ts:61 msgid "You can change the font of the title" msgstr "你可以更換標題的字體" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "Item Date Font" msgstr "物件日期字體" -#: src/prefs/customization/commonStyleGroup.ts:119 +#: src/prefs/customization/commonStyleGroup.ts:120 msgid "You can change the font of the date" msgstr "你可以更換日期的字體" -#: src/prefs/customization/commonStyleGroup.ts:123 +#: src/prefs/customization/commonStyleGroup.ts:124 msgid "Active Item Border Color" msgstr "選取物件邊界顏色" -#: src/prefs/customization/commonStyleGroup.ts:124 +#: src/prefs/customization/commonStyleGroup.ts:125 msgid "You can change the active item border color" msgstr "你可以更換活躍的物件邊界顏色" -#: src/prefs/customization/commonStyleGroup.ts:131 +#: src/prefs/customization/commonStyleGroup.ts:132 msgid "Hovered Item Border Color" msgstr "被游標覆蓋物件邊界顏色" -#: src/prefs/customization/commonStyleGroup.ts:132 +#: src/prefs/customization/commonStyleGroup.ts:133 msgid "You can change the hovered item border color" msgstr "你可以更換被覆蓋物件邊界顏色" -#: src/prefs/customization/commonStyleGroup.ts:139 +#: src/prefs/customization/commonStyleGroup.ts:140 msgid "Show Controls on Hover" msgstr "" -#: src/prefs/customization/commonStyleGroup.ts:140 +#: src/prefs/customization/commonStyleGroup.ts:141 msgid "When enabled, the controls will only show on hover" msgstr "" diff --git a/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml b/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml index 6fd78139..3f9d6f81 100644 --- a/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml +++ b/resources/schemas/org.gnome.shell.extensions.pano.gschema.xml @@ -118,10 +118,11 @@ Item Height Controls height of the clipboard item. - - false - Enable Headers - Controls the visibility of the clipboard item headers. + + + 0 + Header Style + Controls the style of the clipboard item headers. 0-hidden 1-visible 2-compact false diff --git a/src/components/codePanoItem.ts b/src/components/codePanoItem.ts index 5ae6a4e0..ddea8094 100644 --- a/src/components/codePanoItem.ts +++ b/src/components/codePanoItem.ts @@ -33,7 +33,7 @@ export class CodePanoItem extends PanoItem { this.settings.connect('changed::is-in-incognito', this.setStyle.bind(this)); this.settings.connect('changed::incognito-window-background-color', this.setStyle.bind(this)); this.settings.connect('changed::window-background-color', this.setStyle.bind(this)); - this.settings.connect('changed::enable-headers', this.setStyle.bind(this)); + this.settings.connect('changed::header-style', this.setStyle.bind(this)); } private setStyle() { diff --git a/src/components/colorPanoItem.ts b/src/components/colorPanoItem.ts index bf131710..62a62221 100644 --- a/src/components/colorPanoItem.ts +++ b/src/components/colorPanoItem.ts @@ -62,7 +62,7 @@ export class ColorPanoItem extends PanoItem { this.settings.connect('changed::is-in-incognito', this.setStyle.bind(this)); this.settings.connect('changed::incognito-window-background-color', this.setStyle.bind(this)); this.settings.connect('changed::window-background-color', this.setStyle.bind(this)); - this.settings.connect('changed::enable-headers', this.setStyle.bind(this)); + this.settings.connect('changed::header-style', this.setStyle.bind(this)); } private setCompactMode() { diff --git a/src/components/emojiPanoItem.ts b/src/components/emojiPanoItem.ts index 2d42c4d2..f28a9f23 100644 --- a/src/components/emojiPanoItem.ts +++ b/src/components/emojiPanoItem.ts @@ -41,7 +41,7 @@ export class EmojiPanoItem extends PanoItem { this.settings.connect('changed::is-in-incognito', this.setStyle.bind(this)); this.settings.connect('changed::incognito-window-background-color', this.setStyle.bind(this)); this.settings.connect('changed::window-background-color', this.setStyle.bind(this)); - this.settings.connect('changed::enable-headers', this.setStyle.bind(this)); + this.settings.connect('changed::header-style', this.setStyle.bind(this)); } private setStyle() { diff --git a/src/components/filePanoItem.ts b/src/components/filePanoItem.ts index 59b1cd6c..e43b7b34 100644 --- a/src/components/filePanoItem.ts +++ b/src/components/filePanoItem.ts @@ -238,19 +238,18 @@ export class FilePanoItem extends PanoItem { }); this.body.add_child(this.preview); - - // Settings for controls - this.settings.connect('changed::is-in-incognito', this.setStyle.bind(this)); - this.settings.connect('changed::incognito-window-background-color', this.setStyle.bind(this)); - this.settings.connect('changed::window-background-color', this.setStyle.bind(this)); - this.settings.connect('changed::enable-headers', this.setStyle.bind(this)); } this.connect('activated', this.setClipboardContent.bind(this)); this.setStyle(); - this.settings.connect('changed::enable-headers', this.setStyle.bind(this)); this.settings.connect('changed::compact-mode', this.setStyle.bind(this)); this.fileItemSettings.connect('changed', this.setStyle.bind(this)); + + // Settings for controls + this.settings.connect('changed::is-in-incognito', this.setStyle.bind(this)); + this.settings.connect('changed::incognito-window-background-color', this.setStyle.bind(this)); + this.settings.connect('changed::window-background-color', this.setStyle.bind(this)); + this.settings.connect('changed::header-style', this.setStyle.bind(this)); } private setStyle() { diff --git a/src/components/imagePanoItem.ts b/src/components/imagePanoItem.ts index 1aaf5794..d1b129c6 100644 --- a/src/components/imagePanoItem.ts +++ b/src/components/imagePanoItem.ts @@ -29,7 +29,7 @@ export class ImagePanoItem extends PanoItem { this.settings.connect('changed::is-in-incognito', this.setStyle.bind(this)); this.settings.connect('changed::incognito-window-background-color', this.setStyle.bind(this)); this.settings.connect('changed::window-background-color', this.setStyle.bind(this)); - this.settings.connect('changed::enable-headers', this.setStyle.bind(this)); + this.settings.connect('changed::header-style', this.setStyle.bind(this)); } private setStyle() { diff --git a/src/components/linkPanoItem.ts b/src/components/linkPanoItem.ts index 7c3c2a96..8ccaeaff 100644 --- a/src/components/linkPanoItem.ts +++ b/src/components/linkPanoItem.ts @@ -100,7 +100,7 @@ export class LinkPanoItem extends PanoItem { this.settings.connect('changed::is-in-incognito', this.setStyle.bind(this)); this.settings.connect('changed::incognito-window-background-color', this.setStyle.bind(this)); this.settings.connect('changed::window-background-color', this.setStyle.bind(this)); - this.settings.connect('changed::enable-headers', this.setStyle.bind(this)); + this.settings.connect('changed::header-style', this.setStyle.bind(this)); const openLinkIcon = new St.Icon({ iconName: 'web-browser-symbolic', diff --git a/src/components/panoItem.ts b/src/components/panoItem.ts index 61004ec8..6206eb20 100644 --- a/src/components/panoItem.ts +++ b/src/components/panoItem.ts @@ -15,7 +15,7 @@ import { registerGObjectClass, SignalRepresentationType, SignalsDefinition } fro import { getPanoItemTypes } from '@pano/utils/panoItemType'; import { getCurrentExtensionSettings } from '@pano/utils/shell'; import { orientationCompatibility } from '@pano/utils/shell_compatibility'; -import { getVirtualKeyboard, WINDOW_POSITIONS } from '@pano/utils/ui'; +import { getHeaderHeight, getVirtualKeyboard, isVisible, WINDOW_POSITIONS } from '@pano/utils/ui'; export type PanoItemSignalType = 'on-remove' | 'on-favorite' | 'activated'; @@ -181,7 +181,7 @@ export class PanoItem extends St.Widget { themeContext.connect('notify::scale-factor', this.setBodyDimensions.bind(this)); this.settings.connect('changed::item-width', this.setBodyDimensions.bind(this)); this.settings.connect('changed::item-height', this.setBodyDimensions.bind(this)); - this.settings.connect('changed::enable-headers', this.setBodyDimensions.bind(this)); + this.settings.connect('changed::header-style', this.setBodyDimensions.bind(this)); this.settings.connect('changed::compact-mode', () => { if (this.settings.get_boolean('compact-mode')) { this.add_style_class_name('compact'); @@ -210,7 +210,7 @@ export class PanoItem extends St.Widget { } const { scaleFactor } = St.ThemeContext.get_for_stage(Shell.Global.get().get_stage()); const mult = this.settings.get_boolean('compact-mode') ? 0.5 : 1; - const header = this.settings.get_boolean('enable-headers') ? 48 : 0; + const header = getHeaderHeight(this.settings.get_uint('header-style')); const height = Math.floor(this.settings.get_int('item-height') * mult) + header; this.set_height(height * scaleFactor); @@ -219,7 +219,7 @@ export class PanoItem extends St.Widget { this.container.set_height((height - 8) * scaleFactor); this.body.set_height((height - 10 - header) * scaleFactor); this.overlay.set_height((height - 8) * scaleFactor); - this.header.visible = this.settings.get_boolean('enable-headers'); + this.header.visible = isVisible(this.settings.get_uint('header-style')); } private setVisible() { diff --git a/src/components/panoItemHeader.ts b/src/components/panoItemHeader.ts index 217abf5a..97b5ba5c 100644 --- a/src/components/panoItemHeader.ts +++ b/src/components/panoItemHeader.ts @@ -7,6 +7,7 @@ import St from '@girs/st-16'; import { registerGObjectClass } from '@pano/utils/gjs'; import { ICON_PACKS, IPanoItemType } from '@pano/utils/panoItemType'; import { getCurrentExtensionSettings } from '@pano/utils/shell'; +import { getHeaderHeight, HEADER_STYLES } from '@pano/utils/ui'; import { Locale } from 'date-fns'; import formatDistanceToNow from 'date-fns/formatDistanceToNow'; import * as dateLocale from 'date-fns/locale'; @@ -38,14 +39,6 @@ export class PanoItemHeader extends St.BoxLayout { this.settings = getCurrentExtensionSettings(ext); - const themeContext = St.ThemeContext.get_for_stage(Shell.Global.get().get_stage()); - - this.set_height(48 * themeContext.scaleFactor); - - themeContext.connect('notify::scale-factor', () => { - this.set_height(48 * themeContext.scaleFactor); - }); - const icon = new St.Icon({ styleClass: 'pano-item-title-icon', gicon: Gio.icon_new_for_string( @@ -76,6 +69,7 @@ export class PanoItemHeader extends St.BoxLayout { this.titleLabel = new St.Label({ text: itemType.title, styleClass: 'pano-item-title', + visible: this.settings.get_uint('header-style') !== HEADER_STYLES.COMPACT, xExpand: true, yExpand: false, xAlign: Clutter.ActorAlign.FILL, @@ -114,6 +108,25 @@ export class PanoItemHeader extends St.BoxLayout { this.add_child(icon); this.add_child(this.titleContainer); + const themeContext = St.ThemeContext.get_for_stage(Shell.Global.get().get_stage()); + + const size = getHeaderHeight(this.settings.get_uint('header-style')); + this.set_height(size * themeContext.scaleFactor); + icon.set_width(size * themeContext.scaleFactor); + + themeContext.connect('notify::scale-factor', () => { + const size = getHeaderHeight(this.settings.get_uint('header-style')); + this.set_height(size * themeContext.scaleFactor); + icon.set_width(size * themeContext.scaleFactor); + }); + + this.settings.connect('changed::header-style', () => { + const size = getHeaderHeight(this.settings.get_uint('header-style')); + this.set_height(size * themeContext.scaleFactor); + icon.set_width(size * themeContext.scaleFactor); + this.titleLabel.visible = this.settings.get_uint('header-style') !== HEADER_STYLES.COMPACT; + }); + this.setStyle(); this.settings.connect('changed::item-title-font-family', this.setStyle.bind(this)); this.settings.connect('changed::item-title-font-size', this.setStyle.bind(this)); diff --git a/src/components/textPanoItem.ts b/src/components/textPanoItem.ts index 7df27597..41bf3fd7 100644 --- a/src/components/textPanoItem.ts +++ b/src/components/textPanoItem.ts @@ -35,7 +35,7 @@ export class TextPanoItem extends PanoItem { this.settings.connect('changed::is-in-incognito', this.setStyle.bind(this)); this.settings.connect('changed::incognito-window-background-color', this.setStyle.bind(this)); this.settings.connect('changed::window-background-color', this.setStyle.bind(this)); - this.settings.connect('changed::enable-headers', this.setStyle.bind(this)); + this.settings.connect('changed::header-style', this.setStyle.bind(this)); } private setStyle() { diff --git a/src/containers/panoWindow.ts b/src/containers/panoWindow.ts index 3bd4b9f9..d0a8a6b4 100644 --- a/src/containers/panoWindow.ts +++ b/src/containers/panoWindow.ts @@ -15,6 +15,7 @@ import { getCurrentExtensionSettings } from '@pano/utils/shell'; import { orientationCompatibility } from '@pano/utils/shell_compatibility'; import { getAlignment, + getHeaderHeight, getMonitorConstraint, getMonitorIndexForPointer, getMonitors, @@ -51,7 +52,7 @@ export class PanoWindow extends St.BoxLayout { themeContext.connect('notify::scale-factor', () => this.setWindowDimensions(themeContext.scaleFactor)); this.settings.connect('changed::item-width', () => this.setWindowDimensions(themeContext.scaleFactor)); this.settings.connect('changed::item-height', () => this.setWindowDimensions(themeContext.scaleFactor)); - this.settings.connect('changed::enable-headers', () => this.setWindowDimensions(themeContext.scaleFactor)); + this.settings.connect('changed::header-style', () => this.setWindowDimensions(themeContext.scaleFactor)); this.settings.connect('changed::compact-mode', () => this.setWindowDimensions(themeContext.scaleFactor)); this.settings.connect('changed::window-position', () => { this.setWindowDimensions(themeContext.scaleFactor); @@ -96,7 +97,7 @@ export class PanoWindow extends St.BoxLayout { } } else { const mult = this.settings.get_boolean('compact-mode') ? 0.5 : 1; - const header = this.settings.get_boolean('enable-headers') ? 48 : 0; + const header = getHeaderHeight(this.settings.get_uint('header-style')); this.set_height((Math.floor(this.settings.get_int('item-height') * mult) + 76 + header) * scaleFactor); } } diff --git a/src/prefs/customization/commonStyleGroup.ts b/src/prefs/customization/commonStyleGroup.ts index c30357ef..63ce4f38 100644 --- a/src/prefs/customization/commonStyleGroup.ts +++ b/src/prefs/customization/commonStyleGroup.ts @@ -39,11 +39,12 @@ export class CommonStyleGroup extends Adw.PreferencesGroup { ); this.add( - createSwitchRow( - _('Enable Headers'), - _('Controls the visibility of the clipboard item headers'), + createDropdownRow( + _('Header Style'), + _('Controls the style of the clipboard item headers'), this.settings, - 'enable-headers', + 'header-style', + [_('Hidden'), _('Visible'), _('Compact')], ), ); diff --git a/src/styles/stylesheet.css b/src/styles/stylesheet.css index d15c6be0..a28fbde4 100644 --- a/src/styles/stylesheet.css +++ b/src/styles/stylesheet.css @@ -134,9 +134,7 @@ } .pano-item-title-icon { - width: 32px; - height: 32px; - margin: 0px 8px; + padding: 4px; } .pano-item-title { diff --git a/src/utils/color.ts b/src/utils/color.ts index 6e522e49..47601857 100644 --- a/src/utils/color.ts +++ b/src/utils/color.ts @@ -1,4 +1,5 @@ import Gio from '@girs/gio-2.0'; +import { isVisible } from '@pano/utils/ui'; import colorString from 'color-string'; // Calculate luminance and determine whether the color is dark or light @@ -30,7 +31,7 @@ export function getItemBackgroundColor(settings: Gio.Settings, headerColor: stri ? settings.get_string('incognito-window-background-color') : settings.get_string('window-background-color'); - if (settings.get_boolean('enable-headers')) { + if (isVisible(settings.get_uint('header-style'))) { return mixColor(windowColor, headerColor); } else if (bodyColor === null) { return windowColor; diff --git a/src/utils/ui.ts b/src/utils/ui.ts index 3fde1b7a..aeabc565 100644 --- a/src/utils/ui.ts +++ b/src/utils/ui.ts @@ -145,3 +145,22 @@ export const isVertical = (position: number) => { position === WINDOW_POSITIONS.LEFT || position === WINDOW_POSITIONS.RIGHT || position === WINDOW_POSITIONS.POINTER ); }; + +export const HEADER_STYLES = { + HIDDEN: 0, + VISIBLE: 1, + COMPACT: 2, +}; + +export const getHeaderHeight = (style: number) => { + switch (style) { + case HEADER_STYLES.VISIBLE: + return 48; + case HEADER_STYLES.COMPACT: + return 32; + default: + return 0; + } +}; + +export const isVisible = (style: number) => style !== HEADER_STYLES.HIDDEN; From e6aa570d38bda1c8fba233bf36af880cf7f0c3a2 Mon Sep 17 00:00:00 2001 From: boerdereinar Date: Fri, 10 May 2024 22:03:52 +0200 Subject: [PATCH 25/45] Fix item spacing evenly --- src/components/panoScrollView.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/panoScrollView.ts b/src/components/panoScrollView.ts index 4271985d..e0654157 100644 --- a/src/components/panoScrollView.ts +++ b/src/components/panoScrollView.ts @@ -69,8 +69,8 @@ export class PanoScrollView extends St.ScrollView { constructor(ext: ExtensionBase, clipboardManager: ClipboardManager, searchBox: SearchBox) { super({ overlayScrollbars: true, - xExpand: true, - yExpand: true, + xExpand: false, + yExpand: false, }); this.ext = ext; this.clipboardManager = clipboardManager; From 53a8a494b2628a106b1c331da66a4135890d018c Mon Sep 17 00:00:00 2001 From: boerdereinar Date: Fri, 10 May 2024 22:27:39 +0200 Subject: [PATCH 26/45] Reduce margins of compact text item to fit more lines --- src/styles/stylesheet.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/styles/stylesheet.css b/src/styles/stylesheet.css index a28fbde4..2af3bd0c 100644 --- a/src/styles/stylesheet.css +++ b/src/styles/stylesheet.css @@ -202,7 +202,7 @@ } .pano-item-text.compact .pano-item-body-text-content { - margin: 10px 12px; + margin: 8px 12px 2px 12px; } /* Emoji Item */ From 2b58b9e5b0e3d4ba29001ddf5e759d176efd0227 Mon Sep 17 00:00:00 2001 From: boerdereinar Date: Sat, 11 May 2024 01:01:54 +0200 Subject: [PATCH 27/45] Only disable pointer location for indicator --- src/containers/panoWindow.ts | 9 +++------ src/extension.ts | 4 ++-- 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/src/containers/panoWindow.ts b/src/containers/panoWindow.ts index d0a8a6b4..9bc879ca 100644 --- a/src/containers/panoWindow.ts +++ b/src/containers/panoWindow.ts @@ -225,11 +225,11 @@ export class PanoWindow extends St.BoxLayout { }); } - toggle(at_pointer: boolean = false): void { - this.is_visible() ? this.hide() : this._show(at_pointer); + toggle(at_pointer: boolean = true): void { + this.is_visible() ? this.hide() : this.show(at_pointer); } - private _show(at_pointer: boolean) { + override show(at_pointer: boolean = true) { this.clear_constraints(); this.setAlignment(); this.add_constraint(getMonitorConstraint()); @@ -248,10 +248,7 @@ export class PanoWindow extends St.BoxLayout { mode: Clutter.AnimationMode.EASE_OUT_QUAD, }); this.monitorBox.open(); - } - override show() { - this._show(false); return Clutter.EVENT_PROPAGATE; } diff --git a/src/extension.ts b/src/extension.ts index 118697c0..576d4522 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -53,7 +53,7 @@ export default class PanoExtension extends Extension { this.setupResources(); this.keyManager = new KeyManager(this); this.clipboardManager = new ClipboardManager(this); - this.indicator = new PanoIndicator(this, this.clearHistory.bind(this), () => this.panoWindow?.toggle()); + this.indicator = new PanoIndicator(this, this.clearHistory.bind(this), () => this.panoWindow?.toggle(false)); this.start(); this.indicator.enable(); this.enableDbus(); @@ -81,7 +81,7 @@ export default class PanoExtension extends Extension { this.panoWindow = new PanoWindow(this, this.clipboardManager); this.trackWindow(); addTopChrome(this.panoWindow); - this.keyManager.listenFor('global-shortcut', () => this.panoWindow?.toggle(true)); + this.keyManager.listenFor('global-shortcut', () => this.panoWindow?.toggle()); this.keyManager.listenFor('incognito-shortcut', () => { this.settings?.set_boolean('is-in-incognito', !this.settings?.get_boolean('is-in-incognito')); }); From 58d4d36f044277d12808b088608bb6d9091902e4 Mon Sep 17 00:00:00 2001 From: boerdereinar Date: Sat, 11 May 2024 16:02:17 +0200 Subject: [PATCH 28/45] Fix link button background --- src/components/linkPanoItem.ts | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/src/components/linkPanoItem.ts b/src/components/linkPanoItem.ts index 8ccaeaff..edb839be 100644 --- a/src/components/linkPanoItem.ts +++ b/src/components/linkPanoItem.ts @@ -93,14 +93,6 @@ export class LinkPanoItem extends PanoItem { this.setStyle(); }); this.settings.connect('changed::item-height', this.setCompactMode.bind(this)); - this.setStyle(); - this.linkItemSettings.connect('changed', this.setStyle.bind(this)); - - // Settings for controls - this.settings.connect('changed::is-in-incognito', this.setStyle.bind(this)); - this.settings.connect('changed::incognito-window-background-color', this.setStyle.bind(this)); - this.settings.connect('changed::window-background-color', this.setStyle.bind(this)); - this.settings.connect('changed::header-style', this.setStyle.bind(this)); const openLinkIcon = new St.Icon({ iconName: 'web-browser-symbolic', @@ -131,6 +123,15 @@ export class LinkPanoItem extends PanoItem { this.overlay.actionContainer.insert_child_at_index(openLinkButton, 0); } }); + + this.setStyle(); + this.linkItemSettings.connect('changed', this.setStyle.bind(this)); + + // Settings for controls + this.settings.connect('changed::is-in-incognito', this.setStyle.bind(this)); + this.settings.connect('changed::incognito-window-background-color', this.setStyle.bind(this)); + this.settings.connect('changed::window-background-color', this.setStyle.bind(this)); + this.settings.connect('changed::header-style', this.setStyle.bind(this)); } private setCompactMode() { From 40dca4b66140239ed0c2e8858e50631e95cbfb07 Mon Sep 17 00:00:00 2001 From: boerdereinar Date: Thu, 16 May 2024 23:29:38 +0200 Subject: [PATCH 29/45] Fix jumpy animations when filtering/deleting items + fix item spacing again --- src/components/panoItem.ts | 2 ++ src/components/panoScrollView.ts | 29 +++++++++++++++++++++++++++-- src/styles/stylesheet.css | 4 ---- 3 files changed, 29 insertions(+), 6 deletions(-) diff --git a/src/components/panoItem.ts b/src/components/panoItem.ts index 6206eb20..6e48f4b1 100644 --- a/src/components/panoItem.ts +++ b/src/components/panoItem.ts @@ -61,6 +61,8 @@ export class PanoItem extends St.Widget { pivotPoint: Graphene.Point.alloc().init(0.5, 0.5), reactive: true, trackHover: true, + xExpand: false, + yExpand: false, }); this.clipboardManager = clipboardManager; diff --git a/src/components/panoScrollView.ts b/src/components/panoScrollView.ts index e0654157..cb58dcfb 100644 --- a/src/components/panoScrollView.ts +++ b/src/components/panoScrollView.ts @@ -69,8 +69,8 @@ export class PanoScrollView extends St.ScrollView { constructor(ext: ExtensionBase, clipboardManager: ClipboardManager, searchBox: SearchBox) { super({ overlayScrollbars: true, - xExpand: false, - yExpand: false, + xExpand: true, + yExpand: true, }); this.ext = ext; this.clipboardManager = clipboardManager; @@ -188,6 +188,26 @@ export class PanoScrollView extends St.ScrollView { } } + /** + * Removes first and last child pseudo classes quicker than the shell updates them. + * This ensures that there are no jumpy transitions between items when removing/filtering items. + */ + private removePseudoClasses() { + const visibleItems = this.getVisibleItems(); + visibleItems[0]?.remove_style_pseudo_class('first-child'); + visibleItems[visibleItems.length - 1]?.remove_style_pseudo_class('last-child'); + } + + /** + * Adds first and last child pseudo classes quicker than the shell updates them. + * This ensures that there are no jumpy transitions between items when removing/filtering items. + */ + private setPseudoClasses() { + const visibleItems = this.getVisibleItems(); + visibleItems[0]?.add_style_pseudo_class('first-child'); + visibleItems[visibleItems.length - 1]?.add_style_pseudo_class('last-child'); + } + private prependItem(panoItem: PanoItem) { const existingItem = this.getItem(panoItem); @@ -240,6 +260,7 @@ export class PanoScrollView extends St.ScrollView { private removeItem(item: PanoItem) { item.hide(); this.list.remove_child(item); + this.setPseudoClasses(); } private getItem(panoItem: PanoItem): PanoItem | undefined { @@ -306,11 +327,14 @@ export class PanoScrollView extends St.ScrollView { } filter(text: string | null, itemType: ItemType | null, showFavorites: boolean | null) { + this.removePseudoClasses(); + this.currentFilter = text; this.currentItemTypeFilter = itemType; this.showFavorites = showFavorites; if (!text && !itemType && null === showFavorites) { this.getItems().forEach((i) => i.show()); + this.setPseudoClasses(); return; } @@ -331,6 +355,7 @@ export class PanoScrollView extends St.ScrollView { const result = db.query(builder.build()).map((dbItem) => dbItem.id); this.getItems().forEach((item) => (result.indexOf(item.dbItem.id) >= 0 ? item.show() : item.hide())); + this.setPseudoClasses(); } focusOnClosest() { diff --git a/src/styles/stylesheet.css b/src/styles/stylesheet.css index 2af3bd0c..24d0ba92 100644 --- a/src/styles/stylesheet.css +++ b/src/styles/stylesheet.css @@ -60,10 +60,6 @@ margin-left: 12px; } -.pano-window.vertical .pano-item:first-child { - margin-top: 6px; -} - .pano-item:last-child { margin-right: 12px; } From d4d28ff1e0830acc4c96d1247438afcbf03c504d Mon Sep 17 00:00:00 2001 From: boerdereinar Date: Thu, 16 May 2024 23:50:17 +0200 Subject: [PATCH 30/45] Move file icons to header icon if headers are enabled --- src/components/filePanoItem.ts | 25 +++++++++++++++---------- src/components/panoItemHeader.ts | 21 +++++++++++++++------ 2 files changed, 30 insertions(+), 16 deletions(-) diff --git a/src/components/filePanoItem.ts b/src/components/filePanoItem.ts index e43b7b34..00e5f89b 100644 --- a/src/components/filePanoItem.ts +++ b/src/components/filePanoItem.ts @@ -10,6 +10,7 @@ import { getItemBackgroundColor } from '@pano/utils/color'; import { DBItem } from '@pano/utils/db'; import { registerGObjectClass } from '@pano/utils/gjs'; import { gettext } from '@pano/utils/shell'; +import { isVisible } from '@pano/utils/ui'; enum PreviewType { NONE = 'none', @@ -24,6 +25,7 @@ export class FilePanoItem extends PanoItem { private operation: string; private fileItemSettings: Gio.Settings; private titleContainer: St.BoxLayout; + private icon: St.Icon; private preview: St.BoxLayout | St.Label | null = null; private previewType: PreviewType = PreviewType.NONE; @@ -44,17 +46,17 @@ export class FilePanoItem extends PanoItem { yAlign: Clutter.ActorAlign.FILL, }); - const icon = new St.Icon({ + this.icon = new St.Icon({ + gicon: Gio.icon_new_for_string( + this.operation === FileOperation.CUT + ? 'edit-cut-symbolic' + : `${ext.path}/icons/hicolor/scalable/actions/paper-filled-symbolic.svg`, + ), xAlign: Clutter.ActorAlign.START, yAlign: Clutter.ActorAlign.START, styleClass: 'title-icon', }); - - if (this.operation === FileOperation.CUT) { - icon.iconName = 'edit-cut-symbolic'; - } else { - icon.gicon = Gio.icon_new_for_string(`${ext.path}/icons/hicolor/scalable/actions/paper-filled-symbolic.svg`); - } + this.header.setIcon(this.icon.gicon); const label = new St.Label({ styleClass: 'title-label', @@ -65,7 +67,7 @@ export class FilePanoItem extends PanoItem { label.clutterText.lineWrap = true; label.clutterText.ellipsize = Pango.EllipsizeMode.MIDDLE; - this.titleContainer.add_child(icon); + this.titleContainer.add_child(this.icon); const homeDir = GLib.get_home_dir(); @@ -243,17 +245,18 @@ export class FilePanoItem extends PanoItem { this.connect('activated', this.setClipboardContent.bind(this)); this.setStyle(); this.settings.connect('changed::compact-mode', this.setStyle.bind(this)); + this.settings.connect('changed::header-style', this.setStyle.bind(this)); this.fileItemSettings.connect('changed', this.setStyle.bind(this)); // Settings for controls this.settings.connect('changed::is-in-incognito', this.setStyle.bind(this)); this.settings.connect('changed::incognito-window-background-color', this.setStyle.bind(this)); this.settings.connect('changed::window-background-color', this.setStyle.bind(this)); - this.settings.connect('changed::header-style', this.setStyle.bind(this)); } private setStyle() { const compactMode = this.settings.get_boolean('compact-mode'); + const headerStyle = this.settings.get_uint('header-style'); const headerBgColor = this.fileItemSettings.get_string('header-bg-color'); const headerColor = this.fileItemSettings.get_string('header-color'); const bodyBgColor = this.fileItemSettings.get_string('body-bg-color'); @@ -276,8 +279,10 @@ export class FilePanoItem extends PanoItem { this.titleContainer.set_style( `color: ${titleColor}; font-family: ${titleFontFamily}; font-size: ${titleFontSize}px;`, ); - this.titleContainer.vertical = this.preview === null && !compactMode; + + this.icon.visible = !isVisible(headerStyle); + if (this.preview) { this.preview.visible = !compactMode; diff --git a/src/components/panoItemHeader.ts b/src/components/panoItemHeader.ts index 97b5ba5c..9bfe9d24 100644 --- a/src/components/panoItemHeader.ts +++ b/src/components/panoItemHeader.ts @@ -27,9 +27,11 @@ type FormatOptions = { export class PanoItemHeader extends St.BoxLayout { private dateUpdateIntervalId: any; private settings: Gio.Settings; + private icon: St.Icon; private titleLabel: St.Label; private dateLabel: St.Label; private titleContainer: St.BoxLayout; + private hasCustomIcon: boolean = false; constructor(ext: ExtensionBase, itemType: IPanoItemType, date: Date) { super({ @@ -39,7 +41,7 @@ export class PanoItemHeader extends St.BoxLayout { this.settings = getCurrentExtensionSettings(ext); - const icon = new St.Icon({ + this.icon = new St.Icon({ styleClass: 'pano-item-title-icon', gicon: Gio.icon_new_for_string( `${ext.path}/icons/hicolor/scalable/actions/${ICON_PACKS[this.settings.get_uint('icon-pack')]}-${ @@ -49,7 +51,9 @@ export class PanoItemHeader extends St.BoxLayout { }); this.settings.connect('changed::icon-pack', () => { - icon.set_gicon( + if (this.hasCustomIcon) return; + + this.icon.set_gicon( Gio.icon_new_for_string( `${ext.path}/icons/hicolor/scalable/actions/${ICON_PACKS[this.settings.get_uint('icon-pack')]}-${ itemType.iconPath @@ -105,25 +109,25 @@ export class PanoItemHeader extends St.BoxLayout { this.titleContainer.add_child(this.titleLabel); this.titleContainer.add_child(this.dateLabel); - this.add_child(icon); + this.add_child(this.icon); this.add_child(this.titleContainer); const themeContext = St.ThemeContext.get_for_stage(Shell.Global.get().get_stage()); const size = getHeaderHeight(this.settings.get_uint('header-style')); this.set_height(size * themeContext.scaleFactor); - icon.set_width(size * themeContext.scaleFactor); + this.icon.set_width(size * themeContext.scaleFactor); themeContext.connect('notify::scale-factor', () => { const size = getHeaderHeight(this.settings.get_uint('header-style')); this.set_height(size * themeContext.scaleFactor); - icon.set_width(size * themeContext.scaleFactor); + this.icon.set_width(size * themeContext.scaleFactor); }); this.settings.connect('changed::header-style', () => { const size = getHeaderHeight(this.settings.get_uint('header-style')); this.set_height(size * themeContext.scaleFactor); - icon.set_width(size * themeContext.scaleFactor); + this.icon.set_width(size * themeContext.scaleFactor); this.titleLabel.visible = this.settings.get_uint('header-style') !== HEADER_STYLES.COMPACT; }); @@ -143,6 +147,11 @@ export class PanoItemHeader extends St.BoxLayout { this.dateLabel.set_style(`font-family: ${itemDateFontFamily}; font-size: ${itemDateFontSize}px;`); } + setIcon(icon: Gio.Icon) { + this.hasCustomIcon = true; + this.icon.set_gicon(icon); + } + override destroy(): void { if (this.dateUpdateIntervalId) { GLib.source_remove(this.dateUpdateIntervalId); From 4e866d40cc62324e184b77b8e72b6d5be0f7b50a Mon Sep 17 00:00:00 2001 From: boerdereinar Date: Fri, 17 May 2024 00:34:32 +0200 Subject: [PATCH 31/45] Fix metadata height for link item with header --- resources/po/ar.po | 4 ++-- resources/po/bg.po | 4 ++-- resources/po/cs.po | 4 ++-- resources/po/da.po | 4 ++-- resources/po/de.po | 4 ++-- resources/po/el.po | 4 ++-- resources/po/en.po | 4 ++-- resources/po/es.po | 4 ++-- resources/po/et.po | 4 ++-- resources/po/fi.po | 4 ++-- resources/po/fr.po | 4 ++-- resources/po/he.po | 4 ++-- resources/po/hr.po | 4 ++-- resources/po/hu.po | 4 ++-- resources/po/is.po | 4 ++-- resources/po/it.po | 4 ++-- resources/po/ja.po | 4 ++-- resources/po/ko.po | 4 ++-- resources/po/nl.po | 4 ++-- resources/po/no.po | 4 ++-- resources/po/oc.po | 4 ++-- resources/po/pano@elhan.io.pot | 4 ++-- resources/po/pl.po | 4 ++-- resources/po/pt.po | 4 ++-- resources/po/pt_BR.po | 4 ++-- resources/po/ro.po | 4 ++-- resources/po/ru.po | 4 ++-- resources/po/sk.po | 4 ++-- resources/po/sv.po | 4 ++-- resources/po/tr.po | 4 ++-- resources/po/uk.po | 4 ++-- resources/po/vi.po | 4 ++-- resources/po/zh_CN.po | 4 ++-- resources/po/zh_TW.po | 4 ++-- src/components/linkPanoItem.ts | 42 ++++++++++++++++++++-------------- 35 files changed, 93 insertions(+), 85 deletions(-) diff --git a/resources/po/ar.po b/resources/po/ar.po index dbb0a72f..16c377ab 100644 --- a/resources/po/ar.po +++ b/resources/po/ar.po @@ -31,11 +31,11 @@ msgstr "الوضع المخفي" msgid "Settings" msgstr "الإعدادات" -#: src/components/filePanoItem.ts:203 +#: src/components/filePanoItem.ts:205 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:41 +#: src/components/linkPanoItem.ts:42 msgid "No Description" msgstr "" diff --git a/resources/po/bg.po b/resources/po/bg.po index 6e46ca9e..5680117b 100644 --- a/resources/po/bg.po +++ b/resources/po/bg.po @@ -31,11 +31,11 @@ msgstr "Режим \"инкогнито\"" msgid "Settings" msgstr "Настройки" -#: src/components/filePanoItem.ts:203 +#: src/components/filePanoItem.ts:205 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:41 +#: src/components/linkPanoItem.ts:42 msgid "No Description" msgstr "" diff --git a/resources/po/cs.po b/resources/po/cs.po index 75d42c2c..e59fe05e 100644 --- a/resources/po/cs.po +++ b/resources/po/cs.po @@ -31,11 +31,11 @@ msgstr "Anonymní režim" msgid "Settings" msgstr "Nastavení" -#: src/components/filePanoItem.ts:203 +#: src/components/filePanoItem.ts:205 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:41 +#: src/components/linkPanoItem.ts:42 msgid "No Description" msgstr "Bez popisu" diff --git a/resources/po/da.po b/resources/po/da.po index bf520173..f626540c 100644 --- a/resources/po/da.po +++ b/resources/po/da.po @@ -31,11 +31,11 @@ msgstr "Inkognitotilstand" msgid "Settings" msgstr "Indstillinger" -#: src/components/filePanoItem.ts:203 +#: src/components/filePanoItem.ts:205 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:41 +#: src/components/linkPanoItem.ts:42 msgid "No Description" msgstr "" diff --git a/resources/po/de.po b/resources/po/de.po index 23d73d82..ac56bd36 100644 --- a/resources/po/de.po +++ b/resources/po/de.po @@ -31,11 +31,11 @@ msgstr "Inkognito-Modus" msgid "Settings" msgstr "Einstellungen" -#: src/components/filePanoItem.ts:203 +#: src/components/filePanoItem.ts:205 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:41 +#: src/components/linkPanoItem.ts:42 msgid "No Description" msgstr "Keine Beschreibung" diff --git a/resources/po/el.po b/resources/po/el.po index 928f263e..54514f24 100644 --- a/resources/po/el.po +++ b/resources/po/el.po @@ -31,11 +31,11 @@ msgstr "Ανώνυμης" msgid "Settings" msgstr "Ρυθμίσεις" -#: src/components/filePanoItem.ts:203 +#: src/components/filePanoItem.ts:205 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:41 +#: src/components/linkPanoItem.ts:42 msgid "No Description" msgstr "" diff --git a/resources/po/en.po b/resources/po/en.po index 9d6fad0a..052be083 100644 --- a/resources/po/en.po +++ b/resources/po/en.po @@ -31,11 +31,11 @@ msgstr "Incognito Mode" msgid "Settings" msgstr "Settings" -#: src/components/filePanoItem.ts:203 +#: src/components/filePanoItem.ts:205 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:41 +#: src/components/linkPanoItem.ts:42 msgid "No Description" msgstr "" diff --git a/resources/po/es.po b/resources/po/es.po index 23c04953..db910e13 100644 --- a/resources/po/es.po +++ b/resources/po/es.po @@ -31,11 +31,11 @@ msgstr "Modo incógnito" msgid "Settings" msgstr "Configuración" -#: src/components/filePanoItem.ts:203 +#: src/components/filePanoItem.ts:205 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:41 +#: src/components/linkPanoItem.ts:42 msgid "No Description" msgstr "Sin descripción" diff --git a/resources/po/et.po b/resources/po/et.po index 2f33b494..3809d9c8 100644 --- a/resources/po/et.po +++ b/resources/po/et.po @@ -31,11 +31,11 @@ msgstr "Inkognito režiim" msgid "Settings" msgstr "Seaded" -#: src/components/filePanoItem.ts:203 +#: src/components/filePanoItem.ts:205 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:41 +#: src/components/linkPanoItem.ts:42 msgid "No Description" msgstr "" diff --git a/resources/po/fi.po b/resources/po/fi.po index eeaa3c13..4d67d072 100644 --- a/resources/po/fi.po +++ b/resources/po/fi.po @@ -31,11 +31,11 @@ msgstr "Incognito-tila" msgid "Settings" msgstr "Asetukset" -#: src/components/filePanoItem.ts:203 +#: src/components/filePanoItem.ts:205 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:41 +#: src/components/linkPanoItem.ts:42 msgid "No Description" msgstr "" diff --git a/resources/po/fr.po b/resources/po/fr.po index 52a4ec31..ea02e5e6 100644 --- a/resources/po/fr.po +++ b/resources/po/fr.po @@ -31,11 +31,11 @@ msgstr "Mode incognito" msgid "Settings" msgstr "Paramètres" -#: src/components/filePanoItem.ts:203 +#: src/components/filePanoItem.ts:205 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:41 +#: src/components/linkPanoItem.ts:42 msgid "No Description" msgstr "Aucune description" diff --git a/resources/po/he.po b/resources/po/he.po index ca71fe7f..69c7c2ec 100644 --- a/resources/po/he.po +++ b/resources/po/he.po @@ -31,11 +31,11 @@ msgstr "מצב גלישה בסתר" msgid "Settings" msgstr "הגדרות" -#: src/components/filePanoItem.ts:203 +#: src/components/filePanoItem.ts:205 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:41 +#: src/components/linkPanoItem.ts:42 msgid "No Description" msgstr "" diff --git a/resources/po/hr.po b/resources/po/hr.po index 2d465b38..23bfaba6 100644 --- a/resources/po/hr.po +++ b/resources/po/hr.po @@ -31,11 +31,11 @@ msgstr "" msgid "Settings" msgstr "" -#: src/components/filePanoItem.ts:203 +#: src/components/filePanoItem.ts:205 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:41 +#: src/components/linkPanoItem.ts:42 msgid "No Description" msgstr "" diff --git a/resources/po/hu.po b/resources/po/hu.po index 7c0c5151..dae9df3f 100644 --- a/resources/po/hu.po +++ b/resources/po/hu.po @@ -31,11 +31,11 @@ msgstr "Inkognitómód" msgid "Settings" msgstr "Beállítások" -#: src/components/filePanoItem.ts:203 +#: src/components/filePanoItem.ts:205 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:41 +#: src/components/linkPanoItem.ts:42 msgid "No Description" msgstr "" diff --git a/resources/po/is.po b/resources/po/is.po index 91e9b5af..ac85324c 100644 --- a/resources/po/is.po +++ b/resources/po/is.po @@ -31,11 +31,11 @@ msgstr "Huliðsstilling" msgid "Settings" msgstr "Stillingar" -#: src/components/filePanoItem.ts:203 +#: src/components/filePanoItem.ts:205 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:41 +#: src/components/linkPanoItem.ts:42 msgid "No Description" msgstr "" diff --git a/resources/po/it.po b/resources/po/it.po index cb22a9ee..c56c050e 100644 --- a/resources/po/it.po +++ b/resources/po/it.po @@ -31,11 +31,11 @@ msgstr "Modalità di navigazione in incognito" msgid "Settings" msgstr "Impostazioni" -#: src/components/filePanoItem.ts:203 +#: src/components/filePanoItem.ts:205 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:41 +#: src/components/linkPanoItem.ts:42 msgid "No Description" msgstr "Nessuna descrizione" diff --git a/resources/po/ja.po b/resources/po/ja.po index 86f830ce..aec93abe 100644 --- a/resources/po/ja.po +++ b/resources/po/ja.po @@ -31,11 +31,11 @@ msgstr "シークレットモード" msgid "Settings" msgstr "設定" -#: src/components/filePanoItem.ts:203 +#: src/components/filePanoItem.ts:205 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:41 +#: src/components/linkPanoItem.ts:42 msgid "No Description" msgstr "" diff --git a/resources/po/ko.po b/resources/po/ko.po index c597eb67..3a37f205 100644 --- a/resources/po/ko.po +++ b/resources/po/ko.po @@ -31,11 +31,11 @@ msgstr "시크릿 모드" msgid "Settings" msgstr "설정" -#: src/components/filePanoItem.ts:203 +#: src/components/filePanoItem.ts:205 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:41 +#: src/components/linkPanoItem.ts:42 msgid "No Description" msgstr "설명 없음" diff --git a/resources/po/nl.po b/resources/po/nl.po index 94075b40..352282b0 100644 --- a/resources/po/nl.po +++ b/resources/po/nl.po @@ -31,11 +31,11 @@ msgstr "Incognitomodus" msgid "Settings" msgstr "Voorkeuren" -#: src/components/filePanoItem.ts:203 +#: src/components/filePanoItem.ts:205 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:41 +#: src/components/linkPanoItem.ts:42 msgid "No Description" msgstr "" diff --git a/resources/po/no.po b/resources/po/no.po index 089fb7c3..f80a22d7 100644 --- a/resources/po/no.po +++ b/resources/po/no.po @@ -31,11 +31,11 @@ msgstr "Inkognitomodus" msgid "Settings" msgstr "Innstillinger" -#: src/components/filePanoItem.ts:203 +#: src/components/filePanoItem.ts:205 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:41 +#: src/components/linkPanoItem.ts:42 msgid "No Description" msgstr "" diff --git a/resources/po/oc.po b/resources/po/oc.po index 90ccaf51..c12f2dea 100644 --- a/resources/po/oc.po +++ b/resources/po/oc.po @@ -31,11 +31,11 @@ msgstr "Mòde incognito" msgid "Settings" msgstr "Paramètres" -#: src/components/filePanoItem.ts:203 +#: src/components/filePanoItem.ts:205 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:41 +#: src/components/linkPanoItem.ts:42 msgid "No Description" msgstr "" diff --git a/resources/po/pano@elhan.io.pot b/resources/po/pano@elhan.io.pot index 050fbd05..80e92181 100644 --- a/resources/po/pano@elhan.io.pot +++ b/resources/po/pano@elhan.io.pot @@ -332,7 +332,7 @@ msgstr "" msgid "Item Width" msgstr "" -#: src/components/filePanoItem.ts:203 +#: src/components/filePanoItem.ts:205 msgid "items" msgstr "" @@ -409,7 +409,7 @@ msgstr "" msgid "New shortcut" msgstr "" -#: src/components/linkPanoItem.ts:41 +#: src/components/linkPanoItem.ts:42 msgid "No Description" msgstr "" diff --git a/resources/po/pl.po b/resources/po/pl.po index 99fe3b7a..b7e27ff2 100644 --- a/resources/po/pl.po +++ b/resources/po/pl.po @@ -31,11 +31,11 @@ msgstr "Tryb Incognito" msgid "Settings" msgstr "Ustawienia" -#: src/components/filePanoItem.ts:203 +#: src/components/filePanoItem.ts:205 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:41 +#: src/components/linkPanoItem.ts:42 msgid "No Description" msgstr "" diff --git a/resources/po/pt.po b/resources/po/pt.po index 5012fb83..8e499cf4 100644 --- a/resources/po/pt.po +++ b/resources/po/pt.po @@ -31,11 +31,11 @@ msgstr "Modo de navegação anónima" msgid "Settings" msgstr "Configurações" -#: src/components/filePanoItem.ts:203 +#: src/components/filePanoItem.ts:205 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:41 +#: src/components/linkPanoItem.ts:42 msgid "No Description" msgstr "" diff --git a/resources/po/pt_BR.po b/resources/po/pt_BR.po index 3b85bb78..dcac3594 100644 --- a/resources/po/pt_BR.po +++ b/resources/po/pt_BR.po @@ -31,11 +31,11 @@ msgstr "Modo anônimo" msgid "Settings" msgstr "Configurações" -#: src/components/filePanoItem.ts:203 +#: src/components/filePanoItem.ts:205 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:41 +#: src/components/linkPanoItem.ts:42 msgid "No Description" msgstr "Sem descrição" diff --git a/resources/po/ro.po b/resources/po/ro.po index 54944fb9..e7dcb94b 100644 --- a/resources/po/ro.po +++ b/resources/po/ro.po @@ -31,11 +31,11 @@ msgstr "Modul incognito" msgid "Settings" msgstr "Setări" -#: src/components/filePanoItem.ts:203 +#: src/components/filePanoItem.ts:205 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:41 +#: src/components/linkPanoItem.ts:42 msgid "No Description" msgstr "" diff --git a/resources/po/ru.po b/resources/po/ru.po index 724bcf6b..a303b6f8 100644 --- a/resources/po/ru.po +++ b/resources/po/ru.po @@ -31,11 +31,11 @@ msgstr "Режим инкогнито" msgid "Settings" msgstr "Настройки" -#: src/components/filePanoItem.ts:203 +#: src/components/filePanoItem.ts:205 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:41 +#: src/components/linkPanoItem.ts:42 msgid "No Description" msgstr "Без описания" diff --git a/resources/po/sk.po b/resources/po/sk.po index fe6b08ba..13818b4e 100644 --- a/resources/po/sk.po +++ b/resources/po/sk.po @@ -31,11 +31,11 @@ msgstr "Režim inkognito" msgid "Settings" msgstr "Nastavenia" -#: src/components/filePanoItem.ts:203 +#: src/components/filePanoItem.ts:205 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:41 +#: src/components/linkPanoItem.ts:42 msgid "No Description" msgstr "" diff --git a/resources/po/sv.po b/resources/po/sv.po index a3cfbd4e..bd52127f 100644 --- a/resources/po/sv.po +++ b/resources/po/sv.po @@ -31,11 +31,11 @@ msgstr "Inkognitoläge" msgid "Settings" msgstr "Inställningar" -#: src/components/filePanoItem.ts:203 +#: src/components/filePanoItem.ts:205 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:41 +#: src/components/linkPanoItem.ts:42 msgid "No Description" msgstr "" diff --git a/resources/po/tr.po b/resources/po/tr.po index 98f71d59..e42b90f5 100644 --- a/resources/po/tr.po +++ b/resources/po/tr.po @@ -31,11 +31,11 @@ msgstr "Gizli Mod" msgid "Settings" msgstr "Ayarlar" -#: src/components/filePanoItem.ts:203 +#: src/components/filePanoItem.ts:205 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:41 +#: src/components/linkPanoItem.ts:42 msgid "No Description" msgstr "Açıklama Yok" diff --git a/resources/po/uk.po b/resources/po/uk.po index 262e210d..eb645197 100644 --- a/resources/po/uk.po +++ b/resources/po/uk.po @@ -31,11 +31,11 @@ msgstr "Режим інкогніто" msgid "Settings" msgstr "Параметри" -#: src/components/filePanoItem.ts:203 +#: src/components/filePanoItem.ts:205 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:41 +#: src/components/linkPanoItem.ts:42 msgid "No Description" msgstr "Без опису" diff --git a/resources/po/vi.po b/resources/po/vi.po index 8509d8f4..5778f029 100644 --- a/resources/po/vi.po +++ b/resources/po/vi.po @@ -31,11 +31,11 @@ msgstr "Chế Độ Ẩn Danh" msgid "Settings" msgstr "Cài Đặt" -#: src/components/filePanoItem.ts:203 +#: src/components/filePanoItem.ts:205 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:41 +#: src/components/linkPanoItem.ts:42 msgid "No Description" msgstr "" diff --git a/resources/po/zh_CN.po b/resources/po/zh_CN.po index 0feb730f..f48efbda 100644 --- a/resources/po/zh_CN.po +++ b/resources/po/zh_CN.po @@ -31,11 +31,11 @@ msgstr "隐身模式" msgid "Settings" msgstr "设置" -#: src/components/filePanoItem.ts:203 +#: src/components/filePanoItem.ts:205 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:41 +#: src/components/linkPanoItem.ts:42 msgid "No Description" msgstr "无详情" diff --git a/resources/po/zh_TW.po b/resources/po/zh_TW.po index 9b6bb267..b78494bc 100644 --- a/resources/po/zh_TW.po +++ b/resources/po/zh_TW.po @@ -31,11 +31,11 @@ msgstr "無痕模式" msgid "Settings" msgstr "設定" -#: src/components/filePanoItem.ts:203 +#: src/components/filePanoItem.ts:205 msgid "items" msgstr "" -#: src/components/linkPanoItem.ts:41 +#: src/components/linkPanoItem.ts:42 msgid "No Description" msgstr "無說明" diff --git a/src/components/linkPanoItem.ts b/src/components/linkPanoItem.ts index edb839be..fd4d28b0 100644 --- a/src/components/linkPanoItem.ts +++ b/src/components/linkPanoItem.ts @@ -10,6 +10,7 @@ import { DBItem } from '@pano/utils/db'; import { registerGObjectClass } from '@pano/utils/gjs'; import { getCachePath, gettext, openLinkInBrowser } from '@pano/utils/shell'; import { orientationCompatibility } from '@pano/utils/shell_compatibility'; +import { isVisible } from '@pano/utils/ui'; const DEFAULT_LINK_PREVIEW_IMAGE_NAME = 'link-preview.svg'; @@ -43,29 +44,13 @@ export class LinkPanoItem extends PanoItem { descriptionText = decodeURI(description); } - this.metaContainer = new St.BoxLayout({ - styleClass: 'meta-container', - ...orientationCompatibility(true), - xExpand: true, - yExpand: false, - yAlign: Clutter.ActorAlign.CENTER, - xAlign: Clutter.ActorAlign.FILL, - }); - - this.titleLabel = new St.Label({ text: titleText, styleClass: 'link-title-label' }); - - this.descriptionLabel = new St.Label({ text: descriptionText, styleClass: 'link-description-label' }); - this.descriptionLabel.clutterText.singleLineMode = true; - - this.linkLabel = new St.Label({ text: this.dbItem.content, styleClass: 'link-label' }); - let imageFilePath = `file:///${ext.path}/images/${DEFAULT_LINK_PREVIEW_IMAGE_NAME}`; if (image && Gio.File.new_for_uri(`file://${getCachePath(ext)}/${image}.png`).query_exists(null)) { imageFilePath = `file://${getCachePath(ext)}/${image}.png`; } this.imageContainer = new St.BoxLayout({ - ...orientationCompatibility(true), + vertical: true, xExpand: true, yExpand: true, yAlign: Clutter.ActorAlign.FILL, @@ -74,6 +59,24 @@ export class LinkPanoItem extends PanoItem { style: `background-image: url(${imageFilePath});`, }); + this.metaContainer = new St.BoxLayout({ + styleClass: 'meta-container', + ...orientationCompatibility(true), + xExpand: true, + yExpand: false, + yAlign: Clutter.ActorAlign.END, + xAlign: Clutter.ActorAlign.FILL, + }); + + this.titleLabel = new St.Label({ text: titleText, styleClass: 'link-title-label' }); + + this.descriptionLabel = new St.Label({ text: descriptionText, styleClass: 'link-description-label' }); + this.descriptionLabel.clutterText.singleLineMode = true; + + this.linkLabel = new St.Label({ + text: this.dbItem.content, + styleClass: 'link-label', + }); this.metaContainer.add_child(this.titleLabel); this.metaContainer.add_child(this.descriptionLabel); this.metaContainer.add_child(this.linkLabel); @@ -92,6 +95,7 @@ export class LinkPanoItem extends PanoItem { this.setCompactMode(); this.setStyle(); }); + this.settings.connect('changed::header-style', this.setCompactMode.bind(this)); this.settings.connect('changed::item-height', this.setCompactMode.bind(this)); const openLinkIcon = new St.Icon({ @@ -138,10 +142,14 @@ export class LinkPanoItem extends PanoItem { if (this.settings.get_boolean('compact-mode')) { this.body.vertical = false; this.imageContainer.width = this.settings.get_int('item-height') * 0.5; + this.metaContainer.yAlign = Clutter.ActorAlign.CENTER; } else { this.body.vertical = true; this.imageContainer.width = -1; + this.metaContainer.yAlign = Clutter.ActorAlign.END; } + + this.metaContainer.yExpand = isVisible(this.settings.get_uint('header-style')); } private setStyle() { From 62a526d72959b4c32a209c3e90108538482ba090 Mon Sep 17 00:00:00 2001 From: boerdereinar Date: Fri, 17 May 2024 02:50:49 +0200 Subject: [PATCH 32/45] Fix window height not updating + update resource files --- src/containers/panoWindow.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/containers/panoWindow.ts b/src/containers/panoWindow.ts index 9bc879ca..ad21b9cc 100644 --- a/src/containers/panoWindow.ts +++ b/src/containers/panoWindow.ts @@ -59,6 +59,7 @@ export class PanoWindow extends St.BoxLayout { this.setAlignment(); this.setStyle(); }); + this.settings.connect('changed::window-height', () => this.setWindowDimensions(themeContext.scaleFactor)); this.settings.connect('changed::window-floating', this.setStyle.bind(this)); this.settings.connect('changed::window-margin-left', this.setStyle.bind(this)); this.settings.connect('changed::window-margin-right', this.setStyle.bind(this)); From cc03d1b18501e5c67fbf9e48ad8f2db0b83b2309 Mon Sep 17 00:00:00 2001 From: boerdereinar Date: Tue, 21 May 2024 14:05:33 +0200 Subject: [PATCH 33/45] Add favorite indicator + modify file icon placement and link preview style in compact mode --- src/components/filePanoItem.ts | 8 +++++ src/components/linkPanoItem.ts | 3 +- src/components/panoItemOverlay.ts | 18 ++++++++++ src/styles/stylesheet.css | 58 ++++++++++++++++++++----------- src/utils/color.ts | 5 +-- 5 files changed, 68 insertions(+), 24 deletions(-) diff --git a/src/components/filePanoItem.ts b/src/components/filePanoItem.ts index 00e5f89b..59a9ff1e 100644 --- a/src/components/filePanoItem.ts +++ b/src/components/filePanoItem.ts @@ -281,6 +281,14 @@ export class FilePanoItem extends PanoItem { ); this.titleContainer.vertical = this.preview === null && !compactMode; + // Switch title and icon + if (compactMode !== (this.titleContainer.firstChild !== this.icon)) { + const children = this.titleContainer.get_children(); + this.titleContainer.remove_all_children(); + this.titleContainer.add_child(children[1]!); + this.titleContainer.add_child(children[0]!); + } + this.icon.visible = !isVisible(headerStyle); if (this.preview) { diff --git a/src/components/linkPanoItem.ts b/src/components/linkPanoItem.ts index fd4d28b0..dfdf849a 100644 --- a/src/components/linkPanoItem.ts +++ b/src/components/linkPanoItem.ts @@ -96,7 +96,6 @@ export class LinkPanoItem extends PanoItem { this.setStyle(); }); this.settings.connect('changed::header-style', this.setCompactMode.bind(this)); - this.settings.connect('changed::item-height', this.setCompactMode.bind(this)); const openLinkIcon = new St.Icon({ iconName: 'web-browser-symbolic', @@ -141,7 +140,7 @@ export class LinkPanoItem extends PanoItem { private setCompactMode() { if (this.settings.get_boolean('compact-mode')) { this.body.vertical = false; - this.imageContainer.width = this.settings.get_int('item-height') * 0.5; + this.imageContainer.width = this.settings.get_int('item-width') * 0.3; this.metaContainer.yAlign = Clutter.ActorAlign.CENTER; } else { this.body.vertical = true; diff --git a/src/components/panoItemOverlay.ts b/src/components/panoItemOverlay.ts index 1e95bada..ae73c5da 100644 --- a/src/components/panoItemOverlay.ts +++ b/src/components/panoItemOverlay.ts @@ -17,7 +17,10 @@ export class PanoItemOverlay extends St.BoxLayout { Signals: { 'on-remove': {}, 'on-favorite': {} }, }; + private isVisible = false; + private isFavorite = false; private favoriteButton: St.Button; + private favoriteIcon: St.Icon; actionContainer: St.BoxLayout; constructor() { @@ -68,11 +71,22 @@ export class PanoItemOverlay extends St.BoxLayout { this.actionContainer.add_child(this.favoriteButton); this.actionContainer.add_child(removeButton); + this.favoriteIcon = new St.Icon({ + styleClass: 'pano-favorite-icon', + iconName: 'view-pin-symbolic', + xExpand: true, + yExpand: true, + xAlign: Clutter.ActorAlign.END, + yAlign: Clutter.ActorAlign.START, + }); + this.add_child(this.actionContainer); + this.add_child(this.favoriteIcon); } setControlsBackground(color: string): void { this.actionContainer.set_style(`background-color: ${color}`); + this.favoriteIcon.set_style(`background-color: ${color};`); const buttonColor = isDark(color) ? 'rgba(255, 255, 255, 0.15)' : 'rgba(0, 0, 0, 0.15)'; for (const child of this.actionContainer.get_children()) { if (child instanceof St.Button) { @@ -82,10 +96,14 @@ export class PanoItemOverlay extends St.BoxLayout { } setVisibility(isVisible: boolean): void { + this.isVisible = isVisible; this.actionContainer.visible = isVisible; + this.favoriteIcon.visible = !isVisible && this.isFavorite; } setFavorite(isFavorite: boolean): void { + this.isFavorite = isFavorite; + this.favoriteIcon.visible = !this.isVisible && isFavorite; if (isFavorite) { this.favoriteButton.add_style_pseudo_class('active'); } else { diff --git a/src/styles/stylesheet.css b/src/styles/stylesheet.css index 24d0ba92..3aa393a0 100644 --- a/src/styles/stylesheet.css +++ b/src/styles/stylesheet.css @@ -49,7 +49,6 @@ border-radius: 16px; margin: 6px 0px 12px 6px; border: 4px solid transparent; - box-shadow: 0 0 4px rgba(0, 0, 0, 0.1); } .pano-window.vertical .pano-item { @@ -68,12 +67,9 @@ margin-bottom: 12px; } -.pano-item:hover { - box-shadow: none; -} - .pano-item-container { border-radius: 12px; + box-shadow: 0 0 4px rgba(0, 0, 0, 0.1); } /* Overlay */ @@ -124,13 +120,21 @@ background-color: #c01c28; } +.pano-favorite-icon { + padding: 6px; + width: 12px; + height: 12px; + border-radius: 999px; + color: rgba(255, 255, 255, 0.75); +} + /* Header */ .pano-item-header { border-radius: 12px 12px 0px 0px; } .pano-item-title-icon { - padding: 4px; + padding: 8px; } .pano-item-title { @@ -148,10 +152,14 @@ /* Code Item */ .pano-item-code .pano-item-body-code-content { - margin: 12px; + margin: 12px 16px; tab-size: 2; } +.pano-item-code.compact .pano-item-body-code-content { + margin: 8px 12px 2px 12px; +} + /* Link Item */ .pano-item-link { padding: 0px; @@ -162,24 +170,21 @@ } .pano-item-link.compact .image-container { - border-radius: 0px 0px 0px 12px; + margin: 4px; + border-radius: 7px !important; } .pano-item-link .pano-item-body:first-child .image-container { border-radius: 12px 12px 0px 0px; } -.pano-item-link.compact .pano-item-body:first-child .image-container { - border-radius: 12px 0px 0px 12px; -} - .pano-item-link .meta-container { padding: 10px; border-radius: 0px 0px 12px 12px; } .pano-item-link.compact .meta-container { - padding: 0 10px; + padding: 0 8px 0 4px; border-radius: 0px 12px 12px 0px; } @@ -219,21 +224,34 @@ /* File Item */ .pano-item-file .title-container { - margin: 5px 10px 0 10px; + margin: 8px 12px 0 12px; height: 2.8em; } -.pano-item-file.no-preview .title-container, +.pano-item-file.no-preview .title-container { + height: auto; +} + .pano-item-file.compact .title-container { + margin-right: 8px; height: auto; } .pano-item-file .title-icon { - margin-top: 5px; - margin-bottom: 5px; - margin-right: 10px; - width: 2em; - height: 2em; + margin: 5px 10px 5px 0; + width: 1.75em; + height: 1.75em; +} + +.pano-item-file.no-preview .title-icon { + margin-bottom: 10px; +} + +.pano-item-file.compact .title-icon { + margin: 0 0 2px 5px; + padding: 0; + width: 1.125em; + height: 1.125em; } .pano-item-file .title-label { diff --git a/src/utils/color.ts b/src/utils/color.ts index 47601857..38b9a93f 100644 --- a/src/utils/color.ts +++ b/src/utils/color.ts @@ -31,11 +31,12 @@ export function getItemBackgroundColor(settings: Gio.Settings, headerColor: stri ? settings.get_string('incognito-window-background-color') : settings.get_string('window-background-color'); + // rgba(0, 0, 0, 0.1) is the box-shadow color if (isVisible(settings.get_uint('header-style'))) { - return mixColor(windowColor, headerColor); + return mixColor(mixColor(windowColor, 'rgba(0, 0, 0, 0.1)'), headerColor); } else if (bodyColor === null) { return windowColor; } else { - return mixColor(windowColor, bodyColor); + return mixColor(mixColor(windowColor, 'rgba(0, 0, 0, 0.1)'), bodyColor); } } From b4d1c9f1c494696196de04526bec65cbfbbe7299 Mon Sep 17 00:00:00 2001 From: boerdereinar Date: Thu, 23 May 2024 02:16:19 +0200 Subject: [PATCH 34/45] Fix shortcuts --- src/components/linkPanoItem.ts | 14 ++++---- src/components/panoItem.ts | 61 ++++++++++++++++---------------- src/components/panoScrollView.ts | 4 --- 3 files changed, 37 insertions(+), 42 deletions(-) diff --git a/src/components/linkPanoItem.ts b/src/components/linkPanoItem.ts index dfdf849a..ec9942d6 100644 --- a/src/components/linkPanoItem.ts +++ b/src/components/linkPanoItem.ts @@ -187,30 +187,30 @@ export class LinkPanoItem extends PanoItem { } override vfunc_key_press_event(event: Clutter.Event): boolean { - super.vfunc_key_press_event(event); if ( this.settings.get_boolean('open-links-in-browser') && - event.get_state() === Clutter.ModifierType.CONTROL_MASK && + event.has_control_modifier() && (event.get_key_symbol() === Clutter.KEY_Return || event.get_key_symbol() === Clutter.KEY_ISO_Enter || event.get_key_symbol() === Clutter.KEY_KP_Enter) ) { openLinkInBrowser(this.dbItem.content); + return Clutter.EVENT_STOP; } - return Clutter.EVENT_PROPAGATE; + return super.vfunc_key_press_event(event); } override vfunc_button_release_event(event: Clutter.Event): boolean { - super.vfunc_button_release_event(event); if ( - event.get_button() === 1 && - event.get_state() === Clutter.ModifierType.CONTROL_MASK && + event.get_button() === Clutter.BUTTON_PRIMARY && + event.has_control_modifier() && this.settings.get_boolean('open-links-in-browser') ) { openLinkInBrowser(this.dbItem.content); + return Clutter.EVENT_STOP; } - return Clutter.EVENT_PROPAGATE; + return super.vfunc_button_release_event(event); } } diff --git a/src/components/panoItem.ts b/src/components/panoItem.ts index 6e48f4b1..9bb46e17 100644 --- a/src/components/panoItem.ts +++ b/src/components/panoItem.ts @@ -88,10 +88,6 @@ export class PanoItem extends St.Widget { this.connect('activated', () => { this.get_parent()?.get_parent()?.get_parent()?.hide(); - if (this.dbItem.itemType === 'LINK' && this.settings.get_boolean('open-links-in-browser')) { - return; - } - if (this.settings.get_boolean('paste-on-select') && this.clipboardManager.isTracking) { // See https://github.com/SUPERCILEX/gnome-clipboard-history/blob/master/extension.js#L606 this.timeoutId = GLib.timeout_add(GLib.PRIORITY_DEFAULT, 250, () => { @@ -244,38 +240,41 @@ export class PanoItem extends St.Widget { } override vfunc_key_press_event(event: Clutter.Event): boolean { - if ( - event.get_key_symbol() === Clutter.KEY_Return || - event.get_key_symbol() === Clutter.KEY_ISO_Enter || - event.get_key_symbol() === Clutter.KEY_KP_Enter - ) { - this.emit('activated'); - return Clutter.EVENT_STOP; - } - if (event.get_key_symbol() === Clutter.KEY_Delete || event.get_key_symbol() === Clutter.KEY_KP_Delete) { - this.emit('on-remove', JSON.stringify(this.dbItem)); - return Clutter.EVENT_STOP; - } - if ( - (event.get_key_symbol() === Clutter.KEY_S || event.get_key_symbol() === Clutter.KEY_s) && - event.get_state() === Clutter.ModifierType.CONTROL_MASK - ) { - this.dbItem = { ...this.dbItem, isFavorite: !this.dbItem.isFavorite }; - this.emit('on-favorite', JSON.stringify(this.dbItem)); - return Clutter.EVENT_STOP; + switch (event.get_key_symbol()) { + case Clutter.KEY_Return: + case Clutter.KEY_ISO_Enter: + case Clutter.KEY_KP_Enter: + this.emit('activated'); + return Clutter.EVENT_STOP; + + case Clutter.KEY_Delete: + case Clutter.KEY_KP_Delete: + this.emit('on-remove', JSON.stringify(this.dbItem)); + return Clutter.EVENT_STOP; + + case Clutter.KEY_S: + case Clutter.KEY_s: + if (event.has_control_modifier()) { + this.dbItem = { ...this.dbItem, isFavorite: !this.dbItem.isFavorite }; + this.emit('on-favorite', JSON.stringify(this.dbItem)); + return Clutter.EVENT_STOP; + } + break; } + return Clutter.EVENT_PROPAGATE; } override vfunc_button_release_event(event: Clutter.Event): boolean { - if (event.get_button() === Clutter.BUTTON_PRIMARY) { - this.emit('activated'); - return Clutter.EVENT_STOP; - } - - // Delete item on middle click - if (this.settings.get_boolean('remove-on-middle-click') && event.get_button() === Clutter.BUTTON_MIDDLE) { - this.emit('on-remove', JSON.stringify(this.dbItem)); + switch (event.get_button()) { + case Clutter.BUTTON_PRIMARY: + this.emit('activated'); + return Clutter.EVENT_STOP; + + // Delete item on middle click + case Clutter.BUTTON_MIDDLE: + this.emit('on-remove', JSON.stringify(this.dbItem)); + return Clutter.EVENT_STOP; } return Clutter.EVENT_PROPAGATE; diff --git a/src/components/panoScrollView.ts b/src/components/panoScrollView.ts index cb58dcfb..031d2912 100644 --- a/src/components/panoScrollView.ts +++ b/src/components/panoScrollView.ts @@ -118,10 +118,6 @@ export class PanoScrollView extends St.ScrollView { return Clutter.EVENT_STOP; } - if (event.get_state()) { - return Clutter.EVENT_PROPAGATE; - } - if (shouldFocusOut(event.get_key_symbol())) { this.emit('scroll-focus-out'); return Clutter.EVENT_STOP; From 56d926e826c8fc7938aa3fcc6d489897b76bac04 Mon Sep 17 00:00:00 2001 From: boerdereinar Date: Thu, 23 May 2024 16:29:51 +0200 Subject: [PATCH 35/45] Add paste file content functionality to text file items Can be triggered by: 1. Pressing the action button 2. Ctrl + click on the item 3. Ctrl + enter on the item --- resources/po/ar.po | 2 +- resources/po/bg.po | 2 +- resources/po/cs.po | 2 +- resources/po/da.po | 2 +- resources/po/de.po | 2 +- resources/po/el.po | 2 +- resources/po/en.po | 2 +- resources/po/es.po | 2 +- resources/po/et.po | 2 +- resources/po/fi.po | 2 +- resources/po/fr.po | 2 +- resources/po/he.po | 2 +- resources/po/hr.po | 2 +- resources/po/hu.po | 2 +- resources/po/is.po | 2 +- resources/po/it.po | 2 +- resources/po/ja.po | 2 +- resources/po/ko.po | 2 +- resources/po/nl.po | 2 +- resources/po/no.po | 2 +- resources/po/oc.po | 2 +- resources/po/pano@elhan.io.pot | 2 +- resources/po/pl.po | 2 +- resources/po/pt.po | 2 +- resources/po/pt_BR.po | 2 +- resources/po/ro.po | 2 +- resources/po/ru.po | 2 +- resources/po/sk.po | 2 +- resources/po/sv.po | 2 +- resources/po/tr.po | 2 +- resources/po/uk.po | 2 +- resources/po/vi.po | 2 +- resources/po/zh_CN.po | 2 +- resources/po/zh_TW.po | 2 +- src/components/filePanoItem.ts | 137 +++++++++++++++++++++++++++------ src/styles/stylesheet.css | 4 + src/utils/clipboardManager.ts | 7 +- 37 files changed, 159 insertions(+), 57 deletions(-) diff --git a/resources/po/ar.po b/resources/po/ar.po index 16c377ab..995a5483 100644 --- a/resources/po/ar.po +++ b/resources/po/ar.po @@ -31,7 +31,7 @@ msgstr "الوضع المخفي" msgid "Settings" msgstr "الإعدادات" -#: src/components/filePanoItem.ts:205 +#: src/components/filePanoItem.ts:206 msgid "items" msgstr "" diff --git a/resources/po/bg.po b/resources/po/bg.po index 5680117b..13d9a919 100644 --- a/resources/po/bg.po +++ b/resources/po/bg.po @@ -31,7 +31,7 @@ msgstr "Режим \"инкогнито\"" msgid "Settings" msgstr "Настройки" -#: src/components/filePanoItem.ts:205 +#: src/components/filePanoItem.ts:206 msgid "items" msgstr "" diff --git a/resources/po/cs.po b/resources/po/cs.po index e59fe05e..cff29cf2 100644 --- a/resources/po/cs.po +++ b/resources/po/cs.po @@ -31,7 +31,7 @@ msgstr "Anonymní režim" msgid "Settings" msgstr "Nastavení" -#: src/components/filePanoItem.ts:205 +#: src/components/filePanoItem.ts:206 msgid "items" msgstr "" diff --git a/resources/po/da.po b/resources/po/da.po index f626540c..1d08a927 100644 --- a/resources/po/da.po +++ b/resources/po/da.po @@ -31,7 +31,7 @@ msgstr "Inkognitotilstand" msgid "Settings" msgstr "Indstillinger" -#: src/components/filePanoItem.ts:205 +#: src/components/filePanoItem.ts:206 msgid "items" msgstr "" diff --git a/resources/po/de.po b/resources/po/de.po index ac56bd36..1b9b8f11 100644 --- a/resources/po/de.po +++ b/resources/po/de.po @@ -31,7 +31,7 @@ msgstr "Inkognito-Modus" msgid "Settings" msgstr "Einstellungen" -#: src/components/filePanoItem.ts:205 +#: src/components/filePanoItem.ts:206 msgid "items" msgstr "" diff --git a/resources/po/el.po b/resources/po/el.po index 54514f24..6765513c 100644 --- a/resources/po/el.po +++ b/resources/po/el.po @@ -31,7 +31,7 @@ msgstr "Ανώνυμης" msgid "Settings" msgstr "Ρυθμίσεις" -#: src/components/filePanoItem.ts:205 +#: src/components/filePanoItem.ts:206 msgid "items" msgstr "" diff --git a/resources/po/en.po b/resources/po/en.po index 052be083..8503fa35 100644 --- a/resources/po/en.po +++ b/resources/po/en.po @@ -31,7 +31,7 @@ msgstr "Incognito Mode" msgid "Settings" msgstr "Settings" -#: src/components/filePanoItem.ts:205 +#: src/components/filePanoItem.ts:206 msgid "items" msgstr "" diff --git a/resources/po/es.po b/resources/po/es.po index db910e13..239e9b36 100644 --- a/resources/po/es.po +++ b/resources/po/es.po @@ -31,7 +31,7 @@ msgstr "Modo incógnito" msgid "Settings" msgstr "Configuración" -#: src/components/filePanoItem.ts:205 +#: src/components/filePanoItem.ts:206 msgid "items" msgstr "" diff --git a/resources/po/et.po b/resources/po/et.po index 3809d9c8..fa1c798a 100644 --- a/resources/po/et.po +++ b/resources/po/et.po @@ -31,7 +31,7 @@ msgstr "Inkognito režiim" msgid "Settings" msgstr "Seaded" -#: src/components/filePanoItem.ts:205 +#: src/components/filePanoItem.ts:206 msgid "items" msgstr "" diff --git a/resources/po/fi.po b/resources/po/fi.po index 4d67d072..12346f0e 100644 --- a/resources/po/fi.po +++ b/resources/po/fi.po @@ -31,7 +31,7 @@ msgstr "Incognito-tila" msgid "Settings" msgstr "Asetukset" -#: src/components/filePanoItem.ts:205 +#: src/components/filePanoItem.ts:206 msgid "items" msgstr "" diff --git a/resources/po/fr.po b/resources/po/fr.po index ea02e5e6..ed48b9d6 100644 --- a/resources/po/fr.po +++ b/resources/po/fr.po @@ -31,7 +31,7 @@ msgstr "Mode incognito" msgid "Settings" msgstr "Paramètres" -#: src/components/filePanoItem.ts:205 +#: src/components/filePanoItem.ts:206 msgid "items" msgstr "" diff --git a/resources/po/he.po b/resources/po/he.po index 69c7c2ec..92c9d449 100644 --- a/resources/po/he.po +++ b/resources/po/he.po @@ -31,7 +31,7 @@ msgstr "מצב גלישה בסתר" msgid "Settings" msgstr "הגדרות" -#: src/components/filePanoItem.ts:205 +#: src/components/filePanoItem.ts:206 msgid "items" msgstr "" diff --git a/resources/po/hr.po b/resources/po/hr.po index 23bfaba6..08338437 100644 --- a/resources/po/hr.po +++ b/resources/po/hr.po @@ -31,7 +31,7 @@ msgstr "" msgid "Settings" msgstr "" -#: src/components/filePanoItem.ts:205 +#: src/components/filePanoItem.ts:206 msgid "items" msgstr "" diff --git a/resources/po/hu.po b/resources/po/hu.po index dae9df3f..8febf7f8 100644 --- a/resources/po/hu.po +++ b/resources/po/hu.po @@ -31,7 +31,7 @@ msgstr "Inkognitómód" msgid "Settings" msgstr "Beállítások" -#: src/components/filePanoItem.ts:205 +#: src/components/filePanoItem.ts:206 msgid "items" msgstr "" diff --git a/resources/po/is.po b/resources/po/is.po index ac85324c..f02d323b 100644 --- a/resources/po/is.po +++ b/resources/po/is.po @@ -31,7 +31,7 @@ msgstr "Huliðsstilling" msgid "Settings" msgstr "Stillingar" -#: src/components/filePanoItem.ts:205 +#: src/components/filePanoItem.ts:206 msgid "items" msgstr "" diff --git a/resources/po/it.po b/resources/po/it.po index c56c050e..8cfa313e 100644 --- a/resources/po/it.po +++ b/resources/po/it.po @@ -31,7 +31,7 @@ msgstr "Modalità di navigazione in incognito" msgid "Settings" msgstr "Impostazioni" -#: src/components/filePanoItem.ts:205 +#: src/components/filePanoItem.ts:206 msgid "items" msgstr "" diff --git a/resources/po/ja.po b/resources/po/ja.po index aec93abe..346317c6 100644 --- a/resources/po/ja.po +++ b/resources/po/ja.po @@ -31,7 +31,7 @@ msgstr "シークレットモード" msgid "Settings" msgstr "設定" -#: src/components/filePanoItem.ts:205 +#: src/components/filePanoItem.ts:206 msgid "items" msgstr "" diff --git a/resources/po/ko.po b/resources/po/ko.po index 3a37f205..140cc949 100644 --- a/resources/po/ko.po +++ b/resources/po/ko.po @@ -31,7 +31,7 @@ msgstr "시크릿 모드" msgid "Settings" msgstr "설정" -#: src/components/filePanoItem.ts:205 +#: src/components/filePanoItem.ts:206 msgid "items" msgstr "" diff --git a/resources/po/nl.po b/resources/po/nl.po index 352282b0..1a7869f8 100644 --- a/resources/po/nl.po +++ b/resources/po/nl.po @@ -31,7 +31,7 @@ msgstr "Incognitomodus" msgid "Settings" msgstr "Voorkeuren" -#: src/components/filePanoItem.ts:205 +#: src/components/filePanoItem.ts:206 msgid "items" msgstr "" diff --git a/resources/po/no.po b/resources/po/no.po index f80a22d7..030aa7e6 100644 --- a/resources/po/no.po +++ b/resources/po/no.po @@ -31,7 +31,7 @@ msgstr "Inkognitomodus" msgid "Settings" msgstr "Innstillinger" -#: src/components/filePanoItem.ts:205 +#: src/components/filePanoItem.ts:206 msgid "items" msgstr "" diff --git a/resources/po/oc.po b/resources/po/oc.po index c12f2dea..e9283bc2 100644 --- a/resources/po/oc.po +++ b/resources/po/oc.po @@ -31,7 +31,7 @@ msgstr "Mòde incognito" msgid "Settings" msgstr "Paramètres" -#: src/components/filePanoItem.ts:205 +#: src/components/filePanoItem.ts:206 msgid "items" msgstr "" diff --git a/resources/po/pano@elhan.io.pot b/resources/po/pano@elhan.io.pot index 80e92181..48ff3f02 100644 --- a/resources/po/pano@elhan.io.pot +++ b/resources/po/pano@elhan.io.pot @@ -332,7 +332,7 @@ msgstr "" msgid "Item Width" msgstr "" -#: src/components/filePanoItem.ts:205 +#: src/components/filePanoItem.ts:206 msgid "items" msgstr "" diff --git a/resources/po/pl.po b/resources/po/pl.po index b7e27ff2..97b9ebbd 100644 --- a/resources/po/pl.po +++ b/resources/po/pl.po @@ -31,7 +31,7 @@ msgstr "Tryb Incognito" msgid "Settings" msgstr "Ustawienia" -#: src/components/filePanoItem.ts:205 +#: src/components/filePanoItem.ts:206 msgid "items" msgstr "" diff --git a/resources/po/pt.po b/resources/po/pt.po index 8e499cf4..36946cce 100644 --- a/resources/po/pt.po +++ b/resources/po/pt.po @@ -31,7 +31,7 @@ msgstr "Modo de navegação anónima" msgid "Settings" msgstr "Configurações" -#: src/components/filePanoItem.ts:205 +#: src/components/filePanoItem.ts:206 msgid "items" msgstr "" diff --git a/resources/po/pt_BR.po b/resources/po/pt_BR.po index dcac3594..b56acc5f 100644 --- a/resources/po/pt_BR.po +++ b/resources/po/pt_BR.po @@ -31,7 +31,7 @@ msgstr "Modo anônimo" msgid "Settings" msgstr "Configurações" -#: src/components/filePanoItem.ts:205 +#: src/components/filePanoItem.ts:206 msgid "items" msgstr "" diff --git a/resources/po/ro.po b/resources/po/ro.po index e7dcb94b..6b54fe1e 100644 --- a/resources/po/ro.po +++ b/resources/po/ro.po @@ -31,7 +31,7 @@ msgstr "Modul incognito" msgid "Settings" msgstr "Setări" -#: src/components/filePanoItem.ts:205 +#: src/components/filePanoItem.ts:206 msgid "items" msgstr "" diff --git a/resources/po/ru.po b/resources/po/ru.po index a303b6f8..10777754 100644 --- a/resources/po/ru.po +++ b/resources/po/ru.po @@ -31,7 +31,7 @@ msgstr "Режим инкогнито" msgid "Settings" msgstr "Настройки" -#: src/components/filePanoItem.ts:205 +#: src/components/filePanoItem.ts:206 msgid "items" msgstr "" diff --git a/resources/po/sk.po b/resources/po/sk.po index 13818b4e..30956cee 100644 --- a/resources/po/sk.po +++ b/resources/po/sk.po @@ -31,7 +31,7 @@ msgstr "Režim inkognito" msgid "Settings" msgstr "Nastavenia" -#: src/components/filePanoItem.ts:205 +#: src/components/filePanoItem.ts:206 msgid "items" msgstr "" diff --git a/resources/po/sv.po b/resources/po/sv.po index bd52127f..5f2d834d 100644 --- a/resources/po/sv.po +++ b/resources/po/sv.po @@ -31,7 +31,7 @@ msgstr "Inkognitoläge" msgid "Settings" msgstr "Inställningar" -#: src/components/filePanoItem.ts:205 +#: src/components/filePanoItem.ts:206 msgid "items" msgstr "" diff --git a/resources/po/tr.po b/resources/po/tr.po index e42b90f5..867c44fa 100644 --- a/resources/po/tr.po +++ b/resources/po/tr.po @@ -31,7 +31,7 @@ msgstr "Gizli Mod" msgid "Settings" msgstr "Ayarlar" -#: src/components/filePanoItem.ts:205 +#: src/components/filePanoItem.ts:206 msgid "items" msgstr "" diff --git a/resources/po/uk.po b/resources/po/uk.po index eb645197..722498d8 100644 --- a/resources/po/uk.po +++ b/resources/po/uk.po @@ -31,7 +31,7 @@ msgstr "Режим інкогніто" msgid "Settings" msgstr "Параметри" -#: src/components/filePanoItem.ts:205 +#: src/components/filePanoItem.ts:206 msgid "items" msgstr "" diff --git a/resources/po/vi.po b/resources/po/vi.po index 5778f029..98ae20c9 100644 --- a/resources/po/vi.po +++ b/resources/po/vi.po @@ -31,7 +31,7 @@ msgstr "Chế Độ Ẩn Danh" msgid "Settings" msgstr "Cài Đặt" -#: src/components/filePanoItem.ts:205 +#: src/components/filePanoItem.ts:206 msgid "items" msgstr "" diff --git a/resources/po/zh_CN.po b/resources/po/zh_CN.po index f48efbda..871890ad 100644 --- a/resources/po/zh_CN.po +++ b/resources/po/zh_CN.po @@ -31,7 +31,7 @@ msgstr "隐身模式" msgid "Settings" msgstr "设置" -#: src/components/filePanoItem.ts:205 +#: src/components/filePanoItem.ts:206 msgid "items" msgstr "" diff --git a/resources/po/zh_TW.po b/resources/po/zh_TW.po index b78494bc..f200d46a 100644 --- a/resources/po/zh_TW.po +++ b/resources/po/zh_TW.po @@ -31,7 +31,7 @@ msgstr "無痕模式" msgid "Settings" msgstr "設定" -#: src/components/filePanoItem.ts:205 +#: src/components/filePanoItem.ts:206 msgid "items" msgstr "" diff --git a/src/components/filePanoItem.ts b/src/components/filePanoItem.ts index 59a9ff1e..7ee24a4c 100644 --- a/src/components/filePanoItem.ts +++ b/src/components/filePanoItem.ts @@ -28,6 +28,7 @@ export class FilePanoItem extends PanoItem { private icon: St.Icon; private preview: St.BoxLayout | St.Label | null = null; private previewType: PreviewType = PreviewType.NONE; + private pasteContent: boolean = false; constructor(ext: ExtensionBase, clipboardManager: ClipboardManager, dbItem: DBItem) { super(ext, clipboardManager, dbItem); @@ -97,22 +98,8 @@ export class FilePanoItem extends PanoItem { if (Gio.content_type_is_a(contentType, 'text/plain')) { // Text - let fileStream: Gio.FileInputStream | null = null; - try { - fileStream = file.read(null); - const stream = new Gio.DataInputStream({ baseStream: fileStream }); - - let text = ''; - for (let i = 0; i < 30; i++) { - const line = stream.read_line_utf8(null)[0]; - if (line !== null) { - if (i > 0) text += '\n'; - text += line; - } else { - break; - } - } - + const text = FilePanoItem.getFileContents(file, 32); + if (text !== null) { this.preview = new St.Label({ text: text, styleClass: 'copied-file-preview copied-file-preview-text', @@ -125,10 +112,24 @@ export class FilePanoItem extends PanoItem { this.preview.clutterText.lineWrap = false; this.preview.clutterText.ellipsize = Pango.EllipsizeMode.END; this.previewType = PreviewType.TEXT; - } catch (e) { - console.error(e); - } finally { - fileStream?.close(null); + + const pasteFileContentIcon = new St.Icon({ + iconName: 'preferences-desktop-font-symbolic', + styleClass: 'pano-item-action-button-icon', + }); + + const pasteFileContentButton = new St.Button({ + styleClass: 'pano-item-action-button pano-item-paste-content-button', + child: pasteFileContentIcon, + }); + + pasteFileContentButton.connect('clicked', () => { + this.pasteContent = true; + this.emit('activated'); + return Clutter.EVENT_STOP; + }); + + this.overlay.actionContainer.insert_child_at_index(pasteFileContentButton, 0); } } else if (Gio.content_type_is_a(contentType, 'image/*')) { // Images @@ -294,11 +295,11 @@ export class FilePanoItem extends PanoItem { if (this.preview) { this.preview.visible = !compactMode; - if (this.previewType == PreviewType.FILES) { + if (this.previewType === PreviewType.FILES) { this.preview.set_style( `background-color: ${filesPreviewBgColor}; color: ${filesPreviewColor}; font-family: ${filesPreviewFontFamily}; font-size: ${filesPreviewFontSize}px;`, ); - } else if (this.previewType == PreviewType.TEXT) { + } else if (this.previewType === PreviewType.TEXT) { this.preview.set_style( `background-color: ${textPreviewBgColor}; color: ${textPreviewColor}; font-family: ${textPreviewFontFamily}; font-size: ${textPreviewFontSize}px;`, ); @@ -307,6 +308,24 @@ export class FilePanoItem extends PanoItem { } private setClipboardContent(): void { + if (this.pasteContent) { + const file = Gio.File.new_for_uri(this.fileList[0]!); + const text = FilePanoItem.getFileContents(file); + + if (text !== null) { + this.clipboardManager.setContent( + new ClipboardContent({ + type: ContentType.TEXT, + value: text, + }), + false, + ); + return; + } + + this.pasteContent = false; + } + this.clipboardManager.setContent( new ClipboardContent({ type: ContentType.FILE, @@ -315,6 +334,80 @@ export class FilePanoItem extends PanoItem { ); } + override vfunc_key_press_event(event: Clutter.Event): boolean { + if ( + this.previewType === PreviewType.TEXT && + (event.get_key_symbol() === Clutter.KEY_Return || + event.get_key_symbol() === Clutter.KEY_ISO_Enter || + event.get_key_symbol() === Clutter.KEY_KP_Enter) && + event.has_control_modifier() + ) { + this.pasteContent = true; + this.emit('activated'); + return Clutter.EVENT_STOP; + } + + return super.vfunc_key_press_event(event); + } + + override vfunc_button_release_event(event: Clutter.Event): boolean { + if ( + this.previewType === PreviewType.TEXT && + event.get_button() === Clutter.BUTTON_PRIMARY && + event.has_control_modifier() + ) { + this.pasteContent = true; + this.emit('activated'); + return Clutter.EVENT_STOP; + } + + return super.vfunc_button_release_event(event); + } + + private static getFileContents(file: Gio.File, n: number | null = null): string | null { + if (!file.query_exists(null)) { + return null; + } + + if (n !== null) { + let fileStream: Gio.FileInputStream | undefined; + try { + fileStream = file.read(null); + const stream = new Gio.DataInputStream({ baseStream: fileStream }); + + let text = ''; + for (let i = 0; i < n; i++) { + const line = stream.read_line_utf8(null)[0]; + if (line !== null) { + if (i > 0) text += '\n'; + text += line; + } else { + break; + } + } + + return text; + } catch (e) { + console.error(e); + } finally { + fileStream?.close(null); + } + } else { + try { + const [success, text, _] = file.load_contents(null); + if (success) { + return new TextDecoder().decode(text); + } else { + throw new Error('failed to load file contents'); + } + } catch (e) { + console.error(e); + } + } + + return null; + } + private static getThumbnail(homeDir: string, file: string): Gio.File | null { const md5 = GLib.compute_checksum_for_string(GLib.ChecksumType.MD5, file, file.length); diff --git a/src/styles/stylesheet.css b/src/styles/stylesheet.css index 3aa393a0..f3edb02d 100644 --- a/src/styles/stylesheet.css +++ b/src/styles/stylesheet.css @@ -120,6 +120,10 @@ background-color: #c01c28; } +.pano-item-paste-content-button:hover .pano-item-action-button-icon { + background-color: #26a269; +} + .pano-favorite-icon { padding: 6px; width: 12px; diff --git a/src/utils/clipboardManager.ts b/src/utils/clipboardManager.ts index 13752505..12667e73 100644 --- a/src/utils/clipboardManager.ts +++ b/src/utils/clipboardManager.ts @@ -208,7 +208,12 @@ export class ClipboardManager extends GObject.Object { this.lastCopiedContent = null; } - setContent({ content }: ClipboardContent): void { + setContent(clipboardContent: ClipboardContent, update = true): void { + if (!update) { + this.lastCopiedContent = clipboardContent; + } + + const content = clipboardContent.content; const syncPrimary = this.settings.get_boolean('sync-primary'); if (content.type === ContentType.TEXT) { if (syncPrimary) { From 127990858d5e9e3f1d1491525ca1aa5b38b7912b Mon Sep 17 00:00:00 2001 From: boerdereinar Date: Tue, 28 May 2024 11:55:23 +0200 Subject: [PATCH 36/45] Store any single grapheme as an emoji item This adds support for ZWJ sequences --- package.json | 1 + resources/po/ar.po | 18 +++++++++--------- resources/po/bg.po | 18 +++++++++--------- resources/po/cs.po | 18 +++++++++--------- resources/po/da.po | 18 +++++++++--------- resources/po/de.po | 18 +++++++++--------- resources/po/el.po | 18 +++++++++--------- resources/po/en.po | 18 +++++++++--------- resources/po/es.po | 18 +++++++++--------- resources/po/et.po | 18 +++++++++--------- resources/po/fi.po | 18 +++++++++--------- resources/po/fr.po | 18 +++++++++--------- resources/po/he.po | 18 +++++++++--------- resources/po/hr.po | 18 +++++++++--------- resources/po/hu.po | 18 +++++++++--------- resources/po/is.po | 18 +++++++++--------- resources/po/it.po | 18 +++++++++--------- resources/po/ja.po | 18 +++++++++--------- resources/po/ko.po | 18 +++++++++--------- resources/po/nl.po | 18 +++++++++--------- resources/po/no.po | 18 +++++++++--------- resources/po/oc.po | 18 +++++++++--------- resources/po/pano@elhan.io.pot | 18 +++++++++--------- resources/po/pl.po | 18 +++++++++--------- resources/po/pt.po | 18 +++++++++--------- resources/po/pt_BR.po | 18 +++++++++--------- resources/po/ro.po | 18 +++++++++--------- resources/po/ru.po | 18 +++++++++--------- resources/po/sk.po | 18 +++++++++--------- resources/po/sv.po | 18 +++++++++--------- resources/po/tr.po | 18 +++++++++--------- resources/po/uk.po | 18 +++++++++--------- resources/po/vi.po | 18 +++++++++--------- resources/po/zh_CN.po | 18 +++++++++--------- resources/po/zh_TW.po | 18 +++++++++--------- rollup.config.mjs | 1 + src/utils/panoItemFactory.ts | 4 +++- 37 files changed, 311 insertions(+), 307 deletions(-) diff --git a/package.json b/package.json index d72a609e..d0ba6045 100644 --- a/package.json +++ b/package.json @@ -93,6 +93,7 @@ "dependencies": { "color-string": "^1.9.1", "date-fns": "^2.30.0", + "graphemer": "^1.4.0", "highlight.js": "^11.9.0", "htmlparser2": "^9.1.0", "is-url": "^1.2.4", diff --git a/resources/po/ar.po b/resources/po/ar.po index 995a5483..a6bd9d8a 100644 --- a/resources/po/ar.po +++ b/resources/po/ar.po @@ -705,39 +705,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:393 +#: src/utils/panoItemFactory.ts:395 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:394 +#: src/utils/panoItemFactory.ts:396 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:400 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:400 +#: src/utils/panoItemFactory.ts:402 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:402 +#: src/utils/panoItemFactory.ts:404 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:410 +#: src/utils/panoItemFactory.ts:412 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:425 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:430 +#: src/utils/panoItemFactory.ts:432 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:431 +#: src/utils/panoItemFactory.ts:433 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/bg.po b/resources/po/bg.po index 13d9a919..2bd144a4 100644 --- a/resources/po/bg.po +++ b/resources/po/bg.po @@ -705,39 +705,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:393 +#: src/utils/panoItemFactory.ts:395 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:394 +#: src/utils/panoItemFactory.ts:396 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:400 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:400 +#: src/utils/panoItemFactory.ts:402 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:402 +#: src/utils/panoItemFactory.ts:404 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:410 +#: src/utils/panoItemFactory.ts:412 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:425 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:430 +#: src/utils/panoItemFactory.ts:432 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:431 +#: src/utils/panoItemFactory.ts:433 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/cs.po b/resources/po/cs.po index cff29cf2..f04eb8be 100644 --- a/resources/po/cs.po +++ b/resources/po/cs.po @@ -705,39 +705,39 @@ msgstr "Indikátor kmitání" msgid "Wiggles the indicator on panel" msgstr "Rozhýbe indikátor na panelu" -#: src/utils/panoItemFactory.ts:393 +#: src/utils/panoItemFactory.ts:395 msgid "Image Copied" msgstr "Obrázek zkopírován" -#: src/utils/panoItemFactory.ts:394 +#: src/utils/panoItemFactory.ts:396 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "Šířka: %spx, Výška: %spx, Velikost: %s" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:400 msgid "Text Copied" msgstr "Text zkopírován" -#: src/utils/panoItemFactory.ts:400 +#: src/utils/panoItemFactory.ts:402 msgid "Code Copied" msgstr "Kód zkopírován" -#: src/utils/panoItemFactory.ts:402 +#: src/utils/panoItemFactory.ts:404 msgid "Emoji Copied" msgstr "Emoji zkopírováno" -#: src/utils/panoItemFactory.ts:410 +#: src/utils/panoItemFactory.ts:412 msgid "Link Copied" msgstr "Odkaz zkopírován" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:425 msgid "Color Copied" msgstr "Barva zkopírována" -#: src/utils/panoItemFactory.ts:430 +#: src/utils/panoItemFactory.ts:432 msgid "File %s" msgstr "Soubor %s" -#: src/utils/panoItemFactory.ts:431 +#: src/utils/panoItemFactory.ts:433 msgid "There are %s file(s)" msgstr "Existuje %s souborů" diff --git a/resources/po/da.po b/resources/po/da.po index 1d08a927..818c4e9b 100644 --- a/resources/po/da.po +++ b/resources/po/da.po @@ -705,39 +705,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:393 +#: src/utils/panoItemFactory.ts:395 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:394 +#: src/utils/panoItemFactory.ts:396 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:400 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:400 +#: src/utils/panoItemFactory.ts:402 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:402 +#: src/utils/panoItemFactory.ts:404 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:410 +#: src/utils/panoItemFactory.ts:412 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:425 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:430 +#: src/utils/panoItemFactory.ts:432 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:431 +#: src/utils/panoItemFactory.ts:433 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/de.po b/resources/po/de.po index 1b9b8f11..ce23816e 100644 --- a/resources/po/de.po +++ b/resources/po/de.po @@ -705,39 +705,39 @@ msgstr "Wackelindikator" msgid "Wiggles the indicator on panel" msgstr "Lässt den Indikator auf dem Bedienfeld wackeln" -#: src/utils/panoItemFactory.ts:393 +#: src/utils/panoItemFactory.ts:395 msgid "Image Copied" msgstr "Bild kopiert" -#: src/utils/panoItemFactory.ts:394 +#: src/utils/panoItemFactory.ts:396 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "Breite: %spx, Höhe: %spx, Größe: %s" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:400 msgid "Text Copied" msgstr "Text kopiert" -#: src/utils/panoItemFactory.ts:400 +#: src/utils/panoItemFactory.ts:402 msgid "Code Copied" msgstr "Code kopiert" -#: src/utils/panoItemFactory.ts:402 +#: src/utils/panoItemFactory.ts:404 msgid "Emoji Copied" msgstr "Emoji kopiert" -#: src/utils/panoItemFactory.ts:410 +#: src/utils/panoItemFactory.ts:412 msgid "Link Copied" msgstr "Verweis kopiert" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:425 msgid "Color Copied" msgstr "Farbe kopiert" -#: src/utils/panoItemFactory.ts:430 +#: src/utils/panoItemFactory.ts:432 msgid "File %s" msgstr "Datei %s" -#: src/utils/panoItemFactory.ts:431 +#: src/utils/panoItemFactory.ts:433 msgid "There are %s file(s)" msgstr "Es gibt %s Datei(en)" diff --git a/resources/po/el.po b/resources/po/el.po index 6765513c..823a394c 100644 --- a/resources/po/el.po +++ b/resources/po/el.po @@ -705,39 +705,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:393 +#: src/utils/panoItemFactory.ts:395 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:394 +#: src/utils/panoItemFactory.ts:396 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:400 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:400 +#: src/utils/panoItemFactory.ts:402 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:402 +#: src/utils/panoItemFactory.ts:404 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:410 +#: src/utils/panoItemFactory.ts:412 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:425 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:430 +#: src/utils/panoItemFactory.ts:432 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:431 +#: src/utils/panoItemFactory.ts:433 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/en.po b/resources/po/en.po index 8503fa35..73064aca 100644 --- a/resources/po/en.po +++ b/resources/po/en.po @@ -705,39 +705,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:393 +#: src/utils/panoItemFactory.ts:395 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:394 +#: src/utils/panoItemFactory.ts:396 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:400 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:400 +#: src/utils/panoItemFactory.ts:402 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:402 +#: src/utils/panoItemFactory.ts:404 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:410 +#: src/utils/panoItemFactory.ts:412 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:425 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:430 +#: src/utils/panoItemFactory.ts:432 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:431 +#: src/utils/panoItemFactory.ts:433 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/es.po b/resources/po/es.po index 239e9b36..38802e44 100644 --- a/resources/po/es.po +++ b/resources/po/es.po @@ -705,39 +705,39 @@ msgstr "Agitar el indicador" msgid "Wiggles the indicator on panel" msgstr "Agita el indicador en el panel" -#: src/utils/panoItemFactory.ts:393 +#: src/utils/panoItemFactory.ts:395 msgid "Image Copied" msgstr "Imagen copiada" -#: src/utils/panoItemFactory.ts:394 +#: src/utils/panoItemFactory.ts:396 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "Anchura: %spx, Altura: %spx, Tamaño: %s" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:400 msgid "Text Copied" msgstr "Texto copiado" -#: src/utils/panoItemFactory.ts:400 +#: src/utils/panoItemFactory.ts:402 msgid "Code Copied" msgstr "Código copiado" -#: src/utils/panoItemFactory.ts:402 +#: src/utils/panoItemFactory.ts:404 msgid "Emoji Copied" msgstr "Emoji copiado" -#: src/utils/panoItemFactory.ts:410 +#: src/utils/panoItemFactory.ts:412 msgid "Link Copied" msgstr "Enlace copiado" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:425 msgid "Color Copied" msgstr "Color copiado" -#: src/utils/panoItemFactory.ts:430 +#: src/utils/panoItemFactory.ts:432 msgid "File %s" msgstr "Archivo %s" -#: src/utils/panoItemFactory.ts:431 +#: src/utils/panoItemFactory.ts:433 msgid "There are %s file(s)" msgstr "Hay %s archivo(s)" diff --git a/resources/po/et.po b/resources/po/et.po index fa1c798a..fe47a4e9 100644 --- a/resources/po/et.po +++ b/resources/po/et.po @@ -705,39 +705,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:393 +#: src/utils/panoItemFactory.ts:395 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:394 +#: src/utils/panoItemFactory.ts:396 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:400 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:400 +#: src/utils/panoItemFactory.ts:402 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:402 +#: src/utils/panoItemFactory.ts:404 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:410 +#: src/utils/panoItemFactory.ts:412 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:425 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:430 +#: src/utils/panoItemFactory.ts:432 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:431 +#: src/utils/panoItemFactory.ts:433 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/fi.po b/resources/po/fi.po index 12346f0e..2ec60d3f 100644 --- a/resources/po/fi.po +++ b/resources/po/fi.po @@ -705,39 +705,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:393 +#: src/utils/panoItemFactory.ts:395 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:394 +#: src/utils/panoItemFactory.ts:396 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:400 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:400 +#: src/utils/panoItemFactory.ts:402 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:402 +#: src/utils/panoItemFactory.ts:404 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:410 +#: src/utils/panoItemFactory.ts:412 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:425 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:430 +#: src/utils/panoItemFactory.ts:432 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:431 +#: src/utils/panoItemFactory.ts:433 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/fr.po b/resources/po/fr.po index ed48b9d6..841f07cc 100644 --- a/resources/po/fr.po +++ b/resources/po/fr.po @@ -705,39 +705,39 @@ msgstr "Oscillation de l’indicateur" msgid "Wiggles the indicator on panel" msgstr "Fait bouger l’indicateur sur le panneau" -#: src/utils/panoItemFactory.ts:393 +#: src/utils/panoItemFactory.ts:395 msgid "Image Copied" msgstr "Image copiée" -#: src/utils/panoItemFactory.ts:394 +#: src/utils/panoItemFactory.ts:396 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "Largeur : %spx, Hauteur : %spx, Taille : %s" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:400 msgid "Text Copied" msgstr "Texte copié" -#: src/utils/panoItemFactory.ts:400 +#: src/utils/panoItemFactory.ts:402 msgid "Code Copied" msgstr "Code copié" -#: src/utils/panoItemFactory.ts:402 +#: src/utils/panoItemFactory.ts:404 msgid "Emoji Copied" msgstr "Émoji copié" -#: src/utils/panoItemFactory.ts:410 +#: src/utils/panoItemFactory.ts:412 msgid "Link Copied" msgstr "Lien copié" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:425 msgid "Color Copied" msgstr "Couleur copiée" -#: src/utils/panoItemFactory.ts:430 +#: src/utils/panoItemFactory.ts:432 msgid "File %s" msgstr "Fichier %s" -#: src/utils/panoItemFactory.ts:431 +#: src/utils/panoItemFactory.ts:433 msgid "There are %s file(s)" msgstr "Il y a %s fichier(s)" diff --git a/resources/po/he.po b/resources/po/he.po index 92c9d449..7016148d 100644 --- a/resources/po/he.po +++ b/resources/po/he.po @@ -705,39 +705,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:393 +#: src/utils/panoItemFactory.ts:395 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:394 +#: src/utils/panoItemFactory.ts:396 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:400 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:400 +#: src/utils/panoItemFactory.ts:402 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:402 +#: src/utils/panoItemFactory.ts:404 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:410 +#: src/utils/panoItemFactory.ts:412 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:425 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:430 +#: src/utils/panoItemFactory.ts:432 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:431 +#: src/utils/panoItemFactory.ts:433 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/hr.po b/resources/po/hr.po index 08338437..7ddd581a 100644 --- a/resources/po/hr.po +++ b/resources/po/hr.po @@ -705,39 +705,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:393 +#: src/utils/panoItemFactory.ts:395 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:394 +#: src/utils/panoItemFactory.ts:396 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:400 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:400 +#: src/utils/panoItemFactory.ts:402 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:402 +#: src/utils/panoItemFactory.ts:404 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:410 +#: src/utils/panoItemFactory.ts:412 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:425 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:430 +#: src/utils/panoItemFactory.ts:432 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:431 +#: src/utils/panoItemFactory.ts:433 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/hu.po b/resources/po/hu.po index 8febf7f8..4bfc103e 100644 --- a/resources/po/hu.po +++ b/resources/po/hu.po @@ -705,39 +705,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:393 +#: src/utils/panoItemFactory.ts:395 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:394 +#: src/utils/panoItemFactory.ts:396 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:400 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:400 +#: src/utils/panoItemFactory.ts:402 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:402 +#: src/utils/panoItemFactory.ts:404 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:410 +#: src/utils/panoItemFactory.ts:412 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:425 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:430 +#: src/utils/panoItemFactory.ts:432 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:431 +#: src/utils/panoItemFactory.ts:433 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/is.po b/resources/po/is.po index f02d323b..554178c0 100644 --- a/resources/po/is.po +++ b/resources/po/is.po @@ -705,39 +705,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:393 +#: src/utils/panoItemFactory.ts:395 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:394 +#: src/utils/panoItemFactory.ts:396 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:400 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:400 +#: src/utils/panoItemFactory.ts:402 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:402 +#: src/utils/panoItemFactory.ts:404 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:410 +#: src/utils/panoItemFactory.ts:412 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:425 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:430 +#: src/utils/panoItemFactory.ts:432 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:431 +#: src/utils/panoItemFactory.ts:433 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/it.po b/resources/po/it.po index 8cfa313e..1d7f19ad 100644 --- a/resources/po/it.po +++ b/resources/po/it.po @@ -705,39 +705,39 @@ msgstr "Scuoti l'indicatore" msgid "Wiggles the indicator on panel" msgstr "Scuoti l'indicatore sul pannello" -#: src/utils/panoItemFactory.ts:393 +#: src/utils/panoItemFactory.ts:395 msgid "Image Copied" msgstr "Immagine copiata" -#: src/utils/panoItemFactory.ts:394 +#: src/utils/panoItemFactory.ts:396 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "Larghezza: %spx, Altezza: %spx, Dimensione: %s" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:400 msgid "Text Copied" msgstr "Testo copiato" -#: src/utils/panoItemFactory.ts:400 +#: src/utils/panoItemFactory.ts:402 msgid "Code Copied" msgstr "Codice copiato" -#: src/utils/panoItemFactory.ts:402 +#: src/utils/panoItemFactory.ts:404 msgid "Emoji Copied" msgstr "Emoji Copiata" -#: src/utils/panoItemFactory.ts:410 +#: src/utils/panoItemFactory.ts:412 msgid "Link Copied" msgstr "Link copiato" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:425 msgid "Color Copied" msgstr "Colore copiato" -#: src/utils/panoItemFactory.ts:430 +#: src/utils/panoItemFactory.ts:432 msgid "File %s" msgstr "File %s" -#: src/utils/panoItemFactory.ts:431 +#: src/utils/panoItemFactory.ts:433 msgid "There are %s file(s)" msgstr "Ci sono %s file(s)" diff --git a/resources/po/ja.po b/resources/po/ja.po index 346317c6..afc103d9 100644 --- a/resources/po/ja.po +++ b/resources/po/ja.po @@ -705,39 +705,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:393 +#: src/utils/panoItemFactory.ts:395 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:394 +#: src/utils/panoItemFactory.ts:396 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:400 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:400 +#: src/utils/panoItemFactory.ts:402 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:402 +#: src/utils/panoItemFactory.ts:404 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:410 +#: src/utils/panoItemFactory.ts:412 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:425 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:430 +#: src/utils/panoItemFactory.ts:432 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:431 +#: src/utils/panoItemFactory.ts:433 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/ko.po b/resources/po/ko.po index 140cc949..24023a0e 100644 --- a/resources/po/ko.po +++ b/resources/po/ko.po @@ -705,39 +705,39 @@ msgstr "표시기 흔들기" msgid "Wiggles the indicator on panel" msgstr "패널의 표시기를 흔들기" -#: src/utils/panoItemFactory.ts:393 +#: src/utils/panoItemFactory.ts:395 msgid "Image Copied" msgstr "이미지 복사됨" -#: src/utils/panoItemFactory.ts:394 +#: src/utils/panoItemFactory.ts:396 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "너비: %spx, 높이: %spx, 크기: %s" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:400 msgid "Text Copied" msgstr "텍스트 복사됨" -#: src/utils/panoItemFactory.ts:400 +#: src/utils/panoItemFactory.ts:402 msgid "Code Copied" msgstr "코드 복사됨" -#: src/utils/panoItemFactory.ts:402 +#: src/utils/panoItemFactory.ts:404 msgid "Emoji Copied" msgstr "이모티콘 복사됨" -#: src/utils/panoItemFactory.ts:410 +#: src/utils/panoItemFactory.ts:412 msgid "Link Copied" msgstr "링크 복사됨" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:425 msgid "Color Copied" msgstr "색상 복사됨" -#: src/utils/panoItemFactory.ts:430 +#: src/utils/panoItemFactory.ts:432 msgid "File %s" msgstr "파일 %s" -#: src/utils/panoItemFactory.ts:431 +#: src/utils/panoItemFactory.ts:433 msgid "There are %s file(s)" msgstr "%s 개의 파일이 있음" diff --git a/resources/po/nl.po b/resources/po/nl.po index 1a7869f8..a2596845 100644 --- a/resources/po/nl.po +++ b/resources/po/nl.po @@ -705,39 +705,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:393 +#: src/utils/panoItemFactory.ts:395 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:394 +#: src/utils/panoItemFactory.ts:396 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:400 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:400 +#: src/utils/panoItemFactory.ts:402 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:402 +#: src/utils/panoItemFactory.ts:404 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:410 +#: src/utils/panoItemFactory.ts:412 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:425 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:430 +#: src/utils/panoItemFactory.ts:432 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:431 +#: src/utils/panoItemFactory.ts:433 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/no.po b/resources/po/no.po index 030aa7e6..325bed78 100644 --- a/resources/po/no.po +++ b/resources/po/no.po @@ -705,39 +705,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:393 +#: src/utils/panoItemFactory.ts:395 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:394 +#: src/utils/panoItemFactory.ts:396 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:400 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:400 +#: src/utils/panoItemFactory.ts:402 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:402 +#: src/utils/panoItemFactory.ts:404 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:410 +#: src/utils/panoItemFactory.ts:412 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:425 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:430 +#: src/utils/panoItemFactory.ts:432 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:431 +#: src/utils/panoItemFactory.ts:433 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/oc.po b/resources/po/oc.po index e9283bc2..5c65a8d3 100644 --- a/resources/po/oc.po +++ b/resources/po/oc.po @@ -705,39 +705,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:393 +#: src/utils/panoItemFactory.ts:395 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:394 +#: src/utils/panoItemFactory.ts:396 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:400 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:400 +#: src/utils/panoItemFactory.ts:402 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:402 +#: src/utils/panoItemFactory.ts:404 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:410 +#: src/utils/panoItemFactory.ts:412 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:425 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:430 +#: src/utils/panoItemFactory.ts:432 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:431 +#: src/utils/panoItemFactory.ts:433 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/pano@elhan.io.pot b/resources/po/pano@elhan.io.pot index 48ff3f02..045798f5 100644 --- a/resources/po/pano@elhan.io.pot +++ b/resources/po/pano@elhan.io.pot @@ -128,7 +128,7 @@ msgstr "" msgid "Code" msgstr "" -#: src/utils/panoItemFactory.ts:400 +#: src/utils/panoItemFactory.ts:402 msgid "Code Copied" msgstr "" @@ -140,7 +140,7 @@ msgstr "" msgid "Color" msgstr "" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:425 msgid "Color Copied" msgstr "" @@ -188,7 +188,7 @@ msgstr "" msgid "Emoji" msgstr "" -#: src/utils/panoItemFactory.ts:402 +#: src/utils/panoItemFactory.ts:404 msgid "Emoji Copied" msgstr "" @@ -212,7 +212,7 @@ msgstr "" msgid "File" msgstr "" -#: src/utils/panoItemFactory.ts:430 +#: src/utils/panoItemFactory.ts:432 msgid "File %s" msgstr "" @@ -292,7 +292,7 @@ msgstr "" msgid "Image" msgstr "" -#: src/utils/panoItemFactory.ts:393 +#: src/utils/panoItemFactory.ts:395 msgid "Image Copied" msgstr "" @@ -360,7 +360,7 @@ msgstr "" msgid "Link" msgstr "" -#: src/utils/panoItemFactory.ts:410 +#: src/utils/panoItemFactory.ts:412 msgid "Link Copied" msgstr "" @@ -498,7 +498,7 @@ msgstr "" msgid "Text" msgstr "" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:400 msgid "Text Copied" msgstr "" @@ -518,7 +518,7 @@ msgstr "" msgid "Text Preview Text Color" msgstr "" -#: src/utils/panoItemFactory.ts:431 +#: src/utils/panoItemFactory.ts:433 msgid "There are %s file(s)" msgstr "" @@ -562,7 +562,7 @@ msgstr "" msgid "When enabled, the controls will only show on hover" msgstr "" -#: src/utils/panoItemFactory.ts:394 +#: src/utils/panoItemFactory.ts:396 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" diff --git a/resources/po/pl.po b/resources/po/pl.po index 97b9ebbd..eaec1636 100644 --- a/resources/po/pl.po +++ b/resources/po/pl.po @@ -705,39 +705,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:393 +#: src/utils/panoItemFactory.ts:395 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:394 +#: src/utils/panoItemFactory.ts:396 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:400 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:400 +#: src/utils/panoItemFactory.ts:402 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:402 +#: src/utils/panoItemFactory.ts:404 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:410 +#: src/utils/panoItemFactory.ts:412 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:425 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:430 +#: src/utils/panoItemFactory.ts:432 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:431 +#: src/utils/panoItemFactory.ts:433 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/pt.po b/resources/po/pt.po index 36946cce..1c7e8491 100644 --- a/resources/po/pt.po +++ b/resources/po/pt.po @@ -705,39 +705,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:393 +#: src/utils/panoItemFactory.ts:395 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:394 +#: src/utils/panoItemFactory.ts:396 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:400 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:400 +#: src/utils/panoItemFactory.ts:402 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:402 +#: src/utils/panoItemFactory.ts:404 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:410 +#: src/utils/panoItemFactory.ts:412 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:425 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:430 +#: src/utils/panoItemFactory.ts:432 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:431 +#: src/utils/panoItemFactory.ts:433 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/pt_BR.po b/resources/po/pt_BR.po index b56acc5f..9a969d40 100644 --- a/resources/po/pt_BR.po +++ b/resources/po/pt_BR.po @@ -705,39 +705,39 @@ msgstr "Agitar Indicador" msgid "Wiggles the indicator on panel" msgstr "Agita o indicador na barra" -#: src/utils/panoItemFactory.ts:393 +#: src/utils/panoItemFactory.ts:395 msgid "Image Copied" msgstr "Imagem Copiada" -#: src/utils/panoItemFactory.ts:394 +#: src/utils/panoItemFactory.ts:396 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "Largura: %spx, Altura: %spx, Tamanho: %s" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:400 msgid "Text Copied" msgstr "Texto Copiado" -#: src/utils/panoItemFactory.ts:400 +#: src/utils/panoItemFactory.ts:402 msgid "Code Copied" msgstr "Código Copiado" -#: src/utils/panoItemFactory.ts:402 +#: src/utils/panoItemFactory.ts:404 msgid "Emoji Copied" msgstr "Emoji Copiado" -#: src/utils/panoItemFactory.ts:410 +#: src/utils/panoItemFactory.ts:412 msgid "Link Copied" msgstr "Link Copiado" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:425 msgid "Color Copied" msgstr "Cor Copiada" -#: src/utils/panoItemFactory.ts:430 +#: src/utils/panoItemFactory.ts:432 msgid "File %s" msgstr "Arquivo %s" -#: src/utils/panoItemFactory.ts:431 +#: src/utils/panoItemFactory.ts:433 msgid "There are %s file(s)" msgstr "Existem %s arquivo(s)" diff --git a/resources/po/ro.po b/resources/po/ro.po index 6b54fe1e..373b4efb 100644 --- a/resources/po/ro.po +++ b/resources/po/ro.po @@ -705,39 +705,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:393 +#: src/utils/panoItemFactory.ts:395 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:394 +#: src/utils/panoItemFactory.ts:396 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:400 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:400 +#: src/utils/panoItemFactory.ts:402 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:402 +#: src/utils/panoItemFactory.ts:404 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:410 +#: src/utils/panoItemFactory.ts:412 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:425 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:430 +#: src/utils/panoItemFactory.ts:432 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:431 +#: src/utils/panoItemFactory.ts:433 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/ru.po b/resources/po/ru.po index 10777754..a39668ea 100644 --- a/resources/po/ru.po +++ b/resources/po/ru.po @@ -705,39 +705,39 @@ msgstr "Покачивающийся индикатор" msgid "Wiggles the indicator on panel" msgstr "Покачивающийся индикатор на панели" -#: src/utils/panoItemFactory.ts:393 +#: src/utils/panoItemFactory.ts:395 msgid "Image Copied" msgstr "Изображение скопировано" -#: src/utils/panoItemFactory.ts:394 +#: src/utils/panoItemFactory.ts:396 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "Ширина: %spx, Высота: %spx, Размер: %s" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:400 msgid "Text Copied" msgstr "Текст скопирован" -#: src/utils/panoItemFactory.ts:400 +#: src/utils/panoItemFactory.ts:402 msgid "Code Copied" msgstr "Код скопирован" -#: src/utils/panoItemFactory.ts:402 +#: src/utils/panoItemFactory.ts:404 msgid "Emoji Copied" msgstr "Эмодзи скопирован" -#: src/utils/panoItemFactory.ts:410 +#: src/utils/panoItemFactory.ts:412 msgid "Link Copied" msgstr "Ссылка скопирована" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:425 msgid "Color Copied" msgstr "Цвет скопирован" -#: src/utils/panoItemFactory.ts:430 +#: src/utils/panoItemFactory.ts:432 msgid "File %s" msgstr "Файл %s" -#: src/utils/panoItemFactory.ts:431 +#: src/utils/panoItemFactory.ts:433 msgid "There are %s file(s)" msgstr "Есть %s файлов" diff --git a/resources/po/sk.po b/resources/po/sk.po index 30956cee..293d10e8 100644 --- a/resources/po/sk.po +++ b/resources/po/sk.po @@ -705,39 +705,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:393 +#: src/utils/panoItemFactory.ts:395 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:394 +#: src/utils/panoItemFactory.ts:396 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:400 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:400 +#: src/utils/panoItemFactory.ts:402 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:402 +#: src/utils/panoItemFactory.ts:404 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:410 +#: src/utils/panoItemFactory.ts:412 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:425 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:430 +#: src/utils/panoItemFactory.ts:432 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:431 +#: src/utils/panoItemFactory.ts:433 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/sv.po b/resources/po/sv.po index 5f2d834d..da31e9f4 100644 --- a/resources/po/sv.po +++ b/resources/po/sv.po @@ -705,39 +705,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:393 +#: src/utils/panoItemFactory.ts:395 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:394 +#: src/utils/panoItemFactory.ts:396 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:400 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:400 +#: src/utils/panoItemFactory.ts:402 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:402 +#: src/utils/panoItemFactory.ts:404 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:410 +#: src/utils/panoItemFactory.ts:412 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:425 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:430 +#: src/utils/panoItemFactory.ts:432 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:431 +#: src/utils/panoItemFactory.ts:433 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/tr.po b/resources/po/tr.po index 867c44fa..4d76b70b 100644 --- a/resources/po/tr.po +++ b/resources/po/tr.po @@ -705,39 +705,39 @@ msgstr "Göstergeyi Oynat" msgid "Wiggles the indicator on panel" msgstr "Paneldeki göstergeyi oynatır" -#: src/utils/panoItemFactory.ts:393 +#: src/utils/panoItemFactory.ts:395 msgid "Image Copied" msgstr "Resim Kopyalandı" -#: src/utils/panoItemFactory.ts:394 +#: src/utils/panoItemFactory.ts:396 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "Genişlik: %spx, Yükseklik: %spx, Boyut: %s" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:400 msgid "Text Copied" msgstr "Yazı Kopyalandı" -#: src/utils/panoItemFactory.ts:400 +#: src/utils/panoItemFactory.ts:402 msgid "Code Copied" msgstr "Kod Kopyalandı" -#: src/utils/panoItemFactory.ts:402 +#: src/utils/panoItemFactory.ts:404 msgid "Emoji Copied" msgstr "İfade Kopyalandı" -#: src/utils/panoItemFactory.ts:410 +#: src/utils/panoItemFactory.ts:412 msgid "Link Copied" msgstr "Bağlantı Kopyalandı" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:425 msgid "Color Copied" msgstr "Renk Kopyalandı" -#: src/utils/panoItemFactory.ts:430 +#: src/utils/panoItemFactory.ts:432 msgid "File %s" msgstr "Dosya %s" -#: src/utils/panoItemFactory.ts:431 +#: src/utils/panoItemFactory.ts:433 msgid "There are %s file(s)" msgstr "%s kadar dosya var" diff --git a/resources/po/uk.po b/resources/po/uk.po index 722498d8..28480d78 100644 --- a/resources/po/uk.po +++ b/resources/po/uk.po @@ -705,39 +705,39 @@ msgstr "Коливання індикатора" msgid "Wiggles the indicator on panel" msgstr "Коливає індикатор на панелі" -#: src/utils/panoItemFactory.ts:393 +#: src/utils/panoItemFactory.ts:395 msgid "Image Copied" msgstr "Зображення скопійовано" -#: src/utils/panoItemFactory.ts:394 +#: src/utils/panoItemFactory.ts:396 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "Ширина: %spx, Висота: %spx, Розмір: %s" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:400 msgid "Text Copied" msgstr "Текст скопійовано" -#: src/utils/panoItemFactory.ts:400 +#: src/utils/panoItemFactory.ts:402 msgid "Code Copied" msgstr "Код скопійовано" -#: src/utils/panoItemFactory.ts:402 +#: src/utils/panoItemFactory.ts:404 msgid "Emoji Copied" msgstr "Емодзі скопійовано" -#: src/utils/panoItemFactory.ts:410 +#: src/utils/panoItemFactory.ts:412 msgid "Link Copied" msgstr "Посилання скопійовано" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:425 msgid "Color Copied" msgstr "Колір скопійовано" -#: src/utils/panoItemFactory.ts:430 +#: src/utils/panoItemFactory.ts:432 msgid "File %s" msgstr "Файл %s" -#: src/utils/panoItemFactory.ts:431 +#: src/utils/panoItemFactory.ts:433 msgid "There are %s file(s)" msgstr "Існує %s файл(ів)" diff --git a/resources/po/vi.po b/resources/po/vi.po index 98ae20c9..4eab94ab 100644 --- a/resources/po/vi.po +++ b/resources/po/vi.po @@ -705,39 +705,39 @@ msgstr "" msgid "Wiggles the indicator on panel" msgstr "" -#: src/utils/panoItemFactory.ts:393 +#: src/utils/panoItemFactory.ts:395 msgid "Image Copied" msgstr "" -#: src/utils/panoItemFactory.ts:394 +#: src/utils/panoItemFactory.ts:396 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:400 msgid "Text Copied" msgstr "" -#: src/utils/panoItemFactory.ts:400 +#: src/utils/panoItemFactory.ts:402 msgid "Code Copied" msgstr "" -#: src/utils/panoItemFactory.ts:402 +#: src/utils/panoItemFactory.ts:404 msgid "Emoji Copied" msgstr "" -#: src/utils/panoItemFactory.ts:410 +#: src/utils/panoItemFactory.ts:412 msgid "Link Copied" msgstr "" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:425 msgid "Color Copied" msgstr "" -#: src/utils/panoItemFactory.ts:430 +#: src/utils/panoItemFactory.ts:432 msgid "File %s" msgstr "" -#: src/utils/panoItemFactory.ts:431 +#: src/utils/panoItemFactory.ts:433 msgid "There are %s file(s)" msgstr "" diff --git a/resources/po/zh_CN.po b/resources/po/zh_CN.po index 871890ad..d4a7283d 100644 --- a/resources/po/zh_CN.po +++ b/resources/po/zh_CN.po @@ -705,39 +705,39 @@ msgstr "抖动指示器" msgid "Wiggles the indicator on panel" msgstr "抖动面板上的程序指示器" -#: src/utils/panoItemFactory.ts:393 +#: src/utils/panoItemFactory.ts:395 msgid "Image Copied" msgstr "图像已复制" -#: src/utils/panoItemFactory.ts:394 +#: src/utils/panoItemFactory.ts:396 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "宽:%spx,高:%spx,尺寸:%s" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:400 msgid "Text Copied" msgstr "文本已复制" -#: src/utils/panoItemFactory.ts:400 +#: src/utils/panoItemFactory.ts:402 msgid "Code Copied" msgstr "代码已复制" -#: src/utils/panoItemFactory.ts:402 +#: src/utils/panoItemFactory.ts:404 msgid "Emoji Copied" msgstr "表情符号已复制" -#: src/utils/panoItemFactory.ts:410 +#: src/utils/panoItemFactory.ts:412 msgid "Link Copied" msgstr "链接已复制" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:425 msgid "Color Copied" msgstr "颜色已复制" -#: src/utils/panoItemFactory.ts:430 +#: src/utils/panoItemFactory.ts:432 msgid "File %s" msgstr "文件%s" -#: src/utils/panoItemFactory.ts:431 +#: src/utils/panoItemFactory.ts:433 msgid "There are %s file(s)" msgstr "%s个文件" diff --git a/resources/po/zh_TW.po b/resources/po/zh_TW.po index f200d46a..73257fa6 100644 --- a/resources/po/zh_TW.po +++ b/resources/po/zh_TW.po @@ -705,39 +705,39 @@ msgstr "振動圖示" msgid "Wiggles the indicator on panel" msgstr "在頂欄中振動圖示" -#: src/utils/panoItemFactory.ts:393 +#: src/utils/panoItemFactory.ts:395 msgid "Image Copied" msgstr "已複製圖片" -#: src/utils/panoItemFactory.ts:394 +#: src/utils/panoItemFactory.ts:396 msgid "Width: %spx, Height: %spx, Size: %s" msgstr "寬度:%s個像素,高度:%s個像素,大小:%s" -#: src/utils/panoItemFactory.ts:398 +#: src/utils/panoItemFactory.ts:400 msgid "Text Copied" msgstr "已複製文字" -#: src/utils/panoItemFactory.ts:400 +#: src/utils/panoItemFactory.ts:402 msgid "Code Copied" msgstr "已複製程式碼" -#: src/utils/panoItemFactory.ts:402 +#: src/utils/panoItemFactory.ts:404 msgid "Emoji Copied" msgstr "已複製表情符號" -#: src/utils/panoItemFactory.ts:410 +#: src/utils/panoItemFactory.ts:412 msgid "Link Copied" msgstr "已複製連結" -#: src/utils/panoItemFactory.ts:423 +#: src/utils/panoItemFactory.ts:425 msgid "Color Copied" msgstr "已複製顏色" -#: src/utils/panoItemFactory.ts:430 +#: src/utils/panoItemFactory.ts:432 msgid "File %s" msgstr "檔案 %s" -#: src/utils/panoItemFactory.ts:431 +#: src/utils/panoItemFactory.ts:433 msgid "There are %s file(s)" msgstr "這裡有 %s 個檔案" diff --git a/rollup.config.mjs b/rollup.config.mjs index 7e1c5422..2a7a9c25 100644 --- a/rollup.config.mjs +++ b/rollup.config.mjs @@ -82,6 +82,7 @@ const thirdParty = [ 'is-url', 'pretty-bytes', 'color-string', + 'graphemer', 'highlight.js/lib/core', 'highlight.js/lib/languages/bash', 'highlight.js/lib/languages/c', diff --git a/src/utils/panoItemFactory.ts b/src/utils/panoItemFactory.ts index e2605a20..33caf788 100644 --- a/src/utils/panoItemFactory.ts +++ b/src/utils/panoItemFactory.ts @@ -26,6 +26,7 @@ import { } from '@pano/utils/shell'; import { notify } from '@pano/utils/ui'; import colorString from 'color-string'; +import Graphemer from 'graphemer'; import hljs from 'highlight.js/lib/core'; import bash from 'highlight.js/lib/languages/bash'; import c from 'highlight.js/lib/languages/c'; @@ -249,7 +250,8 @@ const findOrCreateDbItem = async (ext: ExtensionBase, clip: ClipboardContent): P } const highlightResult = hljs.highlightAuto(trimmedValue.slice(0, 2000), SUPPORTED_LANGUAGES); if (highlightResult.relevance < 10) { - if (/^\p{Extended_Pictographic}*$/u.test(trimmedValue)) { + // Check if the text is a single grapheme + if (Graphemer.nextBreak(trimmedValue, 0) == trimmedValue.length) { return db.save({ content: trimmedValue, copyDate: new Date(), From 0f75a6a1ea43ad00ee3fd9ca19b8e3fd42412d72 Mon Sep 17 00:00:00 2001 From: boerdereinar Date: Tue, 28 May 2024 23:27:32 +0200 Subject: [PATCH 37/45] Fix transparent header color Note: this causes a windows xp like visual bug in the link item when running Pano in a nested shell --- src/components/codePanoItem.ts | 2 +- src/components/colorPanoItem.ts | 2 +- src/components/emojiPanoItem.ts | 2 +- src/components/filePanoItem.ts | 2 +- src/components/linkPanoItem.ts | 2 +- src/components/textPanoItem.ts | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/components/codePanoItem.ts b/src/components/codePanoItem.ts index ddea8094..fd5378a2 100644 --- a/src/components/codePanoItem.ts +++ b/src/components/codePanoItem.ts @@ -46,7 +46,7 @@ export class CodePanoItem extends PanoItem { this.overlay.setControlsBackground(getItemBackgroundColor(this.settings, headerBgColor, bodyBgColor)); this.header.set_style(`background-color: ${headerBgColor}; color: ${headerColor};`); - this.container.set_style(`background-color: ${bodyBgColor}`); + this.body.set_style(`background-color: ${bodyBgColor}`); this.label.set_style(`font-size: ${bodyFontSize}px; font-family: ${bodyFontFamily};`); this.label.clutterText.set_markup(markupCode(this.dbItem.content.trim(), characterLength)); diff --git a/src/components/colorPanoItem.ts b/src/components/colorPanoItem.ts index 62a62221..dd688d69 100644 --- a/src/components/colorPanoItem.ts +++ b/src/components/colorPanoItem.ts @@ -85,7 +85,7 @@ export class ColorPanoItem extends PanoItem { this.overlay.setControlsBackground(getItemBackgroundColor(this.settings, headerBgColor, null)); this.header.set_style(`background-color: ${headerBgColor}; color: ${headerColor};`); - this.container.set_style(`background-color: ${this.dbItem.content};`); + this.body.set_style(`background-color: ${this.dbItem.content};`); this.icon.set_style(`color: ${iconColor};`); this.label.set_style(`color: ${textColor}; font-family: ${metadataFontFamily}; font-size: ${metadataFontSize}px;`); } diff --git a/src/components/emojiPanoItem.ts b/src/components/emojiPanoItem.ts index f28a9f23..3e85e617 100644 --- a/src/components/emojiPanoItem.ts +++ b/src/components/emojiPanoItem.ts @@ -52,7 +52,7 @@ export class EmojiPanoItem extends PanoItem { this.overlay.setControlsBackground(getItemBackgroundColor(this.settings, headerBgColor, bodyBgColor)); this.header.set_style(`background-color: ${headerBgColor}; color: ${headerColor};`); - this.container.set_style(`background-color: ${bodyBgColor};`); + this.body.set_style(`background-color: ${bodyBgColor};`); this.label.set_style(`font-size: ${Math.min(emojiSize, this.body.height - 24)}px;`); } diff --git a/src/components/filePanoItem.ts b/src/components/filePanoItem.ts index 7ee24a4c..edaf024c 100644 --- a/src/components/filePanoItem.ts +++ b/src/components/filePanoItem.ts @@ -275,7 +275,7 @@ export class FilePanoItem extends PanoItem { this.overlay.setControlsBackground(getItemBackgroundColor(this.settings, headerBgColor, bodyBgColor)); this.header.set_style(`background-color: ${headerBgColor}; color: ${headerColor};`); - this.container.set_style(`background-color: ${bodyBgColor};`); + this.body.set_style(`background-color: ${bodyBgColor};`); this.titleContainer.set_style( `color: ${titleColor}; font-family: ${titleFontFamily}; font-size: ${titleFontSize}px;`, diff --git a/src/components/linkPanoItem.ts b/src/components/linkPanoItem.ts index ec9942d6..73ec2e11 100644 --- a/src/components/linkPanoItem.ts +++ b/src/components/linkPanoItem.ts @@ -170,7 +170,7 @@ export class LinkPanoItem extends PanoItem { getItemBackgroundColor(this.settings, headerBgColor, compactMode ? metadataBgColor : null), ); this.header.set_style(`background-color: ${headerBgColor}; color: ${headerColor};`); - this.container.set_style(`background-color: ${metadataBgColor};`); + this.body.set_style(`background-color: ${metadataBgColor};`); this.titleLabel.set_style( `color: ${metadataTitleColor}; font-family: ${metadataTitleFontFamily}; font-size: ${metadataTitleFontSize}px;`, ); diff --git a/src/components/textPanoItem.ts b/src/components/textPanoItem.ts index 41bf3fd7..b636306e 100644 --- a/src/components/textPanoItem.ts +++ b/src/components/textPanoItem.ts @@ -54,7 +54,7 @@ export class TextPanoItem extends PanoItem { this.header.set_style(`background-color: ${headerBgColor}; color: ${headerColor};`); // Set body styles - this.container.set_style(`background-color: ${bodyBgColor}`); + this.body.set_style(`background-color: ${bodyBgColor}`); // set label styles this.label.set_text(this.dbItem.content.trim().slice(0, characterLength)); From 24954979fce52e3d27603c25e906941ff9f8804c Mon Sep 17 00:00:00 2001 From: boerdereinar Date: Tue, 28 May 2024 23:44:33 +0200 Subject: [PATCH 38/45] Decrease height of files preview if it contains less files than the height --- src/components/filePanoItem.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/filePanoItem.ts b/src/components/filePanoItem.ts index edaf024c..cd15378e 100644 --- a/src/components/filePanoItem.ts +++ b/src/components/filePanoItem.ts @@ -217,7 +217,7 @@ export class FilePanoItem extends PanoItem { clipToAllocation: true, vertical: true, xExpand: true, - yExpand: true, + yExpand: false, yAlign: Clutter.ActorAlign.FILL, minHeight: 0, }); From 4ae6e5480479ee49e16cf13fd65dfaacc5f9c6f7 Mon Sep 17 00:00:00 2001 From: boerdereinar Date: Wed, 29 May 2024 00:35:47 +0200 Subject: [PATCH 39/45] =?UTF-8?q?Fix=20emoji=20display=20for=20wide=20emoj?= =?UTF-8?q?is=20like=20=F0=9F=91=A9=F0=9F=8F=BD=E2=80=8D=F0=9F=91=A9?= =?UTF-8?q?=F0=9F=8F=BF=E2=80=8D=F0=9F=91=A7=F0=9F=8F=BB=E2=80=8D?= =?UTF-8?q?=F0=9F=91=A7=F0=9F=8F=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/emojiPanoItem.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/components/emojiPanoItem.ts b/src/components/emojiPanoItem.ts index 3e85e617..606d16e9 100644 --- a/src/components/emojiPanoItem.ts +++ b/src/components/emojiPanoItem.ts @@ -26,9 +26,8 @@ export class EmojiPanoItem extends PanoItem { text: this.dbItem.content, styleClass: 'pano-item-body-emoji-content', }); - this.label.clutterText.lineWrap = true; - this.label.clutterText.lineWrapMode = Pango.WrapMode.WORD_CHAR; - this.label.clutterText.ellipsize = Pango.EllipsizeMode.END; + this.label.clutterText.lineAlignment = Pango.Alignment.CENTER; + this.label.clutterText.ellipsize = Pango.EllipsizeMode.NONE; this.body.add_child(this.label); this.connect('activated', this.setClipboardContent.bind(this)); From 70eb2aa66c2568728fd137b54f1c6f54666e86c9 Mon Sep 17 00:00:00 2001 From: boerdereinar Date: Wed, 29 May 2024 22:05:24 +0200 Subject: [PATCH 40/45] Fix header date updater not being destroyed --- src/components/panoItem.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/panoItem.ts b/src/components/panoItem.ts index 9bb46e17..0b26e83f 100644 --- a/src/components/panoItem.ts +++ b/src/components/panoItem.ts @@ -293,7 +293,7 @@ export class PanoItem extends St.Widget { GLib.Source.remove(this.timeoutId); this.timeoutId = undefined; } - this.overlay.destroy(); + this.header.destroy(); super.destroy(); } } From a949f9cae21d0856af8445f1d309b0eef03c16a8 Mon Sep 17 00:00:00 2001 From: boerdereinar Date: Sat, 1 Jun 2024 13:39:37 +0200 Subject: [PATCH 41/45] Fix warnings that happen when toggling the show-controls-on-hover setting --- src/components/panoItem.ts | 28 ++++++++++++++++------------ 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/src/components/panoItem.ts b/src/components/panoItem.ts index 0b26e83f..3779e790 100644 --- a/src/components/panoItem.ts +++ b/src/components/panoItem.ts @@ -50,7 +50,8 @@ export class PanoItem extends St.Widget { protected clipboardManager: ClipboardManager; public dbItem: DBItem; protected settings: Gio.Settings; - private selected: boolean | null = null; + private selected: boolean = false; + private showControlsOnHover: boolean; constructor(ext: ExtensionBase, clipboardManager: ClipboardManager, dbItem: DBItem) { super({ @@ -192,9 +193,12 @@ export class PanoItem extends St.Widget { this.setBodyDimensions(); - this.setVisible(); - this.connect('style-changed', this.setVisible.bind(this)); - this.settings.connect('changed::show-controls-on-hover', this.setVisible.bind(this)); + this.showControlsOnHover = this.settings.get_boolean('show-controls-on-hover'); + this.overlay.setVisibility(!this.showControlsOnHover); + this.settings.connect('changed::show-controls-on-hover', () => { + this.showControlsOnHover = this.settings.get_boolean('show-controls-on-hover'); + this.overlay.setVisibility(!this.showControlsOnHover); + }); } private setBodyDimensions() { @@ -220,14 +224,6 @@ export class PanoItem extends St.Widget { this.header.visible = isVisible(this.settings.get_uint('header-style')); } - private setVisible() { - if (this.hover || this.selected) { - this.overlay.setVisibility(true); - } else { - this.overlay.setVisibility(!this.settings.get_boolean('show-controls-on-hover')); - } - } - private setSelected(selected: boolean) { if (selected) { const activeItemBorderColor = this.settings.get_string('active-item-border-color'); @@ -239,6 +235,14 @@ export class PanoItem extends St.Widget { this.selected = selected; } + // The style-changed event is used here instead of the enter and leave events because those events + // retrigger when the pointer hovers over the buttons in the controls. + override vfunc_style_changed(): void { + if (this.showControlsOnHover) { + this.overlay.setVisibility(this.hover || this.selected); + } + } + override vfunc_key_press_event(event: Clutter.Event): boolean { switch (event.get_key_symbol()) { case Clutter.KEY_Return: From 5c3403e6675ddd7af760766061f2586b5885daba Mon Sep 17 00:00:00 2001 From: boerdereinar Date: Sun, 2 Jun 2024 17:04:25 +0200 Subject: [PATCH 42/45] Add border around window --- src/styles/stylesheet.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/styles/stylesheet.css b/src/styles/stylesheet.css index f3edb02d..2977befb 100644 --- a/src/styles/stylesheet.css +++ b/src/styles/stylesheet.css @@ -1,6 +1,7 @@ /* Window */ .pano-window { - box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.36); + box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1); + border: 1px solid rgba(255, 255, 255, 0.07); } .pano-window.floating { From 1e2645533d957bc244b2114853be4ca342471282 Mon Sep 17 00:00:00 2001 From: boerdereinar Date: Sat, 8 Jun 2024 02:23:28 +0200 Subject: [PATCH 43/45] Fix item shadow + color item color + remove on mmb setting not being respected - Item color didn't support this format: rgb(255 0 0) --- src/components/colorPanoItem.ts | 5 ++++- src/components/linkPanoItem.ts | 5 ----- src/components/panoItem.ts | 40 +++++++++++++++++++-------------- src/styles/stylesheet.css | 8 ++++++- 4 files changed, 34 insertions(+), 24 deletions(-) diff --git a/src/components/colorPanoItem.ts b/src/components/colorPanoItem.ts index dd688d69..60ff49b7 100644 --- a/src/components/colorPanoItem.ts +++ b/src/components/colorPanoItem.ts @@ -8,6 +8,7 @@ import { getItemBackgroundColor, isDark } from '@pano/utils/color'; import { DBItem } from '@pano/utils/db'; import { registerGObjectClass } from '@pano/utils/gjs'; import { orientationCompatibility } from '@pano/utils/shell_compatibility'; +import colorString from 'color-string'; @registerGObjectClass export class ColorPanoItem extends PanoItem { @@ -21,6 +22,9 @@ export class ColorPanoItem extends PanoItem { this.colorItemSettings = this.settings.get_child('color-item'); + const color = colorString.to.rgb(colorString.get.rgb(this.dbItem.content) || [0, 0, 0]); + this.body.set_style(`background-color: ${color};`); + this.colorContainer = new St.BoxLayout({ ...orientationCompatibility(true), xExpand: true, @@ -85,7 +89,6 @@ export class ColorPanoItem extends PanoItem { this.overlay.setControlsBackground(getItemBackgroundColor(this.settings, headerBgColor, null)); this.header.set_style(`background-color: ${headerBgColor}; color: ${headerColor};`); - this.body.set_style(`background-color: ${this.dbItem.content};`); this.icon.set_style(`color: ${iconColor};`); this.label.set_style(`color: ${textColor}; font-family: ${metadataFontFamily}; font-size: ${metadataFontSize}px;`); } diff --git a/src/components/linkPanoItem.ts b/src/components/linkPanoItem.ts index 73ec2e11..7ad3e121 100644 --- a/src/components/linkPanoItem.ts +++ b/src/components/linkPanoItem.ts @@ -81,11 +81,6 @@ export class LinkPanoItem extends PanoItem { this.metaContainer.add_child(this.descriptionLabel); this.metaContainer.add_child(this.linkLabel); - if (this.settings.get_boolean('compact-mode')) { - this.body.vertical = false; - this.imageContainer.width = this.body.height * 1.618; - } - this.body.add_child(this.imageContainer); this.body.add_child(this.metaContainer); diff --git a/src/components/panoItem.ts b/src/components/panoItem.ts index 3779e790..3a2d07b3 100644 --- a/src/components/panoItem.ts +++ b/src/components/panoItem.ts @@ -50,6 +50,7 @@ export class PanoItem extends St.Widget { protected clipboardManager: ClipboardManager; public dbItem: DBItem; protected settings: Gio.Settings; + private hovered: boolean = false; private selected: boolean = false; private showControlsOnHover: boolean; @@ -73,18 +74,8 @@ export class PanoItem extends St.Widget { this.connect('key-focus-in', () => this.setSelected(true)); this.connect('key-focus-out', () => this.setSelected(false)); - this.connect('enter-event', () => { - Shell.Global.get().display.set_cursor(Meta.Cursor.POINTING_HAND); - if (!this.selected) { - this.set_style(`border: 4px solid ${this.settings.get_string('hovered-item-border-color')}`); - } - }); - this.connect('leave-event', () => { - Shell.Global.get().display.set_cursor(Meta.Cursor.DEFAULT); - if (!this.selected) { - this.set_style(''); - } - }); + this.connect('enter-event', () => this.setHovered(true)); + this.connect('leave-event', () => this.setHovered(false)); this.connect('activated', () => { this.get_parent()?.get_parent()?.get_parent()?.hide(); @@ -226,13 +217,26 @@ export class PanoItem extends St.Widget { private setSelected(selected: boolean) { if (selected) { - const activeItemBorderColor = this.settings.get_string('active-item-border-color'); - this.set_style(`border: 4px solid ${activeItemBorderColor} !important;`); this.grab_key_focus(); + } + this.selected = selected; + this.updateActive(); + } + + private setHovered(hovered: boolean) { + Shell.Global.get().display.set_cursor(hovered ? Meta.Cursor.POINTING_HAND : Meta.Cursor.DEFAULT); + this.hovered = hovered; + this.updateActive(); + } + + private updateActive() { + if (this.hovered || this.selected) { + this.add_style_class_name('active'); + this.set_style(`border: 4px solid ${this.settings.get_string('active-item-border-color')};`); } else { + this.remove_style_class_name('active'); this.set_style(''); } - this.selected = selected; } // The style-changed event is used here instead of the enter and leave events because those events @@ -277,8 +281,10 @@ export class PanoItem extends St.Widget { // Delete item on middle click case Clutter.BUTTON_MIDDLE: - this.emit('on-remove', JSON.stringify(this.dbItem)); - return Clutter.EVENT_STOP; + if (this.settings.get_boolean('remove-on-middle-click')) { + this.emit('on-remove', JSON.stringify(this.dbItem)); + return Clutter.EVENT_STOP; + } } return Clutter.EVENT_PROPAGATE; diff --git a/src/styles/stylesheet.css b/src/styles/stylesheet.css index 2977befb..1df68ffb 100644 --- a/src/styles/stylesheet.css +++ b/src/styles/stylesheet.css @@ -50,6 +50,11 @@ border-radius: 16px; margin: 6px 0px 12px 6px; border: 4px solid transparent; + box-shadow: 0 0 4px rgba(0, 0, 0, 0.1); +} + +.pano-item.active { + box-shadow: 0 0 0 rgba(0, 0, 0, 0.1); } .pano-window.vertical .pano-item { @@ -70,7 +75,8 @@ .pano-item-container { border-radius: 12px; - box-shadow: 0 0 4px rgba(0, 0, 0, 0.1); + /* Without this shadow the border is not redrawn if the box shadow is set */ + box-shadow: 0 0 4px transparent; } /* Overlay */ From f142b4de6ea04d095fef4d1844ac24e891665c9c Mon Sep 17 00:00:00 2001 From: boerdereinar Date: Sat, 8 Jun 2024 02:56:15 +0200 Subject: [PATCH 44/45] Fix pixel inconsistencies --- src/components/panoItem.ts | 2 +- src/styles/stylesheet.css | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/components/panoItem.ts b/src/components/panoItem.ts index 3a2d07b3..1f05485b 100644 --- a/src/components/panoItem.ts +++ b/src/components/panoItem.ts @@ -207,7 +207,7 @@ export class PanoItem extends St.Widget { const height = Math.floor(this.settings.get_int('item-height') * mult) + header; this.set_height(height * scaleFactor); - this.container.set_width(this.settings.get_int('item-width') * scaleFactor); + this.container.set_width((this.settings.get_int('item-width') - 2) * scaleFactor); // -2*4 for the border this.container.set_height((height - 8) * scaleFactor); this.body.set_height((height - 10 - header) * scaleFactor); diff --git a/src/styles/stylesheet.css b/src/styles/stylesheet.css index 1df68ffb..e57f6f66 100644 --- a/src/styles/stylesheet.css +++ b/src/styles/stylesheet.css @@ -48,7 +48,7 @@ /* Item */ .pano-item { border-radius: 16px; - margin: 6px 0px 12px 6px; + margin: 5px 0px 12px 6px; border: 4px solid transparent; box-shadow: 0 0 4px rgba(0, 0, 0, 0.1); } @@ -58,19 +58,19 @@ } .pano-window.vertical .pano-item { - margin: 6px 12px 0px 12px; + margin: 6px 10px 0px 10px; } .pano-item:first-child { - margin-left: 12px; + margin-left: 10px; } .pano-item:last-child { - margin-right: 12px; + margin-right: 10px; } .pano-window.vertical .pano-item:last-child { - margin-bottom: 12px; + margin-bottom: 10px; } .pano-item-container { From 8917be5d4abb9f05706b616db6c6bdebcf640fbf Mon Sep 17 00:00:00 2001 From: Totto16 Date: Sat, 22 Feb 2025 17:14:32 +0100 Subject: [PATCH 45/45] fix: use orientation compatibility functions instead of setting vertical (which is being deprecated) --- resources/po/ar.po | 2 +- resources/po/bg.po | 2 +- resources/po/cs.po | 2 +- resources/po/da.po | 2 +- resources/po/de.po | 2 +- resources/po/el.po | 2 +- resources/po/en.po | 2 +- resources/po/es.po | 2 +- resources/po/et.po | 2 +- resources/po/fi.po | 2 +- resources/po/fr.po | 2 +- resources/po/he.po | 2 +- resources/po/hr.po | 2 +- resources/po/hu.po | 2 +- resources/po/is.po | 2 +- resources/po/it.po | 2 +- resources/po/ja.po | 2 +- resources/po/ko.po | 2 +- resources/po/nl.po | 2 +- resources/po/no.po | 2 +- resources/po/oc.po | 2 +- resources/po/pano@elhan.io.pot | 2 +- resources/po/pl.po | 2 +- resources/po/pt.po | 2 +- resources/po/pt_BR.po | 2 +- resources/po/ro.po | 2 +- resources/po/ru.po | 2 +- resources/po/sk.po | 2 +- resources/po/sv.po | 2 +- resources/po/tr.po | 2 +- resources/po/uk.po | 2 +- resources/po/vi.po | 2 +- resources/po/zh_CN.po | 2 +- resources/po/zh_TW.po | 2 +- src/components/colorPanoItem.ts | 8 ++------ src/components/filePanoItem.ts | 22 +++++++--------------- src/components/linkPanoItem.ts | 18 ++++++------------ src/components/panoItem.ts | 2 +- src/components/panoItemHeader.ts | 5 +++-- src/components/panoItemOverlay.ts | 3 ++- src/components/panoScrollView.ts | 31 ++++++++----------------------- src/utils/shell_compatibility.ts | 8 ++++++++ 42 files changed, 71 insertions(+), 94 deletions(-) diff --git a/resources/po/ar.po b/resources/po/ar.po index a6bd9d8a..a6a120a1 100644 --- a/resources/po/ar.po +++ b/resources/po/ar.po @@ -31,7 +31,7 @@ msgstr "الوضع المخفي" msgid "Settings" msgstr "الإعدادات" -#: src/components/filePanoItem.ts:206 +#: src/components/filePanoItem.ts:207 msgid "items" msgstr "" diff --git a/resources/po/bg.po b/resources/po/bg.po index 2bd144a4..6b8e8b3e 100644 --- a/resources/po/bg.po +++ b/resources/po/bg.po @@ -31,7 +31,7 @@ msgstr "Режим \"инкогнито\"" msgid "Settings" msgstr "Настройки" -#: src/components/filePanoItem.ts:206 +#: src/components/filePanoItem.ts:207 msgid "items" msgstr "" diff --git a/resources/po/cs.po b/resources/po/cs.po index f04eb8be..17dc6dbd 100644 --- a/resources/po/cs.po +++ b/resources/po/cs.po @@ -31,7 +31,7 @@ msgstr "Anonymní režim" msgid "Settings" msgstr "Nastavení" -#: src/components/filePanoItem.ts:206 +#: src/components/filePanoItem.ts:207 msgid "items" msgstr "" diff --git a/resources/po/da.po b/resources/po/da.po index 818c4e9b..7264034c 100644 --- a/resources/po/da.po +++ b/resources/po/da.po @@ -31,7 +31,7 @@ msgstr "Inkognitotilstand" msgid "Settings" msgstr "Indstillinger" -#: src/components/filePanoItem.ts:206 +#: src/components/filePanoItem.ts:207 msgid "items" msgstr "" diff --git a/resources/po/de.po b/resources/po/de.po index ce23816e..5bcc723f 100644 --- a/resources/po/de.po +++ b/resources/po/de.po @@ -31,7 +31,7 @@ msgstr "Inkognito-Modus" msgid "Settings" msgstr "Einstellungen" -#: src/components/filePanoItem.ts:206 +#: src/components/filePanoItem.ts:207 msgid "items" msgstr "" diff --git a/resources/po/el.po b/resources/po/el.po index 823a394c..8c027d10 100644 --- a/resources/po/el.po +++ b/resources/po/el.po @@ -31,7 +31,7 @@ msgstr "Ανώνυμης" msgid "Settings" msgstr "Ρυθμίσεις" -#: src/components/filePanoItem.ts:206 +#: src/components/filePanoItem.ts:207 msgid "items" msgstr "" diff --git a/resources/po/en.po b/resources/po/en.po index 73064aca..0f636cc7 100644 --- a/resources/po/en.po +++ b/resources/po/en.po @@ -31,7 +31,7 @@ msgstr "Incognito Mode" msgid "Settings" msgstr "Settings" -#: src/components/filePanoItem.ts:206 +#: src/components/filePanoItem.ts:207 msgid "items" msgstr "" diff --git a/resources/po/es.po b/resources/po/es.po index 38802e44..0b57df57 100644 --- a/resources/po/es.po +++ b/resources/po/es.po @@ -31,7 +31,7 @@ msgstr "Modo incógnito" msgid "Settings" msgstr "Configuración" -#: src/components/filePanoItem.ts:206 +#: src/components/filePanoItem.ts:207 msgid "items" msgstr "" diff --git a/resources/po/et.po b/resources/po/et.po index fe47a4e9..f0ee66b9 100644 --- a/resources/po/et.po +++ b/resources/po/et.po @@ -31,7 +31,7 @@ msgstr "Inkognito režiim" msgid "Settings" msgstr "Seaded" -#: src/components/filePanoItem.ts:206 +#: src/components/filePanoItem.ts:207 msgid "items" msgstr "" diff --git a/resources/po/fi.po b/resources/po/fi.po index 2ec60d3f..372d8c71 100644 --- a/resources/po/fi.po +++ b/resources/po/fi.po @@ -31,7 +31,7 @@ msgstr "Incognito-tila" msgid "Settings" msgstr "Asetukset" -#: src/components/filePanoItem.ts:206 +#: src/components/filePanoItem.ts:207 msgid "items" msgstr "" diff --git a/resources/po/fr.po b/resources/po/fr.po index 841f07cc..a3790f89 100644 --- a/resources/po/fr.po +++ b/resources/po/fr.po @@ -31,7 +31,7 @@ msgstr "Mode incognito" msgid "Settings" msgstr "Paramètres" -#: src/components/filePanoItem.ts:206 +#: src/components/filePanoItem.ts:207 msgid "items" msgstr "" diff --git a/resources/po/he.po b/resources/po/he.po index 7016148d..3ebe4ed1 100644 --- a/resources/po/he.po +++ b/resources/po/he.po @@ -31,7 +31,7 @@ msgstr "מצב גלישה בסתר" msgid "Settings" msgstr "הגדרות" -#: src/components/filePanoItem.ts:206 +#: src/components/filePanoItem.ts:207 msgid "items" msgstr "" diff --git a/resources/po/hr.po b/resources/po/hr.po index 7ddd581a..ba355bb1 100644 --- a/resources/po/hr.po +++ b/resources/po/hr.po @@ -31,7 +31,7 @@ msgstr "" msgid "Settings" msgstr "" -#: src/components/filePanoItem.ts:206 +#: src/components/filePanoItem.ts:207 msgid "items" msgstr "" diff --git a/resources/po/hu.po b/resources/po/hu.po index 4bfc103e..7d37d1ef 100644 --- a/resources/po/hu.po +++ b/resources/po/hu.po @@ -31,7 +31,7 @@ msgstr "Inkognitómód" msgid "Settings" msgstr "Beállítások" -#: src/components/filePanoItem.ts:206 +#: src/components/filePanoItem.ts:207 msgid "items" msgstr "" diff --git a/resources/po/is.po b/resources/po/is.po index 554178c0..6598f50c 100644 --- a/resources/po/is.po +++ b/resources/po/is.po @@ -31,7 +31,7 @@ msgstr "Huliðsstilling" msgid "Settings" msgstr "Stillingar" -#: src/components/filePanoItem.ts:206 +#: src/components/filePanoItem.ts:207 msgid "items" msgstr "" diff --git a/resources/po/it.po b/resources/po/it.po index 1d7f19ad..55a55a11 100644 --- a/resources/po/it.po +++ b/resources/po/it.po @@ -31,7 +31,7 @@ msgstr "Modalità di navigazione in incognito" msgid "Settings" msgstr "Impostazioni" -#: src/components/filePanoItem.ts:206 +#: src/components/filePanoItem.ts:207 msgid "items" msgstr "" diff --git a/resources/po/ja.po b/resources/po/ja.po index afc103d9..ff70af76 100644 --- a/resources/po/ja.po +++ b/resources/po/ja.po @@ -31,7 +31,7 @@ msgstr "シークレットモード" msgid "Settings" msgstr "設定" -#: src/components/filePanoItem.ts:206 +#: src/components/filePanoItem.ts:207 msgid "items" msgstr "" diff --git a/resources/po/ko.po b/resources/po/ko.po index 24023a0e..f1079f43 100644 --- a/resources/po/ko.po +++ b/resources/po/ko.po @@ -31,7 +31,7 @@ msgstr "시크릿 모드" msgid "Settings" msgstr "설정" -#: src/components/filePanoItem.ts:206 +#: src/components/filePanoItem.ts:207 msgid "items" msgstr "" diff --git a/resources/po/nl.po b/resources/po/nl.po index a2596845..c5456dfc 100644 --- a/resources/po/nl.po +++ b/resources/po/nl.po @@ -31,7 +31,7 @@ msgstr "Incognitomodus" msgid "Settings" msgstr "Voorkeuren" -#: src/components/filePanoItem.ts:206 +#: src/components/filePanoItem.ts:207 msgid "items" msgstr "" diff --git a/resources/po/no.po b/resources/po/no.po index 325bed78..b866e256 100644 --- a/resources/po/no.po +++ b/resources/po/no.po @@ -31,7 +31,7 @@ msgstr "Inkognitomodus" msgid "Settings" msgstr "Innstillinger" -#: src/components/filePanoItem.ts:206 +#: src/components/filePanoItem.ts:207 msgid "items" msgstr "" diff --git a/resources/po/oc.po b/resources/po/oc.po index 5c65a8d3..d3ad0274 100644 --- a/resources/po/oc.po +++ b/resources/po/oc.po @@ -31,7 +31,7 @@ msgstr "Mòde incognito" msgid "Settings" msgstr "Paramètres" -#: src/components/filePanoItem.ts:206 +#: src/components/filePanoItem.ts:207 msgid "items" msgstr "" diff --git a/resources/po/pano@elhan.io.pot b/resources/po/pano@elhan.io.pot index 045798f5..a3b2a039 100644 --- a/resources/po/pano@elhan.io.pot +++ b/resources/po/pano@elhan.io.pot @@ -332,7 +332,7 @@ msgstr "" msgid "Item Width" msgstr "" -#: src/components/filePanoItem.ts:206 +#: src/components/filePanoItem.ts:207 msgid "items" msgstr "" diff --git a/resources/po/pl.po b/resources/po/pl.po index eaec1636..1d906307 100644 --- a/resources/po/pl.po +++ b/resources/po/pl.po @@ -31,7 +31,7 @@ msgstr "Tryb Incognito" msgid "Settings" msgstr "Ustawienia" -#: src/components/filePanoItem.ts:206 +#: src/components/filePanoItem.ts:207 msgid "items" msgstr "" diff --git a/resources/po/pt.po b/resources/po/pt.po index 1c7e8491..46e1da1c 100644 --- a/resources/po/pt.po +++ b/resources/po/pt.po @@ -31,7 +31,7 @@ msgstr "Modo de navegação anónima" msgid "Settings" msgstr "Configurações" -#: src/components/filePanoItem.ts:206 +#: src/components/filePanoItem.ts:207 msgid "items" msgstr "" diff --git a/resources/po/pt_BR.po b/resources/po/pt_BR.po index 9a969d40..b37e01ea 100644 --- a/resources/po/pt_BR.po +++ b/resources/po/pt_BR.po @@ -31,7 +31,7 @@ msgstr "Modo anônimo" msgid "Settings" msgstr "Configurações" -#: src/components/filePanoItem.ts:206 +#: src/components/filePanoItem.ts:207 msgid "items" msgstr "" diff --git a/resources/po/ro.po b/resources/po/ro.po index 373b4efb..44045d0c 100644 --- a/resources/po/ro.po +++ b/resources/po/ro.po @@ -31,7 +31,7 @@ msgstr "Modul incognito" msgid "Settings" msgstr "Setări" -#: src/components/filePanoItem.ts:206 +#: src/components/filePanoItem.ts:207 msgid "items" msgstr "" diff --git a/resources/po/ru.po b/resources/po/ru.po index a39668ea..edd0487b 100644 --- a/resources/po/ru.po +++ b/resources/po/ru.po @@ -31,7 +31,7 @@ msgstr "Режим инкогнито" msgid "Settings" msgstr "Настройки" -#: src/components/filePanoItem.ts:206 +#: src/components/filePanoItem.ts:207 msgid "items" msgstr "" diff --git a/resources/po/sk.po b/resources/po/sk.po index 293d10e8..50dd13e9 100644 --- a/resources/po/sk.po +++ b/resources/po/sk.po @@ -31,7 +31,7 @@ msgstr "Režim inkognito" msgid "Settings" msgstr "Nastavenia" -#: src/components/filePanoItem.ts:206 +#: src/components/filePanoItem.ts:207 msgid "items" msgstr "" diff --git a/resources/po/sv.po b/resources/po/sv.po index da31e9f4..654bb691 100644 --- a/resources/po/sv.po +++ b/resources/po/sv.po @@ -31,7 +31,7 @@ msgstr "Inkognitoläge" msgid "Settings" msgstr "Inställningar" -#: src/components/filePanoItem.ts:206 +#: src/components/filePanoItem.ts:207 msgid "items" msgstr "" diff --git a/resources/po/tr.po b/resources/po/tr.po index 4d76b70b..55a43757 100644 --- a/resources/po/tr.po +++ b/resources/po/tr.po @@ -31,7 +31,7 @@ msgstr "Gizli Mod" msgid "Settings" msgstr "Ayarlar" -#: src/components/filePanoItem.ts:206 +#: src/components/filePanoItem.ts:207 msgid "items" msgstr "" diff --git a/resources/po/uk.po b/resources/po/uk.po index 28480d78..025a2688 100644 --- a/resources/po/uk.po +++ b/resources/po/uk.po @@ -31,7 +31,7 @@ msgstr "Режим інкогніто" msgid "Settings" msgstr "Параметри" -#: src/components/filePanoItem.ts:206 +#: src/components/filePanoItem.ts:207 msgid "items" msgstr "" diff --git a/resources/po/vi.po b/resources/po/vi.po index 4eab94ab..3279f069 100644 --- a/resources/po/vi.po +++ b/resources/po/vi.po @@ -31,7 +31,7 @@ msgstr "Chế Độ Ẩn Danh" msgid "Settings" msgstr "Cài Đặt" -#: src/components/filePanoItem.ts:206 +#: src/components/filePanoItem.ts:207 msgid "items" msgstr "" diff --git a/resources/po/zh_CN.po b/resources/po/zh_CN.po index d4a7283d..09b9cbb6 100644 --- a/resources/po/zh_CN.po +++ b/resources/po/zh_CN.po @@ -31,7 +31,7 @@ msgstr "隐身模式" msgid "Settings" msgstr "设置" -#: src/components/filePanoItem.ts:206 +#: src/components/filePanoItem.ts:207 msgid "items" msgstr "" diff --git a/resources/po/zh_TW.po b/resources/po/zh_TW.po index 73257fa6..de852652 100644 --- a/resources/po/zh_TW.po +++ b/resources/po/zh_TW.po @@ -31,7 +31,7 @@ msgstr "無痕模式" msgid "Settings" msgstr "設定" -#: src/components/filePanoItem.ts:206 +#: src/components/filePanoItem.ts:207 msgid "items" msgstr "" diff --git a/src/components/colorPanoItem.ts b/src/components/colorPanoItem.ts index 60ff49b7..9cfc03fa 100644 --- a/src/components/colorPanoItem.ts +++ b/src/components/colorPanoItem.ts @@ -7,7 +7,7 @@ import { ClipboardContent, ClipboardManager, ContentType } from '@pano/utils/cli import { getItemBackgroundColor, isDark } from '@pano/utils/color'; import { DBItem } from '@pano/utils/db'; import { registerGObjectClass } from '@pano/utils/gjs'; -import { orientationCompatibility } from '@pano/utils/shell_compatibility'; +import { orientationCompatibility, setOrientationCompatibility } from '@pano/utils/shell_compatibility'; import colorString from 'color-string'; @registerGObjectClass @@ -70,11 +70,7 @@ export class ColorPanoItem extends PanoItem { } private setCompactMode() { - if (this.settings.get_boolean('compact-mode')) { - this.colorContainer.vertical = false; - } else { - this.colorContainer.vertical = true; - } + setOrientationCompatibility(this.colorContainer, !this.settings.get_boolean('compact-mode')); } private setStyle() { diff --git a/src/components/filePanoItem.ts b/src/components/filePanoItem.ts index cd15378e..3140e797 100644 --- a/src/components/filePanoItem.ts +++ b/src/components/filePanoItem.ts @@ -10,6 +10,7 @@ import { getItemBackgroundColor } from '@pano/utils/color'; import { DBItem } from '@pano/utils/db'; import { registerGObjectClass } from '@pano/utils/gjs'; import { gettext } from '@pano/utils/shell'; +import { orientationCompatibility, setOrientationCompatibility } from '@pano/utils/shell_compatibility'; import { isVisible } from '@pano/utils/ui'; enum PreviewType { @@ -41,7 +42,7 @@ export class FilePanoItem extends PanoItem { this.titleContainer = new St.BoxLayout({ styleClass: 'title-container', - vertical: false, + ...orientationCompatibility(false), xExpand: true, yExpand: false, yAlign: Clutter.ActorAlign.FILL, @@ -194,7 +195,7 @@ export class FilePanoItem extends PanoItem { label.text = `${commonDirectory.replace(homeDir, '~')}`; const labelContainer = new St.BoxLayout({ - vertical: true, + ...orientationCompatibility(true), xExpand: true, yExpand: false, xAlign: Clutter.ActorAlign.FILL, @@ -215,7 +216,7 @@ export class FilePanoItem extends PanoItem { this.preview = new St.BoxLayout({ styleClass: 'copied-file-preview copied-file-preview-files', clipToAllocation: true, - vertical: true, + ...orientationCompatibility(true), xExpand: true, yExpand: false, yAlign: Clutter.ActorAlign.FILL, @@ -280,7 +281,7 @@ export class FilePanoItem extends PanoItem { this.titleContainer.set_style( `color: ${titleColor}; font-family: ${titleFontFamily}; font-size: ${titleFontSize}px;`, ); - this.titleContainer.vertical = this.preview === null && !compactMode; + setOrientationCompatibility(this.titleContainer, this.preview === null && !compactMode); // Switch title and icon if (compactMode !== (this.titleContainer.firstChild !== this.icon)) { @@ -313,13 +314,7 @@ export class FilePanoItem extends PanoItem { const text = FilePanoItem.getFileContents(file); if (text !== null) { - this.clipboardManager.setContent( - new ClipboardContent({ - type: ContentType.TEXT, - value: text, - }), - false, - ); + this.clipboardManager.setContent(new ClipboardContent({ type: ContentType.TEXT, value: text }), false); return; } @@ -327,10 +322,7 @@ export class FilePanoItem extends PanoItem { } this.clipboardManager.setContent( - new ClipboardContent({ - type: ContentType.FILE, - value: { fileList: this.fileList, operation: this.operation }, - }), + new ClipboardContent({ type: ContentType.FILE, value: { fileList: this.fileList, operation: this.operation } }), ); } diff --git a/src/components/linkPanoItem.ts b/src/components/linkPanoItem.ts index 7ad3e121..2f270976 100644 --- a/src/components/linkPanoItem.ts +++ b/src/components/linkPanoItem.ts @@ -9,7 +9,7 @@ import { getItemBackgroundColor } from '@pano/utils/color'; import { DBItem } from '@pano/utils/db'; import { registerGObjectClass } from '@pano/utils/gjs'; import { getCachePath, gettext, openLinkInBrowser } from '@pano/utils/shell'; -import { orientationCompatibility } from '@pano/utils/shell_compatibility'; +import { orientationCompatibility, setOrientationCompatibility } from '@pano/utils/shell_compatibility'; import { isVisible } from '@pano/utils/ui'; const DEFAULT_LINK_PREVIEW_IMAGE_NAME = 'link-preview.svg'; @@ -50,7 +50,7 @@ export class LinkPanoItem extends PanoItem { } this.imageContainer = new St.BoxLayout({ - vertical: true, + ...orientationCompatibility(true), xExpand: true, yExpand: true, yAlign: Clutter.ActorAlign.FILL, @@ -73,10 +73,7 @@ export class LinkPanoItem extends PanoItem { this.descriptionLabel = new St.Label({ text: descriptionText, styleClass: 'link-description-label' }); this.descriptionLabel.clutterText.singleLineMode = true; - this.linkLabel = new St.Label({ - text: this.dbItem.content, - styleClass: 'link-label', - }); + this.linkLabel = new St.Label({ text: this.dbItem.content, styleClass: 'link-label' }); this.metaContainer.add_child(this.titleLabel); this.metaContainer.add_child(this.descriptionLabel); this.metaContainer.add_child(this.linkLabel); @@ -92,10 +89,7 @@ export class LinkPanoItem extends PanoItem { }); this.settings.connect('changed::header-style', this.setCompactMode.bind(this)); - const openLinkIcon = new St.Icon({ - iconName: 'web-browser-symbolic', - styleClass: 'pano-item-action-button-icon', - }); + const openLinkIcon = new St.Icon({ iconName: 'web-browser-symbolic', styleClass: 'pano-item-action-button-icon' }); const openLinkButton = new St.Button({ styleClass: 'pano-item-action-button pano-item-open-link-button', @@ -134,11 +128,11 @@ export class LinkPanoItem extends PanoItem { private setCompactMode() { if (this.settings.get_boolean('compact-mode')) { - this.body.vertical = false; + setOrientationCompatibility(this.body, false); this.imageContainer.width = this.settings.get_int('item-width') * 0.3; this.metaContainer.yAlign = Clutter.ActorAlign.CENTER; } else { - this.body.vertical = true; + setOrientationCompatibility(this.body, true); this.imageContainer.width = -1; this.metaContainer.yAlign = Clutter.ActorAlign.END; } diff --git a/src/components/panoItem.ts b/src/components/panoItem.ts index 1f05485b..fb3c817b 100644 --- a/src/components/panoItem.ts +++ b/src/components/panoItem.ts @@ -119,7 +119,7 @@ export class PanoItem extends St.Widget { this.container = new St.BoxLayout({ styleClass: 'pano-item-container', clipToAllocation: true, - vertical: true, + ...orientationCompatibility(true), xAlign: Clutter.ActorAlign.FILL, yAlign: Clutter.ActorAlign.FILL, xExpand: true, diff --git a/src/components/panoItemHeader.ts b/src/components/panoItemHeader.ts index 9bfe9d24..a691fb0f 100644 --- a/src/components/panoItemHeader.ts +++ b/src/components/panoItemHeader.ts @@ -7,6 +7,7 @@ import St from '@girs/st-16'; import { registerGObjectClass } from '@pano/utils/gjs'; import { ICON_PACKS, IPanoItemType } from '@pano/utils/panoItemType'; import { getCurrentExtensionSettings } from '@pano/utils/shell'; +import { orientationCompatibility } from '@pano/utils/shell_compatibility'; import { getHeaderHeight, HEADER_STYLES } from '@pano/utils/ui'; import { Locale } from 'date-fns'; import formatDistanceToNow from 'date-fns/formatDistanceToNow'; @@ -36,7 +37,7 @@ export class PanoItemHeader extends St.BoxLayout { constructor(ext: ExtensionBase, itemType: IPanoItemType, date: Date) { super({ styleClass: 'pano-item-header', - vertical: false, + ...orientationCompatibility(false), }); this.settings = getCurrentExtensionSettings(ext); @@ -64,7 +65,7 @@ export class PanoItemHeader extends St.BoxLayout { this.titleContainer = new St.BoxLayout({ styleClass: 'pano-item-title-container', - vertical: true, + ...orientationCompatibility(true), xExpand: true, xAlign: Clutter.ActorAlign.FILL, yAlign: Clutter.ActorAlign.CENTER, diff --git a/src/components/panoItemOverlay.ts b/src/components/panoItemOverlay.ts index ae73c5da..c992d0f4 100644 --- a/src/components/panoItemOverlay.ts +++ b/src/components/panoItemOverlay.ts @@ -3,6 +3,7 @@ import GObject from '@girs/gobject-2.0'; import St from '@girs/st-16'; import { isDark } from '@pano/utils/color'; import { registerGObjectClass, SignalsDefinition } from '@pano/utils/gjs'; +import { orientationCompatibility } from '@pano/utils/shell_compatibility'; export type PanoItemOverlaySignalType = 'on-remove' | 'on-favorite'; interface PanoItemOverlaySignals extends SignalsDefinition { @@ -26,7 +27,7 @@ export class PanoItemOverlay extends St.BoxLayout { constructor() { super({ styleClass: 'pano-item-overlay', - vertical: false, + ...orientationCompatibility(false), yAlign: Clutter.ActorAlign.FILL, xAlign: Clutter.ActorAlign.FILL, xExpand: true, diff --git a/src/components/panoScrollView.ts b/src/components/panoScrollView.ts index 031d2912..878d0942 100644 --- a/src/components/panoScrollView.ts +++ b/src/components/panoScrollView.ts @@ -14,6 +14,7 @@ import { ClipboardQueryBuilder, db, ItemType } from '@pano/utils/db'; import { registerGObjectClass, SignalRepresentationType, SignalsDefinition } from '@pano/utils/gjs'; import { createPanoItem, createPanoItemFromDb, removeItemResources } from '@pano/utils/panoItemFactory'; import { getCurrentExtensionSettings } from '@pano/utils/shell'; +import { orientationCompatibility, setOrientationCompatibility } from '@pano/utils/shell_compatibility'; import { isVertical } from '@pano/utils/ui'; export type PanoScrollViewSignalType = @@ -43,15 +44,9 @@ export class PanoScrollView extends St.ScrollView { 'scroll-focus-out': {}, 'scroll-update-list': {}, 'scroll-alt-press': {}, - 'scroll-tab-press': { - param_types: [GObject.TYPE_BOOLEAN], - accumulator: 0, - }, + 'scroll-tab-press': { param_types: [GObject.TYPE_BOOLEAN], accumulator: 0 }, 'scroll-backspace-press': {}, - 'scroll-key-press': { - param_types: [GObject.TYPE_STRING], - accumulator: 0, - }, + 'scroll-key-press': { param_types: [GObject.TYPE_STRING], accumulator: 0 }, }, }; @@ -67,11 +62,7 @@ export class PanoScrollView extends St.ScrollView { private clipboardManager: ClipboardManager; constructor(ext: ExtensionBase, clipboardManager: ClipboardManager, searchBox: SearchBox) { - super({ - overlayScrollbars: true, - xExpand: true, - yExpand: true, - }); + super({ overlayScrollbars: true, xExpand: true, yExpand: true }); this.ext = ext; this.clipboardManager = clipboardManager; this.searchBox = searchBox; @@ -80,14 +71,14 @@ export class PanoScrollView extends St.ScrollView { this.setScrollbarPolicy(); this.list = new St.BoxLayout({ - vertical: isVertical(this.settings.get_uint('window-position')), + ...orientationCompatibility(isVertical(this.settings.get_uint('window-position'))), xExpand: true, yExpand: true, }); this.settings.connect('changed::window-position', () => { this.setScrollbarPolicy(); - this.list.set_vertical(isVertical(this.settings.get_uint('window-position'))); + setOrientationCompatibility(this.list, isVertical(this.settings.get_uint('window-position'))); }); scrollViewAddChild(this, this.list); @@ -449,10 +440,7 @@ export class PanoScrollView extends St.ScrollView { return; } - adjustment.ease(value, { - duration: 150, - mode: Clutter.AnimationMode.EASE_OUT_QUAD, - }); + adjustment.ease(value, { duration: 150, mode: Clutter.AnimationMode.EASE_OUT_QUAD }); } selectFirstItem() { @@ -516,10 +504,7 @@ export class PanoScrollView extends St.ScrollView { adjustment.remove_transition('value'); - adjustment.ease(value, { - duration: 150, - mode: Clutter.AnimationMode.EASE_OUT_QUAD, - }); + adjustment.ease(value, { duration: 150, mode: Clutter.AnimationMode.EASE_OUT_QUAD }); return Clutter.EVENT_STOP; } diff --git a/src/utils/shell_compatibility.ts b/src/utils/shell_compatibility.ts index 1164e434..2e04934c 100644 --- a/src/utils/shell_compatibility.ts +++ b/src/utils/shell_compatibility.ts @@ -34,6 +34,14 @@ export function orientationCompatibility(vertical: boolean): OrientationReturnTy return { vertical: vertical }; } +export function setOrientationCompatibility(container: St.BoxLayout, vertical: boolean): void { + if (stOrientationIsSupported()) { + container.vertical = vertical; + } else { + container.orientation = vertical ? Clutter.Orientation.VERTICAL : Clutter.Orientation.HORIZONTAL; + } +} + const global = Shell.Global.get(); // GNOME < 48 version used to have this function, but instead of importing all types for that, just type that one manually