diff --git a/package/contents/config/main.xml b/package/contents/config/main.xml index 8993878..c3c2dfc 100644 --- a/package/contents/config/main.xml +++ b/package/contents/config/main.xml @@ -37,6 +37,17 @@ false + + + + + + + + + Medium + + 6 diff --git a/package/contents/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.dittomenu.mo b/package/contents/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.dittomenu.mo new file mode 100644 index 0000000..26517aa Binary files /dev/null and b/package/contents/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.dittomenu.mo differ diff --git a/package/contents/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.dittomenu.mo b/package/contents/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.dittomenu.mo index d6767a5..cf4c208 100644 Binary files a/package/contents/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.dittomenu.mo and b/package/contents/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.dittomenu.mo differ diff --git a/package/contents/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.dittomenu.mo b/package/contents/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.dittomenu.mo index 3407f0a..0b23c40 100644 Binary files a/package/contents/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.dittomenu.mo and b/package/contents/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.dittomenu.mo differ diff --git a/package/contents/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.dittomenu.mo b/package/contents/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.dittomenu.mo index 6cfe3a3..2ac5fcd 100644 Binary files a/package/contents/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.dittomenu.mo and b/package/contents/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.dittomenu.mo differ diff --git a/package/contents/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.dittomenu.mo b/package/contents/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.dittomenu.mo index 20eb703..aedb90d 100644 Binary files a/package/contents/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.dittomenu.mo and b/package/contents/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.dittomenu.mo differ diff --git a/package/contents/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.dittomenu.mo b/package/contents/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.dittomenu.mo index 5928c47..9362594 100644 Binary files a/package/contents/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.dittomenu.mo and b/package/contents/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.dittomenu.mo differ diff --git a/package/contents/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.dittomenu.mo b/package/contents/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.dittomenu.mo index 0620168..5156a13 100644 Binary files a/package/contents/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.dittomenu.mo and b/package/contents/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.dittomenu.mo differ diff --git a/package/contents/ui/ConfigGeneral.qml b/package/contents/ui/ConfigGeneral.qml index 3541930..ec86d25 100644 --- a/package/contents/ui/ConfigGeneral.qml +++ b/package/contents/ui/ConfigGeneral.qml @@ -51,6 +51,7 @@ Kirigami.FormLayout { property alias cfg_labels2lines: labels2lines.checked property alias cfg_displayPosition: displayPosition.currentIndex + property alias cfg_iconSize: iconSize.currentIndex RowLayout { @@ -163,7 +164,7 @@ Kirigami.FormLayout { } ComboBox { - Kirigami.FormData.label: i18n("Menu position") + Kirigami.FormData.label: i18n("Menu position:") id: displayPosition model: [ i18n("Default"), @@ -194,6 +195,18 @@ Kirigami.FormLayout { Kirigami.FormData.label: i18n("Number of rows") } + ComboBox { + Kirigami.FormData.label: i18n("Icon size:") + id: iconSize + model: [ + i18n("Small"), + i18n("Medium"), + i18n("Large"), + i18n("Huge"), + ] + onActivated: cfg_iconSize = currentIndex + } + RowLayout{ //Layout.fillWidth: true diff --git a/package/contents/ui/MenuRepresentation.qml b/package/contents/ui/MenuRepresentation.qml index 2c5a1bf..e37c62a 100644 --- a/package/contents/ui/MenuRepresentation.qml +++ b/package/contents/ui/MenuRepresentation.qml @@ -40,7 +40,11 @@ import QtQuick.Controls 2.12 Item{ id: main - property int sizeImage: PlasmaCore.Units.iconSizes.large * 2 + property int sizeImage: + if (plasmoid.configuration.iconSize === 0) PlasmaCore.Units.iconSizes.small * 2; + else if (plasmoid.configuration.iconSize === 2) PlasmaCore.Units.iconSizes.large * 2; + else if (plasmoid.configuration.iconSize === 3) PlasmaCore.Units.iconSizes.huge * 2; + else PlasmaCore.Units.iconSizes.medium * 2 onVisibleChanged: { root.visible = !root.visible @@ -55,7 +59,7 @@ Item{ location: PlasmaCore.Types.Floating hideOnWindowDeactivate: true - property int iconSize: PlasmaCore.Units.iconSizes.large + property int iconSize: sizeImage / 2 property int cellSize: iconSize + PlasmaCore.Units.gridUnit * 2 + (2 * Math.max(highlightItemSvg.margins.top + highlightItemSvg.margins.bottom, @@ -167,8 +171,8 @@ Item{ FocusScope { id: rootItem - Layout.minimumWidth: (root.cellSize * plasmoid.configuration.numberColumns)+ PlasmaCore.Units.largeSpacing - Layout.maximumWidth: (root.cellSize * plasmoid.configuration.numberColumns)+ PlasmaCore.Units.largeSpacing + Layout.minimumWidth: (root.cellSize * plasmoid.configuration.numberColumns) + PlasmaCore.Units.largeSpacing + PlasmaCore.Units.smallSpacing + Layout.maximumWidth: (root.cellSize * plasmoid.configuration.numberColumns) + PlasmaCore.Units.largeSpacing + PlasmaCore.Units.smallSpacing Layout.minimumHeight: (root.cellSize * plasmoid.configuration.numberRows) + searchField.implicitHeight + (plasmoid.configuration.viewUser ? main.sizeImage*0.5 : PlasmaCore.Units.largeSpacing * 1.5 ) + PlasmaCore.Units.largeSpacing * 6 Layout.maximumHeight: (root.cellSize * plasmoid.configuration.numberRows) + searchField.implicitHeight + (plasmoid.configuration.viewUser ? main.sizeImage*0.5 : PlasmaCore.Units.largeSpacing * 1.5 ) + PlasmaCore.Units.largeSpacing * 6 @@ -295,14 +299,14 @@ Item{ ToolTip.delay: 200 ToolTip.timeout: 1000 ToolTip.visible: hovered - ToolTip.text: i18n("Leave ...") + ToolTip.text: i18n("Leave...") } } PlasmaExtras.Heading { anchors { top: rowTop.bottom - topMargin: PlasmaCore.Units.largeSpacing + topMargin: -(PlasmaCore.Units.iconSizes.large - sizeImage) / 2 horizontalCenter: parent.horizontalCenter } level: 1 @@ -328,7 +332,7 @@ Item{ PlasmaComponents3.TextField { id: searchField Layout.fillWidth: true - placeholderText: i18n("Type here to search ...") + placeholderText: i18n("Type here to search...") leftPadding: PlasmaCore.Units.largeSpacing + PlasmaCore.Units.iconSizes.small text: "" //clearButtonShown: true // TODO: kubuntu 20.04 @@ -433,7 +437,8 @@ Item{ right: parent.right } - width: root.cellSize * plasmoid.configuration.numberColumns + PlasmaCore.Units.largeSpacing + width: root.cellSize * plasmoid.configuration.numberColumns + + PlasmaCore.Units.largeSpacing + PlasmaCore.Units.smallSpacing * 1.8 height: root.cellSize * plasmoid.configuration.numberRows focus: true cellWidth: root.cellSize @@ -473,12 +478,14 @@ Item{ right: parent.right } - width: root.cellSize * plasmoid.configuration.numberColumns + PlasmaCore.Units.largeSpacing + width: root.cellSize * plasmoid.configuration.numberColumns + + PlasmaCore.Units.largeSpacing + PlasmaCore.Units.smallSpacing * 1.8 height: root.cellSize * plasmoid.configuration.numberRows Item { id: mainColumn - width: root.cellSize * plasmoid.configuration.numberColumns + PlasmaCore.Units.largeSpacing + width: root.cellSize * plasmoid.configuration.numberColumns + + PlasmaCore.Units.largeSpacing + PlasmaCore.Units.smallSpacing * 1.8 height: root.cellSize * plasmoid.configuration.numberRows property Item visibleGrid: allAppsGrid @@ -492,7 +499,8 @@ Item{ ItemGridView { id: allAppsGrid - width: root.cellSize * plasmoid.configuration.numberColumns + PlasmaCore.Units.largeSpacing + width: root.cellSize * plasmoid.configuration.numberColumns + + PlasmaCore.Units.largeSpacing + PlasmaCore.Units.smallSpacing * 1.8 height: root.cellSize * plasmoid.configuration.numberRows cellWidth: root.cellSize @@ -514,7 +522,8 @@ Item{ ItemMultiGridView { id: runnerGrid - width: root.cellSize * plasmoid.configuration.numberColumns + PlasmaCore.Units.largeSpacing + width: root.cellSize * plasmoid.configuration.numberColumns + + PlasmaCore.Units.largeSpacing + PlasmaCore.Units.smallSpacing * 1.8 height: root.cellSize * plasmoid.configuration.numberRows z: (opacity == 1.0) ? 1 : 0 aCellWidth: parent.width - PlasmaCore.Units.largeSpacing diff --git a/package/metadata.desktop b/package/metadata.desktop index 6e9fe6c..86bfb94 100644 --- a/package/metadata.desktop +++ b/package/metadata.desktop @@ -20,11 +20,13 @@ X-KDE-PluginInfo-License=GPL v2+ X-KDE-PluginInfo-EnabledByDefault=true X-KDE-PluginInfo-Website=https://store.kde.org/p/1312669/ +Name[fr]=Ditto Menu Name[ko]=Ditto 메뉴 Name[nl]=Ditto-menu Name[pt_BR]=Ditto Menu Name[ru]=Ditto Menu Name[tr]=Ditto Menu +Comment[fr]=Un menu de lancement configurable Comment[ko]=프로그램 실행기 Comment[nl]=Een instelbare programmastarter Comment[pl]=Konfigurowalne menu uruchamiania programów diff --git a/package/translate/ReadMe.md b/package/translate/ReadMe.md index 197d7de..a22a7d2 100644 --- a/package/translate/ReadMe.md +++ b/package/translate/ReadMe.md @@ -35,10 +35,11 @@ Or if you know how to make a pull request ## Status | Locale | Lines | % Done| |----------|---------|-------| -| Template | 30 | | -| ko | 27/30 | 90% | -| nl | 20/30 | 66% | -| pl | 22/30 | 73% | -| pt_BR | 30/30 | 100% | -| ru | 30/30 | 100% | -| tr | 23/30 | 76% | +| Template | 35 | | +| fr | 29/35 | 82% | +| ko | 27/35 | 77% | +| nl | 21/35 | 60% | +| pl | 23/35 | 65% | +| pt_BR | 30/35 | 85% | +| ru | 35/35 | 100% | +| tr | 24/35 | 68% | diff --git a/package/translate/fr.po b/package/translate/fr.po index a224a35..c439bb3 100644 --- a/package/translate/fr.po +++ b/package/translate/fr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: dittomenu\n" "Report-Msgid-Bugs-To: https://store.kde.org/p/1312669/\n" -"POT-Creation-Date: 2023-05-01 16:59-0300\n" +"POT-Creation-Date: 2024-01-27 22:40+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: omano\n" "Language-Team: LANGUAGE \n" @@ -68,8 +68,8 @@ msgid "Show favorites first" msgstr "Voir les Favoris en premier" #: ../contents/ui/ConfigGeneral.qml -msgid "Menu position" -msgstr "Position du menu" +msgid "Menu position:" +msgstr "Position du menu:" #: ../contents/ui/ConfigGeneral.qml msgid "Default" @@ -95,6 +95,26 @@ msgstr "Nombre de colonnes" msgid "Number of rows" msgstr "Nombre de lignes" +#: ../contents/ui/ConfigGeneral.qml +msgid "Icon size:" +msgstr "" + +#: ../contents/ui/ConfigGeneral.qml +msgid "Small" +msgstr "" + +#: ../contents/ui/ConfigGeneral.qml +msgid "Medium" +msgstr "" + +#: ../contents/ui/ConfigGeneral.qml +msgid "Large" +msgstr "" + +#: ../contents/ui/ConfigGeneral.qml +msgid "Huge" +msgstr "" + #: ../contents/ui/ConfigGeneral.qml msgid "Unhide all hidden applications" msgstr "Ne plus cacher les applications" @@ -103,6 +123,10 @@ msgstr "Ne plus cacher les applications" msgid "Unhidden!" msgstr "Plus cachées!" +#: ../contents/ui/main.qml +msgid "Edit Applications..." +msgstr "" + #: ../contents/ui/MenuRepresentation.qml msgid "System Preferences" msgstr "Préférences Système" @@ -116,16 +140,16 @@ msgid "Lock Screen" msgstr "Verrouiller l'écran" #: ../contents/ui/MenuRepresentation.qml -msgid "Leave ..." -msgstr "Quitter ..." +msgid "Leave..." +msgstr "Quitter..." #: ../contents/ui/MenuRepresentation.qml msgid "Hi, " msgstr "Salut, " #: ../contents/ui/MenuRepresentation.qml -msgid "Type here to search ..." -msgstr "Rechercher ..." +msgid "Type here to search..." +msgstr "Rechercher..." #: ../contents/ui/MenuRepresentation.qml msgid "Favorites" diff --git a/package/translate/ko.po b/package/translate/ko.po index b63b441..30af874 100644 --- a/package/translate/ko.po +++ b/package/translate/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://store.kde.org/p/1312669/\n" -"POT-Creation-Date: 2023-05-01 16:59-0300\n" +"POT-Creation-Date: 2024-01-27 22:40+0300\n" "PO-Revision-Date: 2021-09-29 09:43+0900\n" "Last-Translator: \n" "Language-Team: \n" @@ -65,7 +65,7 @@ msgid "Show favorites first" msgstr "즐겨찾기 먼저 표시" #: ../contents/ui/ConfigGeneral.qml -msgid "Menu position" +msgid "Menu position:" msgstr "" #: ../contents/ui/ConfigGeneral.qml @@ -92,6 +92,26 @@ msgstr "" msgid "Number of rows" msgstr "" +#: ../contents/ui/ConfigGeneral.qml +msgid "Icon size:" +msgstr "" + +#: ../contents/ui/ConfigGeneral.qml +msgid "Small" +msgstr "" + +#: ../contents/ui/ConfigGeneral.qml +msgid "Medium" +msgstr "" + +#: ../contents/ui/ConfigGeneral.qml +msgid "Large" +msgstr "" + +#: ../contents/ui/ConfigGeneral.qml +msgid "Huge" +msgstr "" + #: ../contents/ui/ConfigGeneral.qml msgid "Unhide all hidden applications" msgstr "모든 숨겨진 프로그램 복구" @@ -117,7 +137,7 @@ msgid "Lock Screen" msgstr "잠금" #: ../contents/ui/MenuRepresentation.qml -msgid "Leave ..." +msgid "Leave..." msgstr "떠나기..." #: ../contents/ui/MenuRepresentation.qml @@ -125,7 +145,7 @@ msgid "Hi, " msgstr "안녕하세요, " #: ../contents/ui/MenuRepresentation.qml -msgid "Type here to search ..." +msgid "Type here to search..." msgstr "검색..." #: ../contents/ui/MenuRepresentation.qml diff --git a/package/translate/nl.po b/package/translate/nl.po index 477e5ea..31bab81 100644 --- a/package/translate/nl.po +++ b/package/translate/nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: dittomenu\n" "Report-Msgid-Bugs-To: https://store.kde.org/p/1312669/\n" -"POT-Creation-Date: 2023-05-01 16:59-0300\n" +"POT-Creation-Date: 2024-01-27 22:40+0300\n" "PO-Revision-Date: 2022-01-01 20:09+0100\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -69,8 +69,8 @@ msgid "Show favorites first" msgstr "Favorieten bovenaan tonen" #: ../contents/ui/ConfigGeneral.qml -msgid "Menu position" -msgstr "" +msgid "Menu position:" +msgstr "Menupositie:" #: ../contents/ui/ConfigGeneral.qml msgid "Default" @@ -96,6 +96,26 @@ msgstr "" msgid "Number of rows" msgstr "" +#: ../contents/ui/ConfigGeneral.qml +msgid "Icon size:" +msgstr "" + +#: ../contents/ui/ConfigGeneral.qml +msgid "Small" +msgstr "" + +#: ../contents/ui/ConfigGeneral.qml +msgid "Medium" +msgstr "" + +#: ../contents/ui/ConfigGeneral.qml +msgid "Large" +msgstr "" + +#: ../contents/ui/ConfigGeneral.qml +msgid "Huge" +msgstr "" + #: ../contents/ui/ConfigGeneral.qml msgid "Unhide all hidden applications" msgstr "Alle verborgen programma's zichtbaar maken" @@ -121,7 +141,7 @@ msgid "Lock Screen" msgstr "" #: ../contents/ui/MenuRepresentation.qml -msgid "Leave ..." +msgid "Leave..." msgstr "" #: ../contents/ui/MenuRepresentation.qml @@ -129,7 +149,7 @@ msgid "Hi, " msgstr "" #: ../contents/ui/MenuRepresentation.qml -msgid "Type here to search ..." +msgid "Type here to search..." msgstr "" #: ../contents/ui/MenuRepresentation.qml @@ -162,9 +182,6 @@ msgstr "" #~ msgid "Description (Name)" #~ msgstr "Beschrijving (naam)" -#~ msgid "Menu position:" -#~ msgstr "Menupositie:" - #~ msgid "Search" #~ msgstr "Zoeken" diff --git a/package/translate/pl.po b/package/translate/pl.po index 501335c..8e65fd8 100644 --- a/package/translate/pl.po +++ b/package/translate/pl.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: dittomenu\n" "Report-Msgid-Bugs-To: https://store.kde.org/p/1312669/\n" -"POT-Creation-Date: 2023-05-01 16:59-0300\n" +"POT-Creation-Date: 2024-01-27 22:40+0300\n" "PO-Revision-Date: 2022-04-05 10:40+0100\n" "Last-Translator: Krzysztof Korab \n" "Language-Team: \n" @@ -68,8 +68,8 @@ msgid "Show favorites first" msgstr "Najpierw pokaż ulubione" #: ../contents/ui/ConfigGeneral.qml -msgid "Menu position" -msgstr "" +msgid "Menu position:" +msgstr "Położenie menu:" #: ../contents/ui/ConfigGeneral.qml msgid "Default" @@ -95,6 +95,26 @@ msgstr "" msgid "Number of rows" msgstr "" +#: ../contents/ui/ConfigGeneral.qml +msgid "Icon size:" +msgstr "" + +#: ../contents/ui/ConfigGeneral.qml +msgid "Small" +msgstr "" + +#: ../contents/ui/ConfigGeneral.qml +msgid "Medium" +msgstr "" + +#: ../contents/ui/ConfigGeneral.qml +msgid "Large" +msgstr "" + +#: ../contents/ui/ConfigGeneral.qml +msgid "Huge" +msgstr "" + #: ../contents/ui/ConfigGeneral.qml msgid "Unhide all hidden applications" msgstr "Uwidocznij wszystkie ukryte aplikacje" @@ -120,7 +140,7 @@ msgid "Lock Screen" msgstr "" #: ../contents/ui/MenuRepresentation.qml -msgid "Leave ..." +msgid "Leave..." msgstr "" #: ../contents/ui/MenuRepresentation.qml @@ -128,7 +148,7 @@ msgid "Hi, " msgstr "Cześć, " #: ../contents/ui/MenuRepresentation.qml -msgid "Type here to search ..." +msgid "Type here to search..." msgstr "Wpisz tutaj, aby wyszukać..." #: ../contents/ui/MenuRepresentation.qml @@ -161,9 +181,6 @@ msgstr "" #~ msgid "Description (Name)" #~ msgstr "Opis (Nazwa)" -#~ msgid "Menu position:" -#~ msgstr "Położenie menu:" - #~ msgid "Search" #~ msgstr "Szukaj" diff --git a/package/translate/pt_BR.po b/package/translate/pt_BR.po index c3df0c0..9d40a80 100644 --- a/package/translate/pt_BR.po +++ b/package/translate/pt_BR.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: dittomenu\n" "Report-Msgid-Bugs-To: https://store.kde.org/p/1312669/\n" -"POT-Creation-Date: 2023-05-01 16:59-0300\n" +"POT-Creation-Date: 2024-01-27 22:40+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -68,8 +68,8 @@ msgid "Show favorites first" msgstr "Exbir os Favoritros primeiro" #: ../contents/ui/ConfigGeneral.qml -msgid "Menu position" -msgstr "Posição do menu" +msgid "Menu position:" +msgstr "Posição do menu:" #: ../contents/ui/ConfigGeneral.qml msgid "Default" @@ -95,6 +95,26 @@ msgstr "Numero de colunas" msgid "Number of rows" msgstr "Numero de filas" +#: ../contents/ui/ConfigGeneral.qml +msgid "Icon size:" +msgstr "" + +#: ../contents/ui/ConfigGeneral.qml +msgid "Small" +msgstr "" + +#: ../contents/ui/ConfigGeneral.qml +msgid "Medium" +msgstr "" + +#: ../contents/ui/ConfigGeneral.qml +msgid "Large" +msgstr "" + +#: ../contents/ui/ConfigGeneral.qml +msgid "Huge" +msgstr "" + #: ../contents/ui/ConfigGeneral.qml msgid "Unhide all hidden applications" msgstr "Mostrar aplicativos ocultos" @@ -120,15 +140,15 @@ msgid "Lock Screen" msgstr "Tela de bloqueio" #: ../contents/ui/MenuRepresentation.qml -msgid "Leave ..." -msgstr "Sair ..." +msgid "Leave..." +msgstr "Sair..." #: ../contents/ui/MenuRepresentation.qml msgid "Hi, " msgstr "Olá, " #: ../contents/ui/MenuRepresentation.qml -msgid "Type here to search ..." +msgid "Type here to search..." msgstr "Digite aqui para pesquisar" #: ../contents/ui/MenuRepresentation.qml diff --git a/package/translate/ru.po b/package/translate/ru.po index 5bd501d..3349e6d 100644 --- a/package/translate/ru.po +++ b/package/translate/ru.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: dittomenu\n" "Report-Msgid-Bugs-To: https://store.kde.org/p/1312669/\n" -"POT-Creation-Date: 2023-05-01 16:59-0300\n" +"POT-Creation-Date: 2024-01-27 22:40+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Edward Karate \n" "Language-Team: LANGUAGE \n" @@ -35,23 +35,23 @@ msgstr "Добавить в избранное" #: ../contents/code/tools.js msgid "On All Activities" -msgstr "По всем видам деятельности" +msgstr "Для всех активностей" #: ../contents/code/tools.js msgid "On The Current Activity" -msgstr "О текущей деятельности" +msgstr "Для текущей активности" #: ../contents/code/tools.js msgid "Show In Favorites" -msgstr "Показать в Избранном" +msgstr "Показать в избранном" #: ../contents/config/config.qml msgid "General" -msgstr "Общие" +msgstr "Основное" #: ../contents/ui/ConfigGeneral.qml msgid "Icon:" -msgstr "Значок" +msgstr "Значок:" #: ../contents/ui/ConfigGeneral.qml msgctxt "@item:inmenu Open icon chooser dialog" @@ -65,11 +65,11 @@ msgstr "Очистить значок" #: ../contents/ui/ConfigGeneral.qml msgid "Show favorites first" -msgstr "Сначала показать избранное" +msgstr "Сначала отображать избранное" #: ../contents/ui/ConfigGeneral.qml -msgid "Menu position" -msgstr "Положение меню" +msgid "Menu position:" +msgstr "Положение меню:" #: ../contents/ui/ConfigGeneral.qml msgid "Default" @@ -77,7 +77,7 @@ msgstr "По умолчанию" #: ../contents/ui/ConfigGeneral.qml msgid "Center" -msgstr "Центр" +msgstr "По центру" #: ../contents/ui/ConfigGeneral.qml msgid "Center bottom" @@ -85,7 +85,7 @@ msgstr "Снизу по центру" #: ../contents/ui/ConfigGeneral.qml msgid "Show labels in two lines" -msgstr "Отображать метки в две строки" +msgstr "Отображать названия в две строки" #: ../contents/ui/ConfigGeneral.qml msgid "Number of columns" @@ -95,13 +95,33 @@ msgstr "Количество колонок" msgid "Number of rows" msgstr "Количество строк" +#: ../contents/ui/ConfigGeneral.qml +msgid "Icon size:" +msgstr "Размер значков:" + +#: ../contents/ui/ConfigGeneral.qml +msgid "Small" +msgstr "Маленькие" + +#: ../contents/ui/ConfigGeneral.qml +msgid "Medium" +msgstr "Средние" + +#: ../contents/ui/ConfigGeneral.qml +msgid "Large" +msgstr "Большие" + +#: ../contents/ui/ConfigGeneral.qml +msgid "Huge" +msgstr "Огромные" + #: ../contents/ui/ConfigGeneral.qml msgid "Unhide all hidden applications" msgstr "Показать все скрытые приложения" #: ../contents/ui/ConfigGeneral.qml msgid "Unhidden!" -msgstr "Показаны!" +msgstr "Готово!" #: ../contents/ui/main.qml msgid "Edit Applications..." @@ -113,22 +133,22 @@ msgstr "Параметры системы" #: ../contents/ui/MenuRepresentation.qml msgid "User Home" -msgstr "Домашняя папка" +msgstr "Домашняя директория" #: ../contents/ui/MenuRepresentation.qml msgid "Lock Screen" msgstr "Заблокировать" #: ../contents/ui/MenuRepresentation.qml -msgid "Leave ..." -msgstr "Выход ..." +msgid "Leave..." +msgstr "Выход..." #: ../contents/ui/MenuRepresentation.qml msgid "Hi, " msgstr "Привет, " #: ../contents/ui/MenuRepresentation.qml -msgid "Type here to search ..." +msgid "Type here to search..." msgstr "Введите текст для поиска..." #: ../contents/ui/MenuRepresentation.qml @@ -161,9 +181,6 @@ msgstr "Все приложения" #~ msgid "Description (Name)" #~ msgstr "Описание (Имя)" -#~ msgid "Menu position:" -#~ msgstr "Позиция меню" - #~ msgid "Search" #~ msgstr "Поиск" diff --git a/package/translate/template.pot b/package/translate/template.pot index ab57d31..fc449ed 100644 --- a/package/translate/template.pot +++ b/package/translate/template.pot @@ -1,5 +1,5 @@ # Translation of dittomenu in LANGUAGE -# Copyright (C) 2023 +# Copyright (C) 2024 # This file is distributed under the same license as the dittomenu package. # FIRST AUTHOR , YEAR. # @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: dittomenu\n" "Report-Msgid-Bugs-To: https://store.kde.org/p/1312669/\n" -"POT-Creation-Date: 2023-05-01 16:59-0300\n" +"POT-Creation-Date: 2024-01-27 22:40+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -68,7 +68,7 @@ msgid "Show favorites first" msgstr "" #: ../contents/ui/ConfigGeneral.qml -msgid "Menu position" +msgid "Menu position:" msgstr "" #: ../contents/ui/ConfigGeneral.qml @@ -95,6 +95,26 @@ msgstr "" msgid "Number of rows" msgstr "" +#: ../contents/ui/ConfigGeneral.qml +msgid "Icon size:" +msgstr "" + +#: ../contents/ui/ConfigGeneral.qml +msgid "Small" +msgstr "" + +#: ../contents/ui/ConfigGeneral.qml +msgid "Medium" +msgstr "" + +#: ../contents/ui/ConfigGeneral.qml +msgid "Large" +msgstr "" + +#: ../contents/ui/ConfigGeneral.qml +msgid "Huge" +msgstr "" + #: ../contents/ui/ConfigGeneral.qml msgid "Unhide all hidden applications" msgstr "" @@ -120,7 +140,7 @@ msgid "Lock Screen" msgstr "" #: ../contents/ui/MenuRepresentation.qml -msgid "Leave ..." +msgid "Leave..." msgstr "" #: ../contents/ui/MenuRepresentation.qml @@ -128,7 +148,7 @@ msgid "Hi, " msgstr "" #: ../contents/ui/MenuRepresentation.qml -msgid "Type here to search ..." +msgid "Type here to search..." msgstr "" #: ../contents/ui/MenuRepresentation.qml diff --git a/package/translate/tr.po b/package/translate/tr.po index fa1c50b..a83f431 100644 --- a/package/translate/tr.po +++ b/package/translate/tr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: dittomenu\n" "Report-Msgid-Bugs-To: https://store.kde.org/p/1312669/\n" -"POT-Creation-Date: 2023-05-01 16:59-0300\n" +"POT-Creation-Date: 2024-01-27 22:40+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -71,8 +71,8 @@ msgid "Show favorites first" msgstr "Önce favorileri göster" #: ../contents/ui/ConfigGeneral.qml -msgid "Menu position" -msgstr "" +msgid "Menu position:" +msgstr "Menü konumu:" #: ../contents/ui/ConfigGeneral.qml msgid "Default" @@ -98,6 +98,26 @@ msgstr "" msgid "Number of rows" msgstr "" +#: ../contents/ui/ConfigGeneral.qml +msgid "Icon size:" +msgstr "" + +#: ../contents/ui/ConfigGeneral.qml +msgid "Small" +msgstr "" + +#: ../contents/ui/ConfigGeneral.qml +msgid "Medium" +msgstr "" + +#: ../contents/ui/ConfigGeneral.qml +msgid "Large" +msgstr "" + +#: ../contents/ui/ConfigGeneral.qml +msgid "Huge" +msgstr "" + #: ../contents/ui/ConfigGeneral.qml msgid "Unhide all hidden applications" msgstr "Tüm gizli uygulamaları göster" @@ -123,7 +143,7 @@ msgid "Lock Screen" msgstr "" #: ../contents/ui/MenuRepresentation.qml -msgid "Leave ..." +msgid "Leave..." msgstr "" #: ../contents/ui/MenuRepresentation.qml @@ -131,8 +151,8 @@ msgid "Hi, " msgstr "Merhaba, " #: ../contents/ui/MenuRepresentation.qml -msgid "Type here to search ..." -msgstr "Aramak için buraya yazınız ..." +msgid "Type here to search..." +msgstr "Aramak için buraya yazınız..." #: ../contents/ui/MenuRepresentation.qml msgid "Favorites" @@ -164,9 +184,6 @@ msgstr "" #~ msgid "Description (Name)" #~ msgstr "Açıklama (İsim)" -#~ msgid "Menu position:" -#~ msgstr "Menü konumu:" - #~ msgid "Search" #~ msgstr "Ara"