From 824792cca743bc4e0950c169d82fe9b24e623e62 Mon Sep 17 00:00:00 2001 From: bbedward Date: Mon, 5 Jan 2026 12:22:05 -0500 Subject: [PATCH] notifications: add support for none, count, app name, and full detail for lock screen fixes #557 --- CHANGELOG.MD | 2 + quickshell/Common/SettingsData.qml | 1 + quickshell/Common/settings/SettingsSpec.js | 1 + quickshell/Modules/Lock/LockScreenContent.qml | 297 +++++- .../Notifications/Center/NotificationCard.qml | 6 +- quickshell/Modules/Settings/LockScreenTab.qml | 15 + .../Modules/Settings/NotificationsTab.qml | 22 + quickshell/translations/en.json | 978 ++++++++++++++---- quickshell/translations/poexports/es.json | 293 ++++++ quickshell/translations/poexports/fa.json | 293 ++++++ quickshell/translations/poexports/he.json | 293 ++++++ quickshell/translations/poexports/hu.json | 371 ++++++- quickshell/translations/poexports/it.json | 507 +++++++-- quickshell/translations/poexports/ja.json | 293 ++++++ quickshell/translations/poexports/pl.json | 293 ++++++ quickshell/translations/poexports/pt.json | 293 ++++++ quickshell/translations/poexports/tr.json | 293 ++++++ quickshell/translations/poexports/zh_CN.json | 351 ++++++- quickshell/translations/poexports/zh_TW.json | 413 ++++++-- .../translations/settings_search_index.json | 768 +++++++++++++- quickshell/translations/template.json | 759 +++++++++++++- 21 files changed, 6081 insertions(+), 461 deletions(-) diff --git a/CHANGELOG.MD b/CHANGELOG.MD index d5bf9f94..8106a98d 100644 --- a/CHANGELOG.MD +++ b/CHANGELOG.MD @@ -19,3 +19,5 @@ This file is more of a quick reference so I know what to account for before next - **BREAKING** vscode theme needs re-installed - dms doctor cmd - niri/hypr/mango gaps/window/border overrides +- settings search +- notification display ops on lock screen diff --git a/quickshell/Common/SettingsData.qml b/quickshell/Common/SettingsData.qml index cbb5cf19..f20669a7 100644 --- a/quickshell/Common/SettingsData.qml +++ b/quickshell/Common/SettingsData.qml @@ -356,6 +356,7 @@ Singleton { property bool fprintdAvailable: false property string lockScreenActiveMonitor: "all" property string lockScreenInactiveColor: "#000000" + property int lockScreenNotificationMode: 0 property bool hideBrightnessSlider: false property int notificationTimeoutLow: 5000 diff --git a/quickshell/Common/settings/SettingsSpec.js b/quickshell/Common/settings/SettingsSpec.js index a425945b..744f6c29 100644 --- a/quickshell/Common/settings/SettingsSpec.js +++ b/quickshell/Common/settings/SettingsSpec.js @@ -245,6 +245,7 @@ var SPEC = { fprintdAvailable: { def: false, persist: false }, lockScreenActiveMonitor: { def: "all" }, lockScreenInactiveColor: { def: "#000000" }, + lockScreenNotificationMode: { def: 0 }, hideBrightnessSlider: { def: false }, notificationTimeoutLow: { def: 5000 }, diff --git a/quickshell/Modules/Lock/LockScreenContent.qml b/quickshell/Modules/Lock/LockScreenContent.qml index 342da680..7ab86244 100644 --- a/quickshell/Modules/Lock/LockScreenContent.qml +++ b/quickshell/Modules/Lock/LockScreenContent.qml @@ -348,10 +348,305 @@ Item { opacity: 0.9 } + Item { + id: lockNotificationPanel + + readonly property int notificationMode: SettingsData.lockScreenNotificationMode + readonly property var notifications: NotificationService.groupedNotifications + readonly property int totalCount: { + let count = 0; + for (const group of notifications) { + count += group.count || 0; + } + return count; + } + readonly property bool hasNotifications: totalCount > 0 + readonly property var appNameGroups: { + const groups = {}; + for (const group of notifications) { + const appName = (group.appName || "Unknown").toLowerCase(); + if (!groups[appName]) { + groups[appName] = { + appName: group.appName || I18n.tr("Unknown"), + count: 0, + latestNotification: group.latestNotification + }; + } + groups[appName].count += group.count || 0; + if (group.latestNotification && (!groups[appName].latestNotification || group.latestNotification.time > groups[appName].latestNotification.time)) { + groups[appName].latestNotification = group.latestNotification; + } + } + return Object.values(groups).sort((a, b) => b.count - a.count); + } + + anchors.horizontalCenter: parent.horizontalCenter + anchors.top: dateText.visible ? dateText.bottom : clockContainer.bottom + anchors.topMargin: Theme.spacingM + width: Math.min(380, parent.width - Theme.spacingXL * 2) + height: notificationMode === 0 || !hasNotifications ? 0 : contentLoader.height + visible: notificationMode > 0 && hasNotifications + clip: true + + Behavior on height { + NumberAnimation { + duration: Theme.mediumDuration + easing.type: Theme.standardEasing + } + } + + Loader { + id: contentLoader + anchors.left: parent.left + anchors.right: parent.right + active: lockNotificationPanel.notificationMode > 0 && lockNotificationPanel.hasNotifications + sourceComponent: { + switch (lockNotificationPanel.notificationMode) { + case 1: + return countOnlyComponent; + case 2: + return appNamesComponent; + case 3: + return fullContentComponent; + default: + return null; + } + } + } + + Component { + id: countOnlyComponent + + Rectangle { + width: parent.width + height: 44 + radius: Theme.cornerRadius + color: Qt.rgba(0, 0, 0, 0.3) + border.color: Qt.rgba(1, 1, 1, 0.1) + border.width: 1 + + Row { + anchors.centerIn: parent + spacing: Theme.spacingS + + DankIcon { + name: "notifications" + size: Theme.iconSize + color: "white" + anchors.verticalCenter: parent.verticalCenter + } + + StyledText { + text: lockNotificationPanel.totalCount === 1 ? I18n.tr("1 notification") : I18n.tr("%1 notifications").arg(lockNotificationPanel.totalCount) + font.pixelSize: Theme.fontSizeMedium + color: "white" + anchors.verticalCenter: parent.verticalCenter + } + } + } + } + + Component { + id: appNamesComponent + + Rectangle { + width: parent.width + height: Math.min(appNamesColumn.implicitHeight + Theme.spacingM * 2, 200) + radius: Theme.cornerRadius + color: Qt.rgba(0, 0, 0, 0.3) + border.color: Qt.rgba(1, 1, 1, 0.1) + border.width: 1 + clip: true + + Flickable { + anchors.fill: parent + anchors.margins: Theme.spacingM + contentHeight: appNamesColumn.implicitHeight + clip: true + boundsBehavior: Flickable.StopAtBounds + + Column { + id: appNamesColumn + width: parent.width + spacing: Theme.spacingS + + Repeater { + model: lockNotificationPanel.appNameGroups.slice(0, 5) + + Row { + required property var modelData + width: parent.width + spacing: Theme.spacingS + + DankIcon { + name: "notifications" + size: Theme.iconSize - 4 + color: "white" + opacity: 0.8 + anchors.verticalCenter: parent.verticalCenter + } + + StyledText { + text: modelData.appName || I18n.tr("Unknown") + font.pixelSize: Theme.fontSizeMedium + color: "white" + elide: Text.ElideRight + width: parent.width - Theme.iconSize - countBadge.width - Theme.spacingS * 2 + anchors.verticalCenter: parent.verticalCenter + } + + Rectangle { + id: countBadge + width: countText.implicitWidth + Theme.spacingS * 2 + height: 20 + radius: 10 + color: Qt.rgba(1, 1, 1, 0.2) + visible: modelData.count > 1 + anchors.verticalCenter: parent.verticalCenter + + StyledText { + id: countText + anchors.centerIn: parent + text: modelData.count > 99 ? "99+" : modelData.count.toString() + font.pixelSize: Theme.fontSizeSmall + color: "white" + } + } + } + } + + StyledText { + visible: lockNotificationPanel.appNameGroups.length > 5 + text: I18n.tr("+ %1 more").arg(lockNotificationPanel.appNameGroups.length - 5) + font.pixelSize: Theme.fontSizeSmall + color: "white" + opacity: 0.7 + } + } + } + } + } + + Component { + id: fullContentComponent + + Rectangle { + width: parent.width + height: Math.min(fullContentColumn.implicitHeight + Theme.spacingM * 2, 280) + radius: Theme.cornerRadius + color: Qt.rgba(0, 0, 0, 0.3) + border.color: Qt.rgba(1, 1, 1, 0.1) + border.width: 1 + clip: true + + Flickable { + anchors.fill: parent + anchors.margins: Theme.spacingM + contentHeight: fullContentColumn.implicitHeight + clip: true + boundsBehavior: Flickable.StopAtBounds + + Column { + id: fullContentColumn + width: parent.width + spacing: Theme.spacingM + + Repeater { + model: { + const items = []; + for (const group of lockNotificationPanel.appNameGroups) { + if (group.latestNotification && items.length < 5) { + items.push(group.latestNotification); + } + } + return items; + } + + Rectangle { + required property var modelData + required property int index + width: parent.width + height: notifContent.implicitHeight + Theme.spacingS * 2 + radius: Theme.cornerRadius - 4 + color: Qt.rgba(1, 1, 1, 0.05) + + Column { + id: notifContent + anchors.left: parent.left + anchors.right: parent.right + anchors.top: parent.top + anchors.margins: Theme.spacingS + spacing: 2 + + Row { + width: parent.width + spacing: Theme.spacingXS + + StyledText { + text: modelData.appName || I18n.tr("Unknown") + font.pixelSize: Theme.fontSizeSmall + font.weight: Font.Medium + color: "white" + opacity: 0.7 + elide: Text.ElideRight + width: parent.width - timeText.implicitWidth - Theme.spacingXS + } + + StyledText { + id: timeText + text: modelData.timeStr || "" + font.pixelSize: Theme.fontSizeSmall + color: "white" + opacity: 0.5 + } + } + + StyledText { + width: parent.width + text: modelData.summary || "" + font.pixelSize: Theme.fontSizeMedium + font.weight: Font.Medium + color: "white" + elide: Text.ElideRight + maximumLineCount: 1 + visible: text.length > 0 + } + + StyledText { + width: parent.width + text: { + const body = modelData.body || ""; + return body.replace(/<[^>]*>/g, '').replace(/\n/g, ' '); + } + font.pixelSize: Theme.fontSizeSmall + color: "white" + opacity: 0.8 + elide: Text.ElideRight + maximumLineCount: 2 + wrapMode: Text.WordWrap + visible: text.length > 0 + } + } + } + } + + StyledText { + visible: lockNotificationPanel.appNameGroups.length > 5 + text: I18n.tr("+ %1 more").arg(lockNotificationPanel.appNameGroups.length - 5) + font.pixelSize: Theme.fontSizeSmall + color: "white" + opacity: 0.7 + } + } + } + } + } + } + ColumnLayout { id: passwordLayout anchors.horizontalCenter: parent.horizontalCenter - anchors.top: dateText.visible ? dateText.bottom : clockContainer.bottom + anchors.top: lockNotificationPanel.visible ? lockNotificationPanel.bottom : (dateText.visible ? dateText.bottom : clockContainer.bottom) anchors.topMargin: Theme.spacingL spacing: Theme.spacingM width: 380 diff --git a/quickshell/Modules/Notifications/Center/NotificationCard.qml b/quickshell/Modules/Notifications/Center/NotificationCard.qml index 30162a79..9330984b 100644 --- a/quickshell/Modules/Notifications/Center/NotificationCard.qml +++ b/quickshell/Modules/Notifications/Center/NotificationCard.qml @@ -622,9 +622,9 @@ Rectangle { anchors.rightMargin: 16 anchors.bottom: parent.bottom anchors.bottomMargin: 8 - width: clearText.width + 16 - height: clearText.height + 8 - radius: 6 + width: Math.max(clearText.implicitWidth + 12, 50) + height: 24 + radius: 4 color: isHovered ? Qt.rgba(Theme.primary.r, Theme.primary.g, Theme.primary.b, 0.1) : "transparent" StyledText { diff --git a/quickshell/Modules/Settings/LockScreenTab.qml b/quickshell/Modules/Settings/LockScreenTab.qml index 07ed70d9..3b670319 100644 --- a/quickshell/Modules/Settings/LockScreenTab.qml +++ b/quickshell/Modules/Settings/LockScreenTab.qml @@ -75,6 +75,21 @@ Item { checked: SettingsData.lockScreenShowPasswordField onToggled: checked => SettingsData.set("lockScreenShowPasswordField", checked) } + + SettingsDropdownRow { + settingKey: "lockScreenNotificationMode" + tags: ["lock", "screen", "notification", "notifications", "privacy"] + text: I18n.tr("Notification Display", "lock screen notification privacy setting") + description: I18n.tr("Control what notification information is shown on the lock screen", "lock screen notification privacy setting") + options: [I18n.tr("Disabled", "lock screen notification mode option"), I18n.tr("Count Only", "lock screen notification mode option"), I18n.tr("App Names", "lock screen notification mode option"), I18n.tr("Full Content", "lock screen notification mode option")] + currentValue: options[SettingsData.lockScreenNotificationMode] || options[0] + onValueChanged: value => { + const idx = options.indexOf(value); + if (idx >= 0) { + SettingsData.set("lockScreenNotificationMode", idx); + } + } + } } SettingsCard { diff --git a/quickshell/Modules/Settings/NotificationsTab.qml b/quickshell/Modules/Settings/NotificationsTab.qml index 14867469..78359810 100644 --- a/quickshell/Modules/Settings/NotificationsTab.qml +++ b/quickshell/Modules/Settings/NotificationsTab.qml @@ -162,6 +162,28 @@ Item { } } + SettingsCard { + width: parent.width + iconName: "lock" + title: I18n.tr("Lock Screen", "lock screen notifications settings card") + settingKey: "lockScreenNotifications" + + SettingsDropdownRow { + settingKey: "lockScreenNotificationMode" + tags: ["lock", "screen", "notification", "notifications", "privacy"] + text: I18n.tr("Notification Display", "lock screen notification privacy setting") + description: I18n.tr("Control what notification information is shown on the lock screen", "lock screen notification privacy setting") + options: [I18n.tr("Disabled", "lock screen notification mode option"), I18n.tr("Count Only", "lock screen notification mode option"), I18n.tr("App Names", "lock screen notification mode option"), I18n.tr("Full Content", "lock screen notification mode option")] + currentValue: options[SettingsData.lockScreenNotificationMode] || options[0] + onValueChanged: value => { + const idx = options.indexOf(value); + if (idx >= 0) { + SettingsData.set("lockScreenNotificationMode", idx); + } + } + } + } + SettingsCard { width: parent.width iconName: "timer" diff --git a/quickshell/translations/en.json b/quickshell/translations/en.json index a91fdfd8..a3c1afad 100644 --- a/quickshell/translations/en.json +++ b/quickshell/translations/en.json @@ -32,7 +32,7 @@ { "term": "%1 days ago", "context": "%1 days ago", - "reference": "Services/NotificationService.qml:206", + "reference": "Services/NotificationService.qml:257", "comment": "" }, { @@ -41,12 +41,24 @@ "reference": "Modules/Settings/DankBarTab.qml:400", "comment": "" }, + { + "term": "%1 issue(s) found", + "context": "greeter doctor page error count", + "reference": "Modals/Greeter/GreeterDoctorPage.qml:228", + "comment": "" + }, { "term": "%1 job(s)", "context": "%1 job(s)", "reference": "Modules/Settings/PrinterTab.qml:685", "comment": "" }, + { + "term": "%1 notifications", + "context": "%1 notifications", + "reference": "Modules/Lock/LockScreenContent.qml:440", + "comment": "" + }, { "term": "%1 printer(s)", "context": "%1 printer(s)", @@ -68,7 +80,7 @@ { "term": "%1m ago", "context": "%1m ago", - "reference": "Services/NotificationService.qml:196", + "reference": "Services/NotificationService.qml:247", "comment": "" }, { @@ -77,16 +89,22 @@ "reference": "Modules/Dock/DockContextMenu.qml:230", "comment": "" }, + { + "term": "+ %1 more", + "context": "+ %1 more", + "reference": "Modules/Lock/LockScreenContent.qml:520, Modules/Lock/LockScreenContent.qml:635", + "comment": "" + }, { "term": "0 = square corners", "context": "0 = square corners", - "reference": "Modules/Settings/ThemeColorsTab.qml:909", + "reference": "Modules/Settings/ThemeColorsTab.qml:953", "comment": "" }, { "term": "1 day", "context": "notification history retention option", - "reference": "Modules/Settings/NotificationsTab.qml:262, Modules/Settings/NotificationsTab.qml:275, Modules/Settings/NotificationsTab.qml:280, Modules/Settings/ClipboardTab.qml:103", + "reference": "Modules/Settings/NotificationsTab.qml:284, Modules/Settings/NotificationsTab.qml:297, Modules/Settings/NotificationsTab.qml:302, Modules/Settings/ClipboardTab.qml:103", "comment": "" }, { @@ -101,6 +119,12 @@ "reference": "Modules/Settings/NotificationsTab.qml:43", "comment": "" }, + { + "term": "1 notification", + "context": "1 notification", + "reference": "Modules/Lock/LockScreenContent.qml:440", + "comment": "" + }, { "term": "1 second", "context": "1 second", @@ -128,7 +152,7 @@ { "term": "14 days", "context": "notification history retention option", - "reference": "Modules/Settings/NotificationsTab.qml:268, Modules/Settings/NotificationsTab.qml:275, Modules/Settings/NotificationsTab.qml:286, Modules/Settings/ClipboardTab.qml:115", + "reference": "Modules/Settings/NotificationsTab.qml:290, Modules/Settings/NotificationsTab.qml:297, Modules/Settings/NotificationsTab.qml:308, Modules/Settings/ClipboardTab.qml:115", "comment": "" }, { @@ -170,7 +194,7 @@ { "term": "3 days", "context": "notification history retention option", - "reference": "Modules/Settings/NotificationsTab.qml:264, Modules/Settings/NotificationsTab.qml:275, Modules/Settings/NotificationsTab.qml:282, Modules/Settings/ClipboardTab.qml:107", + "reference": "Modules/Settings/NotificationsTab.qml:286, Modules/Settings/NotificationsTab.qml:297, Modules/Settings/NotificationsTab.qml:304, Modules/Settings/ClipboardTab.qml:107", "comment": "" }, { @@ -182,7 +206,7 @@ { "term": "30 days", "context": "notification history filter | notification history retention option", - "reference": "Modules/Settings/NotificationsTab.qml:270, Modules/Settings/NotificationsTab.qml:275, Modules/Settings/NotificationsTab.qml:288, Modules/Settings/ClipboardTab.qml:119, Modules/Notifications/Center/HistoryNotificationList.qml:91", + "reference": "Modules/Settings/NotificationsTab.qml:292, Modules/Settings/NotificationsTab.qml:297, Modules/Settings/NotificationsTab.qml:310, Modules/Settings/ClipboardTab.qml:119, Modules/Notifications/Center/HistoryNotificationList.qml:91", "comment": "" }, { @@ -212,7 +236,7 @@ { "term": "7 days", "context": "notification history filter | notification history retention option", - "reference": "Modules/Settings/NotificationsTab.qml:266, Modules/Settings/NotificationsTab.qml:275, Modules/Settings/NotificationsTab.qml:284, Modules/Settings/ClipboardTab.qml:111, Modules/Notifications/Center/HistoryNotificationList.qml:90", + "reference": "Modules/Settings/NotificationsTab.qml:288, Modules/Settings/NotificationsTab.qml:297, Modules/Settings/NotificationsTab.qml:306, Modules/Settings/ClipboardTab.qml:111, Modules/Notifications/Center/HistoryNotificationList.qml:90", "comment": "" }, { @@ -239,6 +263,12 @@ "reference": "Modals/FileBrowser/FileBrowserOverwriteDialog.qml:61", "comment": "" }, + { + "term": "A modern desktop shell for Wayland compositors", + "context": "greeter welcome page tagline", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:53", + "comment": "" + }, { "term": "API", "context": "API", @@ -257,6 +287,12 @@ "reference": "Modals/Settings/SettingsSidebar.qml:287, Modules/Settings/AboutTab.qml:533", "comment": "" }, + { + "term": "Accent Color", + "context": "Accent Color", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:36", + "comment": "" + }, { "term": "Accept Jobs", "context": "Accept Jobs", @@ -314,7 +350,7 @@ { "term": "Active Lock Screen Monitor", "context": "Active Lock Screen Monitor", - "reference": "Modules/Settings/LockScreenTab.qml:149", + "reference": "Modules/Settings/LockScreenTab.qml:164", "comment": "" }, { @@ -416,13 +452,19 @@ { "term": "All", "context": "notification history filter", - "reference": "Services/AppSearchService.qml:319, Services/AppSearchService.qml:335, Modals/Spotlight/SpotlightModal.qml:65, Modules/AppDrawer/CategorySelector.qml:11, Modules/AppDrawer/AppLauncher.qml:16, Modules/AppDrawer/AppLauncher.qml:27, Modules/AppDrawer/AppLauncher.qml:28, Modules/AppDrawer/AppLauncher.qml:45, Modules/AppDrawer/AppLauncher.qml:46, Modules/AppDrawer/AppLauncher.qml:84, Modules/AppDrawer/AppDrawerPopout.qml:57, Modules/Settings/KeybindsTab.qml:378, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:94, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:97, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:109, Modules/Notifications/Center/HistoryNotificationList.qml:86", + "reference": "Services/AppSearchService.qml:399, Services/AppSearchService.qml:413, Modals/Spotlight/SpotlightModal.qml:28, Modules/AppDrawer/CategorySelector.qml:11, Modules/AppDrawer/AppLauncher.qml:14, Modules/AppDrawer/AppLauncher.qml:47, Modules/AppDrawer/AppLauncher.qml:48, Modules/AppDrawer/AppLauncher.qml:90, Modules/AppDrawer/AppDrawerPopout.qml:58, Modules/Settings/KeybindsTab.qml:378, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:94, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:97, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:109, Modules/Notifications/Center/HistoryNotificationList.qml:86", "comment": "" }, { "term": "All Monitors", "context": "All Monitors", - "reference": "Modules/Settings/LockScreenTab.qml:151, Modules/Settings/LockScreenTab.qml:161, Modules/Settings/LockScreenTab.qml:171, Modules/Settings/LockScreenTab.qml:175", + "reference": "Modules/Settings/LockScreenTab.qml:166, Modules/Settings/LockScreenTab.qml:176, Modules/Settings/LockScreenTab.qml:186, Modules/Settings/LockScreenTab.qml:190", + "comment": "" + }, + { + "term": "All checks passed", + "context": "greeter doctor page success", + "reference": "Modals/Greeter/GreeterDoctorPage.qml:228", "comment": "" }, { @@ -491,6 +533,12 @@ "reference": "Services/DesktopWidgetRegistry.qml:41", "comment": "" }, + { + "term": "Analyzing configuration...", + "context": "greeter doctor page loading text", + "reference": "Modals/Greeter/GreeterDoctorPage.qml:165", + "comment": "" + }, { "term": "Animation Speed", "context": "Animation Speed", @@ -515,6 +563,18 @@ "reference": "Modules/Settings/WidgetsTab.qml:44", "comment": "" }, + { + "term": "App Names", + "context": "lock screen notification mode option", + "reference": "Modules/Settings/LockScreenTab.qml:84, Modules/Settings/NotificationsTab.qml:176", + "comment": "" + }, + { + "term": "App Theming", + "context": "greeter feature card title", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:95", + "comment": "" + }, { "term": "Application Dock", "context": "Application Dock", @@ -524,7 +584,7 @@ { "term": "Applications", "context": "Applications", - "reference": "Modules/AppDrawer/AppDrawerPopout.qml:245, Modules/Settings/ThemeColorsTab.qml:1011", + "reference": "Modules/AppDrawer/AppDrawerPopout.qml:246, Modules/Settings/ThemeColorsTab.qml:1292", "comment": "" }, { @@ -536,13 +596,13 @@ { "term": "Apply GTK Colors", "context": "Apply GTK Colors", - "reference": "Modules/Settings/ThemeColorsTab.qml:1347", + "reference": "Modules/Settings/ThemeColorsTab.qml:1671", "comment": "" }, { "term": "Apply Qt Colors", "context": "Apply Qt Colors", - "reference": "Modules/Settings/ThemeColorsTab.qml:1381", + "reference": "Modules/Settings/ThemeColorsTab.qml:1705", "comment": "" }, { @@ -722,7 +782,7 @@ { "term": "Auto-delete notifications older than this", "context": "notification history setting", - "reference": "Modules/Settings/NotificationsTab.qml:256", + "reference": "Modules/Settings/NotificationsTab.qml:278", "comment": "" }, { @@ -806,7 +866,7 @@ { "term": "Automatically lock the screen when the system prepares to suspend", "context": "Automatically lock the screen when the system prepares to suspend", - "reference": "Modules/Settings/PowerSleepTab.qml:88, Modules/Settings/LockScreenTab.qml:113", + "reference": "Modules/Settings/PowerSleepTab.qml:88, Modules/Settings/LockScreenTab.qml:128", "comment": "" }, { @@ -839,6 +899,12 @@ "reference": "Modules/Settings/DisplayWidgetsTab.qml:193", "comment": "" }, + { + "term": "Available in Detailed and Forecast view modes", + "context": "Available in Detailed and Forecast view modes", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:121", + "comment": "" + }, { "term": "BSSID", "context": "BSSID", @@ -847,8 +913,8 @@ }, { "term": "Back", - "context": "Back", - "reference": "Modules/DankBar/Widgets/SystemTrayBar.qml:1281", + "context": "greeter back button", + "reference": "Modals/Greeter/GreeterModal.qml:284, Modules/DankBar/Widgets/SystemTrayBar.qml:1281", "comment": "" }, { @@ -860,7 +926,19 @@ { "term": "Background Opacity", "context": "Background Opacity", - "reference": "PLUGINS/ExampleDesktopClock/DesktopClockSettings.qml:39", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:63, PLUGINS/ExampleDesktopClock/DesktopClockSettings.qml:39", + "comment": "" + }, + { + "term": "Background app icons", + "context": "greeter feature card description", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:145", + "comment": "" + }, + { + "term": "Background image", + "context": "greeter wallpaper description", + "reference": "Modals/Greeter/GreeterCompletePage.qml:382", "comment": "" }, { @@ -872,7 +950,7 @@ { "term": "Balanced palette with focused accents (default).", "context": "Balanced palette with focused accents (default).", - "reference": "Common/Theme.qml:230", + "reference": "Common/Theme.qml:232", "comment": "" }, { @@ -920,7 +998,7 @@ { "term": "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen", "context": "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen", - "reference": "Modules/Settings/LockScreenTab.qml:99", + "reference": "Modules/Settings/LockScreenTab.qml:114", "comment": "" }, { @@ -1013,6 +1091,12 @@ "reference": "Modules/Settings/DockTab.qml:258", "comment": "" }, + { + "term": "Border Size", + "context": "Border Size", + "reference": "Modules/Settings/ThemeColorsTab.qml:1054, Modules/Settings/ThemeColorsTab.qml:1157, Modules/Settings/ThemeColorsTab.qml:1260", + "comment": "" + }, { "term": "Border Thickness", "context": "Border Thickness", @@ -1088,7 +1172,7 @@ { "term": "Browse Themes", "context": "browse themes button | theme browser header | theme browser window title", - "reference": "Modules/Settings/ThemeColorsTab.qml:803, Modules/Settings/ThemeBrowser.qml:145, Modules/Settings/ThemeBrowser.qml:242", + "reference": "Modules/Settings/ThemeColorsTab.qml:847, Modules/Settings/ThemeBrowser.qml:145, Modules/Settings/ThemeBrowser.qml:242", "comment": "" }, { @@ -1232,7 +1316,7 @@ { "term": "Change bar appearance", "context": "Change bar appearance", - "reference": "Modules/Settings/ThemeColorsTab.qml:845", + "reference": "Modules/Settings/ThemeColorsTab.qml:889", "comment": "" }, { @@ -1277,6 +1361,12 @@ "reference": "Modules/ControlCenter/Models/WidgetModel.qml:180", "comment": "" }, + { + "term": "Choose how the weather widget is displayed", + "context": "Choose how the weather widget is displayed", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:12", + "comment": "" + }, { "term": "Choose icon", "context": "Choose icon", @@ -1286,7 +1376,7 @@ { "term": "Choose the background color for widgets", "context": "Choose the background color for widgets", - "reference": "Modules/Settings/ThemeColorsTab.qml:860", + "reference": "Modules/Settings/ThemeColorsTab.qml:904", "comment": "" }, { @@ -1322,7 +1412,7 @@ { "term": "Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.", "context": "Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.", - "reference": "Modules/Settings/LockScreenTab.qml:138", + "reference": "Modules/Settings/LockScreenTab.qml:153", "comment": "" }, { @@ -1400,7 +1490,7 @@ { "term": "Click to select a custom theme JSON file", "context": "custom theme file hint", - "reference": "Modules/Settings/ThemeColorsTab.qml:403", + "reference": "Modules/Settings/ThemeColorsTab.qml:447", "comment": "" }, { @@ -1478,7 +1568,7 @@ { "term": "Color Mode", "context": "Color Mode", - "reference": "Modules/Settings/ThemeColorsTab.qml:815", + "reference": "Modules/Settings/ThemeColorsTab.qml:859", "comment": "" }, { @@ -1502,7 +1592,7 @@ { "term": "Color displayed on monitors without the lock screen", "context": "Color displayed on monitors without the lock screen", - "reference": "Modules/Settings/LockScreenTab.qml:206", + "reference": "Modules/Settings/LockScreenTab.qml:221", "comment": "" }, { @@ -1520,13 +1610,19 @@ { "term": "Color theme from DMS registry", "context": "registry theme description", - "reference": "Modules/Settings/ThemeColorsTab.qml:94", + "reference": "Modules/Settings/ThemeColorsTab.qml:138", "comment": "" }, { "term": "Colorful mix of bright contrasting accents.", "context": "Colorful mix of bright contrasting accents.", - "reference": "Common/Theme.qml:250", + "reference": "Common/Theme.qml:252", + "comment": "" + }, + { + "term": "Colors from wallpaper", + "context": "greeter feature card description", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:89", "comment": "" }, { @@ -1547,6 +1643,18 @@ "reference": "Widgets/DankIconPicker.qml:36", "comment": "" }, + { + "term": "Community themes", + "context": "greeter feature card description", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:103", + "comment": "" + }, + { + "term": "Compact", + "context": "Compact", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:15", + "comment": "" + }, { "term": "Compact Mode", "context": "Compact Mode", @@ -1607,6 +1715,18 @@ "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:104", "comment": "" }, + { + "term": "Configure", + "context": "greeter settings section header", + "reference": "Modals/Greeter/GreeterCompletePage.qml:356", + "comment": "" + }, + { + "term": "Configure Keybinds", + "context": "greeter configure keybinds link", + "reference": "Modals/Greeter/GreeterCompletePage.qml:297", + "comment": "" + }, { "term": "Configure a new printer", "context": "Configure a new printer", @@ -1705,8 +1825,8 @@ }, { "term": "Control Center", - "context": "Control Center", - "reference": "Modules/Settings/WidgetsTab.qml:154", + "context": "greeter feature card title", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:137, Modules/Settings/WidgetsTab.qml:154", "comment": "" }, { @@ -1715,6 +1835,12 @@ "reference": "Modules/Settings/WidgetsTab.qml:87", "comment": "" }, + { + "term": "Control what notification information is shown on the lock screen", + "context": "lock screen notification privacy setting", + "reference": "Modules/Settings/LockScreenTab.qml:83, Modules/Settings/NotificationsTab.qml:175", + "comment": "" + }, { "term": "Control workspaces and columns by scrolling on the bar", "context": "Control workspaces and columns by scrolling on the bar", @@ -1724,7 +1850,7 @@ { "term": "Controls opacity of all popouts, modals, and their content layers", "context": "Controls opacity of all popouts, modals, and their content layers", - "reference": "Modules/Settings/ThemeColorsTab.qml:895", + "reference": "Modules/Settings/ThemeColorsTab.qml:939", "comment": "" }, { @@ -1760,7 +1886,7 @@ { "term": "Corner Radius", "context": "Corner Radius", - "reference": "Modules/Settings/ThemeColorsTab.qml:908", + "reference": "Modules/Settings/ThemeColorsTab.qml:952", "comment": "" }, { @@ -1775,6 +1901,12 @@ "reference": "Modules/Settings/DankBarTab.qml:982", "comment": "" }, + { + "term": "Count Only", + "context": "lock screen notification mode option", + "reference": "Modules/Settings/LockScreenTab.qml:84, Modules/Settings/NotificationsTab.qml:176", + "comment": "" + }, { "term": "Cover Open", "context": "Cover Open", @@ -1802,7 +1934,7 @@ { "term": "Critical Priority", "context": "Critical Priority", - "reference": "Modules/Settings/NotificationsTab.qml:208, Modules/Settings/NotificationsTab.qml:315, Modules/Notifications/Center/NotificationSettings.qml:203, Modules/Notifications/Center/NotificationSettings.qml:366", + "reference": "Modules/Settings/NotificationsTab.qml:230, Modules/Settings/NotificationsTab.qml:337, Modules/Notifications/Center/NotificationSettings.qml:203, Modules/Notifications/Center/NotificationSettings.qml:366", "comment": "" }, { @@ -1838,7 +1970,7 @@ { "term": "Current Theme: %1", "context": "current theme label", - "reference": "Modules/Settings/ThemeColorsTab.qml:78, Modules/Settings/ThemeColorsTab.qml:80, Modules/Settings/ThemeColorsTab.qml:81", + "reference": "Modules/Settings/ThemeColorsTab.qml:122, Modules/Settings/ThemeColorsTab.qml:124, Modules/Settings/ThemeColorsTab.qml:125", "comment": "" }, { @@ -1868,7 +2000,13 @@ { "term": "Custom", "context": "Custom", - "reference": "Widgets/KeybindItem.qml:1313, Modules/Settings/TypographyMotionTab.qml:225, Modules/Settings/LauncherTab.qml:73, Modules/Settings/LauncherTab.qml:179, Modules/Settings/Widgets/SettingsColorPicker.qml:52", + "reference": "Widgets/KeybindItem.qml:1313, dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:47, Modules/Settings/TypographyMotionTab.qml:225, Modules/Settings/LauncherTab.qml:73, Modules/Settings/LauncherTab.qml:179, Modules/Settings/Widgets/SettingsColorPicker.qml:52", + "comment": "" + }, + { + "term": "Custom Color", + "context": "Custom Color", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:56", "comment": "" }, { @@ -1934,7 +2072,7 @@ { "term": "Custom theme loaded from JSON file", "context": "custom theme description", - "reference": "Modules/Settings/ThemeColorsTab.qml:96", + "reference": "Modules/Settings/ThemeColorsTab.qml:140", "comment": "" }, { @@ -1970,7 +2108,7 @@ { "term": "DEMO MODE - Click anywhere to exit", "context": "DEMO MODE - Click anywhere to exit", - "reference": "Modules/Lock/LockScreenContent.qml:801", + "reference": "Modules/Lock/LockScreenContent.qml:1096", "comment": "" }, { @@ -1979,6 +2117,12 @@ "reference": "Modules/Settings/PluginsTab.qml:106", "comment": "" }, + { + "term": "DMS Shortcuts", + "context": "greeter keybinds section header", + "reference": "Modals/Greeter/GreeterCompletePage.qml:136", + "comment": "" + }, { "term": "DMS out of date", "context": "DMS out of date", @@ -2033,6 +2177,18 @@ "reference": "Modals/Settings/SettingsSidebar.qml:105", "comment": "" }, + { + "term": "DankBar", + "context": "greeter feature card title | greeter settings link", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:109, Modals/Greeter/GreeterCompletePage.qml:405", + "comment": "" + }, + { + "term": "DankMaterialShell is ready to use", + "context": "greeter completion page subtitle", + "reference": "Modals/Greeter/GreeterCompletePage.qml:112", + "comment": "" + }, { "term": "DankSearch not available", "context": "DankSearch not available", @@ -2042,7 +2198,7 @@ { "term": "DankShell & System Icons (requires restart)", "context": "DankShell & System Icons (requires restart)", - "reference": "Modules/Settings/ThemeColorsTab.qml:1302", + "reference": "Modules/Settings/ThemeColorsTab.qml:1626", "comment": "" }, { @@ -2054,7 +2210,7 @@ { "term": "Darken Modal Background", "context": "Darken Modal Background", - "reference": "Modules/Settings/ThemeColorsTab.qml:1001", + "reference": "Modules/Settings/ThemeColorsTab.qml:1282", "comment": "" }, { @@ -2156,7 +2312,7 @@ { "term": "Derives colors that closely match the underlying image.", "context": "Derives colors that closely match the underlying image.", - "reference": "Common/Theme.qml:238", + "reference": "Common/Theme.qml:240", "comment": "" }, { @@ -2189,10 +2345,16 @@ "reference": "Modules/Settings/DisplayWidgetsTab.qml:41", "comment": "" }, + { + "term": "Detailed", + "context": "Detailed", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:23", + "comment": "" + }, { "term": "Development", "context": "Development", - "reference": "Services/AppSearchService.qml:263, Services/AppSearchService.qml:264, Services/AppSearchService.qml:265, Widgets/DankIconPicker.qml:32", + "reference": "Services/AppSearchService.qml:340, Services/AppSearchService.qml:341, Services/AppSearchService.qml:342, Widgets/DankIconPicker.qml:32", "comment": "" }, { @@ -2245,8 +2407,8 @@ }, { "term": "Disabled", - "context": "Disabled", - "reference": "Modules/Settings/NetworkTab.qml:756, Modules/Settings/DankBarTab.qml:431, Modules/Settings/DisplayConfig/DisplayConfigState.qml:847, Modules/Settings/DisplayConfig/DisplayConfigState.qml:853, Modules/Settings/DisplayConfig/DisplayConfigState.qml:855, Modules/Settings/DisplayConfig/DisplayConfigState.qml:867", + "context": "lock screen notification mode option", + "reference": "Modules/Settings/LockScreenTab.qml:84, Modules/Settings/NetworkTab.qml:756, Modules/Settings/DankBarTab.qml:431, Modules/Settings/NotificationsTab.qml:176, Modules/Settings/DisplayConfig/DisplayConfigState.qml:847, Modules/Settings/DisplayConfig/DisplayConfigState.qml:853, Modules/Settings/DisplayConfig/DisplayConfigState.qml:855, Modules/Settings/DisplayConfig/DisplayConfigState.qml:867", "comment": "" }, { @@ -2303,6 +2465,12 @@ "reference": "Modules/Settings/DankBarTab.qml:495", "comment": "" }, + { + "term": "Display Control", + "context": "greeter feature card title", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:130", + "comment": "" + }, { "term": "Display Name Format", "context": "Display Name Format", @@ -2357,6 +2525,12 @@ "reference": "Modules/Settings/WidgetsTab.qml:59", "comment": "" }, + { + "term": "Display hourly weather predictions", + "context": "Display hourly weather predictions", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:136", + "comment": "" + }, { "term": "Display only workspaces that contain windows", "context": "Display only workspaces that contain windows", @@ -2389,8 +2563,8 @@ }, { "term": "Displays", - "context": "Displays", - "reference": "Modals/Settings/SettingsSidebar.qml:202, Modules/Settings/Widgets/SettingsDisplayPicker.qml:36", + "context": "greeter settings link", + "reference": "Modals/Greeter/GreeterCompletePage.qml:373, Modals/Settings/SettingsSidebar.qml:202, Modules/Settings/Widgets/SettingsDisplayPicker.qml:36", "comment": "" }, { @@ -2402,7 +2576,7 @@ { "term": "Diverse palette spanning the full spectrum.", "context": "Diverse palette spanning the full spectrum.", - "reference": "Common/Theme.qml:262", + "reference": "Common/Theme.qml:264", "comment": "" }, { @@ -2413,8 +2587,8 @@ }, { "term": "Dock", - "context": "Dock", - "reference": "Modals/Settings/SettingsSidebar.qml:181", + "context": "greeter settings link", + "reference": "Modals/Greeter/GreeterCompletePage.qml:422, Modals/Settings/SettingsSidebar.qml:181", "comment": "" }, { @@ -2443,8 +2617,8 @@ }, { "term": "Docs", - "context": "Docs", - "reference": "Modules/Settings/AboutTab.qml:231, Modules/Settings/AboutTab.qml:239", + "context": "greeter documentation link", + "reference": "Modals/Greeter/GreeterCompletePage.qml:468, Modules/Settings/AboutTab.qml:231, Modules/Settings/AboutTab.qml:239", "comment": "" }, { @@ -2516,13 +2690,25 @@ { "term": "Dynamic", "context": "dynamic theme name", - "reference": "Modules/Settings/ThemeColorsTab.qml:78", + "reference": "Modules/Settings/ThemeColorsTab.qml:122", + "comment": "" + }, + { + "term": "Dynamic Theming", + "context": "greeter feature card title", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:88", "comment": "" }, { "term": "Dynamic colors from wallpaper", "context": "dynamic colors description", - "reference": "Modules/Settings/ThemeColorsTab.qml:325", + "reference": "Modules/Settings/ThemeColorsTab.qml:369", + "comment": "" + }, + { + "term": "Dynamic colors, presets", + "context": "greeter theme description", + "reference": "Modals/Greeter/GreeterCompletePage.qml:390", "comment": "" }, { @@ -2534,7 +2720,7 @@ { "term": "Education", "context": "Education", - "reference": "Services/AppSearchService.qml:266", + "reference": "Services/AppSearchService.qml:343", "comment": "" }, { @@ -2576,7 +2762,7 @@ { "term": "Enable History", "context": "notification history toggle label", - "reference": "Modules/Settings/NotificationsTab.qml:232", + "reference": "Modules/Settings/NotificationsTab.qml:254", "comment": "" }, { @@ -2612,13 +2798,13 @@ { "term": "Enable fingerprint authentication", "context": "Enable fingerprint authentication", - "reference": "Modules/Settings/LockScreenTab.qml:122", + "reference": "Modules/Settings/LockScreenTab.qml:137", "comment": "" }, { "term": "Enable loginctl lock integration", "context": "Enable loginctl lock integration", - "reference": "Modules/Settings/LockScreenTab.qml:98", + "reference": "Modules/Settings/LockScreenTab.qml:113", "comment": "" }, { @@ -2723,6 +2909,12 @@ "reference": "Services/CupsService.qml:819", "comment": "" }, + { + "term": "Errors", + "context": "greeter doctor page status card", + "reference": "Modals/Greeter/GreeterDoctorPage.qml:242", + "comment": "" + }, { "term": "Ethernet", "context": "Ethernet", @@ -2741,12 +2933,24 @@ "reference": "Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:200", "comment": "" }, + { + "term": "Explore", + "context": "greeter explore section header", + "reference": "Modals/Greeter/GreeterCompletePage.qml:453", + "comment": "" + }, { "term": "Exponential", "context": "Exponential", "reference": "Modules/ControlCenter/Details/BrightnessDetail.qml:433", "comment": "" }, + { + "term": "Extensible architecture", + "context": "greeter feature card description", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:117", + "comment": "" + }, { "term": "External Wallpaper Management", "context": "wallpaper settings external management", @@ -2930,19 +3134,19 @@ { "term": "Failed to parse plugin_settings.json", "context": "Failed to parse plugin_settings.json", - "reference": "Common/SettingsData.qml:882", + "reference": "Common/SettingsData.qml:905", "comment": "" }, { "term": "Failed to parse session.json", "context": "Failed to parse session.json", - "reference": "Common/SessionData.qml:211", + "reference": "Common/SessionData.qml:169, Common/SessionData.qml:252", "comment": "" }, { "term": "Failed to parse settings.json", "context": "Failed to parse settings.json", - "reference": "Common/SettingsData.qml:827, Common/SettingsData.qml:1882", + "reference": "Common/SettingsData.qml:842, Common/SettingsData.qml:1901", "comment": "" }, { @@ -3077,6 +3281,18 @@ "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:913", "comment": "" }, + { + "term": "Features", + "context": "greeter welcome page section header", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:73", + "comment": "" + }, + { + "term": "Feels", + "context": "Feels", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:401", + "comment": "" + }, { "term": "Feels Like", "context": "Feels Like", @@ -3104,7 +3320,7 @@ { "term": "Files", "context": "Files", - "reference": "Modules/AppDrawer/AppDrawerPopout.qml:245", + "reference": "Modules/AppDrawer/AppDrawerPopout.qml:246", "comment": "" }, { @@ -3131,6 +3347,12 @@ "reference": "Modules/Settings/TypographyMotionTab.qml:256", "comment": "" }, + { + "term": "Finish", + "context": "greeter finish button", + "reference": "Modals/Greeter/GreeterModal.qml:303", + "comment": "" + }, { "term": "First Time Setup", "context": "First Time Setup", @@ -3236,7 +3458,19 @@ { "term": "Force terminal applications to always use dark color schemes", "context": "Force terminal applications to always use dark color schemes", - "reference": "Modules/Settings/ThemeColorsTab.qml:1030", + "reference": "Modules/Settings/ThemeColorsTab.qml:1311", + "comment": "" + }, + { + "term": "Forecast", + "context": "Forecast", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:27", + "comment": "" + }, + { + "term": "Forecast Days", + "context": "Forecast Days", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:127", "comment": "" }, { @@ -3248,7 +3482,7 @@ { "term": "Forever", "context": "notification history retention option", - "reference": "Modules/Settings/NotificationsTab.qml:260, Modules/Settings/NotificationsTab.qml:275, Modules/Settings/NotificationsTab.qml:278", + "reference": "Modules/Settings/NotificationsTab.qml:282, Modules/Settings/NotificationsTab.qml:297, Modules/Settings/NotificationsTab.qml:300", "comment": "" }, { @@ -3287,6 +3521,12 @@ "reference": "Modules/Settings/NetworkTab.qml:1316", "comment": "" }, + { + "term": "Full Content", + "context": "lock screen notification mode option", + "reference": "Modules/Settings/LockScreenTab.qml:84, Modules/Settings/NotificationsTab.qml:176", + "comment": "" + }, { "term": "Fun", "context": "Fun", @@ -3296,7 +3536,7 @@ { "term": "G: grid • Z/X: size", "context": "Widget grid keyboard hints", - "reference": "Modules/Plugins/DesktopPluginWrapper.qml:657", + "reference": "Modules/Plugins/DesktopPluginWrapper.qml:658", "comment": "" }, { @@ -3311,10 +3551,16 @@ "reference": "Modules/Settings/WidgetsTab.qml:132, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:116", "comment": "" }, + { + "term": "GTK, Qt, IDEs, more", + "context": "greeter feature card description", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:96", + "comment": "" + }, { "term": "Games", "context": "Games", - "reference": "Services/AppSearchService.qml:267", + "reference": "Services/AppSearchService.qml:344", "comment": "" }, { @@ -3329,6 +3575,12 @@ "reference": "Modules/Settings/GammaControlTab.qml:77", "comment": "" }, + { + "term": "Get Started", + "context": "greeter first page button", + "reference": "Modals/Greeter/GreeterModal.qml:294", + "comment": "" + }, { "term": "GitHub", "context": "GitHub", @@ -3380,7 +3632,7 @@ { "term": "Graphics", "context": "Graphics", - "reference": "Services/AppSearchService.qml:268, Services/AppSearchService.qml:269", + "reference": "Services/AppSearchService.qml:345, Services/AppSearchService.qml:346", "comment": "" }, { @@ -3398,13 +3650,13 @@ { "term": "Grid: OFF", "context": "Widget grid snap status", - "reference": "Modules/Plugins/DesktopPluginWrapper.qml:627", + "reference": "Modules/Plugins/DesktopPluginWrapper.qml:628", "comment": "" }, { "term": "Grid: ON", "context": "Widget grid snap status", - "reference": "Modules/Plugins/DesktopPluginWrapper.qml:627", + "reference": "Modules/Plugins/DesktopPluginWrapper.qml:628", "comment": "" }, { @@ -3512,7 +3764,7 @@ { "term": "High-fidelity palette that preserves source hues.", "context": "High-fidelity palette that preserves source hues.", - "reference": "Common/Theme.qml:246", + "reference": "Common/Theme.qml:248", "comment": "" }, { @@ -3524,13 +3776,13 @@ { "term": "History Retention", "context": "notification history retention settings label", - "reference": "Modules/Settings/NotificationsTab.qml:255", + "reference": "Modules/Settings/NotificationsTab.qml:277", "comment": "" }, { "term": "History Settings", "context": "History Settings", - "reference": "Modules/Settings/NotificationsTab.qml:226, Modules/Settings/ClipboardTab.qml:241, Modules/Notifications/Center/NotificationSettings.qml:274", + "reference": "Modules/Settings/NotificationsTab.qml:248, Modules/Settings/ClipboardTab.qml:241, Modules/Notifications/Center/NotificationSettings.qml:274", "comment": "" }, { @@ -3587,6 +3839,12 @@ "reference": "Modules/DankDash/WeatherTab.qml:880", "comment": "" }, + { + "term": "Hourly Forecast Count", + "context": "Hourly Forecast Count", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:142", + "comment": "" + }, { "term": "How often to change wallpaper", "context": "How often to change wallpaper", @@ -3596,7 +3854,13 @@ { "term": "Humidity", "context": "Humidity", - "reference": "Modules/Settings/TimeWeatherTab.qml:844, Modules/DankBar/Widgets/WeatherForecastCard.qml:60", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:413, Modules/Settings/TimeWeatherTab.qml:844, Modules/DankBar/Widgets/WeatherForecastCard.qml:60", + "comment": "" + }, + { + "term": "Hyprland Layout Overrides", + "context": "Hyprland Layout Overrides", + "reference": "Modules/Settings/ThemeColorsTab.qml:1069", "comment": "" }, { @@ -3626,7 +3890,7 @@ { "term": "Icon Theme", "context": "Icon Theme", - "reference": "Modules/Settings/ThemeColorsTab.qml:1294, Modules/Settings/ThemeColorsTab.qml:1301", + "reference": "Modules/Settings/ThemeColorsTab.qml:1618, Modules/Settings/ThemeColorsTab.qml:1625", "comment": "" }, { @@ -3686,7 +3950,7 @@ { "term": "Inactive Monitor Color", "context": "Inactive Monitor Color", - "reference": "Modules/Settings/LockScreenTab.qml:200, Modules/Settings/LockScreenTab.qml:231", + "reference": "Modules/Settings/LockScreenTab.qml:215, Modules/Settings/LockScreenTab.qml:246", "comment": "" }, { @@ -3725,6 +3989,12 @@ "reference": "Modules/Settings/DisplayWidgetsTab.qml:16", "comment": "" }, + { + "term": "Info", + "context": "greeter doctor page status card", + "reference": "Modals/Greeter/GreeterDoctorPage.qml:264", + "comment": "" + }, { "term": "Inherit", "context": "Inherit", @@ -3776,7 +4046,7 @@ { "term": "Install matugen package for dynamic theming", "context": "matugen installation hint", - "reference": "Modules/Settings/ThemeColorsTab.qml:322", + "reference": "Modules/Settings/ThemeColorsTab.qml:366", "comment": "" }, { @@ -3830,7 +4100,7 @@ { "term": "Internet", "context": "Internet", - "reference": "Services/AppSearchService.qml:270, Services/AppSearchService.qml:271, Services/AppSearchService.qml:272", + "reference": "Services/AppSearchService.qml:347, Services/AppSearchService.qml:348, Services/AppSearchService.qml:349", "comment": "" }, { @@ -3893,6 +4163,12 @@ "reference": "Widgets/KeybindItem.qml:553", "comment": "" }, + { + "term": "Keybinds", + "context": "greeter settings link", + "reference": "Modals/Greeter/GreeterCompletePage.qml:413", + "comment": "" + }, { "term": "Keyboard Layout Name", "context": "Keyboard Layout Name", @@ -3974,7 +4250,7 @@ { "term": "Launch", "context": "Launch", - "reference": "Modals/Spotlight/SpotlightContextMenuContent.qml:51, Modules/AppDrawer/AppDrawerPopout.qml:873", + "reference": "Modals/Spotlight/SpotlightContextMenuContent.qml:51, Modules/AppDrawer/AppDrawerPopout.qml:874", "comment": "" }, { @@ -3986,7 +4262,7 @@ { "term": "Launch on dGPU", "context": "Launch on dGPU", - "reference": "Modals/Spotlight/SpotlightContextMenuContent.qml:62, Modules/AppDrawer/AppDrawerPopout.qml:933, Modules/Dock/DockContextMenu.qml:432", + "reference": "Modals/Spotlight/SpotlightContextMenuContent.qml:62, Modules/AppDrawer/AppDrawerPopout.qml:934, Modules/Dock/DockContextMenu.qml:432", "comment": "" }, { @@ -4028,7 +4304,7 @@ { "term": "Light Mode", "context": "Light Mode", - "reference": "Modules/Settings/ThemeColorsTab.qml:823, Modules/Settings/WallpaperTab.qml:379", + "reference": "Modules/Settings/ThemeColorsTab.qml:867, Modules/Settings/WallpaperTab.qml:379", "comment": "" }, { @@ -4052,7 +4328,7 @@ { "term": "Lively palette with saturated accents.", "context": "Lively palette with saturated accents.", - "reference": "Common/Theme.qml:234", + "reference": "Common/Theme.qml:236", "comment": "" }, { @@ -4099,14 +4375,14 @@ }, { "term": "Lock Screen", - "context": "Lock Screen", - "reference": "Modals/Settings/SettingsSidebar.qml:263", + "context": "lock screen notifications settings card", + "reference": "Modals/Settings/SettingsSidebar.qml:263, Modules/Settings/NotificationsTab.qml:168", "comment": "" }, { "term": "Lock Screen Display", "context": "Lock Screen Display", - "reference": "Modules/Settings/LockScreenTab.qml:133", + "reference": "Modules/Settings/LockScreenTab.qml:148", "comment": "" }, { @@ -4118,7 +4394,7 @@ { "term": "Lock Screen behaviour", "context": "Lock Screen behaviour", - "reference": "Modules/Settings/LockScreenTab.qml:83", + "reference": "Modules/Settings/LockScreenTab.qml:98", "comment": "" }, { @@ -4130,7 +4406,7 @@ { "term": "Lock before suspend", "context": "Lock before suspend", - "reference": "Modules/Settings/PowerSleepTab.qml:87, Modules/Settings/LockScreenTab.qml:112", + "reference": "Modules/Settings/PowerSleepTab.qml:87, Modules/Settings/LockScreenTab.qml:127", "comment": "" }, { @@ -4166,7 +4442,7 @@ { "term": "Low Priority", "context": "Low Priority", - "reference": "Modules/Settings/NotificationsTab.qml:174, Modules/Settings/NotificationsTab.qml:297, Modules/Notifications/Center/NotificationSettings.qml:173, Modules/Notifications/Center/NotificationSettings.qml:298", + "reference": "Modules/Settings/NotificationsTab.qml:196, Modules/Settings/NotificationsTab.qml:319, Modules/Notifications/Center/NotificationSettings.qml:173, Modules/Notifications/Center/NotificationSettings.qml:298", "comment": "" }, { @@ -4199,6 +4475,12 @@ "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:82", "comment": "" }, + { + "term": "MangoWC Layout Overrides", + "context": "MangoWC Layout Overrides", + "reference": "Modules/Settings/ThemeColorsTab.qml:1172", + "comment": "" + }, { "term": "Manual Coordinates", "context": "Manual Coordinates", @@ -4256,25 +4538,25 @@ { "term": "Material Design inspired color themes", "context": "generic theme description", - "reference": "Modules/Settings/ThemeColorsTab.qml:97", + "reference": "Modules/Settings/ThemeColorsTab.qml:141", "comment": "" }, { "term": "Material colors generated from wallpaper", "context": "dynamic theme description", - "reference": "Modules/Settings/ThemeColorsTab.qml:92", + "reference": "Modules/Settings/ThemeColorsTab.qml:136", "comment": "" }, { "term": "Matugen Missing", "context": "matugen not found status", - "reference": "Modules/Settings/ThemeColorsTab.qml:305", + "reference": "Modules/Settings/ThemeColorsTab.qml:349", "comment": "" }, { "term": "Matugen Palette", "context": "Matugen Palette", - "reference": "Modules/Settings/ThemeColorsTab.qml:341", + "reference": "Modules/Settings/ThemeColorsTab.qml:385", "comment": "" }, { @@ -4286,7 +4568,7 @@ { "term": "Matugen Templates", "context": "Matugen Templates", - "reference": "Modules/Settings/ThemeColorsTab.qml:1039", + "reference": "Modules/Settings/ThemeColorsTab.qml:1320", "comment": "" }, { @@ -4310,7 +4592,7 @@ { "term": "Maximum History", "context": "Maximum History", - "reference": "Modules/Settings/NotificationsTab.qml:241, Modules/Settings/ClipboardTab.qml:249", + "reference": "Modules/Settings/NotificationsTab.qml:263, Modules/Settings/ClipboardTab.qml:249", "comment": "" }, { @@ -4322,7 +4604,7 @@ { "term": "Maximum number of notifications to keep", "context": "notification history limit", - "reference": "Modules/Settings/NotificationsTab.qml:242", + "reference": "Modules/Settings/NotificationsTab.qml:264", "comment": "" }, { @@ -4334,7 +4616,7 @@ { "term": "Media", "context": "Media", - "reference": "Services/AppSearchService.qml:260, Services/AppSearchService.qml:261, Services/AppSearchService.qml:262, Widgets/DankIconPicker.qml:40, Widgets/KeybindItem.qml:1028, Widgets/KeybindItem.qml:1037, Widgets/KeybindItem.qml:1043, Modules/DankDash/DankDashPopout.qml:276", + "reference": "Services/AppSearchService.qml:337, Services/AppSearchService.qml:338, Services/AppSearchService.qml:339, Widgets/DankIconPicker.qml:40, Widgets/KeybindItem.qml:1028, Widgets/KeybindItem.qml:1037, Widgets/KeybindItem.qml:1043, Modules/DankDash/DankDashPopout.qml:276", "comment": "" }, { @@ -4460,7 +4742,7 @@ { "term": "Minimal palette built around a single hue.", "context": "Minimal palette built around a single hue.", - "reference": "Common/Theme.qml:254", + "reference": "Common/Theme.qml:256", "comment": "" }, { @@ -4478,7 +4760,7 @@ { "term": "Modal Background", "context": "Modal Background", - "reference": "Modules/Settings/ThemeColorsTab.qml:994", + "reference": "Modules/Settings/ThemeColorsTab.qml:1275", "comment": "" }, { @@ -4505,6 +4787,12 @@ "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:859, Modules/Settings/DisplayConfig/DisplayConfigState.qml:861", "comment": "" }, + { + "term": "Modular widget bar", + "context": "greeter feature card description", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:110", + "comment": "" + }, { "term": "Monitor Configuration", "context": "Monitor Configuration", @@ -4559,10 +4847,16 @@ "reference": "Services/CupsService.qml:815", "comment": "" }, + { + "term": "Multi-Monitor", + "context": "greeter feature card title", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:123", + "comment": "" + }, { "term": "Muted palette with subdued, calming tones.", "context": "Muted palette with subdued, calming tones.", - "reference": "Common/Theme.qml:258", + "reference": "Common/Theme.qml:260", "comment": "" }, { @@ -4667,6 +4961,12 @@ "reference": "Modules/Settings/TimeWeatherTab.qml:531", "comment": "" }, + { + "term": "Next", + "context": "greeter next button", + "reference": "Modals/Greeter/GreeterModal.qml:294", + "comment": "" + }, { "term": "Next Transition", "context": "Next Transition", @@ -4691,6 +4991,12 @@ "reference": "Modules/Settings/GammaControlTab.qml:105", "comment": "" }, + { + "term": "Night mode & gamma", + "context": "greeter feature card description", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:131", + "comment": "" + }, { "term": "Niri Integration", "context": "Niri Integration", @@ -4700,7 +5006,7 @@ { "term": "Niri Layout Overrides", "context": "Niri Layout Overrides", - "reference": "Modules/Settings/ThemeColorsTab.qml:922", + "reference": "Modules/Settings/ThemeColorsTab.qml:966", "comment": "" }, { @@ -4733,6 +5039,12 @@ "reference": "Modules/ControlCenter/Details/BluetoothDetail.qml:526", "comment": "" }, + { + "term": "No DMS shortcuts configured", + "context": "greeter no keybinds message", + "reference": "Modals/Greeter/GreeterCompletePage.qml:265", + "comment": "" + }, { "term": "No GPU detected", "context": "No GPU detected", @@ -4751,6 +5063,12 @@ "reference": "Widgets/VpnDetailContent.qml:174, Modules/Settings/NetworkTab.qml:1560", "comment": "" }, + { + "term": "No Weather Data", + "context": "No Weather Data", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:166", + "comment": "" + }, { "term": "No Weather Data Available", "context": "No Weather Data Available", @@ -4787,6 +5105,12 @@ "reference": "Widgets/KeybindItem.qml:1532", "comment": "" }, + { + "term": "No checks passed", + "context": "greeter doctor page empty state", + "reference": "Modals/Greeter/GreeterDoctorPage.qml:332", + "comment": "" + }, { "term": "No clipboard entries found", "context": "No clipboard entries found", @@ -4796,7 +5120,7 @@ { "term": "No custom theme file", "context": "no custom theme file status", - "reference": "Modules/Settings/ThemeColorsTab.qml:394", + "reference": "Modules/Settings/ThemeColorsTab.qml:438", "comment": "" }, { @@ -4823,6 +5147,12 @@ "reference": "Modules/Settings/PrinterTab.qml:364", "comment": "" }, + { + "term": "No errors", + "context": "greeter doctor page empty state", + "reference": "Modals/Greeter/GreeterDoctorPage.qml:326", + "comment": "" + }, { "term": "No features enabled", "context": "No features enabled", @@ -4835,6 +5165,12 @@ "reference": "Modals/Spotlight/FileSearchResults.qml:257", "comment": "" }, + { + "term": "No info items", + "context": "greeter doctor page empty state", + "reference": "Modals/Greeter/GreeterDoctorPage.qml:330", + "comment": "" + }, { "term": "No items added yet", "context": "No items added yet", @@ -4892,13 +5228,19 @@ { "term": "No themes installed. Browse themes to install from the registry.", "context": "no registry themes installed hint", - "reference": "Modules/Settings/ThemeColorsTab.qml:793", + "reference": "Modules/Settings/ThemeColorsTab.qml:837", "comment": "" }, { "term": "No wallpaper selected", "context": "no wallpaper status", - "reference": "Modules/Settings/ThemeColorsTab.qml:308", + "reference": "Modules/Settings/ThemeColorsTab.qml:352", + "comment": "" + }, + { + "term": "No warnings", + "context": "greeter doctor page empty state", + "reference": "Modals/Greeter/GreeterDoctorPage.qml:328", "comment": "" }, { @@ -4934,7 +5276,7 @@ { "term": "Normal Priority", "context": "Normal Priority", - "reference": "Modules/Settings/NotificationsTab.qml:191, Modules/Settings/NotificationsTab.qml:306, Modules/Notifications/Center/NotificationSettings.qml:188, Modules/Notifications/Center/NotificationSettings.qml:332", + "reference": "Modules/Settings/NotificationsTab.qml:213, Modules/Settings/NotificationsTab.qml:328, Modules/Notifications/Center/NotificationSettings.qml:188, Modules/Notifications/Center/NotificationSettings.qml:332", "comment": "" }, { @@ -4949,6 +5291,12 @@ "reference": "Modules/Settings/NetworkTab.qml:759", "comment": "" }, + { + "term": "Not detected", + "context": "Not detected", + "reference": "Modules/Settings/ThemeColorsTab.qml:29, Modules/Settings/ThemeColorsTab.qml:30", + "comment": "" + }, { "term": "Note: this only changes the percentage, it does not actually limit charging.", "context": "Note: this only changes the percentage, it does not actually limit charging.", @@ -4958,7 +5306,7 @@ { "term": "Notepad", "context": "Notepad", - "reference": "DMSShell.qml:638, Modules/Settings/WidgetsTab.qml:224", + "reference": "DMSShell.qml:639, Modules/Settings/WidgetsTab.qml:224", "comment": "" }, { @@ -4985,6 +5333,12 @@ "reference": "Modules/Settings/WidgetsTab.qml:161", "comment": "" }, + { + "term": "Notification Display", + "context": "lock screen notification privacy setting", + "reference": "Modules/Settings/LockScreenTab.qml:82, Modules/Settings/NotificationsTab.qml:174", + "comment": "" + }, { "term": "Notification Overlay", "context": "Notification Overlay", @@ -5006,7 +5360,7 @@ { "term": "Notification Timeouts", "context": "Notification Timeouts", - "reference": "Modules/Settings/NotificationsTab.qml:168, Modules/Notifications/Center/NotificationSettings.qml:166", + "reference": "Modules/Settings/NotificationsTab.qml:190, Modules/Notifications/Center/NotificationSettings.qml:166", "comment": "" }, { @@ -5017,8 +5371,8 @@ }, { "term": "Notifications", - "context": "Notifications", - "reference": "Modals/Settings/SettingsSidebar.qml:142, Modules/Notifications/Center/NotificationHeader.qml:49", + "context": "greeter settings link", + "reference": "Modals/Greeter/GreeterCompletePage.qml:397, Modals/Settings/SettingsSidebar.qml:142, Modules/Notifications/Center/NotificationHeader.qml:49", "comment": "" }, { @@ -5027,6 +5381,12 @@ "reference": "Widgets/DankIconPicker.qml:24", "comment": "" }, + { + "term": "OK", + "context": "greeter doctor page status card", + "reference": "Modals/Greeter/GreeterDoctorPage.qml:275", + "comment": "" + }, { "term": "OS Logo", "context": "OS Logo", @@ -5048,7 +5408,7 @@ { "term": "Office", "context": "Office", - "reference": "Services/AppSearchService.qml:273, Services/AppSearchService.qml:274, Services/AppSearchService.qml:275, Services/AppSearchService.qml:276", + "reference": "Services/AppSearchService.qml:350, Services/AppSearchService.qml:351, Services/AppSearchService.qml:352, Services/AppSearchService.qml:353", "comment": "" }, { @@ -5120,7 +5480,7 @@ { "term": "Open with...", "context": "Open with...", - "reference": "DMSShell.qml:508, Modals/BrowserPickerModal.qml:11", + "reference": "DMSShell.qml:509, Modals/BrowserPickerModal.qml:11", "comment": "" }, { @@ -5183,16 +5543,22 @@ "reference": "Widgets/KeybindItem.qml:333", "comment": "" }, + { + "term": "Override Border Size", + "context": "Override Border Size", + "reference": "Modules/Settings/ThemeColorsTab.qml:1038, Modules/Settings/ThemeColorsTab.qml:1141, Modules/Settings/ThemeColorsTab.qml:1244", + "comment": "" + }, { "term": "Override Corner Radius", "context": "Override Corner Radius", - "reference": "Modules/Settings/ThemeColorsTab.qml:963", + "reference": "Modules/Settings/ThemeColorsTab.qml:1007, Modules/Settings/ThemeColorsTab.qml:1110, Modules/Settings/ThemeColorsTab.qml:1213", "comment": "" }, { "term": "Override Gaps", "context": "Override Gaps", - "reference": "Modules/Settings/ThemeColorsTab.qml:931", + "reference": "Modules/Settings/ThemeColorsTab.qml:975, Modules/Settings/ThemeColorsTab.qml:1078, Modules/Settings/ThemeColorsTab.qml:1181", "comment": "" }, { @@ -5315,6 +5681,12 @@ "reference": "Modules/Settings/WorkspacesTab.qml:119", "comment": "" }, + { + "term": "Per-screen config", + "context": "greeter feature card description", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:124", + "comment": "" + }, { "term": "Percentage", "context": "Percentage", @@ -5342,7 +5714,7 @@ { "term": "Pin to Dock", "context": "Pin to Dock", - "reference": "Modals/Spotlight/SpotlightContextMenuContent.qml:26, Modules/AppDrawer/AppDrawerPopout.qml:736, Modules/Dock/DockContextMenu.qml:379", + "reference": "Modals/Spotlight/SpotlightContextMenuContent.qml:26, Modules/AppDrawer/AppDrawerPopout.qml:737, Modules/Dock/DockContextMenu.qml:379", "comment": "" }, { @@ -5431,8 +5803,8 @@ }, { "term": "Plugins", - "context": "Plugins", - "reference": "Modals/Settings/SettingsSidebar.qml:277, Modules/Settings/AboutTab.qml:247, Modules/Settings/AboutTab.qml:255", + "context": "greeter feature card title | greeter plugins link", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:116, Modals/Greeter/GreeterCompletePage.qml:476, Modals/Settings/SettingsSidebar.qml:277, Modules/Settings/AboutTab.qml:247, Modules/Settings/AboutTab.qml:255", "comment": "" }, { @@ -5450,7 +5822,13 @@ { "term": "Popup Transparency", "context": "Popup Transparency", - "reference": "Modules/Settings/ThemeColorsTab.qml:894", + "reference": "Modules/Settings/ThemeColorsTab.qml:938", + "comment": "" + }, + { + "term": "Popup behavior, position", + "context": "greeter notifications description", + "reference": "Modals/Greeter/GreeterCompletePage.qml:398", "comment": "" }, { @@ -5459,6 +5837,12 @@ "reference": "Modules/Settings/DockTab.qml:30, Modules/Settings/DankBarTab.qml:599, Modules/Settings/DisplayConfig/DisplayConfigState.qml:839", "comment": "" }, + { + "term": "Position, pinned apps", + "context": "greeter dock description", + "reference": "Modals/Greeter/GreeterCompletePage.qml:423", + "comment": "" + }, { "term": "Possible Override Conflicts", "context": "Possible Override Conflicts", @@ -5531,6 +5915,12 @@ "reference": "Modules/Settings/PowerSleepTab.qml:42", "comment": "" }, + { + "term": "Precip", + "context": "Precip", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:437", + "comment": "" + }, { "term": "Precipitation Chance", "context": "Precipitation Chance", @@ -5558,7 +5948,7 @@ { "term": "Pressure", "context": "Pressure", - "reference": "Modules/Settings/TimeWeatherTab.qml:941, Modules/DankBar/Widgets/WeatherForecastCard.qml:70", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:449, Modules/Settings/TimeWeatherTab.qml:941, Modules/DankBar/Widgets/WeatherForecastCard.qml:70", "comment": "" }, { @@ -5570,7 +5960,7 @@ { "term": "Primary", "context": "Primary", - "reference": "Modules/Settings/LauncherTab.qml:179, Modules/Settings/NetworkTab.qml:174, Modules/Settings/Widgets/SettingsColorPicker.qml:42", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:39, Modules/Settings/LauncherTab.qml:179, Modules/Settings/NetworkTab.qml:174, Modules/Settings/Widgets/SettingsColorPicker.qml:42", "comment": "" }, { @@ -5699,6 +6089,12 @@ "reference": "Modules/Settings/DisplayWidgetsTab.qml:59", "comment": "" }, + { + "term": "Quick system toggles", + "context": "greeter feature card description", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:138", + "comment": "" + }, { "term": "RGB", "context": "RGB", @@ -5849,6 +6245,12 @@ "reference": "Modules/Settings/DisplayConfig/OutputCard.qml:77", "comment": "" }, + { + "term": "Resolution, position, scale", + "context": "greeter displays description", + "reference": "Modals/Greeter/GreeterCompletePage.qml:374", + "comment": "" + }, { "term": "Restart DMS", "context": "Restart DMS", @@ -5930,19 +6332,37 @@ { "term": "Rounded corners for windows", "context": "Rounded corners for windows", - "reference": "Modules/Settings/ThemeColorsTab.qml:980", + "reference": "Modules/Settings/ThemeColorsTab.qml:1024", + "comment": "" + }, + { + "term": "Rounded corners for windows (border_radius)", + "context": "Rounded corners for windows (border_radius)", + "reference": "Modules/Settings/ThemeColorsTab.qml:1230", + "comment": "" + }, + { + "term": "Rounded corners for windows (decoration.rounding)", + "context": "Rounded corners for windows (decoration.rounding)", + "reference": "Modules/Settings/ThemeColorsTab.qml:1127", + "comment": "" + }, + { + "term": "Run Again", + "context": "greeter doctor page button", + "reference": "Modals/Greeter/GreeterDoctorPage.qml:374", "comment": "" }, { "term": "Run DMS Templates", "context": "Run DMS Templates", - "reference": "Modules/Settings/ThemeColorsTab.qml:1058", + "reference": "Modules/Settings/ThemeColorsTab.qml:1339", "comment": "" }, { "term": "Run User Templates", "context": "Run User Templates", - "reference": "Modules/Settings/ThemeColorsTab.qml:1048", + "reference": "Modules/Settings/ThemeColorsTab.qml:1329", "comment": "" }, { @@ -6002,25 +6422,25 @@ { "term": "Save critical priority notifications to history", "context": "notification history setting", - "reference": "Modules/Settings/NotificationsTab.qml:316", + "reference": "Modules/Settings/NotificationsTab.qml:338", "comment": "" }, { "term": "Save dismissed notifications to history", "context": "notification history toggle description", - "reference": "Modules/Settings/NotificationsTab.qml:233", + "reference": "Modules/Settings/NotificationsTab.qml:255", "comment": "" }, { "term": "Save low priority notifications to history", "context": "notification history setting", - "reference": "Modules/Settings/NotificationsTab.qml:298", + "reference": "Modules/Settings/NotificationsTab.qml:320", "comment": "" }, { "term": "Save normal priority notifications to history", "context": "notification history setting", - "reference": "Modules/Settings/NotificationsTab.qml:307", + "reference": "Modules/Settings/NotificationsTab.qml:329", "comment": "" }, { @@ -6080,7 +6500,7 @@ { "term": "Science", "context": "Science", - "reference": "Services/AppSearchService.qml:277", + "reference": "Services/AppSearchService.qml:354", "comment": "" }, { @@ -6176,7 +6596,7 @@ { "term": "Secondary", "context": "Secondary", - "reference": "Modules/Settings/Widgets/SettingsColorPicker.qml:47", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:43, Modules/Settings/Widgets/SettingsColorPicker.qml:47", "comment": "" }, { @@ -6206,7 +6626,7 @@ { "term": "Select Custom Theme", "context": "custom theme file browser title", - "reference": "Modules/Settings/ThemeColorsTab.qml:1422", + "reference": "Modules/Settings/ThemeColorsTab.qml:1746", "comment": "" }, { @@ -6302,7 +6722,7 @@ { "term": "Select the palette algorithm used for wallpaper-based colors", "context": "Select the palette algorithm used for wallpaper-based colors", - "reference": "Modules/Settings/ThemeColorsTab.qml:342", + "reference": "Modules/Settings/ThemeColorsTab.qml:386", "comment": "" }, { @@ -6356,7 +6776,7 @@ { "term": "Settings", "context": "settings window title", - "reference": "Services/AppSearchService.qml:278, Services/PopoutService.qml:260, Services/PopoutService.qml:277, Modals/Settings/SettingsSidebar.qml:110, Modals/Settings/SettingsModal.qml:59, Modals/Settings/SettingsModal.qml:189, Modules/DankDash/DankDashPopout.qml:293", + "reference": "Services/AppSearchService.qml:355, Services/PopoutService.qml:260, Services/PopoutService.qml:277, Modals/Settings/SettingsSidebar.qml:110, Modals/Settings/SettingsModal.qml:59, Modals/Settings/SettingsModal.qml:189, Modules/DankDash/DankDashPopout.qml:293", "comment": "" }, { @@ -6449,6 +6869,18 @@ "reference": "Modules/Settings/DockTab.qml:76", "comment": "" }, + { + "term": "Show Feels Like Temperature", + "context": "Show Feels Like Temperature", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:84", + "comment": "" + }, + { + "term": "Show Forecast", + "context": "Show Forecast", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:120", + "comment": "" + }, { "term": "Show GPU Temperature", "context": "Show GPU Temperature", @@ -6473,12 +6905,30 @@ "reference": "Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:60", "comment": "" }, + { + "term": "Show Hourly Forecast", + "context": "Show Hourly Forecast", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:135", + "comment": "" + }, + { + "term": "Show Humidity", + "context": "Show Humidity", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:90", + "comment": "" + }, { "term": "Show Line Numbers", "context": "Show Line Numbers", "reference": "Modules/Notepad/NotepadSettings.qml:142", "comment": "" }, + { + "term": "Show Location", + "context": "Show Location", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:72", + "comment": "" + }, { "term": "Show Lock", "context": "Show Lock", @@ -6539,6 +6989,18 @@ "reference": "Modules/Settings/PowerSleepTab.qml:412", "comment": "" }, + { + "term": "Show Precipitation Probability", + "context": "Show Precipitation Probability", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:108", + "comment": "" + }, + { + "term": "Show Pressure", + "context": "Show Pressure", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:102", + "comment": "" + }, { "term": "Show Profile Image", "context": "Enable profile image display on the lock screen window", @@ -6563,6 +7025,12 @@ "reference": "Modules/Settings/TimeWeatherTab.qml:47, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:71, PLUGINS/ExampleDesktopClock/DesktopClockSettings.qml:27", "comment": "" }, + { + "term": "Show Sunrise/Sunset", + "context": "Show Sunrise/Sunset", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:114", + "comment": "" + }, { "term": "Show Suspend", "context": "Show Suspend", @@ -6593,6 +7061,24 @@ "reference": "Modules/Settings/Widgets/SystemMonitorVariantCard.qml:323", "comment": "" }, + { + "term": "Show Weather Condition", + "context": "Show Weather Condition", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:78", + "comment": "" + }, + { + "term": "Show Welcome", + "context": "Show Welcome", + "reference": "Modules/Settings/AboutTab.qml:755", + "comment": "" + }, + { + "term": "Show Wind Speed", + "context": "Show Wind Speed", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:96", + "comment": "" + }, { "term": "Show Workspace Apps", "context": "Show Workspace Apps", @@ -6614,7 +7100,7 @@ { "term": "Show darkened overlay behind modal dialogs", "context": "Show darkened overlay behind modal dialogs", - "reference": "Modules/Settings/ThemeColorsTab.qml:1002", + "reference": "Modules/Settings/ThemeColorsTab.qml:1283", "comment": "" }, { @@ -6797,6 +7283,18 @@ "reference": "Modules/Settings/DockTab.qml:144", "comment": "" }, + { + "term": "Skip", + "context": "greeter skip button", + "reference": "Modals/Greeter/GreeterModal.qml:276", + "comment": "" + }, + { + "term": "Skip setup", + "context": "greeter skip button tooltip", + "reference": "Modals/Greeter/GreeterModal.qml:230", + "comment": "" + }, { "term": "Smartcard Authentication", "context": "Smartcard Authentication", @@ -6848,7 +7346,19 @@ { "term": "Space between windows", "context": "Space between windows", - "reference": "Modules/Settings/ThemeColorsTab.qml:949", + "reference": "Modules/Settings/ThemeColorsTab.qml:993", + "comment": "" + }, + { + "term": "Space between windows (gappih/gappiv/gappoh/gappov)", + "context": "Space between windows (gappih/gappiv/gappoh/gappov)", + "reference": "Modules/Settings/ThemeColorsTab.qml:1199", + "comment": "" + }, + { + "term": "Space between windows (gaps_in and gaps_out)", + "context": "Space between windows (gaps_in and gaps_out)", + "reference": "Modules/Settings/ThemeColorsTab.qml:1096", "comment": "" }, { @@ -6893,6 +7403,12 @@ "reference": "Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:29, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:35, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:45", "comment": "" }, + { + "term": "Standard", + "context": "Standard", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:19", + "comment": "" + }, { "term": "Start", "context": "Start", @@ -7004,25 +7520,31 @@ { "term": "Sync Mode with Portal", "context": "Sync Mode with Portal", - "reference": "Modules/Settings/ThemeColorsTab.qml:1019", + "reference": "Modules/Settings/ThemeColorsTab.qml:1300", "comment": "" }, { "term": "Sync dark mode with settings portals for system-wide theme hints", "context": "Sync dark mode with settings portals for system-wide theme hints", - "reference": "Modules/Settings/ThemeColorsTab.qml:1020", + "reference": "Modules/Settings/ThemeColorsTab.qml:1301", "comment": "" }, { "term": "System", "context": "System", - "reference": "Services/AppSearchService.qml:279, Widgets/DankIconPicker.qml:44, Modals/Settings/SettingsSidebar.qml:235, Modules/ProcessList/SystemTab.qml:127", + "reference": "Services/AppSearchService.qml:356, Widgets/DankIconPicker.qml:44, Modals/Settings/SettingsSidebar.qml:235, Modules/ProcessList/SystemTab.qml:127", "comment": "" }, { "term": "System App Theming", "context": "System App Theming", - "reference": "Modules/Settings/ThemeColorsTab.qml:1320", + "reference": "Modules/Settings/ThemeColorsTab.qml:1644", + "comment": "" + }, + { + "term": "System Check", + "context": "greeter doctor page title", + "reference": "Modals/Greeter/GreeterDoctorPage.qml:157, Modals/Greeter/GreeterDoctorPage.qml:221, Modules/Settings/AboutTab.qml:763", "comment": "" }, { @@ -7045,8 +7567,8 @@ }, { "term": "System Tray", - "context": "System Tray", - "reference": "Modules/Settings/WidgetsTab.qml:140", + "context": "greeter feature card title", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:144, Modules/Settings/WidgetsTab.qml:140", "comment": "" }, { @@ -7118,7 +7640,7 @@ { "term": "Terminals - Always use Dark Theme", "context": "Terminals - Always use Dark Theme", - "reference": "Modules/Settings/ThemeColorsTab.qml:1029", + "reference": "Modules/Settings/ThemeColorsTab.qml:1310", "comment": "" }, { @@ -7154,7 +7676,7 @@ { "term": "The below settings will modify your GTK and Qt settings. If you wish to preserve your current configurations, please back them up (qt5ct.conf|qt6ct.conf and ~/.config/gtk-3.0|gtk-4.0).", "context": "The below settings will modify your GTK and Qt settings. If you wish to preserve your current configurations, please back them up (qt5ct.conf|qt6ct.conf and ~/.config/gtk-3.0|gtk-4.0).", - "reference": "Modules/Settings/ThemeColorsTab.qml:1283", + "reference": "Modules/Settings/ThemeColorsTab.qml:1607", "comment": "" }, { @@ -7165,14 +7687,26 @@ }, { "term": "Theme & Colors", - "context": "Theme & Colors", - "reference": "Modals/Settings/SettingsSidebar.qml:78", + "context": "greeter settings link", + "reference": "Modals/Greeter/GreeterCompletePage.qml:389, Modals/Settings/SettingsSidebar.qml:78", "comment": "" }, { "term": "Theme Color", "context": "Theme Color", - "reference": "Modules/Settings/ThemeColorsTab.qml:57", + "reference": "Modules/Settings/ThemeColorsTab.qml:101", + "comment": "" + }, + { + "term": "Theme Registry", + "context": "greeter feature card title", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:102", + "comment": "" + }, + { + "term": "Themes", + "context": "greeter themes link", + "reference": "Modals/Greeter/GreeterCompletePage.qml:484", "comment": "" }, { @@ -7250,19 +7784,19 @@ { "term": "Timeout for critical priority notifications", "context": "Timeout for critical priority notifications", - "reference": "Modules/Settings/NotificationsTab.qml:209", + "reference": "Modules/Settings/NotificationsTab.qml:231", "comment": "" }, { "term": "Timeout for low priority notifications", "context": "Timeout for low priority notifications", - "reference": "Modules/Settings/NotificationsTab.qml:175", + "reference": "Modules/Settings/NotificationsTab.qml:197", "comment": "" }, { "term": "Timeout for normal priority notifications", "context": "Timeout for normal priority notifications", - "reference": "Modules/Settings/NotificationsTab.qml:192", + "reference": "Modules/Settings/NotificationsTab.qml:214", "comment": "" }, { @@ -7331,6 +7865,12 @@ "reference": "Services/CupsService.qml:774", "comment": "" }, + { + "term": "Tools", + "context": "Tools", + "reference": "Modules/Settings/AboutTab.qml:743", + "comment": "" + }, { "term": "Top", "context": "Top", @@ -7436,25 +7976,25 @@ { "term": "Uninstall failed: %1", "context": "uninstallation error", - "reference": "Modules/Settings/ThemeColorsTab.qml:586, Modules/Settings/ThemeBrowser.qml:96", + "reference": "Modules/Settings/ThemeColorsTab.qml:630, Modules/Settings/ThemeBrowser.qml:96", "comment": "" }, { "term": "Uninstalled: %1", "context": "uninstallation success", - "reference": "Modules/Settings/ThemeColorsTab.qml:589, Modules/Settings/ThemeBrowser.qml:99", + "reference": "Modules/Settings/ThemeColorsTab.qml:633, Modules/Settings/ThemeBrowser.qml:99", "comment": "" }, { "term": "Uninstalling: %1", "context": "uninstallation progress", - "reference": "Modules/Settings/ThemeColorsTab.qml:583, Modules/Settings/ThemeBrowser.qml:93", + "reference": "Modules/Settings/ThemeColorsTab.qml:627, Modules/Settings/ThemeBrowser.qml:93", "comment": "" }, { "term": "Unknown", "context": "unknown author", - "reference": "Modules/Settings/PluginBrowser.qml:492, Modules/Settings/PrinterTab.qml:1285, Modules/Settings/ThemeBrowser.qml:531, Modules/Settings/NetworkTab.qml:122, Modules/Settings/NetworkTab.qml:164, Modules/Settings/NetworkTab.qml:370, Modules/Settings/NetworkTab.qml:391, Modules/Settings/NetworkTab.qml:539, Modules/Settings/NetworkTab.qml:682, Modules/Settings/NetworkTab.qml:1091, Modules/ControlCenter/Details/BatteryDetail.qml:177, Modules/ControlCenter/Components/HeaderPane.qml:60", + "reference": "Modules/Lock/LockScreenContent.qml:370, Modules/Lock/LockScreenContent.qml:490, Modules/Lock/LockScreenContent.qml:586, Modules/Settings/PluginBrowser.qml:492, Modules/Settings/PrinterTab.qml:1285, Modules/Settings/ThemeBrowser.qml:531, Modules/Settings/NetworkTab.qml:122, Modules/Settings/NetworkTab.qml:164, Modules/Settings/NetworkTab.qml:370, Modules/Settings/NetworkTab.qml:391, Modules/Settings/NetworkTab.qml:539, Modules/Settings/NetworkTab.qml:682, Modules/Settings/NetworkTab.qml:1091, Modules/ControlCenter/Details/BatteryDetail.qml:177, Modules/ControlCenter/Components/HeaderPane.qml:60", "comment": "" }, { @@ -7484,7 +8024,7 @@ { "term": "Unpin from Dock", "context": "Unpin from Dock", - "reference": "Modals/Spotlight/SpotlightContextMenuContent.qml:26, Modules/AppDrawer/AppDrawerPopout.qml:736, Modules/Dock/DockContextMenu.qml:379", + "reference": "Modals/Spotlight/SpotlightContextMenuContent.qml:26, Modules/AppDrawer/AppDrawerPopout.qml:737, Modules/Dock/DockContextMenu.qml:379", "comment": "" }, { @@ -7583,6 +8123,18 @@ "reference": "Modules/Settings/MediaPlayerTab.qml:30", "comment": "" }, + { + "term": "Use custom border size", + "context": "Use custom border size", + "reference": "Modules/Settings/ThemeColorsTab.qml:1142, Modules/Settings/ThemeColorsTab.qml:1245", + "comment": "" + }, + { + "term": "Use custom border/focus-ring width", + "context": "Use custom border/focus-ring width", + "reference": "Modules/Settings/ThemeColorsTab.qml:1039", + "comment": "" + }, { "term": "Use custom command for update your system", "context": "Use custom command for update your system", @@ -7592,25 +8144,31 @@ { "term": "Use custom gaps instead of bar spacing", "context": "Use custom gaps instead of bar spacing", - "reference": "Modules/Settings/ThemeColorsTab.qml:932", + "reference": "Modules/Settings/ThemeColorsTab.qml:976, Modules/Settings/ThemeColorsTab.qml:1079, Modules/Settings/ThemeColorsTab.qml:1182", "comment": "" }, { "term": "Use custom window radius instead of theme radius", "context": "Use custom window radius instead of theme radius", - "reference": "Modules/Settings/ThemeColorsTab.qml:964", + "reference": "Modules/Settings/ThemeColorsTab.qml:1008, Modules/Settings/ThemeColorsTab.qml:1214", + "comment": "" + }, + { + "term": "Use custom window rounding instead of theme radius", + "context": "Use custom window rounding instead of theme radius", + "reference": "Modules/Settings/ThemeColorsTab.qml:1111", "comment": "" }, { "term": "Use fingerprint reader for lock screen authentication (requires enrolled fingerprints)", "context": "Use fingerprint reader for lock screen authentication (requires enrolled fingerprints)", - "reference": "Modules/Settings/LockScreenTab.qml:123", + "reference": "Modules/Settings/LockScreenTab.qml:138", "comment": "" }, { "term": "Use light theme instead of dark theme", "context": "Use light theme instead of dark theme", - "reference": "Modules/Settings/ThemeColorsTab.qml:824", + "reference": "Modules/Settings/ThemeColorsTab.qml:868", "comment": "" }, { @@ -7631,6 +8189,12 @@ "reference": "Modules/ProcessList/SystemTab.qml:453", "comment": "" }, + { + "term": "Used when accent color is set to Custom", + "context": "Used when accent color is set to Custom", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:57", + "comment": "" + }, { "term": "User", "context": "User", @@ -7652,7 +8216,7 @@ { "term": "Utilities", "context": "Utilities", - "reference": "Services/AppSearchService.qml:280, Services/AppSearchService.qml:281, Services/AppSearchService.qml:282, Services/AppSearchService.qml:283", + "reference": "Services/AppSearchService.qml:357, Services/AppSearchService.qml:358, Services/AppSearchService.qml:359, Services/AppSearchService.qml:360", "comment": "" }, { @@ -7766,7 +8330,13 @@ { "term": "Vibrant palette with playful saturation.", "context": "Vibrant palette with playful saturation.", - "reference": "Common/Theme.qml:242", + "reference": "Common/Theme.qml:244", + "comment": "" + }, + { + "term": "View Mode", + "context": "View Mode", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:11", "comment": "" }, { @@ -7819,14 +8389,14 @@ }, { "term": "Wallpaper", - "context": "Wallpaper", - "reference": "Widgets/KeybindItem.qml:1030, Widgets/KeybindItem.qml:1037, Widgets/KeybindItem.qml:1046, Modals/Settings/SettingsSidebar.qml:72, Modules/Settings/DisplayWidgetsTab.qml:40, Modules/Settings/WallpaperTab.qml:40", + "context": "greeter settings link", + "reference": "Widgets/KeybindItem.qml:1030, Widgets/KeybindItem.qml:1037, Widgets/KeybindItem.qml:1046, Modals/Greeter/GreeterCompletePage.qml:381, Modals/Settings/SettingsSidebar.qml:72, Modules/Settings/DisplayWidgetsTab.qml:40, Modules/Settings/WallpaperTab.qml:40", "comment": "" }, { "term": "Wallpaper Error", "context": "wallpaper error status", - "reference": "Modules/Settings/ThemeColorsTab.qml:303", + "reference": "Modules/Settings/ThemeColorsTab.qml:347", "comment": "" }, { @@ -7838,13 +8408,13 @@ { "term": "Wallpaper processing failed", "context": "wallpaper processing error", - "reference": "Modules/Settings/ThemeColorsTab.qml:320", + "reference": "Modules/Settings/ThemeColorsTab.qml:364", "comment": "" }, { "term": "Wallpaper processing failed - check wallpaper path", "context": "wallpaper error", - "reference": "Modules/Settings/ThemeColorsTab.qml:156", + "reference": "Modules/Settings/ThemeColorsTab.qml:200", "comment": "" }, { @@ -7865,6 +8435,12 @@ "reference": "Services/CupsService.qml:820", "comment": "" }, + { + "term": "Warnings", + "context": "greeter doctor page status card", + "reference": "Modals/Greeter/GreeterDoctorPage.qml:253", + "comment": "" + }, { "term": "Wave Progress Bars", "context": "Wave Progress Bars", @@ -7883,6 +8459,18 @@ "reference": "Modules/Settings/WidgetsTab.qml:79", "comment": "" }, + { + "term": "Welcome", + "context": "greeter modal window title", + "reference": "Modals/Greeter/GreeterModal.qml:88", + "comment": "" + }, + { + "term": "Welcome to DankMaterialShell", + "context": "greeter welcome page title", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:45", + "comment": "" + }, { "term": "When enabled, apps are sorted alphabetically. When disabled, apps are sorted by usage frequency.", "context": "When enabled, apps are sorted alphabetically. When disabled, apps are sorted by usage frequency.", @@ -7952,7 +8540,7 @@ { "term": "Widget Background Color", "context": "Widget Background Color", - "reference": "Modules/Settings/ThemeColorsTab.qml:859", + "reference": "Modules/Settings/ThemeColorsTab.qml:903", "comment": "" }, { @@ -7970,13 +8558,13 @@ { "term": "Widget Style", "context": "Widget Style", - "reference": "Modules/Settings/ThemeColorsTab.qml:844", + "reference": "Modules/Settings/ThemeColorsTab.qml:888", "comment": "" }, { "term": "Widget Styling", "context": "Widget Styling", - "reference": "Modules/Settings/ThemeColorsTab.qml:836", + "reference": "Modules/Settings/ThemeColorsTab.qml:880", "comment": "" }, { @@ -8003,10 +8591,34 @@ "reference": "Modals/Settings/SettingsSidebar.qml:116, Modals/Settings/SettingsSidebar.qml:220", "comment": "" }, + { + "term": "Widgets, layout, style", + "context": "greeter dankbar description", + "reference": "Modals/Greeter/GreeterCompletePage.qml:406", + "comment": "" + }, + { + "term": "Width of window border (borderpx)", + "context": "Width of window border (borderpx)", + "reference": "Modules/Settings/ThemeColorsTab.qml:1261", + "comment": "" + }, + { + "term": "Width of window border (general.border_size)", + "context": "Width of window border (general.border_size)", + "reference": "Modules/Settings/ThemeColorsTab.qml:1158", + "comment": "" + }, + { + "term": "Width of window border and focus ring", + "context": "Width of window border and focus ring", + "reference": "Modules/Settings/ThemeColorsTab.qml:1055", + "comment": "" + }, { "term": "Wind", "context": "Wind", - "reference": "Modules/Settings/TimeWeatherTab.qml:888", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:425, Modules/Settings/TimeWeatherTab.qml:888", "comment": "" }, { @@ -8018,13 +8630,13 @@ { "term": "Window Corner Radius", "context": "Window Corner Radius", - "reference": "Modules/Settings/ThemeColorsTab.qml:979", + "reference": "Modules/Settings/ThemeColorsTab.qml:1023, Modules/Settings/ThemeColorsTab.qml:1229", "comment": "" }, { "term": "Window Gaps", "context": "Window Gaps", - "reference": "Modules/Settings/ThemeColorsTab.qml:948", + "reference": "Modules/Settings/ThemeColorsTab.qml:992, Modules/Settings/ThemeColorsTab.qml:1095, Modules/Settings/ThemeColorsTab.qml:1198", "comment": "" }, { @@ -8033,6 +8645,12 @@ "reference": "Modules/Settings/DisplayConfig/NiriOutputSettings.qml:217", "comment": "" }, + { + "term": "Window Rounding", + "context": "Window Rounding", + "reference": "Modules/Settings/ThemeColorsTab.qml:1126", + "comment": "" + }, { "term": "Workspace", "context": "Workspace", @@ -8129,10 +8747,16 @@ "reference": "Modules/Notepad/Notepad.qml:382", "comment": "" }, + { + "term": "You're All Set!", + "context": "greeter completion page title", + "reference": "Modals/Greeter/GreeterCompletePage.qml:105", + "comment": "" + }, { "term": "apps", "context": "apps", - "reference": "Modules/AppDrawer/AppDrawerPopout.qml:260", + "reference": "Modules/AppDrawer/AppDrawerPopout.qml:261", "comment": "" }, { @@ -8144,7 +8768,7 @@ { "term": "days", "context": "days", - "reference": "Modules/Settings/NotificationsTab.qml:272, Modules/Settings/ClipboardTab.qml:152", + "reference": "Modules/Settings/NotificationsTab.qml:294, Modules/Settings/ClipboardTab.qml:152", "comment": "" }, { @@ -8198,7 +8822,7 @@ { "term": "files", "context": "files", - "reference": "Modules/AppDrawer/AppDrawerPopout.qml:258", + "reference": "Modules/AppDrawer/AppDrawerPopout.qml:259", "comment": "" }, { @@ -8210,13 +8834,13 @@ { "term": "loginctl not available - lock integration requires DMS socket connection", "context": "loginctl not available - lock integration requires DMS socket connection", - "reference": "Modules/Settings/LockScreenTab.qml:87", + "reference": "Modules/Settings/LockScreenTab.qml:102", "comment": "" }, { "term": "matugen not found - install matugen package for dynamic theming", "context": "matugen error", - "reference": "Modules/Settings/ThemeColorsTab.qml:154", + "reference": "Modules/Settings/ThemeColorsTab.qml:198", "comment": "" }, { @@ -8231,10 +8855,16 @@ "reference": "Widgets/KeybindItem.qml:1496", "comment": "" }, + { + "term": "niri shortcuts config", + "context": "greeter keybinds niri description", + "reference": "Modals/Greeter/GreeterCompletePage.qml:414", + "comment": "" + }, { "term": "now", "context": "now", - "reference": "Services/NotificationService.qml:195", + "reference": "Services/NotificationService.qml:246", "comment": "" }, { @@ -8270,7 +8900,7 @@ { "term": "yesterday", "context": "yesterday", - "reference": "Services/NotificationService.qml:205", + "reference": "Services/NotificationService.qml:256", "comment": "" }, { diff --git a/quickshell/translations/poexports/es.json b/quickshell/translations/poexports/es.json index cbb8d50c..246ebc59 100644 --- a/quickshell/translations/poexports/es.json +++ b/quickshell/translations/poexports/es.json @@ -23,6 +23,9 @@ "%1 job(s)": { "%1 job(s)": "%1 trabajo(s)" }, + "%1 notifications": { + "%1 notifications": "" + }, "%1 printer(s)": { "%1 printer(s)": "%1 impresora(s)" }, @@ -38,6 +41,9 @@ "(Unnamed)": { "(Unnamed)": "(Sin nombre)" }, + "+ %1 more": { + "+ %1 more": "" + }, "0 = square corners": { "0 = square corners": "0 = esquinas cuadradas" }, @@ -50,6 +56,9 @@ "1 minute": { "1 minute": "1 minuto" }, + "1 notification": { + "1 notification": "" + }, "1 second": { "1 second": "1 segundo" }, @@ -128,6 +137,9 @@ "About": { "About": "Información" }, + "Accent Color": { + "Accent Color": "" + }, "Accept Jobs": { "Accept Jobs": "Aceptar trabajos" }, @@ -413,6 +425,9 @@ "Available Screens (%1)": { "Available Screens (%1)": "Pantallas disponibles (%1)" }, + "Available in Detailed and Forecast view modes": { + "Available in Detailed and Forecast view modes": "" + }, "BSSID": { "BSSID": "BSSID" }, @@ -500,6 +515,9 @@ "Border Opacity": { "Border Opacity": "Opacidad del borde" }, + "Border Size": { + "Border Size": "" + }, "Border Thickness": { "Border Thickness": "Grosor del borde" }, @@ -626,6 +644,9 @@ "Choose colors from palette": { "Choose colors from palette": "Escoje colores de la paleta" }, + "Choose how the weather widget is displayed": { + "Choose how the weather widget is displayed": "" + }, "Choose icon": { "Choose icon": "Elegir icono" }, @@ -755,6 +776,9 @@ "Communication": { "Communication": "Comunicación" }, + "Compact": { + "Compact": "" + }, "Compact Mode": { "Compact Mode": "Modo compacto" }, @@ -911,6 +935,9 @@ "Custom": { "Custom": "Personal" }, + "Custom Color": { + "Custom Color": "" + }, "Custom Duration": { "Custom Duration": "Duracion personalizada" }, @@ -1073,6 +1100,9 @@ "Desktop clock widget name": { "Desktop Clock": "Reloj de escritorio" }, + "Detailed": { + "Detailed": "" + }, "Development": { "Development": "Desarrollo" }, @@ -1160,6 +1190,9 @@ "Display currently focused application title": { "Display currently focused application title": "Mostrar título de la aplicación enfocada" }, + "Display hourly weather predictions": { + "Display hourly weather predictions": "" + }, "Display only workspaces that contain windows": { "Display only workspaces that contain windows": "Mostrar solo los espacios que contengan ventanas" }, @@ -1535,6 +1568,9 @@ "Failed to write temp file for validation": { "Failed to write temp file for validation": "Fallo al escribir archivo temporal para la validacion" }, + "Feels": { + "Feels": "" + }, "Feels Like": { "Feels Like": "Temperatura" }, @@ -1616,6 +1652,12 @@ "Force terminal applications to always use dark color schemes": { "Force terminal applications to always use dark color schemes": "Forzar que las aplicaciones de terminal usen esquemas de colores oscuros" }, + "Forecast": { + "Forecast": "" + }, + "Forecast Days": { + "Forecast Days": "" + }, "Forecast Not Available": { "Forecast Not Available": "No hay previsión del tiempo disponible" }, @@ -1769,12 +1811,18 @@ "Hourly Forecast": { "Hourly Forecast": "Previsión horaria" }, + "Hourly Forecast Count": { + "Hourly Forecast Count": "" + }, "How often to change wallpaper": { "How often to change wallpaper": "Con qué frecuencia cambiar el fondo de pantalla" }, "Humidity": { "Humidity": "Humedad" }, + "Hyprland Layout Overrides": { + "Hyprland Layout Overrides": "" + }, "I Understand": { "I Understand": "Lo entiendo" }, @@ -2042,6 +2090,9 @@ "Management": { "Management": "Gestión" }, + "MangoWC Layout Overrides": { + "MangoWC Layout Overrides": "" + }, "Manual Coordinates": { "Manual Coordinates": "Coordenadas manuales" }, @@ -2306,6 +2357,9 @@ "No VPN profiles": { "No VPN profiles": "Sin perfiles VPN" }, + "No Weather Data": { + "No Weather Data": "" + }, "No Weather Data Available": { "No Weather Data Available": "No hay datos meteorológicos disponibles" }, @@ -2396,6 +2450,9 @@ "Not connected": { "Not connected": "No conectado" }, + "Not detected": { + "Not detected": "" + }, "Note: this only changes the percentage, it does not actually limit charging.": { "Note: this only changes the percentage, it does not actually limit charging.": "Nota: esto sólo cambia el porcentaje, no limita realmente la carga." }, @@ -2510,6 +2567,9 @@ "Override": { "Override": "Sobrescribir" }, + "Override Border Size": { + "Override Border Size": "" + }, "Override Corner Radius": { "Override Corner Radius": "Anular radio de esquina" }, @@ -2684,6 +2744,9 @@ "Power source": { "Power source": "Fuente de energia" }, + "Precip": { + "Precip": "" + }, "Precipitation Chance": { "Precipitation Chance": "Probabilidad de lluvia" }, @@ -2885,6 +2948,12 @@ "Rounded corners for windows": { "Rounded corners for windows": "Esquinas redondeadas para ventanas" }, + "Rounded corners for windows (border_radius)": { + "Rounded corners for windows (border_radius)": "" + }, + "Rounded corners for windows (decoration.rounding)": { + "Rounded corners for windows (decoration.rounding)": "" + }, "Run DMS Templates": { "Run DMS Templates": "Ejecutar plantillas de DMS" }, @@ -3113,6 +3182,12 @@ "Show Dock": { "Show Dock": "Mostrar dock" }, + "Show Feels Like Temperature": { + "Show Feels Like Temperature": "" + }, + "Show Forecast": { + "Show Forecast": "" + }, "Show GPU Temperature": { "Show GPU Temperature": "Mostrar temperatura de la GPU" }, @@ -3125,9 +3200,18 @@ "Show Hour Numbers": { "Show Hour Numbers": "Mostrar números de horas" }, + "Show Hourly Forecast": { + "Show Hourly Forecast": "" + }, + "Show Humidity": { + "Show Humidity": "" + }, "Show Line Numbers": { "Show Line Numbers": "Mostrar números de líneas" }, + "Show Location": { + "Show Location": "" + }, "Show Lock": { "Show Lock": "Mostrar Bloquear" }, @@ -3152,6 +3236,12 @@ "Show Power Off": { "Show Power Off": "Mostrar Apagar" }, + "Show Precipitation Probability": { + "Show Precipitation Probability": "" + }, + "Show Pressure": { + "Show Pressure": "" + }, "Show Reboot": { "Show Reboot": "Mostrar Reiniciar" }, @@ -3161,12 +3251,24 @@ "Show Seconds": { "Show Seconds": "Mostrar segundos" }, + "Show Sunrise/Sunset": { + "Show Sunrise/Sunset": "" + }, "Show Suspend": { "Show Suspend": "Mostrar Suspender" }, "Show Top Processes": { "Show Top Processes": "Mostrar procesos principales" }, + "Show Weather Condition": { + "Show Weather Condition": "" + }, + "Show Welcome": { + "Show Welcome": "" + }, + "Show Wind Speed": { + "Show Wind Speed": "" + }, "Show Workspace Apps": { "Show Workspace Apps": "Mostrar aplicaciones en el espacio de trabajo" }, @@ -3296,6 +3398,12 @@ "Space between windows": { "Space between windows": "Espacio entre ventanas" }, + "Space between windows (gappih/gappiv/gappoh/gappov)": { + "Space between windows (gappih/gappiv/gappoh/gappov)": "" + }, + "Space between windows (gaps_in and gaps_out)": { + "Space between windows (gaps_in and gaps_out)": "" + }, "Spacer": { "Spacer": "Espaciador" }, @@ -3317,6 +3425,9 @@ "Stacked": { "Stacked": "Apilado" }, + "Standard": { + "Standard": "" + }, "Start": { "Start": "Empezar" }, @@ -3539,6 +3650,9 @@ "Toner Low": { "Toner Low": "Tóner bajo" }, + "Tools": { + "Tools": "" + }, "Top": { "Top": "Arriba" }, @@ -3650,6 +3764,12 @@ "Use animated wave progress bars for media playback": { "Use animated wave progress bars for media playback": "Utilizar barras de progreso con efecto de ola para la reproducción de medios" }, + "Use custom border size": { + "Use custom border size": "" + }, + "Use custom border/focus-ring width": { + "Use custom border/focus-ring width": "" + }, "Use custom command for update your system": { "Use custom command for update your system": "Utilizar un comando personalizado para actualizar el sistema" }, @@ -3659,6 +3779,9 @@ "Use custom window radius instead of theme radius": { "Use custom window radius instead of theme radius": "Usar radio de ventana personalizado en lugar del radio del tema" }, + "Use custom window rounding instead of theme radius": { + "Use custom window rounding instead of theme radius": "" + }, "Use fingerprint reader for lock screen authentication (requires enrolled fingerprints)": { "Use fingerprint reader for lock screen authentication (requires enrolled fingerprints)": "Usar el lector de huellas dactilares para desbloquear la pantalla de bloqueo (requiere haber registrado huellas previamente)" }, @@ -3674,6 +3797,9 @@ "Used": { "Used": "Usado" }, + "Used when accent color is set to Custom": { + "Used when accent color is set to Custom": "" + }, "User": { "User": "Usuario" }, @@ -3749,6 +3875,9 @@ "Vibrant palette with playful saturation.": { "Vibrant palette with playful saturation.": "Paleta vibrante y juguetona." }, + "View Mode": { + "View Mode": "" + }, "Visibility": { "Visibility": "Visibilidad" }, @@ -3865,6 +3994,15 @@ "Widget removed": { "Widget removed": "Widget eliminado" }, + "Width of window border (borderpx)": { + "Width of window border (borderpx)": "" + }, + "Width of window border (general.border_size)": { + "Width of window border (general.border_size)": "" + }, + "Width of window border and focus ring": { + "Width of window border and focus ring": "" + }, "Wind": { "Wind": "Viento" }, @@ -3880,6 +4018,9 @@ "Window Gaps (px)": { "Window Gaps (px)": "Separacion de ventanas (px)" }, + "Window Rounding": { + "Window Rounding": "" + }, "Workspace": { "Workspace": "Espacio de trabajo" }, @@ -4000,6 +4141,145 @@ "generic theme description": { "Material Design inspired color themes": "Temas de color inspirados en Material Design" }, + "greeter back button": { + "Back": "" + }, + "greeter completion page subtitle": { + "DankMaterialShell is ready to use": "" + }, + "greeter completion page title": { + "You're All Set!": "" + }, + "greeter configure keybinds link": { + "Configure Keybinds": "" + }, + "greeter dankbar description": { + "Widgets, layout, style": "" + }, + "greeter displays description": { + "Resolution, position, scale": "" + }, + "greeter dock description": { + "Position, pinned apps": "" + }, + "greeter doctor page button": { + "Run Again": "" + }, + "greeter doctor page empty state": { + "No checks passed": "", + "No errors": "", + "No info items": "", + "No warnings": "" + }, + "greeter doctor page error count": { + "%1 issue(s) found": "" + }, + "greeter doctor page loading text": { + "Analyzing configuration...": "" + }, + "greeter doctor page status card": { + "Errors": "", + "Info": "", + "OK": "", + "Warnings": "" + }, + "greeter doctor page success": { + "All checks passed": "" + }, + "greeter doctor page title": { + "System Check": "" + }, + "greeter documentation link": { + "Docs": "" + }, + "greeter explore section header": { + "Explore": "" + }, + "greeter feature card description": { + "Background app icons": "", + "Colors from wallpaper": "", + "Community themes": "", + "Extensible architecture": "", + "GTK, Qt, IDEs, more": "", + "Modular widget bar": "", + "Night mode & gamma": "", + "Per-screen config": "", + "Quick system toggles": "" + }, + "greeter feature card title": { + "App Theming": "", + "Control Center": "", + "Display Control": "", + "Dynamic Theming": "", + "Multi-Monitor": "", + "System Tray": "", + "Theme Registry": "" + }, + "greeter feature card title | greeter plugins link": { + "Plugins": "" + }, + "greeter feature card title | greeter settings link": { + "DankBar": "" + }, + "greeter finish button": { + "Finish": "" + }, + "greeter first page button": { + "Get Started": "" + }, + "greeter keybinds niri description": { + "niri shortcuts config": "" + }, + "greeter keybinds section header": { + "DMS Shortcuts": "" + }, + "greeter modal window title": { + "Welcome": "" + }, + "greeter next button": { + "Next": "" + }, + "greeter no keybinds message": { + "No DMS shortcuts configured": "" + }, + "greeter notifications description": { + "Popup behavior, position": "" + }, + "greeter settings link": { + "Displays": "", + "Dock": "", + "Keybinds": "", + "Notifications": "", + "Theme & Colors": "", + "Wallpaper": "" + }, + "greeter settings section header": { + "Configure": "" + }, + "greeter skip button": { + "Skip": "" + }, + "greeter skip button tooltip": { + "Skip setup": "" + }, + "greeter theme description": { + "Dynamic colors, presets": "" + }, + "greeter themes link": { + "Themes": "" + }, + "greeter wallpaper description": { + "Background image": "" + }, + "greeter welcome page section header": { + "Features": "" + }, + "greeter welcome page tagline": { + "A modern desktop shell for Wayland compositors": "" + }, + "greeter welcome page title": { + "Welcome to DankMaterialShell": "" + }, "install action button": { "Install": "Instalar" }, @@ -4021,6 +4301,19 @@ "loading indicator": { "Loading...": "Cargando..." }, + "lock screen notification mode option": { + "App Names": "", + "Count Only": "", + "Disabled": "", + "Full Content": "" + }, + "lock screen notification privacy setting": { + "Control what notification information is shown on the lock screen": "", + "Notification Display": "" + }, + "lock screen notifications settings card": { + "Lock Screen": "" + }, "loginctl not available - lock integration requires DMS socket connection": { "loginctl not available - lock integration requires DMS socket connection": "loginctl no disponible - integración requiere conexión al socket DMS" }, diff --git a/quickshell/translations/poexports/fa.json b/quickshell/translations/poexports/fa.json index cb8a7da5..7b8c5606 100644 --- a/quickshell/translations/poexports/fa.json +++ b/quickshell/translations/poexports/fa.json @@ -23,6 +23,9 @@ "%1 job(s)": { "%1 job(s)": "%1 کار چاپ" }, + "%1 notifications": { + "%1 notifications": "" + }, "%1 printer(s)": { "%1 printer(s)": "%1 چاپگر" }, @@ -38,6 +41,9 @@ "(Unnamed)": { "(Unnamed)": "(بدون نام)" }, + "+ %1 more": { + "+ %1 more": "" + }, "0 = square corners": { "0 = square corners": "۰ = گوشه‌های مربعی" }, @@ -50,6 +56,9 @@ "1 minute": { "1 minute": "۱ دقیقه" }, + "1 notification": { + "1 notification": "" + }, "1 second": { "1 second": "۱ ثانیه" }, @@ -128,6 +137,9 @@ "About": { "About": "درباره" }, + "Accent Color": { + "Accent Color": "" + }, "Accept Jobs": { "Accept Jobs": "پذیرش کار‌های چاپ" }, @@ -413,6 +425,9 @@ "Available Screens (%1)": { "Available Screens (%1)": "نمایشگر‌های در دسترس (%1)" }, + "Available in Detailed and Forecast view modes": { + "Available in Detailed and Forecast view modes": "" + }, "BSSID": { "BSSID": "BSSID" }, @@ -500,6 +515,9 @@ "Border Opacity": { "Border Opacity": "شفافیت حاشیه" }, + "Border Size": { + "Border Size": "" + }, "Border Thickness": { "Border Thickness": "ضخامت حاشیه" }, @@ -626,6 +644,9 @@ "Choose colors from palette": { "Choose colors from palette": "انتخاب رنگ‌ها از پالت رنگی" }, + "Choose how the weather widget is displayed": { + "Choose how the weather widget is displayed": "" + }, "Choose icon": { "Choose icon": "انتخاب آیکون" }, @@ -755,6 +776,9 @@ "Communication": { "Communication": "ارتباطات" }, + "Compact": { + "Compact": "" + }, "Compact Mode": { "Compact Mode": "حالت فشرده" }, @@ -911,6 +935,9 @@ "Custom": { "Custom": "سفارشی" }, + "Custom Color": { + "Custom Color": "" + }, "Custom Duration": { "Custom Duration": "مدت زمان سفارشی" }, @@ -1073,6 +1100,9 @@ "Desktop clock widget name": { "Desktop Clock": "ساعت دسکتاپ" }, + "Detailed": { + "Detailed": "" + }, "Development": { "Development": "توسعه" }, @@ -1160,6 +1190,9 @@ "Display currently focused application title": { "Display currently focused application title": "نمایش عنوان برنامه فوکوس‌شده کنونی" }, + "Display hourly weather predictions": { + "Display hourly weather predictions": "" + }, "Display only workspaces that contain windows": { "Display only workspaces that contain windows": "نمایش تنها workspace‌هایی که شامل پنجره هستند" }, @@ -1535,6 +1568,9 @@ "Failed to write temp file for validation": { "Failed to write temp file for validation": "نوشتن فایل موقت برای اعتبارسنجی ناموفق بود" }, + "Feels": { + "Feels": "" + }, "Feels Like": { "Feels Like": "احساس می‌شود" }, @@ -1616,6 +1652,12 @@ "Force terminal applications to always use dark color schemes": { "Force terminal applications to always use dark color schemes": "اجبار برنامه‌های ترمینال به استفاده از رنگ‌های تاریک" }, + "Forecast": { + "Forecast": "" + }, + "Forecast Days": { + "Forecast Days": "" + }, "Forecast Not Available": { "Forecast Not Available": "پیش‌بینی موجود نیست" }, @@ -1769,12 +1811,18 @@ "Hourly Forecast": { "Hourly Forecast": "پیش‌بینی ساعتی" }, + "Hourly Forecast Count": { + "Hourly Forecast Count": "" + }, "How often to change wallpaper": { "How often to change wallpaper": "چند وقت یکبار تصویر پس‌زمینه تغییر کند" }, "Humidity": { "Humidity": "رطوبت" }, + "Hyprland Layout Overrides": { + "Hyprland Layout Overrides": "" + }, "I Understand": { "I Understand": "متوجه شدم" }, @@ -2042,6 +2090,9 @@ "Management": { "Management": "مدیریت" }, + "MangoWC Layout Overrides": { + "MangoWC Layout Overrides": "" + }, "Manual Coordinates": { "Manual Coordinates": "مختصات دستی" }, @@ -2306,6 +2357,9 @@ "No VPN profiles": { "No VPN profiles": "پروفایل VPN یافت نشد" }, + "No Weather Data": { + "No Weather Data": "" + }, "No Weather Data Available": { "No Weather Data Available": "داده آب و هوا در دسترس نیست" }, @@ -2396,6 +2450,9 @@ "Not connected": { "Not connected": "متصل نیست" }, + "Not detected": { + "Not detected": "" + }, "Note: this only changes the percentage, it does not actually limit charging.": { "Note: this only changes the percentage, it does not actually limit charging.": "نکته: این تنها درصد را تغییر می‌دهد، به طور واقعی محدودیت روی شارژ کردن اعمال نمی‌کند." }, @@ -2510,6 +2567,9 @@ "Override": { "Override": "جایگزین" }, + "Override Border Size": { + "Override Border Size": "" + }, "Override Corner Radius": { "Override Corner Radius": "جایگزینی شعاع گوشه‌ها" }, @@ -2684,6 +2744,9 @@ "Power source": { "Power source": "منبع پاور" }, + "Precip": { + "Precip": "" + }, "Precipitation Chance": { "Precipitation Chance": "احتمال بارش" }, @@ -2885,6 +2948,12 @@ "Rounded corners for windows": { "Rounded corners for windows": "گوشه‌های گرد برای پنجره‌ها" }, + "Rounded corners for windows (border_radius)": { + "Rounded corners for windows (border_radius)": "" + }, + "Rounded corners for windows (decoration.rounding)": { + "Rounded corners for windows (decoration.rounding)": "" + }, "Run DMS Templates": { "Run DMS Templates": "اجرای قالب‌های DMS" }, @@ -3113,6 +3182,12 @@ "Show Dock": { "Show Dock": "نمایش داک" }, + "Show Feels Like Temperature": { + "Show Feels Like Temperature": "" + }, + "Show Forecast": { + "Show Forecast": "" + }, "Show GPU Temperature": { "Show GPU Temperature": "نمایش دمای GPU" }, @@ -3125,9 +3200,18 @@ "Show Hour Numbers": { "Show Hour Numbers": "نمایش شماره‌های ساعت" }, + "Show Hourly Forecast": { + "Show Hourly Forecast": "" + }, + "Show Humidity": { + "Show Humidity": "" + }, "Show Line Numbers": { "Show Line Numbers": "نمایش شماره خطوط" }, + "Show Location": { + "Show Location": "" + }, "Show Lock": { "Show Lock": "نمایش قفل" }, @@ -3152,6 +3236,12 @@ "Show Power Off": { "Show Power Off": "نمایش خاموش‌کردن" }, + "Show Precipitation Probability": { + "Show Precipitation Probability": "" + }, + "Show Pressure": { + "Show Pressure": "" + }, "Show Reboot": { "Show Reboot": "نمایش راه‌اندازی مجدد" }, @@ -3161,12 +3251,24 @@ "Show Seconds": { "Show Seconds": "نمایش ثانیه‌ها" }, + "Show Sunrise/Sunset": { + "Show Sunrise/Sunset": "" + }, "Show Suspend": { "Show Suspend": "نمایش تعلیق" }, "Show Top Processes": { "Show Top Processes": "نمایش فرایند‌های مهم" }, + "Show Weather Condition": { + "Show Weather Condition": "" + }, + "Show Welcome": { + "Show Welcome": "" + }, + "Show Wind Speed": { + "Show Wind Speed": "" + }, "Show Workspace Apps": { "Show Workspace Apps": "نمایش برنامه‌های workspace" }, @@ -3296,6 +3398,12 @@ "Space between windows": { "Space between windows": "فاصله بین پنجره‌ها" }, + "Space between windows (gappih/gappiv/gappoh/gappov)": { + "Space between windows (gappih/gappiv/gappoh/gappov)": "" + }, + "Space between windows (gaps_in and gaps_out)": { + "Space between windows (gaps_in and gaps_out)": "" + }, "Spacer": { "Spacer": "فاصله دهنده" }, @@ -3317,6 +3425,9 @@ "Stacked": { "Stacked": "انباشته" }, + "Standard": { + "Standard": "" + }, "Start": { "Start": "شروع" }, @@ -3539,6 +3650,9 @@ "Toner Low": { "Toner Low": "تونر کم است" }, + "Tools": { + "Tools": "" + }, "Top": { "Top": "بالا" }, @@ -3650,6 +3764,12 @@ "Use animated wave progress bars for media playback": { "Use animated wave progress bars for media playback": "استفاده از نوارهای پیشرفت موجی متحرک برای پخش رسانه" }, + "Use custom border size": { + "Use custom border size": "" + }, + "Use custom border/focus-ring width": { + "Use custom border/focus-ring width": "" + }, "Use custom command for update your system": { "Use custom command for update your system": "استفاده از دستور سفارشی برای بروزرسانی سیستم شما" }, @@ -3659,6 +3779,9 @@ "Use custom window radius instead of theme radius": { "Use custom window radius instead of theme radius": "استفاده از شعاع پنجره سفارشی به جای شعاع تم" }, + "Use custom window rounding instead of theme radius": { + "Use custom window rounding instead of theme radius": "" + }, "Use fingerprint reader for lock screen authentication (requires enrolled fingerprints)": { "Use fingerprint reader for lock screen authentication (requires enrolled fingerprints)": "استفاده از اثر انگشت خوان برای احراز هویت صفحه قفل (نیاز به اثر انگشت ثبت شده دارد)" }, @@ -3674,6 +3797,9 @@ "Used": { "Used": "استفاده شده" }, + "Used when accent color is set to Custom": { + "Used when accent color is set to Custom": "" + }, "User": { "User": "کاربر" }, @@ -3749,6 +3875,9 @@ "Vibrant palette with playful saturation.": { "Vibrant palette with playful saturation.": "پالتر رنگی پر جنب و جوش با اشباع رنگی سرزنده." }, + "View Mode": { + "View Mode": "" + }, "Visibility": { "Visibility": "دید" }, @@ -3865,6 +3994,15 @@ "Widget removed": { "Widget removed": "ابزارک حذف شد" }, + "Width of window border (borderpx)": { + "Width of window border (borderpx)": "" + }, + "Width of window border (general.border_size)": { + "Width of window border (general.border_size)": "" + }, + "Width of window border and focus ring": { + "Width of window border and focus ring": "" + }, "Wind": { "Wind": "باد" }, @@ -3880,6 +4018,9 @@ "Window Gaps (px)": { "Window Gaps (px)": "فاصله پنجره‌ها (px)" }, + "Window Rounding": { + "Window Rounding": "" + }, "Workspace": { "Workspace": "Workspace" }, @@ -4000,6 +4141,145 @@ "generic theme description": { "Material Design inspired color themes": "رنگ‌های تم الهام گرفته شده از متریال دیزاین" }, + "greeter back button": { + "Back": "" + }, + "greeter completion page subtitle": { + "DankMaterialShell is ready to use": "" + }, + "greeter completion page title": { + "You're All Set!": "" + }, + "greeter configure keybinds link": { + "Configure Keybinds": "" + }, + "greeter dankbar description": { + "Widgets, layout, style": "" + }, + "greeter displays description": { + "Resolution, position, scale": "" + }, + "greeter dock description": { + "Position, pinned apps": "" + }, + "greeter doctor page button": { + "Run Again": "" + }, + "greeter doctor page empty state": { + "No checks passed": "", + "No errors": "", + "No info items": "", + "No warnings": "" + }, + "greeter doctor page error count": { + "%1 issue(s) found": "" + }, + "greeter doctor page loading text": { + "Analyzing configuration...": "" + }, + "greeter doctor page status card": { + "Errors": "", + "Info": "", + "OK": "", + "Warnings": "" + }, + "greeter doctor page success": { + "All checks passed": "" + }, + "greeter doctor page title": { + "System Check": "" + }, + "greeter documentation link": { + "Docs": "" + }, + "greeter explore section header": { + "Explore": "" + }, + "greeter feature card description": { + "Background app icons": "", + "Colors from wallpaper": "", + "Community themes": "", + "Extensible architecture": "", + "GTK, Qt, IDEs, more": "", + "Modular widget bar": "", + "Night mode & gamma": "", + "Per-screen config": "", + "Quick system toggles": "" + }, + "greeter feature card title": { + "App Theming": "", + "Control Center": "", + "Display Control": "", + "Dynamic Theming": "", + "Multi-Monitor": "", + "System Tray": "", + "Theme Registry": "" + }, + "greeter feature card title | greeter plugins link": { + "Plugins": "" + }, + "greeter feature card title | greeter settings link": { + "DankBar": "" + }, + "greeter finish button": { + "Finish": "" + }, + "greeter first page button": { + "Get Started": "" + }, + "greeter keybinds niri description": { + "niri shortcuts config": "" + }, + "greeter keybinds section header": { + "DMS Shortcuts": "" + }, + "greeter modal window title": { + "Welcome": "" + }, + "greeter next button": { + "Next": "" + }, + "greeter no keybinds message": { + "No DMS shortcuts configured": "" + }, + "greeter notifications description": { + "Popup behavior, position": "" + }, + "greeter settings link": { + "Displays": "", + "Dock": "", + "Keybinds": "", + "Notifications": "", + "Theme & Colors": "", + "Wallpaper": "" + }, + "greeter settings section header": { + "Configure": "" + }, + "greeter skip button": { + "Skip": "" + }, + "greeter skip button tooltip": { + "Skip setup": "" + }, + "greeter theme description": { + "Dynamic colors, presets": "" + }, + "greeter themes link": { + "Themes": "" + }, + "greeter wallpaper description": { + "Background image": "" + }, + "greeter welcome page section header": { + "Features": "" + }, + "greeter welcome page tagline": { + "A modern desktop shell for Wayland compositors": "" + }, + "greeter welcome page title": { + "Welcome to DankMaterialShell": "" + }, "install action button": { "Install": "نصب" }, @@ -4021,6 +4301,19 @@ "loading indicator": { "Loading...": "درحال بارگذاری..." }, + "lock screen notification mode option": { + "App Names": "", + "Count Only": "", + "Disabled": "", + "Full Content": "" + }, + "lock screen notification privacy setting": { + "Control what notification information is shown on the lock screen": "", + "Notification Display": "" + }, + "lock screen notifications settings card": { + "Lock Screen": "" + }, "loginctl not available - lock integration requires DMS socket connection": { "loginctl not available - lock integration requires DMS socket connection": "loginctl در دسترس نیست - یکپارچه‌سازی قفل به اتصال سوکت DMS نیاز دارد" }, diff --git a/quickshell/translations/poexports/he.json b/quickshell/translations/poexports/he.json index cbd0038d..f0645f51 100644 --- a/quickshell/translations/poexports/he.json +++ b/quickshell/translations/poexports/he.json @@ -23,6 +23,9 @@ "%1 job(s)": { "%1 job(s)": "%1 עבודות" }, + "%1 notifications": { + "%1 notifications": "" + }, "%1 printer(s)": { "%1 printer(s)": "%1 מדפסות" }, @@ -38,6 +41,9 @@ "(Unnamed)": { "(Unnamed)": "(ללא שם)" }, + "+ %1 more": { + "+ %1 more": "" + }, "0 = square corners": { "0 = square corners": "0 = פינות מרובעות" }, @@ -50,6 +56,9 @@ "1 minute": { "1 minute": "דקה אחת" }, + "1 notification": { + "1 notification": "" + }, "1 second": { "1 second": "שנייה אחת" }, @@ -128,6 +137,9 @@ "About": { "About": "אודות" }, + "Accent Color": { + "Accent Color": "" + }, "Accept Jobs": { "Accept Jobs": "קבל/י עבודות" }, @@ -413,6 +425,9 @@ "Available Screens (%1)": { "Available Screens (%1)": "" }, + "Available in Detailed and Forecast view modes": { + "Available in Detailed and Forecast view modes": "" + }, "BSSID": { "BSSID": "BSSID" }, @@ -500,6 +515,9 @@ "Border Opacity": { "Border Opacity": "שקיפות המסגרת" }, + "Border Size": { + "Border Size": "" + }, "Border Thickness": { "Border Thickness": "עובי המסגרת" }, @@ -626,6 +644,9 @@ "Choose colors from palette": { "Choose colors from palette": "" }, + "Choose how the weather widget is displayed": { + "Choose how the weather widget is displayed": "" + }, "Choose icon": { "Choose icon": "בחר/י סמל" }, @@ -755,6 +776,9 @@ "Communication": { "Communication": "תקשורת" }, + "Compact": { + "Compact": "" + }, "Compact Mode": { "Compact Mode": "מצב קומפקטי" }, @@ -911,6 +935,9 @@ "Custom": { "Custom": "מותאם אישית" }, + "Custom Color": { + "Custom Color": "" + }, "Custom Duration": { "Custom Duration": "משך מותאם אישית" }, @@ -1073,6 +1100,9 @@ "Desktop clock widget name": { "Desktop Clock": "" }, + "Detailed": { + "Detailed": "" + }, "Development": { "Development": "פיתוח" }, @@ -1160,6 +1190,9 @@ "Display currently focused application title": { "Display currently focused application title": "הצג/י את כותרת האפליקציה שנמצאת כרגע במוקד" }, + "Display hourly weather predictions": { + "Display hourly weather predictions": "" + }, "Display only workspaces that contain windows": { "Display only workspaces that contain windows": "הצג/י רק סביבות עבודה שמכילות חלונות" }, @@ -1535,6 +1568,9 @@ "Failed to write temp file for validation": { "Failed to write temp file for validation": "" }, + "Feels": { + "Feels": "" + }, "Feels Like": { "Feels Like": "מרגיש כמו" }, @@ -1616,6 +1652,12 @@ "Force terminal applications to always use dark color schemes": { "Force terminal applications to always use dark color schemes": "אלץ/י יישומי מסוף להשתמש תמיד בערכות צבעים כהות" }, + "Forecast": { + "Forecast": "" + }, + "Forecast Days": { + "Forecast Days": "" + }, "Forecast Not Available": { "Forecast Not Available": "תחזית לא זמינה" }, @@ -1769,12 +1811,18 @@ "Hourly Forecast": { "Hourly Forecast": "תחזית שעתית" }, + "Hourly Forecast Count": { + "Hourly Forecast Count": "" + }, "How often to change wallpaper": { "How often to change wallpaper": "כל כמה זמן להחליף רקע" }, "Humidity": { "Humidity": "לחות" }, + "Hyprland Layout Overrides": { + "Hyprland Layout Overrides": "" + }, "I Understand": { "I Understand": "הבנתי" }, @@ -2042,6 +2090,9 @@ "Management": { "Management": "" }, + "MangoWC Layout Overrides": { + "MangoWC Layout Overrides": "" + }, "Manual Coordinates": { "Manual Coordinates": "קואורדינטות ידניות" }, @@ -2306,6 +2357,9 @@ "No VPN profiles": { "No VPN profiles": "אין פרופילי VPN" }, + "No Weather Data": { + "No Weather Data": "" + }, "No Weather Data Available": { "No Weather Data Available": "אין נתוני מזג אוויר זמינים" }, @@ -2396,6 +2450,9 @@ "Not connected": { "Not connected": "לא מחובר" }, + "Not detected": { + "Not detected": "" + }, "Note: this only changes the percentage, it does not actually limit charging.": { "Note: this only changes the percentage, it does not actually limit charging.": "" }, @@ -2510,6 +2567,9 @@ "Override": { "Override": "דריסה" }, + "Override Border Size": { + "Override Border Size": "" + }, "Override Corner Radius": { "Override Corner Radius": "" }, @@ -2684,6 +2744,9 @@ "Power source": { "Power source": "מקור חשמל" }, + "Precip": { + "Precip": "" + }, "Precipitation Chance": { "Precipitation Chance": "סיכוי למשקעים" }, @@ -2885,6 +2948,12 @@ "Rounded corners for windows": { "Rounded corners for windows": "" }, + "Rounded corners for windows (border_radius)": { + "Rounded corners for windows (border_radius)": "" + }, + "Rounded corners for windows (decoration.rounding)": { + "Rounded corners for windows (decoration.rounding)": "" + }, "Run DMS Templates": { "Run DMS Templates": "" }, @@ -3113,6 +3182,12 @@ "Show Dock": { "Show Dock": "הצג/י Dock" }, + "Show Feels Like Temperature": { + "Show Feels Like Temperature": "" + }, + "Show Forecast": { + "Show Forecast": "" + }, "Show GPU Temperature": { "Show GPU Temperature": "" }, @@ -3125,9 +3200,18 @@ "Show Hour Numbers": { "Show Hour Numbers": "" }, + "Show Hourly Forecast": { + "Show Hourly Forecast": "" + }, + "Show Humidity": { + "Show Humidity": "" + }, "Show Line Numbers": { "Show Line Numbers": "הצג/י מספרי שורות" }, + "Show Location": { + "Show Location": "" + }, "Show Lock": { "Show Lock": "הצג/י נעילה" }, @@ -3152,6 +3236,12 @@ "Show Power Off": { "Show Power Off": "הצג/י כיבוי" }, + "Show Precipitation Probability": { + "Show Precipitation Probability": "" + }, + "Show Pressure": { + "Show Pressure": "" + }, "Show Reboot": { "Show Reboot": "הצג/י הפעלה מחדש" }, @@ -3161,12 +3251,24 @@ "Show Seconds": { "Show Seconds": "הצג/י שניות" }, + "Show Sunrise/Sunset": { + "Show Sunrise/Sunset": "" + }, "Show Suspend": { "Show Suspend": "הצג/י השהיה" }, "Show Top Processes": { "Show Top Processes": "" }, + "Show Weather Condition": { + "Show Weather Condition": "" + }, + "Show Welcome": { + "Show Welcome": "" + }, + "Show Wind Speed": { + "Show Wind Speed": "" + }, "Show Workspace Apps": { "Show Workspace Apps": "הצג/י אפליקציות בסביבת העבודה" }, @@ -3296,6 +3398,12 @@ "Space between windows": { "Space between windows": "" }, + "Space between windows (gappih/gappiv/gappoh/gappov)": { + "Space between windows (gappih/gappiv/gappoh/gappov)": "" + }, + "Space between windows (gaps_in and gaps_out)": { + "Space between windows (gaps_in and gaps_out)": "" + }, "Spacer": { "Spacer": "מרווח" }, @@ -3317,6 +3425,9 @@ "Stacked": { "Stacked": "" }, + "Standard": { + "Standard": "" + }, "Start": { "Start": "התחל/י" }, @@ -3539,6 +3650,9 @@ "Toner Low": { "Toner Low": "הטונר עומד להסתיים" }, + "Tools": { + "Tools": "" + }, "Top": { "Top": "למעלה" }, @@ -3650,6 +3764,12 @@ "Use animated wave progress bars for media playback": { "Use animated wave progress bars for media playback": "השתמש/י בסרגלי התקדמות מונפשים בצורת גלים לניגון מדיה" }, + "Use custom border size": { + "Use custom border size": "" + }, + "Use custom border/focus-ring width": { + "Use custom border/focus-ring width": "" + }, "Use custom command for update your system": { "Use custom command for update your system": "השתמש/י בפקודה מותאמת אישית לעדכון המערכת" }, @@ -3659,6 +3779,9 @@ "Use custom window radius instead of theme radius": { "Use custom window radius instead of theme radius": "" }, + "Use custom window rounding instead of theme radius": { + "Use custom window rounding instead of theme radius": "" + }, "Use fingerprint reader for lock screen authentication (requires enrolled fingerprints)": { "Use fingerprint reader for lock screen authentication (requires enrolled fingerprints)": "השתמש/י בקורא טביעות אצבע לאימות במסך הנעילה (דורש טביעות אצבע רשומות)" }, @@ -3674,6 +3797,9 @@ "Used": { "Used": "בשימוש" }, + "Used when accent color is set to Custom": { + "Used when accent color is set to Custom": "" + }, "User": { "User": "" }, @@ -3749,6 +3875,9 @@ "Vibrant palette with playful saturation.": { "Vibrant palette with playful saturation.": "פלטת צבעים עשירה עם רוויה משחקית." }, + "View Mode": { + "View Mode": "" + }, "Visibility": { "Visibility": "ראות" }, @@ -3865,6 +3994,15 @@ "Widget removed": { "Widget removed": "" }, + "Width of window border (borderpx)": { + "Width of window border (borderpx)": "" + }, + "Width of window border (general.border_size)": { + "Width of window border (general.border_size)": "" + }, + "Width of window border and focus ring": { + "Width of window border and focus ring": "" + }, "Wind": { "Wind": "רוח" }, @@ -3880,6 +4018,9 @@ "Window Gaps (px)": { "Window Gaps (px)": "" }, + "Window Rounding": { + "Window Rounding": "" + }, "Workspace": { "Workspace": "סביבת עבודה" }, @@ -4000,6 +4141,145 @@ "generic theme description": { "Material Design inspired color themes": "" }, + "greeter back button": { + "Back": "" + }, + "greeter completion page subtitle": { + "DankMaterialShell is ready to use": "" + }, + "greeter completion page title": { + "You're All Set!": "" + }, + "greeter configure keybinds link": { + "Configure Keybinds": "" + }, + "greeter dankbar description": { + "Widgets, layout, style": "" + }, + "greeter displays description": { + "Resolution, position, scale": "" + }, + "greeter dock description": { + "Position, pinned apps": "" + }, + "greeter doctor page button": { + "Run Again": "" + }, + "greeter doctor page empty state": { + "No checks passed": "", + "No errors": "", + "No info items": "", + "No warnings": "" + }, + "greeter doctor page error count": { + "%1 issue(s) found": "" + }, + "greeter doctor page loading text": { + "Analyzing configuration...": "" + }, + "greeter doctor page status card": { + "Errors": "", + "Info": "", + "OK": "", + "Warnings": "" + }, + "greeter doctor page success": { + "All checks passed": "" + }, + "greeter doctor page title": { + "System Check": "" + }, + "greeter documentation link": { + "Docs": "" + }, + "greeter explore section header": { + "Explore": "" + }, + "greeter feature card description": { + "Background app icons": "", + "Colors from wallpaper": "", + "Community themes": "", + "Extensible architecture": "", + "GTK, Qt, IDEs, more": "", + "Modular widget bar": "", + "Night mode & gamma": "", + "Per-screen config": "", + "Quick system toggles": "" + }, + "greeter feature card title": { + "App Theming": "", + "Control Center": "", + "Display Control": "", + "Dynamic Theming": "", + "Multi-Monitor": "", + "System Tray": "", + "Theme Registry": "" + }, + "greeter feature card title | greeter plugins link": { + "Plugins": "" + }, + "greeter feature card title | greeter settings link": { + "DankBar": "" + }, + "greeter finish button": { + "Finish": "" + }, + "greeter first page button": { + "Get Started": "" + }, + "greeter keybinds niri description": { + "niri shortcuts config": "" + }, + "greeter keybinds section header": { + "DMS Shortcuts": "" + }, + "greeter modal window title": { + "Welcome": "" + }, + "greeter next button": { + "Next": "" + }, + "greeter no keybinds message": { + "No DMS shortcuts configured": "" + }, + "greeter notifications description": { + "Popup behavior, position": "" + }, + "greeter settings link": { + "Displays": "", + "Dock": "", + "Keybinds": "", + "Notifications": "", + "Theme & Colors": "", + "Wallpaper": "" + }, + "greeter settings section header": { + "Configure": "" + }, + "greeter skip button": { + "Skip": "" + }, + "greeter skip button tooltip": { + "Skip setup": "" + }, + "greeter theme description": { + "Dynamic colors, presets": "" + }, + "greeter themes link": { + "Themes": "" + }, + "greeter wallpaper description": { + "Background image": "" + }, + "greeter welcome page section header": { + "Features": "" + }, + "greeter welcome page tagline": { + "A modern desktop shell for Wayland compositors": "" + }, + "greeter welcome page title": { + "Welcome to DankMaterialShell": "" + }, "install action button": { "Install": "" }, @@ -4021,6 +4301,19 @@ "loading indicator": { "Loading...": "" }, + "lock screen notification mode option": { + "App Names": "", + "Count Only": "", + "Disabled": "", + "Full Content": "" + }, + "lock screen notification privacy setting": { + "Control what notification information is shown on the lock screen": "", + "Notification Display": "" + }, + "lock screen notifications settings card": { + "Lock Screen": "" + }, "loginctl not available - lock integration requires DMS socket connection": { "loginctl not available - lock integration requires DMS socket connection": "loginctl אינו זמין, שילוב הנעילה דורש חיבור socket לDMS" }, diff --git a/quickshell/translations/poexports/hu.json b/quickshell/translations/poexports/hu.json index 78f2631d..4038de21 100644 --- a/quickshell/translations/poexports/hu.json +++ b/quickshell/translations/poexports/hu.json @@ -23,6 +23,9 @@ "%1 job(s)": { "%1 job(s)": "%1 feladat(ok)" }, + "%1 notifications": { + "%1 notifications": "" + }, "%1 printer(s)": { "%1 printer(s)": "%1 nyomtató(k)" }, @@ -33,11 +36,14 @@ "%1 widgets": "%1 widget" }, "%1m ago": { - "%1m ago": "" + "%1m ago": "%1 perccel ezelőtt" }, "(Unnamed)": { "(Unnamed)": "(Névtelen)" }, + "+ %1 more": { + "+ %1 more": "" + }, "0 = square corners": { "0 = square corners": "0 = szögletes sarkok" }, @@ -50,6 +56,9 @@ "1 minute": { "1 minute": "1 perc" }, + "1 notification": { + "1 notification": "" + }, "1 second": { "1 second": "1 másodperc" }, @@ -128,6 +137,9 @@ "About": { "About": "Névjegy" }, + "Accent Color": { + "Accent Color": "" + }, "Accept Jobs": { "Accept Jobs": "Feladatok elfogadása" }, @@ -231,7 +243,7 @@ "Always show a minimum of 3 workspaces, even if fewer are available": "Mindig mutasson legalább 3 munkaterületet, még ha nincs is annyi" }, "Always show the dock when niri's overview is open": { - "Always show the dock when niri's overview is open": "Dokk mutatása mindig, ha a niri-áttekintés nyitva van" + "Always show the dock when niri's overview is open": "Dokk megjelenítése mindig, ha a niri-áttekintés nyitva van" }, "Always show when there's only one connected display": { "Always show when there's only one connected display": "Megjelenítés mindig, amikor csak egy csatlakoztatott kijelző van" @@ -413,6 +425,9 @@ "Available Screens (%1)": { "Available Screens (%1)": "Elérhető kijelzők (%1)" }, + "Available in Detailed and Forecast view modes": { + "Available in Detailed and Forecast view modes": "" + }, "BSSID": { "BSSID": "BSSID" }, @@ -500,6 +515,9 @@ "Border Opacity": { "Border Opacity": "Szegély átlátszósága" }, + "Border Size": { + "Border Size": "" + }, "Border Thickness": { "Border Thickness": "Szegély vastagsága" }, @@ -626,6 +644,9 @@ "Choose colors from palette": { "Choose colors from palette": "Válassz színeket a palettáról" }, + "Choose how the weather widget is displayed": { + "Choose how the weather widget is displayed": "" + }, "Choose icon": { "Choose icon": "Ikon kiválasztása" }, @@ -755,6 +776,9 @@ "Communication": { "Communication": "Kommunikáció" }, + "Compact": { + "Compact": "" + }, "Compact Mode": { "Compact Mode": "Kompakt mód" }, @@ -911,6 +935,9 @@ "Custom": { "Custom": "Egyéni" }, + "Custom Color": { + "Custom Color": "" + }, "Custom Duration": { "Custom Duration": "Egyéni időtartam" }, @@ -1073,6 +1100,9 @@ "Desktop clock widget name": { "Desktop Clock": "Asztali óra" }, + "Detailed": { + "Detailed": "" + }, "Development": { "Development": "Fejlesztés" }, @@ -1160,6 +1190,9 @@ "Display currently focused application title": { "Display currently focused application title": "Jelenleg fókuszban lévő alkalmazás címének megjelenítése" }, + "Display hourly weather predictions": { + "Display hourly weather predictions": "" + }, "Display only workspaces that contain windows": { "Display only workspaces that contain windows": "Csak azokat a munkaterületeket jelenítse meg, amelyek ablakokat tartalmaznak" }, @@ -1266,7 +1299,7 @@ "Enable GPU Temperature": "GPU hőmérséklet engedélyezése" }, "Enable Overview Overlay": { - "Enable Overview Overlay": "Áttekintő fedvény engedélyezése" + "Enable Overview Overlay": "Áttekintő átfedés engedélyezése" }, "Enable System Monitor": { "Enable System Monitor": "Rendszerfigyelő engedélyezése" @@ -1535,6 +1568,9 @@ "Failed to write temp file for validation": { "Failed to write temp file for validation": "Nem sikerült írni az ideiglenes fájlt az ellenőrzéshez" }, + "Feels": { + "Feels": "" + }, "Feels Like": { "Feels Like": "Hőérzet" }, @@ -1616,6 +1652,12 @@ "Force terminal applications to always use dark color schemes": { "Force terminal applications to always use dark color schemes": "Terminálalkalmazások kényszerítése sötét színsémák használatára" }, + "Forecast": { + "Forecast": "" + }, + "Forecast Days": { + "Forecast Days": "" + }, "Forecast Not Available": { "Forecast Not Available": "Előrejelzés nem elérhető" }, @@ -1769,12 +1811,18 @@ "Hourly Forecast": { "Hourly Forecast": "Óránkénti előrejelzés" }, + "Hourly Forecast Count": { + "Hourly Forecast Count": "" + }, "How often to change wallpaper": { "How often to change wallpaper": "Milyen gyakran változzon a háttérkép" }, "Humidity": { "Humidity": "Páratartalom" }, + "Hyprland Layout Overrides": { + "Hyprland Layout Overrides": "" + }, "I Understand": { "I Understand": "Megértettem" }, @@ -2042,6 +2090,9 @@ "Management": { "Management": "Kezelés" }, + "MangoWC Layout Overrides": { + "MangoWC Layout Overrides": "" + }, "Manual Coordinates": { "Manual Coordinates": "Manuális koordináták" }, @@ -2306,6 +2357,9 @@ "No VPN profiles": { "No VPN profiles": "Nincs VPN-profil" }, + "No Weather Data": { + "No Weather Data": "" + }, "No Weather Data Available": { "No Weather Data Available": "Nincs elérhető időjárási adat" }, @@ -2396,6 +2450,9 @@ "Not connected": { "Not connected": "Nincs csatlakozva" }, + "Not detected": { + "Not detected": "" + }, "Note: this only changes the percentage, it does not actually limit charging.": { "Note: this only changes the percentage, it does not actually limit charging.": "Megjegyzés: ez csak a százalékot módosítja, ténylegesen nem korlátozza a töltést." }, @@ -2510,6 +2567,9 @@ "Override": { "Override": "Felülírás" }, + "Override Border Size": { + "Override Border Size": "" + }, "Override Corner Radius": { "Override Corner Radius": "Sarokkerekítés felülbírálása" }, @@ -2684,6 +2744,9 @@ "Power source": { "Power source": "Áramforrás" }, + "Precip": { + "Precip": "" + }, "Precipitation Chance": { "Precipitation Chance": "Csapadék esélye" }, @@ -2885,6 +2948,12 @@ "Rounded corners for windows": { "Rounded corners for windows": "Lekerekített sarkok az ablakoknál" }, + "Rounded corners for windows (border_radius)": { + "Rounded corners for windows (border_radius)": "" + }, + "Rounded corners for windows (decoration.rounding)": { + "Rounded corners for windows (decoration.rounding)": "" + }, "Run DMS Templates": { "Run DMS Templates": "DMS-sablonok futtatása" }, @@ -3096,38 +3165,53 @@ "Show All Tags": "Összes címke megjelenítése" }, "Show CPU": { - "Show CPU": "CPU mutatása" + "Show CPU": "CPU megjelenítése" }, "Show CPU Graph": { - "Show CPU Graph": "CPU grafikon mutatása" + "Show CPU Graph": "CPU grafikon megjelenítése" }, "Show CPU Temp": { - "Show CPU Temp": "CPU hőmérséklet mutatása" + "Show CPU Temp": "CPU hőmérséklet megjelenítése" }, "Show Date": { - "Show Date": "Dátum mutatása" + "Show Date": "Dátum megjelenítése" }, "Show Disk": { - "Show Disk": "Lemez mutatása" + "Show Disk": "Lemez megjelenítése" }, "Show Dock": { "Show Dock": "Dokk megjelenítése" }, + "Show Feels Like Temperature": { + "Show Feels Like Temperature": "" + }, + "Show Forecast": { + "Show Forecast": "" + }, "Show GPU Temperature": { - "Show GPU Temperature": "GPU hőmérséklet mutatása" + "Show GPU Temperature": "GPU hőmérséklet megjelenítése" }, "Show Header": { - "Show Header": "Fejléc mutatása" + "Show Header": "Fejléc megjelenítése" }, "Show Hibernate": { "Show Hibernate": "Hibernáció megjelenítése" }, "Show Hour Numbers": { - "Show Hour Numbers": "Óraszámok mutatása" + "Show Hour Numbers": "Óraszámok megjelenítése" + }, + "Show Hourly Forecast": { + "Show Hourly Forecast": "" + }, + "Show Humidity": { + "Show Humidity": "" }, "Show Line Numbers": { "Show Line Numbers": "Sorok számának megjelenítése" }, + "Show Location": { + "Show Location": "" + }, "Show Lock": { "Show Lock": "Zárolás megjelenítése" }, @@ -3135,16 +3219,16 @@ "Show Log Out": "Kijelentkezés megjelenítése" }, "Show Memory": { - "Show Memory": "Memória mutatása" + "Show Memory": "Memória megjelenítése" }, "Show Memory Graph": { - "Show Memory Graph": "Memória grafikon mutatása" + "Show Memory Graph": "Memória grafikon megjelenítése" }, "Show Network": { - "Show Network": "Hálózat mutatása" + "Show Network": "Hálózat megjelenítése" }, "Show Network Graph": { - "Show Network Graph": "Hálózati grafikon mutatása" + "Show Network Graph": "Hálózati grafikon megjelenítése" }, "Show Occupied Workspaces Only": { "Show Occupied Workspaces Only": "Csak az elfoglalt munkaterületek megjelenítése" @@ -3152,6 +3236,12 @@ "Show Power Off": { "Show Power Off": "Leállítás megjelenítése" }, + "Show Precipitation Probability": { + "Show Precipitation Probability": "" + }, + "Show Pressure": { + "Show Pressure": "" + }, "Show Reboot": { "Show Reboot": "Újraindítás megjelenítése" }, @@ -3161,11 +3251,23 @@ "Show Seconds": { "Show Seconds": "Másodpercek megjelenítése" }, + "Show Sunrise/Sunset": { + "Show Sunrise/Sunset": "" + }, "Show Suspend": { "Show Suspend": "Felfüggesztés megjelenítése" }, "Show Top Processes": { - "Show Top Processes": "Top folyamatok mutatása" + "Show Top Processes": "Top folyamatok megjelenítése" + }, + "Show Weather Condition": { + "Show Weather Condition": "" + }, + "Show Welcome": { + "Show Welcome": "" + }, + "Show Wind Speed": { + "Show Wind Speed": "" }, "Show Workspace Apps": { "Show Workspace Apps": "Munkaterület alkalmazások megjelenítése" @@ -3174,19 +3276,19 @@ "Show all 9 tags instead of only occupied tags (DWL only)": "Mind a 9 címke megjelenítése a csak foglalt címkék helyett (csak DWL)" }, "Show cava audio visualizer in media widget": { - "Show cava audio visualizer in media widget": "Cava hangvizualizáló mutatása a média widgetben" + "Show cava audio visualizer in media widget": "Cava hangvizualizáló megjelenítése a média widgeten" }, "Show darkened overlay behind modal dialogs": { - "Show darkened overlay behind modal dialogs": "Sötétített fedvény megjelenítése a modális párbeszédablakok mögött" + "Show darkened overlay behind modal dialogs": "Sötétített átfedés megjelenítése a modális párbeszédablakok mögött" }, "Show launcher overlay when typing in Niri overview. Disable to use another launcher.": { - "Show launcher overlay when typing in Niri overview. Disable to use another launcher.": "Indító felület megjelenítése, amikor gépelsz a Niri-áttekintésben. Kapcsold ki, ha másik indítót használsz." + "Show launcher overlay when typing in Niri overview. Disable to use another launcher.": "Indító átfedés megjelenítése, amikor gépelsz a Niri-áttekintésben. Kapcsold ki, ha másik indítót használsz." }, "Show on Last Display": { "Show on Last Display": "Megjelenítés az utolsó kijelzőn" }, "Show on Overlay": { - "Show on Overlay": "Mutatás az átfedésen" + "Show on Overlay": "Megjelenítés az átfedésen" }, "Show on Overview": { "Show on Overview": "Megjelenítés az áttekintésben" @@ -3198,28 +3300,28 @@ "Show on screens:": "Megjelenítés képernyőkön:" }, "Show on-screen display when brightness changes": { - "Show on-screen display when brightness changes": "Képernyőn megjelenő kijelző mutatása, amikor a fényerő változik" + "Show on-screen display when brightness changes": "Képernyőn megjelenő kijelző megjelenítése, amikor a fényerő változik" }, "Show on-screen display when caps lock state changes": { - "Show on-screen display when caps lock state changes": "Képernyőn megjelenő kijelző mutatása, amikor a caps lock állapota változik" + "Show on-screen display when caps lock state changes": "Képernyőn megjelenő kijelző megjelenítése, amikor a caps lock állapota változik" }, "Show on-screen display when cycling audio output devices": { - "Show on-screen display when cycling audio output devices": "Képernyőn megjelenő kijelző mutatása hangkimeneti eszközök váltásakor" + "Show on-screen display when cycling audio output devices": "Képernyőn megjelenő kijelző megjelenítése hangkimeneti eszközök váltásakor" }, "Show on-screen display when idle inhibitor state changes": { - "Show on-screen display when idle inhibitor state changes": "Képernyőn megjelenő kijelző mutatása, amikor az inaktivitás megakadályozó állapota változik" + "Show on-screen display when idle inhibitor state changes": "Képernyőn megjelenő kijelző megjelenítése, amikor az inaktivitás megakadályozó állapota változik" }, "Show on-screen display when media player volume changes": { - "Show on-screen display when media player volume changes": "Képernyőn megjelenő kijelző mutatása, amikor a médialejátszó hangereje változik" + "Show on-screen display when media player volume changes": "Képernyőn megjelenő kijelző megjelenítése, amikor a médialejátszó hangereje változik" }, "Show on-screen display when microphone is muted/unmuted": { - "Show on-screen display when microphone is muted/unmuted": "Képernyőn megjelenő kijelző mutatása, amikor a mikrofon némítva van/fel van oldva" + "Show on-screen display when microphone is muted/unmuted": "Képernyőn megjelenő kijelző megjelenítése, amikor a mikrofon némítva van/fel van oldva" }, "Show on-screen display when power profile changes": { - "Show on-screen display when power profile changes": "Képernyőn megjelenő kijelző mutatása, amikor az energia profil változik" + "Show on-screen display when power profile changes": "Képernyőn megjelenő kijelző megjelenítése, amikor az energia profil változik" }, "Show on-screen display when volume changes": { - "Show on-screen display when volume changes": "Képernyőn megjelenő kijelző mutatása, amikor a hangerő változik" + "Show on-screen display when volume changes": "Képernyőn megjelenő kijelző megjelenítése, amikor a hangerő változik" }, "Show only apps running in current workspace": { "Show only apps running in current workspace": "Csak az aktuális munkaterületen futó alkalmazások megjelenítése" @@ -3296,6 +3398,12 @@ "Space between windows": { "Space between windows": "Ablakok közötti hely" }, + "Space between windows (gappih/gappiv/gappoh/gappov)": { + "Space between windows (gappih/gappiv/gappoh/gappov)": "" + }, + "Space between windows (gaps_in and gaps_out)": { + "Space between windows (gaps_in and gaps_out)": "" + }, "Spacer": { "Spacer": "Térköz" }, @@ -3317,6 +3425,9 @@ "Stacked": { "Stacked": "Halmozott" }, + "Standard": { + "Standard": "" + }, "Start": { "Start": "Indítás" }, @@ -3539,6 +3650,9 @@ "Toner Low": { "Toner Low": "Toner alacsony" }, + "Tools": { + "Tools": "" + }, "Top": { "Top": "Felső" }, @@ -3650,6 +3764,12 @@ "Use animated wave progress bars for media playback": { "Use animated wave progress bars for media playback": "Animált, hullámzó folyamatjelzők használata a médialejátszáshoz" }, + "Use custom border size": { + "Use custom border size": "" + }, + "Use custom border/focus-ring width": { + "Use custom border/focus-ring width": "" + }, "Use custom command for update your system": { "Use custom command for update your system": "Egyéni parancs használata a rendszer frissítéséhez" }, @@ -3659,6 +3779,9 @@ "Use custom window radius instead of theme radius": { "Use custom window radius instead of theme radius": "Egyéni ablaksugár használata a téma sugara helyett" }, + "Use custom window rounding instead of theme radius": { + "Use custom window rounding instead of theme radius": "" + }, "Use fingerprint reader for lock screen authentication (requires enrolled fingerprints)": { "Use fingerprint reader for lock screen authentication (requires enrolled fingerprints)": "Ujjlenyomat-olvasó használata a zárolási képernyőn történő hitelesítéshez (regisztrált ujjlenyomatok szükségesek)" }, @@ -3674,6 +3797,9 @@ "Used": { "Used": "Használt" }, + "Used when accent color is set to Custom": { + "Used when accent color is set to Custom": "" + }, "User": { "User": "Felhasználó" }, @@ -3749,6 +3875,9 @@ "Vibrant palette with playful saturation.": { "Vibrant palette with playful saturation.": "Élénk paletta játékos telítettséggel." }, + "View Mode": { + "View Mode": "" + }, "Visibility": { "Visibility": "Láthatóság" }, @@ -3865,6 +3994,15 @@ "Widget removed": { "Widget removed": "Widget eltávolítva" }, + "Width of window border (borderpx)": { + "Width of window border (borderpx)": "" + }, + "Width of window border (general.border_size)": { + "Width of window border (general.border_size)": "" + }, + "Width of window border and focus ring": { + "Width of window border and focus ring": "" + }, "Wind": { "Wind": "Szél" }, @@ -3880,6 +4018,9 @@ "Window Gaps (px)": { "Window Gaps (px)": "Ablakközök (px)" }, + "Window Rounding": { + "Window Rounding": "" + }, "Workspace": { "Workspace": "Munkaterület" }, @@ -4000,6 +4141,145 @@ "generic theme description": { "Material Design inspired color themes": "Material Design ihlette színtémák" }, + "greeter back button": { + "Back": "" + }, + "greeter completion page subtitle": { + "DankMaterialShell is ready to use": "" + }, + "greeter completion page title": { + "You're All Set!": "" + }, + "greeter configure keybinds link": { + "Configure Keybinds": "" + }, + "greeter dankbar description": { + "Widgets, layout, style": "" + }, + "greeter displays description": { + "Resolution, position, scale": "" + }, + "greeter dock description": { + "Position, pinned apps": "" + }, + "greeter doctor page button": { + "Run Again": "" + }, + "greeter doctor page empty state": { + "No checks passed": "", + "No errors": "", + "No info items": "", + "No warnings": "" + }, + "greeter doctor page error count": { + "%1 issue(s) found": "" + }, + "greeter doctor page loading text": { + "Analyzing configuration...": "" + }, + "greeter doctor page status card": { + "Errors": "", + "Info": "", + "OK": "", + "Warnings": "" + }, + "greeter doctor page success": { + "All checks passed": "" + }, + "greeter doctor page title": { + "System Check": "" + }, + "greeter documentation link": { + "Docs": "" + }, + "greeter explore section header": { + "Explore": "" + }, + "greeter feature card description": { + "Background app icons": "", + "Colors from wallpaper": "", + "Community themes": "", + "Extensible architecture": "", + "GTK, Qt, IDEs, more": "", + "Modular widget bar": "", + "Night mode & gamma": "", + "Per-screen config": "", + "Quick system toggles": "" + }, + "greeter feature card title": { + "App Theming": "", + "Control Center": "", + "Display Control": "", + "Dynamic Theming": "", + "Multi-Monitor": "", + "System Tray": "", + "Theme Registry": "" + }, + "greeter feature card title | greeter plugins link": { + "Plugins": "" + }, + "greeter feature card title | greeter settings link": { + "DankBar": "" + }, + "greeter finish button": { + "Finish": "" + }, + "greeter first page button": { + "Get Started": "" + }, + "greeter keybinds niri description": { + "niri shortcuts config": "" + }, + "greeter keybinds section header": { + "DMS Shortcuts": "" + }, + "greeter modal window title": { + "Welcome": "" + }, + "greeter next button": { + "Next": "" + }, + "greeter no keybinds message": { + "No DMS shortcuts configured": "" + }, + "greeter notifications description": { + "Popup behavior, position": "" + }, + "greeter settings link": { + "Displays": "", + "Dock": "", + "Keybinds": "", + "Notifications": "", + "Theme & Colors": "", + "Wallpaper": "" + }, + "greeter settings section header": { + "Configure": "" + }, + "greeter skip button": { + "Skip": "" + }, + "greeter skip button tooltip": { + "Skip setup": "" + }, + "greeter theme description": { + "Dynamic colors, presets": "" + }, + "greeter themes link": { + "Themes": "" + }, + "greeter wallpaper description": { + "Background image": "" + }, + "greeter welcome page section header": { + "Features": "" + }, + "greeter welcome page tagline": { + "A modern desktop shell for Wayland compositors": "" + }, + "greeter welcome page title": { + "Welcome to DankMaterialShell": "" + }, "install action button": { "Install": "Telepítés" }, @@ -4021,6 +4301,19 @@ "loading indicator": { "Loading...": "Betöltés…" }, + "lock screen notification mode option": { + "App Names": "", + "Count Only": "", + "Disabled": "", + "Full Content": "" + }, + "lock screen notification privacy setting": { + "Control what notification information is shown on the lock screen": "", + "Notification Display": "" + }, + "lock screen notifications settings card": { + "Lock Screen": "" + }, "loginctl not available - lock integration requires DMS socket connection": { "loginctl not available - lock integration requires DMS socket connection": "loginctl nem elérhető – a zár integrációhoz DMS socket kapcsolat szükséges" }, @@ -4050,28 +4343,28 @@ }, "notification center tab": { "Current": "", - "History": "" + "History": "Előzmények" }, "notification history filter": { - "All": "", + "All": "Összes", "Last hour": "", - "Today": "", - "Yesterday": "" + "Today": "Ma", + "Yesterday": "Tegnap" }, "notification history filter for content older than other filters": { "Older": "" }, "notification history filter | notification history retention option": { - "30 days": "", - "7 days": "" + "30 days": "30 nap", + "7 days": "7 nap" }, "notification history limit": { "Maximum number of notifications to keep": "" }, "notification history retention option": { - "1 day": "", - "14 days": "", - "3 days": "", + "1 day": "1 nap", + "14 days": "14 nap", + "3 days": "3 nap", "Forever": "" }, "notification history retention settings label": { @@ -4090,7 +4383,7 @@ "Enable History": "" }, "now": { - "now": "" + "now": "most" }, "official": { "official": "hivatalos" @@ -4189,7 +4482,7 @@ "wtype not available - install wtype for paste support": "A wtype nem elérhető - telepítsd a wtype csomagot a beillesztés támogatásához" }, "yesterday": { - "yesterday": "" + "yesterday": "tegnap" }, "• Install only from trusted sources": { "• Install only from trusted sources": "Csak hivatalos forrásokból telepítsen" diff --git a/quickshell/translations/poexports/it.json b/quickshell/translations/poexports/it.json index 9dc20f19..55e62d3f 100644 --- a/quickshell/translations/poexports/it.json +++ b/quickshell/translations/poexports/it.json @@ -1,6 +1,6 @@ { "%1 DMS bind(s) may be overridden by config binds that come after the include.": { - "%1 DMS bind(s) may be overridden by config binds that come after the include.": "%1 associazione di tasti di DMS potrebbe/essere sovrascritta/e da associazioni di config successive all'inclusione." + "%1 DMS bind(s) may be overridden by config binds that come after the include.": "%1 associazione/i tasti di DMS potrebbe/ero essere sovrascritta/e da associazioni di config successive all'inclusione." }, "%1 adapter(s), none connected": { "%1 adapter(s), none connected": "%1 adattatore/i, nessuno connesso" @@ -15,7 +15,7 @@ "%1 connected": "%1 connesso" }, "%1 days ago": { - "%1 days ago": "" + "%1 days ago": "%1 giorni fa" }, "%1 display(s)": { "%1 display(s)": "%1 schermo(i)" @@ -23,6 +23,9 @@ "%1 job(s)": { "%1 job(s)": "%1 stampa/e" }, + "%1 notifications": { + "%1 notifications": "" + }, "%1 printer(s)": { "%1 printer(s)": "%1 stampante/i" }, @@ -33,10 +36,13 @@ "%1 widgets": "%1 widget" }, "%1m ago": { - "%1m ago": "" + "%1m ago": "%1 min fa" }, "(Unnamed)": { - "(Unnamed)": "(Senza nome)" + "(Unnamed)": "(Senza Nome)" + }, + "+ %1 more": { + "+ %1 more": "" }, "0 = square corners": { "0 = square corners": "0 = angoli squadrati" @@ -50,6 +56,9 @@ "1 minute": { "1 minute": "1 minuto" }, + "1 notification": { + "1 notification": "" + }, "1 second": { "1 second": "1 secondo" }, @@ -75,10 +84,10 @@ "2 minutes": "2 minuti" }, "24-Hour Format": { - "24-Hour Format": "Formato 24-Ore" + "24-Hour Format": "Formato 24 Ore" }, "24-hour format": { - "24-hour format": "formato 24-ore" + "24-hour format": "formato 24 ore" }, "270°": { "270°": "270°" @@ -117,7 +126,7 @@ "90°": "90°" }, "A file with this name already exists. Do you want to overwrite it?": { - "A file with this name already exists. Do you want to overwrite it?": "Un file con questo nome esiste già. Vuoi sovrascriverlo?" + "A file with this name already exists. Do you want to overwrite it?": "Esiste già un file con questo nome. Vuoi sovrascriverlo?" }, "API": { "API": "API" @@ -128,17 +137,20 @@ "About": { "About": "Info" }, + "Accent Color": { + "Accent Color": "" + }, "Accept Jobs": { "Accept Jobs": "Accetta Stampe" }, "Accepting": { - "Accepting": "Accettando" + "Accepting": "Accettazione" }, "Access clipboard history": { "Access clipboard history": "Accesso alla cronologia degli appunti" }, "Access to notifications and do not disturb": { - "Access to notifications and do not disturb": "Accesso alle notifiche e a non disturbare" + "Access to notifications and do not disturb": "Accesso a notifiche e non disturbare" }, "Access to system controls and settings": { "Access to system controls and settings": "Accesso ai controlli e alle impostazioni del sistema" @@ -276,7 +288,7 @@ "Apps Icon": "Icona App" }, "Apps are ordered by usage frequency, then last used, then alphabetically.": { - "Apps are ordered by usage frequency, then last used, then alphabetically.": "Le applicazioni sono ordinate per frequenza d'uso, poi per utilizzo recente e infine alfabeticamente." + "Apps are ordered by usage frequency, then last used, then alphabetically.": "Le applicazioni sono ordinate per frequenza d'uso, poi per ultimo utilizzo, e infine in ordine alfabetico." }, "Arrange displays and configure resolution, refresh rate, and VRR": { "Arrange displays and configure resolution, refresh rate, and VRR": "Disporre gli schermi e configurare risoluzione, frequenza di aggiornamento e VRR" @@ -327,7 +339,7 @@ "Authentication Required": "Autenticazione Richiesta" }, "Authentication failed, please try again": { - "Authentication failed, please try again": "Autenticazione fallita, per favore prova ancora" + "Authentication failed, please try again": "Autenticazione fallita, riprova" }, "Authorize": { "Authorize": "Autorizza" @@ -413,6 +425,9 @@ "Available Screens (%1)": { "Available Screens (%1)": "Schermi disponibili (%1)" }, + "Available in Detailed and Forecast view modes": { + "Available in Detailed and Forecast view modes": "" + }, "BSSID": { "BSSID": "BSSID" }, @@ -456,10 +471,10 @@ "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": "Associa il blocco schermo ai segnali dbus di loginctl. Disattiva se usi un blocco schermo esterno" }, "Binds Include Missing": { - "Binds Include Missing": "Le scorciatoie includono elementi mancanti" + "Binds Include Missing": "Inclusione Scorciatoie Mancante" }, "Binds include added": { - "Binds include added": "Le scorciatoie includono elementi aggiunti" + "Binds include added": "Inclusione scorciatoie aggiunta" }, "Bit Depth": { "Bit Depth": "Profondità di Bit" @@ -500,6 +515,9 @@ "Border Opacity": { "Border Opacity": "Opacità Bordi" }, + "Border Size": { + "Border Size": "" + }, "Border Thickness": { "Border Thickness": "Spessore Bordi" }, @@ -626,6 +644,9 @@ "Choose colors from palette": { "Choose colors from palette": "Scegli i colori dalla tavolozza" }, + "Choose how the weather widget is displayed": { + "Choose how the weather widget is displayed": "" + }, "Choose icon": { "Choose icon": "Scegli icona" }, @@ -654,13 +675,13 @@ "Cipher": "Cifratura" }, "Clear": { - "Clear": "Pulisci" + "Clear": "Cancella" }, "Clear All": { - "Clear All": "Pulisci Tutto" + "Clear All": "Cancella Tutto" }, "Clear All History?": { - "Clear All History?": "Pulire tutta la cronologia?" + "Clear All History?": "Cancellare Tutta la Cronologia?" }, "Clear All Jobs": { "Clear All Jobs": "Elimina Tutte le Stampe" @@ -711,7 +732,7 @@ "Close": "Chiudi" }, "Close Overview on Launch": { - "Close Overview on Launch": "Chiudi Overview all'Avvio" + "Close Overview on Launch": "Chiudi Panoramica all'Avvio" }, "Color": { "Color": "Colore" @@ -755,6 +776,9 @@ "Communication": { "Communication": "Comunicazione" }, + "Compact": { + "Compact": "" + }, "Compact Mode": { "Compact Mode": "Modalità Compatta" }, @@ -771,7 +795,7 @@ "Config Format": "Formato di Configurazione" }, "Config action: %1": { - "Config action: %1": "Azione di config: %1" + "Config action: %1": "Azione di configurazione: %1" }, "Config validation failed": { "Config validation failed": "Validazione della configurazione non riuscita" @@ -792,7 +816,7 @@ "Configure icons for named workspaces. Icons take priority over numbers when both are enabled.": "Configura le icone per gli spazi di lavoro con nome. Le icone hanno la priorità sui numeri quando sono entrambi abilitati." }, "Configure which displays show shell components": { - "Configure which displays show shell components": "Configura quale schermo mostra i componenti della shell" + "Configure which displays show shell components": "Configura quali schermi mostrano i componenti della shell" }, "Confirm": { "Confirm": "Conferma" @@ -804,7 +828,7 @@ "Confirm Display Changes": "Conferma Modifiche Schermo" }, "Confirm passkey for ": { - "Confirm passkey for ": "Conferma passkey per" + "Confirm passkey for ": "Conferma passkey per " }, "Conflicts with: %1": { "Conflicts with: %1": "In conflitto con: %1" @@ -911,6 +935,9 @@ "Custom": { "Custom": "Personalizzato" }, + "Custom Color": { + "Custom Color": "" + }, "Custom Duration": { "Custom Duration": "Durata Personalizzata" }, @@ -924,7 +951,7 @@ "Custom Lock Command": "Comando Personalizzato per Blocco" }, "Custom Logout Command": { - "Custom Logout Command": "Comando Personalizzato per il Logout" + "Custom Logout Command": "Comando Personalizzato per il Termina Sessione" }, "Custom Power Actions": { "Custom Power Actions": "Azioni Alimentazione Personalizzate" @@ -951,7 +978,7 @@ "Customizable empty space": "Spazio vuoto personalizzabile" }, "Customize which actions appear in the power menu": { - "Customize which actions appear in the power menu": "Personalizza quale azione visualizzare nel menù alimentazione" + "Customize which actions appear in the power menu": "Personalizza quali azioni visualizzare nel menù alimentazione" }, "DDC/CI monitor": { "DDC/CI monitor": "Monitor DDC/CI" @@ -981,7 +1008,7 @@ "Daily Forecast": "Previsioni del Giorno" }, "Daily at:": { - "Daily at:": "Giornalmente alle:" + "Daily at:": "Ogni Giorno alle:" }, "Dank": { "Dank": "Dank" @@ -1020,7 +1047,7 @@ "Daytime": "Ora del Giorno" }, "Deck": { - "Deck": "Deck" + "Deck": "Pila" }, "Default": { "Default": "Predefinito" @@ -1073,6 +1100,9 @@ "Desktop clock widget name": { "Desktop Clock": "Orologio Desktop" }, + "Detailed": { + "Detailed": "" + }, "Development": { "Development": "Sviluppo" }, @@ -1083,7 +1113,7 @@ "Device connections": "Connessioni del Dispositivo" }, "Device paired": { - "Device paired": "Dispositivo accoppiato" + "Device paired": "Dispositivo associato" }, "Digital": { "Digital": "Digitale" @@ -1158,7 +1188,10 @@ "Display configuration is not available. WLR output management protocol not supported.": "La configurazione dello schermo non è disponibile. Il protocollo WLR Output Management non è supportato." }, "Display currently focused application title": { - "Display currently focused application title": "Mostra il titolo delle applicazioni attualmente attive" + "Display currently focused application title": "Mostra il titolo dell'applicazione attualmente attiva" + }, + "Display hourly weather predictions": { + "Display hourly weather predictions": "" }, "Display only workspaces that contain windows": { "Display only workspaces that contain windows": "Mostra solo gli spazi di lavoro che contengono finestre" @@ -1287,7 +1320,7 @@ "Enable fingerprint authentication": "Abilita autenticazione biometrica" }, "Enable loginctl lock integration": { - "Enable loginctl lock integration": "Abilita l'integrazione lock loginctl" + "Enable loginctl lock integration": "Abilita l'integrazione di blocco loginctl" }, "Enable password field display on the lock screen window": { "Show Password Field": "Mostra Campo Password" @@ -1332,10 +1365,10 @@ "Enter credentials for ": "Inserisci credenziali per " }, "Enter custom lock screen format (e.g., dddd, MMMM d)": { - "Enter custom lock screen format (e.g., dddd, MMMM d)": "Inserisci il formato blocca schermo personalizzato (es. dddd, MMMM d)" + "Enter custom lock screen format (e.g., dddd, MMMM d)": "Inserisci il formato schermata di blocco personalizzato (es. dddd, MMMM d)" }, "Enter custom top bar format (e.g., ddd MMM d)": { - "Enter custom top bar format (e.g., ddd MMM d)": "Inserisci formato personalizzato barra superiore (es., ddd MMM d)" + "Enter custom top bar format (e.g., ddd MMM d)": "Inserisci formato personalizzato barra superiore (es. ddd MMM d)" }, "Enter filename...": { "Enter filename...": "Inserisci nome file..." @@ -1344,7 +1377,7 @@ "Enter launch prefix (e.g., 'uwsm-app')": "Inserisci il prefisso di avvio (es. 'uwsm-app')" }, "Enter passkey for ": { - "Enter passkey for ": "Inserisci passkey per" + "Enter passkey for ": "Inserisci passkey per " }, "Enter password for ": { "Enter password for ": "Inserisci password per " @@ -1374,13 +1407,13 @@ "F1/I: Toggle • F10: Help": "F1/I: Cambia • F10: Aiuto" }, "Fade grace period": { - "Fade grace period": "Periodo di tolleranza della dissolvenza" + "Fade grace period": "Periodo di Attesa Dissolvenza" }, "Fade to lock screen": { "Fade to lock screen": "Dissolvenza verso la schermata di blocco" }, "Fade to monitor off": { - "Fade to monitor off": "" + "Fade to monitor off": "Dissolvenza fino allo spegnimento del monitor" }, "Failed to activate configuration": { "Failed to activate configuration": "Impossibile attivare configurazione" @@ -1535,8 +1568,11 @@ "Failed to write temp file for validation": { "Failed to write temp file for validation": "Impossibile scrivere il file temporaneo per la validazione" }, + "Feels": { + "Feels": "" + }, "Feels Like": { - "Feels Like": "Percepita" + "Feels Like": "Temp. percepita" }, "File": { "File": "File" @@ -1572,16 +1608,16 @@ "Fixing...": "Correzione in Corso..." }, "Flipped": { - "Flipped": "Ribaltato" + "Flipped": "Ruotato" }, "Flipped 180°": { - "Flipped 180°": "Ribaltato di 180°" + "Flipped 180°": "Ruotato di 180°" }, "Flipped 270°": { - "Flipped 270°": "Ribaltato di 270°" + "Flipped 270°": "Ruotato di 270°" }, "Flipped 90°": { - "Flipped 90°": "Ribaltato di 90°" + "Flipped 90°": "Ruotato di 90°" }, "Focus at Startup": { "Focus at Startup": "Attiva all'Avvio" @@ -1608,7 +1644,7 @@ "Force HDR": "Forza HDR" }, "Force Kill Process": { - "Force Kill Process": "Forza Chiusura Processo" + "Force Kill Process": "Forza Arresto Processo" }, "Force Wide Color": { "Force Wide Color": "Forza Colore Esteso" @@ -1616,6 +1652,12 @@ "Force terminal applications to always use dark color schemes": { "Force terminal applications to always use dark color schemes": "Forza applicazioni da terminale ad usare schemi di colori scuri" }, + "Forecast": { + "Forecast": "" + }, + "Forecast Days": { + "Forecast Days": "" + }, "Forecast Not Available": { "Forecast Not Available": "Previsioni Non Disponibili" }, @@ -1674,7 +1716,7 @@ "Gradually fade the screen before locking with a configurable grace period": "Dissolvi gradualmente lo schermo prima del blocco, con un periodo di tolleranza configurabile" }, "Gradually fade the screen before turning off monitors with a configurable grace period": { - "Gradually fade the screen before turning off monitors with a configurable grace period": "" + "Gradually fade the screen before turning off monitors with a configurable grace period": "Dissolvi gradualmente lo schermo prima di spegnere i monitor, con un periodo di tolleranza configurabile" }, "Graph Time Range": { "Graph Time Range": "Intervallo Temporale del Grafico" @@ -1689,7 +1731,7 @@ "Grid Columns": "Colonne Griglia" }, "Group Workspace Apps": { - "Group Workspace Apps": "" + "Group Workspace Apps": "Raggruppa App per Spazio di Lavoro" }, "Group by App": { "Group by App": "Raggruppa per App" @@ -1698,7 +1740,7 @@ "Group multiple windows of the same app together with a window count indicator": "Raggruppa molteplici finestre della stessa app con un indicatore del numero di finestre" }, "Group repeated application icons in unfocused workspaces": { - "Group repeated application icons in unfocused workspaces": "" + "Group repeated application icons in unfocused workspaces": "Raggruppa le icone delle applicazioni duplicate negli spazi di lavoro non attivi" }, "HDR (EDID)": { "HDR (EDID)": "HDR (EDID)" @@ -1769,12 +1811,18 @@ "Hourly Forecast": { "Hourly Forecast": "Previsioni Orarie" }, + "Hourly Forecast Count": { + "Hourly Forecast Count": "" + }, "How often to change wallpaper": { "How often to change wallpaper": "Quanto spesso cambiare lo sfondo" }, "Humidity": { "Humidity": "Umidità" }, + "Hyprland Layout Overrides": { + "Hyprland Layout Overrides": "" + }, "I Understand": { "I Understand": "Ho capito" }, @@ -1800,7 +1848,7 @@ "Idle Settings": "Impostazioni Riposo" }, "Idle monitoring not supported - requires newer Quickshell version": { - "Idle monitoring not supported - requires newer Quickshell version": "Monitoraggio riposo non supportato - richiede una versione più recente Quickshell" + "Idle monitoring not supported - requires newer Quickshell version": "Monitoraggio riposo non supportato - richiede una versione più recente di Quickshell" }, "If the field is hidden, it will appear as soon as a key is pressed.": { "If the field is hidden, it will appear as soon as a key is pressed.": "Se il campo è nascosto, apparirà non appena viene premuto un tasto." @@ -1899,7 +1947,7 @@ "Keys": "Tasti" }, "Kill Process": { - "Kill Process": "Chiusura Processo" + "Kill Process": "Termina Processo" }, "Ko-fi": { "Ko-fi": "Ko-fi" @@ -1998,7 +2046,7 @@ "Lock Screen Display": "Schermata di Blocco" }, "Lock Screen Format": { - "Lock Screen Format": "Formato Blocca Schermo" + "Lock Screen Format": "Formato Schermata di Blocco" }, "Lock Screen behaviour": { "Lock Screen behaviour": "Comportamento Schermata di Blocco" @@ -2010,7 +2058,7 @@ "Lock before suspend": "Blocca prima di sospendere" }, "Lock fade grace period": { - "Lock fade grace period": "" + "Lock fade grace period": "Periodo di attesa per la dissolvenza al blocco" }, "Log Out": { "Log Out": "Termina Sessione" @@ -2042,6 +2090,9 @@ "Management": { "Management": "Gestione" }, + "MangoWC Layout Overrides": { + "MangoWC Layout Overrides": "" + }, "Manual Coordinates": { "Manual Coordinates": "Coordinate Manuali" }, @@ -2055,16 +2106,16 @@ "Margin": "Margini" }, "Marker Supply Empty": { - "Marker Supply Empty": "Scorta Marker Vuota" + "Marker Supply Empty": "Toner Esaurito" }, "Marker Supply Low": { - "Marker Supply Low": "Scorta Marker Bassa" + "Marker Supply Low": "Toner in Esaurimento" }, "Marker Waste Almost Full": { - "Marker Waste Almost Full": "Scarto Marcatori Quasi Pieno" + "Marker Waste Almost Full": "Vaschetta Recupero Toner Quasi Piena" }, "Marker Waste Full": { - "Marker Waste Full": "Scarto Marcatori Pieno" + "Marker Waste Full": "Vaschetta Recupero Toner Piena" }, "Material Colors": { "Material Colors": "Colori Material" @@ -2082,7 +2133,7 @@ "Max apps to show": "Numero massimo di app da visualizzare" }, "Maximize Detection": { - "Maximize Detection": "Rilevamento Massimizzazione" + "Maximize Detection": "Rilevamento Finestra Massimizzata" }, "Maximum Entry Size": { "Maximum Entry Size": "Dimensione Massima della Voce" @@ -2103,16 +2154,16 @@ "Media Controls": "Controlli Media" }, "Media Empty": { - "Media Empty": "Media Vuoto" + "Media Empty": "Carta Esaurita" }, "Media Jam": { - "Media Jam": "Media Inceppato" + "Media Jam": "Inceppamento Carta" }, "Media Low": { - "Media Low": "Media Basso" + "Media Low": "Carta in Esaurimento" }, "Media Needed": { - "Media Needed": "Supporto Richiesto" + "Media Needed": "Carta Richiesta" }, "Media Player": { "Media Player": "Lettore Multimediale" @@ -2187,13 +2238,13 @@ "Monitor Configuration": "Configurazione Monitor" }, "Monitor fade grace period": { - "Monitor fade grace period": "" + "Monitor fade grace period": "Periodo di attesa per la dissolvenza del monitor" }, "Monitor whose wallpaper drives dynamic theming colors": { "Monitor whose wallpaper drives dynamic theming colors": "Monitor il cui sfondo determina i colori del tema dinamico" }, "Monocle": { - "Monocle": "Monocle" + "Monocle": "A Schermo Intero" }, "Monospace Font": { "Monospace Font": "Font a Larghezza Fissa" @@ -2306,6 +2357,9 @@ "No VPN profiles": { "No VPN profiles": "Nessun profilo VPN" }, + "No Weather Data": { + "No Weather Data": "" + }, "No Weather Data Available": { "No Weather Data Available": "Nessun Dato Meteo Disponibile" }, @@ -2396,6 +2450,9 @@ "Not connected": { "Not connected": "Non connesso" }, + "Not detected": { + "Not detected": "" + }, "Note: this only changes the percentage, it does not actually limit charging.": { "Note: this only changes the percentage, it does not actually limit charging.": "Nota: questa opzione modifica solo la percentuale visualizzata, non limita fisicamente la carica." }, @@ -2427,7 +2484,7 @@ "Notification Timeouts": "Timeout Notifiche" }, "Notification toast popups": { - "Notification toast popups": "Popups notifiche toast" + "Notification toast popups": "Popup notifiche a comparsa" }, "Notifications": { "Notifications": "Notifiche" @@ -2463,7 +2520,7 @@ "Only show windows from the current monitor on each dock": "Mostra solo le finestre del monitor corrente su ogni dock" }, "Only visible if hibernate is supported by your system": { - "Only visible if hibernate is supported by your system": "Visibile solo se ibernazione è supportata dal tuo sistema" + "Only visible if hibernate is supported by your system": "Visibile solo se l'ibernazione è supportata dal tuo sistema" }, "Opacity": { "Opacity": "Opacità" @@ -2502,7 +2559,7 @@ "Output Tray Missing": "Vassoio Uscita Mancante" }, "Outputs Include Missing": { - "Outputs Include Missing": "Gli Output Includono Quelli Mancanti" + "Outputs Include Missing": "Inclusione Output Mancante" }, "Overridden by config": { "Overridden by config": "Sovrascritto dalla configurazione" @@ -2510,6 +2567,9 @@ "Override": { "Override": "Sovrascrivi" }, + "Override Border Size": { + "Override Border Size": "" + }, "Override Corner Radius": { "Override Corner Radius": "Sovrascrivi Raggio Angoli" }, @@ -2538,10 +2598,10 @@ "Padding": "Padding" }, "Pair": { - "Pair": "Accoppia" + "Pair": "Associa" }, "Pair Bluetooth Device": { - "Pair Bluetooth Device": "Accoppia Dispositivo Bluetooth" + "Pair Bluetooth Device": "Associa Dispositivo Bluetooth" }, "Paired": { "Paired": "Associato" @@ -2595,7 +2655,7 @@ "Pinned": "Fissato" }, "Place plugin directories here. Each plugin should have a plugin.json manifest file.": { - "Place plugin directories here. Each plugin should have a plugin.json manifest file.": "Posiziona la cartella plugin qui. Ogni plugin deve avere un file manifesto plugin.json." + "Place plugin directories here. Each plugin should have a plugin.json manifest file.": "Posiziona la cartella dei plugin qui. Ogni plugin deve avere un file manifesto plugin.json." }, "Place plugins in %1": { "Place plugins in %1": "Inserisci i plugin in %1" @@ -2604,7 +2664,7 @@ "Play sound when new notification arrives": "Riproduci suono quando arriva una nuova notifica" }, "Play sound when power cable is connected": { - "Play sound when power cable is connected": "Riproduci suono quando il cavo di alimentazione viene connesso" + "Play sound when power cable is connected": "Riproduci suono quando il cavo di alimentazione viene collegato" }, "Play sound when volume is adjusted": { "Play sound when volume is adjusted": "Riproduci suono quando il volume viene regolato" @@ -2676,7 +2736,7 @@ "Power Profile": "Profilo energetico" }, "Power Profile Degradation": { - "Power Profile Degradation": "Degrado Profilo Energetico" + "Power Profile Degradation": "Riduzione Prestazioni Energetiche" }, "Power profile management available": { "Power profile management available": "Gestione dei profili energetici disponibile" @@ -2684,6 +2744,9 @@ "Power source": { "Power source": "Sorgente di alimentazione" }, + "Precip": { + "Precip": "" + }, "Precipitation Chance": { "Precipitation Chance": "Probabilità di Precipitazioni" }, @@ -2730,7 +2793,7 @@ "Printers": "Stampanti" }, "Printers: ": { - "Printers: ": "Stampanti:" + "Printers: ": "Stampanti: " }, "Privacy Indicator": { "Privacy Indicator": "Indicatore Privacy" @@ -2751,7 +2814,7 @@ "Profile Image Error": "Errore Immagine Profilo" }, "Profile image is too large. Please use a smaller image.": { - "Profile image is too large. Please use a smaller image.": "Immagine profilo troppo grande. Per favore usa un'immagine più piccola" + "Profile image is too large. Please use a smaller image.": "Immagine profilo troppo grande. Per favore usa un'immagine più piccola." }, "Protocol": { "Protocol": "Protocollo" @@ -2814,7 +2877,7 @@ "Report": "Riepilogo" }, "Require holding button/key to confirm power off, restart, suspend, hibernate and logout": { - "Require holding button/key to confirm power off, restart, suspend, hibernate and logout": "Richiede di tenere premuto il pulsante/tasto per confermare lo spegnimento, il riavvio, la sospensione, l'ibernazione e il logout" + "Require holding button/key to confirm power off, restart, suspend, hibernate and logout": "Richiede di tenere premuto il pulsante/tasto per confermare lo spegnimento, il riavvio, la sospensione, l'ibernazione e il termina sessione" }, "Requires 'dgop' tool": { "Requires 'dgop' tool": "Richiede lo strumento 'dgop'" @@ -2877,7 +2940,7 @@ "Right-click and drag the bottom-right corner": "Clic destro e trascina l’angolo in basso a destra" }, "Right-click bar widget to cycle": { - "Right-click bar widget to cycle": "Click destro sulla barra per scorrimento" + "Right-click bar widget to cycle": "Click destro sulla barra per alternare" }, "Root Filesystem": { "Root Filesystem": "Filesystem root" @@ -2885,6 +2948,12 @@ "Rounded corners for windows": { "Rounded corners for windows": "Angoli arrotondati per le finestre" }, + "Rounded corners for windows (border_radius)": { + "Rounded corners for windows (border_radius)": "" + }, + "Rounded corners for windows (decoration.rounding)": { + "Rounded corners for windows (decoration.rounding)": "" + }, "Run DMS Templates": { "Run DMS Templates": "Esegui Template DMS" }, @@ -2964,7 +3033,7 @@ "Scroll title if it doesn't fit in widget": "Scorri il titolo se non entra nel widget" }, "Scroll wheel behavior on media widget": { - "Scroll wheel behavior on media widget": "" + "Scroll wheel behavior on media widget": "Comportamento della rotellina del mouse nel widget multimediale" }, "Scrolling": { "Scrolling": "Scorrimento" @@ -3113,6 +3182,12 @@ "Show Dock": { "Show Dock": "Mostra Dock" }, + "Show Feels Like Temperature": { + "Show Feels Like Temperature": "" + }, + "Show Forecast": { + "Show Forecast": "" + }, "Show GPU Temperature": { "Show GPU Temperature": "Mostra Temperatura GPU" }, @@ -3125,9 +3200,18 @@ "Show Hour Numbers": { "Show Hour Numbers": "Mostra Numeri delle Ore" }, + "Show Hourly Forecast": { + "Show Hourly Forecast": "" + }, + "Show Humidity": { + "Show Humidity": "" + }, "Show Line Numbers": { "Show Line Numbers": "Mostra Numero Righe" }, + "Show Location": { + "Show Location": "" + }, "Show Lock": { "Show Lock": "Mostra Blocco" }, @@ -3152,6 +3236,12 @@ "Show Power Off": { "Show Power Off": "Mostra Spegni" }, + "Show Precipitation Probability": { + "Show Precipitation Probability": "" + }, + "Show Pressure": { + "Show Pressure": "" + }, "Show Reboot": { "Show Reboot": "Mostra Riavvia" }, @@ -3161,12 +3251,24 @@ "Show Seconds": { "Show Seconds": "Mostra Secondi" }, + "Show Sunrise/Sunset": { + "Show Sunrise/Sunset": "" + }, "Show Suspend": { "Show Suspend": "Mostra Sospendi" }, "Show Top Processes": { "Show Top Processes": "Mostra Processi Principali" }, + "Show Weather Condition": { + "Show Weather Condition": "" + }, + "Show Welcome": { + "Show Welcome": "" + }, + "Show Wind Speed": { + "Show Wind Speed": "" + }, "Show Workspace Apps": { "Show Workspace Apps": "Mostra Icone negli Spazi di Lavoro" }, @@ -3237,7 +3339,7 @@ "Show workspace index numbers in the top bar workspace switcher": "Mostra i numeri d'indice degli spazi di lavoro nello switcher degli spazi di lavoro nella barra superiore" }, "Show workspace name on horizontal bars, and first letter on vertical bars": { - "Show workspace name on horizontal bars, and first letter on vertical bars": "" + "Show workspace name on horizontal bars, and first letter on vertical bars": "Mostra il nome dello spazio di lavoro nelle barre orizzontali e la prima lettera in quelle verticali" }, "Shows all running applications with focus indication": { "Shows all running applications with focus indication": "Mostra tutte le applicazioni in esecuzione con indicazione focus" @@ -3270,10 +3372,10 @@ "Sizing": "Dimensionamento" }, "Smartcard Authentication": { - "Smartcard Authentication": "" + "Smartcard Authentication": "Autenticazione Tramite Smart Card" }, "Smartcard PIN": { - "Smartcard PIN": "" + "Smartcard PIN": "PIN della Smart Card" }, "Some plugins require a newer version of DMS:": { "Some plugins require a newer version of DMS:": "Alcuni plugin richiedono una versione più recente di DMS:" @@ -3296,6 +3398,12 @@ "Space between windows": { "Space between windows": "Spazio tra le finestre" }, + "Space between windows (gappih/gappiv/gappoh/gappov)": { + "Space between windows (gappih/gappiv/gappoh/gappov)": "" + }, + "Space between windows (gaps_in and gaps_out)": { + "Space between windows (gaps_in and gaps_out)": "" + }, "Spacer": { "Spacer": "Spaziatore" }, @@ -3312,11 +3420,14 @@ "Spool Area Full": "Area Spool Piena" }, "Square Corners": { - "Square Corners": "Angoli squadrati" + "Square Corners": "Angoli Squadrati" }, "Stacked": { "Stacked": "Impilato" }, + "Standard": { + "Standard": "" + }, "Start": { "Start": "Avvio" }, @@ -3357,7 +3468,7 @@ "Suspend": "Sospendi" }, "Suspend behavior": { - "Suspend behavior": "Sospendi funzionalità" + "Suspend behavior": "Comportamento Sospensione" }, "Suspend system after": { "Suspend system after": "Sospendi sistema dopo" @@ -3417,7 +3528,7 @@ "System theme toggle": "Interruttore tema di sistema" }, "System toast notifications": { - "System toast notifications": "Notifiche toast di sistema" + "System toast notifications": "Notifiche a comparsa di sistema" }, "System update custom command": { "System update custom command": "Comando personalizzato aggiornamento sistema" @@ -3450,7 +3561,7 @@ "The DMS_SOCKET environment variable is not set or the socket is unavailable. Automated plugin management requires the DMS_SOCKET.": "La variabile di sistema DMS_SOCKET non è impostata o il socket non è disponibile. La gestione automatica dei plugin richiede il DMS_SOCKET." }, "The below settings will modify your GTK and Qt settings. If you wish to preserve your current configurations, please back them up (qt5ct.conf|qt6ct.conf and ~/.config/gtk-3.0|gtk-4.0).": { - "The below settings will modify your GTK and Qt settings. If you wish to preserve your current configurations, please back them up (qt5ct.conf|qt6ct.conf and ~/.config/gtk-3.0|gtk-4.0).": "Le seguenti impostazioni modificheranno le tue impostazioni GTK e Qt. Se vuoi preservare la tua configurazione attuale, per favore fai il backup (qt5ct.conf|qt6ct.conf and ~/.config/gtk-3.0|gtk-4.0)." + "The below settings will modify your GTK and Qt settings. If you wish to preserve your current configurations, please back them up (qt5ct.conf|qt6ct.conf and ~/.config/gtk-3.0|gtk-4.0).": "Le seguenti impostazioni modificheranno le tue impostazioni GTK e Qt. Se vuoi preservare la tua configurazione attuale, per favore fai il backup (qt5ct.conf|qt6ct.conf e ~/.config/gtk-3.0|gtk-4.0)." }, "The job queue of this printer is empty": { "The job queue of this printer is empty": "La coda delle stampe della stampante è vuota" @@ -3474,7 +3585,7 @@ "This bind is overridden by config.kdl": "Questa associazione di tasti è stata sovrascritta da config.kdl" }, "This widget prevents GPU power off states, which can significantly impact battery life on laptops. It is not recommended to use this on laptops with hybrid graphics.": { - "This widget prevents GPU power off states, which can significantly impact battery life on laptops. It is not recommended to use this on laptops with hybrid graphics.": "Questo widget impedisce gli stati di spegnimento della GPU, che possono influire in modo significativo sulla durata della batteria sui laptop. Non è consigliabile utilizzare questo su laptop con grafica ibrida." + "This widget prevents GPU power off states, which can significantly impact battery life on laptops. It is not recommended to use this on laptops with hybrid graphics.": "Questo widget impedisce gli stati di spegnimento della GPU, che possono influire in modo significativo sulla durata della batteria sui laptop. Non è consigliabile utilizzarlo su laptop con grafica ibrida." }, "This will permanently delete all clipboard history.": { "This will permanently delete all clipboard history.": "La cronologia degli appunti verrà cancellata definitivamente." @@ -3510,7 +3621,7 @@ "Title": "Titolo" }, "To Full": { - "To Full": "Alla Carica Completa" + "To Full": "Per la Carica Completa" }, "To update, run the following command:": { "To update, run the following command:": "Per aggiornare, esegui il seguente comando:" @@ -3519,7 +3630,7 @@ "To use this DMS bind, remove or change the keybind in your config.kdl": "Per utilizzare questa associazione di tasti DMS, rimuovi o modifica la scorciatoia da tastiera nel tuo config.kdl" }, "Toast Messages": { - "Toast Messages": "Messaggi Toast" + "Toast Messages": "Messaggi a Comparsa" }, "Today": { "Today": "Oggi" @@ -3539,6 +3650,9 @@ "Toner Low": { "Toner Low": "Toner Basso" }, + "Tools": { + "Tools": "" + }, "Top": { "Top": "In Alto" }, @@ -3639,7 +3753,7 @@ "Use Imperial Units": "Usa Unità Imperiali" }, "Use Imperial units (°F, mph, inHg) instead of Metric (°C, km/h, hPa)": { - "Use Imperial units (°F, mph, inHg) instead of Metric (°C, km/h, hPa)": "Usa unità Imperiali (°F, mph, inHg) invece delle Metriche (°C, km/h, hPa) " + "Use Imperial units (°F, mph, inHg) instead of Metric (°C, km/h, hPa)": "Usa unità Imperiali (°F, mph, inHg) invece di quelle Metriche (°C, km/h, hPa)" }, "Use Monospace Font": { "Use Monospace Font": "Usa Font a Larghezza Fissa" @@ -3650,6 +3764,12 @@ "Use animated wave progress bars for media playback": { "Use animated wave progress bars for media playback": "Usa barre ad onde animate per la riproduzione media" }, + "Use custom border size": { + "Use custom border size": "" + }, + "Use custom border/focus-ring width": { + "Use custom border/focus-ring width": "" + }, "Use custom command for update your system": { "Use custom command for update your system": "Usa comando personalizzato per aggiornare il sistema" }, @@ -3659,6 +3779,9 @@ "Use custom window radius instead of theme radius": { "Use custom window radius instead of theme radius": "Usa un raggio finestra personalizzato invece di quello del tema" }, + "Use custom window rounding instead of theme radius": { + "Use custom window rounding instead of theme radius": "" + }, "Use fingerprint reader for lock screen authentication (requires enrolled fingerprints)": { "Use fingerprint reader for lock screen authentication (requires enrolled fingerprints)": "Usa impronte digitali per autenticazione blocco schermo\n(richiede impronte digitali registrate)" }, @@ -3674,6 +3797,9 @@ "Used": { "Used": "Usato" }, + "Used when accent color is set to Custom": { + "Used when accent color is set to Custom": "" + }, "User": { "User": "Utente" }, @@ -3735,7 +3861,7 @@ "Version": "Versione" }, "Vertical Deck": { - "Vertical Deck": "Deck Verticale" + "Vertical Deck": "Pila Verticale" }, "Vertical Grid": { "Vertical Grid": "Griglia Verticale" @@ -3749,6 +3875,9 @@ "Vibrant palette with playful saturation.": { "Vibrant palette with playful saturation.": "Tavolozza vibrante con saturazione giocosa." }, + "View Mode": { + "View Mode": "" + }, "Visibility": { "Visibility": "Visibilità" }, @@ -3865,6 +3994,15 @@ "Widget removed": { "Widget removed": "Widget rimosso" }, + "Width of window border (borderpx)": { + "Width of window border (borderpx)": "" + }, + "Width of window border (general.border_size)": { + "Width of window border (general.border_size)": "" + }, + "Width of window border and focus ring": { + "Width of window border and focus ring": "" + }, "Wind": { "Wind": "Vento" }, @@ -3880,6 +4018,9 @@ "Window Gaps (px)": { "Window Gaps (px)": "Spazi tra finestre (px)" }, + "Window Rounding": { + "Window Rounding": "" + }, "Workspace": { "Workspace": "Spazio di Lavoro" }, @@ -3887,7 +4028,7 @@ "Workspace Index Numbers": "Numeri Indice Spazi di Lavoro" }, "Workspace Names": { - "Workspace Names": "" + "Workspace Names": "Nomi degli Spazi di Lavoro" }, "Workspace Padding": { "Workspace Padding": "Margine degli Spazi di Lavoro" @@ -4000,6 +4141,145 @@ "generic theme description": { "Material Design inspired color themes": "Temi colore ispirati al Material Design" }, + "greeter back button": { + "Back": "" + }, + "greeter completion page subtitle": { + "DankMaterialShell is ready to use": "" + }, + "greeter completion page title": { + "You're All Set!": "" + }, + "greeter configure keybinds link": { + "Configure Keybinds": "" + }, + "greeter dankbar description": { + "Widgets, layout, style": "" + }, + "greeter displays description": { + "Resolution, position, scale": "" + }, + "greeter dock description": { + "Position, pinned apps": "" + }, + "greeter doctor page button": { + "Run Again": "" + }, + "greeter doctor page empty state": { + "No checks passed": "", + "No errors": "", + "No info items": "", + "No warnings": "" + }, + "greeter doctor page error count": { + "%1 issue(s) found": "" + }, + "greeter doctor page loading text": { + "Analyzing configuration...": "" + }, + "greeter doctor page status card": { + "Errors": "", + "Info": "", + "OK": "", + "Warnings": "" + }, + "greeter doctor page success": { + "All checks passed": "" + }, + "greeter doctor page title": { + "System Check": "" + }, + "greeter documentation link": { + "Docs": "" + }, + "greeter explore section header": { + "Explore": "" + }, + "greeter feature card description": { + "Background app icons": "", + "Colors from wallpaper": "", + "Community themes": "", + "Extensible architecture": "", + "GTK, Qt, IDEs, more": "", + "Modular widget bar": "", + "Night mode & gamma": "", + "Per-screen config": "", + "Quick system toggles": "" + }, + "greeter feature card title": { + "App Theming": "", + "Control Center": "", + "Display Control": "", + "Dynamic Theming": "", + "Multi-Monitor": "", + "System Tray": "", + "Theme Registry": "" + }, + "greeter feature card title | greeter plugins link": { + "Plugins": "" + }, + "greeter feature card title | greeter settings link": { + "DankBar": "" + }, + "greeter finish button": { + "Finish": "" + }, + "greeter first page button": { + "Get Started": "" + }, + "greeter keybinds niri description": { + "niri shortcuts config": "" + }, + "greeter keybinds section header": { + "DMS Shortcuts": "" + }, + "greeter modal window title": { + "Welcome": "" + }, + "greeter next button": { + "Next": "" + }, + "greeter no keybinds message": { + "No DMS shortcuts configured": "" + }, + "greeter notifications description": { + "Popup behavior, position": "" + }, + "greeter settings link": { + "Displays": "", + "Dock": "", + "Keybinds": "", + "Notifications": "", + "Theme & Colors": "", + "Wallpaper": "" + }, + "greeter settings section header": { + "Configure": "" + }, + "greeter skip button": { + "Skip": "" + }, + "greeter skip button tooltip": { + "Skip setup": "" + }, + "greeter theme description": { + "Dynamic colors, presets": "" + }, + "greeter themes link": { + "Themes": "" + }, + "greeter wallpaper description": { + "Background image": "" + }, + "greeter welcome page section header": { + "Features": "" + }, + "greeter welcome page tagline": { + "A modern desktop shell for Wayland compositors": "" + }, + "greeter welcome page title": { + "Welcome to DankMaterialShell": "" + }, "install action button": { "Install": "Installa" }, @@ -4021,6 +4301,19 @@ "loading indicator": { "Loading...": "Caricamento..." }, + "lock screen notification mode option": { + "App Names": "", + "Count Only": "", + "Disabled": "", + "Full Content": "" + }, + "lock screen notification privacy setting": { + "Control what notification information is shown on the lock screen": "", + "Notification Display": "" + }, + "lock screen notifications settings card": { + "Lock Screen": "" + }, "loginctl not available - lock integration requires DMS socket connection": { "loginctl not available - lock integration requires DMS socket connection": "loginctl non disponibile - integrazione blocco richiede connessione socket DMS" }, @@ -4049,48 +4342,48 @@ "No wallpaper selected": "Nessuno sfondo selezionato" }, "notification center tab": { - "Current": "", - "History": "" + "Current": "Attuale", + "History": "Cronologia" }, "notification history filter": { - "All": "", - "Last hour": "", - "Today": "", - "Yesterday": "" + "All": "Tutte", + "Last hour": "Ultima Ora", + "Today": "Oggi", + "Yesterday": "Ieri" }, "notification history filter for content older than other filters": { - "Older": "" + "Older": "Più Vecchie" }, "notification history filter | notification history retention option": { - "30 days": "", - "7 days": "" + "30 days": "30 giorni", + "7 days": "7 giorni" }, "notification history limit": { - "Maximum number of notifications to keep": "" + "Maximum number of notifications to keep": "Numero massimo di notifiche da conservare" }, "notification history retention option": { - "1 day": "", - "14 days": "", - "3 days": "", - "Forever": "" + "1 day": "1 giorno", + "14 days": "14 giorni", + "3 days": "3 giorni", + "Forever": "Per Sempre" }, "notification history retention settings label": { - "History Retention": "" + "History Retention": "Conservazione della Cronologia" }, "notification history setting": { - "Auto-delete notifications older than this": "", - "Save critical priority notifications to history": "", - "Save low priority notifications to history": "", - "Save normal priority notifications to history": "" + "Auto-delete notifications older than this": "Elimina automaticamente le notifiche più vecchie di questo periodo", + "Save critical priority notifications to history": "Salva nella cronologia le notifiche a priorità critica", + "Save low priority notifications to history": "Salva nella cronologia le notifiche a bassa priorità", + "Save normal priority notifications to history": "Salva nella cronologia le notifiche a priorità normale" }, "notification history toggle description": { - "Save dismissed notifications to history": "" + "Save dismissed notifications to history": "Salva nella cronologia le notifiche ignorate" }, "notification history toggle label": { - "Enable History": "" + "Enable History": "Abilita Cronologia" }, "now": { - "now": "" + "now": "ora" }, "official": { "official": "ufficiale" @@ -4114,7 +4407,7 @@ "Select Profile Image": "Seleziona Immagine Profilo" }, "read-only settings warning for NixOS home-manager users": { - "Settings are read-only. Changes will not persist.": "" + "Settings are read-only. Changes will not persist.": "Le impostazioni sono in sola lettura. Le modifiche non verranno salvate." }, "registry theme description": { "Color theme from DMS registry": "Tema colore dal registro DMS" @@ -4186,10 +4479,10 @@ "External Wallpaper Management": "Gestore di Sfondi Esterno" }, "wtype not available - install wtype for paste support": { - "wtype not available - install wtype for paste support": "wtype non disponibile – installa wtype per il supporto all’incolla" + "wtype not available - install wtype for paste support": "wtype non disponibile – installa wtype per il supporto alla funzione incolla" }, "yesterday": { - "yesterday": "" + "yesterday": "ieri" }, "• Install only from trusted sources": { "• Install only from trusted sources": "• Installa solo da sorgenti fidate" diff --git a/quickshell/translations/poexports/ja.json b/quickshell/translations/poexports/ja.json index 36ef1e38..6e0e165a 100644 --- a/quickshell/translations/poexports/ja.json +++ b/quickshell/translations/poexports/ja.json @@ -23,6 +23,9 @@ "%1 job(s)": { "%1 job(s)": "" }, + "%1 notifications": { + "%1 notifications": "" + }, "%1 printer(s)": { "%1 printer(s)": "" }, @@ -38,6 +41,9 @@ "(Unnamed)": { "(Unnamed)": "(名前なし)" }, + "+ %1 more": { + "+ %1 more": "" + }, "0 = square corners": { "0 = square corners": "" }, @@ -50,6 +56,9 @@ "1 minute": { "1 minute": "" }, + "1 notification": { + "1 notification": "" + }, "1 second": { "1 second": "" }, @@ -128,6 +137,9 @@ "About": { "About": "詳細" }, + "Accent Color": { + "Accent Color": "" + }, "Accept Jobs": { "Accept Jobs": "" }, @@ -413,6 +425,9 @@ "Available Screens (%1)": { "Available Screens (%1)": "" }, + "Available in Detailed and Forecast view modes": { + "Available in Detailed and Forecast view modes": "" + }, "BSSID": { "BSSID": "" }, @@ -500,6 +515,9 @@ "Border Opacity": { "Border Opacity": "ボーダーの透明度" }, + "Border Size": { + "Border Size": "" + }, "Border Thickness": { "Border Thickness": "ボーダーの太さ" }, @@ -626,6 +644,9 @@ "Choose colors from palette": { "Choose colors from palette": "" }, + "Choose how the weather widget is displayed": { + "Choose how the weather widget is displayed": "" + }, "Choose icon": { "Choose icon": "アイコンを選ぶ" }, @@ -755,6 +776,9 @@ "Communication": { "Communication": "コミュニケーション" }, + "Compact": { + "Compact": "" + }, "Compact Mode": { "Compact Mode": "コンパクトモード" }, @@ -911,6 +935,9 @@ "Custom": { "Custom": "カスタム" }, + "Custom Color": { + "Custom Color": "" + }, "Custom Duration": { "Custom Duration": "" }, @@ -1073,6 +1100,9 @@ "Desktop clock widget name": { "Desktop Clock": "" }, + "Detailed": { + "Detailed": "" + }, "Development": { "Development": "開発" }, @@ -1160,6 +1190,9 @@ "Display currently focused application title": { "Display currently focused application title": "現在フォーカスされているアプリケーションのタイトルを表示" }, + "Display hourly weather predictions": { + "Display hourly weather predictions": "" + }, "Display only workspaces that contain windows": { "Display only workspaces that contain windows": "" }, @@ -1535,6 +1568,9 @@ "Failed to write temp file for validation": { "Failed to write temp file for validation": "" }, + "Feels": { + "Feels": "" + }, "Feels Like": { "Feels Like": "どうやら" }, @@ -1616,6 +1652,12 @@ "Force terminal applications to always use dark color schemes": { "Force terminal applications to always use dark color schemes": "端末アプリで常に暗い配色を強制使用" }, + "Forecast": { + "Forecast": "" + }, + "Forecast Days": { + "Forecast Days": "" + }, "Forecast Not Available": { "Forecast Not Available": "" }, @@ -1769,12 +1811,18 @@ "Hourly Forecast": { "Hourly Forecast": "" }, + "Hourly Forecast Count": { + "Hourly Forecast Count": "" + }, "How often to change wallpaper": { "How often to change wallpaper": "壁紙を切り替える間隔" }, "Humidity": { "Humidity": "湿度" }, + "Hyprland Layout Overrides": { + "Hyprland Layout Overrides": "" + }, "I Understand": { "I Understand": "わかりました" }, @@ -2042,6 +2090,9 @@ "Management": { "Management": "" }, + "MangoWC Layout Overrides": { + "MangoWC Layout Overrides": "" + }, "Manual Coordinates": { "Manual Coordinates": "手動座標" }, @@ -2306,6 +2357,9 @@ "No VPN profiles": { "No VPN profiles": "" }, + "No Weather Data": { + "No Weather Data": "" + }, "No Weather Data Available": { "No Weather Data Available": "気象データはありません" }, @@ -2396,6 +2450,9 @@ "Not connected": { "Not connected": "" }, + "Not detected": { + "Not detected": "" + }, "Note: this only changes the percentage, it does not actually limit charging.": { "Note: this only changes the percentage, it does not actually limit charging.": "" }, @@ -2510,6 +2567,9 @@ "Override": { "Override": "" }, + "Override Border Size": { + "Override Border Size": "" + }, "Override Corner Radius": { "Override Corner Radius": "" }, @@ -2684,6 +2744,9 @@ "Power source": { "Power source": "" }, + "Precip": { + "Precip": "" + }, "Precipitation Chance": { "Precipitation Chance": "" }, @@ -2885,6 +2948,12 @@ "Rounded corners for windows": { "Rounded corners for windows": "" }, + "Rounded corners for windows (border_radius)": { + "Rounded corners for windows (border_radius)": "" + }, + "Rounded corners for windows (decoration.rounding)": { + "Rounded corners for windows (decoration.rounding)": "" + }, "Run DMS Templates": { "Run DMS Templates": "" }, @@ -3113,6 +3182,12 @@ "Show Dock": { "Show Dock": "ドックを表示" }, + "Show Feels Like Temperature": { + "Show Feels Like Temperature": "" + }, + "Show Forecast": { + "Show Forecast": "" + }, "Show GPU Temperature": { "Show GPU Temperature": "" }, @@ -3125,9 +3200,18 @@ "Show Hour Numbers": { "Show Hour Numbers": "" }, + "Show Hourly Forecast": { + "Show Hourly Forecast": "" + }, + "Show Humidity": { + "Show Humidity": "" + }, "Show Line Numbers": { "Show Line Numbers": "行番号を表示" }, + "Show Location": { + "Show Location": "" + }, "Show Lock": { "Show Lock": "ロックを表示" }, @@ -3152,6 +3236,12 @@ "Show Power Off": { "Show Power Off": "パワーオフを表示" }, + "Show Precipitation Probability": { + "Show Precipitation Probability": "" + }, + "Show Pressure": { + "Show Pressure": "" + }, "Show Reboot": { "Show Reboot": "再起動を表示" }, @@ -3161,12 +3251,24 @@ "Show Seconds": { "Show Seconds": "" }, + "Show Sunrise/Sunset": { + "Show Sunrise/Sunset": "" + }, "Show Suspend": { "Show Suspend": "一時停止を表示" }, "Show Top Processes": { "Show Top Processes": "" }, + "Show Weather Condition": { + "Show Weather Condition": "" + }, + "Show Welcome": { + "Show Welcome": "" + }, + "Show Wind Speed": { + "Show Wind Speed": "" + }, "Show Workspace Apps": { "Show Workspace Apps": "ワークスペースアプリを表示" }, @@ -3296,6 +3398,12 @@ "Space between windows": { "Space between windows": "" }, + "Space between windows (gappih/gappiv/gappoh/gappov)": { + "Space between windows (gappih/gappiv/gappoh/gappov)": "" + }, + "Space between windows (gaps_in and gaps_out)": { + "Space between windows (gaps_in and gaps_out)": "" + }, "Spacer": { "Spacer": "間隔" }, @@ -3317,6 +3425,9 @@ "Stacked": { "Stacked": "" }, + "Standard": { + "Standard": "" + }, "Start": { "Start": "始める" }, @@ -3539,6 +3650,9 @@ "Toner Low": { "Toner Low": "トナーが低い" }, + "Tools": { + "Tools": "" + }, "Top": { "Top": "トップ" }, @@ -3650,6 +3764,12 @@ "Use animated wave progress bars for media playback": { "Use animated wave progress bars for media playback": "アニメーション化されたウェーブの進行状況バーをメディア再生に使用" }, + "Use custom border size": { + "Use custom border size": "" + }, + "Use custom border/focus-ring width": { + "Use custom border/focus-ring width": "" + }, "Use custom command for update your system": { "Use custom command for update your system": "カスタムコマンドを使用してシステムを更新" }, @@ -3659,6 +3779,9 @@ "Use custom window radius instead of theme radius": { "Use custom window radius instead of theme radius": "" }, + "Use custom window rounding instead of theme radius": { + "Use custom window rounding instead of theme radius": "" + }, "Use fingerprint reader for lock screen authentication (requires enrolled fingerprints)": { "Use fingerprint reader for lock screen authentication (requires enrolled fingerprints)": "ロック画面認証に指紋リーダーを使用(登録された指紋が必要)" }, @@ -3674,6 +3797,9 @@ "Used": { "Used": "使用済み" }, + "Used when accent color is set to Custom": { + "Used when accent color is set to Custom": "" + }, "User": { "User": "" }, @@ -3749,6 +3875,9 @@ "Vibrant palette with playful saturation.": { "Vibrant palette with playful saturation.": "遊び心のある彩度の鮮やかなパレット。" }, + "View Mode": { + "View Mode": "" + }, "Visibility": { "Visibility": "可視性" }, @@ -3865,6 +3994,15 @@ "Widget removed": { "Widget removed": "" }, + "Width of window border (borderpx)": { + "Width of window border (borderpx)": "" + }, + "Width of window border (general.border_size)": { + "Width of window border (general.border_size)": "" + }, + "Width of window border and focus ring": { + "Width of window border and focus ring": "" + }, "Wind": { "Wind": "風" }, @@ -3880,6 +4018,9 @@ "Window Gaps (px)": { "Window Gaps (px)": "" }, + "Window Rounding": { + "Window Rounding": "" + }, "Workspace": { "Workspace": "ワークスペース" }, @@ -4000,6 +4141,145 @@ "generic theme description": { "Material Design inspired color themes": "" }, + "greeter back button": { + "Back": "" + }, + "greeter completion page subtitle": { + "DankMaterialShell is ready to use": "" + }, + "greeter completion page title": { + "You're All Set!": "" + }, + "greeter configure keybinds link": { + "Configure Keybinds": "" + }, + "greeter dankbar description": { + "Widgets, layout, style": "" + }, + "greeter displays description": { + "Resolution, position, scale": "" + }, + "greeter dock description": { + "Position, pinned apps": "" + }, + "greeter doctor page button": { + "Run Again": "" + }, + "greeter doctor page empty state": { + "No checks passed": "", + "No errors": "", + "No info items": "", + "No warnings": "" + }, + "greeter doctor page error count": { + "%1 issue(s) found": "" + }, + "greeter doctor page loading text": { + "Analyzing configuration...": "" + }, + "greeter doctor page status card": { + "Errors": "", + "Info": "", + "OK": "", + "Warnings": "" + }, + "greeter doctor page success": { + "All checks passed": "" + }, + "greeter doctor page title": { + "System Check": "" + }, + "greeter documentation link": { + "Docs": "" + }, + "greeter explore section header": { + "Explore": "" + }, + "greeter feature card description": { + "Background app icons": "", + "Colors from wallpaper": "", + "Community themes": "", + "Extensible architecture": "", + "GTK, Qt, IDEs, more": "", + "Modular widget bar": "", + "Night mode & gamma": "", + "Per-screen config": "", + "Quick system toggles": "" + }, + "greeter feature card title": { + "App Theming": "", + "Control Center": "", + "Display Control": "", + "Dynamic Theming": "", + "Multi-Monitor": "", + "System Tray": "", + "Theme Registry": "" + }, + "greeter feature card title | greeter plugins link": { + "Plugins": "" + }, + "greeter feature card title | greeter settings link": { + "DankBar": "" + }, + "greeter finish button": { + "Finish": "" + }, + "greeter first page button": { + "Get Started": "" + }, + "greeter keybinds niri description": { + "niri shortcuts config": "" + }, + "greeter keybinds section header": { + "DMS Shortcuts": "" + }, + "greeter modal window title": { + "Welcome": "" + }, + "greeter next button": { + "Next": "" + }, + "greeter no keybinds message": { + "No DMS shortcuts configured": "" + }, + "greeter notifications description": { + "Popup behavior, position": "" + }, + "greeter settings link": { + "Displays": "", + "Dock": "", + "Keybinds": "", + "Notifications": "", + "Theme & Colors": "", + "Wallpaper": "" + }, + "greeter settings section header": { + "Configure": "" + }, + "greeter skip button": { + "Skip": "" + }, + "greeter skip button tooltip": { + "Skip setup": "" + }, + "greeter theme description": { + "Dynamic colors, presets": "" + }, + "greeter themes link": { + "Themes": "" + }, + "greeter wallpaper description": { + "Background image": "" + }, + "greeter welcome page section header": { + "Features": "" + }, + "greeter welcome page tagline": { + "A modern desktop shell for Wayland compositors": "" + }, + "greeter welcome page title": { + "Welcome to DankMaterialShell": "" + }, "install action button": { "Install": "" }, @@ -4021,6 +4301,19 @@ "loading indicator": { "Loading...": "" }, + "lock screen notification mode option": { + "App Names": "", + "Count Only": "", + "Disabled": "", + "Full Content": "" + }, + "lock screen notification privacy setting": { + "Control what notification information is shown on the lock screen": "", + "Notification Display": "" + }, + "lock screen notifications settings card": { + "Lock Screen": "" + }, "loginctl not available - lock integration requires DMS socket connection": { "loginctl not available - lock integration requires DMS socket connection": "loginctlが利用できません- ロック統合のためにDMS socketの接続が必要です。" }, diff --git a/quickshell/translations/poexports/pl.json b/quickshell/translations/poexports/pl.json index 66c96723..9d3dc9d2 100644 --- a/quickshell/translations/poexports/pl.json +++ b/quickshell/translations/poexports/pl.json @@ -23,6 +23,9 @@ "%1 job(s)": { "%1 job(s)": "%1 zadań" }, + "%1 notifications": { + "%1 notifications": "" + }, "%1 printer(s)": { "%1 printer(s)": "%1 drukarek" }, @@ -38,6 +41,9 @@ "(Unnamed)": { "(Unnamed)": "(Bez nazwy)" }, + "+ %1 more": { + "+ %1 more": "" + }, "0 = square corners": { "0 = square corners": "0 = kwadratowe rogi" }, @@ -50,6 +56,9 @@ "1 minute": { "1 minute": "1 minuta" }, + "1 notification": { + "1 notification": "" + }, "1 second": { "1 second": "1 sekunda" }, @@ -128,6 +137,9 @@ "About": { "About": "O programie" }, + "Accent Color": { + "Accent Color": "" + }, "Accept Jobs": { "Accept Jobs": "Akceptuj zadania" }, @@ -413,6 +425,9 @@ "Available Screens (%1)": { "Available Screens (%1)": "Dostępne Ekrany (%1)" }, + "Available in Detailed and Forecast view modes": { + "Available in Detailed and Forecast view modes": "" + }, "BSSID": { "BSSID": "BSSID" }, @@ -500,6 +515,9 @@ "Border Opacity": { "Border Opacity": "Przezroczystość obramowania" }, + "Border Size": { + "Border Size": "" + }, "Border Thickness": { "Border Thickness": "Grubość obramowania" }, @@ -626,6 +644,9 @@ "Choose colors from palette": { "Choose colors from palette": "Wybierz kolory z palety" }, + "Choose how the weather widget is displayed": { + "Choose how the weather widget is displayed": "" + }, "Choose icon": { "Choose icon": "Wybierz ikonę" }, @@ -755,6 +776,9 @@ "Communication": { "Communication": "Komunikacja" }, + "Compact": { + "Compact": "" + }, "Compact Mode": { "Compact Mode": "Tryb kompaktowy" }, @@ -911,6 +935,9 @@ "Custom": { "Custom": "Niestandardowy" }, + "Custom Color": { + "Custom Color": "" + }, "Custom Duration": { "Custom Duration": "Czas trwania niestandardowy" }, @@ -1073,6 +1100,9 @@ "Desktop clock widget name": { "Desktop Clock": "Zegar na Pulpicie" }, + "Detailed": { + "Detailed": "" + }, "Development": { "Development": "Programowanie" }, @@ -1160,6 +1190,9 @@ "Display currently focused application title": { "Display currently focused application title": "Wyświetlaj tytuł aktywnej aplikacji" }, + "Display hourly weather predictions": { + "Display hourly weather predictions": "" + }, "Display only workspaces that contain windows": { "Display only workspaces that contain windows": "Wyświetlaj tylko obszary robocze zawierające okna" }, @@ -1535,6 +1568,9 @@ "Failed to write temp file for validation": { "Failed to write temp file for validation": "Zapisanie pliku tymczasowego do walidacji nie powiodło się" }, + "Feels": { + "Feels": "" + }, "Feels Like": { "Feels Like": "Odczuwalna" }, @@ -1616,6 +1652,12 @@ "Force terminal applications to always use dark color schemes": { "Force terminal applications to always use dark color schemes": "Wymuś ciemny motyw na aplikacjach terminala" }, + "Forecast": { + "Forecast": "" + }, + "Forecast Days": { + "Forecast Days": "" + }, "Forecast Not Available": { "Forecast Not Available": "Prognoza niedostępna" }, @@ -1769,12 +1811,18 @@ "Hourly Forecast": { "Hourly Forecast": "Prognoza godzinowa" }, + "Hourly Forecast Count": { + "Hourly Forecast Count": "" + }, "How often to change wallpaper": { "How often to change wallpaper": "Jak często zmieniać tapetę" }, "Humidity": { "Humidity": "Wilgotność" }, + "Hyprland Layout Overrides": { + "Hyprland Layout Overrides": "" + }, "I Understand": { "I Understand": "Rozumiem" }, @@ -2042,6 +2090,9 @@ "Management": { "Management": "Zarządzanie" }, + "MangoWC Layout Overrides": { + "MangoWC Layout Overrides": "" + }, "Manual Coordinates": { "Manual Coordinates": "Ręczne współrzędne" }, @@ -2306,6 +2357,9 @@ "No VPN profiles": { "No VPN profiles": "Brak profili VPN" }, + "No Weather Data": { + "No Weather Data": "" + }, "No Weather Data Available": { "No Weather Data Available": "Brak danych pogodowych" }, @@ -2396,6 +2450,9 @@ "Not connected": { "Not connected": "Nie połączono" }, + "Not detected": { + "Not detected": "" + }, "Note: this only changes the percentage, it does not actually limit charging.": { "Note: this only changes the percentage, it does not actually limit charging.": "Notatka: ta opcja zmienia tylko procent, nie ogranicza ładowania." }, @@ -2510,6 +2567,9 @@ "Override": { "Override": "Prześcigać" }, + "Override Border Size": { + "Override Border Size": "" + }, "Override Corner Radius": { "Override Corner Radius": "Nadpisz Promień Narożnika" }, @@ -2684,6 +2744,9 @@ "Power source": { "Power source": "Źródło zasilania" }, + "Precip": { + "Precip": "" + }, "Precipitation Chance": { "Precipitation Chance": "Prawdopodobieństwo opadów" }, @@ -2885,6 +2948,12 @@ "Rounded corners for windows": { "Rounded corners for windows": "Zaokrąglone narożniki okien" }, + "Rounded corners for windows (border_radius)": { + "Rounded corners for windows (border_radius)": "" + }, + "Rounded corners for windows (decoration.rounding)": { + "Rounded corners for windows (decoration.rounding)": "" + }, "Run DMS Templates": { "Run DMS Templates": "Wykonaj szablony DMS" }, @@ -3113,6 +3182,12 @@ "Show Dock": { "Show Dock": "Pokaż dok" }, + "Show Feels Like Temperature": { + "Show Feels Like Temperature": "" + }, + "Show Forecast": { + "Show Forecast": "" + }, "Show GPU Temperature": { "Show GPU Temperature": "Pokaż temperaturę GPU" }, @@ -3125,9 +3200,18 @@ "Show Hour Numbers": { "Show Hour Numbers": "Pokaż Liczbę Godzin" }, + "Show Hourly Forecast": { + "Show Hourly Forecast": "" + }, + "Show Humidity": { + "Show Humidity": "" + }, "Show Line Numbers": { "Show Line Numbers": "Pokaż numery wierszy" }, + "Show Location": { + "Show Location": "" + }, "Show Lock": { "Show Lock": "Pokaż blokadę" }, @@ -3152,6 +3236,12 @@ "Show Power Off": { "Show Power Off": "Pokaż wyłączone zasilanie" }, + "Show Precipitation Probability": { + "Show Precipitation Probability": "" + }, + "Show Pressure": { + "Show Pressure": "" + }, "Show Reboot": { "Show Reboot": "Pokaż ponowne uruchomienie" }, @@ -3161,12 +3251,24 @@ "Show Seconds": { "Show Seconds": "Pokaż sekundy" }, + "Show Sunrise/Sunset": { + "Show Sunrise/Sunset": "" + }, "Show Suspend": { "Show Suspend": "Pokaż wstrzymanie" }, "Show Top Processes": { "Show Top Processes": "Pokaż procesy" }, + "Show Weather Condition": { + "Show Weather Condition": "" + }, + "Show Welcome": { + "Show Welcome": "" + }, + "Show Wind Speed": { + "Show Wind Speed": "" + }, "Show Workspace Apps": { "Show Workspace Apps": "Pokaż aplikacje z obszaru roboczego" }, @@ -3296,6 +3398,12 @@ "Space between windows": { "Space between windows": "Przerwa między oknami" }, + "Space between windows (gappih/gappiv/gappoh/gappov)": { + "Space between windows (gappih/gappiv/gappoh/gappov)": "" + }, + "Space between windows (gaps_in and gaps_out)": { + "Space between windows (gaps_in and gaps_out)": "" + }, "Spacer": { "Spacer": "Odstęp" }, @@ -3317,6 +3425,9 @@ "Stacked": { "Stacked": "W stosie" }, + "Standard": { + "Standard": "" + }, "Start": { "Start": "Start" }, @@ -3539,6 +3650,9 @@ "Toner Low": { "Toner Low": "Niski poziom tonera" }, + "Tools": { + "Tools": "" + }, "Top": { "Top": "Góra" }, @@ -3650,6 +3764,12 @@ "Use animated wave progress bars for media playback": { "Use animated wave progress bars for media playback": "Używaj animowanych pasków postępu fali do odtwarzania multimediów" }, + "Use custom border size": { + "Use custom border size": "" + }, + "Use custom border/focus-ring width": { + "Use custom border/focus-ring width": "" + }, "Use custom command for update your system": { "Use custom command for update your system": "Użyj niestandardowego polecenia do aktualizacji systemu" }, @@ -3659,6 +3779,9 @@ "Use custom window radius instead of theme radius": { "Use custom window radius instead of theme radius": "Używaj własnego promienia okna w zamiast ustawień motywu" }, + "Use custom window rounding instead of theme radius": { + "Use custom window rounding instead of theme radius": "" + }, "Use fingerprint reader for lock screen authentication (requires enrolled fingerprints)": { "Use fingerprint reader for lock screen authentication (requires enrolled fingerprints)": "Użyj czytnika linii papilarnych do uwierzytelniania ekranu blokady (wymaga zarejestrowanych odcisków palców)." }, @@ -3674,6 +3797,9 @@ "Used": { "Used": "Użyto" }, + "Used when accent color is set to Custom": { + "Used when accent color is set to Custom": "" + }, "User": { "User": "Użytkownik" }, @@ -3749,6 +3875,9 @@ "Vibrant palette with playful saturation.": { "Vibrant palette with playful saturation.": "Wibrująca paleta z zabawnym nasyceniem." }, + "View Mode": { + "View Mode": "" + }, "Visibility": { "Visibility": "Widoczność" }, @@ -3865,6 +3994,15 @@ "Widget removed": { "Widget removed": "Usunięto widżet" }, + "Width of window border (borderpx)": { + "Width of window border (borderpx)": "" + }, + "Width of window border (general.border_size)": { + "Width of window border (general.border_size)": "" + }, + "Width of window border and focus ring": { + "Width of window border and focus ring": "" + }, "Wind": { "Wind": "Wiatr" }, @@ -3880,6 +4018,9 @@ "Window Gaps (px)": { "Window Gaps (px)": "Odstępy Okien (px)" }, + "Window Rounding": { + "Window Rounding": "" + }, "Workspace": { "Workspace": "Obszar roboczy" }, @@ -4000,6 +4141,145 @@ "generic theme description": { "Material Design inspired color themes": "Motywy inspirowane Material Design" }, + "greeter back button": { + "Back": "" + }, + "greeter completion page subtitle": { + "DankMaterialShell is ready to use": "" + }, + "greeter completion page title": { + "You're All Set!": "" + }, + "greeter configure keybinds link": { + "Configure Keybinds": "" + }, + "greeter dankbar description": { + "Widgets, layout, style": "" + }, + "greeter displays description": { + "Resolution, position, scale": "" + }, + "greeter dock description": { + "Position, pinned apps": "" + }, + "greeter doctor page button": { + "Run Again": "" + }, + "greeter doctor page empty state": { + "No checks passed": "", + "No errors": "", + "No info items": "", + "No warnings": "" + }, + "greeter doctor page error count": { + "%1 issue(s) found": "" + }, + "greeter doctor page loading text": { + "Analyzing configuration...": "" + }, + "greeter doctor page status card": { + "Errors": "", + "Info": "", + "OK": "", + "Warnings": "" + }, + "greeter doctor page success": { + "All checks passed": "" + }, + "greeter doctor page title": { + "System Check": "" + }, + "greeter documentation link": { + "Docs": "" + }, + "greeter explore section header": { + "Explore": "" + }, + "greeter feature card description": { + "Background app icons": "", + "Colors from wallpaper": "", + "Community themes": "", + "Extensible architecture": "", + "GTK, Qt, IDEs, more": "", + "Modular widget bar": "", + "Night mode & gamma": "", + "Per-screen config": "", + "Quick system toggles": "" + }, + "greeter feature card title": { + "App Theming": "", + "Control Center": "", + "Display Control": "", + "Dynamic Theming": "", + "Multi-Monitor": "", + "System Tray": "", + "Theme Registry": "" + }, + "greeter feature card title | greeter plugins link": { + "Plugins": "" + }, + "greeter feature card title | greeter settings link": { + "DankBar": "" + }, + "greeter finish button": { + "Finish": "" + }, + "greeter first page button": { + "Get Started": "" + }, + "greeter keybinds niri description": { + "niri shortcuts config": "" + }, + "greeter keybinds section header": { + "DMS Shortcuts": "" + }, + "greeter modal window title": { + "Welcome": "" + }, + "greeter next button": { + "Next": "" + }, + "greeter no keybinds message": { + "No DMS shortcuts configured": "" + }, + "greeter notifications description": { + "Popup behavior, position": "" + }, + "greeter settings link": { + "Displays": "", + "Dock": "", + "Keybinds": "", + "Notifications": "", + "Theme & Colors": "", + "Wallpaper": "" + }, + "greeter settings section header": { + "Configure": "" + }, + "greeter skip button": { + "Skip": "" + }, + "greeter skip button tooltip": { + "Skip setup": "" + }, + "greeter theme description": { + "Dynamic colors, presets": "" + }, + "greeter themes link": { + "Themes": "" + }, + "greeter wallpaper description": { + "Background image": "" + }, + "greeter welcome page section header": { + "Features": "" + }, + "greeter welcome page tagline": { + "A modern desktop shell for Wayland compositors": "" + }, + "greeter welcome page title": { + "Welcome to DankMaterialShell": "" + }, "install action button": { "Install": "Instaluj" }, @@ -4021,6 +4301,19 @@ "loading indicator": { "Loading...": "Ładowanie..." }, + "lock screen notification mode option": { + "App Names": "", + "Count Only": "", + "Disabled": "", + "Full Content": "" + }, + "lock screen notification privacy setting": { + "Control what notification information is shown on the lock screen": "", + "Notification Display": "" + }, + "lock screen notifications settings card": { + "Lock Screen": "" + }, "loginctl not available - lock integration requires DMS socket connection": { "loginctl not available - lock integration requires DMS socket connection": "loginctl niedostępny - integracja blokady wymaga połączenia z gniazdem DMS" }, diff --git a/quickshell/translations/poexports/pt.json b/quickshell/translations/poexports/pt.json index 6a1273eb..c9056b83 100644 --- a/quickshell/translations/poexports/pt.json +++ b/quickshell/translations/poexports/pt.json @@ -23,6 +23,9 @@ "%1 job(s)": { "%1 job(s)": "%1 trabalho(s)" }, + "%1 notifications": { + "%1 notifications": "" + }, "%1 printer(s)": { "%1 printer(s)": "%1 impressora(s)" }, @@ -38,6 +41,9 @@ "(Unnamed)": { "(Unnamed)": "(Sem nome)" }, + "+ %1 more": { + "+ %1 more": "" + }, "0 = square corners": { "0 = square corners": "0 = cantos quadrados" }, @@ -50,6 +56,9 @@ "1 minute": { "1 minute": "1 minuto" }, + "1 notification": { + "1 notification": "" + }, "1 second": { "1 second": "1 segundo" }, @@ -128,6 +137,9 @@ "About": { "About": "Sobre" }, + "Accent Color": { + "Accent Color": "" + }, "Accept Jobs": { "Accept Jobs": "Aceitar Trabalhos" }, @@ -413,6 +425,9 @@ "Available Screens (%1)": { "Available Screens (%1)": "" }, + "Available in Detailed and Forecast view modes": { + "Available in Detailed and Forecast view modes": "" + }, "BSSID": { "BSSID": "BSSID" }, @@ -500,6 +515,9 @@ "Border Opacity": { "Border Opacity": "Opacidade da Borda" }, + "Border Size": { + "Border Size": "" + }, "Border Thickness": { "Border Thickness": "Espessura da Borda" }, @@ -626,6 +644,9 @@ "Choose colors from palette": { "Choose colors from palette": "" }, + "Choose how the weather widget is displayed": { + "Choose how the weather widget is displayed": "" + }, "Choose icon": { "Choose icon": "Escolher Ícone" }, @@ -755,6 +776,9 @@ "Communication": { "Communication": "Comunicação" }, + "Compact": { + "Compact": "" + }, "Compact Mode": { "Compact Mode": "Modo Compacto" }, @@ -911,6 +935,9 @@ "Custom": { "Custom": "Customizado" }, + "Custom Color": { + "Custom Color": "" + }, "Custom Duration": { "Custom Duration": "" }, @@ -1073,6 +1100,9 @@ "Desktop clock widget name": { "Desktop Clock": "" }, + "Detailed": { + "Detailed": "" + }, "Development": { "Development": "Desenvolvimento" }, @@ -1160,6 +1190,9 @@ "Display currently focused application title": { "Display currently focused application title": "Mostrar título do app em foco" }, + "Display hourly weather predictions": { + "Display hourly weather predictions": "" + }, "Display only workspaces that contain windows": { "Display only workspaces that contain windows": "Mostrar apenas áreas de trabalho que possuem janelas" }, @@ -1535,6 +1568,9 @@ "Failed to write temp file for validation": { "Failed to write temp file for validation": "" }, + "Feels": { + "Feels": "" + }, "Feels Like": { "Feels Like": "Sensação Térmica" }, @@ -1616,6 +1652,12 @@ "Force terminal applications to always use dark color schemes": { "Force terminal applications to always use dark color schemes": "Forçar aplicativos de terminal a usar sempre temas escuros" }, + "Forecast": { + "Forecast": "" + }, + "Forecast Days": { + "Forecast Days": "" + }, "Forecast Not Available": { "Forecast Not Available": "Previsão do Tempo não Disponível" }, @@ -1769,12 +1811,18 @@ "Hourly Forecast": { "Hourly Forecast": "Previsão do Tempo Horária" }, + "Hourly Forecast Count": { + "Hourly Forecast Count": "" + }, "How often to change wallpaper": { "How often to change wallpaper": "Tempo entre papéis de parede" }, "Humidity": { "Humidity": "Umidade" }, + "Hyprland Layout Overrides": { + "Hyprland Layout Overrides": "" + }, "I Understand": { "I Understand": "Entendi" }, @@ -2042,6 +2090,9 @@ "Management": { "Management": "" }, + "MangoWC Layout Overrides": { + "MangoWC Layout Overrides": "" + }, "Manual Coordinates": { "Manual Coordinates": "Coordenadas Manuais" }, @@ -2306,6 +2357,9 @@ "No VPN profiles": { "No VPN profiles": "Sem perfis de VPN" }, + "No Weather Data": { + "No Weather Data": "" + }, "No Weather Data Available": { "No Weather Data Available": "Informações de Clima não dispóniveis" }, @@ -2396,6 +2450,9 @@ "Not connected": { "Not connected": "Não conectado" }, + "Not detected": { + "Not detected": "" + }, "Note: this only changes the percentage, it does not actually limit charging.": { "Note: this only changes the percentage, it does not actually limit charging.": "" }, @@ -2510,6 +2567,9 @@ "Override": { "Override": "Sobrescrever" }, + "Override Border Size": { + "Override Border Size": "" + }, "Override Corner Radius": { "Override Corner Radius": "Sobrescrever Arredondamento" }, @@ -2684,6 +2744,9 @@ "Power source": { "Power source": "Fonte de energia" }, + "Precip": { + "Precip": "" + }, "Precipitation Chance": { "Precipitation Chance": "Chance de Precipitação" }, @@ -2885,6 +2948,12 @@ "Rounded corners for windows": { "Rounded corners for windows": "" }, + "Rounded corners for windows (border_radius)": { + "Rounded corners for windows (border_radius)": "" + }, + "Rounded corners for windows (decoration.rounding)": { + "Rounded corners for windows (decoration.rounding)": "" + }, "Run DMS Templates": { "Run DMS Templates": "Rodar templates do DMS" }, @@ -3113,6 +3182,12 @@ "Show Dock": { "Show Dock": "Mostrar Dock" }, + "Show Feels Like Temperature": { + "Show Feels Like Temperature": "" + }, + "Show Forecast": { + "Show Forecast": "" + }, "Show GPU Temperature": { "Show GPU Temperature": "" }, @@ -3125,9 +3200,18 @@ "Show Hour Numbers": { "Show Hour Numbers": "" }, + "Show Hourly Forecast": { + "Show Hourly Forecast": "" + }, + "Show Humidity": { + "Show Humidity": "" + }, "Show Line Numbers": { "Show Line Numbers": "Mostrar Numeração de Linha" }, + "Show Location": { + "Show Location": "" + }, "Show Lock": { "Show Lock": "Mostrar Bloquear" }, @@ -3152,6 +3236,12 @@ "Show Power Off": { "Show Power Off": "Mostra Desligar" }, + "Show Precipitation Probability": { + "Show Precipitation Probability": "" + }, + "Show Pressure": { + "Show Pressure": "" + }, "Show Reboot": { "Show Reboot": "Mostrar Reiniciar" }, @@ -3161,12 +3251,24 @@ "Show Seconds": { "Show Seconds": "" }, + "Show Sunrise/Sunset": { + "Show Sunrise/Sunset": "" + }, "Show Suspend": { "Show Suspend": "Mostrar Suspender" }, "Show Top Processes": { "Show Top Processes": "" }, + "Show Weather Condition": { + "Show Weather Condition": "" + }, + "Show Welcome": { + "Show Welcome": "" + }, + "Show Wind Speed": { + "Show Wind Speed": "" + }, "Show Workspace Apps": { "Show Workspace Apps": "Mostrar Aplicativos da Área de Trabalho Virtual" }, @@ -3296,6 +3398,12 @@ "Space between windows": { "Space between windows": "" }, + "Space between windows (gappih/gappiv/gappoh/gappov)": { + "Space between windows (gappih/gappiv/gappoh/gappov)": "" + }, + "Space between windows (gaps_in and gaps_out)": { + "Space between windows (gaps_in and gaps_out)": "" + }, "Spacer": { "Spacer": "Espaçador" }, @@ -3317,6 +3425,9 @@ "Stacked": { "Stacked": "" }, + "Standard": { + "Standard": "" + }, "Start": { "Start": "Iniciar" }, @@ -3539,6 +3650,9 @@ "Toner Low": { "Toner Low": "Toner Baixo" }, + "Tools": { + "Tools": "" + }, "Top": { "Top": "Topo" }, @@ -3650,6 +3764,12 @@ "Use animated wave progress bars for media playback": { "Use animated wave progress bars for media playback": "Usar barras de progresso de ondas animadas para reprodução de mídia" }, + "Use custom border size": { + "Use custom border size": "" + }, + "Use custom border/focus-ring width": { + "Use custom border/focus-ring width": "" + }, "Use custom command for update your system": { "Use custom command for update your system": "Usar comando personalizado para atualizar seu sistema" }, @@ -3659,6 +3779,9 @@ "Use custom window radius instead of theme radius": { "Use custom window radius instead of theme radius": "" }, + "Use custom window rounding instead of theme radius": { + "Use custom window rounding instead of theme radius": "" + }, "Use fingerprint reader for lock screen authentication (requires enrolled fingerprints)": { "Use fingerprint reader for lock screen authentication (requires enrolled fingerprints)": "Usar leitor de impressões digitais para autenticação na tela de bloqueio (requer impressões cadastradas)" }, @@ -3674,6 +3797,9 @@ "Used": { "Used": "Usado" }, + "Used when accent color is set to Custom": { + "Used when accent color is set to Custom": "" + }, "User": { "User": "" }, @@ -3749,6 +3875,9 @@ "Vibrant palette with playful saturation.": { "Vibrant palette with playful saturation.": "Paleta vibrante com saturação divertida." }, + "View Mode": { + "View Mode": "" + }, "Visibility": { "Visibility": "Visibilidade" }, @@ -3865,6 +3994,15 @@ "Widget removed": { "Widget removed": "" }, + "Width of window border (borderpx)": { + "Width of window border (borderpx)": "" + }, + "Width of window border (general.border_size)": { + "Width of window border (general.border_size)": "" + }, + "Width of window border and focus ring": { + "Width of window border and focus ring": "" + }, "Wind": { "Wind": "Vento" }, @@ -3880,6 +4018,9 @@ "Window Gaps (px)": { "Window Gaps (px)": "" }, + "Window Rounding": { + "Window Rounding": "" + }, "Workspace": { "Workspace": "Área de Trabalho" }, @@ -4000,6 +4141,145 @@ "generic theme description": { "Material Design inspired color themes": "" }, + "greeter back button": { + "Back": "" + }, + "greeter completion page subtitle": { + "DankMaterialShell is ready to use": "" + }, + "greeter completion page title": { + "You're All Set!": "" + }, + "greeter configure keybinds link": { + "Configure Keybinds": "" + }, + "greeter dankbar description": { + "Widgets, layout, style": "" + }, + "greeter displays description": { + "Resolution, position, scale": "" + }, + "greeter dock description": { + "Position, pinned apps": "" + }, + "greeter doctor page button": { + "Run Again": "" + }, + "greeter doctor page empty state": { + "No checks passed": "", + "No errors": "", + "No info items": "", + "No warnings": "" + }, + "greeter doctor page error count": { + "%1 issue(s) found": "" + }, + "greeter doctor page loading text": { + "Analyzing configuration...": "" + }, + "greeter doctor page status card": { + "Errors": "", + "Info": "", + "OK": "", + "Warnings": "" + }, + "greeter doctor page success": { + "All checks passed": "" + }, + "greeter doctor page title": { + "System Check": "" + }, + "greeter documentation link": { + "Docs": "" + }, + "greeter explore section header": { + "Explore": "" + }, + "greeter feature card description": { + "Background app icons": "", + "Colors from wallpaper": "", + "Community themes": "", + "Extensible architecture": "", + "GTK, Qt, IDEs, more": "", + "Modular widget bar": "", + "Night mode & gamma": "", + "Per-screen config": "", + "Quick system toggles": "" + }, + "greeter feature card title": { + "App Theming": "", + "Control Center": "", + "Display Control": "", + "Dynamic Theming": "", + "Multi-Monitor": "", + "System Tray": "", + "Theme Registry": "" + }, + "greeter feature card title | greeter plugins link": { + "Plugins": "" + }, + "greeter feature card title | greeter settings link": { + "DankBar": "" + }, + "greeter finish button": { + "Finish": "" + }, + "greeter first page button": { + "Get Started": "" + }, + "greeter keybinds niri description": { + "niri shortcuts config": "" + }, + "greeter keybinds section header": { + "DMS Shortcuts": "" + }, + "greeter modal window title": { + "Welcome": "" + }, + "greeter next button": { + "Next": "" + }, + "greeter no keybinds message": { + "No DMS shortcuts configured": "" + }, + "greeter notifications description": { + "Popup behavior, position": "" + }, + "greeter settings link": { + "Displays": "", + "Dock": "", + "Keybinds": "", + "Notifications": "", + "Theme & Colors": "", + "Wallpaper": "" + }, + "greeter settings section header": { + "Configure": "" + }, + "greeter skip button": { + "Skip": "" + }, + "greeter skip button tooltip": { + "Skip setup": "" + }, + "greeter theme description": { + "Dynamic colors, presets": "" + }, + "greeter themes link": { + "Themes": "" + }, + "greeter wallpaper description": { + "Background image": "" + }, + "greeter welcome page section header": { + "Features": "" + }, + "greeter welcome page tagline": { + "A modern desktop shell for Wayland compositors": "" + }, + "greeter welcome page title": { + "Welcome to DankMaterialShell": "" + }, "install action button": { "Install": "" }, @@ -4021,6 +4301,19 @@ "loading indicator": { "Loading...": "" }, + "lock screen notification mode option": { + "App Names": "", + "Count Only": "", + "Disabled": "", + "Full Content": "" + }, + "lock screen notification privacy setting": { + "Control what notification information is shown on the lock screen": "", + "Notification Display": "" + }, + "lock screen notifications settings card": { + "Lock Screen": "" + }, "loginctl not available - lock integration requires DMS socket connection": { "loginctl not available - lock integration requires DMS socket connection": "loginctl não disponível - integração com bloqueio requer conexão de socket DMS" }, diff --git a/quickshell/translations/poexports/tr.json b/quickshell/translations/poexports/tr.json index 12ebb478..cc24ace3 100644 --- a/quickshell/translations/poexports/tr.json +++ b/quickshell/translations/poexports/tr.json @@ -23,6 +23,9 @@ "%1 job(s)": { "%1 job(s)": "%1 iş" }, + "%1 notifications": { + "%1 notifications": "" + }, "%1 printer(s)": { "%1 printer(s)": "%1 yazıcı" }, @@ -38,6 +41,9 @@ "(Unnamed)": { "(Unnamed)": "(İsimsiz)" }, + "+ %1 more": { + "+ %1 more": "" + }, "0 = square corners": { "0 = square corners": "0 = kare köşeler" }, @@ -50,6 +56,9 @@ "1 minute": { "1 minute": "1 dakika" }, + "1 notification": { + "1 notification": "" + }, "1 second": { "1 second": "1 saniye" }, @@ -128,6 +137,9 @@ "About": { "About": "Hakkında" }, + "Accent Color": { + "Accent Color": "" + }, "Accept Jobs": { "Accept Jobs": "İşleri Kabul Et" }, @@ -413,6 +425,9 @@ "Available Screens (%1)": { "Available Screens (%1)": "Kullanılabilir Ekranlar (%1)" }, + "Available in Detailed and Forecast view modes": { + "Available in Detailed and Forecast view modes": "" + }, "BSSID": { "BSSID": "BSSID" }, @@ -500,6 +515,9 @@ "Border Opacity": { "Border Opacity": "Kenarlık Opaklığı" }, + "Border Size": { + "Border Size": "" + }, "Border Thickness": { "Border Thickness": "Kenarlık Kalınlığı" }, @@ -626,6 +644,9 @@ "Choose colors from palette": { "Choose colors from palette": "Paletten renkler seç" }, + "Choose how the weather widget is displayed": { + "Choose how the weather widget is displayed": "" + }, "Choose icon": { "Choose icon": "Simge seçin" }, @@ -755,6 +776,9 @@ "Communication": { "Communication": "İletişim" }, + "Compact": { + "Compact": "" + }, "Compact Mode": { "Compact Mode": "Kompakt Mod" }, @@ -911,6 +935,9 @@ "Custom": { "Custom": "Özel" }, + "Custom Color": { + "Custom Color": "" + }, "Custom Duration": { "Custom Duration": "Özel Süre" }, @@ -1073,6 +1100,9 @@ "Desktop clock widget name": { "Desktop Clock": "Masaüstü Saati" }, + "Detailed": { + "Detailed": "" + }, "Development": { "Development": "Geliştirme" }, @@ -1160,6 +1190,9 @@ "Display currently focused application title": { "Display currently focused application title": "Şu anda odaklanmış uygulamanın başlığını göster" }, + "Display hourly weather predictions": { + "Display hourly weather predictions": "" + }, "Display only workspaces that contain windows": { "Display only workspaces that contain windows": "Yalnızca pencere içeren çalışma alanlarını göster" }, @@ -1535,6 +1568,9 @@ "Failed to write temp file for validation": { "Failed to write temp file for validation": "Doğrulama için geçici dosya yazılmadı" }, + "Feels": { + "Feels": "" + }, "Feels Like": { "Feels Like": "Hissedilen" }, @@ -1616,6 +1652,12 @@ "Force terminal applications to always use dark color schemes": { "Force terminal applications to always use dark color schemes": "Terminal uygulamalarının her zaman koyu renk şemalarını kullanmasını zorla" }, + "Forecast": { + "Forecast": "" + }, + "Forecast Days": { + "Forecast Days": "" + }, "Forecast Not Available": { "Forecast Not Available": "Hava Tahmini Mevcut Değil" }, @@ -1769,12 +1811,18 @@ "Hourly Forecast": { "Hourly Forecast": "Saatlik Hava Tahmini" }, + "Hourly Forecast Count": { + "Hourly Forecast Count": "" + }, "How often to change wallpaper": { "How often to change wallpaper": "Duvar kağıdı değiştirme sıklığı" }, "Humidity": { "Humidity": "Nem" }, + "Hyprland Layout Overrides": { + "Hyprland Layout Overrides": "" + }, "I Understand": { "I Understand": "Anladım" }, @@ -2042,6 +2090,9 @@ "Management": { "Management": "Yönetim" }, + "MangoWC Layout Overrides": { + "MangoWC Layout Overrides": "" + }, "Manual Coordinates": { "Manual Coordinates": "Manuel Koordinatlar" }, @@ -2306,6 +2357,9 @@ "No VPN profiles": { "No VPN profiles": "VPN profili yok" }, + "No Weather Data": { + "No Weather Data": "" + }, "No Weather Data Available": { "No Weather Data Available": "Hava Durumu Verileri Mevcut Değil" }, @@ -2396,6 +2450,9 @@ "Not connected": { "Not connected": "Bağlı değil" }, + "Not detected": { + "Not detected": "" + }, "Note: this only changes the percentage, it does not actually limit charging.": { "Note: this only changes the percentage, it does not actually limit charging.": "Not: Bu sadece yüzdeyi değiştirir, şarjı sınırlamaz." }, @@ -2510,6 +2567,9 @@ "Override": { "Override": "Geçersiz Kıl" }, + "Override Border Size": { + "Override Border Size": "" + }, "Override Corner Radius": { "Override Corner Radius": "Köşe Yarıçapını Değiştir" }, @@ -2684,6 +2744,9 @@ "Power source": { "Power source": "Güç kaynağı" }, + "Precip": { + "Precip": "" + }, "Precipitation Chance": { "Precipitation Chance": "Yağış Olasılığı" }, @@ -2885,6 +2948,12 @@ "Rounded corners for windows": { "Rounded corners for windows": "Pencereler için yuvarlatılmış köşeler" }, + "Rounded corners for windows (border_radius)": { + "Rounded corners for windows (border_radius)": "" + }, + "Rounded corners for windows (decoration.rounding)": { + "Rounded corners for windows (decoration.rounding)": "" + }, "Run DMS Templates": { "Run DMS Templates": "DMS Şablonlarını Çalıştır" }, @@ -3113,6 +3182,12 @@ "Show Dock": { "Show Dock": "Dock'u Göster" }, + "Show Feels Like Temperature": { + "Show Feels Like Temperature": "" + }, + "Show Forecast": { + "Show Forecast": "" + }, "Show GPU Temperature": { "Show GPU Temperature": "GPU Sıcaklığını Göster" }, @@ -3125,9 +3200,18 @@ "Show Hour Numbers": { "Show Hour Numbers": "Saat Numaralarını Göster" }, + "Show Hourly Forecast": { + "Show Hourly Forecast": "" + }, + "Show Humidity": { + "Show Humidity": "" + }, "Show Line Numbers": { "Show Line Numbers": "Satır Numaralarını Göster" }, + "Show Location": { + "Show Location": "" + }, "Show Lock": { "Show Lock": "Kilitleyi Göster" }, @@ -3152,6 +3236,12 @@ "Show Power Off": { "Show Power Off": "Kapatı Göster" }, + "Show Precipitation Probability": { + "Show Precipitation Probability": "" + }, + "Show Pressure": { + "Show Pressure": "" + }, "Show Reboot": { "Show Reboot": "Yeniden Başlatı Göster" }, @@ -3161,12 +3251,24 @@ "Show Seconds": { "Show Seconds": "Saniyeleri Göster" }, + "Show Sunrise/Sunset": { + "Show Sunrise/Sunset": "" + }, "Show Suspend": { "Show Suspend": "Askıya Alı Göster" }, "Show Top Processes": { "Show Top Processes": "En Üst İşlemleri Göster" }, + "Show Weather Condition": { + "Show Weather Condition": "" + }, + "Show Welcome": { + "Show Welcome": "" + }, + "Show Wind Speed": { + "Show Wind Speed": "" + }, "Show Workspace Apps": { "Show Workspace Apps": "Çalışma Alanı Uygulamalarını Göster" }, @@ -3296,6 +3398,12 @@ "Space between windows": { "Space between windows": "Pencereler arası boşluk" }, + "Space between windows (gappih/gappiv/gappoh/gappov)": { + "Space between windows (gappih/gappiv/gappoh/gappov)": "" + }, + "Space between windows (gaps_in and gaps_out)": { + "Space between windows (gaps_in and gaps_out)": "" + }, "Spacer": { "Spacer": "Boşluklandırıcı" }, @@ -3317,6 +3425,9 @@ "Stacked": { "Stacked": "Yığılmış" }, + "Standard": { + "Standard": "" + }, "Start": { "Start": "Başlat" }, @@ -3539,6 +3650,9 @@ "Toner Low": { "Toner Low": "Toner Az" }, + "Tools": { + "Tools": "" + }, "Top": { "Top": "Üst" }, @@ -3650,6 +3764,12 @@ "Use animated wave progress bars for media playback": { "Use animated wave progress bars for media playback": "Medya oynatımı için animasyonlu dalga ilerleme çubukları kullanın" }, + "Use custom border size": { + "Use custom border size": "" + }, + "Use custom border/focus-ring width": { + "Use custom border/focus-ring width": "" + }, "Use custom command for update your system": { "Use custom command for update your system": "Sistemi güncellemek için özel komut kullan" }, @@ -3659,6 +3779,9 @@ "Use custom window radius instead of theme radius": { "Use custom window radius instead of theme radius": "Tema yarıçapı yerine özel pencere yarıçapı kullanın" }, + "Use custom window rounding instead of theme radius": { + "Use custom window rounding instead of theme radius": "" + }, "Use fingerprint reader for lock screen authentication (requires enrolled fingerprints)": { "Use fingerprint reader for lock screen authentication (requires enrolled fingerprints)": "Kilit ekranı doğrulaması için parmak izi okuyucuyu kullan (kayıtlı parmak izleri gereklidir)" }, @@ -3674,6 +3797,9 @@ "Used": { "Used": "Kullanıldı" }, + "Used when accent color is set to Custom": { + "Used when accent color is set to Custom": "" + }, "User": { "User": "Kullanıcı" }, @@ -3749,6 +3875,9 @@ "Vibrant palette with playful saturation.": { "Vibrant palette with playful saturation.": "Oynak doygunluğa sahip canlı palet" }, + "View Mode": { + "View Mode": "" + }, "Visibility": { "Visibility": "Görüş" }, @@ -3865,6 +3994,15 @@ "Widget removed": { "Widget removed": "Widget kaldırıldı" }, + "Width of window border (borderpx)": { + "Width of window border (borderpx)": "" + }, + "Width of window border (general.border_size)": { + "Width of window border (general.border_size)": "" + }, + "Width of window border and focus ring": { + "Width of window border and focus ring": "" + }, "Wind": { "Wind": "Rüzgar" }, @@ -3880,6 +4018,9 @@ "Window Gaps (px)": { "Window Gaps (px)": "Pencere Boşlukları (px)" }, + "Window Rounding": { + "Window Rounding": "" + }, "Workspace": { "Workspace": "Çalışma Alanı" }, @@ -4000,6 +4141,145 @@ "generic theme description": { "Material Design inspired color themes": "Malzeme Tasarımı'ndan ilham alan renk temaları" }, + "greeter back button": { + "Back": "" + }, + "greeter completion page subtitle": { + "DankMaterialShell is ready to use": "" + }, + "greeter completion page title": { + "You're All Set!": "" + }, + "greeter configure keybinds link": { + "Configure Keybinds": "" + }, + "greeter dankbar description": { + "Widgets, layout, style": "" + }, + "greeter displays description": { + "Resolution, position, scale": "" + }, + "greeter dock description": { + "Position, pinned apps": "" + }, + "greeter doctor page button": { + "Run Again": "" + }, + "greeter doctor page empty state": { + "No checks passed": "", + "No errors": "", + "No info items": "", + "No warnings": "" + }, + "greeter doctor page error count": { + "%1 issue(s) found": "" + }, + "greeter doctor page loading text": { + "Analyzing configuration...": "" + }, + "greeter doctor page status card": { + "Errors": "", + "Info": "", + "OK": "", + "Warnings": "" + }, + "greeter doctor page success": { + "All checks passed": "" + }, + "greeter doctor page title": { + "System Check": "" + }, + "greeter documentation link": { + "Docs": "" + }, + "greeter explore section header": { + "Explore": "" + }, + "greeter feature card description": { + "Background app icons": "", + "Colors from wallpaper": "", + "Community themes": "", + "Extensible architecture": "", + "GTK, Qt, IDEs, more": "", + "Modular widget bar": "", + "Night mode & gamma": "", + "Per-screen config": "", + "Quick system toggles": "" + }, + "greeter feature card title": { + "App Theming": "", + "Control Center": "", + "Display Control": "", + "Dynamic Theming": "", + "Multi-Monitor": "", + "System Tray": "", + "Theme Registry": "" + }, + "greeter feature card title | greeter plugins link": { + "Plugins": "" + }, + "greeter feature card title | greeter settings link": { + "DankBar": "" + }, + "greeter finish button": { + "Finish": "" + }, + "greeter first page button": { + "Get Started": "" + }, + "greeter keybinds niri description": { + "niri shortcuts config": "" + }, + "greeter keybinds section header": { + "DMS Shortcuts": "" + }, + "greeter modal window title": { + "Welcome": "" + }, + "greeter next button": { + "Next": "" + }, + "greeter no keybinds message": { + "No DMS shortcuts configured": "" + }, + "greeter notifications description": { + "Popup behavior, position": "" + }, + "greeter settings link": { + "Displays": "", + "Dock": "", + "Keybinds": "", + "Notifications": "", + "Theme & Colors": "", + "Wallpaper": "" + }, + "greeter settings section header": { + "Configure": "" + }, + "greeter skip button": { + "Skip": "" + }, + "greeter skip button tooltip": { + "Skip setup": "" + }, + "greeter theme description": { + "Dynamic colors, presets": "" + }, + "greeter themes link": { + "Themes": "" + }, + "greeter wallpaper description": { + "Background image": "" + }, + "greeter welcome page section header": { + "Features": "" + }, + "greeter welcome page tagline": { + "A modern desktop shell for Wayland compositors": "" + }, + "greeter welcome page title": { + "Welcome to DankMaterialShell": "" + }, "install action button": { "Install": "Yükle" }, @@ -4021,6 +4301,19 @@ "loading indicator": { "Loading...": "Yükleniyor..." }, + "lock screen notification mode option": { + "App Names": "", + "Count Only": "", + "Disabled": "", + "Full Content": "" + }, + "lock screen notification privacy setting": { + "Control what notification information is shown on the lock screen": "", + "Notification Display": "" + }, + "lock screen notifications settings card": { + "Lock Screen": "" + }, "loginctl not available - lock integration requires DMS socket connection": { "loginctl not available - lock integration requires DMS socket connection": "loginctl kullanılabilir değil - kilit entegrasyonu DMS soket bağlantısı gerektirir" }, diff --git a/quickshell/translations/poexports/zh_CN.json b/quickshell/translations/poexports/zh_CN.json index 20ad1a5e..da725f79 100644 --- a/quickshell/translations/poexports/zh_CN.json +++ b/quickshell/translations/poexports/zh_CN.json @@ -15,7 +15,7 @@ "%1 connected": "已连接 %1" }, "%1 days ago": { - "%1 days ago": "" + "%1 days ago": "%1天之前" }, "%1 display(s)": { "%1 display(s)": "%1 显示" @@ -23,6 +23,9 @@ "%1 job(s)": { "%1 job(s)": "%1 个任务" }, + "%1 notifications": { + "%1 notifications": "" + }, "%1 printer(s)": { "%1 printer(s)": "%1 个打印机" }, @@ -33,11 +36,14 @@ "%1 widgets": "%1 部件" }, "%1m ago": { - "%1m ago": "" + "%1m ago": "%1分之前" }, "(Unnamed)": { "(Unnamed)": "(未命名)" }, + "+ %1 more": { + "+ %1 more": "" + }, "0 = square corners": { "0 = square corners": "0 = 直角" }, @@ -50,6 +56,9 @@ "1 minute": { "1 minute": "1 分钟" }, + "1 notification": { + "1 notification": "" + }, "1 second": { "1 second": "1 秒" }, @@ -128,6 +137,9 @@ "About": { "About": "关于" }, + "Accent Color": { + "Accent Color": "" + }, "Accept Jobs": { "Accept Jobs": "接受任务" }, @@ -413,6 +425,9 @@ "Available Screens (%1)": { "Available Screens (%1)": "可用屏幕(%1)" }, + "Available in Detailed and Forecast view modes": { + "Available in Detailed and Forecast view modes": "" + }, "BSSID": { "BSSID": "BSSID" }, @@ -500,6 +515,9 @@ "Border Opacity": { "Border Opacity": "边框透明度" }, + "Border Size": { + "Border Size": "" + }, "Border Thickness": { "Border Thickness": "边框厚度" }, @@ -626,6 +644,9 @@ "Choose colors from palette": { "Choose colors from palette": "从调色板中选择颜色" }, + "Choose how the weather widget is displayed": { + "Choose how the weather widget is displayed": "" + }, "Choose icon": { "Choose icon": "选择图标" }, @@ -755,6 +776,9 @@ "Communication": { "Communication": "通讯" }, + "Compact": { + "Compact": "" + }, "Compact Mode": { "Compact Mode": "紧凑模式" }, @@ -911,6 +935,9 @@ "Custom": { "Custom": "自定义" }, + "Custom Color": { + "Custom Color": "" + }, "Custom Duration": { "Custom Duration": "自定义持续时间" }, @@ -1073,6 +1100,9 @@ "Desktop clock widget name": { "Desktop Clock": "桌面时钟" }, + "Detailed": { + "Detailed": "" + }, "Development": { "Development": "开发" }, @@ -1160,6 +1190,9 @@ "Display currently focused application title": { "Display currently focused application title": "显示当前聚焦应用的标题" }, + "Display hourly weather predictions": { + "Display hourly weather predictions": "" + }, "Display only workspaces that contain windows": { "Display only workspaces that contain windows": "只显示包含窗口的工作区" }, @@ -1380,7 +1413,7 @@ "Fade to lock screen": "淡出至锁定屏幕" }, "Fade to monitor off": { - "Fade to monitor off": "" + "Fade to monitor off": "淡出至显示器关闭" }, "Failed to activate configuration": { "Failed to activate configuration": "无法应用配置" @@ -1535,6 +1568,9 @@ "Failed to write temp file for validation": { "Failed to write temp file for validation": "未能写入临时文件进行验证" }, + "Feels": { + "Feels": "" + }, "Feels Like": { "Feels Like": "体感温度" }, @@ -1616,6 +1652,12 @@ "Force terminal applications to always use dark color schemes": { "Force terminal applications to always use dark color schemes": "强制终端应用使用暗色" }, + "Forecast": { + "Forecast": "" + }, + "Forecast Days": { + "Forecast Days": "" + }, "Forecast Not Available": { "Forecast Not Available": "暂无预报" }, @@ -1674,7 +1716,7 @@ "Gradually fade the screen before locking with a configurable grace period": "在锁定前通过可配置的宽限期逐渐淡出屏幕" }, "Gradually fade the screen before turning off monitors with a configurable grace period": { - "Gradually fade the screen before turning off monitors with a configurable grace period": "" + "Gradually fade the screen before turning off monitors with a configurable grace period": "在关闭显示器前逐渐淡出屏幕,淡出时间可配置" }, "Graph Time Range": { "Graph Time Range": "图表时间范围" @@ -1769,12 +1811,18 @@ "Hourly Forecast": { "Hourly Forecast": "每小时预报" }, + "Hourly Forecast Count": { + "Hourly Forecast Count": "" + }, "How often to change wallpaper": { "How often to change wallpaper": "壁纸轮换频率" }, "Humidity": { "Humidity": "湿度" }, + "Hyprland Layout Overrides": { + "Hyprland Layout Overrides": "" + }, "I Understand": { "I Understand": "我明白以上内容" }, @@ -2010,7 +2058,7 @@ "Lock before suspend": "挂起前锁屏" }, "Lock fade grace period": { - "Lock fade grace period": "" + "Lock fade grace period": "锁定淡出时间" }, "Log Out": { "Log Out": "注销" @@ -2042,6 +2090,9 @@ "Management": { "Management": "管理" }, + "MangoWC Layout Overrides": { + "MangoWC Layout Overrides": "" + }, "Manual Coordinates": { "Manual Coordinates": "手动设置坐标" }, @@ -2187,7 +2238,7 @@ "Monitor Configuration": "监视器配置" }, "Monitor fade grace period": { - "Monitor fade grace period": "" + "Monitor fade grace period": "显示器淡出时间" }, "Monitor whose wallpaper drives dynamic theming colors": { "Monitor whose wallpaper drives dynamic theming colors": "监视使用动态主题色的壁纸" @@ -2306,6 +2357,9 @@ "No VPN profiles": { "No VPN profiles": "无 VPN 配置" }, + "No Weather Data": { + "No Weather Data": "" + }, "No Weather Data Available": { "No Weather Data Available": "暂无天气数据" }, @@ -2396,6 +2450,9 @@ "Not connected": { "Not connected": "未连接" }, + "Not detected": { + "Not detected": "" + }, "Note: this only changes the percentage, it does not actually limit charging.": { "Note: this only changes the percentage, it does not actually limit charging.": "注意:这只会改变百分比,而不会实际限制充电。" }, @@ -2510,6 +2567,9 @@ "Override": { "Override": "覆盖" }, + "Override Border Size": { + "Override Border Size": "" + }, "Override Corner Radius": { "Override Corner Radius": "覆盖角半径" }, @@ -2684,6 +2744,9 @@ "Power source": { "Power source": "电源" }, + "Precip": { + "Precip": "" + }, "Precipitation Chance": { "Precipitation Chance": "降水概率" }, @@ -2885,6 +2948,12 @@ "Rounded corners for windows": { "Rounded corners for windows": "窗口圆角" }, + "Rounded corners for windows (border_radius)": { + "Rounded corners for windows (border_radius)": "" + }, + "Rounded corners for windows (decoration.rounding)": { + "Rounded corners for windows (decoration.rounding)": "" + }, "Run DMS Templates": { "Run DMS Templates": "运行DMS模板" }, @@ -3113,6 +3182,12 @@ "Show Dock": { "Show Dock": "显示程序坞" }, + "Show Feels Like Temperature": { + "Show Feels Like Temperature": "" + }, + "Show Forecast": { + "Show Forecast": "" + }, "Show GPU Temperature": { "Show GPU Temperature": "显示GPU温度" }, @@ -3125,9 +3200,18 @@ "Show Hour Numbers": { "Show Hour Numbers": "显示小时数" }, + "Show Hourly Forecast": { + "Show Hourly Forecast": "" + }, + "Show Humidity": { + "Show Humidity": "" + }, "Show Line Numbers": { "Show Line Numbers": "显示行号" }, + "Show Location": { + "Show Location": "" + }, "Show Lock": { "Show Lock": "显示锁定" }, @@ -3152,6 +3236,12 @@ "Show Power Off": { "Show Power Off": "显示关机" }, + "Show Precipitation Probability": { + "Show Precipitation Probability": "" + }, + "Show Pressure": { + "Show Pressure": "" + }, "Show Reboot": { "Show Reboot": "显示重启" }, @@ -3161,12 +3251,24 @@ "Show Seconds": { "Show Seconds": "显示秒数" }, + "Show Sunrise/Sunset": { + "Show Sunrise/Sunset": "" + }, "Show Suspend": { "Show Suspend": "显示挂起" }, "Show Top Processes": { "Show Top Processes": "显示占用多的进程" }, + "Show Weather Condition": { + "Show Weather Condition": "" + }, + "Show Welcome": { + "Show Welcome": "" + }, + "Show Wind Speed": { + "Show Wind Speed": "" + }, "Show Workspace Apps": { "Show Workspace Apps": "显示工作区内应用" }, @@ -3296,6 +3398,12 @@ "Space between windows": { "Space between windows": "窗口间空隙" }, + "Space between windows (gappih/gappiv/gappoh/gappov)": { + "Space between windows (gappih/gappiv/gappoh/gappov)": "" + }, + "Space between windows (gaps_in and gaps_out)": { + "Space between windows (gaps_in and gaps_out)": "" + }, "Spacer": { "Spacer": "空白占位" }, @@ -3317,6 +3425,9 @@ "Stacked": { "Stacked": "堆叠" }, + "Standard": { + "Standard": "" + }, "Start": { "Start": "开始" }, @@ -3539,6 +3650,9 @@ "Toner Low": { "Toner Low": "碳粉不足" }, + "Tools": { + "Tools": "" + }, "Top": { "Top": "顶部" }, @@ -3650,6 +3764,12 @@ "Use animated wave progress bars for media playback": { "Use animated wave progress bars for media playback": "进行媒体播放时显示动画波形进度条" }, + "Use custom border size": { + "Use custom border size": "" + }, + "Use custom border/focus-ring width": { + "Use custom border/focus-ring width": "" + }, "Use custom command for update your system": { "Use custom command for update your system": "使用自定义命令来更新系统" }, @@ -3659,6 +3779,9 @@ "Use custom window radius instead of theme radius": { "Use custom window radius instead of theme radius": "使用自定义窗口半径替代主题半径" }, + "Use custom window rounding instead of theme radius": { + "Use custom window rounding instead of theme radius": "" + }, "Use fingerprint reader for lock screen authentication (requires enrolled fingerprints)": { "Use fingerprint reader for lock screen authentication (requires enrolled fingerprints)": "使用指纹识别进行锁屏验证(需要录入指纹)" }, @@ -3674,6 +3797,9 @@ "Used": { "Used": "已使用" }, + "Used when accent color is set to Custom": { + "Used when accent color is set to Custom": "" + }, "User": { "User": "用户" }, @@ -3749,6 +3875,9 @@ "Vibrant palette with playful saturation.": { "Vibrant palette with playful saturation.": "充满活力的调色板,有着俏皮的饱和度。" }, + "View Mode": { + "View Mode": "" + }, "Visibility": { "Visibility": "能见度" }, @@ -3865,6 +3994,15 @@ "Widget removed": { "Widget removed": "部件已移除" }, + "Width of window border (borderpx)": { + "Width of window border (borderpx)": "" + }, + "Width of window border (general.border_size)": { + "Width of window border (general.border_size)": "" + }, + "Width of window border and focus ring": { + "Width of window border and focus ring": "" + }, "Wind": { "Wind": "风速" }, @@ -3880,6 +4018,9 @@ "Window Gaps (px)": { "Window Gaps (px)": "窗口间隙(像素)" }, + "Window Rounding": { + "Window Rounding": "" + }, "Workspace": { "Workspace": "工作区" }, @@ -4000,6 +4141,145 @@ "generic theme description": { "Material Design inspired color themes": "受Material设计启发的色彩主题" }, + "greeter back button": { + "Back": "" + }, + "greeter completion page subtitle": { + "DankMaterialShell is ready to use": "" + }, + "greeter completion page title": { + "You're All Set!": "" + }, + "greeter configure keybinds link": { + "Configure Keybinds": "" + }, + "greeter dankbar description": { + "Widgets, layout, style": "" + }, + "greeter displays description": { + "Resolution, position, scale": "" + }, + "greeter dock description": { + "Position, pinned apps": "" + }, + "greeter doctor page button": { + "Run Again": "" + }, + "greeter doctor page empty state": { + "No checks passed": "", + "No errors": "", + "No info items": "", + "No warnings": "" + }, + "greeter doctor page error count": { + "%1 issue(s) found": "" + }, + "greeter doctor page loading text": { + "Analyzing configuration...": "" + }, + "greeter doctor page status card": { + "Errors": "", + "Info": "", + "OK": "", + "Warnings": "" + }, + "greeter doctor page success": { + "All checks passed": "" + }, + "greeter doctor page title": { + "System Check": "" + }, + "greeter documentation link": { + "Docs": "" + }, + "greeter explore section header": { + "Explore": "" + }, + "greeter feature card description": { + "Background app icons": "", + "Colors from wallpaper": "", + "Community themes": "", + "Extensible architecture": "", + "GTK, Qt, IDEs, more": "", + "Modular widget bar": "", + "Night mode & gamma": "", + "Per-screen config": "", + "Quick system toggles": "" + }, + "greeter feature card title": { + "App Theming": "", + "Control Center": "", + "Display Control": "", + "Dynamic Theming": "", + "Multi-Monitor": "", + "System Tray": "", + "Theme Registry": "" + }, + "greeter feature card title | greeter plugins link": { + "Plugins": "" + }, + "greeter feature card title | greeter settings link": { + "DankBar": "" + }, + "greeter finish button": { + "Finish": "" + }, + "greeter first page button": { + "Get Started": "" + }, + "greeter keybinds niri description": { + "niri shortcuts config": "" + }, + "greeter keybinds section header": { + "DMS Shortcuts": "" + }, + "greeter modal window title": { + "Welcome": "" + }, + "greeter next button": { + "Next": "" + }, + "greeter no keybinds message": { + "No DMS shortcuts configured": "" + }, + "greeter notifications description": { + "Popup behavior, position": "" + }, + "greeter settings link": { + "Displays": "", + "Dock": "", + "Keybinds": "", + "Notifications": "", + "Theme & Colors": "", + "Wallpaper": "" + }, + "greeter settings section header": { + "Configure": "" + }, + "greeter skip button": { + "Skip": "" + }, + "greeter skip button tooltip": { + "Skip setup": "" + }, + "greeter theme description": { + "Dynamic colors, presets": "" + }, + "greeter themes link": { + "Themes": "" + }, + "greeter wallpaper description": { + "Background image": "" + }, + "greeter welcome page section header": { + "Features": "" + }, + "greeter welcome page tagline": { + "A modern desktop shell for Wayland compositors": "" + }, + "greeter welcome page title": { + "Welcome to DankMaterialShell": "" + }, "install action button": { "Install": "安装" }, @@ -4021,6 +4301,19 @@ "loading indicator": { "Loading...": "加载中..." }, + "lock screen notification mode option": { + "App Names": "", + "Count Only": "", + "Disabled": "", + "Full Content": "" + }, + "lock screen notification privacy setting": { + "Control what notification information is shown on the lock screen": "", + "Notification Display": "" + }, + "lock screen notifications settings card": { + "Lock Screen": "" + }, "loginctl not available - lock integration requires DMS socket connection": { "loginctl not available - lock integration requires DMS socket connection": "loginctl 不可用 - 启用锁定集成需连接 DMS socket" }, @@ -4049,48 +4342,48 @@ "No wallpaper selected": "未选择壁纸" }, "notification center tab": { - "Current": "", - "History": "" + "Current": "当前", + "History": "历史记录" }, "notification history filter": { - "All": "", - "Last hour": "", - "Today": "", - "Yesterday": "" + "All": "所有", + "Last hour": "上个小时", + "Today": "今天", + "Yesterday": "昨天" }, "notification history filter for content older than other filters": { - "Older": "" + "Older": "更早" }, "notification history filter | notification history retention option": { - "30 days": "", - "7 days": "" + "30 days": "30天", + "7 days": "7天" }, "notification history limit": { - "Maximum number of notifications to keep": "" + "Maximum number of notifications to keep": "保留通知的最大数量" }, "notification history retention option": { - "1 day": "", - "14 days": "", - "3 days": "", - "Forever": "" + "1 day": "1天", + "14 days": "14天", + "3 days": "3天", + "Forever": "永远" }, "notification history retention settings label": { - "History Retention": "" + "History Retention": "历史保留" }, "notification history setting": { - "Auto-delete notifications older than this": "", - "Save critical priority notifications to history": "", - "Save low priority notifications to history": "", - "Save normal priority notifications to history": "" + "Auto-delete notifications older than this": "自动删除在此之前的通知", + "Save critical priority notifications to history": "将关键优先级通知保存至历史", + "Save low priority notifications to history": "将低优先级通知保存至历史", + "Save normal priority notifications to history": "将一般优先级通知保存至历史" }, "notification history toggle description": { - "Save dismissed notifications to history": "" + "Save dismissed notifications to history": "将已关闭通知保存至历史" }, "notification history toggle label": { - "Enable History": "" + "Enable History": "启用历史记录" }, "now": { - "now": "" + "now": "现在" }, "official": { "official": "官方" @@ -4189,7 +4482,7 @@ "wtype not available - install wtype for paste support": "wtype不可用,为支持粘贴,请安装wtype" }, "yesterday": { - "yesterday": "" + "yesterday": "昨天" }, "• Install only from trusted sources": { "• Install only from trusted sources": "• 仅从可信来源安装" diff --git a/quickshell/translations/poexports/zh_TW.json b/quickshell/translations/poexports/zh_TW.json index b894a176..0a2b02de 100644 --- a/quickshell/translations/poexports/zh_TW.json +++ b/quickshell/translations/poexports/zh_TW.json @@ -15,7 +15,7 @@ "%1 connected": "%1 已連接" }, "%1 days ago": { - "%1 days ago": "" + "%1 days ago": "%1 天前" }, "%1 display(s)": { "%1 display(s)": "%1 個螢幕" @@ -23,21 +23,27 @@ "%1 job(s)": { "%1 job(s)": "%1 個工作" }, + "%1 notifications": { + "%1 notifications": "" + }, "%1 printer(s)": { "%1 printer(s)": "%1 台印表機" }, "%1 variants": { - "%1 variants": "" + "%1 variants": "%1 種變體" }, "%1 widgets": { "%1 widgets": "%1 個部件" }, "%1m ago": { - "%1m ago": "" + "%1m ago": "%1 分鐘前" }, "(Unnamed)": { "(Unnamed)": "(未命名)" }, + "+ %1 more": { + "+ %1 more": "" + }, "0 = square corners": { "0 = square corners": "0 = 直角" }, @@ -50,6 +56,9 @@ "1 minute": { "1 minute": "1 分鐘" }, + "1 notification": { + "1 notification": "" + }, "1 second": { "1 second": "1 秒" }, @@ -128,6 +137,9 @@ "About": { "About": "關於" }, + "Accent Color": { + "Accent Color": "" + }, "Accept Jobs": { "Accept Jobs": "接受工作" }, @@ -396,7 +408,7 @@ "Automatically lock after": "自動鎖定後" }, "Automatically lock the screen when the system prepares to suspend": { - "Automatically lock the screen when the system prepares to suspend": "系統暫停時自動鎖定螢幕" + "Automatically lock the screen when the system prepares to suspend": "睡眠時自動鎖定螢幕" }, "Available": { "Available": "可用" @@ -413,6 +425,9 @@ "Available Screens (%1)": { "Available Screens (%1)": "可用螢幕 (%1)" }, + "Available in Detailed and Forecast view modes": { + "Available in Detailed and Forecast view modes": "" + }, "BSSID": { "BSSID": "BSSID" }, @@ -483,7 +498,7 @@ "Bluetooth not available": "藍牙不可用" }, "Blur Wallpaper Layer": { - "Blur Wallpaper Layer": "" + "Blur Wallpaper Layer": "模糊桌布圖層" }, "Blur on Overview": { "Blur on Overview": "模糊概覽" @@ -500,6 +515,9 @@ "Border Opacity": { "Border Opacity": "邊框不透明度" }, + "Border Size": { + "Border Size": "" + }, "Border Thickness": { "Border Thickness": "邊框厚度" }, @@ -626,6 +644,9 @@ "Choose colors from palette": { "Choose colors from palette": "從調色盤選擇顏色" }, + "Choose how the weather widget is displayed": { + "Choose how the weather widget is displayed": "" + }, "Choose icon": { "Choose icon": "選擇圖示" }, @@ -755,6 +776,9 @@ "Communication": { "Communication": "通訊" }, + "Compact": { + "Compact": "" + }, "Compact Mode": { "Compact Mode": "緊湊模式" }, @@ -798,7 +822,7 @@ "Confirm": "確認" }, "Confirm Delete": { - "Confirm Delete": "" + "Confirm Delete": "確認刪除" }, "Confirm Display Changes": { "Confirm Display Changes": "確認顯示變更" @@ -843,7 +867,7 @@ "Control workspaces and columns by scrolling on the bar": "透過在列上捲動來控制工作區和欄位" }, "Controls opacity of all popouts, modals, and their content layers": { - "Controls opacity of all popouts, modals, and their content layers": "控制所有彈出視窗、模態視窗及其內容層的透明度" + "Controls opacity of all popouts, modals, and their content layers": "控制所有彈出視窗、互動視窗及其內容層的透明度" }, "Cooldown": { "Cooldown": "冷卻時間" @@ -911,6 +935,9 @@ "Custom": { "Custom": "自訂" }, + "Custom Color": { + "Custom Color": "" + }, "Custom Duration": { "Custom Duration": "自訂持續時間" }, @@ -936,7 +963,7 @@ "Custom Reboot Command": "自訂重新啟動指令" }, "Custom Suspend Command": { - "Custom Suspend Command": "自訂暫停指令" + "Custom Suspend Command": "自訂睡眠指令" }, "Custom Transparency": { "Custom Transparency": "自訂透明度" @@ -1073,6 +1100,9 @@ "Desktop clock widget name": { "Desktop Clock": "桌面時鐘" }, + "Detailed": { + "Detailed": "" + }, "Development": { "Development": "開發" }, @@ -1160,6 +1190,9 @@ "Display currently focused application title": { "Display currently focused application title": "顯示目前焦點應用程式的標題" }, + "Display hourly weather predictions": { + "Display hourly weather predictions": "" + }, "Display only workspaces that contain windows": { "Display only workspaces that contain windows": "只顯示包含視窗的工作區" }, @@ -1224,7 +1257,7 @@ "Driver": "驅動程式" }, "Duplicate": { - "Duplicate": "" + "Duplicate": "複製" }, "Duplicate Wallpaper with Blur": { "Duplicate Wallpaper with Blur": "模糊化重複桌布" @@ -1350,7 +1383,7 @@ "Enter password for ": "輸入密碼 " }, "Enter this passkey on ": { - "Enter this passkey on ": "輸入此密碼" + "Enter this passkey on ": "輸入此密碼 " }, "Enterprise": { "Enterprise": "企業" @@ -1380,7 +1413,7 @@ "Fade to lock screen": "淡出至鎖定螢幕" }, "Fade to monitor off": { - "Fade to monitor off": "" + "Fade to monitor off": "螢幕淡出關閉" }, "Failed to activate configuration": { "Failed to activate configuration": "無法啟動配置" @@ -1461,13 +1494,13 @@ "Failed to move job": "無法移動工作" }, "Failed to parse plugin_settings.json": { - "Failed to parse plugin_settings.json": "" + "Failed to parse plugin_settings.json": "無法解析 plugin_settings.json" }, "Failed to parse session.json": { - "Failed to parse session.json": "" + "Failed to parse session.json": "無法解析 session.json" }, "Failed to parse settings.json": { - "Failed to parse settings.json": "" + "Failed to parse settings.json": "無法解析 settings.json" }, "Failed to pause printer": { "Failed to pause printer": "無法暫停印表機" @@ -1535,6 +1568,9 @@ "Failed to write temp file for validation": { "Failed to write temp file for validation": "寫入驗證的暫存檔案失敗" }, + "Feels": { + "Feels": "" + }, "Feels Like": { "Feels Like": "體感溫度" }, @@ -1616,6 +1652,12 @@ "Force terminal applications to always use dark color schemes": { "Force terminal applications to always use dark color schemes": "強制終端應用程式始終使用深色配色方案" }, + "Forecast": { + "Forecast": "" + }, + "Forecast Days": { + "Forecast Days": "" + }, "Forecast Not Available": { "Forecast Not Available": "預報不可用" }, @@ -1674,7 +1716,7 @@ "Gradually fade the screen before locking with a configurable grace period": "在鎖定前逐漸淡出螢幕,並帶有可設定的緩衝期" }, "Gradually fade the screen before turning off monitors with a configurable grace period": { - "Gradually fade the screen before turning off monitors with a configurable grace period": "" + "Gradually fade the screen before turning off monitors with a configurable grace period": "關閉顯示器前逐漸淡化螢幕,可設定緩衝期" }, "Graph Time Range": { "Graph Time Range": "圖表時間範圍" @@ -1689,7 +1731,7 @@ "Grid Columns": "網格欄數" }, "Group Workspace Apps": { - "Group Workspace Apps": "" + "Group Workspace Apps": "群組工作區應用程式" }, "Group by App": { "Group by App": "App 分組" @@ -1698,7 +1740,7 @@ "Group multiple windows of the same app together with a window count indicator": "將同一應用程式的多個視窗匯集在一起,並附帶視窗數量指示器" }, "Group repeated application icons in unfocused workspaces": { - "Group repeated application icons in unfocused workspaces": "" + "Group repeated application icons in unfocused workspaces": "群組非作用中工作區的重複應用程式圖示" }, "HDR (EDID)": { "HDR (EDID)": "HDR (EDID)" @@ -1769,12 +1811,18 @@ "Hourly Forecast": { "Hourly Forecast": "每小時預報" }, + "Hourly Forecast Count": { + "Hourly Forecast Count": "" + }, "How often to change wallpaper": { "How often to change wallpaper": "多久更換一次桌布" }, "Humidity": { "Humidity": "濕度" }, + "Hyprland Layout Overrides": { + "Hyprland Layout Overrides": "" + }, "I Understand": { "I Understand": "我了解" }, @@ -2007,10 +2055,10 @@ "Lock Screen layout": "鎖定螢幕版面配置" }, "Lock before suspend": { - "Lock before suspend": "鎖定後暫停" + "Lock before suspend": "鎖定後睡眠" }, "Lock fade grace period": { - "Lock fade grace period": "" + "Lock fade grace period": "鎖定淡出緩衝期" }, "Log Out": { "Log Out": "登出" @@ -2042,6 +2090,9 @@ "Management": { "Management": "管理" }, + "MangoWC Layout Overrides": { + "MangoWC Layout Overrides": "" + }, "Manual Coordinates": { "Manual Coordinates": "手動設定座標" }, @@ -2166,10 +2217,10 @@ "Minute": "分鐘" }, "Mirror Display": { - "Mirror Display": "" + "Mirror Display": "鏡像顯示" }, "Modal Background": { - "Modal Background": "" + "Modal Background": "互動視窗背景" }, "Mode": { "Mode": "模式" @@ -2187,7 +2238,7 @@ "Monitor Configuration": "顯示器配置" }, "Monitor fade grace period": { - "Monitor fade grace period": "" + "Monitor fade grace period": "顯示器淡出緩衝期" }, "Monitor whose wallpaper drives dynamic theming colors": { "Monitor whose wallpaper drives dynamic theming colors": "系統介面顏色依據哪一個螢幕上的桌布來決定" @@ -2306,6 +2357,9 @@ "No VPN profiles": { "No VPN profiles": "沒有 VPN 設定檔" }, + "No Weather Data": { + "No Weather Data": "" + }, "No Weather Data Available": { "No Weather Data Available": "沒有氣象數據" }, @@ -2396,6 +2450,9 @@ "Not connected": { "Not connected": "未連接" }, + "Not detected": { + "Not detected": "" + }, "Note: this only changes the percentage, it does not actually limit charging.": { "Note: this only changes the percentage, it does not actually limit charging.": "注意:這只會變更百分比顯示,並不會實際限制充電。" }, @@ -2510,6 +2567,9 @@ "Override": { "Override": "覆蓋" }, + "Override Border Size": { + "Override Border Size": "" + }, "Override Corner Radius": { "Override Corner Radius": "覆寫圓角半徑" }, @@ -2684,6 +2744,9 @@ "Power source": { "Power source": "電源" }, + "Precip": { + "Precip": "" + }, "Precipitation Chance": { "Precipitation Chance": "降水機率" }, @@ -2814,7 +2877,7 @@ "Report": "報告" }, "Require holding button/key to confirm power off, restart, suspend, hibernate and logout": { - "Require holding button/key to confirm power off, restart, suspend, hibernate and logout": "需要按住按鈕/鍵以確認關機、重新啟動、暫停、休眠和登出" + "Require holding button/key to confirm power off, restart, suspend, hibernate and logout": "需要按住按鈕/鍵以確認關機、重新啟動、睡眠、休眠和登出" }, "Requires 'dgop' tool": { "Requires 'dgop' tool": "需要「dgop」工具" @@ -2853,10 +2916,10 @@ "Resume": "恢復" }, "Reverse Scrolling Direction": { - "Reverse Scrolling Direction": "" + "Reverse Scrolling Direction": "反轉捲動方向" }, "Reverse workspace switch direction when scrolling over the bar": { - "Reverse workspace switch direction when scrolling over the bar": "" + "Reverse workspace switch direction when scrolling over the bar": "在工具列上捲動時反轉工作區切換方向" }, "Revert": { "Revert": "還原" @@ -2885,6 +2948,12 @@ "Rounded corners for windows": { "Rounded corners for windows": "視窗圓角" }, + "Rounded corners for windows (border_radius)": { + "Rounded corners for windows (border_radius)": "" + }, + "Rounded corners for windows (decoration.rounding)": { + "Rounded corners for windows (decoration.rounding)": "" + }, "Run DMS Templates": { "Run DMS Templates": "執行 DMS 範本" }, @@ -2955,7 +3024,7 @@ "Scroll Wheel": "滾輪" }, "Scroll on widget changes media volume": { - "Scroll on widget changes media volume": "" + "Scroll on widget changes media volume": "在小工具上捲動以變更媒體音量" }, "Scroll song title": { "Scroll song title": "滾動歌曲標題" @@ -2964,7 +3033,7 @@ "Scroll title if it doesn't fit in widget": "若標題不符合小工具空間,請捲動" }, "Scroll wheel behavior on media widget": { - "Scroll wheel behavior on media widget": "" + "Scroll wheel behavior on media widget": "媒體小工具滾輪行為" }, "Scrolling": { "Scrolling": "滾動" @@ -3113,6 +3182,12 @@ "Show Dock": { "Show Dock": "顯示 Dock" }, + "Show Feels Like Temperature": { + "Show Feels Like Temperature": "" + }, + "Show Forecast": { + "Show Forecast": "" + }, "Show GPU Temperature": { "Show GPU Temperature": "顯示 GPU 溫度" }, @@ -3125,9 +3200,18 @@ "Show Hour Numbers": { "Show Hour Numbers": "顯示小時數字" }, + "Show Hourly Forecast": { + "Show Hourly Forecast": "" + }, + "Show Humidity": { + "Show Humidity": "" + }, "Show Line Numbers": { "Show Line Numbers": "顯示行數" }, + "Show Location": { + "Show Location": "" + }, "Show Lock": { "Show Lock": "顯示鎖定" }, @@ -3152,6 +3236,12 @@ "Show Power Off": { "Show Power Off": "顯示關機" }, + "Show Precipitation Probability": { + "Show Precipitation Probability": "" + }, + "Show Pressure": { + "Show Pressure": "" + }, "Show Reboot": { "Show Reboot": "顯示重新啟動" }, @@ -3161,12 +3251,24 @@ "Show Seconds": { "Show Seconds": "顯示秒數" }, + "Show Sunrise/Sunset": { + "Show Sunrise/Sunset": "" + }, "Show Suspend": { - "Show Suspend": "顯示暫停" + "Show Suspend": "顯示睡眠" }, "Show Top Processes": { "Show Top Processes": "顯示最佔用程序" }, + "Show Weather Condition": { + "Show Weather Condition": "" + }, + "Show Welcome": { + "Show Welcome": "" + }, + "Show Wind Speed": { + "Show Wind Speed": "" + }, "Show Workspace Apps": { "Show Workspace Apps": "顯示工作區應用程式" }, @@ -3237,7 +3339,7 @@ "Show workspace index numbers in the top bar workspace switcher": "在頂部欄工作區切換器中顯示工作區編號" }, "Show workspace name on horizontal bars, and first letter on vertical bars": { - "Show workspace name on horizontal bars, and first letter on vertical bars": "" + "Show workspace name on horizontal bars, and first letter on vertical bars": "在水平列顯示工作區名稱,垂直列顯示首字母" }, "Shows all running applications with focus indication": { "Shows all running applications with focus indication": "顯示所有正在運行的應用程式並帶有焦點指示" @@ -3270,10 +3372,10 @@ "Sizing": "尺寸" }, "Smartcard Authentication": { - "Smartcard Authentication": "" + "Smartcard Authentication": "智慧卡驗證" }, "Smartcard PIN": { - "Smartcard PIN": "" + "Smartcard PIN": "智慧卡 PIN 碼" }, "Some plugins require a newer version of DMS:": { "Some plugins require a newer version of DMS:": "部分外掛程式需要較新版 DMS:" @@ -3296,6 +3398,12 @@ "Space between windows": { "Space between windows": "視窗間距" }, + "Space between windows (gappih/gappiv/gappoh/gappov)": { + "Space between windows (gappih/gappiv/gappoh/gappov)": "" + }, + "Space between windows (gaps_in and gaps_out)": { + "Space between windows (gaps_in and gaps_out)": "" + }, "Spacer": { "Spacer": "空白間隔" }, @@ -3317,6 +3425,9 @@ "Stacked": { "Stacked": "堆疊" }, + "Standard": { + "Standard": "" + }, "Start": { "Start": "開始" }, @@ -3354,13 +3465,13 @@ "Surface": "表面" }, "Suspend": { - "Suspend": "系統暫停" + "Suspend": "睡眠" }, "Suspend behavior": { - "Suspend behavior": "暫停行為" + "Suspend behavior": "睡眠行為" }, "Suspend system after": { - "Suspend system after": "系統暫停後" + "Suspend system after": "系統睡眠後" }, "Swap": { "Swap": "交換區" @@ -3444,7 +3555,7 @@ "Text": "文字" }, "The 'dgop' tool is required for system monitoring.\\nPlease install dgop to use this feature.": { - "The 'dgop' tool is required for system monitoring.\\nPlease install dgop to use this feature.": "系統監控需要「dgop」工具。\n請安裝 dgop 以使用此功能。" + "The 'dgop' tool is required for system monitoring.\\nPlease install dgop to use this feature.": "系統監控需要「dgop」工具。\\n請安裝 dgop 以使用此功能。" }, "The DMS_SOCKET environment variable is not set or the socket is unavailable. Automated plugin management requires the DMS_SOCKET.": { "The DMS_SOCKET environment variable is not set or the socket is unavailable. Automated plugin management requires the DMS_SOCKET.": "DMS_SOCKET 環境變數未設定或套接字不可用。自動插件管理需要 DMS_SOCKET。" @@ -3539,6 +3650,9 @@ "Toner Low": { "Toner Low": "碳粉不足" }, + "Tools": { + "Tools": "" + }, "Top": { "Top": "上方" }, @@ -3650,6 +3764,12 @@ "Use animated wave progress bars for media playback": { "Use animated wave progress bars for media playback": "在媒體播放使用動畫波浪進度條" }, + "Use custom border size": { + "Use custom border size": "" + }, + "Use custom border/focus-ring width": { + "Use custom border/focus-ring width": "" + }, "Use custom command for update your system": { "Use custom command for update your system": "使用自訂指令更新您的系統" }, @@ -3659,6 +3779,9 @@ "Use custom window radius instead of theme radius": { "Use custom window radius instead of theme radius": "使用自訂視窗圓角而非主題圓角" }, + "Use custom window rounding instead of theme radius": { + "Use custom window rounding instead of theme radius": "" + }, "Use fingerprint reader for lock screen authentication (requires enrolled fingerprints)": { "Use fingerprint reader for lock screen authentication (requires enrolled fingerprints)": "使用指紋辨識器進行鎖定畫面身份驗證(需要註冊指紋)" }, @@ -3674,6 +3797,9 @@ "Used": { "Used": "已使用" }, + "Used when accent color is set to Custom": { + "Used when accent color is set to Custom": "" + }, "User": { "User": "使用者" }, @@ -3749,6 +3875,9 @@ "Vibrant palette with playful saturation.": { "Vibrant palette with playful saturation.": "色彩鮮明且飽和度活潑的調色板。" }, + "View Mode": { + "View Mode": "" + }, "Visibility": { "Visibility": "能見度" }, @@ -3865,6 +3994,15 @@ "Widget removed": { "Widget removed": "小工具已移除" }, + "Width of window border (borderpx)": { + "Width of window border (borderpx)": "" + }, + "Width of window border (general.border_size)": { + "Width of window border (general.border_size)": "" + }, + "Width of window border and focus ring": { + "Width of window border and focus ring": "" + }, "Wind": { "Wind": "風速" }, @@ -3880,6 +4018,9 @@ "Window Gaps (px)": { "Window Gaps (px)": "視窗間距 (像素)" }, + "Window Rounding": { + "Window Rounding": "" + }, "Workspace": { "Workspace": "工作區" }, @@ -3887,7 +4028,7 @@ "Workspace Index Numbers": "工作區編號" }, "Workspace Names": { - "Workspace Names": "" + "Workspace Names": "工作區名稱" }, "Workspace Padding": { "Workspace Padding": "工作區內距" @@ -4000,6 +4141,145 @@ "generic theme description": { "Material Design inspired color themes": "受 Material Design 啟發的色彩主題" }, + "greeter back button": { + "Back": "" + }, + "greeter completion page subtitle": { + "DankMaterialShell is ready to use": "" + }, + "greeter completion page title": { + "You're All Set!": "" + }, + "greeter configure keybinds link": { + "Configure Keybinds": "" + }, + "greeter dankbar description": { + "Widgets, layout, style": "" + }, + "greeter displays description": { + "Resolution, position, scale": "" + }, + "greeter dock description": { + "Position, pinned apps": "" + }, + "greeter doctor page button": { + "Run Again": "" + }, + "greeter doctor page empty state": { + "No checks passed": "", + "No errors": "", + "No info items": "", + "No warnings": "" + }, + "greeter doctor page error count": { + "%1 issue(s) found": "" + }, + "greeter doctor page loading text": { + "Analyzing configuration...": "" + }, + "greeter doctor page status card": { + "Errors": "", + "Info": "", + "OK": "", + "Warnings": "" + }, + "greeter doctor page success": { + "All checks passed": "" + }, + "greeter doctor page title": { + "System Check": "" + }, + "greeter documentation link": { + "Docs": "" + }, + "greeter explore section header": { + "Explore": "" + }, + "greeter feature card description": { + "Background app icons": "", + "Colors from wallpaper": "", + "Community themes": "", + "Extensible architecture": "", + "GTK, Qt, IDEs, more": "", + "Modular widget bar": "", + "Night mode & gamma": "", + "Per-screen config": "", + "Quick system toggles": "" + }, + "greeter feature card title": { + "App Theming": "", + "Control Center": "", + "Display Control": "", + "Dynamic Theming": "", + "Multi-Monitor": "", + "System Tray": "", + "Theme Registry": "" + }, + "greeter feature card title | greeter plugins link": { + "Plugins": "" + }, + "greeter feature card title | greeter settings link": { + "DankBar": "" + }, + "greeter finish button": { + "Finish": "" + }, + "greeter first page button": { + "Get Started": "" + }, + "greeter keybinds niri description": { + "niri shortcuts config": "" + }, + "greeter keybinds section header": { + "DMS Shortcuts": "" + }, + "greeter modal window title": { + "Welcome": "" + }, + "greeter next button": { + "Next": "" + }, + "greeter no keybinds message": { + "No DMS shortcuts configured": "" + }, + "greeter notifications description": { + "Popup behavior, position": "" + }, + "greeter settings link": { + "Displays": "", + "Dock": "", + "Keybinds": "", + "Notifications": "", + "Theme & Colors": "", + "Wallpaper": "" + }, + "greeter settings section header": { + "Configure": "" + }, + "greeter skip button": { + "Skip": "" + }, + "greeter skip button tooltip": { + "Skip setup": "" + }, + "greeter theme description": { + "Dynamic colors, presets": "" + }, + "greeter themes link": { + "Themes": "" + }, + "greeter wallpaper description": { + "Background image": "" + }, + "greeter welcome page section header": { + "Features": "" + }, + "greeter welcome page tagline": { + "A modern desktop shell for Wayland compositors": "" + }, + "greeter welcome page title": { + "Welcome to DankMaterialShell": "" + }, "install action button": { "Install": "安裝" }, @@ -4021,6 +4301,19 @@ "loading indicator": { "Loading...": "載入中..." }, + "lock screen notification mode option": { + "App Names": "", + "Count Only": "", + "Disabled": "", + "Full Content": "" + }, + "lock screen notification privacy setting": { + "Control what notification information is shown on the lock screen": "", + "Notification Display": "" + }, + "lock screen notifications settings card": { + "Lock Screen": "" + }, "loginctl not available - lock integration requires DMS socket connection": { "loginctl not available - lock integration requires DMS socket connection": "loginctl 不可用 - 鎖定整合需要 DMS 套接字連接" }, @@ -4049,48 +4342,48 @@ "No wallpaper selected": "未選擇任何桌布" }, "notification center tab": { - "Current": "", - "History": "" + "Current": "目前", + "History": "歷史記錄" }, "notification history filter": { - "All": "", - "Last hour": "", - "Today": "", - "Yesterday": "" + "All": "全部", + "Last hour": "最近一小時", + "Today": "今天", + "Yesterday": "昨天" }, "notification history filter for content older than other filters": { - "Older": "" + "Older": "舊有" }, "notification history filter | notification history retention option": { - "30 days": "", - "7 days": "" + "30 days": "30 天", + "7 days": "7 天" }, "notification history limit": { - "Maximum number of notifications to keep": "" + "Maximum number of notifications to keep": "通知保留上限" }, "notification history retention option": { - "1 day": "", - "14 days": "", - "3 days": "", - "Forever": "" + "1 day": "1 天", + "14 days": "14 天", + "3 days": "3 天", + "Forever": "永遠" }, "notification history retention settings label": { - "History Retention": "" + "History Retention": "歷史記錄保留期限" }, "notification history setting": { - "Auto-delete notifications older than this": "", - "Save critical priority notifications to history": "", - "Save low priority notifications to history": "", - "Save normal priority notifications to history": "" + "Auto-delete notifications older than this": "自動刪除早於此時的通知", + "Save critical priority notifications to history": "將高優先順序通知儲存至歷史記錄", + "Save low priority notifications to history": "將低優先順序通知儲存至歷史記錄", + "Save normal priority notifications to history": "將一般優先順序通知儲存至歷史記錄" }, "notification history toggle description": { - "Save dismissed notifications to history": "" + "Save dismissed notifications to history": "將已忽略通知儲存至歷史記錄" }, "notification history toggle label": { - "Enable History": "" + "Enable History": "啟用歷史記錄" }, "now": { - "now": "" + "now": "現在" }, "official": { "official": "官方" @@ -4114,7 +4407,7 @@ "Select Profile Image": "選擇個人資料圖片" }, "read-only settings warning for NixOS home-manager users": { - "Settings are read-only. Changes will not persist.": "" + "Settings are read-only. Changes will not persist.": "設定為唯讀。變更將不會保留。" }, "registry theme description": { "Color theme from DMS registry": "來自 DMS 登錄檔的色彩主題" @@ -4189,7 +4482,7 @@ "wtype not available - install wtype for paste support": "wtype 未可用 - 請安裝 wtype 以支援貼上功能" }, "yesterday": { - "yesterday": "" + "yesterday": "昨天" }, "• Install only from trusted sources": { "• Install only from trusted sources": "• 僅從受信任的來源安裝" diff --git a/quickshell/translations/settings_search_index.json b/quickshell/translations/settings_search_index.json index 503a5edc..3633535e 100644 --- a/quickshell/translations/settings_search_index.json +++ b/quickshell/translations/settings_search_index.json @@ -719,19 +719,20 @@ "apps", "collapse", "desktop", + "desktops", "group", "grouped", "icons", "program", "repeated", - "same", "spaces", + "unfocused", "virtual", "virtual desktops", "workspace", "workspaces" ], - "description": "Group repeated application icons in the same workspace" + "description": "Group repeated application icons in unfocused workspaces" }, { "section": "workspaceIcons", @@ -1534,6 +1535,72 @@ "icon": "terminal", "description": "Sync dark mode with settings portals for system-wide theme hints" }, + { + "section": "niriLayoutBorderSize", + "label": "Border Size", + "tabIndex": 10, + "category": "Theme & Colors", + "keywords": [ + "appearance", + "border", + "colors", + "focus", + "look", + "niri", + "override", + "ring", + "scheme", + "size", + "style", + "theme", + "width", + "window" + ], + "description": "Width of window border and focus ring" + }, + { + "section": "hyprlandLayoutBorderSize", + "label": "Border Size", + "tabIndex": 10, + "category": "Theme & Colors", + "keywords": [ + "appearance", + "border", + "colors", + "hyprland", + "look", + "override", + "scheme", + "size", + "style", + "theme", + "width", + "window" + ], + "description": "Width of window border (general.border_size)" + }, + { + "section": "mangoLayoutBorderSize", + "label": "Border Size", + "tabIndex": 10, + "category": "Theme & Colors", + "keywords": [ + "appearance", + "border", + "colors", + "look", + "mango", + "mangowc", + "override", + "scheme", + "size", + "style", + "theme", + "width", + "window" + ], + "description": "Width of window border (borderpx)" + }, { "section": "colorMode", "label": "Color Mode", @@ -1659,6 +1726,58 @@ "theme" ] }, + { + "section": "matugenTemplateHyprland", + "label": "Hyprland", + "tabIndex": 10, + "category": "Theme & Colors", + "keywords": [ + "appearance", + "colors", + "hyprland", + "look", + "matugen", + "scheme", + "style", + "template", + "theme" + ] + }, + { + "section": "hyprlandLayout", + "label": "Hyprland Layout Overrides", + "tabIndex": 10, + "category": "Theme & Colors", + "keywords": [ + "appearance", + "border", + "colors", + "custom", + "gap", + "gaps", + "hyprland", + "layout", + "look", + "margin", + "margins", + "overrides", + "padding", + "panel", + "radius", + "rounding", + "scheme", + "spacing", + "statusbar", + "style", + "taskbar", + "theme", + "topbar", + "window" + ], + "icon": "crop_square", + "description": "Use custom gaps instead of bar spacing", + "conditionKey": "isHyprland" + }, { "section": "iconTheme", "label": "Icon Theme", @@ -1725,6 +1844,42 @@ ], "description": "Use light theme instead of dark theme" }, + { + "section": "mangoLayout", + "label": "MangoWC Layout Overrides", + "tabIndex": 10, + "category": "Theme & Colors", + "keywords": [ + "appearance", + "border", + "colors", + "custom", + "dwl", + "gap", + "gaps", + "layout", + "look", + "mango", + "mangowc", + "margin", + "margins", + "overrides", + "padding", + "panel", + "radius", + "scheme", + "spacing", + "statusbar", + "style", + "taskbar", + "theme", + "topbar", + "window" + ], + "icon": "crop_square", + "description": "Use custom gaps instead of bar spacing", + "conditionKey": "isDwl" + }, { "section": "matugenScheme", "label": "Matugen Palette", @@ -1812,6 +1967,7 @@ "category": "Theme & Colors", "keywords": [ "appearance", + "border", "colors", "custom", "gap", @@ -1838,6 +1994,70 @@ "description": "Use custom gaps instead of bar spacing", "conditionKey": "isNiri" }, + { + "section": "niriLayoutBorderSizeEnabled", + "label": "Override Border Size", + "tabIndex": 10, + "category": "Theme & Colors", + "keywords": [ + "appearance", + "border", + "colors", + "custom", + "focus", + "look", + "niri", + "override", + "ring", + "scheme", + "size", + "style", + "theme", + "width" + ], + "description": "Use custom border/focus-ring width" + }, + { + "section": "hyprlandLayoutBorderSizeEnabled", + "label": "Override Border Size", + "tabIndex": 10, + "category": "Theme & Colors", + "keywords": [ + "appearance", + "border", + "colors", + "custom", + "hyprland", + "look", + "override", + "scheme", + "size", + "style", + "theme" + ], + "description": "Use custom border size" + }, + { + "section": "mangoLayoutBorderSizeEnabled", + "label": "Override Border Size", + "tabIndex": 10, + "category": "Theme & Colors", + "keywords": [ + "appearance", + "border", + "colors", + "custom", + "look", + "mango", + "mangowc", + "override", + "scheme", + "size", + "style", + "theme" + ], + "description": "Use custom border size" + }, { "section": "niriLayoutRadiusOverrideEnabled", "label": "Override Corner Radius", @@ -1863,6 +2083,58 @@ ], "description": "Use custom window radius instead of theme radius" }, + { + "section": "hyprlandLayoutRadiusOverrideEnabled", + "label": "Override Corner Radius", + "tabIndex": 10, + "category": "Theme & Colors", + "keywords": [ + "appearance", + "colors", + "colour", + "corner", + "corners", + "custom", + "hyprland", + "look", + "override", + "radius", + "round", + "rounded", + "rounding", + "scheme", + "style", + "theme", + "window" + ], + "description": "Use custom window rounding instead of theme radius" + }, + { + "section": "mangoLayoutRadiusOverrideEnabled", + "label": "Override Corner Radius", + "tabIndex": 10, + "category": "Theme & Colors", + "keywords": [ + "appearance", + "colors", + "colour", + "corner", + "corners", + "custom", + "look", + "mango", + "mangowc", + "override", + "radius", + "round", + "rounded", + "scheme", + "style", + "theme", + "window" + ], + "description": "Use custom window radius instead of theme radius" + }, { "section": "niriLayoutGapsOverrideEnabled", "label": "Override Gaps", @@ -1891,6 +2163,63 @@ ], "description": "Use custom gaps instead of bar spacing" }, + { + "section": "hyprlandLayoutGapsOverrideEnabled", + "label": "Override Gaps", + "tabIndex": 10, + "category": "Theme & Colors", + "keywords": [ + "appearance", + "colors", + "custom", + "gap", + "gaps", + "hyprland", + "look", + "margin", + "margins", + "override", + "padding", + "panel", + "scheme", + "spacing", + "statusbar", + "style", + "taskbar", + "theme", + "topbar" + ], + "description": "Use custom gaps instead of bar spacing" + }, + { + "section": "mangoLayoutGapsOverrideEnabled", + "label": "Override Gaps", + "tabIndex": 10, + "category": "Theme & Colors", + "keywords": [ + "appearance", + "colors", + "custom", + "gap", + "gaps", + "look", + "mango", + "mangowc", + "margin", + "margins", + "override", + "padding", + "panel", + "scheme", + "spacing", + "statusbar", + "style", + "taskbar", + "theme", + "topbar" + ], + "description": "Use custom gaps instead of bar spacing" + }, { "section": "popupTransparency", "label": "Popup Transparency", @@ -2199,6 +2528,31 @@ ], "description": "Rounded corners for windows" }, + { + "section": "mangoLayoutRadiusOverride", + "label": "Window Corner Radius", + "tabIndex": 10, + "category": "Theme & Colors", + "keywords": [ + "appearance", + "colors", + "corner", + "corners", + "look", + "mango", + "mangowc", + "override", + "radius", + "round", + "rounded", + "scheme", + "style", + "theme", + "window", + "windows" + ], + "description": "Rounded corners for windows (border_radius)" + }, { "section": "niriLayoutGapsOverride", "label": "Window Gaps", @@ -2221,6 +2575,77 @@ ], "description": "Space between windows" }, + { + "section": "hyprlandLayoutGapsOverride", + "label": "Window Gaps", + "tabIndex": 10, + "category": "Theme & Colors", + "keywords": [ + "appearance", + "between", + "colors", + "gaps", + "hyprland", + "look", + "override", + "scheme", + "space", + "style", + "theme", + "window", + "windows" + ], + "description": "Space between windows (gaps_in and gaps_out)" + }, + { + "section": "mangoLayoutGapsOverride", + "label": "Window Gaps", + "tabIndex": 10, + "category": "Theme & Colors", + "keywords": [ + "appearance", + "between", + "colors", + "gappiv", + "gappoh", + "gaps", + "look", + "mango", + "mangowc", + "override", + "scheme", + "space", + "style", + "theme", + "window", + "windows" + ], + "description": "Space between windows (gappih/gappiv/gappoh/gappov)" + }, + { + "section": "hyprlandLayoutRadiusOverride", + "label": "Window Rounding", + "tabIndex": 10, + "category": "Theme & Colors", + "keywords": [ + "appearance", + "colors", + "corners", + "hyprland", + "look", + "override", + "radius", + "round", + "rounded", + "rounding", + "scheme", + "style", + "theme", + "window", + "windows" + ], + "description": "Rounded corners for windows (decoration.rounding)" + }, { "section": "matugenTemplateDgop", "label": "dgop", @@ -2292,6 +2717,23 @@ "theme" ] }, + { + "section": "matugenTemplateMangowc", + "label": "mangowc", + "tabIndex": 10, + "category": "Theme & Colors", + "keywords": [ + "appearance", + "colors", + "look", + "mangowc", + "matugen", + "scheme", + "style", + "template", + "theme" + ] + }, { "section": "matugenTemplateNeovim", "label": "neovim", @@ -2300,20 +2742,15 @@ "keywords": [ "appearance", "colors", - "lazy", "look", - "manager", "matugen", "neovim", - "plugin", - "requires", "scheme", "style", "template", "terminal", "theme" - ], - "description": "Requires lazy plugin manager" + ] }, { "section": "matugenTemplateNiri", @@ -2550,25 +2987,31 @@ "description": "If the field is hidden, it will appear as soon as a key is pressed." }, { - "section": "lockBeforeSuspend", - "label": "Lock before suspend", + "section": "lockScreenNotificationMode", + "label": "Notification Display", "tabIndex": 11, "category": "Lock Screen", "keywords": [ - "automatic", - "automatically", - "before", + "alert", + "control", + "display", + "information", "lock", + "lockscreen", "login", + "monitor", + "notif", + "notification", + "notifications", + "output", "password", - "prepares", + "privacy", "screen", "security", - "sleep", - "suspend", - "system" + "shown", + "what" ], - "description": "Automatically lock the screen when the system prepares to suspend" + "description": "Control what notification information is shown on the lock screen" }, { "section": "lockScreenShowPasswordField", @@ -3031,6 +3474,27 @@ ], "description": "Scroll wheel behavior on media widget" }, + { + "section": "notificationHistorySaveCritical", + "label": "Critical Priority", + "tabIndex": 17, + "category": "Notifications", + "keywords": [ + "alert", + "alerts", + "critical", + "history", + "messages", + "notif", + "notification", + "notifications", + "notifs", + "priority", + "save", + "toast" + ], + "description": "Save critical priority notifications to history" + }, { "section": "notificationTimeoutCritical", "label": "Critical Priority", @@ -3078,6 +3542,125 @@ "icon": "notifications_off", "description": "Suppress notification popups while enabled" }, + { + "section": "notificationHistoryEnabled", + "label": "Enable History", + "tabIndex": 17, + "category": "Notifications", + "keywords": [ + "alert", + "alerts", + "disable", + "dismissed", + "enable", + "history", + "messages", + "notif", + "notification", + "notifications", + "notifs", + "save", + "toast" + ], + "description": "Save dismissed notifications to history" + }, + { + "section": "notificationHistoryMaxAgeDays", + "label": "History Retention", + "tabIndex": 17, + "category": "Notifications", + "keywords": [ + "age", + "alert", + "alerts", + "auto", + "days", + "delete", + "history", + "max", + "messages", + "notif", + "notification", + "notifications", + "notifs", + "older", + "retention", + "toast" + ], + "description": "Auto-delete notifications older than this" + }, + { + "section": "notificationHistory", + "label": "History Settings", + "tabIndex": 17, + "category": "Notifications", + "keywords": [ + "alert", + "alerts", + "disable", + "dismissed", + "enable", + "history", + "messages", + "notif", + "notification", + "notifications", + "notifs", + "save", + "settings", + "toast" + ], + "icon": "history", + "description": "Save dismissed notifications to history" + }, + { + "section": "lockScreenNotifications", + "label": "Lock Screen", + "tabIndex": 17, + "category": "Notifications", + "keywords": [ + "alert", + "alerts", + "control", + "information", + "lock", + "lockscreen", + "login", + "messages", + "notif", + "notification", + "notifications", + "privacy", + "screen", + "security", + "shown", + "toast", + "what" + ], + "icon": "lock", + "description": "Control what notification information is shown on the lock screen" + }, + { + "section": "notificationHistorySaveLow", + "label": "Low Priority", + "tabIndex": 17, + "category": "Notifications", + "keywords": [ + "alert", + "alerts", + "history", + "low", + "messages", + "notif", + "notification", + "notifications", + "notifs", + "priority", + "save", + "toast" + ], + "description": "Save low priority notifications to history" + }, { "section": "notificationTimeoutLow", "label": "Low Priority", @@ -3099,6 +3682,51 @@ ], "description": "Timeout for low priority notifications" }, + { + "section": "notificationHistoryMaxCount", + "label": "Maximum History", + "tabIndex": 17, + "category": "Notifications", + "keywords": [ + "alert", + "alerts", + "count", + "history", + "keep", + "limit", + "max", + "maximum", + "messages", + "notif", + "notification", + "notifications", + "notifs", + "number", + "toast" + ], + "description": "Maximum number of notifications to keep" + }, + { + "section": "notificationHistorySaveNormal", + "label": "Normal Priority", + "tabIndex": 17, + "category": "Notifications", + "keywords": [ + "alert", + "alerts", + "history", + "messages", + "normal", + "notif", + "notification", + "notifications", + "notifs", + "priority", + "save", + "toast" + ], + "description": "Save normal priority notifications to history" + }, { "section": "notificationTimeoutNormal", "label": "Normal Priority", @@ -3387,24 +4015,6 @@ "suspend" ] }, - { - "section": "fadeToLockGracePeriod", - "label": "Fade grace period", - "tabIndex": 21, - "category": "Power & Sleep", - "keywords": [ - "energy", - "fade", - "grace", - "lock", - "period", - "power", - "shutdown", - "sleep", - "suspend", - "timeout" - ] - }, { "section": "fadeToLockEnabled", "label": "Fade to lock screen", @@ -3433,6 +4043,34 @@ ], "description": "Gradually fade the screen before locking with a configurable grace period" }, + { + "section": "fadeToDpmsEnabled", + "label": "Fade to monitor off", + "tabIndex": 21, + "category": "Power & Sleep", + "keywords": [ + "before", + "configurable", + "dpms", + "energy", + "fade", + "grace", + "grace period", + "gradually", + "idle", + "monitor", + "monitors", + "off", + "period", + "power", + "screen", + "shutdown", + "sleep", + "suspend", + "turning" + ], + "description": "Gradually fade the screen before turning off monitors with a configurable grace period" + }, { "section": "powerActionHoldDuration", "label": "Hold Duration", @@ -3506,6 +4144,64 @@ "icon": "schedule", "description": "Gradually fade the screen before locking with a configurable grace period" }, + { + "section": "lockBeforeSuspend", + "label": "Lock before suspend", + "tabIndex": 21, + "category": "Power & Sleep", + "keywords": [ + "automatically", + "before", + "energy", + "lock", + "power", + "prepares", + "screen", + "security", + "shutdown", + "sleep", + "suspend", + "system" + ], + "description": "Automatically lock the screen when the system prepares to suspend" + }, + { + "section": "fadeToLockGracePeriod", + "label": "Lock fade grace period", + "tabIndex": 21, + "category": "Power & Sleep", + "keywords": [ + "energy", + "fade", + "grace", + "lock", + "period", + "power", + "shutdown", + "sleep", + "suspend", + "timeout" + ] + }, + { + "section": "fadeToDpmsGracePeriod", + "label": "Monitor fade grace period", + "tabIndex": 21, + "category": "Power & Sleep", + "keywords": [ + "dpms", + "energy", + "fade", + "grace", + "monitor", + "period", + "power", + "shutdown", + "sleep", + "suspend", + "timeout" + ] + }, { "section": "powerConfirmation", "label": "Power Action Confirmation", diff --git a/quickshell/translations/template.json b/quickshell/translations/template.json index 4feece39..3532b3f0 100644 --- a/quickshell/translations/template.json +++ b/quickshell/translations/template.json @@ -48,6 +48,13 @@ "reference": "", "comment": "" }, + { + "term": "%1 issue(s) found", + "translation": "", + "context": "greeter doctor page error count", + "reference": "", + "comment": "" + }, { "term": "%1 job(s)", "translation": "", @@ -55,6 +62,13 @@ "reference": "", "comment": "" }, + { + "term": "%1 notifications", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "%1 printer(s)", "translation": "", @@ -90,6 +104,13 @@ "reference": "", "comment": "" }, + { + "term": "+ %1 more", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "0 = square corners", "translation": "", @@ -118,6 +139,13 @@ "reference": "", "comment": "" }, + { + "term": "1 notification", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "1 second", "translation": "", @@ -279,6 +307,13 @@ "reference": "", "comment": "" }, + { + "term": "A modern desktop shell for Wayland compositors", + "translation": "", + "context": "greeter welcome page tagline", + "reference": "", + "comment": "" + }, { "term": "API", "translation": "", @@ -300,6 +335,13 @@ "reference": "", "comment": "" }, + { + "term": "Accent Color", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Accept Jobs", "translation": "", @@ -496,6 +538,13 @@ "reference": "", "comment": "" }, + { + "term": "All checks passed", + "translation": "", + "context": "greeter doctor page success", + "reference": "", + "comment": "" + }, { "term": "All day", "translation": "", @@ -573,6 +622,13 @@ "reference": "", "comment": "" }, + { + "term": "Analyzing configuration...", + "translation": "", + "context": "greeter doctor page loading text", + "reference": "", + "comment": "" + }, { "term": "Animation Speed", "translation": "", @@ -601,6 +657,20 @@ "reference": "", "comment": "" }, + { + "term": "App Names", + "translation": "", + "context": "lock screen notification mode option", + "reference": "", + "comment": "" + }, + { + "term": "App Theming", + "translation": "", + "context": "greeter feature card title", + "reference": "", + "comment": "" + }, { "term": "Application Dock", "translation": "", @@ -979,6 +1049,13 @@ "reference": "", "comment": "" }, + { + "term": "Available in Detailed and Forecast view modes", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "BSSID", "translation": "", @@ -989,7 +1066,7 @@ { "term": "Back", "translation": "", - "context": "", + "context": "greeter back button", "reference": "", "comment": "" }, @@ -1007,6 +1084,20 @@ "reference": "", "comment": "" }, + { + "term": "Background app icons", + "translation": "", + "context": "greeter feature card description", + "reference": "", + "comment": "" + }, + { + "term": "Background image", + "translation": "", + "context": "greeter wallpaper description", + "reference": "", + "comment": "" + }, { "term": "Backlight device", "translation": "", @@ -1182,6 +1273,13 @@ "reference": "", "comment": "" }, + { + "term": "Border Size", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Border Thickness", "translation": "", @@ -1490,6 +1588,13 @@ "reference": "", "comment": "" }, + { + "term": "Choose how the weather widget is displayed", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Choose icon", "translation": "", @@ -1784,6 +1889,13 @@ "reference": "", "comment": "" }, + { + "term": "Colors from wallpaper", + "translation": "", + "context": "greeter feature card description", + "reference": "", + "comment": "" + }, { "term": "Column", "translation": "", @@ -1805,6 +1917,20 @@ "reference": "", "comment": "" }, + { + "term": "Community themes", + "translation": "", + "context": "greeter feature card description", + "reference": "", + "comment": "" + }, + { + "term": "Compact", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Compact Mode", "translation": "", @@ -1875,6 +2001,20 @@ "reference": "", "comment": "" }, + { + "term": "Configure", + "translation": "", + "context": "greeter settings section header", + "reference": "", + "comment": "" + }, + { + "term": "Configure Keybinds", + "translation": "", + "context": "greeter configure keybinds link", + "reference": "", + "comment": "" + }, { "term": "Configure a new printer", "translation": "", @@ -1990,7 +2130,7 @@ { "term": "Control Center", "translation": "", - "context": "", + "context": "greeter feature card title", "reference": "", "comment": "" }, @@ -2001,6 +2141,13 @@ "reference": "", "comment": "" }, + { + "term": "Control what notification information is shown on the lock screen", + "translation": "", + "context": "lock screen notification privacy setting", + "reference": "", + "comment": "" + }, { "term": "Control workspaces and columns by scrolling on the bar", "translation": "", @@ -2071,6 +2218,13 @@ "reference": "", "comment": "" }, + { + "term": "Count Only", + "translation": "", + "context": "lock screen notification mode option", + "reference": "", + "comment": "" + }, { "term": "Cover Open", "translation": "", @@ -2183,6 +2337,13 @@ "reference": "", "comment": "" }, + { + "term": "Custom Color", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Custom Duration", "translation": "", @@ -2309,6 +2470,13 @@ "reference": "", "comment": "" }, + { + "term": "DMS Shortcuts", + "translation": "", + "context": "greeter keybinds section header", + "reference": "", + "comment": "" + }, { "term": "DMS out of date", "translation": "", @@ -2372,6 +2540,20 @@ "reference": "", "comment": "" }, + { + "term": "DankBar", + "translation": "", + "context": "greeter feature card title | greeter settings link", + "reference": "", + "comment": "" + }, + { + "term": "DankMaterialShell is ready to use", + "translation": "", + "context": "greeter completion page subtitle", + "reference": "", + "comment": "" + }, { "term": "DankSearch not available", "translation": "", @@ -2554,6 +2736,13 @@ "reference": "", "comment": "" }, + { + "term": "Detailed", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Development", "translation": "", @@ -2620,7 +2809,7 @@ { "term": "Disabled", "translation": "", - "context": "", + "context": "lock screen notification mode option", "reference": "", "comment": "" }, @@ -2687,6 +2876,13 @@ "reference": "", "comment": "" }, + { + "term": "Display Control", + "translation": "", + "context": "greeter feature card title", + "reference": "", + "comment": "" + }, { "term": "Display Name Format", "translation": "", @@ -2750,6 +2946,13 @@ "reference": "", "comment": "" }, + { + "term": "Display hourly weather predictions", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Display only workspaces that contain windows", "translation": "", @@ -2788,7 +2991,7 @@ { "term": "Displays", "translation": "", - "context": "", + "context": "greeter settings link", "reference": "", "comment": "" }, @@ -2816,7 +3019,7 @@ { "term": "Dock", "translation": "", - "context": "", + "context": "greeter settings link", "reference": "", "comment": "" }, @@ -2851,7 +3054,7 @@ { "term": "Docs", "translation": "", - "context": "", + "context": "greeter documentation link", "reference": "", "comment": "" }, @@ -2939,6 +3142,13 @@ "reference": "", "comment": "" }, + { + "term": "Dynamic Theming", + "translation": "", + "context": "greeter feature card title", + "reference": "", + "comment": "" + }, { "term": "Dynamic colors from wallpaper", "translation": "", @@ -2946,6 +3156,13 @@ "reference": "", "comment": "" }, + { + "term": "Dynamic colors, presets", + "translation": "", + "context": "greeter theme description", + "reference": "", + "comment": "" + }, { "term": "Edge Spacing", "translation": "", @@ -3177,6 +3394,13 @@ "reference": "", "comment": "" }, + { + "term": "Errors", + "translation": "", + "context": "greeter doctor page status card", + "reference": "", + "comment": "" + }, { "term": "Ethernet", "translation": "", @@ -3198,6 +3422,13 @@ "reference": "", "comment": "" }, + { + "term": "Explore", + "translation": "", + "context": "greeter explore section header", + "reference": "", + "comment": "" + }, { "term": "Exponential", "translation": "", @@ -3205,6 +3436,13 @@ "reference": "", "comment": "" }, + { + "term": "Extensible architecture", + "translation": "", + "context": "greeter feature card description", + "reference": "", + "comment": "" + }, { "term": "External Wallpaper Management", "translation": "", @@ -3590,6 +3828,20 @@ "reference": "", "comment": "" }, + { + "term": "Features", + "translation": "", + "context": "greeter welcome page section header", + "reference": "", + "comment": "" + }, + { + "term": "Feels", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Feels Like", "translation": "", @@ -3653,6 +3905,13 @@ "reference": "", "comment": "" }, + { + "term": "Finish", + "translation": "", + "context": "greeter finish button", + "reference": "", + "comment": "" + }, { "term": "First Time Setup", "translation": "", @@ -3779,6 +4038,20 @@ "reference": "", "comment": "" }, + { + "term": "Forecast", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Forecast Days", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Forecast Not Available", "translation": "", @@ -3835,6 +4108,13 @@ "reference": "", "comment": "" }, + { + "term": "Full Content", + "translation": "", + "context": "lock screen notification mode option", + "reference": "", + "comment": "" + }, { "term": "Fun", "translation": "", @@ -3863,6 +4143,13 @@ "reference": "", "comment": "" }, + { + "term": "GTK, Qt, IDEs, more", + "translation": "", + "context": "greeter feature card description", + "reference": "", + "comment": "" + }, { "term": "Games", "translation": "", @@ -3884,6 +4171,13 @@ "reference": "", "comment": "" }, + { + "term": "Get Started", + "translation": "", + "context": "greeter first page button", + "reference": "", + "comment": "" + }, { "term": "GitHub", "translation": "", @@ -4185,6 +4479,13 @@ "reference": "", "comment": "" }, + { + "term": "Hourly Forecast Count", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "How often to change wallpaper", "translation": "", @@ -4199,6 +4500,13 @@ "reference": "", "comment": "" }, + { + "term": "Hyprland Layout Overrides", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "I Understand", "translation": "", @@ -4346,6 +4654,13 @@ "reference": "", "comment": "" }, + { + "term": "Info", + "translation": "", + "context": "greeter doctor page status card", + "reference": "", + "comment": "" + }, { "term": "Inherit", "translation": "", @@ -4542,6 +4857,13 @@ "reference": "", "comment": "" }, + { + "term": "Keybinds", + "translation": "", + "context": "greeter settings link", + "reference": "", + "comment": "" + }, { "term": "Keyboard Layout Name", "translation": "", @@ -4783,7 +5105,7 @@ { "term": "Lock Screen", "translation": "", - "context": "", + "context": "lock screen notifications settings card", "reference": "", "comment": "" }, @@ -4899,6 +5221,13 @@ "reference": "", "comment": "" }, + { + "term": "MangoWC Layout Overrides", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Manual Coordinates", "translation": "", @@ -5256,6 +5585,13 @@ "reference": "", "comment": "" }, + { + "term": "Modular widget bar", + "translation": "", + "context": "greeter feature card description", + "reference": "", + "comment": "" + }, { "term": "Monitor Configuration", "translation": "", @@ -5319,6 +5655,13 @@ "reference": "", "comment": "" }, + { + "term": "Multi-Monitor", + "translation": "", + "context": "greeter feature card title", + "reference": "", + "comment": "" + }, { "term": "Muted palette with subdued, calming tones.", "translation": "", @@ -5445,6 +5788,13 @@ "reference": "", "comment": "" }, + { + "term": "Next", + "translation": "", + "context": "greeter next button", + "reference": "", + "comment": "" + }, { "term": "Next Transition", "translation": "", @@ -5473,6 +5823,13 @@ "reference": "", "comment": "" }, + { + "term": "Night mode & gamma", + "translation": "", + "context": "greeter feature card description", + "reference": "", + "comment": "" + }, { "term": "Niri Integration", "translation": "", @@ -5522,6 +5879,13 @@ "reference": "", "comment": "" }, + { + "term": "No DMS shortcuts configured", + "translation": "", + "context": "greeter no keybinds message", + "reference": "", + "comment": "" + }, { "term": "No GPU detected", "translation": "", @@ -5543,6 +5907,13 @@ "reference": "", "comment": "" }, + { + "term": "No Weather Data", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "No Weather Data Available", "translation": "", @@ -5585,6 +5956,13 @@ "reference": "", "comment": "" }, + { + "term": "No checks passed", + "translation": "", + "context": "greeter doctor page empty state", + "reference": "", + "comment": "" + }, { "term": "No clipboard entries found", "translation": "", @@ -5627,6 +6005,13 @@ "reference": "", "comment": "" }, + { + "term": "No errors", + "translation": "", + "context": "greeter doctor page empty state", + "reference": "", + "comment": "" + }, { "term": "No features enabled", "translation": "", @@ -5641,6 +6026,13 @@ "reference": "", "comment": "" }, + { + "term": "No info items", + "translation": "", + "context": "greeter doctor page empty state", + "reference": "", + "comment": "" + }, { "term": "No items added yet", "translation": "", @@ -5718,6 +6110,13 @@ "reference": "", "comment": "" }, + { + "term": "No warnings", + "translation": "", + "context": "greeter doctor page empty state", + "reference": "", + "comment": "" + }, { "term": "No widgets available", "translation": "", @@ -5774,6 +6173,13 @@ "reference": "", "comment": "" }, + { + "term": "Not detected", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Note: this only changes the percentage, it does not actually limit charging.", "translation": "", @@ -5816,6 +6222,13 @@ "reference": "", "comment": "" }, + { + "term": "Notification Display", + "translation": "", + "context": "lock screen notification privacy setting", + "reference": "", + "comment": "" + }, { "term": "Notification Overlay", "translation": "", @@ -5854,7 +6267,7 @@ { "term": "Notifications", "translation": "", - "context": "", + "context": "greeter settings link", "reference": "", "comment": "" }, @@ -5865,6 +6278,13 @@ "reference": "", "comment": "" }, + { + "term": "OK", + "translation": "", + "context": "greeter doctor page status card", + "reference": "", + "comment": "" + }, { "term": "OS Logo", "translation": "", @@ -6047,6 +6467,13 @@ "reference": "", "comment": "" }, + { + "term": "Override Border Size", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Override Corner Radius", "translation": "", @@ -6201,6 +6628,13 @@ "reference": "", "comment": "" }, + { + "term": "Per-screen config", + "translation": "", + "context": "greeter feature card description", + "reference": "", + "comment": "" + }, { "term": "Percentage", "translation": "", @@ -6337,7 +6771,7 @@ { "term": "Plugins", "translation": "", - "context": "", + "context": "greeter feature card title | greeter plugins link", "reference": "", "comment": "" }, @@ -6362,6 +6796,13 @@ "reference": "", "comment": "" }, + { + "term": "Popup behavior, position", + "translation": "", + "context": "greeter notifications description", + "reference": "", + "comment": "" + }, { "term": "Position", "translation": "", @@ -6369,6 +6810,13 @@ "reference": "", "comment": "" }, + { + "term": "Position, pinned apps", + "translation": "", + "context": "greeter dock description", + "reference": "", + "comment": "" + }, { "term": "Possible Override Conflicts", "translation": "", @@ -6453,6 +6901,13 @@ "reference": "", "comment": "" }, + { + "term": "Precip", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Precipitation Chance", "translation": "", @@ -6649,6 +7104,13 @@ "reference": "", "comment": "" }, + { + "term": "Quick system toggles", + "translation": "", + "context": "greeter feature card description", + "reference": "", + "comment": "" + }, { "term": "RGB", "translation": "", @@ -6824,6 +7286,13 @@ "reference": "", "comment": "" }, + { + "term": "Resolution, position, scale", + "translation": "", + "context": "greeter displays description", + "reference": "", + "comment": "" + }, { "term": "Restart DMS", "translation": "", @@ -6922,6 +7391,27 @@ "reference": "", "comment": "" }, + { + "term": "Rounded corners for windows (border_radius)", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Rounded corners for windows (decoration.rounding)", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Run Again", + "translation": "", + "context": "greeter doctor page button", + "reference": "", + "comment": "" + }, { "term": "Run DMS Templates", "translation": "", @@ -7524,6 +8014,20 @@ "reference": "", "comment": "" }, + { + "term": "Show Feels Like Temperature", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Show Forecast", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Show GPU Temperature", "translation": "", @@ -7552,6 +8056,20 @@ "reference": "", "comment": "" }, + { + "term": "Show Hourly Forecast", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Show Humidity", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Show Line Numbers", "translation": "", @@ -7559,6 +8077,13 @@ "reference": "", "comment": "" }, + { + "term": "Show Location", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Show Lock", "translation": "", @@ -7629,6 +8154,20 @@ "reference": "", "comment": "" }, + { + "term": "Show Precipitation Probability", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Show Pressure", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Show Profile Image", "translation": "", @@ -7657,6 +8196,13 @@ "reference": "", "comment": "" }, + { + "term": "Show Sunrise/Sunset", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Show Suspend", "translation": "", @@ -7692,6 +8238,27 @@ "reference": "", "comment": "" }, + { + "term": "Show Weather Condition", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Show Welcome", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Show Wind Speed", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Show Workspace Apps", "translation": "", @@ -7930,6 +8497,20 @@ "reference": "", "comment": "" }, + { + "term": "Skip", + "translation": "", + "context": "greeter skip button", + "reference": "", + "comment": "" + }, + { + "term": "Skip setup", + "translation": "", + "context": "greeter skip button tooltip", + "reference": "", + "comment": "" + }, { "term": "Smartcard Authentication", "translation": "", @@ -7993,6 +8574,20 @@ "reference": "", "comment": "" }, + { + "term": "Space between windows (gappih/gappiv/gappoh/gappov)", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Space between windows (gaps_in and gaps_out)", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Spacer", "translation": "", @@ -8042,6 +8637,13 @@ "reference": "", "comment": "" }, + { + "term": "Standard", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Start", "translation": "", @@ -8196,6 +8798,13 @@ "reference": "", "comment": "" }, + { + "term": "System Check", + "translation": "", + "context": "greeter doctor page title", + "reference": "", + "comment": "" + }, { "term": "System Monitor", "translation": "", @@ -8220,7 +8829,7 @@ { "term": "System Tray", "translation": "", - "context": "", + "context": "greeter feature card title", "reference": "", "comment": "" }, @@ -8360,7 +8969,7 @@ { "term": "Theme & Colors", "translation": "", - "context": "", + "context": "greeter settings link", "reference": "", "comment": "" }, @@ -8371,6 +8980,20 @@ "reference": "", "comment": "" }, + { + "term": "Theme Registry", + "translation": "", + "context": "greeter feature card title", + "reference": "", + "comment": "" + }, + { + "term": "Themes", + "translation": "", + "context": "greeter themes link", + "reference": "", + "comment": "" + }, { "term": "Thickness", "translation": "", @@ -8553,6 +9176,13 @@ "reference": "", "comment": "" }, + { + "term": "Tools", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Top", "translation": "", @@ -8847,6 +9477,20 @@ "reference": "", "comment": "" }, + { + "term": "Use custom border size", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Use custom border/focus-ring width", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Use custom command for update your system", "translation": "", @@ -8868,6 +9512,13 @@ "reference": "", "comment": "" }, + { + "term": "Use custom window rounding instead of theme radius", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Use fingerprint reader for lock screen authentication (requires enrolled fingerprints)", "translation": "", @@ -8903,6 +9554,13 @@ "reference": "", "comment": "" }, + { + "term": "Used when accent color is set to Custom", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "User", "translation": "", @@ -9064,6 +9722,13 @@ "reference": "", "comment": "" }, + { + "term": "View Mode", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Visibility", "translation": "", @@ -9123,7 +9788,7 @@ { "term": "Wallpaper", "translation": "", - "context": "", + "context": "greeter settings link", "reference": "", "comment": "" }, @@ -9176,6 +9841,13 @@ "reference": "", "comment": "" }, + { + "term": "Warnings", + "translation": "", + "context": "greeter doctor page status card", + "reference": "", + "comment": "" + }, { "term": "Wave Progress Bars", "translation": "", @@ -9197,6 +9869,20 @@ "reference": "", "comment": "" }, + { + "term": "Welcome", + "translation": "", + "context": "greeter modal window title", + "reference": "", + "comment": "" + }, + { + "term": "Welcome to DankMaterialShell", + "translation": "", + "context": "greeter welcome page title", + "reference": "", + "comment": "" + }, { "term": "When enabled, apps are sorted alphabetically. When disabled, apps are sorted by usage frequency.", "translation": "", @@ -9337,6 +10023,34 @@ "reference": "", "comment": "" }, + { + "term": "Widgets, layout, style", + "translation": "", + "context": "greeter dankbar description", + "reference": "", + "comment": "" + }, + { + "term": "Width of window border (borderpx)", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Width of window border (general.border_size)", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Width of window border and focus ring", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Wind", "translation": "", @@ -9372,6 +10086,13 @@ "reference": "", "comment": "" }, + { + "term": "Window Rounding", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Workspace", "translation": "", @@ -9484,6 +10205,13 @@ "reference": "", "comment": "" }, + { + "term": "You're All Set!", + "translation": "", + "context": "greeter completion page title", + "reference": "", + "comment": "" + }, { "term": "apps", "translation": "", @@ -9603,6 +10331,13 @@ "reference": "", "comment": "" }, + { + "term": "niri shortcuts config", + "translation": "", + "context": "greeter keybinds niri description", + "reference": "", + "comment": "" + }, { "term": "now", "translation": "",