From bed11feaa43c8715d7a8185ee3e834cb3f335084 Mon Sep 17 00:00:00 2001 From: bbedward Date: Tue, 23 Jun 2026 14:48:43 -0400 Subject: [PATCH] plugins: enhance browser and CLI with new votes and labels --- core/cmd/dms/commands_common.go | 11 + core/internal/plugins/feedback.go | 49 + core/internal/server/plugins/list.go | 6 + core/internal/server/plugins/types.go | 3 + quickshell/Common/SessionData.qml | 6 + quickshell/Modules/Settings/PluginBrowser.qml | 124 ++- quickshell/translations/en.json | 894 ++++++++++-------- quickshell/translations/poexports/de.json | 78 ++ quickshell/translations/poexports/eo.json | 78 ++ quickshell/translations/poexports/es.json | 78 ++ quickshell/translations/poexports/fa.json | 78 ++ quickshell/translations/poexports/fr.json | 78 ++ quickshell/translations/poexports/he.json | 78 ++ quickshell/translations/poexports/hu.json | 78 ++ quickshell/translations/poexports/it.json | 78 ++ quickshell/translations/poexports/ja.json | 78 ++ quickshell/translations/poexports/nl.json | 78 ++ quickshell/translations/poexports/pl.json | 78 ++ quickshell/translations/poexports/pt.json | 78 ++ quickshell/translations/poexports/ru.json | 78 ++ quickshell/translations/poexports/sv.json | 78 ++ quickshell/translations/poexports/tr.json | 78 ++ quickshell/translations/poexports/vi.json | 78 ++ quickshell/translations/poexports/zh_CN.json | 240 +++-- quickshell/translations/poexports/zh_TW.json | 78 ++ quickshell/translations/template.json | 293 ++++-- 26 files changed, 2353 insertions(+), 599 deletions(-) create mode 100644 core/internal/plugins/feedback.go diff --git a/core/cmd/dms/commands_common.go b/core/cmd/dms/commands_common.go index 27f7931d..d67eab5f 100644 --- a/core/cmd/dms/commands_common.go +++ b/core/cmd/dms/commands_common.go @@ -280,6 +280,8 @@ func browsePlugins() error { return nil } + feedback := plugins.FetchFeedback() + fmt.Printf("\nAvailable Plugins (%d):\n\n", len(pluginList)) for _, plugin := range pluginList { installed, _ := manager.IsInstalled(plugin) @@ -303,6 +305,15 @@ func browsePlugins() error { if len(plugin.Dependencies) > 0 { fmt.Printf(" Dependencies: %s\n", strings.Join(plugin.Dependencies, ", ")) } + if fb, ok := feedback[plugin.ID]; ok { + fmt.Printf(" Upvotes: %d\n", fb.Upvotes) + if len(fb.Status) > 0 { + fmt.Printf(" Status: %s\n", strings.Join(fb.Status, ", ")) + } + if fb.IssueURL != "" { + fmt.Printf(" Discuss: %s\n", fb.IssueURL) + } + } fmt.Println() } diff --git a/core/internal/plugins/feedback.go b/core/internal/plugins/feedback.go new file mode 100644 index 00000000..936797c0 --- /dev/null +++ b/core/internal/plugins/feedback.go @@ -0,0 +1,49 @@ +package plugins + +import ( + "encoding/json" + "net/http" + "time" +) + +const feedbackURL = "https://api.danklinux.com/plugins" + +type Feedback struct { + Upvotes int + Status []string + IssueURL string +} + +// FetchFeedback retrieves community upvotes and moderator status from the directory API. +// Best-effort: any failure returns a nil map. +func FetchFeedback() map[string]Feedback { + client := &http.Client{Timeout: 5 * time.Second} + + resp, err := client.Get(feedbackURL) + if err != nil { + return nil + } + defer resp.Body.Close() + + if resp.StatusCode != http.StatusOK { + return nil + } + + var payload struct { + Plugins []struct { + ID string `json:"id"` + Upvotes int `json:"upvotes"` + Status []string `json:"status"` + IssueURL string `json:"issueUrl"` + } `json:"plugins"` + } + if err := json.NewDecoder(resp.Body).Decode(&payload); err != nil { + return nil + } + + feedback := make(map[string]Feedback, len(payload.Plugins)) + for _, p := range payload.Plugins { + feedback[p.ID] = Feedback{Upvotes: p.Upvotes, Status: p.Status, IssueURL: p.IssueURL} + } + return feedback +} diff --git a/core/internal/server/plugins/list.go b/core/internal/server/plugins/list.go index e44d0342..056386ae 100644 --- a/core/internal/server/plugins/list.go +++ b/core/internal/server/plugins/list.go @@ -28,9 +28,12 @@ func HandleList(conn net.Conn, req models.Request) { return } + feedback := plugins.FetchFeedback() + result := make([]PluginInfo, len(pluginList)) for i, p := range pluginList { installed, _ := manager.IsInstalled(p) + fb := feedback[p.ID] result[i] = PluginInfo{ ID: p.ID, Name: p.Name, @@ -46,6 +49,9 @@ func HandleList(conn net.Conn, req models.Request) { FirstParty: strings.HasPrefix(p.Repo, "https://github.com/AvengeMedia"), Featured: p.Featured, RequiresDMS: p.RequiresDMS, + Upvotes: fb.Upvotes, + Status: fb.Status, + IssueURL: fb.IssueURL, } } diff --git a/core/internal/server/plugins/types.go b/core/internal/server/plugins/types.go index 8290f72a..9dbb6a1d 100644 --- a/core/internal/server/plugins/types.go +++ b/core/internal/server/plugins/types.go @@ -17,6 +17,9 @@ type PluginInfo struct { Note string `json:"note,omitempty"` HasUpdate bool `json:"hasUpdate,omitempty"` RequiresDMS string `json:"requires_dms,omitempty"` + Upvotes int `json:"upvotes,omitempty"` + Status []string `json:"status,omitempty"` + IssueURL string `json:"issueUrl,omitempty"` } type SuccessResult struct { diff --git a/quickshell/Common/SessionData.qml b/quickshell/Common/SessionData.qml index f9b6a37d..664981a8 100644 --- a/quickshell/Common/SessionData.qml +++ b/quickshell/Common/SessionData.qml @@ -155,6 +155,7 @@ Singleton { property var recentColors: [] property bool showThirdPartyPlugins: false property bool pluginBrowserInstalledFirst: false + property bool pluginBrowserHideInstalled: true property string pluginBrowserSortMode: "default" property string launchPrefix: "" property string lastBrightnessDevice: "" @@ -971,6 +972,11 @@ Singleton { saveSettings(); } + function setPluginBrowserHideInstalled(enabled) { + pluginBrowserHideInstalled = enabled; + saveSettings(); + } + function setPluginBrowserSortMode(mode) { if (mode === "type" || mode === "contributor") mode = "author"; diff --git a/quickshell/Modules/Settings/PluginBrowser.qml b/quickshell/Modules/Settings/PluginBrowser.qml index c4faaf8c..0a4f79b8 100644 --- a/quickshell/Modules/Settings/PluginBrowser.qml +++ b/quickshell/Modules/Settings/PluginBrowser.qml @@ -33,14 +33,19 @@ FloatingWindow { } readonly property var sortChipOptions: [ + { + id: "hideInstalled", + label: I18n.tr("Hide installed", "plugin browser filter chip"), + toggle: true + }, { id: "installed", - label: I18n.tr("Installed", "plugin browser filter chip"), + label: I18n.tr("Installed first", "plugin browser filter chip"), toggle: true }, { id: "default", - label: I18n.tr("Default", "plugin browser sort option"), + label: I18n.tr("Votes", "plugin browser sort option"), toggle: false }, { @@ -69,8 +74,11 @@ FloatingWindow { } function isSortChipSelected(chipId, toggle) { - if (toggle) + if (toggle) { + if (chipId === "hideInstalled") + return SessionData.pluginBrowserHideInstalled; return SessionData.pluginBrowserInstalledFirst; + } return normalizedSortMode(SessionData.pluginBrowserSortMode) === chipId; } @@ -84,6 +92,38 @@ FloatingWindow { return 0; } + function pluginVerified(plugin) { + return (plugin.status || []).indexOf("verified") !== -1; + } + + function statusColor(status) { + switch (status) { + case "broken": + return Theme.error; + case "unmaintained": + return Theme.warning; + case "verified": + return Theme.info; + default: + return Theme.outline; + } + } + + function statusLabel(status) { + switch (status) { + case "broken": + return I18n.tr("broken", "plugin status"); + case "unmaintained": + return I18n.tr("unmaintained", "plugin status"); + case "deprecated": + return I18n.tr("deprecated", "plugin status"); + case "verified": + return I18n.tr("verified", "plugin status"); + default: + return status; + } + } + function comparePluginAuthor(a, b) { var authorA = (a.author || "").toLowerCase() || "zzz"; var authorB = (b.author || "").toLowerCase() || "zzz"; @@ -257,6 +297,8 @@ FloatingWindow { } var filtered = baseFiltered.slice(); + if (SessionData.pluginBrowserHideInstalled) + filtered = filtered.filter(p => !(p.installed || false)); if (activeCategorySort && categoryFilter !== "all") { filtered = filtered.filter(p => { var cat = (p.category || "").toLowerCase(); @@ -280,10 +322,14 @@ FloatingWindow { return comparePluginAuthor(a, b); if (sortMode === "category") return comparePluginCategory(a, b); - if (a.featured !== b.featured) - return a.featured ? -1 : 1; - if (a.firstParty !== b.firstParty) - return a.firstParty ? -1 : 1; + var votesA = a.upvotes || 0; + var votesB = b.upvotes || 0; + if (votesA !== votesB) + return votesB - votesA; + var verA = root.pluginVerified(a); + var verB = root.pluginVerified(b); + if (verA !== verB) + return verA ? -1 : 1; return comparePluginName(a, b); }); @@ -680,7 +726,10 @@ FloatingWindow { onPressed: mouse => chipRipple.trigger(mouse.x, mouse.y) onClicked: { if (modelData.toggle) { - SessionData.setPluginBrowserInstalledFirst(!SessionData.pluginBrowserInstalledFirst); + if (modelData.id === "hideInstalled") + SessionData.setPluginBrowserHideInstalled(!SessionData.pluginBrowserHideInstalled); + else + SessionData.setPluginBrowserInstalledFirst(!SessionData.pluginBrowserInstalledFirst); } else { if (modelData.id !== "category") root.categoryFilter = "all"; @@ -895,13 +944,70 @@ FloatingWindow { font.weight: Font.Medium } } + + Repeater { + model: modelData.status || [] + + Rectangle { + required property string modelData + height: 16 + width: statusText.implicitWidth + Theme.spacingXS * 2 + radius: 8 + color: Theme.withAlpha(root.statusColor(modelData), 0.15) + border.color: Theme.withAlpha(root.statusColor(modelData), 0.4) + border.width: 1 + anchors.verticalCenter: parent.verticalCenter + + StyledText { + id: statusText + anchors.centerIn: parent + text: root.statusLabel(parent.modelData) + font.pixelSize: Theme.fontSizeSmall - 2 + color: root.statusColor(parent.modelData) + font.weight: Font.Medium + } + } + } + + Rectangle { + height: 16 + width: upvoteRow.implicitWidth + Theme.spacingXS * 2 + radius: 8 + color: Theme.withAlpha(Theme.primary, 0.1) + border.color: Theme.withAlpha(Theme.primary, 0.3) + border.width: 1 + visible: !!modelData.issueUrl + anchors.verticalCenter: parent.verticalCenter + + Row { + id: upvoteRow + anchors.centerIn: parent + spacing: 2 + + DankIcon { + name: "thumb_up" + size: 10 + color: Theme.primary + anchors.verticalCenter: parent.verticalCenter + } + + StyledText { + text: modelData.upvotes || 0 + font.pixelSize: Theme.fontSizeSmall - 2 + color: Theme.primary + font.weight: Font.Medium + anchors.verticalCenter: parent.verticalCenter + } + } + } } StyledText { text: { const author = I18n.tr("by %1", "author attribution").arg(modelData.author || I18n.tr("Unknown", "unknown author")); const source = modelData.repo ? ` • ${I18n.tr("source", "source code link")}` : ""; - return author + source; + const discuss = modelData.issueUrl ? ` • ${I18n.tr("discuss", "plugin discussion link")}` : ""; + return author + source + discuss; } font.pixelSize: Theme.fontSizeSmall color: Theme.outline diff --git a/quickshell/translations/en.json b/quickshell/translations/en.json index dc28b75f..897afc8e 100644 --- a/quickshell/translations/en.json +++ b/quickshell/translations/en.json @@ -215,6 +215,12 @@ "reference": "Modals/MuxModal.qml:466", "comment": "" }, + { + "term": "%1: %2", + "context": "%1: %2", + "reference": "Services/DMSNetworkService.qml:394", + "comment": "" + }, { "term": "%1m ago", "context": "%1m ago", @@ -236,7 +242,7 @@ { "term": "(Default)", "context": "(Default)", - "reference": "Modules/Settings/WallpaperTab.qml:881, Modules/Settings/WallpaperTab.qml:896, Modules/Settings/WallpaperTab.qml:903", + "reference": "Modules/Settings/WallpaperTab.qml:896, Modules/Settings/WallpaperTab.qml:911, Modules/Settings/WallpaperTab.qml:918", "comment": "default monitor label suffix" }, { @@ -275,22 +281,16 @@ "reference": "Modules/DankDash/Overview/CalendarEventEditor.qml:31", "comment": "" }, - { - "term": "1 device connected", - "context": "1 device connected", - "reference": "dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:37", - "comment": "KDE Connect status single device" - }, { "term": "1 hour", "context": "1 hour", - "reference": "Modules/Settings/WallpaperTab.qml:1018, Modules/Settings/PowerSleepTab.qml:10, Modules/ControlCenter/Details/DoNotDisturbDetail.qml:71", + "reference": "Modules/Settings/WallpaperTab.qml:1033, Modules/Settings/PowerSleepTab.qml:10, Modules/ControlCenter/Details/DoNotDisturbDetail.qml:71", "comment": "wallpaper interval" }, { "term": "1 hour 30 minutes", "context": "1 hour 30 minutes", - "reference": "Modules/Settings/WallpaperTab.qml:1018, Modules/Settings/PowerSleepTab.qml:10", + "reference": "Modules/Settings/WallpaperTab.qml:1033, Modules/Settings/PowerSleepTab.qml:10", "comment": "wallpaper interval" }, { @@ -302,7 +302,7 @@ { "term": "1 minute", "context": "1 minute", - "reference": "Modules/Settings/WallpaperTab.qml:1018, Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/NotificationsTab.qml:65, Modules/Notifications/Center/NotificationSettings.qml:70", + "reference": "Modules/Settings/WallpaperTab.qml:1033, Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/NotificationsTab.qml:65, Modules/Notifications/Center/NotificationSettings.qml:70", "comment": "wallpaper interval" }, { @@ -338,7 +338,7 @@ { "term": "10 seconds", "context": "10 seconds", - "reference": "Modules/Settings/WallpaperTab.qml:1018, Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/PowerSleepTab.qml:512, Modules/Settings/NotificationsTab.qml:53, Modules/Notifications/Center/NotificationSettings.qml:58", + "reference": "Modules/Settings/WallpaperTab.qml:1033, Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/PowerSleepTab.qml:512, Modules/Settings/NotificationsTab.qml:53, Modules/Notifications/Center/NotificationSettings.qml:58", "comment": "wallpaper interval" }, { @@ -350,7 +350,7 @@ { "term": "12 hours", "context": "12 hours", - "reference": "Modules/Settings/WallpaperTab.qml:1018", + "reference": "Modules/Settings/WallpaperTab.qml:1033", "comment": "wallpaper interval" }, { @@ -374,13 +374,13 @@ { "term": "15 minutes", "context": "15 minutes", - "reference": "Modules/Settings/WallpaperTab.qml:1018, Modules/Settings/PowerSleepTab.qml:10", + "reference": "Modules/Settings/WallpaperTab.qml:1033, Modules/Settings/PowerSleepTab.qml:10", "comment": "wallpaper interval" }, { "term": "15 seconds", "context": "15 seconds", - "reference": "Modules/Settings/WallpaperTab.qml:1018, Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/NotificationsTab.qml:57, Modules/Notifications/Center/NotificationSettings.qml:62", + "reference": "Modules/Settings/WallpaperTab.qml:1033, Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/NotificationsTab.qml:57, Modules/Notifications/Center/NotificationSettings.qml:62", "comment": "wallpaper interval" }, { @@ -392,7 +392,7 @@ { "term": "2 hours", "context": "2 hours", - "reference": "Modules/Settings/WallpaperTab.qml:1018, Modules/Settings/PowerSleepTab.qml:10", + "reference": "Modules/Settings/WallpaperTab.qml:1033, Modules/Settings/PowerSleepTab.qml:10", "comment": "wallpaper interval" }, { @@ -416,13 +416,13 @@ { "term": "20 seconds", "context": "20 seconds", - "reference": "Modules/Settings/WallpaperTab.qml:1018, Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:129", + "reference": "Modules/Settings/WallpaperTab.qml:1033, Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:129", "comment": "wallpaper interval" }, { "term": "24-Hour Format", "context": "24-Hour Format", - "reference": "Modules/Settings/WallpaperTab.qml:1156, Modules/Settings/TimeWeatherTab.qml:53", + "reference": "Modules/Settings/WallpaperTab.qml:1171, Modules/Settings/TimeWeatherTab.qml:53", "comment": "" }, { @@ -434,7 +434,7 @@ { "term": "25 seconds", "context": "25 seconds", - "reference": "Modules/Settings/WallpaperTab.qml:1018", + "reference": "Modules/Settings/WallpaperTab.qml:1033", "comment": "wallpaper interval" }, { @@ -458,7 +458,7 @@ { "term": "3 hours", "context": "3 hours", - "reference": "Modules/Settings/WallpaperTab.qml:1018, Modules/Settings/PowerSleepTab.qml:10, Modules/ControlCenter/Details/DoNotDisturbDetail.qml:75", + "reference": "Modules/Settings/WallpaperTab.qml:1033, Modules/Settings/PowerSleepTab.qml:10, Modules/ControlCenter/Details/DoNotDisturbDetail.qml:75", "comment": "wallpaper interval" }, { @@ -494,31 +494,31 @@ { "term": "30 minutes", "context": "30 minutes", - "reference": "Modules/Settings/WallpaperTab.qml:1018, Modules/Settings/PowerSleepTab.qml:10", + "reference": "Modules/Settings/WallpaperTab.qml:1033, Modules/Settings/PowerSleepTab.qml:10", "comment": "wallpaper interval" }, { "term": "30 seconds", "context": "30 seconds", - "reference": "Modules/Settings/WallpaperTab.qml:1018, Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/NotificationsTab.qml:61, Modules/Notifications/Center/NotificationSettings.qml:66", + "reference": "Modules/Settings/WallpaperTab.qml:1033, Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/NotificationsTab.qml:61, Modules/Notifications/Center/NotificationSettings.qml:66", "comment": "wallpaper interval" }, { "term": "35 seconds", "context": "35 seconds", - "reference": "Modules/Settings/WallpaperTab.qml:1018", + "reference": "Modules/Settings/WallpaperTab.qml:1033", "comment": "wallpaper interval" }, { "term": "3rd party", "context": "3rd party", - "reference": "Modules/Settings/PluginBrowser.qml:892", + "reference": "Modules/Settings/PluginBrowser.qml:941", "comment": "" }, { "term": "4 hours", "context": "4 hours", - "reference": "Modules/Settings/WallpaperTab.qml:1018", + "reference": "Modules/Settings/WallpaperTab.qml:1033", "comment": "wallpaper interval" }, { @@ -530,13 +530,13 @@ { "term": "40 seconds", "context": "40 seconds", - "reference": "Modules/Settings/WallpaperTab.qml:1018", + "reference": "Modules/Settings/WallpaperTab.qml:1033", "comment": "wallpaper interval" }, { "term": "45 seconds", "context": "45 seconds", - "reference": "Modules/Settings/WallpaperTab.qml:1018", + "reference": "Modules/Settings/WallpaperTab.qml:1033", "comment": "wallpaper interval" }, { @@ -548,19 +548,19 @@ { "term": "5 minutes", "context": "5 minutes", - "reference": "Modules/Settings/WallpaperTab.qml:1018, Modules/Settings/WallpaperTab.qml:1042, Modules/Settings/WallpaperTab.qml:1066, Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/NotificationsTab.qml:73, Modules/Notifications/Center/NotificationSettings.qml:78", + "reference": "Modules/Settings/WallpaperTab.qml:1033, Modules/Settings/WallpaperTab.qml:1057, Modules/Settings/WallpaperTab.qml:1081, Modules/Settings/PowerSleepTab.qml:10, Modules/Settings/NotificationsTab.qml:73, Modules/Notifications/Center/NotificationSettings.qml:78", "comment": "wallpaper interval" }, { "term": "5 seconds", "context": "5 seconds", - "reference": "Modules/Settings/WallpaperTab.qml:1018, Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:114, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/PowerSleepTab.qml:140, Modules/Settings/PowerSleepTab.qml:512, Modules/Settings/NotificationsTab.qml:45, Modules/Settings/NotificationsTab.qml:160, Modules/Notifications/Center/NotificationSettings.qml:50, Modules/Notifications/Center/NotificationSettings.qml:89", + "reference": "Modules/Settings/WallpaperTab.qml:1033, Modules/Settings/PowerSleepTab.qml:103, Modules/Settings/PowerSleepTab.qml:114, Modules/Settings/PowerSleepTab.qml:129, Modules/Settings/PowerSleepTab.qml:140, Modules/Settings/PowerSleepTab.qml:512, Modules/Settings/NotificationsTab.qml:45, Modules/Settings/NotificationsTab.qml:160, Modules/Notifications/Center/NotificationSettings.qml:50, Modules/Notifications/Center/NotificationSettings.qml:89", "comment": "wallpaper interval" }, { "term": "50 seconds", "context": "50 seconds", - "reference": "Modules/Settings/WallpaperTab.qml:1018", + "reference": "Modules/Settings/WallpaperTab.qml:1033", "comment": "wallpaper interval" }, { @@ -572,13 +572,13 @@ { "term": "55 seconds", "context": "55 seconds", - "reference": "Modules/Settings/WallpaperTab.qml:1018", + "reference": "Modules/Settings/WallpaperTab.qml:1033", "comment": "wallpaper interval" }, { "term": "6 hours", "context": "6 hours", - "reference": "Modules/Settings/WallpaperTab.qml:1018", + "reference": "Modules/Settings/WallpaperTab.qml:1033", "comment": "wallpaper interval" }, { @@ -596,7 +596,7 @@ { "term": "8 hours", "context": "8 hours", - "reference": "Modules/Settings/WallpaperTab.qml:1018, Modules/ControlCenter/Details/DoNotDisturbDetail.qml:79", + "reference": "Modules/Settings/WallpaperTab.qml:1033, Modules/ControlCenter/Details/DoNotDisturbDetail.qml:79", "comment": "wallpaper interval" }, { @@ -650,7 +650,7 @@ { "term": "AC Adapter (Plugged In)", "context": "AC Adapter (Plugged In)", - "reference": "Modules/Settings/BatteryTab.qml:68", + "reference": "Modules/Settings/BatteryTab.qml:67", "comment": "" }, { @@ -686,13 +686,13 @@ { "term": "Accent Color", "context": "Accent Color", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:36", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:36, dms-plugins/dms-plugins-official/DankDesktopWeather/DankDesktopWeatherSettings.qml:36", "comment": "" }, { "term": "Accept", "context": "Accept", - "reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:182, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:370", + "reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:272, dms-plugins/dms-plugins-official/DankKDEConnect/components/DeviceCard.qml:272", "comment": "KDE Connect accept pairing button" }, { @@ -776,7 +776,7 @@ { "term": "Activation", "context": "Activation", - "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:97", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:97, dms-plugins/dms-plugins-official/DankLauncherKeys/DankLauncherKeysSettings.qml:97", "comment": "" }, { @@ -800,7 +800,7 @@ { "term": "Active VPN", "context": "Active VPN", - "reference": "Services/DMSNetworkService.qml:109", + "reference": "Services/DMSNetworkService.qml:111", "comment": "" }, { @@ -1022,7 +1022,7 @@ { "term": "All", "context": "All", - "reference": "Modals/ProcessListModal.qml:378, Services/AppSearchService.qml:724, Services/AppSearchService.qml:745, dms-plugins/DankStickerSearch/DankStickerSearch.qml:101, Modals/DankLauncherV2/Controller.qml:754, Modals/DankLauncherV2/SpotlightLauncherContent.qml:439, Modals/DankLauncherV2/LauncherContent.qml:339, Modals/DankLauncherV2/LauncherContent.qml:617, Modals/Clipboard/ClipboardContent.qml:15, Modules/ProcessList/ProcessListPopout.qml:155, Modules/Settings/WidgetsTabSection.qml:3303, Modules/Settings/WidgetsTabSection.qml:3357, Modules/Settings/PluginBrowser.qml:133, Modules/Settings/KeybindsTab.qml:468, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:103, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:106, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:118, Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:254, Modules/Notifications/Center/HistoryNotificationList.qml:87", + "reference": "Modals/ProcessListModal.qml:378, Services/AppSearchService.qml:724, Services/AppSearchService.qml:745, dms-plugins/DankStickerSearch/DankStickerSearch.qml:101, dms-plugins/dms-plugins-official/DankStickerSearch/DankStickerSearch.qml:101, Modals/DankLauncherV2/Controller.qml:754, Modals/DankLauncherV2/SpotlightLauncherContent.qml:439, Modals/DankLauncherV2/LauncherContent.qml:339, Modals/DankLauncherV2/LauncherContent.qml:617, Modals/Clipboard/ClipboardContent.qml:15, Modules/ProcessList/ProcessListPopout.qml:155, Modules/Settings/WidgetsTabSection.qml:3303, Modules/Settings/WidgetsTabSection.qml:3357, Modules/Settings/PluginBrowser.qml:173, Modules/Settings/KeybindsTab.qml:468, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:103, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:106, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:118, Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:254, Modules/Notifications/Center/HistoryNotificationList.qml:87", "comment": "Tailscale filter: all devices | notification history filter | plugin browser category filter" }, { @@ -1112,7 +1112,7 @@ { "term": "Always Active", "context": "Always Active", - "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:106", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:106, dms-plugins/dms-plugins-official/DankLauncherKeys/DankLauncherKeysSettings.qml:106", "comment": "" }, { @@ -1346,7 +1346,7 @@ { "term": "Apply to Hardware", "context": "Apply to Hardware", - "reference": "Modules/Settings/BatteryTab.qml:199", + "reference": "Modules/Settings/BatteryTab.qml:198", "comment": "" }, { @@ -1490,7 +1490,7 @@ { "term": "Audio Output", "context": "Audio Output", - "reference": "Modules/ControlCenter/Models/WidgetModel.qml:179", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1876, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:1331, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1876, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:1331, Modules/ControlCenter/Models/WidgetModel.qml:179", "comment": "" }, { @@ -1526,13 +1526,13 @@ { "term": "Auth", "context": "Auth", - "reference": "Widgets/VpnProfileDelegate.qml:60, Modules/Settings/NetworkVpnTab.qml:435", + "reference": "Widgets/VpnProfileDelegate.qml:62, Modules/Settings/NetworkVpnTab.qml:435", "comment": "" }, { "term": "Auth Type", "context": "Auth Type", - "reference": "Widgets/VpnProfileDelegate.qml:78, Modules/Settings/NetworkVpnTab.qml:450", + "reference": "Widgets/VpnProfileDelegate.qml:80, Modules/Settings/NetworkVpnTab.qml:450", "comment": "" }, { @@ -1658,7 +1658,7 @@ { "term": "Auto Power Saver", "context": "Auto Power Saver", - "reference": "Modules/Settings/BatteryTab.qml:258", + "reference": "Modules/Settings/BatteryTab.qml:257", "comment": "" }, { @@ -1742,19 +1742,19 @@ { "term": "Autoconnect", "context": "Autoconnect", - "reference": "Widgets/VpnProfileDelegate.qml:264, Modules/Settings/NetworkVpnTab.qml:493, Modules/Settings/NetworkWifiTab.qml:820", + "reference": "Widgets/VpnProfileDelegate.qml:276, Modules/Settings/NetworkVpnTab.qml:493, Modules/Settings/NetworkWifiTab.qml:820", "comment": "" }, { "term": "Autoconnect disabled", "context": "Autoconnect disabled", - "reference": "Services/LegacyNetworkService.qml:506, Services/DMSNetworkService.qml:993", + "reference": "Services/LegacyNetworkService.qml:506, Services/DMSNetworkService.qml:1017", "comment": "" }, { "term": "Autoconnect enabled", "context": "Autoconnect enabled", - "reference": "Services/LegacyNetworkService.qml:506, Services/DMSNetworkService.qml:993", + "reference": "Services/LegacyNetworkService.qml:506, Services/DMSNetworkService.qml:1017", "comment": "" }, { @@ -1778,7 +1778,7 @@ { "term": "Automatic Cycling", "context": "Automatic Cycling", - "reference": "Modules/Settings/WallpaperTab.qml:929, Modules/Settings/LockScreenTab.qml:336", + "reference": "Modules/Settings/WallpaperTab.qml:944, Modules/Settings/LockScreenTab.qml:336", "comment": "" }, { @@ -1790,7 +1790,7 @@ { "term": "Automatically cycle through wallpapers in the same folder", "context": "Automatically cycle through wallpapers in the same folder", - "reference": "Modules/Settings/WallpaperTab.qml:930", + "reference": "Modules/Settings/WallpaperTab.qml:945", "comment": "" }, { @@ -1844,7 +1844,7 @@ { "term": "Automatically turn on Power Saver profile when battery is low.", "context": "Automatically turn on Power Saver profile when battery is low.", - "reference": "Modules/Settings/BatteryTab.qml:259", + "reference": "Modules/Settings/BatteryTab.qml:258", "comment": "" }, { @@ -1898,7 +1898,7 @@ { "term": "Available in Detailed and Forecast view modes", "context": "Available in Detailed and Forecast view modes", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:121", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:121, dms-plugins/dms-plugins-official/DankDesktopWeather/DankDesktopWeatherSettings.qml:121", "comment": "" }, { @@ -1952,7 +1952,7 @@ { "term": "Background Color", "context": "Background Color", - "reference": "Modules/Settings/WallpaperTab.qml:361, Modules/Settings/WallpaperTab.qml:374", + "reference": "Modules/Settings/WallpaperTab.qml:361, Modules/Settings/WallpaperTab.qml:389", "comment": "" }, { @@ -1964,7 +1964,7 @@ { "term": "Background Opacity", "context": "Background Opacity", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:63, PLUGINS/ExampleDesktopClock/DesktopClockSettings.qml:39", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:63, dms-plugins/dms-plugins-official/DankDesktopWeather/DankDesktopWeatherSettings.qml:63, PLUGINS/ExampleDesktopClock/DesktopClockSettings.qml:39", "comment": "" }, { @@ -2072,8 +2072,8 @@ { "term": "Battery", "context": "Battery", - "reference": "Modals/Settings/SettingsSidebar.qml:383, Modules/Settings/WidgetsTabSection.qml:1837, Modules/Settings/WidgetsTabSection.qml:2021, Modules/Settings/PowerSleepTab.qml:59, Modules/Settings/WidgetsTab.qml:178, Modules/ControlCenter/Models/WidgetModel.qml:221, Modules/ControlCenter/Widgets/BatteryPill.qml:17", - "comment": "" + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1678, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:740, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1678, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:740, Modals/Settings/SettingsSidebar.qml:383, Modules/Settings/WidgetsTabSection.qml:1837, Modules/Settings/WidgetsTabSection.qml:2021, Modules/Settings/PowerSleepTab.qml:59, Modules/Settings/WidgetsTab.qml:178, Modules/ControlCenter/Models/WidgetModel.qml:221, Modules/ControlCenter/Widgets/BatteryPill.qml:17", + "comment": "KDE Connect battery label" }, { "term": "Battery %1", @@ -2084,31 +2084,31 @@ { "term": "Battery Charge Limit", "context": "Battery Charge Limit", - "reference": "Modules/Settings/BatteryTab.qml:183", + "reference": "Modules/Settings/BatteryTab.qml:182", "comment": "" }, { "term": "Battery Health", "context": "Battery Health", - "reference": "Modules/Settings/BatteryTab.qml:158", + "reference": "Modules/Settings/BatteryTab.qml:157", "comment": "" }, { "term": "Battery Power", "context": "Battery Power", - "reference": "Modules/Settings/BatteryTab.qml:68", + "reference": "Modules/Settings/BatteryTab.qml:67", "comment": "" }, { "term": "Battery Protection & Charging", "context": "Battery Protection & Charging", - "reference": "Modules/Settings/BatteryTab.qml:178", + "reference": "Modules/Settings/BatteryTab.qml:177", "comment": "" }, { "term": "Battery Status", "context": "Battery Status", - "reference": "Modules/Settings/BatteryTab.qml:52", + "reference": "Modules/Settings/BatteryTab.qml:51", "comment": "" }, { @@ -2144,7 +2144,7 @@ { "term": "Battery percentage to trigger a critical alert.", "context": "Battery percentage to trigger a critical alert.", - "reference": "Modules/Settings/BatteryTab.qml:282", + "reference": "Modules/Settings/BatteryTab.qml:281", "comment": "" }, { @@ -2192,7 +2192,7 @@ { "term": "Black", "context": "Black", - "reference": "Modules/Settings/TypographyMotionTab.qml:254, Modules/Settings/TypographyMotionTab.qml:274, Modules/Settings/TypographyMotionTab.qml:306, Modules/Settings/WallpaperTab.qml:366", + "reference": "Modules/Settings/TypographyMotionTab.qml:254, Modules/Settings/TypographyMotionTab.qml:274, Modules/Settings/TypographyMotionTab.qml:306, Modules/Settings/WallpaperTab.qml:368", "comment": "font weight" }, { @@ -2270,13 +2270,13 @@ { "term": "Blur Wallpaper Layer", "context": "Blur Wallpaper Layer", - "reference": "Modules/Settings/WallpaperTab.qml:1294", + "reference": "Modules/Settings/WallpaperTab.qml:1309", "comment": "" }, { "term": "Blur on Overview", "context": "Blur on Overview", - "reference": "Modules/Settings/WallpaperTab.qml:804", + "reference": "Modules/Settings/WallpaperTab.qml:819", "comment": "" }, { @@ -2288,7 +2288,7 @@ { "term": "Blur wallpaper when niri overview is open", "context": "Blur wallpaper when niri overview is open", - "reference": "Modules/Settings/WallpaperTab.qml:805", + "reference": "Modules/Settings/WallpaperTab.qml:820", "comment": "" }, { @@ -2444,13 +2444,13 @@ { "term": "Browse Files", "context": "Browse Files", - "reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:151, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:322", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1599, dms-plugins/DankKDEConnect/components/DeviceCard.qml:228, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:656, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1599, dms-plugins/dms-plugins-official/DankKDEConnect/components/DeviceCard.qml:228, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:656", "comment": "KDE Connect browse tooltip" }, { "term": "Browse Plugins", "context": "Browse Plugins", - "reference": "Modules/Settings/PluginBrowser.qml:379, Modules/Settings/PluginBrowser.qml:489, Modules/Settings/DesktopWidgetsTab.qml:101", + "reference": "Modules/Settings/PluginBrowser.qml:425, Modules/Settings/PluginBrowser.qml:535, Modules/Settings/DesktopWidgetsTab.qml:101", "comment": "plugin browser header | plugin browser window title" }, { @@ -2558,7 +2558,7 @@ { "term": "Cancel", "context": "Cancel", - "reference": "DMSShell.qml:555, Modals/WindowRuleModal.qml:1851, Modals/PolkitAuthContent.qml:326, Modals/WorkspaceRenameModal.qml:161, Modals/BluetoothPairingModal.qml:267, Modals/WifiPasswordModal.qml:677, Widgets/KeybindItem.qml:1858, Modals/DankLauncherV2/LauncherContent.qml:1024, Modals/Common/ConfirmModal.qml:15, Modals/Common/ConfirmModal.qml:26, Modals/Common/ConfirmModal.qml:39, Modals/FileBrowser/FileBrowserOverwriteDialog.qml:83, Modals/Clipboard/ClipboardEditor.qml:322, Modules/Settings/PluginBrowser.qml:354, Modules/Settings/PluginBrowser.qml:1236, Modules/Settings/GreeterTab.qml:178, Modules/Settings/ThemeBrowser.qml:122, Modules/Settings/DisplayConfigTab.qml:287, Modules/Settings/DisplayConfigTab.qml:332, Modules/Settings/DisplayConfigTab.qml:416, Modules/Settings/AudioTab.qml:727, Modules/DankDash/Overview/CalendarEventEditor.qml:342, Modules/DankBar/Popouts/SystemUpdatePopout.qml:203", + "reference": "DMSShell.qml:555, Modals/WindowRuleModal.qml:1851, Modals/PolkitAuthContent.qml:326, Modals/WorkspaceRenameModal.qml:161, Modals/BluetoothPairingModal.qml:267, Modals/WifiPasswordModal.qml:677, Widgets/KeybindItem.qml:1858, Modals/DankLauncherV2/LauncherContent.qml:1024, Modals/Common/ConfirmModal.qml:15, Modals/Common/ConfirmModal.qml:26, Modals/Common/ConfirmModal.qml:39, Modals/FileBrowser/FileBrowserOverwriteDialog.qml:83, Modals/Clipboard/ClipboardEditor.qml:322, Modules/Settings/PluginBrowser.qml:400, Modules/Settings/PluginBrowser.qml:1342, Modules/Settings/GreeterTab.qml:178, Modules/Settings/ThemeBrowser.qml:122, Modules/Settings/DisplayConfigTab.qml:287, Modules/Settings/DisplayConfigTab.qml:332, Modules/Settings/DisplayConfigTab.qml:416, Modules/Settings/AudioTab.qml:727, Modules/DankDash/Overview/CalendarEventEditor.qml:342, Modules/DankBar/Popouts/SystemUpdatePopout.qml:203", "comment": "" }, { @@ -2648,7 +2648,7 @@ { "term": "Category", "context": "Category", - "reference": "Modules/Settings/PluginBrowser.qml:58", + "reference": "Modules/Settings/PluginBrowser.qml:63", "comment": "plugin browser sort option" }, { @@ -2708,7 +2708,7 @@ { "term": "Charge Level", "context": "Charge Level", - "reference": "Modules/Settings/BatteryTab.qml:86", + "reference": "Modules/Settings/BatteryTab.qml:85", "comment": "" }, { @@ -2720,7 +2720,7 @@ { "term": "Charge limit applied successfully", "context": "Charge limit applied successfully", - "reference": "Modules/Settings/BatteryTab.qml:30", + "reference": "Modules/Settings/BatteryTab.qml:29", "comment": "" }, { @@ -2786,7 +2786,7 @@ { "term": "Choose Dark Mode Color", "context": "Choose Dark Mode Color", - "reference": "Modules/Settings/WallpaperTab.qml:728", + "reference": "Modules/Settings/WallpaperTab.qml:743", "comment": "dark mode wallpaper color picker title" }, { @@ -2804,7 +2804,7 @@ { "term": "Choose Light Mode Color", "context": "Choose Light Mode Color", - "reference": "Modules/Settings/WallpaperTab.qml:538", + "reference": "Modules/Settings/WallpaperTab.qml:553", "comment": "light mode wallpaper color picker title" }, { @@ -2834,7 +2834,7 @@ { "term": "Choose how the weather widget is displayed", "context": "Choose how the weather widget is displayed", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:12", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:12, dms-plugins/dms-plugins-official/DankDesktopWeather/DankDesktopWeatherSettings.qml:12", "comment": "" }, { @@ -2846,7 +2846,7 @@ { "term": "Choose how to be notified about battery alerts.", "context": "Choose how to be notified about battery alerts.", - "reference": "Modules/Settings/BatteryTab.qml:246", + "reference": "Modules/Settings/BatteryTab.qml:245", "comment": "" }, { @@ -2924,13 +2924,13 @@ { "term": "Chroma Style", "context": "Chroma Style", - "reference": "dms-plugins/DankNotepadModule/DankNotepadModuleSettings.qml:74", + "reference": "dms-plugins/DankNotepadModule/DankNotepadModuleSettings.qml:74, dms-plugins/dms-plugins-official/DankNotepadModule/DankNotepadModuleSettings.qml:74", "comment": "" }, { "term": "Cipher", "context": "Cipher", - "reference": "Widgets/VpnProfileDelegate.qml:54, Modules/Settings/NetworkVpnTab.qml:430", + "reference": "Widgets/VpnProfileDelegate.qml:56, Modules/Settings/NetworkVpnTab.qml:430", "comment": "" }, { @@ -3104,8 +3104,8 @@ { "term": "Clipboard sent", "context": "Clipboard sent", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:117, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:300", - "comment": "KDE Connect clipboard action | Phone Connect clipboard action" + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:613, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:58, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:613, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:58", + "comment": "Phone Connect clipboard action" }, { "term": "Clipboard works but nothing saved to disk", @@ -3146,7 +3146,7 @@ { "term": "Close Window", "context": "Close Window", - "reference": "dms-plugins/DankHyprlandWindows/DankHyprlandWindows.qml:169, Modules/Dock/DockContextMenu.qml:350, Modules/DankBar/Widgets/AppsDockContextMenu.qml:456", + "reference": "dms-plugins/DankHyprlandWindows/DankHyprlandWindows.qml:169, dms-plugins/dms-plugins-official/DankHyprlandWindows/DankHyprlandWindows.qml:169, Modules/Dock/DockContextMenu.qml:350, Modules/DankBar/Widgets/AppsDockContextMenu.qml:456", "comment": "" }, { @@ -3230,13 +3230,13 @@ { "term": "Color theme for syntax highlighting.", "context": "Color theme for syntax highlighting.", - "reference": "dms-plugins/DankNotepadModule/DankNotepadModuleSettings.qml:77", + "reference": "dms-plugins/DankNotepadModule/DankNotepadModuleSettings.qml:77, dms-plugins/dms-plugins-official/DankNotepadModule/DankNotepadModuleSettings.qml:77", "comment": "" }, { "term": "Color theme for syntax highlighting. %1 themes available.", "context": "Color theme for syntax highlighting. %1 themes available.", - "reference": "dms-plugins/DankNotepadModule/DankNotepadModuleSettings.qml:76", + "reference": "dms-plugins/DankNotepadModule/DankNotepadModuleSettings.qml:76, dms-plugins/dms-plugins-official/DankNotepadModule/DankNotepadModuleSettings.qml:76", "comment": "" }, { @@ -3326,7 +3326,7 @@ { "term": "Compact", "context": "Compact", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:15, Modules/Settings/WidgetsTabSection.qml:1482, Modules/Settings/NotificationsTab.qml:298", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:15, dms-plugins/dms-plugins-official/DankDesktopWeather/DankDesktopWeatherSettings.qml:15, Modules/Settings/WidgetsTabSection.qml:1482, Modules/Settings/NotificationsTab.qml:298", "comment": "" }, { @@ -3380,7 +3380,7 @@ { "term": "Configuration activated", "context": "Configuration activated", - "reference": "Services/DMSNetworkService.qml:437", + "reference": "Services/DMSNetworkService.qml:461", "comment": "" }, { @@ -3500,7 +3500,7 @@ { "term": "Connected", "context": "Connected", - "reference": "Modules/Settings/AboutTab.qml:716, Modules/Settings/NetworkVpnTab.qml:101, Modules/Settings/NetworkEthernetTab.qml:163, Modules/Settings/DisplayConfigTab.qml:393, Modules/Settings/FrameTab.qml:59, Modules/Settings/NetworkWifiTab.qml:566, Modules/Settings/NetworkWifiTab.qml:969, Modules/ControlCenter/Details/BluetoothDetail.qml:301, Modules/ControlCenter/Details/BluetoothDetail.qml:302, Modules/ControlCenter/Details/NetworkDetail.qml:627, Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml:21, Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:111, Modules/ControlCenter/Components/DragDropGrid.qml:501, Modules/ControlCenter/Components/DragDropGrid.qml:504, Modules/ControlCenter/Components/DragDropGrid.qml:506, Modules/ControlCenter/Components/DragDropGrid.qml:509", + "reference": "Modules/Settings/AboutTab.qml:716, Modules/Settings/NetworkVpnTab.qml:101, Modules/Settings/NetworkEthernetTab.qml:163, Modules/Settings/DisplayConfigTab.qml:393, Modules/Settings/FrameTab.qml:59, Modules/Settings/NetworkWifiTab.qml:566, Modules/Settings/NetworkWifiTab.qml:969, Modules/ControlCenter/Details/BluetoothDetail.qml:301, Modules/ControlCenter/Details/BluetoothDetail.qml:302, Modules/ControlCenter/Details/NetworkDetail.qml:627, Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml:26, Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:111, Modules/ControlCenter/Components/DragDropGrid.qml:501, Modules/ControlCenter/Components/DragDropGrid.qml:504, Modules/ControlCenter/Components/DragDropGrid.qml:506, Modules/ControlCenter/Components/DragDropGrid.qml:509", "comment": "Tailscale connection status: connected | network status" }, { @@ -3530,7 +3530,7 @@ { "term": "Connected to %1", "context": "Connected to %1", - "reference": "Services/LegacyNetworkService.qml:334, Services/DMSNetworkService.qml:384", + "reference": "Services/LegacyNetworkService.qml:334, Services/DMSNetworkService.qml:408", "comment": "" }, { @@ -3548,9 +3548,15 @@ { "term": "Connecting...", "context": "Connecting...", - "reference": "Modules/Settings/NetworkWifiTab.qml:566, Modules/Settings/NetworkWifiTab.qml:968, Modules/Settings/NetworkWifiTab.qml:1191, Modules/ControlCenter/Details/BluetoothDetail.qml:297, Modules/ControlCenter/Details/NetworkDetail.qml:627, Modules/ControlCenter/Details/NetworkDetail.qml:803, Modules/ControlCenter/Components/DragDropGrid.qml:455, Modules/ControlCenter/Components/DragDropGrid.qml:497, Modules/ControlCenter/Components/DragDropGrid.qml:521", + "reference": "Widgets/VpnProfileDelegate.qml:145, Modules/Settings/NetworkWifiTab.qml:566, Modules/Settings/NetworkWifiTab.qml:968, Modules/Settings/NetworkWifiTab.qml:1191, Modules/ControlCenter/Details/BluetoothDetail.qml:297, Modules/ControlCenter/Details/NetworkDetail.qml:627, Modules/ControlCenter/Details/NetworkDetail.qml:803, Modules/ControlCenter/Components/DragDropGrid.qml:455, Modules/ControlCenter/Components/DragDropGrid.qml:497, Modules/ControlCenter/Components/DragDropGrid.qml:521", "comment": "bluetooth status | network status" }, + { + "term": "Connecting…", + "context": "Connecting…", + "reference": "Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml:21", + "comment": "" + }, { "term": "Connection failed", "context": "Connection failed", @@ -3572,7 +3578,7 @@ { "term": "Content copied", "context": "Content copied", - "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:262, dms-plugins/DankGifSearch/DankGifSearch.qml:209", + "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:262, dms-plugins/DankGifSearch/DankGifSearch.qml:209, dms-plugins/dms-plugins-official/DankStickerSearch/DankStickerSearch.qml:262, dms-plugins/dms-plugins-official/DankGifSearch/DankGifSearch.qml:209", "comment": "" }, { @@ -3584,7 +3590,7 @@ { "term": "Contributor", "context": "Contributor", - "reference": "Modules/Settings/PluginBrowser.qml:53", + "reference": "Modules/Settings/PluginBrowser.qml:58", "comment": "plugin browser sort option" }, { @@ -3728,25 +3734,25 @@ { "term": "Copied GIF", "context": "Copied GIF", - "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:283, dms-plugins/DankGifSearch/DankGifSearch.qml:230", + "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:283, dms-plugins/DankGifSearch/DankGifSearch.qml:230, dms-plugins/dms-plugins-official/DankStickerSearch/DankStickerSearch.qml:283, dms-plugins/dms-plugins-official/DankGifSearch/DankGifSearch.qml:230", "comment": "" }, { "term": "Copied MP4", "context": "Copied MP4", - "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:293, dms-plugins/DankGifSearch/DankGifSearch.qml:240", + "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:293, dms-plugins/DankGifSearch/DankGifSearch.qml:240, dms-plugins/dms-plugins-official/DankStickerSearch/DankStickerSearch.qml:293, dms-plugins/dms-plugins-official/DankGifSearch/DankGifSearch.qml:240", "comment": "" }, { "term": "Copied WebP", "context": "Copied WebP", - "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:273, dms-plugins/DankGifSearch/DankGifSearch.qml:220", + "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:273, dms-plugins/DankGifSearch/DankGifSearch.qml:220, dms-plugins/dms-plugins-official/DankStickerSearch/DankStickerSearch.qml:273, dms-plugins/dms-plugins-official/DankGifSearch/DankGifSearch.qml:220", "comment": "" }, { "term": "Copied to clipboard", "context": "Copied to clipboard", - "reference": "Services/ClipboardService.qml:250, dms-plugins/DankStickerSearch/DankStickerSearch.qml:230, dms-plugins/DankLauncherKeys/DankLauncherKeys.qml:154, dms-plugins/DankGifSearch/DankGifSearch.qml:175, Modals/Settings/SettingsModal.qml:322, Modals/Settings/SettingsModal.qml:339, Modules/Notepad/NotepadTextEditor.qml:328, Modules/Settings/DesktopWidgetInstanceCard.qml:426", + "reference": "Services/ClipboardService.qml:250, dms-plugins/DankStickerSearch/DankStickerSearch.qml:230, dms-plugins/DankLauncherKeys/DankLauncherKeys.qml:154, dms-plugins/DankGifSearch/DankGifSearch.qml:175, dms-plugins/dms-plugins-official/DankStickerSearch/DankStickerSearch.qml:230, dms-plugins/dms-plugins-official/DankLauncherKeys/DankLauncherKeys.qml:154, dms-plugins/dms-plugins-official/DankGifSearch/DankGifSearch.qml:175, Modals/Settings/SettingsModal.qml:322, Modals/Settings/SettingsModal.qml:339, Modules/Notepad/NotepadTextEditor.qml:328, Modules/Settings/DesktopWidgetInstanceCard.qml:426", "comment": "" }, { @@ -3758,13 +3764,13 @@ { "term": "Copy", "context": "Copy", - "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeys.qml:170, Modals/DankLauncherV2/Controller.qml:1220, Modals/Clipboard/ClipboardContextMenu.qml:38, Modules/Settings/ClipboardTab.qml:156, Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:395", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeys.qml:170, dms-plugins/dms-plugins-official/DankLauncherKeys/DankLauncherKeys.qml:170, Modals/DankLauncherV2/Controller.qml:1220, Modals/Clipboard/ClipboardContextMenu.qml:38, Modules/Settings/ClipboardTab.qml:156, Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:395", "comment": "Copy to clipboard" }, { "term": "Copy Content", "context": "Copy Content", - "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:259, dms-plugins/DankGifSearch/DankGifSearch.qml:206", + "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:259, dms-plugins/DankGifSearch/DankGifSearch.qml:206, dms-plugins/dms-plugins-official/DankStickerSearch/DankStickerSearch.qml:259, dms-plugins/dms-plugins-official/DankGifSearch/DankGifSearch.qml:206", "comment": "" }, { @@ -3899,6 +3905,12 @@ "reference": "Modules/Settings/PrinterTab.qml:820", "comment": "" }, + { + "term": "Credentials", + "context": "Credentials", + "reference": "Widgets/VpnProfileDelegate.qml:292", + "comment": "" + }, { "term": "Critical Battery", "context": "Critical Battery", @@ -3908,13 +3920,13 @@ { "term": "Critical Battery Alert", "context": "Critical Battery Alert", - "reference": "Modules/Settings/BatteryTab.qml:272", + "reference": "Modules/Settings/BatteryTab.qml:271", "comment": "" }, { "term": "Critical Battery Notifications", "context": "Critical Battery Notifications", - "reference": "Modules/Settings/BatteryTab.qml:292", + "reference": "Modules/Settings/BatteryTab.qml:291", "comment": "" }, { @@ -3926,7 +3938,7 @@ { "term": "Critical Threshold", "context": "Critical Threshold", - "reference": "Modules/Settings/BatteryTab.qml:281", + "reference": "Modules/Settings/BatteryTab.qml:280", "comment": "" }, { @@ -4076,7 +4088,7 @@ { "term": "Custom", "context": "Custom", - "reference": "Widgets/KeybindItem.qml:1436, dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:47, Modules/Settings/ThemeColorsTab.qml:46, Modules/Settings/ThemeColorsTab.qml:343, Modules/Settings/ThemeColorsTab.qml:343, Modules/Settings/ThemeColorsTab.qml:1774, Modules/Settings/ThemeColorsTab.qml:1784, Modules/Settings/ThemeColorsTab.qml:1796, Modules/Settings/ThemeColorsTab.qml:1874, Modules/Settings/ThemeColorsTab.qml:1884, Modules/Settings/ThemeColorsTab.qml:1895, Modules/Settings/TypographyMotionTab.qml:495, Modules/Settings/TypographyMotionTab.qml:592, Modules/Settings/TypographyMotionTab.qml:676, Modules/Settings/DockTab.qml:296, Modules/Settings/DockTab.qml:403, Modules/Settings/WallpaperTab.qml:370, Modules/Settings/LauncherTab.qml:318, Modules/Settings/LauncherTab.qml:424, Modules/Settings/DankBarTab.qml:1733, Modules/Settings/WorkspaceAppearanceCard.qml:50, Modules/Settings/WorkspaceAppearanceCard.qml:88, Modules/Settings/WorkspaceAppearanceCard.qml:120, Modules/Settings/WorkspaceAppearanceCard.qml:155, Modules/Settings/WorkspaceAppearanceCard.qml:181, Modules/Settings/FrameTab.qml:231, Modules/Settings/NotificationsTab.qml:385, Modules/Settings/Widgets/SettingsColorPicker.qml:52, Modules/Settings/Widgets/DeviceAliasRow.qml:92", + "reference": "Widgets/KeybindItem.qml:1436, dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:47, dms-plugins/dms-plugins-official/DankDesktopWeather/DankDesktopWeatherSettings.qml:47, Modules/Settings/ThemeColorsTab.qml:46, Modules/Settings/ThemeColorsTab.qml:343, Modules/Settings/ThemeColorsTab.qml:343, Modules/Settings/ThemeColorsTab.qml:1774, Modules/Settings/ThemeColorsTab.qml:1784, Modules/Settings/ThemeColorsTab.qml:1796, Modules/Settings/ThemeColorsTab.qml:1874, Modules/Settings/ThemeColorsTab.qml:1884, Modules/Settings/ThemeColorsTab.qml:1895, Modules/Settings/TypographyMotionTab.qml:495, Modules/Settings/TypographyMotionTab.qml:592, Modules/Settings/TypographyMotionTab.qml:676, Modules/Settings/DockTab.qml:296, Modules/Settings/DockTab.qml:403, Modules/Settings/WallpaperTab.qml:384, Modules/Settings/LauncherTab.qml:318, Modules/Settings/LauncherTab.qml:424, Modules/Settings/DankBarTab.qml:1733, Modules/Settings/WorkspaceAppearanceCard.qml:50, Modules/Settings/WorkspaceAppearanceCard.qml:88, Modules/Settings/WorkspaceAppearanceCard.qml:120, Modules/Settings/WorkspaceAppearanceCard.qml:155, Modules/Settings/WorkspaceAppearanceCard.qml:181, Modules/Settings/FrameTab.qml:231, Modules/Settings/NotificationsTab.qml:385, Modules/Settings/Widgets/SettingsColorPicker.qml:52, Modules/Settings/Widgets/DeviceAliasRow.qml:92", "comment": "blur border color | shadow color option | theme category option | widget background color option | workspace color option" }, { @@ -4088,7 +4100,7 @@ { "term": "Custom Color", "context": "Custom Color", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:56, Modules/Settings/ColorDropdownRow.qml:150, Modules/Settings/FrameTab.qml:288", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:56, dms-plugins/dms-plugins-official/DankDesktopWeather/DankDesktopWeatherSettings.qml:56, Modules/Settings/ColorDropdownRow.qml:150, Modules/Settings/FrameTab.qml:288", "comment": "" }, { @@ -4310,7 +4322,7 @@ { "term": "Daily at:", "context": "Daily at:", - "reference": "Modules/Settings/WallpaperTab.qml:1083", + "reference": "Modules/Settings/WallpaperTab.qml:1098", "comment": "" }, { @@ -4364,7 +4376,7 @@ { "term": "Dark Mode", "context": "Dark Mode", - "reference": "Modules/Settings/ThemeColorsTab.qml:1469, Modules/Settings/WallpaperTab.qml:604, Modules/ControlCenter/Models/WidgetModel.qml:137, Modules/ControlCenter/Components/DragDropGrid.qml:721", + "reference": "Modules/Settings/ThemeColorsTab.qml:1469, Modules/Settings/WallpaperTab.qml:619, Modules/ControlCenter/Models/WidgetModel.qml:137, Modules/ControlCenter/Components/DragDropGrid.qml:721", "comment": "" }, { @@ -4454,8 +4466,8 @@ { "term": "Default", "context": "Default", - "reference": "Modals/WindowRuleModal.qml:559, Modules/Settings/ThemeColorsTab.qml:1562, Modules/Settings/TypographyMotionTab.qml:458, Modules/Settings/PluginBrowser.qml:43, Modules/Settings/DockTab.qml:403, Modules/Settings/LauncherTab.qml:424, Modules/Settings/WorkspaceAppearanceCard.qml:93, Modules/Settings/FrameTab.qml:231, Modules/Settings/NotificationsTab.qml:119, Modules/Settings/NotificationsTab.qml:142", - "comment": "notification rule action option | notification rule urgency option | plugin browser sort option | widget style option | workspace color option" + "reference": "Modals/WindowRuleModal.qml:559, Modules/Settings/ThemeColorsTab.qml:1562, Modules/Settings/TypographyMotionTab.qml:458, Modules/Settings/DockTab.qml:403, Modules/Settings/LauncherTab.qml:424, Modules/Settings/WorkspaceAppearanceCard.qml:93, Modules/Settings/FrameTab.qml:231, Modules/Settings/NotificationsTab.qml:119, Modules/Settings/NotificationsTab.qml:142", + "comment": "notification rule action option | notification rule urgency option | widget style option | workspace color option" }, { "term": "Default (Black)", @@ -4694,7 +4706,7 @@ { "term": "Detailed", "context": "Detailed", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:23", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:23, dms-plugins/dms-plugins-official/DankDesktopWeather/DankDesktopWeatherSettings.qml:23", "comment": "" }, { @@ -4742,14 +4754,14 @@ { "term": "Device paired", "context": "Device paired", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:164, Modules/ControlCenter/Details/BluetoothDetail.qml:54", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:687, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:687, Modules/ControlCenter/Details/BluetoothDetail.qml:54", "comment": "Phone Connect pairing action" }, { "term": "Device unpaired", "context": "Device unpaired", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:179, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:359", - "comment": "KDE Connect unpair action | Phone Connect unpair action" + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:702, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:702", + "comment": "Phone Connect unpair action" }, { "term": "Digital", @@ -4784,7 +4796,7 @@ { "term": "Disable Built-in Wallpapers", "context": "Disable Built-in Wallpapers", - "reference": "Modules/Settings/WallpaperTab.qml:1272", + "reference": "Modules/Settings/WallpaperTab.qml:1287", "comment": "wallpaper settings disable toggle" }, { @@ -4826,7 +4838,7 @@ { "term": "Disc", "context": "Disc", - "reference": "Modules/Settings/WallpaperTab.qml:1189", + "reference": "Modules/Settings/WallpaperTab.qml:1204", "comment": "wallpaper transition option" }, { @@ -4850,13 +4862,13 @@ { "term": "Disconnected", "context": "Disconnected", - "reference": "Modules/Settings/NetworkVpnTab.qml:98, Modules/Settings/NetworkStatusTab.qml:119, Modules/Settings/NetworkEthernetTab.qml:165, Modules/Settings/DisplayConfigTab.qml:393, Modules/Settings/DisplayConfig/OutputCard.qml:85, Modules/Settings/DisplayConfig/MonitorRect.qml:93, Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml:18, Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:22, Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:111", + "reference": "Modules/Settings/NetworkVpnTab.qml:98, Modules/Settings/NetworkStatusTab.qml:119, Modules/Settings/NetworkEthernetTab.qml:165, Modules/Settings/DisplayConfigTab.qml:393, Modules/Settings/DisplayConfig/OutputCard.qml:85, Modules/Settings/DisplayConfig/MonitorRect.qml:93, Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml:23, Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:22, Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:111", "comment": "Tailscale connection status: disconnected | Tailscale disconnected status" }, { "term": "Disconnected from WiFi", "context": "Disconnected from WiFi", - "reference": "Services/LegacyNetworkService.qml:390, Services/DMSNetworkService.qml:533", + "reference": "Services/LegacyNetworkService.qml:390, Services/DMSNetworkService.qml:557", "comment": "" }, { @@ -4982,7 +4994,7 @@ { "term": "Display hourly weather predictions", "context": "Display hourly weather predictions", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:136", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:136, dms-plugins/dms-plugins-official/DankDesktopWeather/DankDesktopWeatherSettings.qml:136", "comment": "" }, { @@ -5126,7 +5138,7 @@ { "term": "Don't Change", "context": "Don't Change", - "reference": "Modules/Settings/PowerSleepTab.qml:154, Modules/Settings/BatteryTab.qml:310, Modules/Settings/BatteryTab.qml:328", + "reference": "Modules/Settings/PowerSleepTab.qml:154, Modules/Settings/BatteryTab.qml:309, Modules/Settings/BatteryTab.qml:327", "comment": "" }, { @@ -5198,7 +5210,7 @@ { "term": "Duplicate Wallpaper with Blur", "context": "Duplicate Wallpaper with Blur", - "reference": "Modules/Settings/WallpaperTab.qml:1303", + "reference": "Modules/Settings/WallpaperTab.qml:1318", "comment": "" }, { @@ -5444,7 +5456,7 @@ { "term": "Enable compositor-targetable blur layer (namespace: dms:blurwallpaper). Requires manual niri configuration.", "context": "Enable compositor-targetable blur layer (namespace: dms:blurwallpaper). Requires manual niri configuration.", - "reference": "Modules/Settings/WallpaperTab.qml:1304", + "reference": "Modules/Settings/WallpaperTab.qml:1319", "comment": "" }, { @@ -5598,9 +5610,9 @@ "comment": "" }, { - "term": "Enter URL or text to share", - "context": "Enter URL or text to share", - "reference": "dms-plugins/DankKDEConnect/components/ShareDialog.qml:73", + "term": "Enter URI or text to share", + "context": "Enter URI or text to share", + "reference": "dms-plugins/DankKDEConnect/components/ShareDialog.qml:327, dms-plugins/dms-plugins-official/DankKDEConnect/components/ShareDialog.qml:327", "comment": "KDE Connect share input placeholder" }, { @@ -5732,7 +5744,7 @@ { "term": "Estimated Time", "context": "Estimated Time", - "reference": "Modules/Settings/BatteryTab.qml:134", + "reference": "Modules/Settings/BatteryTab.qml:133", "comment": "" }, { @@ -5840,7 +5852,7 @@ { "term": "External Wallpaper Management", "context": "External Wallpaper Management", - "reference": "Modules/Settings/WallpaperTab.qml:1264", + "reference": "Modules/Settings/WallpaperTab.qml:1279", "comment": "wallpaper settings external management" }, { @@ -5870,7 +5882,7 @@ { "term": "Fade", "context": "Fade", - "reference": "Modules/Settings/WallpaperTab.qml:1185", + "reference": "Modules/Settings/WallpaperTab.qml:1200", "comment": "wallpaper transition option" }, { @@ -5888,13 +5900,13 @@ { "term": "Failed to accept pairing", "context": "Failed to accept pairing", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:161", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:684, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:684", "comment": "Phone Connect error" }, { "term": "Failed to activate configuration", "context": "Failed to activate configuration", - "reference": "Services/DMSNetworkService.qml:433", + "reference": "Services/DMSNetworkService.qml:457", "comment": "" }, { @@ -5924,7 +5936,7 @@ { "term": "Failed to apply charge limit to system", "context": "Failed to apply charge limit to system", - "reference": "Modules/Settings/BatteryTab.qml:28", + "reference": "Modules/Settings/BatteryTab.qml:27", "comment": "" }, { @@ -5936,7 +5948,7 @@ { "term": "Failed to browse device", "context": "Failed to browse device", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:143", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:666, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:666", "comment": "Phone Connect error" }, { @@ -5960,13 +5972,13 @@ { "term": "Failed to connect VPN", "context": "Failed to connect VPN", - "reference": "Services/DMSNetworkService.qml:884", + "reference": "Services/DMSNetworkService.qml:908", "comment": "" }, { "term": "Failed to connect to %1", "context": "Failed to connect to %1", - "reference": "Services/LegacyNetworkService.qml:318, Services/DMSNetworkService.qml:404", + "reference": "Services/LegacyNetworkService.qml:318, Services/DMSNetworkService.qml:428", "comment": "" }, { @@ -5984,7 +5996,7 @@ { "term": "Failed to delete VPN", "context": "Failed to delete VPN", - "reference": "Services/VPNService.qml:159", + "reference": "Services/VPNService.qml:182", "comment": "" }, { @@ -6020,19 +6032,19 @@ { "term": "Failed to disconnect VPN", "context": "Failed to disconnect VPN", - "reference": "Services/DMSNetworkService.qml:908", + "reference": "Services/DMSNetworkService.qml:932", "comment": "" }, { "term": "Failed to disconnect VPNs", "context": "Failed to disconnect VPNs", - "reference": "Services/DMSNetworkService.qml:926", + "reference": "Services/DMSNetworkService.qml:950", "comment": "" }, { "term": "Failed to disconnect WiFi", "context": "Failed to disconnect WiFi", - "reference": "Services/DMSNetworkService.qml:531", + "reference": "Services/DMSNetworkService.qml:555", "comment": "" }, { @@ -6050,7 +6062,7 @@ { "term": "Failed to enable WiFi", "context": "Failed to enable WiFi", - "reference": "Services/DMSNetworkService.qml:635", + "reference": "Services/DMSNetworkService.qml:659", "comment": "" }, { @@ -6092,19 +6104,19 @@ { "term": "Failed to import VPN", "context": "Failed to import VPN", - "reference": "Services/VPNService.qml:86, Services/VPNService.qml:100", + "reference": "Services/VPNService.qml:87, Services/VPNService.qml:101", "comment": "" }, { "term": "Failed to launch SMS app", "context": "Failed to launch SMS app", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:133", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1766, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:809, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1766, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:809", "comment": "Phone Connect error" }, { "term": "Failed to load VPN config", "context": "Failed to load VPN config", - "reference": "Services/VPNService.qml:116", + "reference": "Services/VPNService.qml:117", "comment": "" }, { @@ -6134,7 +6146,7 @@ { "term": "Failed to parse session.json", "context": "Failed to parse session.json", - "reference": "Common/SessionData.qml:265, Common/SessionData.qml:345", + "reference": "Common/SessionData.qml:266, Common/SessionData.qml:346", "comment": "" }, { @@ -6170,7 +6182,7 @@ { "term": "Failed to reject pairing", "context": "Failed to reject pairing", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:170", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:693, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:693", "comment": "Phone Connect error" }, { @@ -6224,7 +6236,7 @@ { "term": "Failed to ring device", "context": "Failed to ring device", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:96", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:624, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:624", "comment": "Phone Connect error" }, { @@ -6233,6 +6245,12 @@ "reference": "Modules/Settings/GreeterTab.qml:272", "comment": "greeter status error" }, + { + "term": "Failed to save VPN credentials", + "context": "Failed to save VPN credentials", + "reference": "Services/VPNService.qml:167", + "comment": "" + }, { "term": "Failed to save audio config", "context": "Failed to save audio config", @@ -6257,22 +6275,28 @@ "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:612", "comment": "" }, + { + "term": "Failed to send SMS", + "context": "Failed to send SMS", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1756, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:799, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1756, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:799", + "comment": "Phone Connect error" + }, { "term": "Failed to send clipboard", "context": "Failed to send clipboard", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:114", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:610, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:55, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:610, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:55", "comment": "Phone Connect error" }, { "term": "Failed to send file", "context": "Failed to send file", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:361, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:421", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1737, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1737", "comment": "Phone Connect error" }, { "term": "Failed to send ping", "context": "Failed to send ping", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:105", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:633, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:633", "comment": "Phone Connect error" }, { @@ -6320,13 +6344,13 @@ { "term": "Failed to share", "context": "Failed to share", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:341, dms-plugins/DankKDEConnect/DankKDEConnect.qml:349, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:407", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1718, dms-plugins/DankKDEConnect/DankKDEConnect.qml:1726, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1718, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1726", "comment": "Phone Connect error" }, { "term": "Failed to start connection to %1", "context": "Failed to start connection to %1", - "reference": "Services/DMSNetworkService.qml:518", + "reference": "Services/DMSNetworkService.qml:542", "comment": "" }, { @@ -6338,13 +6362,13 @@ { "term": "Failed to update VPN", "context": "Failed to update VPN", - "reference": "Services/VPNService.qml:142", + "reference": "Services/VPNService.qml:143", "comment": "" }, { "term": "Failed to update autoconnect", "context": "Failed to update autoconnect", - "reference": "Services/DMSNetworkService.qml:991", + "reference": "Services/DMSNetworkService.qml:1015", "comment": "" }, { @@ -6404,7 +6428,7 @@ { "term": "Feels", "context": "Feels", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:401", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:401, dms-plugins/dms-plugins-official/DankDesktopWeather/DankDesktopWeather.qml:401", "comment": "" }, { @@ -6434,8 +6458,8 @@ { "term": "File", "context": "File", - "reference": "Services/CupsService.qml:139, Modals/DankLauncherV2/ResultItem.qml:230, Modals/DankLauncherV2/SpotlightResultRow.qml:70", - "comment": "" + "reference": "Services/CupsService.qml:139, dms-plugins/DankKDEConnect/components/ShareDialog.qml:361, dms-plugins/dms-plugins-official/DankKDEConnect/components/ShareDialog.qml:361, Modals/DankLauncherV2/ResultItem.qml:230, Modals/DankLauncherV2/SpotlightResultRow.qml:70", + "comment": "KDE Connect send file button" }, { "term": "File Already Exists", @@ -6470,7 +6494,7 @@ { "term": "File received from", "context": "File received from", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:79", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:597, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:597", "comment": "Phone Connect file share notification" }, { @@ -6506,7 +6530,7 @@ { "term": "Filter", "context": "Filter", - "reference": "Modules/Settings/PluginBrowser.qml:713", + "reference": "Modules/Settings/PluginBrowser.qml:762", "comment": "plugin browser category filter label" }, { @@ -6884,13 +6908,13 @@ { "term": "Forecast", "context": "Forecast", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:27", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:27, dms-plugins/dms-plugins-official/DankDesktopWeather/DankDesktopWeatherSettings.qml:27", "comment": "" }, { "term": "Forecast Days", "context": "Forecast Days", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:127", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:127, dms-plugins/dms-plugins-official/DankDesktopWeather/DankDesktopWeatherSettings.qml:127", "comment": "" }, { @@ -6938,7 +6962,7 @@ { "term": "Forgot network %1", "context": "Forgot network %1", - "reference": "Services/LegacyNetworkService.qml:398, Services/DMSNetworkService.qml:591", + "reference": "Services/LegacyNetworkService.qml:398, Services/DMSNetworkService.qml:615", "comment": "" }, { @@ -6947,6 +6971,12 @@ "reference": "Modules/Settings/TimeWeatherTab.qml:341", "comment": "" }, + { + "term": "Forward 10s", + "context": "Forward 10s", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:2155, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:1610, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:2155, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:1610", + "comment": "Media forward tooltip" + }, { "term": "Frame", "context": "Frame", @@ -7514,7 +7544,7 @@ { "term": "Hide 3rd Party", "context": "Hide 3rd Party", - "reference": "Modules/Settings/PluginBrowser.qml:505", + "reference": "Modules/Settings/PluginBrowser.qml:551", "comment": "" }, { @@ -7571,6 +7601,12 @@ "reference": "Modules/Settings/Widgets/DeviceAliasRow.qml:142", "comment": "" }, + { + "term": "Hide installed", + "context": "Hide installed", + "reference": "Modules/Settings/PluginBrowser.qml:38", + "comment": "plugin browser filter chip" + }, { "term": "Hide notification content until expanded", "context": "Hide notification content until expanded", @@ -7724,7 +7760,7 @@ { "term": "Hourly Forecast Count", "context": "Hourly Forecast Count", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:142", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:142, dms-plugins/dms-plugins-official/DankDesktopWeather/DankDesktopWeatherSettings.qml:142", "comment": "" }, { @@ -7736,7 +7772,7 @@ { "term": "How often to change wallpaper", "context": "How often to change wallpaper", - "reference": "Modules/Settings/WallpaperTab.qml:1032", + "reference": "Modules/Settings/WallpaperTab.qml:1047", "comment": "" }, { @@ -7748,7 +7784,7 @@ { "term": "Humidity", "context": "Humidity", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:413, Modules/DankDash/WeatherTab.qml:88, Modules/DankDash/WeatherForecastCard.qml:80, Modules/Settings/TimeWeatherTab.qml:962", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:413, dms-plugins/dms-plugins-official/DankDesktopWeather/DankDesktopWeather.qml:413, Modules/DankDash/WeatherTab.qml:88, Modules/DankDash/WeatherForecastCard.qml:80, Modules/Settings/TimeWeatherTab.qml:962", "comment": "" }, { @@ -7796,7 +7832,7 @@ { "term": "I Understand", "context": "I Understand", - "reference": "Modules/Settings/PluginBrowser.qml:1242", + "reference": "Modules/Settings/PluginBrowser.qml:1348", "comment": "" }, { @@ -7976,7 +8012,7 @@ { "term": "Include Transitions", "context": "Include Transitions", - "reference": "Modules/Settings/WallpaperTab.qml:1223", + "reference": "Modules/Settings/WallpaperTab.qml:1238", "comment": "" }, { @@ -8102,7 +8138,7 @@ { "term": "Install", "context": "Install", - "reference": "Modules/Settings/PluginBrowser.qml:353, Modules/Settings/PluginBrowser.qml:998, Modules/Settings/GreeterTab.qml:118, Modules/Settings/GreeterTab.qml:164, Modules/Settings/ThemeBrowser.qml:121, Modules/Settings/ThemeBrowser.qml:627", + "reference": "Modules/Settings/PluginBrowser.qml:399, Modules/Settings/PluginBrowser.qml:1104, Modules/Settings/GreeterTab.qml:118, Modules/Settings/GreeterTab.qml:164, Modules/Settings/ThemeBrowser.qml:121, Modules/Settings/ThemeBrowser.qml:627", "comment": "install action button" }, { @@ -8114,7 +8150,7 @@ { "term": "Install Plugin", "context": "Install Plugin", - "reference": "Modules/Settings/PluginBrowser.qml:351", + "reference": "Modules/Settings/PluginBrowser.qml:397", "comment": "plugin installation dialog title" }, { @@ -8144,7 +8180,7 @@ { "term": "Install failed: %1", "context": "Install failed: %1", - "reference": "Modules/Settings/PluginBrowser.qml:317, Modules/Settings/ThemeBrowser.qml:69", + "reference": "Modules/Settings/PluginBrowser.qml:363, Modules/Settings/ThemeBrowser.qml:69", "comment": "installation error" }, { @@ -8156,13 +8192,13 @@ { "term": "Install plugin '%1' from the DMS registry?", "context": "Install plugin '%1' from the DMS registry?", - "reference": "Modules/Settings/PluginBrowser.qml:352", + "reference": "Modules/Settings/PluginBrowser.qml:398", "comment": "plugin installation confirmation" }, { "term": "Install plugins from the DMS plugin registry", "context": "Install plugins from the DMS plugin registry", - "reference": "Modules/Settings/PluginBrowser.qml:553", + "reference": "Modules/Settings/PluginBrowser.qml:599", "comment": "plugin browser description" }, { @@ -8186,19 +8222,25 @@ { "term": "Installed", "context": "Installed", - "reference": "Modules/Settings/PluginBrowser.qml:38, Modules/Settings/PluginBrowser.qml:994, Modules/Settings/ThemeBrowser.qml:630", - "comment": "installed status | plugin browser filter chip" + "reference": "Modules/Settings/PluginBrowser.qml:1100, Modules/Settings/ThemeBrowser.qml:630", + "comment": "installed status" + }, + { + "term": "Installed first", + "context": "Installed first", + "reference": "Modules/Settings/PluginBrowser.qml:43", + "comment": "plugin browser filter chip" }, { "term": "Installed: %1", "context": "Installed: %1", - "reference": "Modules/Settings/PluginBrowser.qml:320, Modules/Settings/ThemeBrowser.qml:72", + "reference": "Modules/Settings/PluginBrowser.qml:366, Modules/Settings/ThemeBrowser.qml:72", "comment": "installation success" }, { "term": "Installing: %1", "context": "Installing: %1", - "reference": "Modules/Settings/PluginBrowser.qml:314, Modules/Settings/ThemeBrowser.qml:66", + "reference": "Modules/Settings/PluginBrowser.qml:360, Modules/Settings/ThemeBrowser.qml:66", "comment": "installation progress" }, { @@ -8240,7 +8282,7 @@ { "term": "Interval", "context": "Interval", - "reference": "Modules/Settings/WallpaperTab.qml:978, Modules/Settings/WallpaperTab.qml:1031", + "reference": "Modules/Settings/WallpaperTab.qml:993, Modules/Settings/WallpaperTab.qml:1046", "comment": "wallpaper cycling mode tab" }, { @@ -8282,7 +8324,7 @@ { "term": "Iris Bloom", "context": "Iris Bloom", - "reference": "Modules/Settings/WallpaperTab.qml:1193", + "reference": "Modules/Settings/WallpaperTab.qml:1208", "comment": "wallpaper transition option" }, { @@ -8360,7 +8402,7 @@ { "term": "Keybind Sources", "context": "Keybind Sources", - "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:144", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:144, dms-plugins/dms-plugins-official/DankLauncherKeys/DankLauncherKeysSettings.qml:144", "comment": "" }, { @@ -8372,13 +8414,13 @@ { "term": "Keybinds Search Settings", "context": "Keybinds Search Settings", - "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:70", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:70, dms-plugins/dms-plugins-official/DankLauncherKeys/DankLauncherKeysSettings.qml:70", "comment": "" }, { "term": "Keybinds shown alongside regular search results", "context": "Keybinds shown alongside regular search results", - "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:107", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:107, dms-plugins/dms-plugins-official/DankLauncherKeys/DankLauncherKeysSettings.qml:107", "comment": "" }, { @@ -8612,7 +8654,7 @@ { "term": "Light Mode", "context": "Light Mode", - "reference": "Modules/Settings/ThemeColorsTab.qml:1469, Modules/Settings/ThemeColorsTab.qml:1539, Modules/Settings/WallpaperTab.qml:414", + "reference": "Modules/Settings/ThemeColorsTab.qml:1469, Modules/Settings/ThemeColorsTab.qml:1539, Modules/Settings/WallpaperTab.qml:429", "comment": "" }, { @@ -8654,13 +8696,13 @@ { "term": "Limit set to %1%", "context": "Limit set to %1%", - "reference": "Modules/Settings/BatteryTab.qml:30", + "reference": "Modules/Settings/BatteryTab.qml:29", "comment": "" }, { "term": "Limit the maximum battery charge level to extend lifespan.", "context": "Limit the maximum battery charge level to extend lifespan.", - "reference": "Modules/Settings/BatteryTab.qml:184", + "reference": "Modules/Settings/BatteryTab.qml:183", "comment": "" }, { @@ -8720,7 +8762,7 @@ { "term": "Loading trending...", "context": "Loading trending...", - "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:153, dms-plugins/DankGifSearch/DankGifSearch.qml:96", + "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:153, dms-plugins/DankGifSearch/DankGifSearch.qml:96, dms-plugins/dms-plugins-official/DankStickerSearch/DankStickerSearch.qml:153, dms-plugins/dms-plugins-official/DankGifSearch/DankGifSearch.qml:96", "comment": "" }, { @@ -8894,13 +8936,13 @@ { "term": "Low Battery Notifications", "context": "Low Battery Notifications", - "reference": "Modules/Settings/BatteryTab.qml:237", + "reference": "Modules/Settings/BatteryTab.qml:236", "comment": "" }, { "term": "Low Battery Threshold", "context": "Low Battery Threshold", - "reference": "Modules/Settings/BatteryTab.qml:226", + "reference": "Modules/Settings/BatteryTab.qml:225", "comment": "" }, { @@ -8918,7 +8960,7 @@ { "term": "MTU", "context": "MTU", - "reference": "Widgets/VpnProfileDelegate.qml:72, Modules/Settings/NetworkVpnTab.qml:445", + "reference": "Widgets/VpnProfileDelegate.qml:74, Modules/Settings/NetworkVpnTab.qml:445", "comment": "" }, { @@ -8936,7 +8978,7 @@ { "term": "Make sure KDE Connect or Valent is running on your other devices", "context": "Make sure KDE Connect or Valent is running on your other devices", - "reference": "dms-plugins/DankKDEConnect/components/EmptyState.qml:18", + "reference": "dms-plugins/DankKDEConnect/components/EmptyState.qml:18, dms-plugins/dms-plugins-official/DankKDEConnect/components/EmptyState.qml:18", "comment": "Phone Connect hint message" }, { @@ -9158,7 +9200,7 @@ { "term": "Matugen Target Monitor", "context": "Matugen Target Monitor", - "reference": "Modules/Settings/WallpaperTab.qml:876", + "reference": "Modules/Settings/WallpaperTab.qml:891", "comment": "" }, { @@ -9356,7 +9398,7 @@ { "term": "Media Player", "context": "Media Player", - "reference": "Modals/Settings/SettingsSidebar.qml:160", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1863, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:1318, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1863, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:1318, Modals/Settings/SettingsSidebar.qml:160", "comment": "" }, { @@ -9422,7 +9464,7 @@ { "term": "Message", "context": "Message", - "reference": "dms-plugins/DankKDEConnect/components/SmsDialog.qml:73", + "reference": "dms-plugins/DankKDEConnect/components/SmsDialog.qml:222, dms-plugins/dms-plugins-official/DankKDEConnect/components/SmsDialog.qml:222", "comment": "KDE Connect SMS message input placeholder" }, { @@ -9530,7 +9572,7 @@ { "term": "Mode:", "context": "Mode:", - "reference": "Modules/Settings/WallpaperTab.qml:962", + "reference": "Modules/Settings/WallpaperTab.qml:977", "comment": "" }, { @@ -9572,7 +9614,7 @@ { "term": "Monitor whose wallpaper drives dynamic theming colors", "context": "Monitor whose wallpaper drives dynamic theming colors", - "reference": "Modules/Settings/WallpaperTab.qml:877", + "reference": "Modules/Settings/WallpaperTab.qml:892", "comment": "" }, { @@ -9758,7 +9800,7 @@ { "term": "Name", "context": "Name", - "reference": "Modals/DankLauncherV2/LauncherContent.qml:693, Modals/DankLauncherV2/LauncherContent.qml:702, Modals/DankLauncherV2/LauncherContent.qml:707, Modals/DankLauncherV2/LauncherContent.qml:883, Modules/ProcessList/ProcessesView.qml:249, Modules/Settings/PluginBrowser.qml:48, Modules/Settings/DisplayWidgetsTab.qml:225, Modules/Settings/AutoStartTab.qml:507, Modules/Settings/DesktopWidgetInstanceCard.qml:203, Modules/Settings/PrinterTab.qml:754, Modules/Settings/DisplayConfigTab.qml:517, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2008, Modules/Settings/Widgets/SystemMonitorVariantCard.qml:144", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:693, Modals/DankLauncherV2/LauncherContent.qml:702, Modals/DankLauncherV2/LauncherContent.qml:707, Modals/DankLauncherV2/LauncherContent.qml:883, Modules/ProcessList/ProcessesView.qml:249, Modules/Settings/PluginBrowser.qml:53, Modules/Settings/DisplayWidgetsTab.qml:225, Modules/Settings/AutoStartTab.qml:507, Modules/Settings/DesktopWidgetInstanceCard.qml:203, Modules/Settings/PrinterTab.qml:754, Modules/Settings/DisplayConfigTab.qml:517, Modules/Settings/DisplayConfig/DisplayConfigState.qml:2008, Modules/Settings/Widgets/SystemMonitorVariantCard.qml:144", "comment": "plugin browser sort option" }, { @@ -9839,6 +9881,12 @@ "reference": "Modules/Settings/NetworkStatusTab.qml:40", "comment": "" }, + { + "term": "Network Type", + "context": "Network Type", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1693, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:755, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1693, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:755", + "comment": "KDE Connect network type label" + }, { "term": "Network download and upload speed display", "context": "Network download and upload speed display", @@ -9926,8 +9974,8 @@ { "term": "Next", "context": "Next", - "reference": "Modals/Greeter/GreeterModal.qml:296", - "comment": "greeter next button" + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:2167, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:1622, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:2167, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:1622, Modals/Greeter/GreeterModal.qml:296", + "comment": "Media next tooltip | greeter next button" }, { "term": "Next Transition", @@ -10100,7 +10148,7 @@ { "term": "No Weather Data", "context": "No Weather Data", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:166", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:166, dms-plugins/dms-plugins-official/DankDesktopWeather/DankDesktopWeather.qml:166", "comment": "" }, { @@ -10214,19 +10262,13 @@ { "term": "No devices", "context": "No devices", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:33, Modules/ControlCenter/Components/DragDropGrid.qml:534", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:462, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:462, Modules/ControlCenter/Components/DragDropGrid.qml:534", "comment": "Phone Connect no devices status | bluetooth status" }, - { - "term": "No devices connected", - "context": "No devices connected", - "reference": "dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:35", - "comment": "KDE Connect status" - }, { "term": "No devices found", "context": "No devices found", - "reference": "dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:124, dms-plugins/DankKDEConnect/components/EmptyState.qml:11, Modules/Settings/PrinterTab.qml:436", + "reference": "dms-plugins/DankKDEConnect/components/EmptyState.qml:11, dms-plugins/dms-plugins-official/DankKDEConnect/components/EmptyState.qml:11, Modules/Settings/PrinterTab.qml:436", "comment": "KDE Connect no devices message" }, { @@ -10295,6 +10337,12 @@ "reference": "Modules/Settings/UsersTab.qml:340", "comment": "" }, + { + "term": "No images found", + "context": "No images found", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:2296, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:2296", + "comment": "No recent images found message" + }, { "term": "No info items", "context": "No info items", @@ -10364,7 +10412,7 @@ { "term": "No monitors", "context": "No monitors", - "reference": "Modules/Settings/WallpaperTab.qml:850, Modules/Settings/WallpaperTab.qml:881", + "reference": "Modules/Settings/WallpaperTab.qml:865, Modules/Settings/WallpaperTab.qml:896", "comment": "no monitors available label" }, { @@ -10406,7 +10454,7 @@ { "term": "No plugins found", "context": "No plugins found", - "reference": "Modules/Settings/PluginBrowser.qml:1111", + "reference": "Modules/Settings/PluginBrowser.qml:1217", "comment": "empty plugin list" }, { @@ -10460,7 +10508,7 @@ { "term": "No results found", "context": "No results found", - "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:153, dms-plugins/DankGifSearch/DankGifSearch.qml:96, Modals/DankLauncherV2/ResultsList.qml:496, Modals/DankLauncherV2/ResultsList.qml:503", + "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:153, dms-plugins/DankGifSearch/DankGifSearch.qml:96, dms-plugins/dms-plugins-official/DankStickerSearch/DankStickerSearch.qml:153, dms-plugins/dms-plugins-official/DankGifSearch/DankGifSearch.qml:96, Modals/DankLauncherV2/ResultsList.qml:496, Modals/DankLauncherV2/ResultsList.qml:503", "comment": "" }, { @@ -10592,7 +10640,7 @@ { "term": "None", "context": "None", - "reference": "Modals/WindowRuleModal.qml:1154, Services/CupsService.qml:786, Modules/Settings/TypographyMotionTab.qml:495, Modules/Settings/TypographyMotionTab.qml:592, Modules/Settings/TypographyMotionTab.qml:676, Modules/Settings/WallpaperTab.qml:1183, Modules/Settings/DesktopWidgetInstanceCard.qml:258, Modules/Settings/DesktopWidgetInstanceCard.qml:274, Modules/Settings/DankBarTab.qml:1287, Modules/Settings/DankBarTab.qml:1815, Modules/Settings/DankBarTab.qml:1815, Modules/Settings/DankBarTab.qml:1856, Modules/Settings/WorkspaceAppearanceCard.qml:47, Modules/Settings/WorkspaceAppearanceCard.qml:55, Modules/Settings/NotificationsTab.qml:385, Modules/Settings/WindowRulesTab.qml:1063, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:94, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:107, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:111, Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:181", + "reference": "Modals/WindowRuleModal.qml:1154, Services/CupsService.qml:786, Modules/Settings/TypographyMotionTab.qml:495, Modules/Settings/TypographyMotionTab.qml:592, Modules/Settings/TypographyMotionTab.qml:676, Modules/Settings/WallpaperTab.qml:1198, Modules/Settings/DesktopWidgetInstanceCard.qml:258, Modules/Settings/DesktopWidgetInstanceCard.qml:274, Modules/Settings/DankBarTab.qml:1287, Modules/Settings/DankBarTab.qml:1815, Modules/Settings/DankBarTab.qml:1815, Modules/Settings/DankBarTab.qml:1856, Modules/Settings/WorkspaceAppearanceCard.qml:47, Modules/Settings/WorkspaceAppearanceCard.qml:55, Modules/Settings/NotificationsTab.qml:385, Modules/Settings/WindowRulesTab.qml:1063, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:94, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:107, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:111, Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:181", "comment": "Tailscale exit node: none selected | wallpaper transition option | workspace color option" }, { @@ -10676,19 +10724,19 @@ { "term": "Not paired", "context": "Not paired", - "reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:214, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:207", + "reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:304, dms-plugins/dms-plugins-official/DankKDEConnect/components/DeviceCard.qml:304", "comment": "KDE Connect not paired status" }, { "term": "Not set", "context": "Not set", - "reference": "Modules/Settings/WallpaperTab.qml:589, Modules/Settings/WallpaperTab.qml:779", + "reference": "Modules/Settings/WallpaperTab.qml:604, Modules/Settings/WallpaperTab.qml:794", "comment": "wallpaper not set label" }, { "term": "Notepad", "context": "Notepad", - "reference": "DMSShell.qml:1139, Services/AppSearchService.qml:182, Modules/Notepad/NotepadPopoutWindow.qml:25, Modules/Notepad/NotepadPopoutWindow.qml:80, Modules/Settings/WidgetsTab.qml:234", + "reference": "DMSShell.qml:1135, Services/AppSearchService.qml:182, Modules/Notepad/NotepadPopoutWindow.qml:25, Modules/Notepad/NotepadPopoutWindow.qml:80, Modules/Settings/WidgetsTab.qml:234", "comment": "Notepad" }, { @@ -10724,7 +10772,7 @@ { "term": "Notification", "context": "Notification", - "reference": "Modules/Settings/BatteryTab.qml:247", + "reference": "Modules/Settings/BatteryTab.qml:246", "comment": "" }, { @@ -10772,7 +10820,7 @@ { "term": "Notification Type", "context": "Notification Type", - "reference": "Modules/Settings/BatteryTab.qml:245", + "reference": "Modules/Settings/BatteryTab.qml:244", "comment": "" }, { @@ -10784,13 +10832,13 @@ { "term": "Notifications", "context": "Notifications", - "reference": "Modals/Greeter/GreeterCompletePage.qml:397, Modals/Settings/SettingsSidebar.qml:166, Modules/Notifications/Center/NotificationHeader.qml:55", - "comment": "greeter settings link" + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1699, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:761, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1699, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:761, Modals/Greeter/GreeterCompletePage.qml:397, Modals/Settings/SettingsSidebar.qml:166, Modules/Notifications/Center/NotificationHeader.qml:55", + "comment": "KDE Connect notifications label | greeter settings link" }, { "term": "Notify when limit is reached", "context": "Notify when limit is reached", - "reference": "Modules/Settings/BatteryTab.qml:211", + "reference": "Modules/Settings/BatteryTab.qml:210", "comment": "" }, { @@ -10850,7 +10898,7 @@ { "term": "Offline", "context": "Offline", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:40, dms-plugins/DankKDEConnect/components/DeviceCard.qml:216, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:209", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:469, dms-plugins/DankKDEConnect/components/DeviceCard.qml:306, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:469, dms-plugins/dms-plugins-official/DankKDEConnect/components/DeviceCard.qml:306", "comment": "KDE Connect offline status | Phone Connect offline status" }, { @@ -10952,7 +11000,7 @@ { "term": "Open App", "context": "Open App", - "reference": "dms-plugins/DankKDEConnect/components/SmsDialog.qml:91", + "reference": "dms-plugins/DankKDEConnect/components/SmsDialog.qml:368, dms-plugins/dms-plugins-official/DankKDEConnect/components/SmsDialog.qml:368", "comment": "KDE Connect open SMS app button" }, { @@ -10973,12 +11021,6 @@ "reference": "Modules/Notepad/NotepadSettings.qml:427", "comment": "" }, - { - "term": "Open KDE Connect on your phone", - "context": "Open KDE Connect on your phone", - "reference": "dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:131", - "comment": "KDE Connect open app hint" - }, { "term": "Open Notepad File", "context": "Open Notepad File", @@ -11024,7 +11066,7 @@ { "term": "Open in Browser", "context": "Open in Browser", - "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:301, dms-plugins/DankGifSearch/DankGifSearch.qml:248", + "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:301, dms-plugins/DankGifSearch/DankGifSearch.qml:248, dms-plugins/dms-plugins-official/DankStickerSearch/DankStickerSearch.qml:301, dms-plugins/dms-plugins-official/DankGifSearch/DankGifSearch.qml:248", "comment": "" }, { @@ -11042,33 +11084,21 @@ { "term": "Open with...", "context": "Open with...", - "reference": "DMSShell.qml:935, Modals/BrowserPickerModal.qml:13", + "reference": "DMSShell.qml:931, Modals/BrowserPickerModal.qml:13", "comment": "" }, - { - "term": "Opening SMS", - "context": "Opening SMS", - "reference": "dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:344", - "comment": "KDE Connect SMS action" - }, { "term": "Opening SMS app", "context": "Opening SMS app", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:136", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1769, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:812, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1769, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:812", "comment": "Phone Connect SMS action" }, { "term": "Opening file browser", "context": "Opening file browser", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:146", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:669, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:669", "comment": "Phone Connect browse action" }, - { - "term": "Opening files", - "context": "Opening files", - "reference": "dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:328", - "comment": "KDE Connect browse action" - }, { "term": "Opening terminal to update greetd", "context": "Opening terminal to update greetd", @@ -11354,8 +11384,8 @@ { "term": "Pair", "context": "Pair", - "reference": "Modals/BluetoothPairingModal.qml:319, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:391, Modules/ControlCenter/Details/BluetoothDetail.qml:559", - "comment": "KDE Connect pair button" + "reference": "Modals/BluetoothPairingModal.qml:319, Modules/ControlCenter/Details/BluetoothDetail.qml:559", + "comment": "" }, { "term": "Pair Bluetooth Device", @@ -11372,31 +11402,31 @@ { "term": "Pairing", "context": "Pairing", - "reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:212, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:205", + "reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:302, dms-plugins/dms-plugins-official/DankKDEConnect/components/DeviceCard.qml:302", "comment": "KDE Connect pairing in progress status" }, { "term": "Pairing failed", "context": "Pairing failed", - "reference": "Modals/BluetoothPairingModal.qml:395, dms-plugins/DankKDEConnect/DankKDEConnect.qml:152, Modules/ControlCenter/Details/BluetoothDetail.qml:50", + "reference": "Modals/BluetoothPairingModal.qml:395, dms-plugins/DankKDEConnect/DankKDEConnect.qml:675, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:675, Modules/ControlCenter/Details/BluetoothDetail.qml:50", "comment": "Phone Connect error" }, { "term": "Pairing request from", "context": "Pairing request from", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:71", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:589, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:589", "comment": "Phone Connect pairing request notification" }, { "term": "Pairing request sent", "context": "Pairing request sent", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:155", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:678, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:678", "comment": "Phone Connect pairing action" }, { "term": "Pairing requested", "context": "Pairing requested", - "reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:210, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:203", + "reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:300, dms-plugins/dms-plugins-official/DankKDEConnect/components/DeviceCard.qml:300", "comment": "KDE Connect pairing requested status" }, { @@ -11420,7 +11450,7 @@ { "term": "Password", "context": "Password", - "reference": "Modals/WifiPasswordModal.qml:185, Modals/WifiPasswordModal.qml:195, Modals/WifiPasswordModal.qml:539, Modules/Settings/UsersTab.qml:402", + "reference": "Modals/WifiPasswordModal.qml:185, Modals/WifiPasswordModal.qml:195, Modals/WifiPasswordModal.qml:539, Widgets/VpnProfileDelegate.qml:307, Modules/Settings/UsersTab.qml:402", "comment": "" }, { @@ -11462,7 +11492,7 @@ { "term": "Paste", "context": "Paste", - "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:248, dms-plugins/DankGifSearch/DankGifSearch.qml:195, Modals/DankLauncherV2/Controller.qml:1221, Modals/Clipboard/ClipboardContextMenu.qml:68, Modules/Settings/ClipboardTab.qml:156", + "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:248, dms-plugins/DankGifSearch/DankGifSearch.qml:195, dms-plugins/dms-plugins-official/DankStickerSearch/DankStickerSearch.qml:248, dms-plugins/dms-plugins-official/DankGifSearch/DankGifSearch.qml:195, Modals/DankLauncherV2/Controller.qml:1221, Modals/Clipboard/ClipboardContextMenu.qml:68, Modules/Settings/ClipboardTab.qml:156", "comment": "" }, { @@ -11486,8 +11516,8 @@ { "term": "Pause", "context": "Pause", - "reference": "Modules/Settings/PrinterTab.qml:1232, Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:138", - "comment": "" + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1955, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:1410, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1955, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:1410, Modules/Settings/PrinterTab.qml:1232, Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:138", + "comment": "Media pause tooltip" }, { "term": "Paused", @@ -11516,13 +11546,13 @@ { "term": "Per-Mode Wallpapers", "context": "Per-Mode Wallpapers", - "reference": "Modules/Settings/WallpaperTab.qml:392", + "reference": "Modules/Settings/WallpaperTab.qml:407", "comment": "" }, { "term": "Per-Monitor Wallpapers", "context": "Per-Monitor Wallpapers", - "reference": "Modules/Settings/WallpaperTab.qml:823", + "reference": "Modules/Settings/WallpaperTab.qml:838", "comment": "" }, { @@ -11564,19 +11594,13 @@ { "term": "Phone Connect Not Available", "context": "Phone Connect Not Available", - "reference": "dms-plugins/DankKDEConnect/components/UnavailableMessage.qml:30", + "reference": "dms-plugins/DankKDEConnect/components/UnavailableMessage.qml:30, dms-plugins/dms-plugins-official/DankKDEConnect/components/UnavailableMessage.qml:30", "comment": "Phone Connect unavailable error title" }, - { - "term": "Phone Connect unavailable", - "context": "Phone Connect unavailable", - "reference": "dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:97", - "comment": "Phone Connect service unavailable message" - }, { "term": "Phone number", "context": "Phone number", - "reference": "dms-plugins/DankKDEConnect/components/SmsDialog.qml:67", + "reference": "dms-plugins/DankKDEConnect/components/SmsDialog.qml:209, dms-plugins/dms-plugins-official/DankKDEConnect/components/SmsDialog.qml:209", "comment": "KDE Connect SMS phone input placeholder" }, { @@ -11612,7 +11636,7 @@ { "term": "Pin", "context": "Pin", - "reference": "Modals/WindowRuleModal.qml:1567, dms-plugins/DankLauncherKeys/DankLauncherKeys.qml:165, Modals/Clipboard/ClipboardContextMenu.qml:30, Modules/Settings/WindowRulesTab.qml:123, Modules/Settings/ClipboardTab.qml:156, Modules/ControlCenter/Details/BluetoothDetail.qml:357, Modules/ControlCenter/Details/BrightnessDetail.qml:239, Modules/ControlCenter/Details/AudioInputDetail.qml:297, Modules/ControlCenter/Details/AudioOutputDetail.qml:306, Modules/ControlCenter/Details/NetworkDetail.qml:696", + "reference": "Modals/WindowRuleModal.qml:1567, dms-plugins/DankLauncherKeys/DankLauncherKeys.qml:165, dms-plugins/dms-plugins-official/DankLauncherKeys/DankLauncherKeys.qml:165, Modals/Clipboard/ClipboardContextMenu.qml:30, Modules/Settings/WindowRulesTab.qml:123, Modules/Settings/ClipboardTab.qml:156, Modules/ControlCenter/Details/BluetoothDetail.qml:357, Modules/ControlCenter/Details/BrightnessDetail.qml:239, Modules/ControlCenter/Details/AudioInputDetail.qml:297, Modules/ControlCenter/Details/AudioOutputDetail.qml:306, Modules/ControlCenter/Details/NetworkDetail.qml:696", "comment": "" }, { @@ -11624,19 +11648,13 @@ { "term": "Ping", "context": "Ping", - "reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:124, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:281", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1580, dms-plugins/DankKDEConnect/components/DeviceCard.qml:170, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:635, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1580, dms-plugins/dms-plugins-official/DankKDEConnect/components/DeviceCard.qml:170, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:635", "comment": "KDE Connect ping tooltip" }, - { - "term": "Ping sent", - "context": "Ping sent", - "reference": "dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:286", - "comment": "KDE Connect ping action" - }, { "term": "Ping sent to", "context": "Ping sent to", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:108", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:636, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:636", "comment": "Phone Connect ping action" }, { @@ -11654,7 +11672,7 @@ { "term": "Pixelate", "context": "Pixelate", - "reference": "Modules/Settings/WallpaperTab.qml:1195", + "reference": "Modules/Settings/WallpaperTab.qml:1210", "comment": "wallpaper transition option" }, { @@ -11687,6 +11705,12 @@ "reference": "Modules/Settings/DockTab.qml:96", "comment": "" }, + { + "term": "Play", + "context": "Play", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1955, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:1410, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1955, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:1410", + "comment": "Media play tooltip" + }, { "term": "Play a video when the screen locks.", "context": "Play a video when the screen locks.", @@ -11900,7 +11924,7 @@ { "term": "Portal", "context": "Portal", - "reference": "Modules/Settings/WallpaperTab.qml:1197", + "reference": "Modules/Settings/WallpaperTab.qml:1212", "comment": "wallpaper transition option" }, { @@ -11984,7 +12008,7 @@ { "term": "Power Profiles Auto-Switching", "context": "Power Profiles Auto-Switching", - "reference": "Modules/Settings/BatteryTab.qml:303", + "reference": "Modules/Settings/BatteryTab.qml:302", "comment": "" }, { @@ -12008,19 +12032,19 @@ { "term": "Power profile to use when AC power is connected.", "context": "Power profile to use when AC power is connected.", - "reference": "Modules/Settings/BatteryTab.qml:309", + "reference": "Modules/Settings/BatteryTab.qml:308", "comment": "" }, { "term": "Power profile to use when running on battery power.", "context": "Power profile to use when running on battery power.", - "reference": "Modules/Settings/BatteryTab.qml:327", + "reference": "Modules/Settings/BatteryTab.qml:326", "comment": "" }, { "term": "Power source", "context": "Power source", - "reference": "Modules/Settings/PowerSleepTab.qml:42, Modules/Settings/BatteryTab.qml:62", + "reference": "Modules/Settings/PowerSleepTab.qml:42, Modules/Settings/BatteryTab.qml:61", "comment": "" }, { @@ -12038,7 +12062,7 @@ { "term": "Precip", "context": "Precip", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:441", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:441, dms-plugins/dms-plugins-official/DankDesktopWeather/DankDesktopWeather.qml:441", "comment": "" }, { @@ -12092,7 +12116,7 @@ { "term": "Pressure", "context": "Pressure", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:453, Modules/DankDash/WeatherTab.qml:98, Modules/DankDash/WeatherForecastCard.qml:90, Modules/Settings/TimeWeatherTab.qml:1063", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:453, dms-plugins/dms-plugins-official/DankDesktopWeather/DankDesktopWeather.qml:453, Modules/DankDash/WeatherTab.qml:98, Modules/DankDash/WeatherForecastCard.qml:90, Modules/Settings/TimeWeatherTab.qml:1063", "comment": "" }, { @@ -12113,10 +12137,16 @@ "reference": "Modules/Settings/TimeWeatherTab.qml:158, Modules/Settings/TimeWeatherTab.qml:245", "comment": "" }, + { + "term": "Previous", + "context": "Previous", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1978, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:1433, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1978, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:1433", + "comment": "Media previous tooltip" + }, { "term": "Primary", "context": "Primary", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:39, Modules/Settings/ThemeColorsTab.qml:1615, Modules/Settings/ThemeColorsTab.qml:1617, Modules/Settings/ThemeColorsTab.qml:1631, Modules/Settings/ThemeColorsTab.qml:1653, Modules/Settings/ThemeColorsTab.qml:1655, Modules/Settings/ThemeColorsTab.qml:1669, Modules/Settings/ThemeColorsTab.qml:1774, Modules/Settings/ThemeColorsTab.qml:1778, Modules/Settings/ThemeColorsTab.qml:1790, Modules/Settings/ThemeColorsTab.qml:1874, Modules/Settings/ThemeColorsTab.qml:1880, Modules/Settings/ThemeColorsTab.qml:1891, Modules/Settings/DockTab.qml:403, Modules/Settings/DockTab.qml:688, Modules/Settings/LauncherTab.qml:424, Modules/Settings/LauncherTab.qml:731, Modules/Settings/NetworkStatusTab.qml:131, Modules/Settings/DankBarTab.qml:1287, Modules/Settings/DankBarTab.qml:1733, Modules/Settings/WorkspaceAppearanceCard.qml:17, Modules/Settings/WorkspaceAppearanceCard.qml:58, Modules/Settings/WorkspaceAppearanceCard.qml:99, Modules/Settings/WorkspaceAppearanceCard.qml:128, Modules/Settings/WorkspaceAppearanceCard.qml:163, Modules/Settings/FrameTab.qml:231, Modules/Settings/Widgets/SettingsColorPicker.qml:42", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:39, dms-plugins/dms-plugins-official/DankDesktopWeather/DankDesktopWeatherSettings.qml:39, Modules/Settings/ThemeColorsTab.qml:1615, Modules/Settings/ThemeColorsTab.qml:1617, Modules/Settings/ThemeColorsTab.qml:1631, Modules/Settings/ThemeColorsTab.qml:1653, Modules/Settings/ThemeColorsTab.qml:1655, Modules/Settings/ThemeColorsTab.qml:1669, Modules/Settings/ThemeColorsTab.qml:1774, Modules/Settings/ThemeColorsTab.qml:1778, Modules/Settings/ThemeColorsTab.qml:1790, Modules/Settings/ThemeColorsTab.qml:1874, Modules/Settings/ThemeColorsTab.qml:1880, Modules/Settings/ThemeColorsTab.qml:1891, Modules/Settings/DockTab.qml:403, Modules/Settings/DockTab.qml:688, Modules/Settings/LauncherTab.qml:424, Modules/Settings/LauncherTab.qml:731, Modules/Settings/NetworkStatusTab.qml:131, Modules/Settings/DankBarTab.qml:1287, Modules/Settings/DankBarTab.qml:1733, Modules/Settings/WorkspaceAppearanceCard.qml:17, Modules/Settings/WorkspaceAppearanceCard.qml:58, Modules/Settings/WorkspaceAppearanceCard.qml:99, Modules/Settings/WorkspaceAppearanceCard.qml:128, Modules/Settings/WorkspaceAppearanceCard.qml:163, Modules/Settings/FrameTab.qml:231, Modules/Settings/Widgets/SettingsColorPicker.qml:42", "comment": "blur border color | button color option | color option | primary color | shadow color option | tile color option | workspace color option" }, { @@ -12128,7 +12158,7 @@ { "term": "Primary Theme Color", "context": "Primary Theme Color", - "reference": "Modules/Settings/WallpaperTab.qml:368", + "reference": "Modules/Settings/WallpaperTab.qml:376", "comment": "" }, { @@ -12230,7 +12260,7 @@ { "term": "Process exited with code %1", "context": "Process exited with code %1", - "reference": "Modules/Settings/BatteryTab.qml:28", + "reference": "Modules/Settings/BatteryTab.qml:27", "comment": "" }, { @@ -12308,19 +12338,19 @@ { "term": "Profile when Plugged In (AC)", "context": "Profile when Plugged In (AC)", - "reference": "Modules/Settings/BatteryTab.qml:308", + "reference": "Modules/Settings/BatteryTab.qml:307", "comment": "" }, { "term": "Profile when on Battery", "context": "Profile when on Battery", - "reference": "Modules/Settings/BatteryTab.qml:326", + "reference": "Modules/Settings/BatteryTab.qml:325", "comment": "" }, { "term": "Protocol", "context": "Protocol", - "reference": "Widgets/VpnProfileDelegate.qml:66, Modules/Settings/NetworkVpnTab.qml:440, Modules/Settings/PrinterTab.qml:549", + "reference": "Widgets/VpnProfileDelegate.qml:68, Modules/Settings/NetworkVpnTab.qml:440, Modules/Settings/PrinterTab.qml:549", "comment": "Label for printer protocol selector, e.g. ipp, ipps, lpd, socket" }, { @@ -12428,7 +12458,7 @@ { "term": "Random", "context": "Random", - "reference": "Modules/Settings/WallpaperTab.qml:1181, Modules/Settings/WallpaperTab.qml:1204, Modules/Settings/WallpaperTab.qml:1207", + "reference": "Modules/Settings/WallpaperTab.qml:1196, Modules/Settings/WallpaperTab.qml:1219, Modules/Settings/WallpaperTab.qml:1222", "comment": "wallpaper transition option" }, { @@ -12485,6 +12515,12 @@ "reference": "Modals/DankColorPickerModal.qml:463", "comment": "" }, + { + "term": "Recent Images", + "context": "Recent Images", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:2215, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:870, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:2215, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:870", + "comment": "Recent Images title" + }, { "term": "Recently Used Apps", "context": "Recently Used Apps", @@ -12500,8 +12536,8 @@ { "term": "Refresh", "context": "Refresh", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:296, Modules/Settings/GreeterTab.qml:502, Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:233, Modules/DankDash/Overview/WeatherOverviewCard.qml:46", - "comment": "Phone Connect refresh tooltip | Refresh Tailscale device status" + "reference": "Modules/Settings/GreeterTab.qml:502, Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:233, Modules/DankDash/Overview/WeatherOverviewCard.qml:46", + "comment": "Refresh Tailscale device status" }, { "term": "Refresh Weather", @@ -12530,7 +12566,7 @@ { "term": "Reject", "context": "Reject", - "reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:188, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:377", + "reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:278, dms-plugins/dms-plugins-official/DankKDEConnect/components/DeviceCard.qml:278", "comment": "KDE Connect reject pairing button" }, { @@ -12740,7 +12776,7 @@ { "term": "Request Pairing", "context": "Request Pairing", - "reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:199", + "reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:289, dms-plugins/dms-plugins-official/DankKDEConnect/components/DeviceCard.qml:289", "comment": "KDE Connect request pairing button" }, { @@ -12758,7 +12794,7 @@ { "term": "Requires %1", "context": "Requires %1", - "reference": "Modules/Settings/PluginBrowser.qml:996", + "reference": "Modules/Settings/PluginBrowser.qml:1102", "comment": "version requirement" }, { @@ -12929,6 +12965,12 @@ "reference": "Modals/DisplayConfirmationModal.qml:140", "comment": "" }, + { + "term": "Rewind 10s", + "context": "Rewind 10s", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1986, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:1441, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1986, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:1441", + "comment": "Media rewind tooltip" + }, { "term": "Right", "context": "Right", @@ -12974,14 +13016,14 @@ { "term": "Ring", "context": "Ring", - "reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:115, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:267", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1560, dms-plugins/DankKDEConnect/components/DeviceCard.qml:151, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:613, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1560, dms-plugins/dms-plugins-official/DankKDEConnect/components/DeviceCard.qml:151, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:613", "comment": "KDE Connect ring tooltip" }, { "term": "Ringing", "context": "Ringing", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:99, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:272", - "comment": "KDE Connect ring action | Phone Connect ring action" + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:627, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:627", + "comment": "Phone Connect ring action" }, { "term": "Ripple Effects", @@ -13100,9 +13142,15 @@ { "term": "SMS", "context": "SMS", - "reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:161, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:338", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1657, dms-plugins/DankKDEConnect/components/DeviceCard.qml:247, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:718, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1657, dms-plugins/dms-plugins-official/DankKDEConnect/components/DeviceCard.qml:247, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:718", "comment": "KDE Connect SMS tooltip" }, + { + "term": "SMS sent successfully", + "context": "SMS sent successfully", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1759, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:802, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1759, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:802", + "comment": "Phone Connect SMS action" + }, { "term": "Saturation", "context": "Saturation", @@ -13145,6 +13193,12 @@ "reference": "Modules/Settings/DisplayConfigTab.qml:143", "comment": "" }, + { + "term": "Save credentials", + "context": "Save credentials", + "reference": "Widgets/VpnProfileDelegate.qml:314", + "comment": "" + }, { "term": "Save critical priority notifications to history", "context": "Save critical priority notifications to history", @@ -13346,7 +13400,7 @@ { "term": "Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.", "context": "Search by key combo, description, or action name.\n\nDefault action copies the keybind to clipboard.\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.", - "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:217", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:217, dms-plugins/dms-plugins-official/DankLauncherKeys/DankLauncherKeysSettings.qml:217", "comment": "" }, { @@ -13376,13 +13430,13 @@ { "term": "Search keyboard shortcuts from your compositor and applications", "context": "Search keyboard shortcuts from your compositor and applications", - "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:78", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:78, dms-plugins/dms-plugins-official/DankLauncherKeys/DankLauncherKeysSettings.qml:78", "comment": "" }, { "term": "Search plugins...", "context": "Search plugins...", - "reference": "Modules/Settings/PluginBrowser.qml:577", + "reference": "Modules/Settings/PluginBrowser.qml:623", "comment": "plugin search placeholder" }, { @@ -13424,7 +13478,7 @@ { "term": "Searching...", "context": "Searching...", - "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:140, dms-plugins/DankGifSearch/DankGifSearch.qml:83", + "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:140, dms-plugins/DankGifSearch/DankGifSearch.qml:83, dms-plugins/dms-plugins-official/DankStickerSearch/DankStickerSearch.qml:140, dms-plugins/dms-plugins-official/DankGifSearch/DankGifSearch.qml:83", "comment": "" }, { @@ -13436,7 +13490,7 @@ { "term": "Secondary", "context": "Secondary", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:43, Modules/Settings/ThemeColorsTab.qml:1615, Modules/Settings/ThemeColorsTab.qml:1619, Modules/Settings/ThemeColorsTab.qml:1627, Modules/Settings/ThemeColorsTab.qml:1637, Modules/Settings/ThemeColorsTab.qml:1653, Modules/Settings/ThemeColorsTab.qml:1657, Modules/Settings/ThemeColorsTab.qml:1665, Modules/Settings/ThemeColorsTab.qml:1675, Modules/Settings/ThemeColorsTab.qml:1774, Modules/Settings/ThemeColorsTab.qml:1780, Modules/Settings/ThemeColorsTab.qml:1792, Modules/Settings/DockTab.qml:688, Modules/Settings/LauncherTab.qml:731, Modules/Settings/DankBarTab.qml:1287, Modules/Settings/DankBarTab.qml:1733, Modules/Settings/WorkspaceAppearanceCard.qml:23, Modules/Settings/WorkspaceAppearanceCard.qml:64, Modules/Settings/WorkspaceAppearanceCard.qml:102, Modules/Settings/WorkspaceAppearanceCard.qml:134, Modules/Settings/WorkspaceAppearanceCard.qml:169, Modules/Settings/Widgets/SettingsColorPicker.qml:47", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:43, dms-plugins/dms-plugins-official/DankDesktopWeather/DankDesktopWeatherSettings.qml:43, Modules/Settings/ThemeColorsTab.qml:1615, Modules/Settings/ThemeColorsTab.qml:1619, Modules/Settings/ThemeColorsTab.qml:1627, Modules/Settings/ThemeColorsTab.qml:1637, Modules/Settings/ThemeColorsTab.qml:1653, Modules/Settings/ThemeColorsTab.qml:1657, Modules/Settings/ThemeColorsTab.qml:1665, Modules/Settings/ThemeColorsTab.qml:1675, Modules/Settings/ThemeColorsTab.qml:1774, Modules/Settings/ThemeColorsTab.qml:1780, Modules/Settings/ThemeColorsTab.qml:1792, Modules/Settings/DockTab.qml:688, Modules/Settings/LauncherTab.qml:731, Modules/Settings/DankBarTab.qml:1287, Modules/Settings/DankBarTab.qml:1733, Modules/Settings/WorkspaceAppearanceCard.qml:23, Modules/Settings/WorkspaceAppearanceCard.qml:64, Modules/Settings/WorkspaceAppearanceCard.qml:102, Modules/Settings/WorkspaceAppearanceCard.qml:134, Modules/Settings/WorkspaceAppearanceCard.qml:169, Modules/Settings/Widgets/SettingsColorPicker.qml:47", "comment": "blur border color | button color option | color option | secondary color | tile color option | workspace color option" }, { @@ -13514,7 +13568,7 @@ { "term": "Select File to Send", "context": "Select File to Send", - "reference": "dms-plugins/DankKDEConnect/components/ShareDialog.qml:101", + "reference": "dms-plugins/DankKDEConnect/components/ShareDialog.qml:373, dms-plugins/dms-plugins-official/DankKDEConnect/components/ShareDialog.qml:373", "comment": "KDE Connect file browser title" }, { @@ -13538,7 +13592,7 @@ { "term": "Select Wallpaper", "context": "Select Wallpaper", - "reference": "Modals/Settings/SettingsModal.qml:158, Modules/Settings/WallpaperTab.qml:1336, Modules/Settings/WallpaperTab.qml:1358, Modules/Settings/WallpaperTab.qml:1378", + "reference": "Modals/Settings/SettingsModal.qml:158, Modules/Settings/WallpaperTab.qml:1351, Modules/Settings/WallpaperTab.qml:1373, Modules/Settings/WallpaperTab.qml:1393", "comment": "dark mode wallpaper file browser title | light mode wallpaper file browser title | wallpaper file browser title" }, { @@ -13592,7 +13646,7 @@ { "term": "Select at least one provider", "context": "Select at least one provider", - "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:178", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:178, dms-plugins/dms-plugins-official/DankLauncherKeys/DankLauncherKeysSettings.qml:178", "comment": "" }, { @@ -13628,7 +13682,7 @@ { "term": "Select monitor to configure wallpaper", "context": "Select monitor to configure wallpaper", - "reference": "Modules/Settings/WallpaperTab.qml:842", + "reference": "Modules/Settings/WallpaperTab.qml:857", "comment": "" }, { @@ -13670,13 +13724,13 @@ { "term": "Select which keybind providers to include", "context": "Select which keybind providers to include", - "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:151", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:151, dms-plugins/dms-plugins-official/DankLauncherKeys/DankLauncherKeysSettings.qml:151", "comment": "" }, { "term": "Select which transitions to include in randomization", "context": "Select which transitions to include in randomization", - "reference": "Modules/Settings/WallpaperTab.qml:1230", + "reference": "Modules/Settings/WallpaperTab.qml:1245", "comment": "" }, { @@ -13694,31 +13748,25 @@ { "term": "Send", "context": "Send", - "reference": "dms-plugins/DankKDEConnect/components/SmsDialog.qml:80", + "reference": "dms-plugins/DankKDEConnect/components/SmsDialog.qml:278, dms-plugins/dms-plugins-official/DankKDEConnect/components/SmsDialog.qml:278", "comment": "KDE Connect SMS send button" }, { "term": "Send Clipboard", "context": "Send Clipboard", - "reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:133, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:295", - "comment": "KDE Connect clipboard tooltip" - }, - { - "term": "Send File", - "context": "Send File", - "reference": "dms-plugins/DankKDEConnect/components/ShareDialog.qml:91", - "comment": "KDE Connect send file button" + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1619, dms-plugins/DankKDEConnect/components/DeviceCard.qml:190, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:679, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1619, dms-plugins/dms-plugins-official/DankKDEConnect/components/DeviceCard.qml:190, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:679", + "comment": "KDE Connect clipboard tooltip | KDE Connect send clipboard tooltip" }, { "term": "Send SMS", "context": "Send SMS", - "reference": "dms-plugins/DankKDEConnect/components/SmsDialog.qml:28", + "reference": "dms-plugins/DankKDEConnect/components/SmsDialog.qml:137, dms-plugins/dms-plugins-official/DankKDEConnect/components/SmsDialog.qml:137", "comment": "KDE Connect SMS dialog title" }, { "term": "Sending", "context": "Sending", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:365, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:424", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1741, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1741", "comment": "Phone Connect file send" }, { @@ -13742,7 +13790,7 @@ { "term": "Server", "context": "Server", - "reference": "Widgets/VpnProfileDelegate.qml:42, Modules/Settings/NetworkVpnTab.qml:420", + "reference": "Widgets/VpnProfileDelegate.qml:44, Modules/Settings/NetworkVpnTab.qml:420", "comment": "" }, { @@ -13778,13 +13826,13 @@ { "term": "Set different wallpapers for each connected monitor", "context": "Set different wallpapers for each connected monitor", - "reference": "Modules/Settings/WallpaperTab.qml:824", + "reference": "Modules/Settings/WallpaperTab.qml:839", "comment": "" }, { "term": "Set different wallpapers for light and dark mode", "context": "Set different wallpapers for light and dark mode", - "reference": "Modules/Settings/WallpaperTab.qml:393", + "reference": "Modules/Settings/WallpaperTab.qml:408", "comment": "" }, { @@ -13820,7 +13868,7 @@ { "term": "Set the percentage at which the battery is considered low.", "context": "Set the percentage at which the battery is considered low.", - "reference": "Modules/Settings/BatteryTab.qml:227", + "reference": "Modules/Settings/BatteryTab.qml:226", "comment": "" }, { @@ -13910,7 +13958,7 @@ { "term": "Share", "context": "Share", - "reference": "dms-plugins/DankKDEConnect/components/ShareDialog.qml:34, dms-plugins/DankKDEConnect/components/DeviceCard.qml:142, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:309", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1638, dms-plugins/DankKDEConnect/components/ShareDialog.qml:251, dms-plugins/DankKDEConnect/components/DeviceCard.qml:209, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:698, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1638, dms-plugins/dms-plugins-official/DankKDEConnect/components/ShareDialog.qml:251, dms-plugins/dms-plugins-official/DankKDEConnect/components/DeviceCard.qml:209, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:698", "comment": "KDE Connect share dialog title | KDE Connect share tooltip" }, { @@ -13919,22 +13967,10 @@ "reference": "Modules/Settings/ThemeColorsTab.qml:1130", "comment": "" }, - { - "term": "Share Text", - "context": "Share Text", - "reference": "dms-plugins/DankKDEConnect/components/ShareDialog.qml:81", - "comment": "KDE Connect share button" - }, - { - "term": "Share URL", - "context": "Share URL", - "reference": "dms-plugins/DankKDEConnect/components/ShareDialog.qml:81", - "comment": "KDE Connect share URL button" - }, { "term": "Shared", "context": "Shared", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:344, dms-plugins/DankKDEConnect/DankKDEConnect.qml:352, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:410", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1721, dms-plugins/DankKDEConnect/DankKDEConnect.qml:1729, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1721, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1729", "comment": "Phone Connect share success" }, { @@ -13952,7 +13988,7 @@ { "term": "Shift+Enter to paste", "context": "Shift+Enter to paste", - "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:176, dms-plugins/DankGifSearch/DankGifSearch.qml:119, Modals/DankLauncherV2/Controller.qml:1223", + "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:176, dms-plugins/DankGifSearch/DankGifSearch.qml:119, dms-plugins/dms-plugins-official/DankStickerSearch/DankStickerSearch.qml:176, dms-plugins/dms-plugins-official/DankGifSearch/DankGifSearch.qml:119, Modals/DankLauncherV2/Controller.qml:1223", "comment": "" }, { @@ -13988,7 +14024,7 @@ { "term": "Show 3rd Party", "context": "Show 3rd Party", - "reference": "Modules/Settings/PluginBrowser.qml:505", + "reference": "Modules/Settings/PluginBrowser.qml:551", "comment": "" }, { @@ -14048,7 +14084,7 @@ { "term": "Show Feels Like Temperature", "context": "Show Feels Like Temperature", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:84", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:84, dms-plugins/dms-plugins-official/DankDesktopWeather/DankDesktopWeatherSettings.qml:84", "comment": "" }, { @@ -14066,7 +14102,7 @@ { "term": "Show Forecast", "context": "Show Forecast", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:120", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:120, dms-plugins/dms-plugins-official/DankDesktopWeather/DankDesktopWeatherSettings.qml:120", "comment": "" }, { @@ -14096,13 +14132,13 @@ { "term": "Show Hourly Forecast", "context": "Show Hourly Forecast", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:135", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:135, dms-plugins/dms-plugins-official/DankDesktopWeather/DankDesktopWeatherSettings.qml:135", "comment": "" }, { "term": "Show Humidity", "context": "Show Humidity", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:90", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:90, dms-plugins/dms-plugins-official/DankDesktopWeather/DankDesktopWeatherSettings.qml:90", "comment": "" }, { @@ -14126,7 +14162,7 @@ { "term": "Show Location", "context": "Show Location", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:72", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:72, dms-plugins/dms-plugins-official/DankDesktopWeather/DankDesktopWeatherSettings.qml:72", "comment": "" }, { @@ -14234,13 +14270,13 @@ { "term": "Show Precipitation Probability", "context": "Show Precipitation Probability", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:108", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:108, dms-plugins/dms-plugins-official/DankDesktopWeather/DankDesktopWeatherSettings.qml:108", "comment": "" }, { "term": "Show Pressure", "context": "Show Pressure", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:102", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:102, dms-plugins/dms-plugins-official/DankDesktopWeather/DankDesktopWeatherSettings.qml:102", "comment": "" }, { @@ -14282,7 +14318,7 @@ { "term": "Show Sunrise/Sunset", "context": "Show Sunrise/Sunset", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:114", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:114, dms-plugins/dms-plugins-official/DankDesktopWeather/DankDesktopWeatherSettings.qml:114", "comment": "" }, { @@ -14336,7 +14372,7 @@ { "term": "Show Weather Condition", "context": "Show Weather Condition", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:78", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:78, dms-plugins/dms-plugins-official/DankDesktopWeather/DankDesktopWeatherSettings.qml:78", "comment": "" }, { @@ -14354,7 +14390,7 @@ { "term": "Show Wind Speed", "context": "Show Wind Speed", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:96", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:96, dms-plugins/dms-plugins-official/DankDesktopWeather/DankDesktopWeatherSettings.qml:96", "comment": "" }, { @@ -14372,13 +14408,13 @@ { "term": "Show a notification when battery reaches the charge limit.", "context": "Show a notification when battery reaches the charge limit.", - "reference": "Modules/Settings/BatteryTab.qml:212", + "reference": "Modules/Settings/BatteryTab.qml:211", "comment": "" }, { "term": "Show a warning popup when battery is running low.", "context": "Show a warning popup when battery is running low.", - "reference": "Modules/Settings/BatteryTab.qml:238", + "reference": "Modules/Settings/BatteryTab.qml:237", "comment": "" }, { @@ -14396,7 +14432,7 @@ { "term": "Show an urgent alert when battery reaches critical level.", "context": "Show an urgent alert when battery reaches critical level.", - "reference": "Modules/Settings/BatteryTab.qml:293", + "reference": "Modules/Settings/BatteryTab.qml:292", "comment": "" }, { @@ -14651,6 +14687,12 @@ "reference": "Modules/Settings/NetworkWifiTab.qml:743, Modules/Settings/NetworkWifiTab.qml:1104", "comment": "" }, + { + "term": "Signal Strength", + "context": "Signal Strength", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1686, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:748, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1686, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:748", + "comment": "KDE Connect signal strength label" + }, { "term": "Signal:", "context": "Signal:", @@ -14882,7 +14924,7 @@ { "term": "Standard", "context": "Standard", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:19, Modules/Settings/TypographyMotionTab.qml:145", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:19, dms-plugins/dms-plugins-official/DankDesktopWeather/DankDesktopWeatherSettings.qml:19, Modules/Settings/TypographyMotionTab.qml:145", "comment": "" }, { @@ -14897,16 +14939,10 @@ "reference": "Modules/Settings/ThemeColorsTab.qml:1216, Modules/Settings/GammaControlTab.qml:252, Modules/DankDash/Overview/CalendarEventEditor.qml:254", "comment": "" }, - { - "term": "Start KDE Connect or Valent", - "context": "Start KDE Connect or Valent", - "reference": "dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:104", - "comment": "Phone Connect start daemon hint" - }, { "term": "Start KDE Connect or Valent to use this plugin", "context": "Start KDE Connect or Valent to use this plugin", - "reference": "dms-plugins/DankKDEConnect/components/UnavailableMessage.qml:39", + "reference": "dms-plugins/DankKDEConnect/components/UnavailableMessage.qml:39, dms-plugins/dms-plugins-official/DankKDEConnect/components/UnavailableMessage.qml:39", "comment": "Phone Connect daemon hint" }, { @@ -14924,7 +14960,7 @@ { "term": "Status", "context": "Status", - "reference": "Widgets/DankIconPicker.qml:55, Modals/Settings/SettingsSidebar.qml:245, Modules/Settings/AboutTab.qml:698, Modules/Settings/NetworkStatusTab.qml:86, Modules/Settings/PrinterTab.qml:186, Modules/Settings/BatteryTab.qml:110", + "reference": "Widgets/DankIconPicker.qml:55, Modals/Settings/SettingsSidebar.qml:245, Modules/Settings/AboutTab.qml:698, Modules/Settings/NetworkStatusTab.qml:86, Modules/Settings/PrinterTab.qml:186, Modules/Settings/BatteryTab.qml:109", "comment": "" }, { @@ -14972,7 +15008,7 @@ { "term": "Stripes", "context": "Stripes", - "reference": "Modules/Settings/WallpaperTab.qml:1191", + "reference": "Modules/Settings/WallpaperTab.qml:1206", "comment": "wallpaper transition option" }, { @@ -15032,7 +15068,7 @@ { "term": "Surface Container", "context": "Surface Container", - "reference": "Modules/Settings/ThemeColorsTab.qml:31, Modules/Settings/WallpaperTab.qml:369, Modules/Settings/WorkspaceAppearanceCard.qml:38, Modules/Settings/WorkspaceAppearanceCard.qml:79, Modules/Settings/WorkspaceAppearanceCard.qml:111, Modules/Settings/WorkspaceAppearanceCard.qml:149", + "reference": "Modules/Settings/ThemeColorsTab.qml:31, Modules/Settings/WallpaperTab.qml:380, Modules/Settings/WorkspaceAppearanceCard.qml:38, Modules/Settings/WorkspaceAppearanceCard.qml:79, Modules/Settings/WorkspaceAppearanceCard.qml:111, Modules/Settings/WorkspaceAppearanceCard.qml:149", "comment": "widget background color option | workspace color option" }, { @@ -15434,8 +15470,8 @@ { "term": "Text", "context": "Text", - "reference": "Modals/DankLauncherV2/Controller.qml:1224, Modals/Clipboard/ClipboardEntry.qml:190, Modals/Clipboard/ClipboardContent.qml:15, Modules/Settings/LauncherTab.qml:731", - "comment": "text color" + "reference": "dms-plugins/DankKDEConnect/components/ShareDialog.qml:354, dms-plugins/dms-plugins-official/DankKDEConnect/components/ShareDialog.qml:354, Modals/DankLauncherV2/Controller.qml:1224, Modals/Clipboard/ClipboardEntry.qml:190, Modals/Clipboard/ClipboardContent.qml:15, Modules/Settings/LauncherTab.qml:731", + "comment": "KDE Connect share text button | text color" }, { "term": "Text Color", @@ -15554,13 +15590,13 @@ { "term": "Third-Party Plugin Warning", "context": "Third-Party Plugin Warning", - "reference": "Modules/Settings/PluginBrowser.qml:1139, Modules/Settings/PluginBrowser.qml:1173", + "reference": "Modules/Settings/PluginBrowser.qml:1245, Modules/Settings/PluginBrowser.qml:1279", "comment": "" }, { "term": "Third-party plugins are created by the community and are not officially supported by DankMaterialShell.\n\nThese plugins may pose security and privacy risks - install at your own risk.", "context": "Third-party plugins are created by the community and are not officially supported by DankMaterialShell.\n\nThese plugins may pose security and privacy risks - install at your own risk.", - "reference": "Modules/Settings/PluginBrowser.qml:1197", + "reference": "Modules/Settings/PluginBrowser.qml:1303", "comment": "" }, { @@ -15692,7 +15728,7 @@ { "term": "Time", "context": "Time", - "reference": "Modules/Settings/ThemeColorsTab.qml:1148, Modules/Settings/GammaControlTab.qml:184, Modules/Settings/WallpaperTab.qml:982", + "reference": "Modules/Settings/ThemeColorsTab.qml:1148, Modules/Settings/GammaControlTab.qml:184, Modules/Settings/WallpaperTab.qml:997", "comment": "theme auto mode tab | wallpaper cycling mode tab" }, { @@ -15824,7 +15860,7 @@ { "term": "Toast", "context": "Toast", - "reference": "Modules/Settings/BatteryTab.qml:247", + "reference": "Modules/Settings/BatteryTab.qml:246", "comment": "" }, { @@ -15980,7 +16016,7 @@ { "term": "Transition Effect", "context": "Transition Effect", - "reference": "Modules/Settings/WallpaperTab.qml:1175", + "reference": "Modules/Settings/WallpaperTab.qml:1190", "comment": "" }, { @@ -16010,13 +16046,13 @@ { "term": "Trending GIFs", "context": "Trending GIFs", - "reference": "dms-plugins/DankGifSearch/DankGifSearch.qml:85", + "reference": "dms-plugins/DankGifSearch/DankGifSearch.qml:85, dms-plugins/dms-plugins-official/DankGifSearch/DankGifSearch.qml:85", "comment": "" }, { "term": "Trending Stickers", "context": "Trending Stickers", - "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:142", + "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:142, dms-plugins/dms-plugins-official/DankStickerSearch/DankStickerSearch.qml:142", "comment": "" }, { @@ -16028,7 +16064,7 @@ { "term": "Trigger Prefix", "context": "Trigger Prefix", - "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:123", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:123, dms-plugins/dms-plugins-official/DankLauncherKeys/DankLauncherKeysSettings.qml:123", "comment": "" }, { @@ -16046,7 +16082,7 @@ { "term": "Try a different search", "context": "Try a different search", - "reference": "Modals/MuxModal.qml:552, dms-plugins/DankStickerSearch/DankStickerSearch.qml:155, dms-plugins/DankGifSearch/DankGifSearch.qml:98", + "reference": "Modals/MuxModal.qml:552, dms-plugins/DankStickerSearch/DankStickerSearch.qml:155, dms-plugins/DankGifSearch/DankGifSearch.qml:98, dms-plugins/dms-plugins-official/DankStickerSearch/DankStickerSearch.qml:155, dms-plugins/dms-plugins-official/DankGifSearch/DankGifSearch.qml:98", "comment": "" }, { @@ -16112,7 +16148,7 @@ { "term": "Type this prefix to search keybinds", "context": "Type this prefix to search keybinds", - "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:124", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:124, dms-plugins/dms-plugins-official/DankLauncherKeys/DankLauncherKeysSettings.qml:124", "comment": "" }, { @@ -16133,16 +16169,22 @@ "reference": "Modals/Settings/SettingsSidebar.qml:89, Modals/Settings/SettingsSidebar.qml:646", "comment": "" }, + { + "term": "URI", + "context": "URI", + "reference": "dms-plugins/DankKDEConnect/components/ShareDialog.qml:346, dms-plugins/dms-plugins-official/DankKDEConnect/components/ShareDialog.qml:346", + "comment": "KDE Connect share URI button" + }, { "term": "Unavailable", "context": "Unavailable", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:31, Modules/Settings/NetworkVpnTab.qml:82, Modules/Settings/PrinterTab.qml:202, Modules/Settings/NetworkEthernetTab.qml:167, Modules/Settings/NetworkWifiTab.qml:970", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:460, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:460, Modules/Settings/NetworkVpnTab.qml:82, Modules/Settings/PrinterTab.qml:202, Modules/Settings/NetworkEthernetTab.qml:167, Modules/Settings/NetworkWifiTab.qml:970", "comment": "Phone Connect unavailable status" }, { "term": "Uncategorized", "context": "Uncategorized", - "reference": "Modules/Settings/PluginBrowser.qml:109", + "reference": "Modules/Settings/PluginBrowser.qml:149", "comment": "plugin browser category filter" }, { @@ -16208,8 +16250,8 @@ { "term": "Unknown", "context": "Unknown", - "reference": "Common/Theme.qml:1630, Services/WeatherService.qml:153, Services/WeatherService.qml:716, Services/WeatherService.qml:717, Services/WeatherService.qml:758, Services/WeatherService.qml:759, Services/WeatherService.qml:794, Services/WeatherService.qml:795, Services/WeatherService.qml:993, Services/WeatherService.qml:994, Services/BatteryService.qml:288, dms-plugins/DankKDEConnect/components/DeviceCard.qml:208, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:201, Modules/Lock/LockScreenContent.qml:406, Modules/Lock/LockScreenContent.qml:526, Modules/Lock/LockScreenContent.qml:622, Modules/Settings/PluginBrowser.qml:902, Modules/Settings/NetworkStatusTab.qml:79, Modules/Settings/NetworkStatusTab.qml:121, Modules/Settings/PrinterTab.qml:1638, Modules/Settings/ThemeBrowser.qml:506, Modules/Settings/NetworkEthernetTab.qml:146, Modules/Settings/NetworkEthernetTab.qml:169, Modules/Settings/NetworkEthernetTab.qml:317, Modules/Settings/NetworkEthernetTab.qml:428, Modules/Settings/NotificationsTab.qml:714, Modules/Settings/NetworkWifiTab.qml:537, Modules/Settings/NetworkWifiTab.qml:947, Modules/ControlCenter/Details/BatteryDetail.qml:184, Modules/ControlCenter/Components/HeaderPane.qml:63, Modules/ControlCenter/Components/DragDropGrid.qml:487, Modules/ControlCenter/Components/DragDropGrid.qml:725, Modules/DankDash/Overview/MediaOverviewCard.qml:91, Modules/DankBar/Popouts/BatteryPopout.qml:340", - "comment": "KDE Connect unknown device status | battery status | power profile option | unknown author | widget status" + "reference": "Common/Theme.qml:1630, Services/WeatherService.qml:153, Services/WeatherService.qml:716, Services/WeatherService.qml:717, Services/WeatherService.qml:758, Services/WeatherService.qml:759, Services/WeatherService.qml:794, Services/WeatherService.qml:795, Services/WeatherService.qml:993, Services/WeatherService.qml:994, Services/BatteryService.qml:288, dms-plugins/DankKDEConnect/DankKDEConnect.qml:1679, dms-plugins/DankKDEConnect/components/DeviceCard.qml:298, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:741, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1679, dms-plugins/dms-plugins-official/DankKDEConnect/components/DeviceCard.qml:298, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:741, Modules/Lock/LockScreenContent.qml:406, Modules/Lock/LockScreenContent.qml:526, Modules/Lock/LockScreenContent.qml:622, Modules/Settings/PluginBrowser.qml:1007, Modules/Settings/NetworkStatusTab.qml:79, Modules/Settings/NetworkStatusTab.qml:121, Modules/Settings/PrinterTab.qml:1638, Modules/Settings/ThemeBrowser.qml:506, Modules/Settings/NetworkEthernetTab.qml:146, Modules/Settings/NetworkEthernetTab.qml:169, Modules/Settings/NetworkEthernetTab.qml:317, Modules/Settings/NetworkEthernetTab.qml:428, Modules/Settings/NotificationsTab.qml:714, Modules/Settings/NetworkWifiTab.qml:537, Modules/Settings/NetworkWifiTab.qml:947, Modules/ControlCenter/Details/BatteryDetail.qml:184, Modules/ControlCenter/Components/HeaderPane.qml:63, Modules/ControlCenter/Components/DragDropGrid.qml:487, Modules/ControlCenter/Components/DragDropGrid.qml:725, Modules/DankDash/Overview/MediaOverviewCard.qml:91, Modules/DankBar/Popouts/BatteryPopout.qml:340", + "comment": "KDE Connect unknown device status | Status | battery status | power profile option | unknown author | widget status" }, { "term": "Unknown App", @@ -16220,7 +16262,7 @@ { "term": "Unknown Artist", "context": "Unknown Artist", - "reference": "Modules/DankDash/MediaDropdownOverlay.qml:551, Modules/DankDash/MediaPlayerTab.qml:426, Modules/OSD/MediaPlaybackOSD.qml:280, Modules/DankDash/Overview/MediaOverviewCard.qml:102", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:1933, dms-plugins/DankKDEConnect/DankKDEConnect.qml:1939, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:1388, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:1394, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1933, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:1939, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:1388, dms-plugins/dms-plugins-official/DankKDEConnect/components/KDEConnectDetailContent.qml:1394, Modules/DankDash/MediaDropdownOverlay.qml:551, Modules/DankDash/MediaPlayerTab.qml:426, Modules/OSD/MediaPlaybackOSD.qml:280, Modules/DankDash/Overview/MediaOverviewCard.qml:102", "comment": "" }, { @@ -16292,19 +16334,19 @@ { "term": "Unpair", "context": "Unpair", - "reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:171, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:354", + "reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:261, dms-plugins/dms-plugins-official/DankKDEConnect/components/DeviceCard.qml:261", "comment": "KDE Connect unpair tooltip" }, { "term": "Unpair failed", "context": "Unpair failed", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:176", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:699, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:699", "comment": "Phone Connect error" }, { "term": "Unpin", "context": "Unpin", - "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeys.qml:165, Modals/Clipboard/ClipboardContextMenu.qml:30", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeys.qml:165, dms-plugins/dms-plugins-official/DankLauncherKeys/DankLauncherKeys.qml:165, Modals/Clipboard/ClipboardContextMenu.qml:30", "comment": "" }, { @@ -16430,7 +16472,7 @@ { "term": "Usage Tips", "context": "Usage Tips", - "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:208", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:208, dms-plugins/dms-plugins-official/DankLauncherKeys/DankLauncherKeysSettings.qml:208", "comment": "" }, { @@ -16526,7 +16568,7 @@ { "term": "Use an external wallpaper manager like swww, hyprpaper, or swaybg.", "context": "Use an external wallpaper manager like swww, hyprpaper, or swaybg.", - "reference": "Modules/Settings/WallpaperTab.qml:1273", + "reference": "Modules/Settings/WallpaperTab.qml:1288", "comment": "wallpaper settings disable description" }, { @@ -16634,7 +16676,7 @@ { "term": "Use trigger prefix to activate", "context": "Use trigger prefix to activate", - "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:107", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:107, dms-plugins/dms-plugins-official/DankLauncherKeys/DankLauncherKeysSettings.qml:107", "comment": "" }, { @@ -16646,7 +16688,7 @@ { "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", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:57, dms-plugins/dms-plugins-official/DankDesktopWeather/DankDesktopWeatherSettings.qml:57", "comment": "" }, { @@ -16706,7 +16748,7 @@ { "term": "Username", "context": "Username", - "reference": "Modals/WifiPasswordModal.qml:183, Modals/WifiPasswordModal.qml:506, Widgets/VpnProfileDelegate.qml:48, Modules/Settings/NetworkVpnTab.qml:425, Modules/Settings/UsersTab.qml:358", + "reference": "Modals/WifiPasswordModal.qml:183, Modals/WifiPasswordModal.qml:506, Widgets/VpnProfileDelegate.qml:50, Widgets/VpnProfileDelegate.qml:300, Modules/Settings/NetworkVpnTab.qml:425, Modules/Settings/UsersTab.qml:358", "comment": "" }, { @@ -16778,7 +16820,7 @@ { "term": "VPN", "context": "VPN", - "reference": "Modals/Settings/SettingsSidebar.qml:263, Modules/Settings/WidgetsTabSection.qml:1772, Modules/Settings/WidgetsTabSection.qml:2021, Modules/Settings/NetworkVpnTab.qml:45, Modules/Settings/WidgetsTab.qml:185, Modules/ControlCenter/Models/WidgetModel.qml:247, Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml:15", + "reference": "Services/DMSNetworkService.qml:393, Modals/Settings/SettingsSidebar.qml:263, Modules/Settings/WidgetsTabSection.qml:1772, Modules/Settings/WidgetsTabSection.qml:2021, Modules/Settings/NetworkVpnTab.qml:45, Modules/Settings/WidgetsTab.qml:185, Modules/ControlCenter/Models/WidgetModel.qml:247, Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml:18", "comment": "" }, { @@ -16790,19 +16832,25 @@ { "term": "VPN configuration updated", "context": "VPN configuration updated", - "reference": "Services/VPNService.qml:145", + "reference": "Services/VPNService.qml:146", + "comment": "" + }, + { + "term": "VPN credentials saved", + "context": "VPN credentials saved", + "reference": "Services/VPNService.qml:170", "comment": "" }, { "term": "VPN deleted", "context": "VPN deleted", - "reference": "Services/VPNService.qml:162", + "reference": "Services/VPNService.qml:185", "comment": "" }, { "term": "VPN imported: %1", "context": "VPN imported: %1", - "reference": "Services/VPNService.qml:93", + "reference": "Services/VPNService.qml:94", "comment": "" }, { @@ -16844,7 +16892,7 @@ { "term": "Verification", "context": "Verification", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:70", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:588, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:588", "comment": "Phone Connect pairing verification key label" }, { @@ -16922,7 +16970,7 @@ { "term": "View Mode", "context": "View Mode", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:11", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:11, dms-plugins/dms-plugins-official/DankDesktopWeather/DankDesktopWeatherSettings.qml:11", "comment": "" }, { @@ -16952,7 +17000,7 @@ { "term": "Visual effect used when wallpaper changes", "context": "Visual effect used when wallpaper changes", - "reference": "Modules/Settings/WallpaperTab.qml:1176", + "reference": "Modules/Settings/WallpaperTab.qml:1191", "comment": "" }, { @@ -16979,6 +17027,12 @@ "reference": "Modules/Settings/DisplayWidgetsTab.qml:50", "comment": "" }, + { + "term": "Votes", + "context": "Votes", + "reference": "Modules/Settings/PluginBrowser.qml:48", + "comment": "plugin browser sort option" + }, { "term": "WPA/WPA2", "context": "WPA/WPA2", @@ -17000,7 +17054,7 @@ { "term": "Wallpaper Monitor", "context": "Wallpaper Monitor", - "reference": "Modules/Settings/WallpaperTab.qml:841", + "reference": "Modules/Settings/WallpaperTab.qml:856", "comment": "" }, { @@ -17108,7 +17162,7 @@ { "term": "White", "context": "White", - "reference": "Modules/Settings/WallpaperTab.qml:367", + "reference": "Modules/Settings/WallpaperTab.qml:372", "comment": "" }, { @@ -17144,13 +17198,13 @@ { "term": "WiFi disabled", "context": "WiFi disabled", - "reference": "Services/LegacyNetworkService.qml:211, Services/DMSNetworkService.qml:625", + "reference": "Services/LegacyNetworkService.qml:211, Services/DMSNetworkService.qml:649", "comment": "" }, { "term": "WiFi enabled", "context": "WiFi enabled", - "reference": "Services/LegacyNetworkService.qml:211, Services/LegacyNetworkService.qml:416, Services/DMSNetworkService.qml:625, Services/DMSNetworkService.qml:637", + "reference": "Services/LegacyNetworkService.qml:211, Services/LegacyNetworkService.qml:416, Services/DMSNetworkService.qml:649, Services/DMSNetworkService.qml:661", "comment": "" }, { @@ -17270,7 +17324,7 @@ { "term": "Wind", "context": "Wind", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:425, Modules/DankDash/WeatherTab.qml:93, Modules/Settings/TimeWeatherTab.qml:1006", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:425, dms-plugins/dms-plugins-official/DankDesktopWeather/DankDesktopWeather.qml:425, Modules/DankDash/WeatherTab.qml:93, Modules/Settings/TimeWeatherTab.qml:1006", "comment": "" }, { @@ -17336,7 +17390,7 @@ { "term": "Wipe", "context": "Wipe", - "reference": "Modules/Settings/WallpaperTab.qml:1187", + "reference": "Modules/Settings/WallpaperTab.qml:1202", "comment": "wallpaper transition option" }, { @@ -17549,10 +17603,16 @@ "reference": "Modules/DankDash/Overview/UserInfoCard.qml:44", "comment": "" }, + { + "term": "broken", + "context": "broken", + "reference": "Modules/Settings/PluginBrowser.qml:115", + "comment": "plugin status" + }, { "term": "by %1", "context": "by %1", - "reference": "Modules/Settings/PluginBrowser.qml:902, Modules/Settings/ThemeBrowser.qml:506", + "reference": "Modules/Settings/PluginBrowser.qml:1007, Modules/Settings/ThemeBrowser.qml:506", "comment": "author attribution" }, { @@ -17561,6 +17621,12 @@ "reference": "Modules/Settings/NotificationsTab.qml:897, Modules/Settings/ClipboardTab.qml:182", "comment": "" }, + { + "term": "deprecated", + "context": "deprecated", + "reference": "Modules/Settings/PluginBrowser.qml:119", + "comment": "plugin status" + }, { "term": "detached", "context": "detached", @@ -17570,14 +17636,8 @@ { "term": "device", "context": "device", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:91, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:272", - "comment": "Generic device name | Generic device name fallback" - }, - { - "term": "devices connected", - "context": "devices connected", - "reference": "dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:38", - "comment": "KDE Connect status multiple devices" + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:619, dms-plugins/dms-plugins-official/DankKDEConnect/DankKDEConnect.qml:619", + "comment": "Generic device name fallback" }, { "term": "dgop not available", @@ -17591,6 +17651,12 @@ "reference": "Modules/ControlCenter/BuiltinPlugins/TailscaleWidget.qml:406", "comment": "Tailscale direct connection" }, + { + "term": "discuss", + "context": "discuss", + "reference": "Modules/Settings/PluginBrowser.qml:1009", + "comment": "plugin discussion link" + }, { "term": "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.", "context": "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.", @@ -17666,7 +17732,7 @@ { "term": "featured", "context": "featured", - "reference": "Modules/Settings/PluginBrowser.qml:850, Modules/Settings/DesktopWidgetBrowser.qml:390", + "reference": "Modules/Settings/PluginBrowser.qml:899, Modules/Settings/DesktopWidgetBrowser.qml:390", "comment": "" }, { @@ -17804,7 +17870,7 @@ { "term": "official", "context": "official", - "reference": "Modules/Settings/PluginBrowser.qml:872, Modules/Settings/ThemeBrowser.qml:473", + "reference": "Modules/Settings/PluginBrowser.qml:921, Modules/Settings/ThemeBrowser.qml:473", "comment": "" }, { @@ -17900,7 +17966,7 @@ { "term": "source", "context": "source", - "reference": "Modules/Settings/PluginBrowser.qml:903", + "reference": "Modules/Settings/PluginBrowser.qml:1008", "comment": "source code link" }, { @@ -17909,6 +17975,12 @@ "reference": "Modules/Notifications/Popup/NotificationPopup.qml:1423, Modules/Notifications/Popup/NotificationPopup.qml:1423, Modules/Notifications/Center/NotificationCard.qml:1097, Modules/Notifications/Center/NotificationCard.qml:1097", "comment": "" }, + { + "term": "unmaintained", + "context": "unmaintained", + "reference": "Modules/Settings/PluginBrowser.qml:117", + "comment": "plugin status" + }, { "term": "until %1", "context": "until %1", @@ -17951,6 +18023,12 @@ "reference": "Modules/Settings/PluginListItem.qml:169", "comment": "" }, + { + "term": "verified", + "context": "verified", + "reference": "Modules/Settings/PluginBrowser.qml:121", + "comment": "plugin status" + }, { "term": "wtype not available - install wtype for paste support", "context": "wtype not available - install wtype for paste support", @@ -17960,7 +18038,7 @@ { "term": "• Install only from trusted sources", "context": "• Install only from trusted sources", - "reference": "Modules/Settings/PluginBrowser.qml:1220", + "reference": "Modules/Settings/PluginBrowser.qml:1326", "comment": "" }, { @@ -17990,13 +18068,13 @@ { "term": "• Plugins may contain bugs or security issues", "context": "• Plugins may contain bugs or security issues", - "reference": "Modules/Settings/PluginBrowser.qml:1208", + "reference": "Modules/Settings/PluginBrowser.qml:1314", "comment": "" }, { "term": "• Review code before installation when possible", "context": "• Review code before installation when possible", - "reference": "Modules/Settings/PluginBrowser.qml:1214", + "reference": "Modules/Settings/PluginBrowser.qml:1320", "comment": "" }, { diff --git a/quickshell/translations/poexports/de.json b/quickshell/translations/poexports/de.json index 3496bd4a..79715ff1 100644 --- a/quickshell/translations/poexports/de.json +++ b/quickshell/translations/poexports/de.json @@ -107,6 +107,9 @@ "%1 windows": { "%1 windows": "%1 Fenster" }, + "%1: %2": { + "%1: %2": "" + }, "%1m ago": { "%1m ago": "vor %1 Min." }, @@ -1790,6 +1793,9 @@ "Connecting...": { "Connecting...": "Verbinden..." }, + "Connecting…": { + "Connecting…": "" + }, "Connection failed": { "Connection failed": "Verbindung fehlgeschlagen" }, @@ -1970,6 +1976,9 @@ "Creating...": { "Creating...": "erzeugen..." }, + "Credentials": { + "Credentials": "" + }, "Critical Battery": { "Critical Battery": "" }, @@ -2828,6 +2837,9 @@ "Enter PIN for ": { "Enter PIN for ": "PIN eingeben für " }, + "Enter URI or text to share": { + "Enter URI or text to share": "" + }, "Enter URL or text to share": { "Enter URL or text to share": "URL oder Text zum Teilen eingeben" }, @@ -3146,6 +3158,9 @@ "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": { "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": "Fehler beim Ausführen von 'dms greeter status'. Stellen Sie sicher, dass DMS installiert ist und dms im PATH liegt." }, + "Failed to save VPN credentials": { + "Failed to save VPN credentials": "" + }, "Failed to save audio config": { "Failed to save audio config": "Speichern der Audiokonfiguration fehlgeschlagen" }, @@ -3158,6 +3173,9 @@ "Failed to save profile": { "Failed to save profile": "Profil konnte nicht gespeichert werden" }, + "Failed to send SMS": { + "Failed to send SMS": "" + }, "Failed to send clipboard": { "Failed to send clipboard": "Zwischenablage konnte nicht gesendet werden" }, @@ -3503,6 +3521,9 @@ "Format Legend": { "Format Legend": "Legende formatieren" }, + "Forward 10s": { + "Forward 10s": "" + }, "Frame": { "Frame": "Rahmen" }, @@ -3818,6 +3839,9 @@ "Hide device": { "Hide device": "Gerät ausblenden" }, + "Hide installed": { + "Hide installed": "" + }, "Hide notification content until expanded": { "Hide notification content until expanded": "Benachrichtigungsinhalt ausblenden, bis er erweitert wird" }, @@ -4127,6 +4151,9 @@ "Installed": { "Installed": "Installiert" }, + "Installed first": { + "Installed first": "" + }, "Installed: %1": { "Installed: %1": "Installiert: %1" }, @@ -4952,6 +4979,9 @@ "Network Status": { "Network Status": "Netzwerkstatus" }, + "Network Type": { + "Network Type": "" + }, "Network download and upload speed display": { "Network download and upload speed display": "Anzeige Netzwerk-Download- und -Upload-Geschwindigkeit" }, @@ -5180,6 +5210,9 @@ "No human user accounts found.": { "No human user accounts found.": "Keine menschlichen Benutzerkonten gefunden." }, + "No images found": { + "No images found": "" + }, "No info items": { "No info items": "Keine Info-Elemente" }, @@ -5888,6 +5921,9 @@ "Place the dock on the Wayland overlay layer": { "Place the dock on the Wayland overlay layer": "Dock auf der Wayland-Overlay-Ebene platzieren" }, + "Play": { + "Play": "" + }, "Play a video when the screen locks.": { "Play a video when the screen locks.": "Ein Video abspielen, wenn der Bildschirm gesperrt wird." }, @@ -6101,6 +6137,9 @@ "Preview: %1": { "Preview: %1": "" }, + "Previous": { + "Previous": "" + }, "Primary": { "Primary": "Primär" }, @@ -6287,6 +6326,9 @@ "Recent Colors": { "Recent Colors": "Aktuelle Farben" }, + "Recent Images": { + "Recent Images": "" + }, "Recently Used Apps": { "Recently Used Apps": "Zuletzt verwendete Apps" }, @@ -6509,6 +6551,9 @@ "Revert": { "Revert": "Rückgängig machen" }, + "Rewind 10s": { + "Rewind 10s": "" + }, "Right": { "Right": "Rechts" }, @@ -6596,6 +6641,9 @@ "SMS": { "SMS": "SMS" }, + "SMS sent successfully": { + "SMS sent successfully": "" + }, "Saturation": { "Saturation": "Sättigung" }, @@ -6617,6 +6665,9 @@ "Save and switch between display configurations": { "Save and switch between display configurations": "Anzeige-Konfigurationen speichern und zwischen ihnen wechseln" }, + "Save credentials": { + "Save credentials": "" + }, "Save critical priority notifications to history": { "Save critical priority notifications to history": "Benachrichtigungen mit kritischer Priorität im Verlauf speichern" }, @@ -7370,6 +7421,9 @@ "Signal": { "Signal": "Signal" }, + "Signal Strength": { + "Signal Strength": "" + }, "Signal:": { "Signal:": "Signal:" }, @@ -8123,6 +8177,9 @@ "Typography & Motion": { "Typography & Motion": "Typografie & Bewegung" }, + "URI": { + "URI": "" + }, "Unavailable": { "Unavailable": "nicht Verfügbar" }, @@ -8459,6 +8516,9 @@ "VPN configuration updated": { "VPN configuration updated": "VPN Konfiguration geupdated" }, + "VPN credentials saved": { + "VPN credentials saved": "" + }, "VPN deleted": { "VPN deleted": "VPN gelöscht" }, @@ -8552,6 +8612,9 @@ "Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": "Lautstärke, Helligkeit und andere System-OSDs" }, + "Votes": { + "Votes": "" + }, "WPA/WPA2": { "WPA/WPA2": "WPA/WPA2" }, @@ -8846,12 +8909,18 @@ "brandon": { "brandon": "brandon" }, + "broken": { + "broken": "" + }, "by %1": { "by %1": "von %1" }, "days": { "days": "Tage" }, + "deprecated": { + "deprecated": "" + }, "detached": { "detached": "getrennt" }, @@ -8867,6 +8936,9 @@ "direct": { "direct": "direkt" }, + "discuss": { + "discuss": "" + }, "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": "dms ist eine hochgradig anpassbare, moderne Desktop-Shell mit einem Material 3 inspirierten Design.

Sie wurde mit Quickshell entwickelt, einem QT6-Framework zum Erstellen von Desktop-Shells, und Go, einer statisch typisierten, kompilierten Programmiersprache." }, @@ -9026,6 +9098,9 @@ "this app": { "this app": "diese App" }, + "unmaintained": { + "unmaintained": "" + }, "until %1": { "until %1": "bis %1" }, @@ -9047,6 +9122,9 @@ "v%1 by %2": { "v%1 by %2": "v%1 von %2" }, + "verified": { + "verified": "" + }, "wtype not available - install wtype for paste support": { "wtype not available - install wtype for paste support": "wtype ist nicht verfügbar - installiere wtype für Unterstützung zum Einfügen" }, diff --git a/quickshell/translations/poexports/eo.json b/quickshell/translations/poexports/eo.json index af32ca73..a6d5fe21 100644 --- a/quickshell/translations/poexports/eo.json +++ b/quickshell/translations/poexports/eo.json @@ -107,6 +107,9 @@ "%1 windows": { "%1 windows": "%1 fenestroj" }, + "%1: %2": { + "%1: %2": "" + }, "%1m ago": { "%1m ago": "antaŭ %1m" }, @@ -1790,6 +1793,9 @@ "Connecting...": { "Connecting...": "Konektante..." }, + "Connecting…": { + "Connecting…": "" + }, "Connection failed": { "Connection failed": "Konekto malsukcesis" }, @@ -1970,6 +1976,9 @@ "Creating...": { "Creating...": "Kreado..." }, + "Credentials": { + "Credentials": "" + }, "Critical Battery": { "Critical Battery": "" }, @@ -2828,6 +2837,9 @@ "Enter PIN for ": { "Enter PIN for ": "Enigu PIN-kodo por " }, + "Enter URI or text to share": { + "Enter URI or text to share": "" + }, "Enter URL or text to share": { "Enter URL or text to share": "Enigu URL-on aŭ tekston por kunhavigi" }, @@ -3146,6 +3158,9 @@ "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": { "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": "Malsukcesis lanĉi 'dms greeter status'. Certigu ke DMS estas instalita kaj ke dms estas en PATH." }, + "Failed to save VPN credentials": { + "Failed to save VPN credentials": "" + }, "Failed to save audio config": { "Failed to save audio config": "Malsukcesis konservi sonan agordon" }, @@ -3158,6 +3173,9 @@ "Failed to save profile": { "Failed to save profile": "Malsukcesis konservi profilon" }, + "Failed to send SMS": { + "Failed to send SMS": "" + }, "Failed to send clipboard": { "Failed to send clipboard": "Malsukcesis sendi la poŝtabulon" }, @@ -3503,6 +3521,9 @@ "Format Legend": { "Format Legend": "Formata legendo" }, + "Forward 10s": { + "Forward 10s": "" + }, "Frame": { "Frame": "ŝipripo" }, @@ -3818,6 +3839,9 @@ "Hide device": { "Hide device": "Kaŝi aparaton" }, + "Hide installed": { + "Hide installed": "" + }, "Hide notification content until expanded": { "Hide notification content until expanded": "Kaŝi sciigan enhavon ĝis etendo" }, @@ -4127,6 +4151,9 @@ "Installed": { "Installed": "Instalita" }, + "Installed first": { + "Installed first": "" + }, "Installed: %1": { "Installed: %1": "Instalita: %1" }, @@ -4952,6 +4979,9 @@ "Network Status": { "Network Status": "Reta stato" }, + "Network Type": { + "Network Type": "" + }, "Network download and upload speed display": { "Network download and upload speed display": "Vidigo de reta elŝuta kaj alŝuta rapido" }, @@ -5180,6 +5210,9 @@ "No human user accounts found.": { "No human user accounts found.": "Neniuj homaj uzantkontoj trovitaj." }, + "No images found": { + "No images found": "" + }, "No info items": { "No info items": "Neniuj informaj eroj" }, @@ -5888,6 +5921,9 @@ "Place the dock on the Wayland overlay layer": { "Place the dock on the Wayland overlay layer": "Metu la dokon sur la Wayland-kovrotavolo" }, + "Play": { + "Play": "" + }, "Play a video when the screen locks.": { "Play a video when the screen locks.": "Ludi videon kiam la ekrano ŝlosiĝas." }, @@ -6101,6 +6137,9 @@ "Preview: %1": { "Preview: %1": "" }, + "Previous": { + "Previous": "" + }, "Primary": { "Primary": "Ĉefa" }, @@ -6287,6 +6326,9 @@ "Recent Colors": { "Recent Colors": "Lastatempaj koloroj" }, + "Recent Images": { + "Recent Images": "" + }, "Recently Used Apps": { "Recently Used Apps": "Lastatempe uzitaj aplikaĵoj" }, @@ -6509,6 +6551,9 @@ "Revert": { "Revert": "Malfari" }, + "Rewind 10s": { + "Rewind 10s": "" + }, "Right": { "Right": "Dekstre" }, @@ -6596,6 +6641,9 @@ "SMS": { "SMS": "SMS-oj" }, + "SMS sent successfully": { + "SMS sent successfully": "" + }, "Saturation": { "Saturation": "satureco" }, @@ -6617,6 +6665,9 @@ "Save and switch between display configurations": { "Save and switch between display configurations": "Konservi kaj ŝanĝi inter ekranaj agordoj" }, + "Save credentials": { + "Save credentials": "" + }, "Save critical priority notifications to history": { "Save critical priority notifications to history": "Konservi kritik-prioritatajn sciigojn en historion" }, @@ -7370,6 +7421,9 @@ "Signal": { "Signal": "Signalo" }, + "Signal Strength": { + "Signal Strength": "" + }, "Signal:": { "Signal:": "Signalo:" }, @@ -8123,6 +8177,9 @@ "Typography & Motion": { "Typography & Motion": "Tipografio kaj movo" }, + "URI": { + "URI": "" + }, "Unavailable": { "Unavailable": "Nedisponebla" }, @@ -8459,6 +8516,9 @@ "VPN configuration updated": { "VPN configuration updated": "Agordo de VPN estas ĝisdatigita" }, + "VPN credentials saved": { + "VPN credentials saved": "" + }, "VPN deleted": { "VPN deleted": "VPN estas forigita" }, @@ -8552,6 +8612,9 @@ "Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": "Laŭteco, brileco, kaj aliaj sistemaj OSD-oj" }, + "Votes": { + "Votes": "" + }, "WPA/WPA2": { "WPA/WPA2": "WPA/WPA2" }, @@ -8846,12 +8909,18 @@ "brandon": { "brandon": "brandon" }, + "broken": { + "broken": "" + }, "by %1": { "by %1": "de %1" }, "days": { "days": "tagoj" }, + "deprecated": { + "deprecated": "" + }, "detached": { "detached": "deigita" }, @@ -8867,6 +8936,9 @@ "direct": { "direct": "senpera" }, + "discuss": { + "discuss": "" + }, "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": "dms estas tre agordebla, moderna labortabla ŝelo kun dezajno inspirita de material 3.

Ĝi estas konstruita per Quickshell, QT6-kadro por konstrui labortablajn ŝelojn, kaj Go, statike tipita, kompilita programlingvo." }, @@ -9026,6 +9098,9 @@ "this app": { "this app": "ĉi tiu aplikaĵo" }, + "unmaintained": { + "unmaintained": "" + }, "until %1": { "until %1": "ĝis %1" }, @@ -9047,6 +9122,9 @@ "v%1 by %2": { "v%1 by %2": "v%1 de %2" }, + "verified": { + "verified": "" + }, "wtype not available - install wtype for paste support": { "wtype not available - install wtype for paste support": "wtype ne disponeblas - instalu wtype por alglua subteno" }, diff --git a/quickshell/translations/poexports/es.json b/quickshell/translations/poexports/es.json index 81a15c2a..6bce5ab3 100644 --- a/quickshell/translations/poexports/es.json +++ b/quickshell/translations/poexports/es.json @@ -107,6 +107,9 @@ "%1 windows": { "%1 windows": "" }, + "%1: %2": { + "%1: %2": "" + }, "%1m ago": { "%1m ago": "hace %1m" }, @@ -1790,6 +1793,9 @@ "Connecting...": { "Connecting...": "Conectando..." }, + "Connecting…": { + "Connecting…": "" + }, "Connection failed": { "Connection failed": "" }, @@ -1970,6 +1976,9 @@ "Creating...": { "Creating...": "Creando..." }, + "Credentials": { + "Credentials": "" + }, "Critical Battery": { "Critical Battery": "" }, @@ -2828,6 +2837,9 @@ "Enter PIN for ": { "Enter PIN for ": "Ingresar PIN para " }, + "Enter URI or text to share": { + "Enter URI or text to share": "" + }, "Enter URL or text to share": { "Enter URL or text to share": "" }, @@ -3146,6 +3158,9 @@ "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": { "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": "" }, + "Failed to save VPN credentials": { + "Failed to save VPN credentials": "" + }, "Failed to save audio config": { "Failed to save audio config": "" }, @@ -3158,6 +3173,9 @@ "Failed to save profile": { "Failed to save profile": "" }, + "Failed to send SMS": { + "Failed to send SMS": "" + }, "Failed to send clipboard": { "Failed to send clipboard": "" }, @@ -3503,6 +3521,9 @@ "Format Legend": { "Format Legend": "Guía de formato" }, + "Forward 10s": { + "Forward 10s": "" + }, "Frame": { "Frame": "" }, @@ -3818,6 +3839,9 @@ "Hide device": { "Hide device": "" }, + "Hide installed": { + "Hide installed": "" + }, "Hide notification content until expanded": { "Hide notification content until expanded": "" }, @@ -4127,6 +4151,9 @@ "Installed": { "Installed": "Instalado" }, + "Installed first": { + "Installed first": "" + }, "Installed: %1": { "Installed: %1": "Instalado: %1" }, @@ -4952,6 +4979,9 @@ "Network Status": { "Network Status": "Estado de conexión" }, + "Network Type": { + "Network Type": "" + }, "Network download and upload speed display": { "Network download and upload speed display": "Mostrar velocidad de descarga y subida de la red" }, @@ -5180,6 +5210,9 @@ "No human user accounts found.": { "No human user accounts found.": "" }, + "No images found": { + "No images found": "" + }, "No info items": { "No info items": "" }, @@ -5888,6 +5921,9 @@ "Place the dock on the Wayland overlay layer": { "Place the dock on the Wayland overlay layer": "" }, + "Play": { + "Play": "" + }, "Play a video when the screen locks.": { "Play a video when the screen locks.": "" }, @@ -6101,6 +6137,9 @@ "Preview: %1": { "Preview: %1": "" }, + "Previous": { + "Previous": "" + }, "Primary": { "Primary": "Primario" }, @@ -6287,6 +6326,9 @@ "Recent Colors": { "Recent Colors": "Colores recientes" }, + "Recent Images": { + "Recent Images": "" + }, "Recently Used Apps": { "Recently Used Apps": "Aplicaciones usadas recientemente" }, @@ -6509,6 +6551,9 @@ "Revert": { "Revert": "Revertir" }, + "Rewind 10s": { + "Rewind 10s": "" + }, "Right": { "Right": "Derecha" }, @@ -6596,6 +6641,9 @@ "SMS": { "SMS": "" }, + "SMS sent successfully": { + "SMS sent successfully": "" + }, "Saturation": { "Saturation": "" }, @@ -6617,6 +6665,9 @@ "Save and switch between display configurations": { "Save and switch between display configurations": "" }, + "Save credentials": { + "Save credentials": "" + }, "Save critical priority notifications to history": { "Save critical priority notifications to history": "Guardar en el historial las notificaciones de prioridad crítica" }, @@ -7370,6 +7421,9 @@ "Signal": { "Signal": "Señal" }, + "Signal Strength": { + "Signal Strength": "" + }, "Signal:": { "Signal:": "Señal:" }, @@ -8123,6 +8177,9 @@ "Typography & Motion": { "Typography & Motion": "Tipografia y movimiento" }, + "URI": { + "URI": "" + }, "Unavailable": { "Unavailable": "No disponible" }, @@ -8459,6 +8516,9 @@ "VPN configuration updated": { "VPN configuration updated": "Configuración VPN actualizada" }, + "VPN credentials saved": { + "VPN credentials saved": "" + }, "VPN deleted": { "VPN deleted": "VPN eliminada" }, @@ -8552,6 +8612,9 @@ "Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": "Volumen, brillo y otros indicadores en pantalla" }, + "Votes": { + "Votes": "" + }, "WPA/WPA2": { "WPA/WPA2": "WPA/WPA2" }, @@ -8846,12 +8909,18 @@ "brandon": { "brandon": "" }, + "broken": { + "broken": "" + }, "by %1": { "by %1": "por %1" }, "days": { "days": "dias" }, + "deprecated": { + "deprecated": "" + }, "detached": { "detached": "" }, @@ -8867,6 +8936,9 @@ "direct": { "direct": "" }, + "discuss": { + "discuss": "" + }, "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": "" }, @@ -9026,6 +9098,9 @@ "this app": { "this app": "" }, + "unmaintained": { + "unmaintained": "" + }, "until %1": { "until %1": "" }, @@ -9047,6 +9122,9 @@ "v%1 by %2": { "v%1 by %2": "" }, + "verified": { + "verified": "" + }, "wtype not available - install wtype for paste support": { "wtype not available - install wtype for paste support": "wtype no disponible - instala wtype para soporte de pegado" }, diff --git a/quickshell/translations/poexports/fa.json b/quickshell/translations/poexports/fa.json index 9c698577..76522a6a 100644 --- a/quickshell/translations/poexports/fa.json +++ b/quickshell/translations/poexports/fa.json @@ -107,6 +107,9 @@ "%1 windows": { "%1 windows": "%1 پنجره" }, + "%1: %2": { + "%1: %2": "" + }, "%1m ago": { "%1m ago": "%1 دقیقه پیش" }, @@ -1790,6 +1793,9 @@ "Connecting...": { "Connecting...": "درحال اتصال..." }, + "Connecting…": { + "Connecting…": "" + }, "Connection failed": { "Connection failed": "اتصال ناموفق بود" }, @@ -1970,6 +1976,9 @@ "Creating...": { "Creating...": "درحال ایجاد..." }, + "Credentials": { + "Credentials": "" + }, "Critical Battery": { "Critical Battery": "" }, @@ -2828,6 +2837,9 @@ "Enter PIN for ": { "Enter PIN for ": "ورود PIN برای " }, + "Enter URI or text to share": { + "Enter URI or text to share": "" + }, "Enter URL or text to share": { "Enter URL or text to share": "متن یا URL برای اشتراک‌گذاری وارد کنید" }, @@ -3146,6 +3158,9 @@ "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": { "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": "اجرای 'dms greeter status' ناموفق بود. از نصب DMS و بودن dms در PATH اطمینان حاصل نمایید." }, + "Failed to save VPN credentials": { + "Failed to save VPN credentials": "" + }, "Failed to save audio config": { "Failed to save audio config": "ذخیره پیکربندی صوتی ناموفق بود" }, @@ -3158,6 +3173,9 @@ "Failed to save profile": { "Failed to save profile": "ذخیره پروفایل ناموفق بود" }, + "Failed to send SMS": { + "Failed to send SMS": "" + }, "Failed to send clipboard": { "Failed to send clipboard": "ارسال کلیپ‌بورد ناموفق بود" }, @@ -3503,6 +3521,9 @@ "Format Legend": { "Format Legend": "راهنمای قالب‌بندی" }, + "Forward 10s": { + "Forward 10s": "" + }, "Frame": { "Frame": "قاب" }, @@ -3818,6 +3839,9 @@ "Hide device": { "Hide device": "پنهان کردن دستگاه" }, + "Hide installed": { + "Hide installed": "" + }, "Hide notification content until expanded": { "Hide notification content until expanded": "پنهان کردن محتوای اعلان را تا هنگام گسترش" }, @@ -4127,6 +4151,9 @@ "Installed": { "Installed": "نصب شده" }, + "Installed first": { + "Installed first": "" + }, "Installed: %1": { "Installed: %1": "نصب شده: %1" }, @@ -4952,6 +4979,9 @@ "Network Status": { "Network Status": "وضعیت شبکه" }, + "Network Type": { + "Network Type": "" + }, "Network download and upload speed display": { "Network download and upload speed display": "نمایش سرعت بارگیری و بارگذاری شبکه" }, @@ -5180,6 +5210,9 @@ "No human user accounts found.": { "No human user accounts found.": "هیچ حساب کاربری انسانی یافت نشد." }, + "No images found": { + "No images found": "" + }, "No info items": { "No info items": "مورد اطلاعاتی وجود ندارد" }, @@ -5888,6 +5921,9 @@ "Place the dock on the Wayland overlay layer": { "Place the dock on the Wayland overlay layer": "داک را روی لایه overlay ویلند قرار بده" }, + "Play": { + "Play": "" + }, "Play a video when the screen locks.": { "Play a video when the screen locks.": "یک ویدئو هنگامی که صفحه قفل شده پخش شود." }, @@ -6101,6 +6137,9 @@ "Preview: %1": { "Preview: %1": "" }, + "Previous": { + "Previous": "" + }, "Primary": { "Primary": "اصلی" }, @@ -6287,6 +6326,9 @@ "Recent Colors": { "Recent Colors": "رنگ‌های اخیر" }, + "Recent Images": { + "Recent Images": "" + }, "Recently Used Apps": { "Recently Used Apps": "برنامه‌های استفاده شده اخیر" }, @@ -6509,6 +6551,9 @@ "Revert": { "Revert": "برگرداندن" }, + "Rewind 10s": { + "Rewind 10s": "" + }, "Right": { "Right": "راست" }, @@ -6596,6 +6641,9 @@ "SMS": { "SMS": "SMS" }, + "SMS sent successfully": { + "SMS sent successfully": "" + }, "Saturation": { "Saturation": "" }, @@ -6617,6 +6665,9 @@ "Save and switch between display configurations": { "Save and switch between display configurations": "ذخیره و جابه‌جایی بین پیکربندی‌های نمایشگر" }, + "Save credentials": { + "Save credentials": "" + }, "Save critical priority notifications to history": { "Save critical priority notifications to history": "اعلان‌ها با اولویت حیاتی را در تاریخچه ذخیره کن" }, @@ -7370,6 +7421,9 @@ "Signal": { "Signal": "سیگنال" }, + "Signal Strength": { + "Signal Strength": "" + }, "Signal:": { "Signal:": "سیگنال:" }, @@ -8123,6 +8177,9 @@ "Typography & Motion": { "Typography & Motion": "تایپوگرافی و حرکت" }, + "URI": { + "URI": "" + }, "Unavailable": { "Unavailable": "ناموجود" }, @@ -8459,6 +8516,9 @@ "VPN configuration updated": { "VPN configuration updated": "گذرواژه VPN بروز شد" }, + "VPN credentials saved": { + "VPN credentials saved": "" + }, "VPN deleted": { "VPN deleted": "VPN حذف شد" }, @@ -8552,6 +8612,9 @@ "Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": "OSD‌های حجم صدا، روشنایی و سیستمی" }, + "Votes": { + "Votes": "" + }, "WPA/WPA2": { "WPA/WPA2": "WPA/WPA2" }, @@ -8846,12 +8909,18 @@ "brandon": { "brandon": "براندون" }, + "broken": { + "broken": "" + }, "by %1": { "by %1": "توسط %1" }, "days": { "days": "روز" }, + "deprecated": { + "deprecated": "" + }, "detached": { "detached": "جدا شد" }, @@ -8867,6 +8936,9 @@ "direct": { "direct": "مستقیم" }, + "discuss": { + "discuss": "" + }, "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": "" }, @@ -9026,6 +9098,9 @@ "this app": { "this app": "این برنامه" }, + "unmaintained": { + "unmaintained": "" + }, "until %1": { "until %1": "تا %1" }, @@ -9047,6 +9122,9 @@ "v%1 by %2": { "v%1 by %2": "نسخه %1 توسط %2" }, + "verified": { + "verified": "" + }, "wtype not available - install wtype for paste support": { "wtype not available - install wtype for paste support": "wtype در دسترس نیست - wtype را برای پشتیبانی از الصاق نصب کنید" }, diff --git a/quickshell/translations/poexports/fr.json b/quickshell/translations/poexports/fr.json index 5549bf31..1379b8d2 100644 --- a/quickshell/translations/poexports/fr.json +++ b/quickshell/translations/poexports/fr.json @@ -107,6 +107,9 @@ "%1 windows": { "%1 windows": "%1 fenêtres" }, + "%1: %2": { + "%1: %2": "" + }, "%1m ago": { "%1m ago": "il y a %1 min" }, @@ -1790,6 +1793,9 @@ "Connecting...": { "Connecting...": "Connexion..." }, + "Connecting…": { + "Connecting…": "" + }, "Connection failed": { "Connection failed": "Connexion échouée" }, @@ -1970,6 +1976,9 @@ "Creating...": { "Creating...": "Création..." }, + "Credentials": { + "Credentials": "" + }, "Critical Battery": { "Critical Battery": "" }, @@ -2828,6 +2837,9 @@ "Enter PIN for ": { "Enter PIN for ": "Saisir le code PIN pour " }, + "Enter URI or text to share": { + "Enter URI or text to share": "" + }, "Enter URL or text to share": { "Enter URL or text to share": "Entrer l'URL ou le texte à partager" }, @@ -3146,6 +3158,9 @@ "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": { "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": "Échec de l'exécution de 'dms greeter status'. Vérifiez que DMS est installé et dans le PATH." }, + "Failed to save VPN credentials": { + "Failed to save VPN credentials": "" + }, "Failed to save audio config": { "Failed to save audio config": "Échec de la sauvegarde de la config audio" }, @@ -3158,6 +3173,9 @@ "Failed to save profile": { "Failed to save profile": "" }, + "Failed to send SMS": { + "Failed to send SMS": "" + }, "Failed to send clipboard": { "Failed to send clipboard": "Échec de l'envoi du presse-papier" }, @@ -3503,6 +3521,9 @@ "Format Legend": { "Format Legend": "Légende du format" }, + "Forward 10s": { + "Forward 10s": "" + }, "Frame": { "Frame": "" }, @@ -3818,6 +3839,9 @@ "Hide device": { "Hide device": "Masquer l'appareil" }, + "Hide installed": { + "Hide installed": "" + }, "Hide notification content until expanded": { "Hide notification content until expanded": "Masquer le contenu des notifications tant qu'elles ne sont pas développées" }, @@ -4127,6 +4151,9 @@ "Installed": { "Installed": "Installé" }, + "Installed first": { + "Installed first": "" + }, "Installed: %1": { "Installed: %1": "Installé : %1" }, @@ -4952,6 +4979,9 @@ "Network Status": { "Network Status": "État du réseau" }, + "Network Type": { + "Network Type": "" + }, "Network download and upload speed display": { "Network download and upload speed display": "Affichage des vitesses de téléchargement et d’envoi du réseau" }, @@ -5180,6 +5210,9 @@ "No human user accounts found.": { "No human user accounts found.": "" }, + "No images found": { + "No images found": "" + }, "No info items": { "No info items": "Aucune information" }, @@ -5888,6 +5921,9 @@ "Place the dock on the Wayland overlay layer": { "Place the dock on the Wayland overlay layer": "" }, + "Play": { + "Play": "" + }, "Play a video when the screen locks.": { "Play a video when the screen locks.": "Lancer une vidéo lorsque l'écran se verrouille." }, @@ -6101,6 +6137,9 @@ "Preview: %1": { "Preview: %1": "" }, + "Previous": { + "Previous": "" + }, "Primary": { "Primary": "Principal" }, @@ -6287,6 +6326,9 @@ "Recent Colors": { "Recent Colors": "Couleurs récentes" }, + "Recent Images": { + "Recent Images": "" + }, "Recently Used Apps": { "Recently Used Apps": "Applications récemment utilisées" }, @@ -6509,6 +6551,9 @@ "Revert": { "Revert": "Annuler" }, + "Rewind 10s": { + "Rewind 10s": "" + }, "Right": { "Right": "Droite" }, @@ -6596,6 +6641,9 @@ "SMS": { "SMS": "SMS" }, + "SMS sent successfully": { + "SMS sent successfully": "" + }, "Saturation": { "Saturation": "" }, @@ -6617,6 +6665,9 @@ "Save and switch between display configurations": { "Save and switch between display configurations": "Enregistrer et basculer entre les configurations d’affichage" }, + "Save credentials": { + "Save credentials": "" + }, "Save critical priority notifications to history": { "Save critical priority notifications to history": "Enregistrer les notifications de priorité critique dans l’historique" }, @@ -7370,6 +7421,9 @@ "Signal": { "Signal": "Signal" }, + "Signal Strength": { + "Signal Strength": "" + }, "Signal:": { "Signal:": "Signal :" }, @@ -8123,6 +8177,9 @@ "Typography & Motion": { "Typography & Motion": "Typographie et animation" }, + "URI": { + "URI": "" + }, "Unavailable": { "Unavailable": "Indisponible" }, @@ -8459,6 +8516,9 @@ "VPN configuration updated": { "VPN configuration updated": "Configuration VPN mise à jour" }, + "VPN credentials saved": { + "VPN credentials saved": "" + }, "VPN deleted": { "VPN deleted": "VPN supprimée" }, @@ -8552,6 +8612,9 @@ "Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": "Volume, luminosité et autres affichages système" }, + "Votes": { + "Votes": "" + }, "WPA/WPA2": { "WPA/WPA2": "WPA/WPA2" }, @@ -8846,12 +8909,18 @@ "brandon": { "brandon": "brandon" }, + "broken": { + "broken": "" + }, "by %1": { "by %1": "par %1" }, "days": { "days": "jours" }, + "deprecated": { + "deprecated": "" + }, "detached": { "detached": "détaché" }, @@ -8867,6 +8936,9 @@ "direct": { "direct": "" }, + "discuss": { + "discuss": "" + }, "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": "" }, @@ -9026,6 +9098,9 @@ "this app": { "this app": "cette appli" }, + "unmaintained": { + "unmaintained": "" + }, "until %1": { "until %1": "" }, @@ -9047,6 +9122,9 @@ "v%1 by %2": { "v%1 by %2": "v%1 par %2" }, + "verified": { + "verified": "" + }, "wtype not available - install wtype for paste support": { "wtype not available - install wtype for paste support": "wtype non disponible - installez wtype pour le support du collage" }, diff --git a/quickshell/translations/poexports/he.json b/quickshell/translations/poexports/he.json index d19a5272..f1d82001 100644 --- a/quickshell/translations/poexports/he.json +++ b/quickshell/translations/poexports/he.json @@ -107,6 +107,9 @@ "%1 windows": { "%1 windows": "%1 חלונות" }, + "%1: %2": { + "%1: %2": "" + }, "%1m ago": { "%1m ago": "לפני %1 דקות" }, @@ -1790,6 +1793,9 @@ "Connecting...": { "Connecting...": "מתחבר..." }, + "Connecting…": { + "Connecting…": "" + }, "Connection failed": { "Connection failed": "החיבור נכשל" }, @@ -1970,6 +1976,9 @@ "Creating...": { "Creating...": "יוצר..." }, + "Credentials": { + "Credentials": "" + }, "Critical Battery": { "Critical Battery": "" }, @@ -2828,6 +2837,9 @@ "Enter PIN for ": { "Enter PIN for ": "הזן/י קוד PIN עבור " }, + "Enter URI or text to share": { + "Enter URI or text to share": "" + }, "Enter URL or text to share": { "Enter URL or text to share": "הזן/י קישור (URL) או טקסט לשיתוף" }, @@ -3146,6 +3158,9 @@ "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": { "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": "הרצת הפקודה 'dms greeter status' נכשלה. ודא/י שDMS מותקן ו-dms נמצא בPATH." }, + "Failed to save VPN credentials": { + "Failed to save VPN credentials": "" + }, "Failed to save audio config": { "Failed to save audio config": "שמירת הגדרות שמע נכשלה" }, @@ -3158,6 +3173,9 @@ "Failed to save profile": { "Failed to save profile": "שמירת הפרופיל נכשלה" }, + "Failed to send SMS": { + "Failed to send SMS": "" + }, "Failed to send clipboard": { "Failed to send clipboard": "שליחת לוח ההעתקה נכשלה" }, @@ -3503,6 +3521,9 @@ "Format Legend": { "Format Legend": "מקרא תבניות" }, + "Forward 10s": { + "Forward 10s": "" + }, "Frame": { "Frame": "מסגרת" }, @@ -3818,6 +3839,9 @@ "Hide device": { "Hide device": "הסתר/י התקן" }, + "Hide installed": { + "Hide installed": "" + }, "Hide notification content until expanded": { "Hide notification content until expanded": "הסתר/י את תוכן ההתראה עד להרחבה" }, @@ -4127,6 +4151,9 @@ "Installed": { "Installed": "מותקן" }, + "Installed first": { + "Installed first": "" + }, "Installed: %1": { "Installed: %1": "הותקן: %1" }, @@ -4952,6 +4979,9 @@ "Network Status": { "Network Status": "מצב רשת" }, + "Network Type": { + "Network Type": "" + }, "Network download and upload speed display": { "Network download and upload speed display": "תצוגת מהירות הורדה והעלאה ברשת" }, @@ -5180,6 +5210,9 @@ "No human user accounts found.": { "No human user accounts found.": "לא נמצאו חשבונות משתמש אנושיים." }, + "No images found": { + "No images found": "" + }, "No info items": { "No info items": "אין פריטי מידע" }, @@ -5888,6 +5921,9 @@ "Place the dock on the Wayland overlay layer": { "Place the dock on the Wayland overlay layer": "הצב/י את הDock בשכבת הכיסוי העליונה (overlay layer) של Wayland" }, + "Play": { + "Play": "" + }, "Play a video when the screen locks.": { "Play a video when the screen locks.": "נגן/י וידאו כאשר המסך ננעל." }, @@ -6101,6 +6137,9 @@ "Preview: %1": { "Preview: %1": "" }, + "Previous": { + "Previous": "" + }, "Primary": { "Primary": "ראשי" }, @@ -6287,6 +6326,9 @@ "Recent Colors": { "Recent Colors": "צבעים אחרונים" }, + "Recent Images": { + "Recent Images": "" + }, "Recently Used Apps": { "Recently Used Apps": "אפליקציות שהיו בשימוש לאחרונה" }, @@ -6509,6 +6551,9 @@ "Revert": { "Revert": "חזור/חזרי" }, + "Rewind 10s": { + "Rewind 10s": "" + }, "Right": { "Right": "ימין" }, @@ -6596,6 +6641,9 @@ "SMS": { "SMS": "SMS" }, + "SMS sent successfully": { + "SMS sent successfully": "" + }, "Saturation": { "Saturation": "רוויה" }, @@ -6617,6 +6665,9 @@ "Save and switch between display configurations": { "Save and switch between display configurations": "שמור/שמרי והחלף/החליפי את הגדרות התצוגה" }, + "Save credentials": { + "Save credentials": "" + }, "Save critical priority notifications to history": { "Save critical priority notifications to history": "שמור/י התראות בעדיפות קריטית להיסטוריה" }, @@ -7370,6 +7421,9 @@ "Signal": { "Signal": "אות" }, + "Signal Strength": { + "Signal Strength": "" + }, "Signal:": { "Signal:": "אות:" }, @@ -8123,6 +8177,9 @@ "Typography & Motion": { "Typography & Motion": "טיפוגרפיה ותנועה" }, + "URI": { + "URI": "" + }, "Unavailable": { "Unavailable": "לא זמין" }, @@ -8459,6 +8516,9 @@ "VPN configuration updated": { "VPN configuration updated": "תצורת הVPN עודכנה" }, + "VPN credentials saved": { + "VPN credentials saved": "" + }, "VPN deleted": { "VPN deleted": "הVPN נמחק" }, @@ -8552,6 +8612,9 @@ "Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": "עוצמת שמע, בהירות ותצוגות מערכת (OSD) אחרות על המסך" }, + "Votes": { + "Votes": "" + }, "WPA/WPA2": { "WPA/WPA2": "WPA/WPA2" }, @@ -8846,12 +8909,18 @@ "brandon": { "brandon": "brandon" }, + "broken": { + "broken": "" + }, "by %1": { "by %1": "מאת %1" }, "days": { "days": "ימים" }, + "deprecated": { + "deprecated": "" + }, "detached": { "detached": "מנותק" }, @@ -8867,6 +8936,9 @@ "direct": { "direct": "ישיר" }, + "discuss": { + "discuss": "" + }, "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": "הפרויקט DMS הוא מעטפת שולחן עבודה מודרנית וניתנת להתאמה אישית עם עיצוב בהשראת Material Design 3 של גוגל.

היא נבנתה עם שפת התכנות Go וQuickshell, ספריית QT6 לבניית מעטפות לשולחן העבודה." }, @@ -9026,6 +9098,9 @@ "this app": { "this app": "אפליקציה זו" }, + "unmaintained": { + "unmaintained": "" + }, "until %1": { "until %1": "עד %1" }, @@ -9047,6 +9122,9 @@ "v%1 by %2": { "v%1 by %2": "v%1 מאת %2" }, + "verified": { + "verified": "" + }, "wtype not available - install wtype for paste support": { "wtype not available - install wtype for paste support": "wtype אינו זמין - התקן/י את wtype כדי לאפשר תמיכה בהדבקה" }, diff --git a/quickshell/translations/poexports/hu.json b/quickshell/translations/poexports/hu.json index 514c90f9..7f808379 100644 --- a/quickshell/translations/poexports/hu.json +++ b/quickshell/translations/poexports/hu.json @@ -107,6 +107,9 @@ "%1 windows": { "%1 windows": "%1 ablak" }, + "%1: %2": { + "%1: %2": "" + }, "%1m ago": { "%1m ago": "%1 perccel ezelőtt" }, @@ -1790,6 +1793,9 @@ "Connecting...": { "Connecting...": "Csatlakozás…" }, + "Connecting…": { + "Connecting…": "" + }, "Connection failed": { "Connection failed": "Kapcsolódás sikertelen" }, @@ -1970,6 +1976,9 @@ "Creating...": { "Creating...": "Létrehozás…" }, + "Credentials": { + "Credentials": "" + }, "Critical Battery": { "Critical Battery": "" }, @@ -2828,6 +2837,9 @@ "Enter PIN for ": { "Enter PIN for ": "PIN-kód megadása ehhez: " }, + "Enter URI or text to share": { + "Enter URI or text to share": "" + }, "Enter URL or text to share": { "Enter URL or text to share": "Adj meg egy URL-t vagy szöveget a megosztáshoz" }, @@ -3146,6 +3158,9 @@ "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": { "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": "Nem sikerült futtatni a 'dms greeter status' parancsot. Győződj meg róla, hogy a DMS telepítve van, és a dms benne van a PATH környezeti változóban." }, + "Failed to save VPN credentials": { + "Failed to save VPN credentials": "" + }, "Failed to save audio config": { "Failed to save audio config": "Nem sikerült menteni a hangkonfigurációt" }, @@ -3158,6 +3173,9 @@ "Failed to save profile": { "Failed to save profile": "A profil mentése sikertelen" }, + "Failed to send SMS": { + "Failed to send SMS": "" + }, "Failed to send clipboard": { "Failed to send clipboard": "Nem sikerült a vágólap elküldése" }, @@ -3503,6 +3521,9 @@ "Format Legend": { "Format Legend": "Formátum-magyarázat" }, + "Forward 10s": { + "Forward 10s": "" + }, "Frame": { "Frame": "Keret" }, @@ -3818,6 +3839,9 @@ "Hide device": { "Hide device": "Eszköz elrejtése" }, + "Hide installed": { + "Hide installed": "" + }, "Hide notification content until expanded": { "Hide notification content until expanded": "Értesítés tartalmának elrejtése a kibontásig" }, @@ -4127,6 +4151,9 @@ "Installed": { "Installed": "Telepítve" }, + "Installed first": { + "Installed first": "" + }, "Installed: %1": { "Installed: %1": "Telepített: %1" }, @@ -4952,6 +4979,9 @@ "Network Status": { "Network Status": "Hálózati állapot" }, + "Network Type": { + "Network Type": "" + }, "Network download and upload speed display": { "Network download and upload speed display": "Hálózati le- és feltöltési sebesség kijelzése" }, @@ -5180,6 +5210,9 @@ "No human user accounts found.": { "No human user accounts found.": "Nem találhatók emberi felhasználói fiókok." }, + "No images found": { + "No images found": "" + }, "No info items": { "No info items": "Nincsenek információs elemek" }, @@ -5888,6 +5921,9 @@ "Place the dock on the Wayland overlay layer": { "Place the dock on the Wayland overlay layer": "A dokk elhelyezése a Wayland-átfedési rétegen" }, + "Play": { + "Play": "" + }, "Play a video when the screen locks.": { "Play a video when the screen locks.": "Videó lejátszása a képernyő zárolásakor." }, @@ -6101,6 +6137,9 @@ "Preview: %1": { "Preview: %1": "" }, + "Previous": { + "Previous": "" + }, "Primary": { "Primary": "Elsődleges" }, @@ -6287,6 +6326,9 @@ "Recent Colors": { "Recent Colors": "Legutóbbi színek" }, + "Recent Images": { + "Recent Images": "" + }, "Recently Used Apps": { "Recently Used Apps": "Legutóbb használt alkalmazások" }, @@ -6509,6 +6551,9 @@ "Revert": { "Revert": "Visszaállítás" }, + "Rewind 10s": { + "Rewind 10s": "" + }, "Right": { "Right": "Jobb" }, @@ -6596,6 +6641,9 @@ "SMS": { "SMS": "SMS" }, + "SMS sent successfully": { + "SMS sent successfully": "" + }, "Saturation": { "Saturation": "Telítettség" }, @@ -6617,6 +6665,9 @@ "Save and switch between display configurations": { "Save and switch between display configurations": "Kijelző-konfigurációk mentése és váltása" }, + "Save credentials": { + "Save credentials": "" + }, "Save critical priority notifications to history": { "Save critical priority notifications to history": "Kritikus prioritású értesítések mentése az előzményekbe" }, @@ -7370,6 +7421,9 @@ "Signal": { "Signal": "Jel" }, + "Signal Strength": { + "Signal Strength": "" + }, "Signal:": { "Signal:": "Jel:" }, @@ -8123,6 +8177,9 @@ "Typography & Motion": { "Typography & Motion": "Tipográfia és animáció" }, + "URI": { + "URI": "" + }, "Unavailable": { "Unavailable": "Nem érhető el" }, @@ -8459,6 +8516,9 @@ "VPN configuration updated": { "VPN configuration updated": "VPN-konfiguráció frissítve" }, + "VPN credentials saved": { + "VPN credentials saved": "" + }, "VPN deleted": { "VPN deleted": "VPN-kapcsolat törölve" }, @@ -8552,6 +8612,9 @@ "Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": "Hangerő, fényerő és egyéb rendszer képernyőkijelzők" }, + "Votes": { + "Votes": "" + }, "WPA/WPA2": { "WPA/WPA2": "WPA/WPA2" }, @@ -8846,12 +8909,18 @@ "brandon": { "brandon": "brandon" }, + "broken": { + "broken": "" + }, "by %1": { "by %1": "ettől: %1" }, "days": { "days": "nap" }, + "deprecated": { + "deprecated": "" + }, "detached": { "detached": "leválasztva" }, @@ -8867,6 +8936,9 @@ "direct": { "direct": "közvetlen" }, + "discuss": { + "discuss": "" + }, "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": "A dms egy nagymértékben testreszabható, modern asztali héj, material 3 ihlette dizájnnal.

A Quickshell-lel, egy QT6 keretrendszerrel asztali héjak építéséhez, és a Go statikusan típusos, fordított programozási nyelvvel készült." }, @@ -9026,6 +9098,9 @@ "this app": { "this app": "ez az alkalmazás" }, + "unmaintained": { + "unmaintained": "" + }, "until %1": { "until %1": "eddig: %1" }, @@ -9047,6 +9122,9 @@ "v%1 by %2": { "v%1 by %2": "v%1 ettől: %2" }, + "verified": { + "verified": "" + }, "wtype not available - install wtype for paste support": { "wtype not available - install wtype for paste support": "A wtype nem érhető el - telepítsd a wtype csomagot a beillesztés támogatásához" }, diff --git a/quickshell/translations/poexports/it.json b/quickshell/translations/poexports/it.json index c42499e9..8fbddac6 100644 --- a/quickshell/translations/poexports/it.json +++ b/quickshell/translations/poexports/it.json @@ -107,6 +107,9 @@ "%1 windows": { "%1 windows": "%1 finestre" }, + "%1: %2": { + "%1: %2": "" + }, "%1m ago": { "%1m ago": "%1 min fa" }, @@ -1790,6 +1793,9 @@ "Connecting...": { "Connecting...": "Connessione in corso..." }, + "Connecting…": { + "Connecting…": "" + }, "Connection failed": { "Connection failed": "Connessione non riuscita" }, @@ -1970,6 +1976,9 @@ "Creating...": { "Creating...": "Creazione in Corso..." }, + "Credentials": { + "Credentials": "" + }, "Critical Battery": { "Critical Battery": "" }, @@ -2828,6 +2837,9 @@ "Enter PIN for ": { "Enter PIN for ": "Inserisci PIN per " }, + "Enter URI or text to share": { + "Enter URI or text to share": "" + }, "Enter URL or text to share": { "Enter URL or text to share": "Inserisci un URL o un testo da condividere" }, @@ -3146,6 +3158,9 @@ "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": { "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": "Impossibile eseguire \"dms greeter status\". Assicurati che DMS sia installato e dms sia nel PATH." }, + "Failed to save VPN credentials": { + "Failed to save VPN credentials": "" + }, "Failed to save audio config": { "Failed to save audio config": "Impossibile salvare la configurazione audio" }, @@ -3158,6 +3173,9 @@ "Failed to save profile": { "Failed to save profile": "Impossibile salvare il profilo" }, + "Failed to send SMS": { + "Failed to send SMS": "" + }, "Failed to send clipboard": { "Failed to send clipboard": "Impossibile inviare gli appunti" }, @@ -3503,6 +3521,9 @@ "Format Legend": { "Format Legend": "Legenda Formato" }, + "Forward 10s": { + "Forward 10s": "" + }, "Frame": { "Frame": "Cornice" }, @@ -3818,6 +3839,9 @@ "Hide device": { "Hide device": "Nascondi dispositivo" }, + "Hide installed": { + "Hide installed": "" + }, "Hide notification content until expanded": { "Hide notification content until expanded": "Nascondi il contenuto della notifica finché non viene espansa" }, @@ -4127,6 +4151,9 @@ "Installed": { "Installed": "Installato" }, + "Installed first": { + "Installed first": "" + }, "Installed: %1": { "Installed: %1": "Installato: %1" }, @@ -4952,6 +4979,9 @@ "Network Status": { "Network Status": "Stato Rete" }, + "Network Type": { + "Network Type": "" + }, "Network download and upload speed display": { "Network download and upload speed display": "Mostra velocità di download e upload della rete" }, @@ -5180,6 +5210,9 @@ "No human user accounts found.": { "No human user accounts found.": "Nessun account utente umano trovato." }, + "No images found": { + "No images found": "" + }, "No info items": { "No info items": "Nessun elemento informativo" }, @@ -5888,6 +5921,9 @@ "Place the dock on the Wayland overlay layer": { "Place the dock on the Wayland overlay layer": "Posiziona il dock sul livello di sovrapposizione di Wayland" }, + "Play": { + "Play": "" + }, "Play a video when the screen locks.": { "Play a video when the screen locks.": "Riproduci un video quando lo schermo si blocca." }, @@ -6101,6 +6137,9 @@ "Preview: %1": { "Preview: %1": "" }, + "Previous": { + "Previous": "" + }, "Primary": { "Primary": "Primario" }, @@ -6287,6 +6326,9 @@ "Recent Colors": { "Recent Colors": "Colori Recenti" }, + "Recent Images": { + "Recent Images": "" + }, "Recently Used Apps": { "Recently Used Apps": "App Usate Recentemente" }, @@ -6509,6 +6551,9 @@ "Revert": { "Revert": "Ripristina" }, + "Rewind 10s": { + "Rewind 10s": "" + }, "Right": { "Right": "Destra" }, @@ -6596,6 +6641,9 @@ "SMS": { "SMS": "SMS" }, + "SMS sent successfully": { + "SMS sent successfully": "" + }, "Saturation": { "Saturation": "Saturazione" }, @@ -6617,6 +6665,9 @@ "Save and switch between display configurations": { "Save and switch between display configurations": "Salva e passa tra le configurazioni dello schermo" }, + "Save credentials": { + "Save credentials": "" + }, "Save critical priority notifications to history": { "Save critical priority notifications to history": "Salva nella cronologia le notifiche a priorità critica" }, @@ -7370,6 +7421,9 @@ "Signal": { "Signal": "Segnale" }, + "Signal Strength": { + "Signal Strength": "" + }, "Signal:": { "Signal:": "Segnale:" }, @@ -8123,6 +8177,9 @@ "Typography & Motion": { "Typography & Motion": "Tipografia e Animazioni" }, + "URI": { + "URI": "" + }, "Unavailable": { "Unavailable": "Non disponibile" }, @@ -8459,6 +8516,9 @@ "VPN configuration updated": { "VPN configuration updated": "Configurazione VPN aggiornata" }, + "VPN credentials saved": { + "VPN credentials saved": "" + }, "VPN deleted": { "VPN deleted": "VPN eliminata" }, @@ -8552,6 +8612,9 @@ "Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": "Volume, luminosità e altri indicatori a schermo di sistema" }, + "Votes": { + "Votes": "" + }, "WPA/WPA2": { "WPA/WPA2": "WPA/WPA2" }, @@ -8846,12 +8909,18 @@ "brandon": { "brandon": "brandon" }, + "broken": { + "broken": "" + }, "by %1": { "by %1": "di %1" }, "days": { "days": "giorni" }, + "deprecated": { + "deprecated": "" + }, "detached": { "detached": "disconnesso" }, @@ -8867,6 +8936,9 @@ "direct": { "direct": "diretto" }, + "discuss": { + "discuss": "" + }, "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": "dms è una shell desktop moderna e altamente personalizzabile con un design ispirato a Material 3.

È costruita con Quickshell, un framework QT6 per la creazione di shell desktop, e Go, un linguaggio di programmazione compilato e staticamente tipizzato." }, @@ -9026,6 +9098,9 @@ "this app": { "this app": "questa app" }, + "unmaintained": { + "unmaintained": "" + }, "until %1": { "until %1": "fino a %1" }, @@ -9047,6 +9122,9 @@ "v%1 by %2": { "v%1 by %2": "v%1 di %2" }, + "verified": { + "verified": "" + }, "wtype not available - install wtype for paste support": { "wtype not available - install wtype for paste support": "wtype non disponibile – installa wtype per il supporto alla funzione incolla" }, diff --git a/quickshell/translations/poexports/ja.json b/quickshell/translations/poexports/ja.json index 092e6bf5..f1ba788c 100644 --- a/quickshell/translations/poexports/ja.json +++ b/quickshell/translations/poexports/ja.json @@ -107,6 +107,9 @@ "%1 windows": { "%1 windows": "ウィンドウ %1 個" }, + "%1: %2": { + "%1: %2": "" + }, "%1m ago": { "%1m ago": "%1分前" }, @@ -1790,6 +1793,9 @@ "Connecting...": { "Connecting...": "接続中..." }, + "Connecting…": { + "Connecting…": "" + }, "Connection failed": { "Connection failed": "接続に失敗しました" }, @@ -1970,6 +1976,9 @@ "Creating...": { "Creating...": "作成中..." }, + "Credentials": { + "Credentials": "" + }, "Critical Battery": { "Critical Battery": "" }, @@ -2828,6 +2837,9 @@ "Enter PIN for ": { "Enter PIN for ": "PINを入力してください " }, + "Enter URI or text to share": { + "Enter URI or text to share": "" + }, "Enter URL or text to share": { "Enter URL or text to share": "共有する URL またはテキストを入力" }, @@ -3146,6 +3158,9 @@ "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": { "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": "'dms greeter status' の実行に失敗しました。DMS がインストールされ、dms が PATH にあることを確認してください。" }, + "Failed to save VPN credentials": { + "Failed to save VPN credentials": "" + }, "Failed to save audio config": { "Failed to save audio config": "オーディオ設定の保存に失敗しました" }, @@ -3158,6 +3173,9 @@ "Failed to save profile": { "Failed to save profile": "プロファイルの保存に失敗しました" }, + "Failed to send SMS": { + "Failed to send SMS": "" + }, "Failed to send clipboard": { "Failed to send clipboard": "クリップボードの送信に失敗しました" }, @@ -3503,6 +3521,9 @@ "Format Legend": { "Format Legend": "フォーマット凡例" }, + "Forward 10s": { + "Forward 10s": "" + }, "Frame": { "Frame": "フレーム" }, @@ -3818,6 +3839,9 @@ "Hide device": { "Hide device": "デバイスを非表示" }, + "Hide installed": { + "Hide installed": "" + }, "Hide notification content until expanded": { "Hide notification content until expanded": "展開するまで通知内容を非表示" }, @@ -4127,6 +4151,9 @@ "Installed": { "Installed": "インストール済み" }, + "Installed first": { + "Installed first": "" + }, "Installed: %1": { "Installed: %1": "インストール済み: %1" }, @@ -4952,6 +4979,9 @@ "Network Status": { "Network Status": "ネットワーク状態" }, + "Network Type": { + "Network Type": "" + }, "Network download and upload speed display": { "Network download and upload speed display": "ネットワークのダウンロードおよびアップロード速度を表示" }, @@ -5180,6 +5210,9 @@ "No human user accounts found.": { "No human user accounts found.": "" }, + "No images found": { + "No images found": "" + }, "No info items": { "No info items": "情報項目はありません" }, @@ -5888,6 +5921,9 @@ "Place the dock on the Wayland overlay layer": { "Place the dock on the Wayland overlay layer": "" }, + "Play": { + "Play": "" + }, "Play a video when the screen locks.": { "Play a video when the screen locks.": "画面がロックされたときに動画を再生します。" }, @@ -6101,6 +6137,9 @@ "Preview: %1": { "Preview: %1": "" }, + "Previous": { + "Previous": "" + }, "Primary": { "Primary": "プライマリー" }, @@ -6287,6 +6326,9 @@ "Recent Colors": { "Recent Colors": "最近の色" }, + "Recent Images": { + "Recent Images": "" + }, "Recently Used Apps": { "Recently Used Apps": "最近使用したアプリ" }, @@ -6509,6 +6551,9 @@ "Revert": { "Revert": "戻す" }, + "Rewind 10s": { + "Rewind 10s": "" + }, "Right": { "Right": "右" }, @@ -6596,6 +6641,9 @@ "SMS": { "SMS": "SMS" }, + "SMS sent successfully": { + "SMS sent successfully": "" + }, "Saturation": { "Saturation": "" }, @@ -6617,6 +6665,9 @@ "Save and switch between display configurations": { "Save and switch between display configurations": "ディスプレイ設定を保存して切り替える" }, + "Save credentials": { + "Save credentials": "" + }, "Save critical priority notifications to history": { "Save critical priority notifications to history": "最優先の通知を履歴に保存" }, @@ -7370,6 +7421,9 @@ "Signal": { "Signal": "Signal" }, + "Signal Strength": { + "Signal Strength": "" + }, "Signal:": { "Signal:": "Signal:" }, @@ -8123,6 +8177,9 @@ "Typography & Motion": { "Typography & Motion": "タイポグラフィとモーション" }, + "URI": { + "URI": "" + }, "Unavailable": { "Unavailable": "利用できません" }, @@ -8459,6 +8516,9 @@ "VPN configuration updated": { "VPN configuration updated": "VPN 設定を更新しました" }, + "VPN credentials saved": { + "VPN credentials saved": "" + }, "VPN deleted": { "VPN deleted": "VPN を削除しました" }, @@ -8552,6 +8612,9 @@ "Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": "音量、明るさ、その他のシステム OSD" }, + "Votes": { + "Votes": "" + }, "WPA/WPA2": { "WPA/WPA2": "WPA/WPA2" }, @@ -8846,12 +8909,18 @@ "brandon": { "brandon": "brandon" }, + "broken": { + "broken": "" + }, "by %1": { "by %1": "%1 による" }, "days": { "days": "日" }, + "deprecated": { + "deprecated": "" + }, "detached": { "detached": "切り離し済み" }, @@ -8867,6 +8936,9 @@ "direct": { "direct": "直接" }, + "discuss": { + "discuss": "" + }, "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": "dms は、Material 3 に着想を得たデザインを持つ、高度にカスタマイズ可能なモダンなデスクトップシェルです。

デスクトップシェルを構築するための QT6 フレームワークである Quickshell と、静的型付けのコンパイル言語である Go で構築されています。" }, @@ -9026,6 +9098,9 @@ "this app": { "this app": "このアプリ" }, + "unmaintained": { + "unmaintained": "" + }, "until %1": { "until %1": "%1まで" }, @@ -9047,6 +9122,9 @@ "v%1 by %2": { "v%1 by %2": "v%1 by %2" }, + "verified": { + "verified": "" + }, "wtype not available - install wtype for paste support": { "wtype not available - install wtype for paste support": "wtype は利用できません - 貼り付け対応には wtype をインストールしてください" }, diff --git a/quickshell/translations/poexports/nl.json b/quickshell/translations/poexports/nl.json index 966111a7..6e142864 100644 --- a/quickshell/translations/poexports/nl.json +++ b/quickshell/translations/poexports/nl.json @@ -107,6 +107,9 @@ "%1 windows": { "%1 windows": "%1 vensters" }, + "%1: %2": { + "%1: %2": "" + }, "%1m ago": { "%1m ago": "%1m geleden" }, @@ -1790,6 +1793,9 @@ "Connecting...": { "Connecting...": "Verbinden..." }, + "Connecting…": { + "Connecting…": "" + }, "Connection failed": { "Connection failed": "Verbinding mislukt" }, @@ -1970,6 +1976,9 @@ "Creating...": { "Creating...": "Aanmaken..." }, + "Credentials": { + "Credentials": "" + }, "Critical Battery": { "Critical Battery": "" }, @@ -2828,6 +2837,9 @@ "Enter PIN for ": { "Enter PIN for ": "Voer pincode in voor " }, + "Enter URI or text to share": { + "Enter URI or text to share": "" + }, "Enter URL or text to share": { "Enter URL or text to share": "Voer URL of tekst in om te delen" }, @@ -3146,6 +3158,9 @@ "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": { "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": "Uitvoeren van 'dms greeter status' mislukt. Zorg ervoor dat DMS is geïnstalleerd en dms in het PATH staat." }, + "Failed to save VPN credentials": { + "Failed to save VPN credentials": "" + }, "Failed to save audio config": { "Failed to save audio config": "Audio-configuratie opslaan mislukt" }, @@ -3158,6 +3173,9 @@ "Failed to save profile": { "Failed to save profile": "Profiel opslaan mislukt" }, + "Failed to send SMS": { + "Failed to send SMS": "" + }, "Failed to send clipboard": { "Failed to send clipboard": "Verzenden van klembord mislukt" }, @@ -3503,6 +3521,9 @@ "Format Legend": { "Format Legend": "Legenda voor notatie" }, + "Forward 10s": { + "Forward 10s": "" + }, "Frame": { "Frame": "Frame" }, @@ -3818,6 +3839,9 @@ "Hide device": { "Hide device": "Apparaat verbergen" }, + "Hide installed": { + "Hide installed": "" + }, "Hide notification content until expanded": { "Hide notification content until expanded": "Meldingsinhoud verbergen tot uitgevouwen" }, @@ -4127,6 +4151,9 @@ "Installed": { "Installed": "Geïnstalleerd" }, + "Installed first": { + "Installed first": "" + }, "Installed: %1": { "Installed: %1": "Geïnstalleerd: %1" }, @@ -4952,6 +4979,9 @@ "Network Status": { "Network Status": "Netwerkstatus" }, + "Network Type": { + "Network Type": "" + }, "Network download and upload speed display": { "Network download and upload speed display": "Weergave van download- en uploadsnelheid" }, @@ -5180,6 +5210,9 @@ "No human user accounts found.": { "No human user accounts found.": "Geen menselijke gebruikersaccounts gevonden." }, + "No images found": { + "No images found": "" + }, "No info items": { "No info items": "Geen info-items" }, @@ -5888,6 +5921,9 @@ "Place the dock on the Wayland overlay layer": { "Place the dock on the Wayland overlay layer": "Plaats het dock op de Wayland overlay-laag" }, + "Play": { + "Play": "" + }, "Play a video when the screen locks.": { "Play a video when the screen locks.": "Speel een video af wanneer het scherm vergrendelt." }, @@ -6101,6 +6137,9 @@ "Preview: %1": { "Preview: %1": "" }, + "Previous": { + "Previous": "" + }, "Primary": { "Primary": "Primair" }, @@ -6287,6 +6326,9 @@ "Recent Colors": { "Recent Colors": "Recente kleuren" }, + "Recent Images": { + "Recent Images": "" + }, "Recently Used Apps": { "Recently Used Apps": "Recent gebruikte apps" }, @@ -6509,6 +6551,9 @@ "Revert": { "Revert": "Terugdraaien" }, + "Rewind 10s": { + "Rewind 10s": "" + }, "Right": { "Right": "Rechts" }, @@ -6596,6 +6641,9 @@ "SMS": { "SMS": "Sms" }, + "SMS sent successfully": { + "SMS sent successfully": "" + }, "Saturation": { "Saturation": "Verzadiging" }, @@ -6617,6 +6665,9 @@ "Save and switch between display configurations": { "Save and switch between display configurations": "Opslaan en schakelen tussen beeldschermconfiguraties" }, + "Save credentials": { + "Save credentials": "" + }, "Save critical priority notifications to history": { "Save critical priority notifications to history": "Meldingen met kritieke prioriteit opslaan in geschiedenis" }, @@ -7370,6 +7421,9 @@ "Signal": { "Signal": "Signaal" }, + "Signal Strength": { + "Signal Strength": "" + }, "Signal:": { "Signal:": "Signaal:" }, @@ -8123,6 +8177,9 @@ "Typography & Motion": { "Typography & Motion": "Typografie & Beweging" }, + "URI": { + "URI": "" + }, "Unavailable": { "Unavailable": "Niet beschikbaar" }, @@ -8459,6 +8516,9 @@ "VPN configuration updated": { "VPN configuration updated": "VPN-configuratie bijgewerkt" }, + "VPN credentials saved": { + "VPN credentials saved": "" + }, "VPN deleted": { "VPN deleted": "VPN verwijderd" }, @@ -8552,6 +8612,9 @@ "Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": "Volume, helderheid en andere systeem-OSD's" }, + "Votes": { + "Votes": "" + }, "WPA/WPA2": { "WPA/WPA2": "WPA/WPA2" }, @@ -8846,12 +8909,18 @@ "brandon": { "brandon": "brandon" }, + "broken": { + "broken": "" + }, "by %1": { "by %1": "door %1" }, "days": { "days": "dagen" }, + "deprecated": { + "deprecated": "" + }, "detached": { "detached": "ontkoppeld" }, @@ -8867,6 +8936,9 @@ "direct": { "direct": "direct" }, + "discuss": { + "discuss": "" + }, "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": "dms is een zeer aanpasbare, moderne desktop-shell met een op Material 3 geïnspireerd ontwerp.

Het is gebouwd met Quickshell, een QT6-framework voor het bouwen van desktop-shells, en Go, een statisch getypeerde, gecompileerde programmeertaal." }, @@ -9026,6 +9098,9 @@ "this app": { "this app": "deze app" }, + "unmaintained": { + "unmaintained": "" + }, "until %1": { "until %1": "tot %1" }, @@ -9047,6 +9122,9 @@ "v%1 by %2": { "v%1 by %2": "v%1 door %2" }, + "verified": { + "verified": "" + }, "wtype not available - install wtype for paste support": { "wtype not available - install wtype for paste support": "wtype niet beschikbaar - installeer wtype voor plakondersteuning" }, diff --git a/quickshell/translations/poexports/pl.json b/quickshell/translations/poexports/pl.json index 76d79f80..d43f02ae 100644 --- a/quickshell/translations/poexports/pl.json +++ b/quickshell/translations/poexports/pl.json @@ -107,6 +107,9 @@ "%1 windows": { "%1 windows": "" }, + "%1: %2": { + "%1: %2": "" + }, "%1m ago": { "%1m ago": "%1m temu" }, @@ -1790,6 +1793,9 @@ "Connecting...": { "Connecting...": "Łączenie..." }, + "Connecting…": { + "Connecting…": "" + }, "Connection failed": { "Connection failed": "" }, @@ -1970,6 +1976,9 @@ "Creating...": { "Creating...": "Tworzenie..." }, + "Credentials": { + "Credentials": "" + }, "Critical Battery": { "Critical Battery": "" }, @@ -2828,6 +2837,9 @@ "Enter PIN for ": { "Enter PIN for ": "Wprowadź PIN dla " }, + "Enter URI or text to share": { + "Enter URI or text to share": "" + }, "Enter URL or text to share": { "Enter URL or text to share": "Wprowadź URL lub tekst, aby go udostępnić" }, @@ -3146,6 +3158,9 @@ "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": { "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": "" }, + "Failed to save VPN credentials": { + "Failed to save VPN credentials": "" + }, "Failed to save audio config": { "Failed to save audio config": "" }, @@ -3158,6 +3173,9 @@ "Failed to save profile": { "Failed to save profile": "" }, + "Failed to send SMS": { + "Failed to send SMS": "" + }, "Failed to send clipboard": { "Failed to send clipboard": "Nie udało się wysłać zawartości schowka" }, @@ -3503,6 +3521,9 @@ "Format Legend": { "Format Legend": "Legenda formatowania" }, + "Forward 10s": { + "Forward 10s": "" + }, "Frame": { "Frame": "" }, @@ -3818,6 +3839,9 @@ "Hide device": { "Hide device": "" }, + "Hide installed": { + "Hide installed": "" + }, "Hide notification content until expanded": { "Hide notification content until expanded": "" }, @@ -4127,6 +4151,9 @@ "Installed": { "Installed": "Zainstalowano" }, + "Installed first": { + "Installed first": "" + }, "Installed: %1": { "Installed: %1": "Zainstalowano: %1" }, @@ -4952,6 +4979,9 @@ "Network Status": { "Network Status": "Stan sieci" }, + "Network Type": { + "Network Type": "" + }, "Network download and upload speed display": { "Network download and upload speed display": "Wyświetlanie prędkości pobierania i wysyłania sieci" }, @@ -5180,6 +5210,9 @@ "No human user accounts found.": { "No human user accounts found.": "" }, + "No images found": { + "No images found": "" + }, "No info items": { "No info items": "" }, @@ -5888,6 +5921,9 @@ "Place the dock on the Wayland overlay layer": { "Place the dock on the Wayland overlay layer": "" }, + "Play": { + "Play": "" + }, "Play a video when the screen locks.": { "Play a video when the screen locks.": "" }, @@ -6101,6 +6137,9 @@ "Preview: %1": { "Preview: %1": "" }, + "Previous": { + "Previous": "" + }, "Primary": { "Primary": "Główny" }, @@ -6287,6 +6326,9 @@ "Recent Colors": { "Recent Colors": "Ostatnie kolory" }, + "Recent Images": { + "Recent Images": "" + }, "Recently Used Apps": { "Recently Used Apps": "Ostatnio używane aplikacje" }, @@ -6509,6 +6551,9 @@ "Revert": { "Revert": "Odwracać" }, + "Rewind 10s": { + "Rewind 10s": "" + }, "Right": { "Right": "Prawo" }, @@ -6596,6 +6641,9 @@ "SMS": { "SMS": "SMS" }, + "SMS sent successfully": { + "SMS sent successfully": "" + }, "Saturation": { "Saturation": "" }, @@ -6617,6 +6665,9 @@ "Save and switch between display configurations": { "Save and switch between display configurations": "" }, + "Save credentials": { + "Save credentials": "" + }, "Save critical priority notifications to history": { "Save critical priority notifications to history": "" }, @@ -7370,6 +7421,9 @@ "Signal": { "Signal": "Sygnał" }, + "Signal Strength": { + "Signal Strength": "" + }, "Signal:": { "Signal:": "Sygnał:" }, @@ -8123,6 +8177,9 @@ "Typography & Motion": { "Typography & Motion": "Czcionki i Animacje" }, + "URI": { + "URI": "" + }, "Unavailable": { "Unavailable": "Niedostępny" }, @@ -8459,6 +8516,9 @@ "VPN configuration updated": { "VPN configuration updated": "Konfiguracja VPN zaktualizowana" }, + "VPN credentials saved": { + "VPN credentials saved": "" + }, "VPN deleted": { "VPN deleted": "VPN usunięty" }, @@ -8552,6 +8612,9 @@ "Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": "Głośność, jasność i inne systemowe menu ekranowe" }, + "Votes": { + "Votes": "" + }, "WPA/WPA2": { "WPA/WPA2": "WPA/WPA2" }, @@ -8846,12 +8909,18 @@ "brandon": { "brandon": "" }, + "broken": { + "broken": "" + }, "by %1": { "by %1": "od %1" }, "days": { "days": "dni" }, + "deprecated": { + "deprecated": "" + }, "detached": { "detached": "" }, @@ -8867,6 +8936,9 @@ "direct": { "direct": "" }, + "discuss": { + "discuss": "" + }, "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": "" }, @@ -9026,6 +9098,9 @@ "this app": { "this app": "" }, + "unmaintained": { + "unmaintained": "" + }, "until %1": { "until %1": "" }, @@ -9047,6 +9122,9 @@ "v%1 by %2": { "v%1 by %2": "" }, + "verified": { + "verified": "" + }, "wtype not available - install wtype for paste support": { "wtype not available - install wtype for paste support": "wtype niedostępny - zainstaluj wtype dla wsparcia wklejania" }, diff --git a/quickshell/translations/poexports/pt.json b/quickshell/translations/poexports/pt.json index 1349dfb7..9d8759e9 100644 --- a/quickshell/translations/poexports/pt.json +++ b/quickshell/translations/poexports/pt.json @@ -107,6 +107,9 @@ "%1 windows": { "%1 windows": "" }, + "%1: %2": { + "%1: %2": "" + }, "%1m ago": { "%1m ago": "%1m atrás" }, @@ -1790,6 +1793,9 @@ "Connecting...": { "Connecting...": "Conectando..." }, + "Connecting…": { + "Connecting…": "" + }, "Connection failed": { "Connection failed": "" }, @@ -1970,6 +1976,9 @@ "Creating...": { "Creating...": "Criando..." }, + "Credentials": { + "Credentials": "" + }, "Critical Battery": { "Critical Battery": "" }, @@ -2828,6 +2837,9 @@ "Enter PIN for ": { "Enter PIN for ": "Entre código PIN para " }, + "Enter URI or text to share": { + "Enter URI or text to share": "" + }, "Enter URL or text to share": { "Enter URL or text to share": "Digite URL ou texto para compartilhar" }, @@ -3146,6 +3158,9 @@ "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": { "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": "" }, + "Failed to save VPN credentials": { + "Failed to save VPN credentials": "" + }, "Failed to save audio config": { "Failed to save audio config": "Falha ao salvar a configuração de áudio" }, @@ -3158,6 +3173,9 @@ "Failed to save profile": { "Failed to save profile": "" }, + "Failed to send SMS": { + "Failed to send SMS": "" + }, "Failed to send clipboard": { "Failed to send clipboard": "Falha ao enviar área de transferência" }, @@ -3503,6 +3521,9 @@ "Format Legend": { "Format Legend": "Formatar Legenda" }, + "Forward 10s": { + "Forward 10s": "" + }, "Frame": { "Frame": "" }, @@ -3818,6 +3839,9 @@ "Hide device": { "Hide device": "Ocultar dispositivo" }, + "Hide installed": { + "Hide installed": "" + }, "Hide notification content until expanded": { "Hide notification content until expanded": "Ocultar conteúdo da notificação até expandir" }, @@ -4127,6 +4151,9 @@ "Installed": { "Installed": "Instalado" }, + "Installed first": { + "Installed first": "" + }, "Installed: %1": { "Installed: %1": "Instalado: %1" }, @@ -4952,6 +4979,9 @@ "Network Status": { "Network Status": "Status da Rede" }, + "Network Type": { + "Network Type": "" + }, "Network download and upload speed display": { "Network download and upload speed display": "Monitor de velocidades de download e upload da rede" }, @@ -5180,6 +5210,9 @@ "No human user accounts found.": { "No human user accounts found.": "" }, + "No images found": { + "No images found": "" + }, "No info items": { "No info items": "Nenhum item de informação" }, @@ -5888,6 +5921,9 @@ "Place the dock on the Wayland overlay layer": { "Place the dock on the Wayland overlay layer": "" }, + "Play": { + "Play": "" + }, "Play a video when the screen locks.": { "Play a video when the screen locks.": "" }, @@ -6101,6 +6137,9 @@ "Preview: %1": { "Preview: %1": "" }, + "Previous": { + "Previous": "" + }, "Primary": { "Primary": "Primário" }, @@ -6287,6 +6326,9 @@ "Recent Colors": { "Recent Colors": "Cores Recentes" }, + "Recent Images": { + "Recent Images": "" + }, "Recently Used Apps": { "Recently Used Apps": "Apps Usados Recentemente" }, @@ -6509,6 +6551,9 @@ "Revert": { "Revert": "Reverter" }, + "Rewind 10s": { + "Rewind 10s": "" + }, "Right": { "Right": "Direita" }, @@ -6596,6 +6641,9 @@ "SMS": { "SMS": "SMS" }, + "SMS sent successfully": { + "SMS sent successfully": "" + }, "Saturation": { "Saturation": "" }, @@ -6617,6 +6665,9 @@ "Save and switch between display configurations": { "Save and switch between display configurations": "Salvar e alternar entre configurações de exibição" }, + "Save credentials": { + "Save credentials": "" + }, "Save critical priority notifications to history": { "Save critical priority notifications to history": "Salvar notificações de prioridade crítica no histórico" }, @@ -7370,6 +7421,9 @@ "Signal": { "Signal": "Sinal" }, + "Signal Strength": { + "Signal Strength": "" + }, "Signal:": { "Signal:": "Sinal:" }, @@ -8123,6 +8177,9 @@ "Typography & Motion": { "Typography & Motion": "Tipografia & Movimento" }, + "URI": { + "URI": "" + }, "Unavailable": { "Unavailable": "Indisponível" }, @@ -8459,6 +8516,9 @@ "VPN configuration updated": { "VPN configuration updated": "Configuração da VPN atualizada" }, + "VPN credentials saved": { + "VPN credentials saved": "" + }, "VPN deleted": { "VPN deleted": "VPN excluída" }, @@ -8552,6 +8612,9 @@ "Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": "Volume, brilho, e outros OSDs do sistema" }, + "Votes": { + "Votes": "" + }, "WPA/WPA2": { "WPA/WPA2": "WPA/WPA2" }, @@ -8846,12 +8909,18 @@ "brandon": { "brandon": "brandon" }, + "broken": { + "broken": "" + }, "by %1": { "by %1": "por %1" }, "days": { "days": "dias" }, + "deprecated": { + "deprecated": "" + }, "detached": { "detached": "" }, @@ -8867,6 +8936,9 @@ "direct": { "direct": "" }, + "discuss": { + "discuss": "" + }, "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": "" }, @@ -9026,6 +9098,9 @@ "this app": { "this app": "este aplicativo" }, + "unmaintained": { + "unmaintained": "" + }, "until %1": { "until %1": "" }, @@ -9047,6 +9122,9 @@ "v%1 by %2": { "v%1 by %2": "v%1 por %2" }, + "verified": { + "verified": "" + }, "wtype not available - install wtype for paste support": { "wtype not available - install wtype for paste support": "wtype não disponível - installe wtype para suporte de colagem" }, diff --git a/quickshell/translations/poexports/ru.json b/quickshell/translations/poexports/ru.json index f1cfb070..5ba6413a 100644 --- a/quickshell/translations/poexports/ru.json +++ b/quickshell/translations/poexports/ru.json @@ -107,6 +107,9 @@ "%1 windows": { "%1 windows": "%1 окон" }, + "%1: %2": { + "%1: %2": "" + }, "%1m ago": { "%1m ago": "%1 мин. назад" }, @@ -1790,6 +1793,9 @@ "Connecting...": { "Connecting...": "Подключение..." }, + "Connecting…": { + "Connecting…": "" + }, "Connection failed": { "Connection failed": "Сбой подключения" }, @@ -1970,6 +1976,9 @@ "Creating...": { "Creating...": "Создание..." }, + "Credentials": { + "Credentials": "" + }, "Critical Battery": { "Critical Battery": "" }, @@ -2828,6 +2837,9 @@ "Enter PIN for ": { "Enter PIN for ": "Введите PIN для " }, + "Enter URI or text to share": { + "Enter URI or text to share": "" + }, "Enter URL or text to share": { "Enter URL or text to share": "Введите URL или текст для отправки" }, @@ -3146,6 +3158,9 @@ "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": { "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": "Не удалось выполнить 'dms greeter status'. Убедитесь, что DMS установлен и dms находится в PATH." }, + "Failed to save VPN credentials": { + "Failed to save VPN credentials": "" + }, "Failed to save audio config": { "Failed to save audio config": "Не удалось сохранить аудиоконфиг" }, @@ -3158,6 +3173,9 @@ "Failed to save profile": { "Failed to save profile": "Не удалось сохранить профиль" }, + "Failed to send SMS": { + "Failed to send SMS": "" + }, "Failed to send clipboard": { "Failed to send clipboard": "Не удалось отправить буфер обмена" }, @@ -3503,6 +3521,9 @@ "Format Legend": { "Format Legend": "Условные Обозначения" }, + "Forward 10s": { + "Forward 10s": "" + }, "Frame": { "Frame": "Рамка" }, @@ -3818,6 +3839,9 @@ "Hide device": { "Hide device": "Скрыть устройство" }, + "Hide installed": { + "Hide installed": "" + }, "Hide notification content until expanded": { "Hide notification content until expanded": "Скрывать содержимое уведомления до развёртывания" }, @@ -4127,6 +4151,9 @@ "Installed": { "Installed": "Установлено" }, + "Installed first": { + "Installed first": "" + }, "Installed: %1": { "Installed: %1": "Установлено: %1" }, @@ -4952,6 +4979,9 @@ "Network Status": { "Network Status": "Статус сети" }, + "Network Type": { + "Network Type": "" + }, "Network download and upload speed display": { "Network download and upload speed display": "Отображение скорости скачивания и загрузки данных по сети" }, @@ -5180,6 +5210,9 @@ "No human user accounts found.": { "No human user accounts found.": "Учётные записи пользователей не найдены." }, + "No images found": { + "No images found": "" + }, "No info items": { "No info items": "Нет предупреждений" }, @@ -5888,6 +5921,9 @@ "Place the dock on the Wayland overlay layer": { "Place the dock on the Wayland overlay layer": "Разместить док на слое оверлея Wayland" }, + "Play": { + "Play": "" + }, "Play a video when the screen locks.": { "Play a video when the screen locks.": "Воспроизводить видео при блокировке экрана." }, @@ -6101,6 +6137,9 @@ "Preview: %1": { "Preview: %1": "" }, + "Previous": { + "Previous": "" + }, "Primary": { "Primary": "Основной" }, @@ -6287,6 +6326,9 @@ "Recent Colors": { "Recent Colors": "Недавние Цвета" }, + "Recent Images": { + "Recent Images": "" + }, "Recently Used Apps": { "Recently Used Apps": "Недавно Использованные Приложения" }, @@ -6509,6 +6551,9 @@ "Revert": { "Revert": "Инвертировать" }, + "Rewind 10s": { + "Rewind 10s": "" + }, "Right": { "Right": "Справа" }, @@ -6596,6 +6641,9 @@ "SMS": { "SMS": "SMS" }, + "SMS sent successfully": { + "SMS sent successfully": "" + }, "Saturation": { "Saturation": "Насыщенность" }, @@ -6617,6 +6665,9 @@ "Save and switch between display configurations": { "Save and switch between display configurations": "Сохранить и переключаться между конфигурациями дисплеев" }, + "Save credentials": { + "Save credentials": "" + }, "Save critical priority notifications to history": { "Save critical priority notifications to history": "Сохранять уведомления обычного приоритета в историю" }, @@ -7370,6 +7421,9 @@ "Signal": { "Signal": "Сигнал" }, + "Signal Strength": { + "Signal Strength": "" + }, "Signal:": { "Signal:": "Сигнал:" }, @@ -8123,6 +8177,9 @@ "Typography & Motion": { "Typography & Motion": "Типография и движение" }, + "URI": { + "URI": "" + }, "Unavailable": { "Unavailable": "Недоступно" }, @@ -8459,6 +8516,9 @@ "VPN configuration updated": { "VPN configuration updated": "VPN конфигурации updated" }, + "VPN credentials saved": { + "VPN credentials saved": "" + }, "VPN deleted": { "VPN deleted": "VPN удалён" }, @@ -8552,6 +8612,9 @@ "Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": "Громкость, яркость и другие системные OSD" }, + "Votes": { + "Votes": "" + }, "WPA/WPA2": { "WPA/WPA2": "WPA/WPA2" }, @@ -8846,12 +8909,18 @@ "brandon": { "brandon": "brandon" }, + "broken": { + "broken": "" + }, "by %1": { "by %1": "на %1" }, "days": { "days": "дней" }, + "deprecated": { + "deprecated": "" + }, "detached": { "detached": "Отключён" }, @@ -8867,6 +8936,9 @@ "direct": { "direct": "прямое" }, + "discuss": { + "discuss": "" + }, "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language." }, @@ -9026,6 +9098,9 @@ "this app": { "this app": "это приложение" }, + "unmaintained": { + "unmaintained": "" + }, "until %1": { "until %1": "до %1" }, @@ -9047,6 +9122,9 @@ "v%1 by %2": { "v%1 by %2": "v%1 от %2" }, + "verified": { + "verified": "" + }, "wtype not available - install wtype for paste support": { "wtype not available - install wtype for paste support": "wtype недоступен - установите wtype для поддержки вставки" }, diff --git a/quickshell/translations/poexports/sv.json b/quickshell/translations/poexports/sv.json index 701f9748..a4369539 100644 --- a/quickshell/translations/poexports/sv.json +++ b/quickshell/translations/poexports/sv.json @@ -107,6 +107,9 @@ "%1 windows": { "%1 windows": "%1 fönster" }, + "%1: %2": { + "%1: %2": "" + }, "%1m ago": { "%1m ago": "för %1 min sedan" }, @@ -1790,6 +1793,9 @@ "Connecting...": { "Connecting...": "Ansluter..." }, + "Connecting…": { + "Connecting…": "" + }, "Connection failed": { "Connection failed": "Anslutning misslyckades" }, @@ -1970,6 +1976,9 @@ "Creating...": { "Creating...": "Skapar..." }, + "Credentials": { + "Credentials": "" + }, "Critical Battery": { "Critical Battery": "" }, @@ -2828,6 +2837,9 @@ "Enter PIN for ": { "Enter PIN for ": "Ange PIN för " }, + "Enter URI or text to share": { + "Enter URI or text to share": "" + }, "Enter URL or text to share": { "Enter URL or text to share": "Ange URL eller text att dela" }, @@ -3146,6 +3158,9 @@ "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": { "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": "Misslyckades med att köra 'dms greeter status'. Se till att DMS är installerat och att dms finns i PATH." }, + "Failed to save VPN credentials": { + "Failed to save VPN credentials": "" + }, "Failed to save audio config": { "Failed to save audio config": "Misslyckades med att spara ljudkonfiguration" }, @@ -3158,6 +3173,9 @@ "Failed to save profile": { "Failed to save profile": "" }, + "Failed to send SMS": { + "Failed to send SMS": "" + }, "Failed to send clipboard": { "Failed to send clipboard": "Misslyckades med att skicka urklipp" }, @@ -3503,6 +3521,9 @@ "Format Legend": { "Format Legend": "Formateringsguide" }, + "Forward 10s": { + "Forward 10s": "" + }, "Frame": { "Frame": "" }, @@ -3818,6 +3839,9 @@ "Hide device": { "Hide device": "Dölj enhet" }, + "Hide installed": { + "Hide installed": "" + }, "Hide notification content until expanded": { "Hide notification content until expanded": "Dölj notisinnehåll tills det expanderas" }, @@ -4127,6 +4151,9 @@ "Installed": { "Installed": "Installerat" }, + "Installed first": { + "Installed first": "" + }, "Installed: %1": { "Installed: %1": "Installerat: %1" }, @@ -4952,6 +4979,9 @@ "Network Status": { "Network Status": "Nätverksstatus" }, + "Network Type": { + "Network Type": "" + }, "Network download and upload speed display": { "Network download and upload speed display": "Visa upp- och nedladdningshastighet" }, @@ -5180,6 +5210,9 @@ "No human user accounts found.": { "No human user accounts found.": "" }, + "No images found": { + "No images found": "" + }, "No info items": { "No info items": "Inga informationsobjekt" }, @@ -5888,6 +5921,9 @@ "Place the dock on the Wayland overlay layer": { "Place the dock on the Wayland overlay layer": "" }, + "Play": { + "Play": "" + }, "Play a video when the screen locks.": { "Play a video when the screen locks.": "Spela upp en video när skärmen låses." }, @@ -6101,6 +6137,9 @@ "Preview: %1": { "Preview: %1": "" }, + "Previous": { + "Previous": "" + }, "Primary": { "Primary": "Primär" }, @@ -6287,6 +6326,9 @@ "Recent Colors": { "Recent Colors": "Nyligen använda färger" }, + "Recent Images": { + "Recent Images": "" + }, "Recently Used Apps": { "Recently Used Apps": "Nyligen använda appar" }, @@ -6509,6 +6551,9 @@ "Revert": { "Revert": "Återställ" }, + "Rewind 10s": { + "Rewind 10s": "" + }, "Right": { "Right": "Höger" }, @@ -6596,6 +6641,9 @@ "SMS": { "SMS": "SMS" }, + "SMS sent successfully": { + "SMS sent successfully": "" + }, "Saturation": { "Saturation": "" }, @@ -6617,6 +6665,9 @@ "Save and switch between display configurations": { "Save and switch between display configurations": "Spara och växla mellan bildskärmskonfigurationer" }, + "Save credentials": { + "Save credentials": "" + }, "Save critical priority notifications to history": { "Save critical priority notifications to history": "Spara notiser med kritisk prioritet i historiken" }, @@ -7370,6 +7421,9 @@ "Signal": { "Signal": "Signal" }, + "Signal Strength": { + "Signal Strength": "" + }, "Signal:": { "Signal:": "Signal:" }, @@ -8123,6 +8177,9 @@ "Typography & Motion": { "Typography & Motion": "Typografi & rörelse" }, + "URI": { + "URI": "" + }, "Unavailable": { "Unavailable": "Otillgänglig" }, @@ -8459,6 +8516,9 @@ "VPN configuration updated": { "VPN configuration updated": "VPN-konfiguration uppdaterad" }, + "VPN credentials saved": { + "VPN credentials saved": "" + }, "VPN deleted": { "VPN deleted": "VPN raderat" }, @@ -8552,6 +8612,9 @@ "Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": "Volym, ljusstyrka och andra systemskärmvisningar" }, + "Votes": { + "Votes": "" + }, "WPA/WPA2": { "WPA/WPA2": "WPA/WPA2" }, @@ -8846,12 +8909,18 @@ "brandon": { "brandon": "brandon" }, + "broken": { + "broken": "" + }, "by %1": { "by %1": "av %1" }, "days": { "days": "dagar" }, + "deprecated": { + "deprecated": "" + }, "detached": { "detached": "frånkopplad" }, @@ -8867,6 +8936,9 @@ "direct": { "direct": "" }, + "discuss": { + "discuss": "" + }, "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": "dms är ett mycket anpassningsbart, modernt skrivbordsskal med en Material 3-inspirerad design.

Det är byggt med Quickshell, ett QT6-ramverk för att bygga skrivbordsskal, och Go, ett statiskt typat kompilerat programmeringsspråk." }, @@ -9026,6 +9098,9 @@ "this app": { "this app": "den här appen" }, + "unmaintained": { + "unmaintained": "" + }, "until %1": { "until %1": "" }, @@ -9047,6 +9122,9 @@ "v%1 by %2": { "v%1 by %2": "v%1 av %2" }, + "verified": { + "verified": "" + }, "wtype not available - install wtype for paste support": { "wtype not available - install wtype for paste support": "wtype är inte tillgängligt – installera wtype för inklistrningsstöd" }, diff --git a/quickshell/translations/poexports/tr.json b/quickshell/translations/poexports/tr.json index b875bc3a..dcd2c52d 100644 --- a/quickshell/translations/poexports/tr.json +++ b/quickshell/translations/poexports/tr.json @@ -107,6 +107,9 @@ "%1 windows": { "%1 windows": "" }, + "%1: %2": { + "%1: %2": "" + }, "%1m ago": { "%1m ago": "%1dk önce" }, @@ -1790,6 +1793,9 @@ "Connecting...": { "Connecting...": "Bağlanıyor..." }, + "Connecting…": { + "Connecting…": "" + }, "Connection failed": { "Connection failed": "" }, @@ -1970,6 +1976,9 @@ "Creating...": { "Creating...": "Oluşturuluyor..." }, + "Credentials": { + "Credentials": "" + }, "Critical Battery": { "Critical Battery": "" }, @@ -2828,6 +2837,9 @@ "Enter PIN for ": { "Enter PIN for ": "Şunun için PIN gir: " }, + "Enter URI or text to share": { + "Enter URI or text to share": "" + }, "Enter URL or text to share": { "Enter URL or text to share": "" }, @@ -3146,6 +3158,9 @@ "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": { "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": "" }, + "Failed to save VPN credentials": { + "Failed to save VPN credentials": "" + }, "Failed to save audio config": { "Failed to save audio config": "" }, @@ -3158,6 +3173,9 @@ "Failed to save profile": { "Failed to save profile": "" }, + "Failed to send SMS": { + "Failed to send SMS": "" + }, "Failed to send clipboard": { "Failed to send clipboard": "" }, @@ -3503,6 +3521,9 @@ "Format Legend": { "Format Legend": "Biçim Açıklaması" }, + "Forward 10s": { + "Forward 10s": "" + }, "Frame": { "Frame": "" }, @@ -3818,6 +3839,9 @@ "Hide device": { "Hide device": "" }, + "Hide installed": { + "Hide installed": "" + }, "Hide notification content until expanded": { "Hide notification content until expanded": "" }, @@ -4127,6 +4151,9 @@ "Installed": { "Installed": "Yüklendi" }, + "Installed first": { + "Installed first": "" + }, "Installed: %1": { "Installed: %1": "Yüklendi: %1" }, @@ -4952,6 +4979,9 @@ "Network Status": { "Network Status": "Ağ Durumu" }, + "Network Type": { + "Network Type": "" + }, "Network download and upload speed display": { "Network download and upload speed display": "Ağ indirme ve yükleme hız gösterimi" }, @@ -5180,6 +5210,9 @@ "No human user accounts found.": { "No human user accounts found.": "" }, + "No images found": { + "No images found": "" + }, "No info items": { "No info items": "" }, @@ -5888,6 +5921,9 @@ "Place the dock on the Wayland overlay layer": { "Place the dock on the Wayland overlay layer": "" }, + "Play": { + "Play": "" + }, "Play a video when the screen locks.": { "Play a video when the screen locks.": "" }, @@ -6101,6 +6137,9 @@ "Preview: %1": { "Preview: %1": "" }, + "Previous": { + "Previous": "" + }, "Primary": { "Primary": "Birincil" }, @@ -6287,6 +6326,9 @@ "Recent Colors": { "Recent Colors": "Son Renkler" }, + "Recent Images": { + "Recent Images": "" + }, "Recently Used Apps": { "Recently Used Apps": "Son Kullanılan Uygulamalar" }, @@ -6509,6 +6551,9 @@ "Revert": { "Revert": "Geri Al" }, + "Rewind 10s": { + "Rewind 10s": "" + }, "Right": { "Right": "Sağ" }, @@ -6596,6 +6641,9 @@ "SMS": { "SMS": "" }, + "SMS sent successfully": { + "SMS sent successfully": "" + }, "Saturation": { "Saturation": "" }, @@ -6617,6 +6665,9 @@ "Save and switch between display configurations": { "Save and switch between display configurations": "" }, + "Save credentials": { + "Save credentials": "" + }, "Save critical priority notifications to history": { "Save critical priority notifications to history": "" }, @@ -7370,6 +7421,9 @@ "Signal": { "Signal": "Sinyal" }, + "Signal Strength": { + "Signal Strength": "" + }, "Signal:": { "Signal:": "Sinyal:" }, @@ -8123,6 +8177,9 @@ "Typography & Motion": { "Typography & Motion": "Tipografi & Hareket" }, + "URI": { + "URI": "" + }, "Unavailable": { "Unavailable": "Mevcut Değil" }, @@ -8459,6 +8516,9 @@ "VPN configuration updated": { "VPN configuration updated": "VPN ayarı güncellendi" }, + "VPN credentials saved": { + "VPN credentials saved": "" + }, "VPN deleted": { "VPN deleted": "VPN silindi" }, @@ -8552,6 +8612,9 @@ "Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": "Ses, parlaklık ve diğer sistem ekran üstü gösterimleri" }, + "Votes": { + "Votes": "" + }, "WPA/WPA2": { "WPA/WPA2": "WPA/WPA2" }, @@ -8846,12 +8909,18 @@ "brandon": { "brandon": "" }, + "broken": { + "broken": "" + }, "by %1": { "by %1": "%1 tarafından" }, "days": { "days": "gün" }, + "deprecated": { + "deprecated": "" + }, "detached": { "detached": "" }, @@ -8867,6 +8936,9 @@ "direct": { "direct": "" }, + "discuss": { + "discuss": "" + }, "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": "" }, @@ -9026,6 +9098,9 @@ "this app": { "this app": "" }, + "unmaintained": { + "unmaintained": "" + }, "until %1": { "until %1": "" }, @@ -9047,6 +9122,9 @@ "v%1 by %2": { "v%1 by %2": "" }, + "verified": { + "verified": "" + }, "wtype not available - install wtype for paste support": { "wtype not available - install wtype for paste support": "wtype mevcut değil - yapıştırma desteği için wtype'ı yükleyin" }, diff --git a/quickshell/translations/poexports/vi.json b/quickshell/translations/poexports/vi.json index 78eec26e..ea7702c6 100644 --- a/quickshell/translations/poexports/vi.json +++ b/quickshell/translations/poexports/vi.json @@ -107,6 +107,9 @@ "%1 windows": { "%1 windows": "%1 cửa sổ" }, + "%1: %2": { + "%1: %2": "" + }, "%1m ago": { "%1m ago": "%1 phút trước" }, @@ -1790,6 +1793,9 @@ "Connecting...": { "Connecting...": "Đang kết nối..." }, + "Connecting…": { + "Connecting…": "" + }, "Connection failed": { "Connection failed": "Kết nối thất bại" }, @@ -1970,6 +1976,9 @@ "Creating...": { "Creating...": "Đang tạo..." }, + "Credentials": { + "Credentials": "" + }, "Critical Battery": { "Critical Battery": "" }, @@ -2828,6 +2837,9 @@ "Enter PIN for ": { "Enter PIN for ": "Nhập PIN cho " }, + "Enter URI or text to share": { + "Enter URI or text to share": "" + }, "Enter URL or text to share": { "Enter URL or text to share": "Nhập URL hoặc văn bản để chia sẻ" }, @@ -3146,6 +3158,9 @@ "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": { "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": "Chạy 'dms greeter status' thất bại. Đảm bảo DMS đã được cài đặt và dms có trong PATH." }, + "Failed to save VPN credentials": { + "Failed to save VPN credentials": "" + }, "Failed to save audio config": { "Failed to save audio config": "Lưu cấu hình âm thanh thất bại" }, @@ -3158,6 +3173,9 @@ "Failed to save profile": { "Failed to save profile": "Lưu cấu hình thất bại" }, + "Failed to send SMS": { + "Failed to send SMS": "" + }, "Failed to send clipboard": { "Failed to send clipboard": "Gửi bảng nhớ tạm thất bại" }, @@ -3503,6 +3521,9 @@ "Format Legend": { "Format Legend": "Chú thích định dạng" }, + "Forward 10s": { + "Forward 10s": "" + }, "Frame": { "Frame": "Khung" }, @@ -3818,6 +3839,9 @@ "Hide device": { "Hide device": "Ẩn thiết bị" }, + "Hide installed": { + "Hide installed": "" + }, "Hide notification content until expanded": { "Hide notification content until expanded": "Ẩn nội dung thông báo cho đến khi được mở rộng" }, @@ -4127,6 +4151,9 @@ "Installed": { "Installed": "Đã cài đặt" }, + "Installed first": { + "Installed first": "" + }, "Installed: %1": { "Installed: %1": "Đã cài đặt: %1" }, @@ -4952,6 +4979,9 @@ "Network Status": { "Network Status": "Trạng thái mạng" }, + "Network Type": { + "Network Type": "" + }, "Network download and upload speed display": { "Network download and upload speed display": "Hiển thị tốc độ mạng (tải lên & tải xuống)" }, @@ -5180,6 +5210,9 @@ "No human user accounts found.": { "No human user accounts found.": "Không tìm thấy tài khoản người dùng người thật nào." }, + "No images found": { + "No images found": "" + }, "No info items": { "No info items": "Không có mục thông tin nào" }, @@ -5888,6 +5921,9 @@ "Place the dock on the Wayland overlay layer": { "Place the dock on the Wayland overlay layer": "Đặt thanh dock trên lớp phủ Wayland" }, + "Play": { + "Play": "" + }, "Play a video when the screen locks.": { "Play a video when the screen locks.": "Phát một video khi màn hình khóa." }, @@ -6101,6 +6137,9 @@ "Preview: %1": { "Preview: %1": "" }, + "Previous": { + "Previous": "" + }, "Primary": { "Primary": "Chính" }, @@ -6287,6 +6326,9 @@ "Recent Colors": { "Recent Colors": "Màu gần đây" }, + "Recent Images": { + "Recent Images": "" + }, "Recently Used Apps": { "Recently Used Apps": "Ứng dụng đã dùng gần đây" }, @@ -6509,6 +6551,9 @@ "Revert": { "Revert": "Hoàn tác" }, + "Rewind 10s": { + "Rewind 10s": "" + }, "Right": { "Right": "Phải" }, @@ -6596,6 +6641,9 @@ "SMS": { "SMS": "SMS" }, + "SMS sent successfully": { + "SMS sent successfully": "" + }, "Saturation": { "Saturation": "Độ bão hòa" }, @@ -6617,6 +6665,9 @@ "Save and switch between display configurations": { "Save and switch between display configurations": "Lưu và chuyển đổi giữa các cấu hình hiển thị" }, + "Save credentials": { + "Save credentials": "" + }, "Save critical priority notifications to history": { "Save critical priority notifications to history": "Lưu thông báo ưu tiên khẩn cấp vào lịch sử" }, @@ -7370,6 +7421,9 @@ "Signal": { "Signal": "Tín hiệu" }, + "Signal Strength": { + "Signal Strength": "" + }, "Signal:": { "Signal:": "Tín hiệu:" }, @@ -8123,6 +8177,9 @@ "Typography & Motion": { "Typography & Motion": "Kiểu chữ & Chuyển động" }, + "URI": { + "URI": "" + }, "Unavailable": { "Unavailable": "Không khả dụng" }, @@ -8459,6 +8516,9 @@ "VPN configuration updated": { "VPN configuration updated": "Đã cập nhật cấu hình VPN" }, + "VPN credentials saved": { + "VPN credentials saved": "" + }, "VPN deleted": { "VPN deleted": "Đã xóa VPN" }, @@ -8552,6 +8612,9 @@ "Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": "Âm lượng, độ sáng và OSD hệ thống khác" }, + "Votes": { + "Votes": "" + }, "WPA/WPA2": { "WPA/WPA2": "WPA/WPA2" }, @@ -8846,12 +8909,18 @@ "brandon": { "brandon": "brandon (Kiểu)" }, + "broken": { + "broken": "" + }, "by %1": { "by %1": "bởi %1" }, "days": { "days": "ngày" }, + "deprecated": { + "deprecated": "" + }, "detached": { "detached": "đã tách ra" }, @@ -8867,6 +8936,9 @@ "direct": { "direct": "trực tiếp" }, + "discuss": { + "discuss": "" + }, "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": "dms là một shell desktop hiện đại, có khả năng tùy chỉnh cao với thiết kế lấy cảm hứng từ material 3.

Nó được xây dựng bằng Quickshell, một framework QT6 để xây dựng shell desktop, và Go, một ngôn ngữ lập trình biên dịch, định kiểu tĩnh." }, @@ -9026,6 +9098,9 @@ "this app": { "this app": "ứng dụng này" }, + "unmaintained": { + "unmaintained": "" + }, "until %1": { "until %1": "cho đến %1" }, @@ -9047,6 +9122,9 @@ "v%1 by %2": { "v%1 by %2": "v%1 bởi %2" }, + "verified": { + "verified": "" + }, "wtype not available - install wtype for paste support": { "wtype not available - install wtype for paste support": "wtype không khả dụng - hãy cài đặt wtype để hỗ trợ dán" }, diff --git a/quickshell/translations/poexports/zh_CN.json b/quickshell/translations/poexports/zh_CN.json index 71167604..54b5dc41 100644 --- a/quickshell/translations/poexports/zh_CN.json +++ b/quickshell/translations/poexports/zh_CN.json @@ -107,6 +107,9 @@ "%1 windows": { "%1 windows": "%1 个窗口" }, + "%1: %2": { + "%1: %2": "" + }, "%1m ago": { "%1m ago": "%1 分钟前" }, @@ -324,7 +327,7 @@ "A user with that name already exists.": "已存在同名用户。" }, "AC Adapter (Plugged In)": { - "AC Adapter (Plugged In)": "" + "AC Adapter (Plugged In)": "交流电适配器(已插入)" }, "AC Power": { "AC Power": "交流电" @@ -528,7 +531,7 @@ "Allow": "允许" }, "Allow LAN access": { - "Allow LAN access": "" + "Allow LAN access": "允许局域网访问" }, "Allow adjusting device volume by scrolling on the right half of items in the device list": { "Allow adjusting device volume by scrolling on the right half of items in the device list": "允许在设备列表项目右半部分滚动鼠标滚轮调整设备音量" @@ -672,7 +675,7 @@ "Apply inverse concave corner cutouts to the bar": "为状态栏应用反向凹角裁切" }, "Apply to Hardware": { - "Apply to Hardware": "" + "Apply to Hardware": "应用到硬件" }, "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": { "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": "应用暖色温以减轻眼睛疲劳,可通过下方设置控制自动激活时间。" @@ -828,7 +831,7 @@ "Auto Popup Gaps": "自动弹窗间隙" }, "Auto Power Saver": { - "Auto Power Saver": "" + "Auto Power Saver": "自动省电" }, "Auto mode is on. Manual profile selection is disabled.": { "Auto mode is on. Manual profile selection is disabled.": "自动模式已开启。手动选择配置已禁用。" @@ -924,7 +927,7 @@ "Automatically save changes to opened files as you type": "键入时自动保存变更" }, "Automatically turn on Power Saver profile when battery is low.": { - "Automatically turn on Power Saver profile when battery is low.": "" + "Automatically turn on Power Saver profile when battery is low.": "低电量时自动启用省电配置" }, "Automation": { "Automation": "自动化" @@ -978,7 +981,7 @@ "Background Blur": "背景模糊" }, "Background Color": { - "Background Color": "" + "Background Color": "背景颜色" }, "Background Effect": { "Background Effect": "背景效果" @@ -1014,7 +1017,7 @@ "Bar Configurations": "状态栏设置" }, "Bar Inset Padding": { - "Bar Inset Padding": "" + "Bar Inset Padding": "状态栏内嵌边距" }, "Bar Opacity": { "Bar Opacity": "状态栏不透明度" @@ -1023,7 +1026,7 @@ "Bar Shadows": "状态栏阴影" }, "Bar Spacing": { - "Bar Spacing": "" + "Bar Spacing": "状态栏间距" }, "Bar Transparency": { "Bar Transparency": "状态栏透明度" @@ -1053,34 +1056,34 @@ "Battery Charge Limit": "电池充电限制" }, "Battery Health": { - "Battery Health": "" + "Battery Health": "电池健康" }, "Battery Power": { - "Battery Power": "" + "Battery Power": "电池电量" }, "Battery Protection & Charging": { - "Battery Protection & Charging": "" + "Battery Protection & Charging": "电池保护与充电" }, "Battery Status": { - "Battery Status": "" + "Battery Status": "电池状态" }, "Battery and power management": { "Battery and power management": "电池与电源管理" }, "Battery has charged to your set limit of %1%": { - "Battery has charged to your set limit of %1%": "" + "Battery has charged to your set limit of %1%": "电池已充电至设置的上限 %1%" }, "Battery is at %1% - Connect charger immediately!": { - "Battery is at %1% - Connect charger immediately!": "" + "Battery is at %1% - Connect charger immediately!": "电池电量 %1% - 请立即连接充电器!" }, "Battery is at %1% - Consider charging soon": { - "Battery is at %1% - Consider charging soon": "" + "Battery is at %1% - Consider charging soon": "电池电量 %1% - 请考虑尽快充电" }, "Battery level and power management": { "Battery level and power management": "电池电量与电源管理" }, "Battery percentage to trigger a critical alert.": { - "Battery percentage to trigger a critical alert.": "" + "Battery percentage to trigger a critical alert.": "触发警报的电量百分比" }, "Behavior": { "Behavior": "行为" @@ -1368,13 +1371,13 @@ "Channel": "频道" }, "Charge Level": { - "Charge Level": "" + "Charge Level": "充电级别" }, "Charge Limit Reached": { - "Charge Limit Reached": "" + "Charge Limit Reached": "已达充电上限" }, "Charge limit applied successfully": { - "Charge limit applied successfully": "" + "Charge limit applied successfully": "充电限制应用成功" }, "Charging": { "Charging": "充电" @@ -1437,7 +1440,7 @@ "Choose how this bar resolves shadow direction": "选择此状态栏解析阴影方向的方式" }, "Choose how to be notified about battery alerts.": { - "Choose how to be notified about battery alerts.": "" + "Choose how to be notified about battery alerts.": "选择电量警报通知方式" }, "Choose icon": { "Choose icon": "选择图标" @@ -1533,13 +1536,13 @@ "Click Through": "鼠标穿透" }, "Click an entry to paste directly instead of copying": { - "Click an entry to paste directly instead of copying": "" + "Click an entry to paste directly instead of copying": "点击任一项目直接粘贴,而不是复制" }, "Click any shortcut to edit. Changes save to %1": { "Click any shortcut to edit. Changes save to %1": "点击任意快捷方式以编辑。更改将保存至 %1。" }, "Click to Paste": { - "Click to Paste": "" + "Click to Paste": "点击粘贴" }, "Click to capture": { "Click to capture": "点击以捕获" @@ -1790,6 +1793,9 @@ "Connecting...": { "Connecting...": "正在连接..." }, + "Connecting…": { + "Connecting…": "" + }, "Connection failed": { "Connection failed": "连接失败" }, @@ -1970,20 +1976,23 @@ "Creating...": { "Creating...": "正在创建..." }, + "Credentials": { + "Credentials": "" + }, "Critical Battery": { - "Critical Battery": "" + "Critical Battery": "电量警报" }, "Critical Battery Alert": { - "Critical Battery Alert": "" + "Critical Battery Alert": "紧急电量警报" }, "Critical Battery Notifications": { - "Critical Battery Notifications": "" + "Critical Battery Notifications": "紧急电量通知" }, "Critical Priority": { "Critical Priority": "紧急优先级" }, "Critical Threshold": { - "Critical Threshold": "" + "Critical Threshold": "警报阈值" }, "Ctrl+A: Select All • Ctrl+P: Preview • Enter/Shift+Enter: Find Next/Previous • Esc: Close": { "Ctrl+A: Select All • Ctrl+P: Preview • Enter/Shift+Enter: Find Next/Previous • Esc: Close": "Ctrl+A:全选 • Ctrl+P:预览 • Enter/Shift+Enter:查找下一个/上一个 • ESC:关闭" @@ -2208,7 +2217,7 @@ "Dark Mode": "深色模式" }, "Dark Mode Icon Theme": { - "Dark Mode Icon Theme": "" + "Dark Mode Icon Theme": "深色模式图标主题" }, "Dark mode base": { "Dark mode base": "深色模式基于..." @@ -2667,7 +2676,7 @@ "Edge Spacing": "边缘间距" }, "Edge spacing, exclusive zone, and popup gaps are managed by Frame": { - "Edge spacing, exclusive zone, and popup gaps are managed by Frame": "" + "Edge spacing, exclusive zone, and popup gaps are managed by Frame": "边缘空隙、排除区域及弹窗间隙受框架管理" }, "Edge the launcher slides from": { "Edge the launcher slides from": "启动器滑入侧" @@ -2828,6 +2837,9 @@ "Enter PIN for ": { "Enter PIN for ": "输入 PIN " }, + "Enter URI or text to share": { + "Enter URI or text to share": "" + }, "Enter URL or text to share": { "Enter URL or text to share": "请输入想要共享的网址或文本" }, @@ -2895,7 +2907,7 @@ "Errors": "错误" }, "Estimated Time": { - "Estimated Time": "" + "Estimated Time": "预估时间" }, "Ethernet": { "Ethernet": "以太网" @@ -2925,7 +2937,7 @@ "Existing Users": "现有用户" }, "Exit node": { - "Exit node": "" + "Exit node": "退出节点" }, "Experimental Feature": { "Experimental Feature": "实验性功能" @@ -2991,7 +3003,7 @@ "Failed to apply Qt colors": "应用 QT 配色失败" }, "Failed to apply charge limit to system": { - "Failed to apply charge limit to system": "" + "Failed to apply charge limit to system": "充电限制应用到系统失败" }, "Failed to apply profile": { "Failed to apply profile": "应用配置失败" @@ -3146,6 +3158,9 @@ "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": { "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": "运行 'dms greeter status' 失败。确保 DMS 已安装,且 dms 已在 PATH 中。" }, + "Failed to save VPN credentials": { + "Failed to save VPN credentials": "" + }, "Failed to save audio config": { "Failed to save audio config": "音频配置保存失败" }, @@ -3158,6 +3173,9 @@ "Failed to save profile": { "Failed to save profile": "保存配置失败" }, + "Failed to send SMS": { + "Failed to send SMS": "" + }, "Failed to send clipboard": { "Failed to send clipboard": "发送剪切板失败" }, @@ -3285,7 +3303,7 @@ "Filter": "筛选" }, "Filter by type": { - "Filter by type": "" + "Filter by type": "类别筛选" }, "Find in Text": { "Find in Text": "查找文本" @@ -3503,6 +3521,9 @@ "Format Legend": { "Format Legend": "参考格式" }, + "Forward 10s": { + "Forward 10s": "" + }, "Frame": { "Frame": "框架" }, @@ -3588,7 +3609,7 @@ "Gamma control not available. Requires DMS API v6+.": "伽玛控制不可用,需要 DMS API v6+。" }, "Gap between the end widgets and the bar ends (0 = edge-to-edge)": { - "Gap between the end widgets and the bar ends (0 = edge-to-edge)": "" + "Gap between the end widgets and the bar ends (0 = edge-to-edge)": "两端部件与状态栏之间的间隙( 0 = 边靠边)" }, "Generate Override": { "Generate Override": "生成 Override" @@ -3818,6 +3839,9 @@ "Hide device": { "Hide device": "隐藏设备" }, + "Hide installed": { + "Hide installed": "" + }, "Hide notification content until expanded": { "Hide notification content until expanded": "隐藏通知内容,直到展开" }, @@ -3960,7 +3984,7 @@ "Icon Theme": "图标主题" }, "Icon theme changed outside DMS; switched to System Default": { - "Icon theme changed outside DMS; switched to System Default": "" + "Icon theme changed outside DMS; switched to System Default": "图标主题在 DMS 之外变更,切换至系统默认" }, "Identical alerts show as one popup instead of stacking": { "Identical alerts show as one popup instead of stacking": "相同提醒显示为一个弹窗,而不是堆叠显示" @@ -4127,6 +4151,9 @@ "Installed": { "Installed": "已安装" }, + "Installed first": { + "Installed first": "" + }, "Installed: %1": { "Installed: %1": "已安装:%1" }, @@ -4197,7 +4224,7 @@ "Keep in Bar": "" }, "Keep the clipboard type filter when reopening history": { - "Keep the clipboard type filter when reopening history": "" + "Keep the clipboard type filter when reopening history": "重新打开剪切板历史记录时保持上次的筛选类别" }, "Keep typing": { "Keep typing": "继续输入" @@ -4341,7 +4368,7 @@ "Light Mode": "浅色模式" }, "Light Mode Icon Theme": { - "Light Mode Icon Theme": "" + "Light Mode Icon Theme": "浅色模式图标主题" }, "Light Rain": { "Light Rain": "小雨" @@ -4359,10 +4386,10 @@ "Light mode harmony": "浅色模式调和" }, "Limit set to %1%": { - "Limit set to %1%": "" + "Limit set to %1%": "电量限制设置为 %1%" }, "Limit the maximum battery charge level to extend lifespan.": { - "Limit the maximum battery charge level to extend lifespan.": "" + "Limit the maximum battery charge level to extend lifespan.": "限制最大充电百分比以延长电池寿命" }, "Line": { "Line": "线条" @@ -4401,7 +4428,7 @@ "Local": "本地" }, "Local Weather": { - "Local Weather": "" + "Local Weather": "本地天气" }, "Locale": { "Locale": "区域" @@ -4476,13 +4503,13 @@ "Low": "低" }, "Low Battery": { - "Low Battery": "" + "Low Battery": "低电量" }, "Low Battery Notifications": { - "Low Battery Notifications": "" + "Low Battery Notifications": "低电量通知" }, "Low Battery Threshold": { - "Low Battery Threshold": "" + "Low Battery Threshold": "低电量阈值" }, "Low Priority": { "Low Priority": "次要优先级" @@ -4887,7 +4914,7 @@ "Music Player": "音乐播放器" }, "Mute During Playback": { - "Mute During Playback": "" + "Mute During Playback": "媒体播放时静音" }, "Mute Popups": { "Mute Popups": "静音弹窗" @@ -4952,6 +4979,9 @@ "Network Status": { "Network Status": "网络状态" }, + "Network Type": { + "Network Type": "" + }, "Network download and upload speed display": { "Network download and upload speed display": "显示网络下载与上传速度" }, @@ -5180,6 +5210,9 @@ "No human user accounts found.": { "No human user accounts found.": "未找到普通用户账户。" }, + "No images found": { + "No images found": "" + }, "No info items": { "No info items": "无信息项目" }, @@ -5400,7 +5433,7 @@ "Nothing to see here": "空空如也" }, "Notification": { - "Notification": "" + "Notification": "通知" }, "Notification Center": { "Notification Center": "通知中心" @@ -5424,7 +5457,7 @@ "Notification Timeouts": "通知超时" }, "Notification Type": { - "Notification Type": "" + "Notification Type": "通知类型" }, "Notification toast popups": { "Notification toast popups": "通知弹窗" @@ -5433,7 +5466,7 @@ "Notifications": "通知" }, "Notify when limit is reached": { - "Notify when limit is reached": "" + "Notify when limit is reached": "达到限制时通知" }, "Numbers": { "Numbers": "数字" @@ -5888,6 +5921,9 @@ "Place the dock on the Wayland overlay layer": { "Place the dock on the Wayland overlay layer": "将程序坞置于 Wayland 叠加层" }, + "Play": { + "Play": "" + }, "Play a video when the screen locks.": { "Play a video when the screen locks.": "锁屏是播放视频。" }, @@ -6036,7 +6072,7 @@ "Power Profile Degradation": "电源配置性能下降" }, "Power Profiles Auto-Switching": { - "Power Profiles Auto-Switching": "" + "Power Profiles Auto-Switching": "性能模式自动切换" }, "Power Saver": { "Power Saver": "省电" @@ -6048,10 +6084,10 @@ "Power profile management available": "电源配置管理可用" }, "Power profile to use when AC power is connected.": { - "Power profile to use when AC power is connected.": "" + "Power profile to use when AC power is connected.": "交流电源连接时使用性能模式" }, "Power profile to use when running on battery power.": { - "Power profile to use when running on battery power.": "" + "Power profile to use when running on battery power.": "电池供电时使用性能模式" }, "Power source": { "Power source": "电源" @@ -6099,7 +6135,10 @@ "Preview": "预览" }, "Preview: %1": { - "Preview: %1": "" + "Preview: %1": "预览:%1" + }, + "Previous": { + "Previous": "" }, "Primary": { "Primary": "主色" @@ -6108,7 +6147,7 @@ "Primary Container": "主色容器" }, "Primary Theme Color": { - "Primary Theme Color": "" + "Primary Theme Color": "主要主题色" }, "Print Server Management": { "Print Server Management": "打印服务器管理" @@ -6159,7 +6198,7 @@ "Process Count": "进程计数" }, "Process exited with code %1": { - "Process exited with code %1": "" + "Process exited with code %1": "进程已退出,退出码:%1" }, "Processes": { "Processes": "进程" @@ -6198,10 +6237,10 @@ "Profile saved: %1": "已保存配置:%1" }, "Profile when Plugged In (AC)": { - "Profile when Plugged In (AC)": "" + "Profile when Plugged In (AC)": "电源供电配置模式" }, "Profile when on Battery": { - "Profile when on Battery": "" + "Profile when on Battery": "电池供电配置模式" }, "Protocol": { "Protocol": "协议" @@ -6287,6 +6326,9 @@ "Recent Colors": { "Recent Colors": "最近拾取的颜色" }, + "Recent Images": { + "Recent Images": "" + }, "Recently Used Apps": { "Recently Used Apps": "最近使用的应用" }, @@ -6336,7 +6378,7 @@ "Remember Last Query": "记忆上次查询" }, "Remember Type Filter": { - "Remember Type Filter": "" + "Remember Type Filter": "记住筛选类型" }, "Remember last session": { "Remember last session": "记住上次的会话" @@ -6509,6 +6551,9 @@ "Revert": { "Revert": "还原" }, + "Rewind 10s": { + "Rewind 10s": "" + }, "Right": { "Right": "右侧" }, @@ -6596,6 +6641,9 @@ "SMS": { "SMS": "短信" }, + "SMS sent successfully": { + "SMS sent successfully": "" + }, "Saturation": { "Saturation": "饱和度" }, @@ -6617,6 +6665,9 @@ "Save and switch between display configurations": { "Save and switch between display configurations": "保存和切换显示器配置" }, + "Save credentials": { + "Save credentials": "" + }, "Save critical priority notifications to history": { "Save critical priority notifications to history": "将关键优先级通知保存至历史" }, @@ -6639,7 +6690,7 @@ "Saved Configurations": "已保存的配置" }, "Saved Networks": { - "Saved Networks": "" + "Saved Networks": "已保存的网络" }, "Saved Note": { "Saved Note": "已保存笔记" @@ -6765,7 +6816,7 @@ "Secondary": "辅色" }, "Secondary Container": { - "Secondary Container": "" + "Secondary Container": "辅色容器" }, "Secured": { "Secured": "已加密" @@ -6909,7 +6960,7 @@ "Separate": "分离" }, "Separate Light & Dark Themes": { - "Separate Light & Dark Themes": "" + "Separate Light & Dark Themes": "区分浅色主题与深色主题" }, "Separator": { "Separator": "分隔符" @@ -6954,7 +7005,7 @@ "Set the font size for notification summary text": "设置通知标题字号" }, "Set the percentage at which the battery is considered low.": { - "Set the percentage at which the battery is considered low.": "" + "Set the percentage at which the battery is considered low.": "设置低电量百分比" }, "Setting": { "Setting": "设置项" @@ -7071,7 +7122,7 @@ "Show Feels Like Temperature": "显示体感温度" }, "Show Flatpak, Snap, AppImage, or Nix badge icons on launcher items.": { - "Show Flatpak, Snap, AppImage, or Nix badge icons on launcher items.": "" + "Show Flatpak, Snap, AppImage, or Nix badge icons on launcher items.": "在启动器项目上显示 Flatpak、Snap、AppImage 或者 Nix 徽标" }, "Show Footer": { "Show Footer": "显示页脚" @@ -7146,13 +7197,13 @@ "Show Overflow Badge Count": "显示溢出徽标计数" }, "Show Package Source Badges": { - "Show Package Source Badges": "" + "Show Package Source Badges": "显示包来源徽标" }, "Show Password Field": { "Show Password Field": "显示密码区域" }, "Show Percentage": { - "Show Percentage": "" + "Show Percentage": "显示百分比" }, "Show Power Actions": { "Show Power Actions": "显示电源操作" @@ -7173,7 +7224,7 @@ "Show Reboot": "显示重启" }, "Show Remaining Time": { - "Show Remaining Time": "" + "Show Remaining Time": "显示剩余时间" }, "Show Restart DMS": { "Show Restart DMS": "显示重启 DMS" @@ -7230,10 +7281,10 @@ "Show a bar that drains as the popup's auto-dismiss timer runs": "显示随通知弹窗超时倒计时而缩短的进度条" }, "Show a notification when battery reaches the charge limit.": { - "Show a notification when battery reaches the charge limit.": "" + "Show a notification when battery reaches the charge limit.": "电池达到充电限制时显示通知" }, "Show a warning popup when battery is running low.": { - "Show a warning popup when battery is running low.": "" + "Show a warning popup when battery is running low.": "低电量使用时显示警示弹窗" }, "Show all 9 tags instead of only occupied tags": { "Show all 9 tags instead of only occupied tags": "显示所有的 9 个标签,而不是仅显示已占用的标签" @@ -7242,7 +7293,7 @@ "Show an outline ring around the focused workspace indicator": "在聚焦工作区指示器周围显示一个轮廓环" }, "Show an urgent alert when battery reaches critical level.": { - "Show an urgent alert when battery reaches critical level.": "" + "Show an urgent alert when battery reaches critical level.": "电量达到紧急级别时显示紧急警报" }, "Show cava audio visualizer in media widget": { "Show cava audio visualizer in media widget": "在多媒体部件中显示 cava 音频可视化" @@ -7370,6 +7421,9 @@ "Signal": { "Signal": "信号" }, + "Signal Strength": { + "Signal Strength": "" + }, "Signal:": { "Signal:": "信号:" }, @@ -7380,7 +7434,7 @@ "Silence notifications": "静默通知" }, "Silence system sounds while media is playing": { - "Silence system sounds while media is playing": "" + "Silence system sounds while media is playing": "媒体播放时消除系统声音" }, "Single-Line Popup": { "Single-Line Popup": "单行弹窗" @@ -7536,7 +7590,7 @@ "Stripes": "条纹" }, "Subtle Overlay": { - "Subtle Overlay": "" + "Subtle Overlay": "轻微叠加" }, "Summary": { "Summary": "概要" @@ -7563,22 +7617,22 @@ "Surface Behavior": "平面行为" }, "Surface Container": { - "Surface Container": "" + "Surface Container": "平面容器" }, "Surface High": { - "Surface High": "" + "Surface High": "平面增亮" }, "Surface Highest": { - "Surface Highest": "" + "Surface Highest": "平面极亮" }, "Surface Opacity": { "Surface Opacity": "平面不透明度" }, "Surface Text": { - "Surface Text": "" + "Surface Text": "平面文字" }, "Surface Variant": { - "Surface Variant": "平面色变体" + "Surface Variant": "平面变体" }, "Surfaces emerge flush from the bar": { "Surfaces emerge flush from the bar": "平面从状态栏涌出" @@ -7614,7 +7668,7 @@ "Sync": "同步" }, "Sync Bar Inset Padding": { - "Sync Bar Inset Padding": "" + "Sync Bar Inset Padding": "同步状态栏内嵌边距" }, "Sync Mode with Portal": { "Sync Mode with Portal": "同步系统颜色模式" @@ -7746,10 +7800,10 @@ "Terminals - Always use Dark Theme": "终端总使用深色主题" }, "Tertiary": { - "Tertiary": "" + "Tertiary": "三级" }, "Tertiary Container": { - "Tertiary Container": "" + "Tertiary Container": "三级容器" }, "Test Connection": { "Test Connection": "测试连接" @@ -7959,7 +8013,7 @@ "To use this DMS bind, remove or change the keybind in your config.kdl": "要使用此 DMS 绑定,请删除或更改 config.kdl 中的按键绑定" }, "Toast": { - "Toast": "" + "Toast": "浮动通知" }, "Toast Messages": { "Toast Messages": "弹出式信息" @@ -8123,6 +8177,9 @@ "Typography & Motion": { "Typography & Motion": "排版与动画" }, + "URI": { + "URI": "" + }, "Unavailable": { "Unavailable": "不可用" }, @@ -8343,7 +8400,7 @@ "Use desktop wallpaper": "使用桌面壁纸" }, "Use different icon themes for light and dark mode": { - "Use different icon themes for light and dark mode": "" + "Use different icon themes for light and dark mode": "为浅色模式与深色模式使用不同的图标主题" }, "Use fingerprint authentication for the lock screen.": { "Use fingerprint authentication for the lock screen.": "为锁屏使用指纹认证。" @@ -8358,7 +8415,7 @@ "Use meters per second instead of km/h for wind speed": "使用 m/s 代替 km/h 来显示风速" }, "Use one inset value for every bar": { - "Use one inset value for every bar": "" + "Use one inset value for every bar": "每个状态栏使用同一个内嵌值" }, "Use smaller notification cards": { "Use smaller notification cards": "使用更小的通知卡片" @@ -8459,6 +8516,9 @@ "VPN configuration updated": { "VPN configuration updated": "VPN 配置已更新" }, + "VPN credentials saved": { + "VPN credentials saved": "" + }, "VPN deleted": { "VPN deleted": "VPN 已删除" }, @@ -8552,6 +8612,9 @@ "Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": "音量、亮度和其他系统 OSD" }, + "Votes": { + "Votes": "" + }, "WPA/WPA2": { "WPA/WPA2": "WPA/WPA2" }, @@ -8616,7 +8679,7 @@ "When locked": "何时锁定" }, "White": { - "White": "" + "White": "白色" }, "Wi-Fi Password": { "Wi-Fi Password": "Wi-Fi 密码" @@ -8670,7 +8733,7 @@ "Widget Styling": "部件样式" }, "Widget Text Style": { - "Widget Text Style": "" + "Widget Text Style": "部件文本风格" }, "Widget Transparency": { "Widget Transparency": "部件透明度" @@ -8846,12 +8909,18 @@ "brandon": { "brandon": "brandon" }, + "broken": { + "broken": "" + }, "by %1": { "by %1": "%1" }, "days": { "days": "天" }, + "deprecated": { + "deprecated": "" + }, "detached": { "detached": "已分离" }, @@ -8867,6 +8936,9 @@ "direct": { "direct": "直接" }, + "discuss": { + "discuss": "" + }, "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": "DMS 是一款高度可自定义的现代桌面 Shell,采用受 Material 3 启发的设计。

DMS 基于 Quickshell(用于构建桌面 Shell 的 QT6 框架)和 Go(静态类型编译型编程语言)开发。" }, @@ -9026,6 +9098,9 @@ "this app": { "this app": "此应用" }, + "unmaintained": { + "unmaintained": "" + }, "until %1": { "until %1": "直到 %1" }, @@ -9047,6 +9122,9 @@ "v%1 by %2": { "v%1 by %2": "v%1 by %2" }, + "verified": { + "verified": "" + }, "wtype not available - install wtype for paste support": { "wtype not available - install wtype for paste support": "wtype 不可用 - 安装 wtype 已支持粘贴功能" }, diff --git a/quickshell/translations/poexports/zh_TW.json b/quickshell/translations/poexports/zh_TW.json index 926b7ca0..9a98b4cc 100644 --- a/quickshell/translations/poexports/zh_TW.json +++ b/quickshell/translations/poexports/zh_TW.json @@ -107,6 +107,9 @@ "%1 windows": { "%1 windows": "%1 個視窗" }, + "%1: %2": { + "%1: %2": "" + }, "%1m ago": { "%1m ago": "%1 分鐘前" }, @@ -1790,6 +1793,9 @@ "Connecting...": { "Connecting...": "連線中..." }, + "Connecting…": { + "Connecting…": "" + }, "Connection failed": { "Connection failed": "連線失敗" }, @@ -1970,6 +1976,9 @@ "Creating...": { "Creating...": "建立中..." }, + "Credentials": { + "Credentials": "" + }, "Critical Battery": { "Critical Battery": "" }, @@ -2828,6 +2837,9 @@ "Enter PIN for ": { "Enter PIN for ": "請輸入 PIN 給 " }, + "Enter URI or text to share": { + "Enter URI or text to share": "" + }, "Enter URL or text to share": { "Enter URL or text to share": "輸入網址或文字以分享" }, @@ -3146,6 +3158,9 @@ "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": { "Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": "執行 'dms greeter status' 失敗。請確保 DMS 已安裝且 dms 位於 PATH 中。" }, + "Failed to save VPN credentials": { + "Failed to save VPN credentials": "" + }, "Failed to save audio config": { "Failed to save audio config": "無法儲存音訊設定" }, @@ -3158,6 +3173,9 @@ "Failed to save profile": { "Failed to save profile": "儲存設定檔失敗" }, + "Failed to send SMS": { + "Failed to send SMS": "" + }, "Failed to send clipboard": { "Failed to send clipboard": "無法傳送剪貼簿" }, @@ -3503,6 +3521,9 @@ "Format Legend": { "Format Legend": "格式說明" }, + "Forward 10s": { + "Forward 10s": "" + }, "Frame": { "Frame": "框架" }, @@ -3818,6 +3839,9 @@ "Hide device": { "Hide device": "隱藏裝置" }, + "Hide installed": { + "Hide installed": "" + }, "Hide notification content until expanded": { "Hide notification content until expanded": "展開前隱藏通知內容" }, @@ -4127,6 +4151,9 @@ "Installed": { "Installed": "已安裝" }, + "Installed first": { + "Installed first": "" + }, "Installed: %1": { "Installed: %1": "已安裝:%1" }, @@ -4952,6 +4979,9 @@ "Network Status": { "Network Status": "網路狀態" }, + "Network Type": { + "Network Type": "" + }, "Network download and upload speed display": { "Network download and upload speed display": "顯示網路下載跟上傳速度" }, @@ -5180,6 +5210,9 @@ "No human user accounts found.": { "No human user accounts found.": "找不到任何真實使用者帳戶。" }, + "No images found": { + "No images found": "" + }, "No info items": { "No info items": "無資訊項目" }, @@ -5888,6 +5921,9 @@ "Place the dock on the Wayland overlay layer": { "Place the dock on the Wayland overlay layer": "將 Dock 放置在 Wayland 覆蓋層上" }, + "Play": { + "Play": "" + }, "Play a video when the screen locks.": { "Play a video when the screen locks.": "螢幕鎖定時播放影片。" }, @@ -6101,6 +6137,9 @@ "Preview: %1": { "Preview: %1": "" }, + "Previous": { + "Previous": "" + }, "Primary": { "Primary": "主要" }, @@ -6287,6 +6326,9 @@ "Recent Colors": { "Recent Colors": "最近的顏色" }, + "Recent Images": { + "Recent Images": "" + }, "Recently Used Apps": { "Recently Used Apps": "最近使用的應用程式" }, @@ -6509,6 +6551,9 @@ "Revert": { "Revert": "還原" }, + "Rewind 10s": { + "Rewind 10s": "" + }, "Right": { "Right": "右方" }, @@ -6596,6 +6641,9 @@ "SMS": { "SMS": "簡訊" }, + "SMS sent successfully": { + "SMS sent successfully": "" + }, "Saturation": { "Saturation": "飽和度" }, @@ -6617,6 +6665,9 @@ "Save and switch between display configurations": { "Save and switch between display configurations": "儲存並切換顯示設定" }, + "Save credentials": { + "Save credentials": "" + }, "Save critical priority notifications to history": { "Save critical priority notifications to history": "將高優先順序通知儲存至歷史記錄" }, @@ -7370,6 +7421,9 @@ "Signal": { "Signal": "訊號" }, + "Signal Strength": { + "Signal Strength": "" + }, "Signal:": { "Signal:": "訊號:" }, @@ -8123,6 +8177,9 @@ "Typography & Motion": { "Typography & Motion": "字體排版和動態" }, + "URI": { + "URI": "" + }, "Unavailable": { "Unavailable": "不可用" }, @@ -8459,6 +8516,9 @@ "VPN configuration updated": { "VPN configuration updated": "VPN 設定已更新" }, + "VPN credentials saved": { + "VPN credentials saved": "" + }, "VPN deleted": { "VPN deleted": "VPN 已刪除" }, @@ -8552,6 +8612,9 @@ "Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": "音量、亮度及其他系統OSD" }, + "Votes": { + "Votes": "" + }, "WPA/WPA2": { "WPA/WPA2": "WPA/WPA2" }, @@ -8846,12 +8909,18 @@ "brandon": { "brandon": "布蘭登" }, + "broken": { + "broken": "" + }, "by %1": { "by %1": "作者:%1" }, "days": { "days": "天" }, + "deprecated": { + "deprecated": "" + }, "detached": { "detached": "已分離" }, @@ -8867,6 +8936,9 @@ "direct": { "direct": "直接" }, + "discuss": { + "discuss": "" + }, "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.": "dms 是一個高度可自訂的現代桌面外殼,其設計靈感來自 material 3

它使用 Quickshell(一個用於構建桌面外殼的 QT6 框架)和 Go(一種靜態類型、編譯式程式語言)構建。" }, @@ -9026,6 +9098,9 @@ "this app": { "this app": "此應用程式" }, + "unmaintained": { + "unmaintained": "" + }, "until %1": { "until %1": "直到 %1" }, @@ -9047,6 +9122,9 @@ "v%1 by %2": { "v%1 by %2": "v%1 由 %2" }, + "verified": { + "verified": "" + }, "wtype not available - install wtype for paste support": { "wtype not available - install wtype for paste support": "wtype 未可用 - 請安裝 wtype 以支援貼上功能" }, diff --git a/quickshell/translations/template.json b/quickshell/translations/template.json index 896c882a..3241764a 100644 --- a/quickshell/translations/template.json +++ b/quickshell/translations/template.json @@ -251,6 +251,13 @@ "reference": "", "comment": "" }, + { + "term": "%1: %2", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "%1m ago", "translation": "", @@ -321,13 +328,6 @@ "reference": "", "comment": "" }, - { - "term": "1 device connected", - "translation": "", - "context": "KDE Connect status single device", - "reference": "", - "comment": "" - }, { "term": "1 hour", "translation": "", @@ -2417,7 +2417,7 @@ { "term": "Battery", "translation": "", - "context": "", + "context": "KDE Connect battery label", "reference": "", "comment": "" }, @@ -3621,7 +3621,7 @@ { "term": "Clipboard sent", "translation": "", - "context": "KDE Connect clipboard action | Phone Connect clipboard action", + "context": "Phone Connect clipboard action", "reference": "", "comment": "" }, @@ -4143,6 +4143,13 @@ "reference": "", "comment": "" }, + { + "term": "Connecting…", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Connection failed", "translation": "", @@ -4549,6 +4556,13 @@ "reference": "", "comment": "" }, + { + "term": "Credentials", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Critical Battery", "translation": "", @@ -5196,7 +5210,7 @@ { "term": "Default", "translation": "", - "context": "notification rule action option | notification rule urgency option | plugin browser sort option | widget style option | workspace color option", + "context": "notification rule action option | notification rule urgency option | widget style option | workspace color option", "reference": "", "comment": "" }, @@ -5539,7 +5553,7 @@ { "term": "Device unpaired", "translation": "", - "context": "KDE Connect unpair action | Phone Connect unpair action", + "context": "Phone Connect unpair action", "reference": "", "comment": "" }, @@ -6531,7 +6545,7 @@ "comment": "" }, { - "term": "Enter URL or text to share", + "term": "Enter URI or text to share", "translation": "", "context": "KDE Connect share input placeholder", "reference": "", @@ -7272,6 +7286,13 @@ "reference": "", "comment": "" }, + { + "term": "Failed to save VPN credentials", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Failed to save audio config", "translation": "", @@ -7300,6 +7321,13 @@ "reference": "", "comment": "" }, + { + "term": "Failed to send SMS", + "translation": "", + "context": "Phone Connect error", + "reference": "", + "comment": "" + }, { "term": "Failed to send clipboard", "translation": "", @@ -7506,7 +7534,7 @@ { "term": "File", "translation": "", - "context": "", + "context": "KDE Connect send file button", "reference": "", "comment": "" }, @@ -8105,6 +8133,13 @@ "reference": "", "comment": "" }, + { + "term": "Forward 10s", + "translation": "", + "context": "Media forward tooltip", + "reference": "", + "comment": "" + }, { "term": "Frame", "translation": "", @@ -8833,6 +8868,13 @@ "reference": "", "comment": "" }, + { + "term": "Hide installed", + "translation": "", + "context": "plugin browser filter chip", + "reference": "", + "comment": "" + }, { "term": "Hide notification content until expanded", "translation": "", @@ -9550,7 +9592,14 @@ { "term": "Installed", "translation": "", - "context": "installed status | plugin browser filter chip", + "context": "installed status", + "reference": "", + "comment": "" + }, + { + "term": "Installed first", + "translation": "", + "context": "plugin browser filter chip", "reference": "", "comment": "" }, @@ -11479,6 +11528,13 @@ "reference": "", "comment": "" }, + { + "term": "Network Type", + "translation": "", + "context": "KDE Connect network type label", + "reference": "", + "comment": "" + }, { "term": "Network download and upload speed display", "translation": "", @@ -11580,7 +11636,7 @@ { "term": "Next", "translation": "", - "context": "greeter next button", + "context": "Media next tooltip | greeter next button", "reference": "", "comment": "" }, @@ -11920,13 +11976,6 @@ "reference": "", "comment": "" }, - { - "term": "No devices connected", - "translation": "", - "context": "KDE Connect status", - "reference": "", - "comment": "" - }, { "term": "No devices found", "translation": "", @@ -12011,6 +12060,13 @@ "reference": "", "comment": "" }, + { + "term": "No images found", + "translation": "", + "context": "No recent images found message", + "reference": "", + "comment": "" + }, { "term": "No info items", "translation": "", @@ -12581,7 +12637,7 @@ { "term": "Notifications", "translation": "", - "context": "greeter settings link", + "context": "KDE Connect notifications label | greeter settings link", "reference": "", "comment": "" }, @@ -12802,13 +12858,6 @@ "reference": "", "comment": "" }, - { - "term": "Open KDE Connect on your phone", - "translation": "", - "context": "KDE Connect open app hint", - "reference": "", - "comment": "" - }, { "term": "Open Notepad File", "translation": "", @@ -12886,13 +12935,6 @@ "reference": "", "comment": "" }, - { - "term": "Opening SMS", - "translation": "", - "context": "KDE Connect SMS action", - "reference": "", - "comment": "" - }, { "term": "Opening SMS app", "translation": "", @@ -12907,13 +12949,6 @@ "reference": "", "comment": "" }, - { - "term": "Opening files", - "translation": "", - "context": "KDE Connect browse action", - "reference": "", - "comment": "" - }, { "term": "Opening terminal to update greetd", "translation": "", @@ -13246,7 +13281,7 @@ { "term": "Pair", "translation": "", - "context": "KDE Connect pair button", + "context": "", "reference": "", "comment": "" }, @@ -13400,7 +13435,7 @@ { "term": "Pause", "translation": "", - "context": "", + "context": "Media pause tooltip", "reference": "", "comment": "" }, @@ -13495,13 +13530,6 @@ "reference": "", "comment": "" }, - { - "term": "Phone Connect unavailable", - "translation": "", - "context": "Phone Connect service unavailable message", - "reference": "", - "comment": "" - }, { "term": "Phone number", "translation": "", @@ -13565,13 +13593,6 @@ "reference": "", "comment": "" }, - { - "term": "Ping sent", - "translation": "", - "context": "KDE Connect ping action", - "reference": "", - "comment": "" - }, { "term": "Ping sent to", "translation": "", @@ -13635,6 +13656,13 @@ "reference": "", "comment": "" }, + { + "term": "Play", + "translation": "", + "context": "Media play tooltip", + "reference": "", + "comment": "" + }, { "term": "Play a video when the screen locks.", "translation": "", @@ -14132,6 +14160,13 @@ "reference": "", "comment": "" }, + { + "term": "Previous", + "translation": "", + "context": "Media previous tooltip", + "reference": "", + "comment": "" + }, { "term": "Primary", "translation": "", @@ -14566,6 +14601,13 @@ "reference": "", "comment": "" }, + { + "term": "Recent Images", + "translation": "", + "context": "Recent Images title", + "reference": "", + "comment": "" + }, { "term": "Recently Used Apps", "translation": "", @@ -14583,7 +14625,7 @@ { "term": "Refresh", "translation": "", - "context": "Phone Connect refresh tooltip | Refresh Tailscale device status", + "context": "Refresh Tailscale device status", "reference": "", "comment": "" }, @@ -15084,6 +15126,13 @@ "reference": "", "comment": "" }, + { + "term": "Rewind 10s", + "translation": "", + "context": "Media rewind tooltip", + "reference": "", + "comment": "" + }, { "term": "Right", "translation": "", @@ -15143,7 +15192,7 @@ { "term": "Ringing", "translation": "", - "context": "KDE Connect ring action | Phone Connect ring action", + "context": "Phone Connect ring action", "reference": "", "comment": "" }, @@ -15287,6 +15336,13 @@ "reference": "", "comment": "" }, + { + "term": "SMS sent successfully", + "translation": "", + "context": "Phone Connect SMS action", + "reference": "", + "comment": "" + }, { "term": "Saturation", "translation": "", @@ -15336,6 +15392,13 @@ "reference": "", "comment": "" }, + { + "term": "Save credentials", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Save critical priority notifications to history", "translation": "", @@ -15983,14 +16046,7 @@ { "term": "Send Clipboard", "translation": "", - "context": "KDE Connect clipboard tooltip", - "reference": "", - "comment": "" - }, - { - "term": "Send File", - "translation": "", - "context": "KDE Connect send file button", + "context": "KDE Connect clipboard tooltip | KDE Connect send clipboard tooltip", "reference": "", "comment": "" }, @@ -16239,20 +16295,6 @@ "reference": "", "comment": "" }, - { - "term": "Share Text", - "translation": "", - "context": "KDE Connect share button", - "reference": "", - "comment": "" - }, - { - "term": "Share URL", - "translation": "", - "context": "KDE Connect share URL button", - "reference": "", - "comment": "" - }, { "term": "Shared", "translation": "", @@ -17093,6 +17135,13 @@ "reference": "", "comment": "" }, + { + "term": "Signal Strength", + "translation": "", + "context": "KDE Connect signal strength label", + "reference": "", + "comment": "" + }, { "term": "Signal:", "translation": "", @@ -17380,13 +17429,6 @@ "reference": "", "comment": "" }, - { - "term": "Start KDE Connect or Valent", - "translation": "", - "context": "Phone Connect start daemon hint", - "reference": "", - "comment": "" - }, { "term": "Start KDE Connect or Valent to use this plugin", "translation": "", @@ -18006,7 +18048,7 @@ { "term": "Text", "translation": "", - "context": "text color", + "context": "KDE Connect share text button | text color", "reference": "", "comment": "" }, @@ -18822,6 +18864,13 @@ "reference": "", "comment": "" }, + { + "term": "URI", + "translation": "", + "context": "KDE Connect share URI button", + "reference": "", + "comment": "" + }, { "term": "Unavailable", "translation": "", @@ -18909,7 +18958,7 @@ { "term": "Unknown", "translation": "", - "context": "KDE Connect unknown device status | battery status | power profile option | unknown author | widget status", + "context": "KDE Connect unknown device status | Status | battery status | power profile option | unknown author | widget status", "reference": "", "comment": "" }, @@ -19592,6 +19641,13 @@ "reference": "", "comment": "" }, + { + "term": "VPN credentials saved", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "VPN deleted", "translation": "", @@ -19809,6 +19865,13 @@ "reference": "", "comment": "" }, + { + "term": "Votes", + "translation": "", + "context": "plugin browser sort option", + "reference": "", + "comment": "" + }, { "term": "WPA/WPA2", "translation": "", @@ -20474,6 +20537,13 @@ "reference": "", "comment": "" }, + { + "term": "broken", + "translation": "", + "context": "plugin status", + "reference": "", + "comment": "" + }, { "term": "by %1", "translation": "", @@ -20488,6 +20558,13 @@ "reference": "", "comment": "" }, + { + "term": "deprecated", + "translation": "", + "context": "plugin status", + "reference": "", + "comment": "" + }, { "term": "detached", "translation": "", @@ -20498,14 +20575,7 @@ { "term": "device", "translation": "", - "context": "Generic device name | Generic device name fallback", - "reference": "", - "comment": "" - }, - { - "term": "devices connected", - "translation": "", - "context": "KDE Connect status multiple devices", + "context": "Generic device name fallback", "reference": "", "comment": "" }, @@ -20523,6 +20593,13 @@ "reference": "", "comment": "" }, + { + "term": "discuss", + "translation": "", + "context": "plugin discussion link", + "reference": "", + "comment": "" + }, { "term": "dms is a highly customizable, modern desktop shell with a material 3 inspired design.

It is built with Quickshell, a QT6 framework for building desktop shells, and Go, a statically typed, compiled programming language.", "translation": "", @@ -20894,6 +20971,13 @@ "reference": "", "comment": "" }, + { + "term": "unmaintained", + "translation": "", + "context": "plugin status", + "reference": "", + "comment": "" + }, { "term": "until %1", "translation": "", @@ -20943,6 +21027,13 @@ "reference": "", "comment": "" }, + { + "term": "verified", + "translation": "", + "context": "plugin status", + "reference": "", + "comment": "" + }, { "term": "wtype not available - install wtype for paste support", "translation": "",