1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-06-24 03:55:23 -04:00

plugins: enhance browser and CLI with new votes and labels

This commit is contained in:
bbedward
2026-06-23 14:48:43 -04:00
parent 28f40afccf
commit bed11feaa4
26 changed files with 2353 additions and 599 deletions
+11
View File
@@ -280,6 +280,8 @@ func browsePlugins() error {
return nil return nil
} }
feedback := plugins.FetchFeedback()
fmt.Printf("\nAvailable Plugins (%d):\n\n", len(pluginList)) fmt.Printf("\nAvailable Plugins (%d):\n\n", len(pluginList))
for _, plugin := range pluginList { for _, plugin := range pluginList {
installed, _ := manager.IsInstalled(plugin) installed, _ := manager.IsInstalled(plugin)
@@ -303,6 +305,15 @@ func browsePlugins() error {
if len(plugin.Dependencies) > 0 { if len(plugin.Dependencies) > 0 {
fmt.Printf(" Dependencies: %s\n", strings.Join(plugin.Dependencies, ", ")) 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() fmt.Println()
} }
+49
View File
@@ -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
}
+6
View File
@@ -28,9 +28,12 @@ func HandleList(conn net.Conn, req models.Request) {
return return
} }
feedback := plugins.FetchFeedback()
result := make([]PluginInfo, len(pluginList)) result := make([]PluginInfo, len(pluginList))
for i, p := range pluginList { for i, p := range pluginList {
installed, _ := manager.IsInstalled(p) installed, _ := manager.IsInstalled(p)
fb := feedback[p.ID]
result[i] = PluginInfo{ result[i] = PluginInfo{
ID: p.ID, ID: p.ID,
Name: p.Name, Name: p.Name,
@@ -46,6 +49,9 @@ func HandleList(conn net.Conn, req models.Request) {
FirstParty: strings.HasPrefix(p.Repo, "https://github.com/AvengeMedia"), FirstParty: strings.HasPrefix(p.Repo, "https://github.com/AvengeMedia"),
Featured: p.Featured, Featured: p.Featured,
RequiresDMS: p.RequiresDMS, RequiresDMS: p.RequiresDMS,
Upvotes: fb.Upvotes,
Status: fb.Status,
IssueURL: fb.IssueURL,
} }
} }
+3
View File
@@ -17,6 +17,9 @@ type PluginInfo struct {
Note string `json:"note,omitempty"` Note string `json:"note,omitempty"`
HasUpdate bool `json:"hasUpdate,omitempty"` HasUpdate bool `json:"hasUpdate,omitempty"`
RequiresDMS string `json:"requires_dms,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 { type SuccessResult struct {
+6
View File
@@ -155,6 +155,7 @@ Singleton {
property var recentColors: [] property var recentColors: []
property bool showThirdPartyPlugins: false property bool showThirdPartyPlugins: false
property bool pluginBrowserInstalledFirst: false property bool pluginBrowserInstalledFirst: false
property bool pluginBrowserHideInstalled: true
property string pluginBrowserSortMode: "default" property string pluginBrowserSortMode: "default"
property string launchPrefix: "" property string launchPrefix: ""
property string lastBrightnessDevice: "" property string lastBrightnessDevice: ""
@@ -971,6 +972,11 @@ Singleton {
saveSettings(); saveSettings();
} }
function setPluginBrowserHideInstalled(enabled) {
pluginBrowserHideInstalled = enabled;
saveSettings();
}
function setPluginBrowserSortMode(mode) { function setPluginBrowserSortMode(mode) {
if (mode === "type" || mode === "contributor") if (mode === "type" || mode === "contributor")
mode = "author"; mode = "author";
+114 -8
View File
@@ -33,14 +33,19 @@ FloatingWindow {
} }
readonly property var sortChipOptions: [ readonly property var sortChipOptions: [
{
id: "hideInstalled",
label: I18n.tr("Hide installed", "plugin browser filter chip"),
toggle: true
},
{ {
id: "installed", id: "installed",
label: I18n.tr("Installed", "plugin browser filter chip"), label: I18n.tr("Installed first", "plugin browser filter chip"),
toggle: true toggle: true
}, },
{ {
id: "default", id: "default",
label: I18n.tr("Default", "plugin browser sort option"), label: I18n.tr("Votes", "plugin browser sort option"),
toggle: false toggle: false
}, },
{ {
@@ -69,8 +74,11 @@ FloatingWindow {
} }
function isSortChipSelected(chipId, toggle) { function isSortChipSelected(chipId, toggle) {
if (toggle) if (toggle) {
if (chipId === "hideInstalled")
return SessionData.pluginBrowserHideInstalled;
return SessionData.pluginBrowserInstalledFirst; return SessionData.pluginBrowserInstalledFirst;
}
return normalizedSortMode(SessionData.pluginBrowserSortMode) === chipId; return normalizedSortMode(SessionData.pluginBrowserSortMode) === chipId;
} }
@@ -84,6 +92,38 @@ FloatingWindow {
return 0; 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) { function comparePluginAuthor(a, b) {
var authorA = (a.author || "").toLowerCase() || "zzz"; var authorA = (a.author || "").toLowerCase() || "zzz";
var authorB = (b.author || "").toLowerCase() || "zzz"; var authorB = (b.author || "").toLowerCase() || "zzz";
@@ -257,6 +297,8 @@ FloatingWindow {
} }
var filtered = baseFiltered.slice(); var filtered = baseFiltered.slice();
if (SessionData.pluginBrowserHideInstalled)
filtered = filtered.filter(p => !(p.installed || false));
if (activeCategorySort && categoryFilter !== "all") { if (activeCategorySort && categoryFilter !== "all") {
filtered = filtered.filter(p => { filtered = filtered.filter(p => {
var cat = (p.category || "").toLowerCase(); var cat = (p.category || "").toLowerCase();
@@ -280,10 +322,14 @@ FloatingWindow {
return comparePluginAuthor(a, b); return comparePluginAuthor(a, b);
if (sortMode === "category") if (sortMode === "category")
return comparePluginCategory(a, b); return comparePluginCategory(a, b);
if (a.featured !== b.featured) var votesA = a.upvotes || 0;
return a.featured ? -1 : 1; var votesB = b.upvotes || 0;
if (a.firstParty !== b.firstParty) if (votesA !== votesB)
return a.firstParty ? -1 : 1; return votesB - votesA;
var verA = root.pluginVerified(a);
var verB = root.pluginVerified(b);
if (verA !== verB)
return verA ? -1 : 1;
return comparePluginName(a, b); return comparePluginName(a, b);
}); });
@@ -680,6 +726,9 @@ FloatingWindow {
onPressed: mouse => chipRipple.trigger(mouse.x, mouse.y) onPressed: mouse => chipRipple.trigger(mouse.x, mouse.y)
onClicked: { onClicked: {
if (modelData.toggle) { if (modelData.toggle) {
if (modelData.id === "hideInstalled")
SessionData.setPluginBrowserHideInstalled(!SessionData.pluginBrowserHideInstalled);
else
SessionData.setPluginBrowserInstalledFirst(!SessionData.pluginBrowserInstalledFirst); SessionData.setPluginBrowserInstalledFirst(!SessionData.pluginBrowserInstalledFirst);
} else { } else {
if (modelData.id !== "category") if (modelData.id !== "category")
@@ -895,13 +944,70 @@ FloatingWindow {
font.weight: Font.Medium 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 { StyledText {
text: { text: {
const author = I18n.tr("by %1", "author attribution").arg(modelData.author || I18n.tr("Unknown", "unknown author")); const author = I18n.tr("by %1", "author attribution").arg(modelData.author || I18n.tr("Unknown", "unknown author"));
const source = modelData.repo ? ` <a href="${modelData.repo}" style="text-decoration:none; color:${Theme.primary};">${I18n.tr("source", "source code link")}</a>` : ""; const source = modelData.repo ? ` <a href="${modelData.repo}" style="text-decoration:none; color:${Theme.primary};">${I18n.tr("source", "source code link")}</a>` : "";
return author + source; const discuss = modelData.issueUrl ? ` <a href="${modelData.issueUrl}" style="text-decoration:none; color:${Theme.primary};">${I18n.tr("discuss", "plugin discussion link")}</a>` : "";
return author + source + discuss;
} }
font.pixelSize: Theme.fontSizeSmall font.pixelSize: Theme.fontSizeSmall
color: Theme.outline color: Theme.outline
File diff suppressed because it is too large Load Diff
+78
View File
@@ -107,6 +107,9 @@
"%1 windows": { "%1 windows": {
"%1 windows": "%1 Fenster" "%1 windows": "%1 Fenster"
}, },
"%1: %2": {
"%1: %2": ""
},
"%1m ago": { "%1m ago": {
"%1m ago": "vor %1 Min." "%1m ago": "vor %1 Min."
}, },
@@ -1790,6 +1793,9 @@
"Connecting...": { "Connecting...": {
"Connecting...": "Verbinden..." "Connecting...": "Verbinden..."
}, },
"Connecting…": {
"Connecting…": ""
},
"Connection failed": { "Connection failed": {
"Connection failed": "Verbindung fehlgeschlagen" "Connection failed": "Verbindung fehlgeschlagen"
}, },
@@ -1970,6 +1976,9 @@
"Creating...": { "Creating...": {
"Creating...": "erzeugen..." "Creating...": "erzeugen..."
}, },
"Credentials": {
"Credentials": ""
},
"Critical Battery": { "Critical Battery": {
"Critical Battery": "" "Critical Battery": ""
}, },
@@ -2828,6 +2837,9 @@
"Enter PIN for ": { "Enter PIN for ": {
"Enter PIN for ": "PIN eingeben für " "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": {
"Enter URL or text to share": "URL oder Text zum Teilen eingeben" "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.": {
"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 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": {
"Failed to save audio config": "Speichern der Audiokonfiguration fehlgeschlagen" "Failed to save audio config": "Speichern der Audiokonfiguration fehlgeschlagen"
}, },
@@ -3158,6 +3173,9 @@
"Failed to save profile": { "Failed to save profile": {
"Failed to save profile": "Profil konnte nicht gespeichert werden" "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": {
"Failed to send clipboard": "Zwischenablage konnte nicht gesendet werden" "Failed to send clipboard": "Zwischenablage konnte nicht gesendet werden"
}, },
@@ -3503,6 +3521,9 @@
"Format Legend": { "Format Legend": {
"Format Legend": "Legende formatieren" "Format Legend": "Legende formatieren"
}, },
"Forward 10s": {
"Forward 10s": ""
},
"Frame": { "Frame": {
"Frame": "Rahmen" "Frame": "Rahmen"
}, },
@@ -3818,6 +3839,9 @@
"Hide device": { "Hide device": {
"Hide device": "Gerät ausblenden" "Hide device": "Gerät ausblenden"
}, },
"Hide installed": {
"Hide installed": ""
},
"Hide notification content until expanded": { "Hide notification content until expanded": {
"Hide notification content until expanded": "Benachrichtigungsinhalt ausblenden, bis er erweitert wird" "Hide notification content until expanded": "Benachrichtigungsinhalt ausblenden, bis er erweitert wird"
}, },
@@ -4127,6 +4151,9 @@
"Installed": { "Installed": {
"Installed": "Installiert" "Installed": "Installiert"
}, },
"Installed first": {
"Installed first": ""
},
"Installed: %1": { "Installed: %1": {
"Installed: %1": "Installiert: %1" "Installed: %1": "Installiert: %1"
}, },
@@ -4952,6 +4979,9 @@
"Network Status": { "Network Status": {
"Network Status": "Netzwerkstatus" "Network Status": "Netzwerkstatus"
}, },
"Network Type": {
"Network Type": ""
},
"Network download and upload speed display": { "Network download and upload speed display": {
"Network download and upload speed display": "Anzeige Netzwerk-Download- und -Upload-Geschwindigkeit" "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.": {
"No human user accounts found.": "Keine menschlichen Benutzerkonten gefunden." "No human user accounts found.": "Keine menschlichen Benutzerkonten gefunden."
}, },
"No images found": {
"No images found": ""
},
"No info items": { "No info items": {
"No info items": "Keine Info-Elemente" "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": {
"Place the dock on the Wayland overlay layer": "Dock auf der Wayland-Overlay-Ebene platzieren" "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.": {
"Play a video when the screen locks.": "Ein Video abspielen, wenn der Bildschirm gesperrt wird." "Play a video when the screen locks.": "Ein Video abspielen, wenn der Bildschirm gesperrt wird."
}, },
@@ -6101,6 +6137,9 @@
"Preview: %1": { "Preview: %1": {
"Preview: %1": "" "Preview: %1": ""
}, },
"Previous": {
"Previous": ""
},
"Primary": { "Primary": {
"Primary": "Primär" "Primary": "Primär"
}, },
@@ -6287,6 +6326,9 @@
"Recent Colors": { "Recent Colors": {
"Recent Colors": "Aktuelle Farben" "Recent Colors": "Aktuelle Farben"
}, },
"Recent Images": {
"Recent Images": ""
},
"Recently Used Apps": { "Recently Used Apps": {
"Recently Used Apps": "Zuletzt verwendete Apps" "Recently Used Apps": "Zuletzt verwendete Apps"
}, },
@@ -6509,6 +6551,9 @@
"Revert": { "Revert": {
"Revert": "Rückgängig machen" "Revert": "Rückgängig machen"
}, },
"Rewind 10s": {
"Rewind 10s": ""
},
"Right": { "Right": {
"Right": "Rechts" "Right": "Rechts"
}, },
@@ -6596,6 +6641,9 @@
"SMS": { "SMS": {
"SMS": "SMS" "SMS": "SMS"
}, },
"SMS sent successfully": {
"SMS sent successfully": ""
},
"Saturation": { "Saturation": {
"Saturation": "Sättigung" "Saturation": "Sättigung"
}, },
@@ -6617,6 +6665,9 @@
"Save and switch between display configurations": { "Save and switch between display configurations": {
"Save and switch between display configurations": "Anzeige-Konfigurationen speichern und zwischen ihnen wechseln" "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": {
"Save critical priority notifications to history": "Benachrichtigungen mit kritischer Priorität im Verlauf speichern" "Save critical priority notifications to history": "Benachrichtigungen mit kritischer Priorität im Verlauf speichern"
}, },
@@ -7370,6 +7421,9 @@
"Signal": { "Signal": {
"Signal": "Signal" "Signal": "Signal"
}, },
"Signal Strength": {
"Signal Strength": ""
},
"Signal:": { "Signal:": {
"Signal:": "Signal:" "Signal:": "Signal:"
}, },
@@ -8123,6 +8177,9 @@
"Typography & Motion": { "Typography & Motion": {
"Typography & Motion": "Typografie & Bewegung" "Typography & Motion": "Typografie & Bewegung"
}, },
"URI": {
"URI": ""
},
"Unavailable": { "Unavailable": {
"Unavailable": "nicht Verfügbar" "Unavailable": "nicht Verfügbar"
}, },
@@ -8459,6 +8516,9 @@
"VPN configuration updated": { "VPN configuration updated": {
"VPN configuration updated": "VPN Konfiguration geupdated" "VPN configuration updated": "VPN Konfiguration geupdated"
}, },
"VPN credentials saved": {
"VPN credentials saved": ""
},
"VPN deleted": { "VPN deleted": {
"VPN deleted": "VPN gelöscht" "VPN deleted": "VPN gelöscht"
}, },
@@ -8552,6 +8612,9 @@
"Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": {
"Volume, brightness, and other system OSDs": "Lautstärke, Helligkeit und andere System-OSDs" "Volume, brightness, and other system OSDs": "Lautstärke, Helligkeit und andere System-OSDs"
}, },
"Votes": {
"Votes": ""
},
"WPA/WPA2": { "WPA/WPA2": {
"WPA/WPA2": "WPA/WPA2" "WPA/WPA2": "WPA/WPA2"
}, },
@@ -8846,12 +8909,18 @@
"brandon": { "brandon": {
"brandon": "brandon" "brandon": "brandon"
}, },
"broken": {
"broken": ""
},
"by %1": { "by %1": {
"by %1": "von %1" "by %1": "von %1"
}, },
"days": { "days": {
"days": "Tage" "days": "Tage"
}, },
"deprecated": {
"deprecated": ""
},
"detached": { "detached": {
"detached": "getrennt" "detached": "getrennt"
}, },
@@ -8867,6 +8936,9 @@
"direct": { "direct": {
"direct": "direkt" "direct": "direkt"
}, },
"discuss": {
"discuss": ""
},
"dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": {
"dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": "dms ist eine hochgradig anpassbare, moderne Desktop-Shell mit einem <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">Material 3 inspirierten</a> Design.<br /><br/>Sie wurde mit <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a> entwickelt, einem QT6-Framework zum Erstellen von Desktop-Shells, und <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, einer statisch typisierten, kompilierten Programmiersprache." "dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": "dms ist eine hochgradig anpassbare, moderne Desktop-Shell mit einem <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">Material 3 inspirierten</a> Design.<br /><br/>Sie wurde mit <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a> entwickelt, einem QT6-Framework zum Erstellen von Desktop-Shells, und <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, einer statisch typisierten, kompilierten Programmiersprache."
}, },
@@ -9026,6 +9098,9 @@
"this app": { "this app": {
"this app": "diese App" "this app": "diese App"
}, },
"unmaintained": {
"unmaintained": ""
},
"until %1": { "until %1": {
"until %1": "bis %1" "until %1": "bis %1"
}, },
@@ -9047,6 +9122,9 @@
"v%1 by %2": { "v%1 by %2": {
"v%1 by %2": "v%1 von %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 not available - install wtype for paste support": "wtype ist nicht verfügbar - installiere wtype für Unterstützung zum Einfügen" "wtype not available - install wtype for paste support": "wtype ist nicht verfügbar - installiere wtype für Unterstützung zum Einfügen"
}, },
+78
View File
@@ -107,6 +107,9 @@
"%1 windows": { "%1 windows": {
"%1 windows": "%1 fenestroj" "%1 windows": "%1 fenestroj"
}, },
"%1: %2": {
"%1: %2": ""
},
"%1m ago": { "%1m ago": {
"%1m ago": "antaŭ %1m" "%1m ago": "antaŭ %1m"
}, },
@@ -1790,6 +1793,9 @@
"Connecting...": { "Connecting...": {
"Connecting...": "Konektante..." "Connecting...": "Konektante..."
}, },
"Connecting…": {
"Connecting…": ""
},
"Connection failed": { "Connection failed": {
"Connection failed": "Konekto malsukcesis" "Connection failed": "Konekto malsukcesis"
}, },
@@ -1970,6 +1976,9 @@
"Creating...": { "Creating...": {
"Creating...": "Kreado..." "Creating...": "Kreado..."
}, },
"Credentials": {
"Credentials": ""
},
"Critical Battery": { "Critical Battery": {
"Critical Battery": "" "Critical Battery": ""
}, },
@@ -2828,6 +2837,9 @@
"Enter PIN for ": { "Enter PIN for ": {
"Enter PIN for ": "Enigu PIN-kodo por " "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": {
"Enter URL or text to share": "Enigu URL-on aŭ tekston por kunhavigi" "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.": {
"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 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": {
"Failed to save audio config": "Malsukcesis konservi sonan agordon" "Failed to save audio config": "Malsukcesis konservi sonan agordon"
}, },
@@ -3158,6 +3173,9 @@
"Failed to save profile": { "Failed to save profile": {
"Failed to save profile": "Malsukcesis konservi profilon" "Failed to save profile": "Malsukcesis konservi profilon"
}, },
"Failed to send SMS": {
"Failed to send SMS": ""
},
"Failed to send clipboard": { "Failed to send clipboard": {
"Failed to send clipboard": "Malsukcesis sendi la poŝtabulon" "Failed to send clipboard": "Malsukcesis sendi la poŝtabulon"
}, },
@@ -3503,6 +3521,9 @@
"Format Legend": { "Format Legend": {
"Format Legend": "Formata legendo" "Format Legend": "Formata legendo"
}, },
"Forward 10s": {
"Forward 10s": ""
},
"Frame": { "Frame": {
"Frame": "ŝipripo" "Frame": "ŝipripo"
}, },
@@ -3818,6 +3839,9 @@
"Hide device": { "Hide device": {
"Hide device": "Kaŝi aparaton" "Hide device": "Kaŝi aparaton"
}, },
"Hide installed": {
"Hide installed": ""
},
"Hide notification content until expanded": { "Hide notification content until expanded": {
"Hide notification content until expanded": "Kaŝi sciigan enhavon ĝis etendo" "Hide notification content until expanded": "Kaŝi sciigan enhavon ĝis etendo"
}, },
@@ -4127,6 +4151,9 @@
"Installed": { "Installed": {
"Installed": "Instalita" "Installed": "Instalita"
}, },
"Installed first": {
"Installed first": ""
},
"Installed: %1": { "Installed: %1": {
"Installed: %1": "Instalita: %1" "Installed: %1": "Instalita: %1"
}, },
@@ -4952,6 +4979,9 @@
"Network Status": { "Network Status": {
"Network Status": "Reta stato" "Network Status": "Reta stato"
}, },
"Network Type": {
"Network Type": ""
},
"Network download and upload speed display": { "Network download and upload speed display": {
"Network download and upload speed display": "Vidigo de reta elŝuta kaj alŝuta rapido" "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.": {
"No human user accounts found.": "Neniuj homaj uzantkontoj trovitaj." "No human user accounts found.": "Neniuj homaj uzantkontoj trovitaj."
}, },
"No images found": {
"No images found": ""
},
"No info items": { "No info items": {
"No info items": "Neniuj informaj eroj" "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": {
"Place the dock on the Wayland overlay layer": "Metu la dokon sur la Wayland-kovrotavolo" "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.": {
"Play a video when the screen locks.": "Ludi videon kiam la ekrano ŝlosiĝas." "Play a video when the screen locks.": "Ludi videon kiam la ekrano ŝlosiĝas."
}, },
@@ -6101,6 +6137,9 @@
"Preview: %1": { "Preview: %1": {
"Preview: %1": "" "Preview: %1": ""
}, },
"Previous": {
"Previous": ""
},
"Primary": { "Primary": {
"Primary": "Ĉefa" "Primary": "Ĉefa"
}, },
@@ -6287,6 +6326,9 @@
"Recent Colors": { "Recent Colors": {
"Recent Colors": "Lastatempaj koloroj" "Recent Colors": "Lastatempaj koloroj"
}, },
"Recent Images": {
"Recent Images": ""
},
"Recently Used Apps": { "Recently Used Apps": {
"Recently Used Apps": "Lastatempe uzitaj aplikaĵoj" "Recently Used Apps": "Lastatempe uzitaj aplikaĵoj"
}, },
@@ -6509,6 +6551,9 @@
"Revert": { "Revert": {
"Revert": "Malfari" "Revert": "Malfari"
}, },
"Rewind 10s": {
"Rewind 10s": ""
},
"Right": { "Right": {
"Right": "Dekstre" "Right": "Dekstre"
}, },
@@ -6596,6 +6641,9 @@
"SMS": { "SMS": {
"SMS": "SMS-oj" "SMS": "SMS-oj"
}, },
"SMS sent successfully": {
"SMS sent successfully": ""
},
"Saturation": { "Saturation": {
"Saturation": "satureco" "Saturation": "satureco"
}, },
@@ -6617,6 +6665,9 @@
"Save and switch between display configurations": { "Save and switch between display configurations": {
"Save and switch between display configurations": "Konservi kaj ŝanĝi inter ekranaj agordoj" "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": {
"Save critical priority notifications to history": "Konservi kritik-prioritatajn sciigojn en historion" "Save critical priority notifications to history": "Konservi kritik-prioritatajn sciigojn en historion"
}, },
@@ -7370,6 +7421,9 @@
"Signal": { "Signal": {
"Signal": "Signalo" "Signal": "Signalo"
}, },
"Signal Strength": {
"Signal Strength": ""
},
"Signal:": { "Signal:": {
"Signal:": "Signalo:" "Signal:": "Signalo:"
}, },
@@ -8123,6 +8177,9 @@
"Typography & Motion": { "Typography & Motion": {
"Typography & Motion": "Tipografio kaj movo" "Typography & Motion": "Tipografio kaj movo"
}, },
"URI": {
"URI": ""
},
"Unavailable": { "Unavailable": {
"Unavailable": "Nedisponebla" "Unavailable": "Nedisponebla"
}, },
@@ -8459,6 +8516,9 @@
"VPN configuration updated": { "VPN configuration updated": {
"VPN configuration updated": "Agordo de VPN estas ĝisdatigita" "VPN configuration updated": "Agordo de VPN estas ĝisdatigita"
}, },
"VPN credentials saved": {
"VPN credentials saved": ""
},
"VPN deleted": { "VPN deleted": {
"VPN deleted": "VPN estas forigita" "VPN deleted": "VPN estas forigita"
}, },
@@ -8552,6 +8612,9 @@
"Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": {
"Volume, brightness, and other system OSDs": "Laŭteco, brileco, kaj aliaj sistemaj OSD-oj" "Volume, brightness, and other system OSDs": "Laŭteco, brileco, kaj aliaj sistemaj OSD-oj"
}, },
"Votes": {
"Votes": ""
},
"WPA/WPA2": { "WPA/WPA2": {
"WPA/WPA2": "WPA/WPA2" "WPA/WPA2": "WPA/WPA2"
}, },
@@ -8846,12 +8909,18 @@
"brandon": { "brandon": {
"brandon": "brandon" "brandon": "brandon"
}, },
"broken": {
"broken": ""
},
"by %1": { "by %1": {
"by %1": "de %1" "by %1": "de %1"
}, },
"days": { "days": {
"days": "tagoj" "days": "tagoj"
}, },
"deprecated": {
"deprecated": ""
},
"detached": { "detached": {
"detached": "deigita" "detached": "deigita"
}, },
@@ -8867,6 +8936,9 @@
"direct": { "direct": {
"direct": "senpera" "direct": "senpera"
}, },
"discuss": {
"discuss": ""
},
"dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": {
"dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": "dms estas tre agordebla, moderna labortabla ŝelo kun dezajno <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">inspirita de material 3</a>.<br /><br/>Ĝi estas konstruita per <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, QT6-kadro por konstrui labortablajn ŝelojn, kaj <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, statike tipita, kompilita programlingvo." "dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": "dms estas tre agordebla, moderna labortabla ŝelo kun dezajno <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">inspirita de material 3</a>.<br /><br/>Ĝi estas konstruita per <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, QT6-kadro por konstrui labortablajn ŝelojn, kaj <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, statike tipita, kompilita programlingvo."
}, },
@@ -9026,6 +9098,9 @@
"this app": { "this app": {
"this app": "ĉi tiu aplikaĵo" "this app": "ĉi tiu aplikaĵo"
}, },
"unmaintained": {
"unmaintained": ""
},
"until %1": { "until %1": {
"until %1": "ĝis %1" "until %1": "ĝis %1"
}, },
@@ -9047,6 +9122,9 @@
"v%1 by %2": { "v%1 by %2": {
"v%1 by %2": "v%1 de %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 not available - install wtype for paste support": "wtype ne disponeblas - instalu wtype por alglua subteno" "wtype not available - install wtype for paste support": "wtype ne disponeblas - instalu wtype por alglua subteno"
}, },
+78
View File
@@ -107,6 +107,9 @@
"%1 windows": { "%1 windows": {
"%1 windows": "" "%1 windows": ""
}, },
"%1: %2": {
"%1: %2": ""
},
"%1m ago": { "%1m ago": {
"%1m ago": "hace %1m" "%1m ago": "hace %1m"
}, },
@@ -1790,6 +1793,9 @@
"Connecting...": { "Connecting...": {
"Connecting...": "Conectando..." "Connecting...": "Conectando..."
}, },
"Connecting…": {
"Connecting…": ""
},
"Connection failed": { "Connection failed": {
"Connection failed": "" "Connection failed": ""
}, },
@@ -1970,6 +1976,9 @@
"Creating...": { "Creating...": {
"Creating...": "Creando..." "Creating...": "Creando..."
}, },
"Credentials": {
"Credentials": ""
},
"Critical Battery": { "Critical Battery": {
"Critical Battery": "" "Critical Battery": ""
}, },
@@ -2828,6 +2837,9 @@
"Enter PIN for ": { "Enter PIN for ": {
"Enter PIN for ": "Ingresar PIN para " "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": {
"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 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": {
"Failed to save audio config": "" "Failed to save audio config": ""
}, },
@@ -3158,6 +3173,9 @@
"Failed to save profile": { "Failed to save profile": {
"Failed to save profile": "" "Failed to save profile": ""
}, },
"Failed to send SMS": {
"Failed to send SMS": ""
},
"Failed to send clipboard": { "Failed to send clipboard": {
"Failed to send clipboard": "" "Failed to send clipboard": ""
}, },
@@ -3503,6 +3521,9 @@
"Format Legend": { "Format Legend": {
"Format Legend": "Guía de formato" "Format Legend": "Guía de formato"
}, },
"Forward 10s": {
"Forward 10s": ""
},
"Frame": { "Frame": {
"Frame": "" "Frame": ""
}, },
@@ -3818,6 +3839,9 @@
"Hide device": { "Hide device": {
"Hide device": "" "Hide device": ""
}, },
"Hide installed": {
"Hide installed": ""
},
"Hide notification content until expanded": { "Hide notification content until expanded": {
"Hide notification content until expanded": "" "Hide notification content until expanded": ""
}, },
@@ -4127,6 +4151,9 @@
"Installed": { "Installed": {
"Installed": "Instalado" "Installed": "Instalado"
}, },
"Installed first": {
"Installed first": ""
},
"Installed: %1": { "Installed: %1": {
"Installed: %1": "Instalado: %1" "Installed: %1": "Instalado: %1"
}, },
@@ -4952,6 +4979,9 @@
"Network Status": { "Network Status": {
"Network Status": "Estado de conexión" "Network Status": "Estado de conexión"
}, },
"Network Type": {
"Network Type": ""
},
"Network download and upload speed display": { "Network download and upload speed display": {
"Network download and upload speed display": "Mostrar velocidad de descarga y subida de la red" "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 human user accounts found.": "" "No human user accounts found.": ""
}, },
"No images found": {
"No images found": ""
},
"No info items": { "No info items": {
"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": {
"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.": {
"Play a video when the screen locks.": "" "Play a video when the screen locks.": ""
}, },
@@ -6101,6 +6137,9 @@
"Preview: %1": { "Preview: %1": {
"Preview: %1": "" "Preview: %1": ""
}, },
"Previous": {
"Previous": ""
},
"Primary": { "Primary": {
"Primary": "Primario" "Primary": "Primario"
}, },
@@ -6287,6 +6326,9 @@
"Recent Colors": { "Recent Colors": {
"Recent Colors": "Colores recientes" "Recent Colors": "Colores recientes"
}, },
"Recent Images": {
"Recent Images": ""
},
"Recently Used Apps": { "Recently Used Apps": {
"Recently Used Apps": "Aplicaciones usadas recientemente" "Recently Used Apps": "Aplicaciones usadas recientemente"
}, },
@@ -6509,6 +6551,9 @@
"Revert": { "Revert": {
"Revert": "Revertir" "Revert": "Revertir"
}, },
"Rewind 10s": {
"Rewind 10s": ""
},
"Right": { "Right": {
"Right": "Derecha" "Right": "Derecha"
}, },
@@ -6596,6 +6641,9 @@
"SMS": { "SMS": {
"SMS": "" "SMS": ""
}, },
"SMS sent successfully": {
"SMS sent successfully": ""
},
"Saturation": { "Saturation": {
"Saturation": "" "Saturation": ""
}, },
@@ -6617,6 +6665,9 @@
"Save and switch between display configurations": { "Save and switch between display configurations": {
"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": {
"Save critical priority notifications to history": "Guardar en el historial las notificaciones de prioridad crítica" "Save critical priority notifications to history": "Guardar en el historial las notificaciones de prioridad crítica"
}, },
@@ -7370,6 +7421,9 @@
"Signal": { "Signal": {
"Signal": "Señal" "Signal": "Señal"
}, },
"Signal Strength": {
"Signal Strength": ""
},
"Signal:": { "Signal:": {
"Signal:": "Señal:" "Signal:": "Señal:"
}, },
@@ -8123,6 +8177,9 @@
"Typography & Motion": { "Typography & Motion": {
"Typography & Motion": "Tipografia y movimiento" "Typography & Motion": "Tipografia y movimiento"
}, },
"URI": {
"URI": ""
},
"Unavailable": { "Unavailable": {
"Unavailable": "No disponible" "Unavailable": "No disponible"
}, },
@@ -8459,6 +8516,9 @@
"VPN configuration updated": { "VPN configuration updated": {
"VPN configuration updated": "Configuración VPN actualizada" "VPN configuration updated": "Configuración VPN actualizada"
}, },
"VPN credentials saved": {
"VPN credentials saved": ""
},
"VPN deleted": { "VPN deleted": {
"VPN deleted": "VPN eliminada" "VPN deleted": "VPN eliminada"
}, },
@@ -8552,6 +8612,9 @@
"Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": {
"Volume, brightness, and other system OSDs": "Volumen, brillo y otros indicadores en pantalla" "Volume, brightness, and other system OSDs": "Volumen, brillo y otros indicadores en pantalla"
}, },
"Votes": {
"Votes": ""
},
"WPA/WPA2": { "WPA/WPA2": {
"WPA/WPA2": "WPA/WPA2" "WPA/WPA2": "WPA/WPA2"
}, },
@@ -8846,12 +8909,18 @@
"brandon": { "brandon": {
"brandon": "" "brandon": ""
}, },
"broken": {
"broken": ""
},
"by %1": { "by %1": {
"by %1": "por %1" "by %1": "por %1"
}, },
"days": { "days": {
"days": "dias" "days": "dias"
}, },
"deprecated": {
"deprecated": ""
},
"detached": { "detached": {
"detached": "" "detached": ""
}, },
@@ -8867,6 +8936,9 @@
"direct": { "direct": {
"direct": "" "direct": ""
}, },
"discuss": {
"discuss": ""
},
"dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": {
"dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": "" "dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": ""
}, },
@@ -9026,6 +9098,9 @@
"this app": { "this app": {
"this app": "" "this app": ""
}, },
"unmaintained": {
"unmaintained": ""
},
"until %1": { "until %1": {
"until %1": "" "until %1": ""
}, },
@@ -9047,6 +9122,9 @@
"v%1 by %2": { "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 not available - install wtype for paste support": "wtype no disponible - instala wtype para soporte de pegado" "wtype not available - install wtype for paste support": "wtype no disponible - instala wtype para soporte de pegado"
}, },
+78
View File
@@ -107,6 +107,9 @@
"%1 windows": { "%1 windows": {
"%1 windows": "%1 پنجره" "%1 windows": "%1 پنجره"
}, },
"%1: %2": {
"%1: %2": ""
},
"%1m ago": { "%1m ago": {
"%1m ago": "%1 دقیقه پیش" "%1m ago": "%1 دقیقه پیش"
}, },
@@ -1790,6 +1793,9 @@
"Connecting...": { "Connecting...": {
"Connecting...": "درحال اتصال..." "Connecting...": "درحال اتصال..."
}, },
"Connecting…": {
"Connecting…": ""
},
"Connection failed": { "Connection failed": {
"Connection failed": "اتصال ناموفق بود" "Connection failed": "اتصال ناموفق بود"
}, },
@@ -1970,6 +1976,9 @@
"Creating...": { "Creating...": {
"Creating...": "درحال ایجاد..." "Creating...": "درحال ایجاد..."
}, },
"Credentials": {
"Credentials": ""
},
"Critical Battery": { "Critical Battery": {
"Critical Battery": "" "Critical Battery": ""
}, },
@@ -2828,6 +2837,9 @@
"Enter PIN for ": { "Enter PIN for ": {
"Enter PIN for ": "ورود PIN برای " "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": {
"Enter URL or text to share": "متن یا URL برای اشتراک‌گذاری وارد کنید" "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.": {
"Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": "اجرای 'dms greeter status' ناموفق بود. از نصب DMS و بودن dms در 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": {
"Failed to save audio config": "ذخیره پیکربندی صوتی ناموفق بود" "Failed to save audio config": "ذخیره پیکربندی صوتی ناموفق بود"
}, },
@@ -3158,6 +3173,9 @@
"Failed to save profile": { "Failed to save profile": {
"Failed to save profile": "ذخیره پروفایل ناموفق بود" "Failed to save profile": "ذخیره پروفایل ناموفق بود"
}, },
"Failed to send SMS": {
"Failed to send SMS": ""
},
"Failed to send clipboard": { "Failed to send clipboard": {
"Failed to send clipboard": "ارسال کلیپ‌بورد ناموفق بود" "Failed to send clipboard": "ارسال کلیپ‌بورد ناموفق بود"
}, },
@@ -3503,6 +3521,9 @@
"Format Legend": { "Format Legend": {
"Format Legend": "راهنمای قالب‌بندی" "Format Legend": "راهنمای قالب‌بندی"
}, },
"Forward 10s": {
"Forward 10s": ""
},
"Frame": { "Frame": {
"Frame": "قاب" "Frame": "قاب"
}, },
@@ -3818,6 +3839,9 @@
"Hide device": { "Hide device": {
"Hide device": "پنهان کردن دستگاه" "Hide device": "پنهان کردن دستگاه"
}, },
"Hide installed": {
"Hide installed": ""
},
"Hide notification content until expanded": { "Hide notification content until expanded": {
"Hide notification content until expanded": "پنهان کردن محتوای اعلان را تا هنگام گسترش" "Hide notification content until expanded": "پنهان کردن محتوای اعلان را تا هنگام گسترش"
}, },
@@ -4127,6 +4151,9 @@
"Installed": { "Installed": {
"Installed": "نصب شده" "Installed": "نصب شده"
}, },
"Installed first": {
"Installed first": ""
},
"Installed: %1": { "Installed: %1": {
"Installed: %1": "نصب شده: %1" "Installed: %1": "نصب شده: %1"
}, },
@@ -4952,6 +4979,9 @@
"Network Status": { "Network Status": {
"Network Status": "وضعیت شبکه" "Network Status": "وضعیت شبکه"
}, },
"Network Type": {
"Network Type": ""
},
"Network download and upload speed display": { "Network download and upload speed display": {
"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 human user accounts found.": "هیچ حساب کاربری انسانی یافت نشد." "No human user accounts found.": "هیچ حساب کاربری انسانی یافت نشد."
}, },
"No images found": {
"No images found": ""
},
"No info items": { "No info items": {
"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": {
"Place the dock on the Wayland overlay layer": "داک را روی لایه overlay ویلند قرار بده" "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.": {
"Play a video when the screen locks.": "یک ویدئو هنگامی که صفحه قفل شده پخش شود." "Play a video when the screen locks.": "یک ویدئو هنگامی که صفحه قفل شده پخش شود."
}, },
@@ -6101,6 +6137,9 @@
"Preview: %1": { "Preview: %1": {
"Preview: %1": "" "Preview: %1": ""
}, },
"Previous": {
"Previous": ""
},
"Primary": { "Primary": {
"Primary": "اصلی" "Primary": "اصلی"
}, },
@@ -6287,6 +6326,9 @@
"Recent Colors": { "Recent Colors": {
"Recent Colors": "رنگ‌های اخیر" "Recent Colors": "رنگ‌های اخیر"
}, },
"Recent Images": {
"Recent Images": ""
},
"Recently Used Apps": { "Recently Used Apps": {
"Recently Used Apps": "برنامه‌های استفاده شده اخیر" "Recently Used Apps": "برنامه‌های استفاده شده اخیر"
}, },
@@ -6509,6 +6551,9 @@
"Revert": { "Revert": {
"Revert": "برگرداندن" "Revert": "برگرداندن"
}, },
"Rewind 10s": {
"Rewind 10s": ""
},
"Right": { "Right": {
"Right": "راست" "Right": "راست"
}, },
@@ -6596,6 +6641,9 @@
"SMS": { "SMS": {
"SMS": "SMS" "SMS": "SMS"
}, },
"SMS sent successfully": {
"SMS sent successfully": ""
},
"Saturation": { "Saturation": {
"Saturation": "" "Saturation": ""
}, },
@@ -6617,6 +6665,9 @@
"Save and switch between display configurations": { "Save and switch between display configurations": {
"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": {
"Save critical priority notifications to history": "اعلان‌ها با اولویت حیاتی را در تاریخچه ذخیره کن" "Save critical priority notifications to history": "اعلان‌ها با اولویت حیاتی را در تاریخچه ذخیره کن"
}, },
@@ -7370,6 +7421,9 @@
"Signal": { "Signal": {
"Signal": "سیگنال" "Signal": "سیگنال"
}, },
"Signal Strength": {
"Signal Strength": ""
},
"Signal:": { "Signal:": {
"Signal:": "سیگنال:" "Signal:": "سیگنال:"
}, },
@@ -8123,6 +8177,9 @@
"Typography & Motion": { "Typography & Motion": {
"Typography & Motion": "تایپوگرافی و حرکت" "Typography & Motion": "تایپوگرافی و حرکت"
}, },
"URI": {
"URI": ""
},
"Unavailable": { "Unavailable": {
"Unavailable": "ناموجود" "Unavailable": "ناموجود"
}, },
@@ -8459,6 +8516,9 @@
"VPN configuration updated": { "VPN configuration updated": {
"VPN configuration updated": "گذرواژه VPN بروز شد" "VPN configuration updated": "گذرواژه VPN بروز شد"
}, },
"VPN credentials saved": {
"VPN credentials saved": ""
},
"VPN deleted": { "VPN deleted": {
"VPN deleted": "VPN حذف شد" "VPN deleted": "VPN حذف شد"
}, },
@@ -8552,6 +8612,9 @@
"Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": {
"Volume, brightness, and other system OSDs": "OSD‌های حجم صدا، روشنایی و سیستمی" "Volume, brightness, and other system OSDs": "OSD‌های حجم صدا، روشنایی و سیستمی"
}, },
"Votes": {
"Votes": ""
},
"WPA/WPA2": { "WPA/WPA2": {
"WPA/WPA2": "WPA/WPA2" "WPA/WPA2": "WPA/WPA2"
}, },
@@ -8846,12 +8909,18 @@
"brandon": { "brandon": {
"brandon": "براندون" "brandon": "براندون"
}, },
"broken": {
"broken": ""
},
"by %1": { "by %1": {
"by %1": "توسط %1" "by %1": "توسط %1"
}, },
"days": { "days": {
"days": "روز" "days": "روز"
}, },
"deprecated": {
"deprecated": ""
},
"detached": { "detached": {
"detached": "جدا شد" "detached": "جدا شد"
}, },
@@ -8867,6 +8936,9 @@
"direct": { "direct": {
"direct": "مستقیم" "direct": "مستقیم"
}, },
"discuss": {
"discuss": ""
},
"dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": {
"dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": "" "dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": ""
}, },
@@ -9026,6 +9098,9 @@
"this app": { "this app": {
"this app": "این برنامه" "this app": "این برنامه"
}, },
"unmaintained": {
"unmaintained": ""
},
"until %1": { "until %1": {
"until %1": "تا %1" "until %1": "تا %1"
}, },
@@ -9047,6 +9122,9 @@
"v%1 by %2": { "v%1 by %2": {
"v%1 by %2": "نسخه %1 توسط %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 not available - install wtype for paste support": "wtype در دسترس نیست - wtype را برای پشتیبانی از الصاق نصب کنید" "wtype not available - install wtype for paste support": "wtype در دسترس نیست - wtype را برای پشتیبانی از الصاق نصب کنید"
}, },
+78
View File
@@ -107,6 +107,9 @@
"%1 windows": { "%1 windows": {
"%1 windows": "%1 fenêtres" "%1 windows": "%1 fenêtres"
}, },
"%1: %2": {
"%1: %2": ""
},
"%1m ago": { "%1m ago": {
"%1m ago": "il y a %1 min" "%1m ago": "il y a %1 min"
}, },
@@ -1790,6 +1793,9 @@
"Connecting...": { "Connecting...": {
"Connecting...": "Connexion..." "Connecting...": "Connexion..."
}, },
"Connecting…": {
"Connecting…": ""
},
"Connection failed": { "Connection failed": {
"Connection failed": "Connexion échouée" "Connection failed": "Connexion échouée"
}, },
@@ -1970,6 +1976,9 @@
"Creating...": { "Creating...": {
"Creating...": "Création..." "Creating...": "Création..."
}, },
"Credentials": {
"Credentials": ""
},
"Critical Battery": { "Critical Battery": {
"Critical Battery": "" "Critical Battery": ""
}, },
@@ -2828,6 +2837,9 @@
"Enter PIN for ": { "Enter PIN for ": {
"Enter PIN for ": "Saisir le code PIN pour " "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": {
"Enter URL or text to share": "Entrer l'URL ou le texte à partager" "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.": {
"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 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": {
"Failed to save audio config": "Échec de la sauvegarde de la config audio" "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 save profile": "" "Failed to save profile": ""
}, },
"Failed to send SMS": {
"Failed to send SMS": ""
},
"Failed to send clipboard": { "Failed to send clipboard": {
"Failed to send clipboard": "Échec de l'envoi du presse-papier" "Failed to send clipboard": "Échec de l'envoi du presse-papier"
}, },
@@ -3503,6 +3521,9 @@
"Format Legend": { "Format Legend": {
"Format Legend": "Légende du format" "Format Legend": "Légende du format"
}, },
"Forward 10s": {
"Forward 10s": ""
},
"Frame": { "Frame": {
"Frame": "" "Frame": ""
}, },
@@ -3818,6 +3839,9 @@
"Hide device": { "Hide device": {
"Hide device": "Masquer l'appareil" "Hide device": "Masquer l'appareil"
}, },
"Hide installed": {
"Hide installed": ""
},
"Hide notification content until expanded": { "Hide notification content until expanded": {
"Hide notification content until expanded": "Masquer le contenu des notifications tant qu'elles ne sont pas développées" "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": {
"Installed": "Installé" "Installed": "Installé"
}, },
"Installed first": {
"Installed first": ""
},
"Installed: %1": { "Installed: %1": {
"Installed: %1": "Installé : %1" "Installed: %1": "Installé : %1"
}, },
@@ -4952,6 +4979,9 @@
"Network Status": { "Network Status": {
"Network Status": "État du réseau" "Network Status": "État du réseau"
}, },
"Network Type": {
"Network Type": ""
},
"Network download and upload speed display": { "Network download and upload speed display": {
"Network download and upload speed display": "Affichage des vitesses de téléchargement et denvoi du réseau" "Network download and upload speed display": "Affichage des vitesses de téléchargement et denvoi du réseau"
}, },
@@ -5180,6 +5210,9 @@
"No human user accounts found.": { "No human user accounts found.": {
"No human user accounts found.": "" "No human user accounts found.": ""
}, },
"No images found": {
"No images found": ""
},
"No info items": { "No info items": {
"No info items": "Aucune information" "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": {
"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.": {
"Play a video when the screen locks.": "Lancer une vidéo lorsque l'écran se verrouille." "Play a video when the screen locks.": "Lancer une vidéo lorsque l'écran se verrouille."
}, },
@@ -6101,6 +6137,9 @@
"Preview: %1": { "Preview: %1": {
"Preview: %1": "" "Preview: %1": ""
}, },
"Previous": {
"Previous": ""
},
"Primary": { "Primary": {
"Primary": "Principal" "Primary": "Principal"
}, },
@@ -6287,6 +6326,9 @@
"Recent Colors": { "Recent Colors": {
"Recent Colors": "Couleurs récentes" "Recent Colors": "Couleurs récentes"
}, },
"Recent Images": {
"Recent Images": ""
},
"Recently Used Apps": { "Recently Used Apps": {
"Recently Used Apps": "Applications récemment utilisées" "Recently Used Apps": "Applications récemment utilisées"
}, },
@@ -6509,6 +6551,9 @@
"Revert": { "Revert": {
"Revert": "Annuler" "Revert": "Annuler"
}, },
"Rewind 10s": {
"Rewind 10s": ""
},
"Right": { "Right": {
"Right": "Droite" "Right": "Droite"
}, },
@@ -6596,6 +6641,9 @@
"SMS": { "SMS": {
"SMS": "SMS" "SMS": "SMS"
}, },
"SMS sent successfully": {
"SMS sent successfully": ""
},
"Saturation": { "Saturation": {
"Saturation": "" "Saturation": ""
}, },
@@ -6617,6 +6665,9 @@
"Save and switch between display configurations": { "Save and switch between display configurations": {
"Save and switch between display configurations": "Enregistrer et basculer entre les configurations daffichage" "Save and switch between display configurations": "Enregistrer et basculer entre les configurations daffichage"
}, },
"Save credentials": {
"Save credentials": ""
},
"Save critical priority notifications to history": { "Save critical priority notifications to history": {
"Save critical priority notifications to history": "Enregistrer les notifications de priorité critique dans lhistorique" "Save critical priority notifications to history": "Enregistrer les notifications de priorité critique dans lhistorique"
}, },
@@ -7370,6 +7421,9 @@
"Signal": { "Signal": {
"Signal": "Signal" "Signal": "Signal"
}, },
"Signal Strength": {
"Signal Strength": ""
},
"Signal:": { "Signal:": {
"Signal:": "Signal :" "Signal:": "Signal :"
}, },
@@ -8123,6 +8177,9 @@
"Typography & Motion": { "Typography & Motion": {
"Typography & Motion": "Typographie et animation" "Typography & Motion": "Typographie et animation"
}, },
"URI": {
"URI": ""
},
"Unavailable": { "Unavailable": {
"Unavailable": "Indisponible" "Unavailable": "Indisponible"
}, },
@@ -8459,6 +8516,9 @@
"VPN configuration updated": { "VPN configuration updated": {
"VPN configuration updated": "Configuration VPN mise à jour" "VPN configuration updated": "Configuration VPN mise à jour"
}, },
"VPN credentials saved": {
"VPN credentials saved": ""
},
"VPN deleted": { "VPN deleted": {
"VPN deleted": "VPN supprimée" "VPN deleted": "VPN supprimée"
}, },
@@ -8552,6 +8612,9 @@
"Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": {
"Volume, brightness, and other system OSDs": "Volume, luminosité et autres affichages système" "Volume, brightness, and other system OSDs": "Volume, luminosité et autres affichages système"
}, },
"Votes": {
"Votes": ""
},
"WPA/WPA2": { "WPA/WPA2": {
"WPA/WPA2": "WPA/WPA2" "WPA/WPA2": "WPA/WPA2"
}, },
@@ -8846,12 +8909,18 @@
"brandon": { "brandon": {
"brandon": "brandon" "brandon": "brandon"
}, },
"broken": {
"broken": ""
},
"by %1": { "by %1": {
"by %1": "par %1" "by %1": "par %1"
}, },
"days": { "days": {
"days": "jours" "days": "jours"
}, },
"deprecated": {
"deprecated": ""
},
"detached": { "detached": {
"detached": "détaché" "detached": "détaché"
}, },
@@ -8867,6 +8936,9 @@
"direct": { "direct": {
"direct": "" "direct": ""
}, },
"discuss": {
"discuss": ""
},
"dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": {
"dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": "" "dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": ""
}, },
@@ -9026,6 +9098,9 @@
"this app": { "this app": {
"this app": "cette appli" "this app": "cette appli"
}, },
"unmaintained": {
"unmaintained": ""
},
"until %1": { "until %1": {
"until %1": "" "until %1": ""
}, },
@@ -9047,6 +9122,9 @@
"v%1 by %2": { "v%1 by %2": {
"v%1 by %2": "v%1 par %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 not available - install wtype for paste support": "wtype non disponible - installez wtype pour le support du collage" "wtype not available - install wtype for paste support": "wtype non disponible - installez wtype pour le support du collage"
}, },
+78
View File
@@ -107,6 +107,9 @@
"%1 windows": { "%1 windows": {
"%1 windows": "%1 חלונות" "%1 windows": "%1 חלונות"
}, },
"%1: %2": {
"%1: %2": ""
},
"%1m ago": { "%1m ago": {
"%1m ago": "לפני %1 דקות" "%1m ago": "לפני %1 דקות"
}, },
@@ -1790,6 +1793,9 @@
"Connecting...": { "Connecting...": {
"Connecting...": "מתחבר..." "Connecting...": "מתחבר..."
}, },
"Connecting…": {
"Connecting…": ""
},
"Connection failed": { "Connection failed": {
"Connection failed": "החיבור נכשל" "Connection failed": "החיבור נכשל"
}, },
@@ -1970,6 +1976,9 @@
"Creating...": { "Creating...": {
"Creating...": "יוצר..." "Creating...": "יוצר..."
}, },
"Credentials": {
"Credentials": ""
},
"Critical Battery": { "Critical Battery": {
"Critical Battery": "" "Critical Battery": ""
}, },
@@ -2828,6 +2837,9 @@
"Enter PIN for ": { "Enter PIN for ": {
"Enter PIN for ": "הזן/י קוד PIN עבור " "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": {
"Enter URL or text to share": "הזן/י קישור (URL) או טקסט לשיתוף" "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.": {
"Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": "הרצת הפקודה 'dms greeter status' נכשלה. ודא/י שDMS מותקן ו-dms נמצא ב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": {
"Failed to save audio config": "שמירת הגדרות שמע נכשלה" "Failed to save audio config": "שמירת הגדרות שמע נכשלה"
}, },
@@ -3158,6 +3173,9 @@
"Failed to save profile": { "Failed to save profile": {
"Failed to save profile": "שמירת הפרופיל נכשלה" "Failed to save profile": "שמירת הפרופיל נכשלה"
}, },
"Failed to send SMS": {
"Failed to send SMS": ""
},
"Failed to send clipboard": { "Failed to send clipboard": {
"Failed to send clipboard": "שליחת לוח ההעתקה נכשלה" "Failed to send clipboard": "שליחת לוח ההעתקה נכשלה"
}, },
@@ -3503,6 +3521,9 @@
"Format Legend": { "Format Legend": {
"Format Legend": "מקרא תבניות" "Format Legend": "מקרא תבניות"
}, },
"Forward 10s": {
"Forward 10s": ""
},
"Frame": { "Frame": {
"Frame": "מסגרת" "Frame": "מסגרת"
}, },
@@ -3818,6 +3839,9 @@
"Hide device": { "Hide device": {
"Hide device": "הסתר/י התקן" "Hide device": "הסתר/י התקן"
}, },
"Hide installed": {
"Hide installed": ""
},
"Hide notification content until expanded": { "Hide notification content until expanded": {
"Hide notification content until expanded": "הסתר/י את תוכן ההתראה עד להרחבה" "Hide notification content until expanded": "הסתר/י את תוכן ההתראה עד להרחבה"
}, },
@@ -4127,6 +4151,9 @@
"Installed": { "Installed": {
"Installed": "מותקן" "Installed": "מותקן"
}, },
"Installed first": {
"Installed first": ""
},
"Installed: %1": { "Installed: %1": {
"Installed: %1": "הותקן: %1" "Installed: %1": "הותקן: %1"
}, },
@@ -4952,6 +4979,9 @@
"Network Status": { "Network Status": {
"Network Status": "מצב רשת" "Network Status": "מצב רשת"
}, },
"Network Type": {
"Network Type": ""
},
"Network download and upload speed display": { "Network download and upload speed display": {
"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 human user accounts found.": "לא נמצאו חשבונות משתמש אנושיים." "No human user accounts found.": "לא נמצאו חשבונות משתמש אנושיים."
}, },
"No images found": {
"No images found": ""
},
"No info items": { "No info items": {
"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": {
"Place the dock on the Wayland overlay layer": "הצב/י את הDock בשכבת הכיסוי העליונה (overlay layer) של Wayland" "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.": {
"Play a video when the screen locks.": "נגן/י וידאו כאשר המסך ננעל." "Play a video when the screen locks.": "נגן/י וידאו כאשר המסך ננעל."
}, },
@@ -6101,6 +6137,9 @@
"Preview: %1": { "Preview: %1": {
"Preview: %1": "" "Preview: %1": ""
}, },
"Previous": {
"Previous": ""
},
"Primary": { "Primary": {
"Primary": "ראשי" "Primary": "ראשי"
}, },
@@ -6287,6 +6326,9 @@
"Recent Colors": { "Recent Colors": {
"Recent Colors": "צבעים אחרונים" "Recent Colors": "צבעים אחרונים"
}, },
"Recent Images": {
"Recent Images": ""
},
"Recently Used Apps": { "Recently Used Apps": {
"Recently Used Apps": "אפליקציות שהיו בשימוש לאחרונה" "Recently Used Apps": "אפליקציות שהיו בשימוש לאחרונה"
}, },
@@ -6509,6 +6551,9 @@
"Revert": { "Revert": {
"Revert": "חזור/חזרי" "Revert": "חזור/חזרי"
}, },
"Rewind 10s": {
"Rewind 10s": ""
},
"Right": { "Right": {
"Right": "ימין" "Right": "ימין"
}, },
@@ -6596,6 +6641,9 @@
"SMS": { "SMS": {
"SMS": "SMS" "SMS": "SMS"
}, },
"SMS sent successfully": {
"SMS sent successfully": ""
},
"Saturation": { "Saturation": {
"Saturation": "רוויה" "Saturation": "רוויה"
}, },
@@ -6617,6 +6665,9 @@
"Save and switch between display configurations": { "Save and switch between display configurations": {
"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": {
"Save critical priority notifications to history": "שמור/י התראות בעדיפות קריטית להיסטוריה" "Save critical priority notifications to history": "שמור/י התראות בעדיפות קריטית להיסטוריה"
}, },
@@ -7370,6 +7421,9 @@
"Signal": { "Signal": {
"Signal": "אות" "Signal": "אות"
}, },
"Signal Strength": {
"Signal Strength": ""
},
"Signal:": { "Signal:": {
"Signal:": "אות:" "Signal:": "אות:"
}, },
@@ -8123,6 +8177,9 @@
"Typography & Motion": { "Typography & Motion": {
"Typography & Motion": "טיפוגרפיה ותנועה" "Typography & Motion": "טיפוגרפיה ותנועה"
}, },
"URI": {
"URI": ""
},
"Unavailable": { "Unavailable": {
"Unavailable": "לא זמין" "Unavailable": "לא זמין"
}, },
@@ -8459,6 +8516,9 @@
"VPN configuration updated": { "VPN configuration updated": {
"VPN configuration updated": "תצורת הVPN עודכנה" "VPN configuration updated": "תצורת הVPN עודכנה"
}, },
"VPN credentials saved": {
"VPN credentials saved": ""
},
"VPN deleted": { "VPN deleted": {
"VPN deleted": "הVPN נמחק" "VPN deleted": "הVPN נמחק"
}, },
@@ -8552,6 +8612,9 @@
"Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": {
"Volume, brightness, and other system OSDs": "עוצמת שמע, בהירות ותצוגות מערכת (OSD) אחרות על המסך" "Volume, brightness, and other system OSDs": "עוצמת שמע, בהירות ותצוגות מערכת (OSD) אחרות על המסך"
}, },
"Votes": {
"Votes": ""
},
"WPA/WPA2": { "WPA/WPA2": {
"WPA/WPA2": "WPA/WPA2" "WPA/WPA2": "WPA/WPA2"
}, },
@@ -8846,12 +8909,18 @@
"brandon": { "brandon": {
"brandon": "brandon" "brandon": "brandon"
}, },
"broken": {
"broken": ""
},
"by %1": { "by %1": {
"by %1": "מאת %1" "by %1": "מאת %1"
}, },
"days": { "days": {
"days": "ימים" "days": "ימים"
}, },
"deprecated": {
"deprecated": ""
},
"detached": { "detached": {
"detached": "מנותק" "detached": "מנותק"
}, },
@@ -8867,6 +8936,9 @@
"direct": { "direct": {
"direct": "ישיר" "direct": "ישיר"
}, },
"discuss": {
"discuss": ""
},
"dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": {
"dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": "הפרויקט DMS הוא מעטפת שולחן עבודה מודרנית וניתנת להתאמה אישית עם עיצוב בהשראת <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">Material Design 3</a> של גוגל.<br /><br/>היא נבנתה עם שפת התכנות <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a> ו<a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, ספריית QT6 לבניית מעטפות לשולחן העבודה." "dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": "הפרויקט DMS הוא מעטפת שולחן עבודה מודרנית וניתנת להתאמה אישית עם עיצוב בהשראת <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">Material Design 3</a> של גוגל.<br /><br/>היא נבנתה עם שפת התכנות <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a> ו<a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, ספריית QT6 לבניית מעטפות לשולחן העבודה."
}, },
@@ -9026,6 +9098,9 @@
"this app": { "this app": {
"this app": "אפליקציה זו" "this app": "אפליקציה זו"
}, },
"unmaintained": {
"unmaintained": ""
},
"until %1": { "until %1": {
"until %1": "עד %1" "until %1": "עד %1"
}, },
@@ -9047,6 +9122,9 @@
"v%1 by %2": { "v%1 by %2": {
"v%1 by %2": "v%1 מאת %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 not available - install wtype for paste support": "wtype אינו זמין - התקן/י את wtype כדי לאפשר תמיכה בהדבקה" "wtype not available - install wtype for paste support": "wtype אינו זמין - התקן/י את wtype כדי לאפשר תמיכה בהדבקה"
}, },
+78
View File
@@ -107,6 +107,9 @@
"%1 windows": { "%1 windows": {
"%1 windows": "%1 ablak" "%1 windows": "%1 ablak"
}, },
"%1: %2": {
"%1: %2": ""
},
"%1m ago": { "%1m ago": {
"%1m ago": "%1 perccel ezelőtt" "%1m ago": "%1 perccel ezelőtt"
}, },
@@ -1790,6 +1793,9 @@
"Connecting...": { "Connecting...": {
"Connecting...": "Csatlakozás…" "Connecting...": "Csatlakozás…"
}, },
"Connecting…": {
"Connecting…": ""
},
"Connection failed": { "Connection failed": {
"Connection failed": "Kapcsolódás sikertelen" "Connection failed": "Kapcsolódás sikertelen"
}, },
@@ -1970,6 +1976,9 @@
"Creating...": { "Creating...": {
"Creating...": "Létrehozás…" "Creating...": "Létrehozás…"
}, },
"Credentials": {
"Credentials": ""
},
"Critical Battery": { "Critical Battery": {
"Critical Battery": "" "Critical Battery": ""
}, },
@@ -2828,6 +2837,9 @@
"Enter PIN for ": { "Enter PIN for ": {
"Enter PIN for ": "PIN-kód megadása ehhez: " "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": {
"Enter URL or text to share": "Adj meg egy URL-t vagy szöveget a megosztáshoz" "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.": {
"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 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": {
"Failed to save audio config": "Nem sikerült menteni a hangkonfigurációt" "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": {
"Failed to save profile": "A profil mentése sikertelen" "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": {
"Failed to send clipboard": "Nem sikerült a vágólap elküldése" "Failed to send clipboard": "Nem sikerült a vágólap elküldése"
}, },
@@ -3503,6 +3521,9 @@
"Format Legend": { "Format Legend": {
"Format Legend": "Formátum-magyarázat" "Format Legend": "Formátum-magyarázat"
}, },
"Forward 10s": {
"Forward 10s": ""
},
"Frame": { "Frame": {
"Frame": "Keret" "Frame": "Keret"
}, },
@@ -3818,6 +3839,9 @@
"Hide device": { "Hide device": {
"Hide device": "Eszköz elrejtése" "Hide device": "Eszköz elrejtése"
}, },
"Hide installed": {
"Hide installed": ""
},
"Hide notification content until expanded": { "Hide notification content until expanded": {
"Hide notification content until expanded": "Értesítés tartalmának elrejtése a kibontásig" "Hide notification content until expanded": "Értesítés tartalmának elrejtése a kibontásig"
}, },
@@ -4127,6 +4151,9 @@
"Installed": { "Installed": {
"Installed": "Telepítve" "Installed": "Telepítve"
}, },
"Installed first": {
"Installed first": ""
},
"Installed: %1": { "Installed: %1": {
"Installed: %1": "Telepített: %1" "Installed: %1": "Telepített: %1"
}, },
@@ -4952,6 +4979,9 @@
"Network Status": { "Network Status": {
"Network Status": "Hálózati állapot" "Network Status": "Hálózati állapot"
}, },
"Network Type": {
"Network Type": ""
},
"Network download and upload speed display": { "Network download and upload speed display": {
"Network download and upload speed display": "Hálózati le- és feltöltési sebesség kijelzése" "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.": {
"No human user accounts found.": "Nem találhatók emberi felhasználói fiókok." "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": {
"No info items": "Nincsenek információs elemek" "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": {
"Place the dock on the Wayland overlay layer": "A dokk elhelyezése a Wayland-átfedési rétegen" "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.": {
"Play a video when the screen locks.": "Videó lejátszása a képernyő zárolásakor." "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": {
"Preview: %1": "" "Preview: %1": ""
}, },
"Previous": {
"Previous": ""
},
"Primary": { "Primary": {
"Primary": "Elsődleges" "Primary": "Elsődleges"
}, },
@@ -6287,6 +6326,9 @@
"Recent Colors": { "Recent Colors": {
"Recent Colors": "Legutóbbi színek" "Recent Colors": "Legutóbbi színek"
}, },
"Recent Images": {
"Recent Images": ""
},
"Recently Used Apps": { "Recently Used Apps": {
"Recently Used Apps": "Legutóbb használt alkalmazások" "Recently Used Apps": "Legutóbb használt alkalmazások"
}, },
@@ -6509,6 +6551,9 @@
"Revert": { "Revert": {
"Revert": "Visszaállítás" "Revert": "Visszaállítás"
}, },
"Rewind 10s": {
"Rewind 10s": ""
},
"Right": { "Right": {
"Right": "Jobb" "Right": "Jobb"
}, },
@@ -6596,6 +6641,9 @@
"SMS": { "SMS": {
"SMS": "SMS" "SMS": "SMS"
}, },
"SMS sent successfully": {
"SMS sent successfully": ""
},
"Saturation": { "Saturation": {
"Saturation": "Telítettség" "Saturation": "Telítettség"
}, },
@@ -6617,6 +6665,9 @@
"Save and switch between display configurations": { "Save and switch between display configurations": {
"Save and switch between display configurations": "Kijelző-konfigurációk mentése és váltása" "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": {
"Save critical priority notifications to history": "Kritikus prioritású értesítések mentése az előzményekbe" "Save critical priority notifications to history": "Kritikus prioritású értesítések mentése az előzményekbe"
}, },
@@ -7370,6 +7421,9 @@
"Signal": { "Signal": {
"Signal": "Jel" "Signal": "Jel"
}, },
"Signal Strength": {
"Signal Strength": ""
},
"Signal:": { "Signal:": {
"Signal:": "Jel:" "Signal:": "Jel:"
}, },
@@ -8123,6 +8177,9 @@
"Typography & Motion": { "Typography & Motion": {
"Typography & Motion": "Tipográfia és animáció" "Typography & Motion": "Tipográfia és animáció"
}, },
"URI": {
"URI": ""
},
"Unavailable": { "Unavailable": {
"Unavailable": "Nem érhető el" "Unavailable": "Nem érhető el"
}, },
@@ -8459,6 +8516,9 @@
"VPN configuration updated": { "VPN configuration updated": {
"VPN configuration updated": "VPN-konfiguráció frissítve" "VPN configuration updated": "VPN-konfiguráció frissítve"
}, },
"VPN credentials saved": {
"VPN credentials saved": ""
},
"VPN deleted": { "VPN deleted": {
"VPN deleted": "VPN-kapcsolat törölve" "VPN deleted": "VPN-kapcsolat törölve"
}, },
@@ -8552,6 +8612,9 @@
"Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": {
"Volume, brightness, and other system OSDs": "Hangerő, fényerő és egyéb rendszer képernyőkijelzők" "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": "WPA/WPA2" "WPA/WPA2": "WPA/WPA2"
}, },
@@ -8846,12 +8909,18 @@
"brandon": { "brandon": {
"brandon": "brandon" "brandon": "brandon"
}, },
"broken": {
"broken": ""
},
"by %1": { "by %1": {
"by %1": "ettől: %1" "by %1": "ettől: %1"
}, },
"days": { "days": {
"days": "nap" "days": "nap"
}, },
"deprecated": {
"deprecated": ""
},
"detached": { "detached": {
"detached": "leválasztva" "detached": "leválasztva"
}, },
@@ -8867,6 +8936,9 @@
"direct": { "direct": {
"direct": "közvetlen" "direct": "közvetlen"
}, },
"discuss": {
"discuss": ""
},
"dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": {
"dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": "A dms egy nagymértékben testreszabható, modern asztali héj, <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 ihlette</a> dizájnnal.<br /><br/>A <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>-lel, egy QT6 keretrendszerrel asztali héjak építéséhez, és a <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a> statikusan típusos, fordított programozási nyelvvel készült." "dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": "A dms egy nagymértékben testreszabható, modern asztali héj, <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 ihlette</a> dizájnnal.<br /><br/>A <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>-lel, egy QT6 keretrendszerrel asztali héjak építéséhez, és a <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a> statikusan típusos, fordított programozási nyelvvel készült."
}, },
@@ -9026,6 +9098,9 @@
"this app": { "this app": {
"this app": "ez az alkalmazás" "this app": "ez az alkalmazás"
}, },
"unmaintained": {
"unmaintained": ""
},
"until %1": { "until %1": {
"until %1": "eddig: %1" "until %1": "eddig: %1"
}, },
@@ -9047,6 +9122,9 @@
"v%1 by %2": { "v%1 by %2": {
"v%1 by %2": "v%1 ettől: %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": {
"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" "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"
}, },
+78
View File
@@ -107,6 +107,9 @@
"%1 windows": { "%1 windows": {
"%1 windows": "%1 finestre" "%1 windows": "%1 finestre"
}, },
"%1: %2": {
"%1: %2": ""
},
"%1m ago": { "%1m ago": {
"%1m ago": "%1 min fa" "%1m ago": "%1 min fa"
}, },
@@ -1790,6 +1793,9 @@
"Connecting...": { "Connecting...": {
"Connecting...": "Connessione in corso..." "Connecting...": "Connessione in corso..."
}, },
"Connecting…": {
"Connecting…": ""
},
"Connection failed": { "Connection failed": {
"Connection failed": "Connessione non riuscita" "Connection failed": "Connessione non riuscita"
}, },
@@ -1970,6 +1976,9 @@
"Creating...": { "Creating...": {
"Creating...": "Creazione in Corso..." "Creating...": "Creazione in Corso..."
}, },
"Credentials": {
"Credentials": ""
},
"Critical Battery": { "Critical Battery": {
"Critical Battery": "" "Critical Battery": ""
}, },
@@ -2828,6 +2837,9 @@
"Enter PIN for ": { "Enter PIN for ": {
"Enter PIN for ": "Inserisci PIN per " "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": {
"Enter URL or text to share": "Inserisci un URL o un testo da condividere" "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.": {
"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 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": {
"Failed to save audio config": "Impossibile salvare la configurazione audio" "Failed to save audio config": "Impossibile salvare la configurazione audio"
}, },
@@ -3158,6 +3173,9 @@
"Failed to save profile": { "Failed to save profile": {
"Failed to save profile": "Impossibile salvare il profilo" "Failed to save profile": "Impossibile salvare il profilo"
}, },
"Failed to send SMS": {
"Failed to send SMS": ""
},
"Failed to send clipboard": { "Failed to send clipboard": {
"Failed to send clipboard": "Impossibile inviare gli appunti" "Failed to send clipboard": "Impossibile inviare gli appunti"
}, },
@@ -3503,6 +3521,9 @@
"Format Legend": { "Format Legend": {
"Format Legend": "Legenda Formato" "Format Legend": "Legenda Formato"
}, },
"Forward 10s": {
"Forward 10s": ""
},
"Frame": { "Frame": {
"Frame": "Cornice" "Frame": "Cornice"
}, },
@@ -3818,6 +3839,9 @@
"Hide device": { "Hide device": {
"Hide device": "Nascondi dispositivo" "Hide device": "Nascondi dispositivo"
}, },
"Hide installed": {
"Hide installed": ""
},
"Hide notification content until expanded": { "Hide notification content until expanded": {
"Hide notification content until expanded": "Nascondi il contenuto della notifica finché non viene espansa" "Hide notification content until expanded": "Nascondi il contenuto della notifica finché non viene espansa"
}, },
@@ -4127,6 +4151,9 @@
"Installed": { "Installed": {
"Installed": "Installato" "Installed": "Installato"
}, },
"Installed first": {
"Installed first": ""
},
"Installed: %1": { "Installed: %1": {
"Installed: %1": "Installato: %1" "Installed: %1": "Installato: %1"
}, },
@@ -4952,6 +4979,9 @@
"Network Status": { "Network Status": {
"Network Status": "Stato Rete" "Network Status": "Stato Rete"
}, },
"Network Type": {
"Network Type": ""
},
"Network download and upload speed display": { "Network download and upload speed display": {
"Network download and upload speed display": "Mostra velocità di download e upload della rete" "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.": {
"No human user accounts found.": "Nessun account utente umano trovato." "No human user accounts found.": "Nessun account utente umano trovato."
}, },
"No images found": {
"No images found": ""
},
"No info items": { "No info items": {
"No info items": "Nessun elemento informativo" "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": {
"Place the dock on the Wayland overlay layer": "Posiziona il dock sul livello di sovrapposizione di Wayland" "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.": {
"Play a video when the screen locks.": "Riproduci un video quando lo schermo si blocca." "Play a video when the screen locks.": "Riproduci un video quando lo schermo si blocca."
}, },
@@ -6101,6 +6137,9 @@
"Preview: %1": { "Preview: %1": {
"Preview: %1": "" "Preview: %1": ""
}, },
"Previous": {
"Previous": ""
},
"Primary": { "Primary": {
"Primary": "Primario" "Primary": "Primario"
}, },
@@ -6287,6 +6326,9 @@
"Recent Colors": { "Recent Colors": {
"Recent Colors": "Colori Recenti" "Recent Colors": "Colori Recenti"
}, },
"Recent Images": {
"Recent Images": ""
},
"Recently Used Apps": { "Recently Used Apps": {
"Recently Used Apps": "App Usate Recentemente" "Recently Used Apps": "App Usate Recentemente"
}, },
@@ -6509,6 +6551,9 @@
"Revert": { "Revert": {
"Revert": "Ripristina" "Revert": "Ripristina"
}, },
"Rewind 10s": {
"Rewind 10s": ""
},
"Right": { "Right": {
"Right": "Destra" "Right": "Destra"
}, },
@@ -6596,6 +6641,9 @@
"SMS": { "SMS": {
"SMS": "SMS" "SMS": "SMS"
}, },
"SMS sent successfully": {
"SMS sent successfully": ""
},
"Saturation": { "Saturation": {
"Saturation": "Saturazione" "Saturation": "Saturazione"
}, },
@@ -6617,6 +6665,9 @@
"Save and switch between display configurations": { "Save and switch between display configurations": {
"Save and switch between display configurations": "Salva e passa tra le configurazioni dello schermo" "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": {
"Save critical priority notifications to history": "Salva nella cronologia le notifiche a priorità critica" "Save critical priority notifications to history": "Salva nella cronologia le notifiche a priorità critica"
}, },
@@ -7370,6 +7421,9 @@
"Signal": { "Signal": {
"Signal": "Segnale" "Signal": "Segnale"
}, },
"Signal Strength": {
"Signal Strength": ""
},
"Signal:": { "Signal:": {
"Signal:": "Segnale:" "Signal:": "Segnale:"
}, },
@@ -8123,6 +8177,9 @@
"Typography & Motion": { "Typography & Motion": {
"Typography & Motion": "Tipografia e Animazioni" "Typography & Motion": "Tipografia e Animazioni"
}, },
"URI": {
"URI": ""
},
"Unavailable": { "Unavailable": {
"Unavailable": "Non disponibile" "Unavailable": "Non disponibile"
}, },
@@ -8459,6 +8516,9 @@
"VPN configuration updated": { "VPN configuration updated": {
"VPN configuration updated": "Configurazione VPN aggiornata" "VPN configuration updated": "Configurazione VPN aggiornata"
}, },
"VPN credentials saved": {
"VPN credentials saved": ""
},
"VPN deleted": { "VPN deleted": {
"VPN deleted": "VPN eliminata" "VPN deleted": "VPN eliminata"
}, },
@@ -8552,6 +8612,9 @@
"Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": {
"Volume, brightness, and other system OSDs": "Volume, luminosità e altri indicatori a schermo di sistema" "Volume, brightness, and other system OSDs": "Volume, luminosità e altri indicatori a schermo di sistema"
}, },
"Votes": {
"Votes": ""
},
"WPA/WPA2": { "WPA/WPA2": {
"WPA/WPA2": "WPA/WPA2" "WPA/WPA2": "WPA/WPA2"
}, },
@@ -8846,12 +8909,18 @@
"brandon": { "brandon": {
"brandon": "brandon" "brandon": "brandon"
}, },
"broken": {
"broken": ""
},
"by %1": { "by %1": {
"by %1": "di %1" "by %1": "di %1"
}, },
"days": { "days": {
"days": "giorni" "days": "giorni"
}, },
"deprecated": {
"deprecated": ""
},
"detached": { "detached": {
"detached": "disconnesso" "detached": "disconnesso"
}, },
@@ -8867,6 +8936,9 @@
"direct": { "direct": {
"direct": "diretto" "direct": "diretto"
}, },
"discuss": {
"discuss": ""
},
"dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": {
"dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": "dms è una shell desktop moderna e altamente personalizzabile con un design ispirato a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">Material 3</a>.<br /><br/>È costruita con <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, un framework QT6 per la creazione di shell desktop, e <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, un linguaggio di programmazione compilato e staticamente tipizzato." "dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": "dms è una shell desktop moderna e altamente personalizzabile con un design ispirato a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">Material 3</a>.<br /><br/>È costruita con <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, un framework QT6 per la creazione di shell desktop, e <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, un linguaggio di programmazione compilato e staticamente tipizzato."
}, },
@@ -9026,6 +9098,9 @@
"this app": { "this app": {
"this app": "questa app" "this app": "questa app"
}, },
"unmaintained": {
"unmaintained": ""
},
"until %1": { "until %1": {
"until %1": "fino a %1" "until %1": "fino a %1"
}, },
@@ -9047,6 +9122,9 @@
"v%1 by %2": { "v%1 by %2": {
"v%1 by %2": "v%1 di %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 not available - install wtype for paste support": "wtype non disponibile installa wtype per il supporto alla funzione incolla" "wtype not available - install wtype for paste support": "wtype non disponibile installa wtype per il supporto alla funzione incolla"
}, },
+78
View File
@@ -107,6 +107,9 @@
"%1 windows": { "%1 windows": {
"%1 windows": "ウィンドウ %1 個" "%1 windows": "ウィンドウ %1 個"
}, },
"%1: %2": {
"%1: %2": ""
},
"%1m ago": { "%1m ago": {
"%1m ago": "%1分前" "%1m ago": "%1分前"
}, },
@@ -1790,6 +1793,9 @@
"Connecting...": { "Connecting...": {
"Connecting...": "接続中..." "Connecting...": "接続中..."
}, },
"Connecting…": {
"Connecting…": ""
},
"Connection failed": { "Connection failed": {
"Connection failed": "接続に失敗しました" "Connection failed": "接続に失敗しました"
}, },
@@ -1970,6 +1976,9 @@
"Creating...": { "Creating...": {
"Creating...": "作成中..." "Creating...": "作成中..."
}, },
"Credentials": {
"Credentials": ""
},
"Critical Battery": { "Critical Battery": {
"Critical Battery": "" "Critical Battery": ""
}, },
@@ -2828,6 +2837,9 @@
"Enter PIN for ": { "Enter PIN for ": {
"Enter PIN for ": "PINを入力してください " "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": {
"Enter URL or text to share": "共有する URL またはテキストを入力" "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.": {
"Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": "'dms greeter status' の実行に失敗しました。DMS がインストールされ、dms が 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": {
"Failed to save audio config": "オーディオ設定の保存に失敗しました" "Failed to save audio config": "オーディオ設定の保存に失敗しました"
}, },
@@ -3158,6 +3173,9 @@
"Failed to save profile": { "Failed to save profile": {
"Failed to save profile": "プロファイルの保存に失敗しました" "Failed to save profile": "プロファイルの保存に失敗しました"
}, },
"Failed to send SMS": {
"Failed to send SMS": ""
},
"Failed to send clipboard": { "Failed to send clipboard": {
"Failed to send clipboard": "クリップボードの送信に失敗しました" "Failed to send clipboard": "クリップボードの送信に失敗しました"
}, },
@@ -3503,6 +3521,9 @@
"Format Legend": { "Format Legend": {
"Format Legend": "フォーマット凡例" "Format Legend": "フォーマット凡例"
}, },
"Forward 10s": {
"Forward 10s": ""
},
"Frame": { "Frame": {
"Frame": "フレーム" "Frame": "フレーム"
}, },
@@ -3818,6 +3839,9 @@
"Hide device": { "Hide device": {
"Hide device": "デバイスを非表示" "Hide device": "デバイスを非表示"
}, },
"Hide installed": {
"Hide installed": ""
},
"Hide notification content until expanded": { "Hide notification content until expanded": {
"Hide notification content until expanded": "展開するまで通知内容を非表示" "Hide notification content until expanded": "展開するまで通知内容を非表示"
}, },
@@ -4127,6 +4151,9 @@
"Installed": { "Installed": {
"Installed": "インストール済み" "Installed": "インストール済み"
}, },
"Installed first": {
"Installed first": ""
},
"Installed: %1": { "Installed: %1": {
"Installed: %1": "インストール済み: %1" "Installed: %1": "インストール済み: %1"
}, },
@@ -4952,6 +4979,9 @@
"Network Status": { "Network Status": {
"Network Status": "ネットワーク状態" "Network Status": "ネットワーク状態"
}, },
"Network Type": {
"Network Type": ""
},
"Network download and upload speed display": { "Network download and upload speed display": {
"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 human user accounts found.": "" "No human user accounts found.": ""
}, },
"No images found": {
"No images found": ""
},
"No info items": { "No info items": {
"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": {
"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.": {
"Play a video when the screen locks.": "画面がロックされたときに動画を再生します。" "Play a video when the screen locks.": "画面がロックされたときに動画を再生します。"
}, },
@@ -6101,6 +6137,9 @@
"Preview: %1": { "Preview: %1": {
"Preview: %1": "" "Preview: %1": ""
}, },
"Previous": {
"Previous": ""
},
"Primary": { "Primary": {
"Primary": "プライマリー" "Primary": "プライマリー"
}, },
@@ -6287,6 +6326,9 @@
"Recent Colors": { "Recent Colors": {
"Recent Colors": "最近の色" "Recent Colors": "最近の色"
}, },
"Recent Images": {
"Recent Images": ""
},
"Recently Used Apps": { "Recently Used Apps": {
"Recently Used Apps": "最近使用したアプリ" "Recently Used Apps": "最近使用したアプリ"
}, },
@@ -6509,6 +6551,9 @@
"Revert": { "Revert": {
"Revert": "戻す" "Revert": "戻す"
}, },
"Rewind 10s": {
"Rewind 10s": ""
},
"Right": { "Right": {
"Right": "右" "Right": "右"
}, },
@@ -6596,6 +6641,9 @@
"SMS": { "SMS": {
"SMS": "SMS" "SMS": "SMS"
}, },
"SMS sent successfully": {
"SMS sent successfully": ""
},
"Saturation": { "Saturation": {
"Saturation": "" "Saturation": ""
}, },
@@ -6617,6 +6665,9 @@
"Save and switch between display configurations": { "Save and switch between display configurations": {
"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": {
"Save critical priority notifications to history": "最優先の通知を履歴に保存" "Save critical priority notifications to history": "最優先の通知を履歴に保存"
}, },
@@ -7370,6 +7421,9 @@
"Signal": { "Signal": {
"Signal": "Signal" "Signal": "Signal"
}, },
"Signal Strength": {
"Signal Strength": ""
},
"Signal:": { "Signal:": {
"Signal:": "Signal:" "Signal:": "Signal:"
}, },
@@ -8123,6 +8177,9 @@
"Typography & Motion": { "Typography & Motion": {
"Typography & Motion": "タイポグラフィとモーション" "Typography & Motion": "タイポグラフィとモーション"
}, },
"URI": {
"URI": ""
},
"Unavailable": { "Unavailable": {
"Unavailable": "利用できません" "Unavailable": "利用できません"
}, },
@@ -8459,6 +8516,9 @@
"VPN configuration updated": { "VPN configuration updated": {
"VPN configuration updated": "VPN 設定を更新しました" "VPN configuration updated": "VPN 設定を更新しました"
}, },
"VPN credentials saved": {
"VPN credentials saved": ""
},
"VPN deleted": { "VPN deleted": {
"VPN deleted": "VPN を削除しました" "VPN deleted": "VPN を削除しました"
}, },
@@ -8552,6 +8612,9 @@
"Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": {
"Volume, brightness, and other system OSDs": "音量、明るさ、その他のシステム OSD" "Volume, brightness, and other system OSDs": "音量、明るさ、その他のシステム OSD"
}, },
"Votes": {
"Votes": ""
},
"WPA/WPA2": { "WPA/WPA2": {
"WPA/WPA2": "WPA/WPA2" "WPA/WPA2": "WPA/WPA2"
}, },
@@ -8846,12 +8909,18 @@
"brandon": { "brandon": {
"brandon": "brandon" "brandon": "brandon"
}, },
"broken": {
"broken": ""
},
"by %1": { "by %1": {
"by %1": "%1 による" "by %1": "%1 による"
}, },
"days": { "days": {
"days": "日" "days": "日"
}, },
"deprecated": {
"deprecated": ""
},
"detached": { "detached": {
"detached": "切り離し済み" "detached": "切り離し済み"
}, },
@@ -8867,6 +8936,9 @@
"direct": { "direct": {
"direct": "直接" "direct": "直接"
}, },
"discuss": {
"discuss": ""
},
"dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": {
"dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": "dms は、<a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">Material 3 に着想を得た</a>デザインを持つ、高度にカスタマイズ可能なモダンなデスクトップシェルです。<br /><br/>デスクトップシェルを構築するための QT6 フレームワークである <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a> と、静的型付けのコンパイル言語である <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a> で構築されています。" "dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": "dms は、<a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">Material 3 に着想を得た</a>デザインを持つ、高度にカスタマイズ可能なモダンなデスクトップシェルです。<br /><br/>デスクトップシェルを構築するための QT6 フレームワークである <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a> と、静的型付けのコンパイル言語である <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a> で構築されています。"
}, },
@@ -9026,6 +9098,9 @@
"this app": { "this app": {
"this app": "このアプリ" "this app": "このアプリ"
}, },
"unmaintained": {
"unmaintained": ""
},
"until %1": { "until %1": {
"until %1": "%1まで" "until %1": "%1まで"
}, },
@@ -9047,6 +9122,9 @@
"v%1 by %2": { "v%1 by %2": {
"v%1 by %2": "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 not available - install wtype for paste support": "wtype は利用できません - 貼り付け対応には wtype をインストールしてください" "wtype not available - install wtype for paste support": "wtype は利用できません - 貼り付け対応には wtype をインストールしてください"
}, },
+78
View File
@@ -107,6 +107,9 @@
"%1 windows": { "%1 windows": {
"%1 windows": "%1 vensters" "%1 windows": "%1 vensters"
}, },
"%1: %2": {
"%1: %2": ""
},
"%1m ago": { "%1m ago": {
"%1m ago": "%1m geleden" "%1m ago": "%1m geleden"
}, },
@@ -1790,6 +1793,9 @@
"Connecting...": { "Connecting...": {
"Connecting...": "Verbinden..." "Connecting...": "Verbinden..."
}, },
"Connecting…": {
"Connecting…": ""
},
"Connection failed": { "Connection failed": {
"Connection failed": "Verbinding mislukt" "Connection failed": "Verbinding mislukt"
}, },
@@ -1970,6 +1976,9 @@
"Creating...": { "Creating...": {
"Creating...": "Aanmaken..." "Creating...": "Aanmaken..."
}, },
"Credentials": {
"Credentials": ""
},
"Critical Battery": { "Critical Battery": {
"Critical Battery": "" "Critical Battery": ""
}, },
@@ -2828,6 +2837,9 @@
"Enter PIN for ": { "Enter PIN for ": {
"Enter PIN for ": "Voer pincode in voor " "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": {
"Enter URL or text to share": "Voer URL of tekst in om te delen" "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.": {
"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 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": {
"Failed to save audio config": "Audio-configuratie opslaan mislukt" "Failed to save audio config": "Audio-configuratie opslaan mislukt"
}, },
@@ -3158,6 +3173,9 @@
"Failed to save profile": { "Failed to save profile": {
"Failed to save profile": "Profiel opslaan mislukt" "Failed to save profile": "Profiel opslaan mislukt"
}, },
"Failed to send SMS": {
"Failed to send SMS": ""
},
"Failed to send clipboard": { "Failed to send clipboard": {
"Failed to send clipboard": "Verzenden van klembord mislukt" "Failed to send clipboard": "Verzenden van klembord mislukt"
}, },
@@ -3503,6 +3521,9 @@
"Format Legend": { "Format Legend": {
"Format Legend": "Legenda voor notatie" "Format Legend": "Legenda voor notatie"
}, },
"Forward 10s": {
"Forward 10s": ""
},
"Frame": { "Frame": {
"Frame": "Frame" "Frame": "Frame"
}, },
@@ -3818,6 +3839,9 @@
"Hide device": { "Hide device": {
"Hide device": "Apparaat verbergen" "Hide device": "Apparaat verbergen"
}, },
"Hide installed": {
"Hide installed": ""
},
"Hide notification content until expanded": { "Hide notification content until expanded": {
"Hide notification content until expanded": "Meldingsinhoud verbergen tot uitgevouwen" "Hide notification content until expanded": "Meldingsinhoud verbergen tot uitgevouwen"
}, },
@@ -4127,6 +4151,9 @@
"Installed": { "Installed": {
"Installed": "Geïnstalleerd" "Installed": "Geïnstalleerd"
}, },
"Installed first": {
"Installed first": ""
},
"Installed: %1": { "Installed: %1": {
"Installed: %1": "Geïnstalleerd: %1" "Installed: %1": "Geïnstalleerd: %1"
}, },
@@ -4952,6 +4979,9 @@
"Network Status": { "Network Status": {
"Network Status": "Netwerkstatus" "Network Status": "Netwerkstatus"
}, },
"Network Type": {
"Network Type": ""
},
"Network download and upload speed display": { "Network download and upload speed display": {
"Network download and upload speed display": "Weergave van download- en uploadsnelheid" "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.": {
"No human user accounts found.": "Geen menselijke gebruikersaccounts gevonden." "No human user accounts found.": "Geen menselijke gebruikersaccounts gevonden."
}, },
"No images found": {
"No images found": ""
},
"No info items": { "No info items": {
"No info items": "Geen 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": {
"Place the dock on the Wayland overlay layer": "Plaats het dock op de Wayland overlay-laag" "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.": {
"Play a video when the screen locks.": "Speel een video af wanneer het scherm vergrendelt." "Play a video when the screen locks.": "Speel een video af wanneer het scherm vergrendelt."
}, },
@@ -6101,6 +6137,9 @@
"Preview: %1": { "Preview: %1": {
"Preview: %1": "" "Preview: %1": ""
}, },
"Previous": {
"Previous": ""
},
"Primary": { "Primary": {
"Primary": "Primair" "Primary": "Primair"
}, },
@@ -6287,6 +6326,9 @@
"Recent Colors": { "Recent Colors": {
"Recent Colors": "Recente kleuren" "Recent Colors": "Recente kleuren"
}, },
"Recent Images": {
"Recent Images": ""
},
"Recently Used Apps": { "Recently Used Apps": {
"Recently Used Apps": "Recent gebruikte apps" "Recently Used Apps": "Recent gebruikte apps"
}, },
@@ -6509,6 +6551,9 @@
"Revert": { "Revert": {
"Revert": "Terugdraaien" "Revert": "Terugdraaien"
}, },
"Rewind 10s": {
"Rewind 10s": ""
},
"Right": { "Right": {
"Right": "Rechts" "Right": "Rechts"
}, },
@@ -6596,6 +6641,9 @@
"SMS": { "SMS": {
"SMS": "Sms" "SMS": "Sms"
}, },
"SMS sent successfully": {
"SMS sent successfully": ""
},
"Saturation": { "Saturation": {
"Saturation": "Verzadiging" "Saturation": "Verzadiging"
}, },
@@ -6617,6 +6665,9 @@
"Save and switch between display configurations": { "Save and switch between display configurations": {
"Save and switch between display configurations": "Opslaan en schakelen tussen beeldschermconfiguraties" "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": {
"Save critical priority notifications to history": "Meldingen met kritieke prioriteit opslaan in geschiedenis" "Save critical priority notifications to history": "Meldingen met kritieke prioriteit opslaan in geschiedenis"
}, },
@@ -7370,6 +7421,9 @@
"Signal": { "Signal": {
"Signal": "Signaal" "Signal": "Signaal"
}, },
"Signal Strength": {
"Signal Strength": ""
},
"Signal:": { "Signal:": {
"Signal:": "Signaal:" "Signal:": "Signaal:"
}, },
@@ -8123,6 +8177,9 @@
"Typography & Motion": { "Typography & Motion": {
"Typography & Motion": "Typografie & Beweging" "Typography & Motion": "Typografie & Beweging"
}, },
"URI": {
"URI": ""
},
"Unavailable": { "Unavailable": {
"Unavailable": "Niet beschikbaar" "Unavailable": "Niet beschikbaar"
}, },
@@ -8459,6 +8516,9 @@
"VPN configuration updated": { "VPN configuration updated": {
"VPN configuration updated": "VPN-configuratie bijgewerkt" "VPN configuration updated": "VPN-configuratie bijgewerkt"
}, },
"VPN credentials saved": {
"VPN credentials saved": ""
},
"VPN deleted": { "VPN deleted": {
"VPN deleted": "VPN verwijderd" "VPN deleted": "VPN verwijderd"
}, },
@@ -8552,6 +8612,9 @@
"Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": {
"Volume, brightness, and other system OSDs": "Volume, helderheid en andere systeem-OSD's" "Volume, brightness, and other system OSDs": "Volume, helderheid en andere systeem-OSD's"
}, },
"Votes": {
"Votes": ""
},
"WPA/WPA2": { "WPA/WPA2": {
"WPA/WPA2": "WPA/WPA2" "WPA/WPA2": "WPA/WPA2"
}, },
@@ -8846,12 +8909,18 @@
"brandon": { "brandon": {
"brandon": "brandon" "brandon": "brandon"
}, },
"broken": {
"broken": ""
},
"by %1": { "by %1": {
"by %1": "door %1" "by %1": "door %1"
}, },
"days": { "days": {
"days": "dagen" "days": "dagen"
}, },
"deprecated": {
"deprecated": ""
},
"detached": { "detached": {
"detached": "ontkoppeld" "detached": "ontkoppeld"
}, },
@@ -8867,6 +8936,9 @@
"direct": { "direct": {
"direct": "direct" "direct": "direct"
}, },
"discuss": {
"discuss": ""
},
"dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": {
"dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": "dms is een zeer aanpasbare, moderne desktop-shell met een op <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">Material 3 geïnspireerd</a> ontwerp.<br /><br/>Het is gebouwd met <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, een QT6-framework voor het bouwen van desktop-shells, en <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, een statisch getypeerde, gecompileerde programmeertaal." "dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": "dms is een zeer aanpasbare, moderne desktop-shell met een op <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">Material 3 geïnspireerd</a> ontwerp.<br /><br/>Het is gebouwd met <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, een QT6-framework voor het bouwen van desktop-shells, en <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, een statisch getypeerde, gecompileerde programmeertaal."
}, },
@@ -9026,6 +9098,9 @@
"this app": { "this app": {
"this app": "deze app" "this app": "deze app"
}, },
"unmaintained": {
"unmaintained": ""
},
"until %1": { "until %1": {
"until %1": "tot %1" "until %1": "tot %1"
}, },
@@ -9047,6 +9122,9 @@
"v%1 by %2": { "v%1 by %2": {
"v%1 by %2": "v%1 door %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 not available - install wtype for paste support": "wtype niet beschikbaar - installeer wtype voor plakondersteuning" "wtype not available - install wtype for paste support": "wtype niet beschikbaar - installeer wtype voor plakondersteuning"
}, },
+78
View File
@@ -107,6 +107,9 @@
"%1 windows": { "%1 windows": {
"%1 windows": "" "%1 windows": ""
}, },
"%1: %2": {
"%1: %2": ""
},
"%1m ago": { "%1m ago": {
"%1m ago": "%1m temu" "%1m ago": "%1m temu"
}, },
@@ -1790,6 +1793,9 @@
"Connecting...": { "Connecting...": {
"Connecting...": "Łączenie..." "Connecting...": "Łączenie..."
}, },
"Connecting…": {
"Connecting…": ""
},
"Connection failed": { "Connection failed": {
"Connection failed": "" "Connection failed": ""
}, },
@@ -1970,6 +1976,9 @@
"Creating...": { "Creating...": {
"Creating...": "Tworzenie..." "Creating...": "Tworzenie..."
}, },
"Credentials": {
"Credentials": ""
},
"Critical Battery": { "Critical Battery": {
"Critical Battery": "" "Critical Battery": ""
}, },
@@ -2828,6 +2837,9 @@
"Enter PIN for ": { "Enter PIN for ": {
"Enter PIN for ": "Wprowadź PIN dla " "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": {
"Enter URL or text to share": "Wprowadź URL lub tekst, aby go udostępnić" "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 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": {
"Failed to save audio config": "" "Failed to save audio config": ""
}, },
@@ -3158,6 +3173,9 @@
"Failed to save profile": { "Failed to save profile": {
"Failed to save profile": "" "Failed to save profile": ""
}, },
"Failed to send SMS": {
"Failed to send SMS": ""
},
"Failed to send clipboard": { "Failed to send clipboard": {
"Failed to send clipboard": "Nie udało się wysłać zawartości schowka" "Failed to send clipboard": "Nie udało się wysłać zawartości schowka"
}, },
@@ -3503,6 +3521,9 @@
"Format Legend": { "Format Legend": {
"Format Legend": "Legenda formatowania" "Format Legend": "Legenda formatowania"
}, },
"Forward 10s": {
"Forward 10s": ""
},
"Frame": { "Frame": {
"Frame": "" "Frame": ""
}, },
@@ -3818,6 +3839,9 @@
"Hide device": { "Hide device": {
"Hide device": "" "Hide device": ""
}, },
"Hide installed": {
"Hide installed": ""
},
"Hide notification content until expanded": { "Hide notification content until expanded": {
"Hide notification content until expanded": "" "Hide notification content until expanded": ""
}, },
@@ -4127,6 +4151,9 @@
"Installed": { "Installed": {
"Installed": "Zainstalowano" "Installed": "Zainstalowano"
}, },
"Installed first": {
"Installed first": ""
},
"Installed: %1": { "Installed: %1": {
"Installed: %1": "Zainstalowano: %1" "Installed: %1": "Zainstalowano: %1"
}, },
@@ -4952,6 +4979,9 @@
"Network Status": { "Network Status": {
"Network Status": "Stan sieci" "Network Status": "Stan sieci"
}, },
"Network Type": {
"Network Type": ""
},
"Network download and upload speed display": { "Network download and upload speed display": {
"Network download and upload speed display": "Wyświetlanie prędkości pobierania i wysyłania sieci" "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 human user accounts found.": "" "No human user accounts found.": ""
}, },
"No images found": {
"No images found": ""
},
"No info items": { "No info items": {
"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": {
"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.": {
"Play a video when the screen locks.": "" "Play a video when the screen locks.": ""
}, },
@@ -6101,6 +6137,9 @@
"Preview: %1": { "Preview: %1": {
"Preview: %1": "" "Preview: %1": ""
}, },
"Previous": {
"Previous": ""
},
"Primary": { "Primary": {
"Primary": "Główny" "Primary": "Główny"
}, },
@@ -6287,6 +6326,9 @@
"Recent Colors": { "Recent Colors": {
"Recent Colors": "Ostatnie kolory" "Recent Colors": "Ostatnie kolory"
}, },
"Recent Images": {
"Recent Images": ""
},
"Recently Used Apps": { "Recently Used Apps": {
"Recently Used Apps": "Ostatnio używane aplikacje" "Recently Used Apps": "Ostatnio używane aplikacje"
}, },
@@ -6509,6 +6551,9 @@
"Revert": { "Revert": {
"Revert": "Odwracać" "Revert": "Odwracać"
}, },
"Rewind 10s": {
"Rewind 10s": ""
},
"Right": { "Right": {
"Right": "Prawo" "Right": "Prawo"
}, },
@@ -6596,6 +6641,9 @@
"SMS": { "SMS": {
"SMS": "SMS" "SMS": "SMS"
}, },
"SMS sent successfully": {
"SMS sent successfully": ""
},
"Saturation": { "Saturation": {
"Saturation": "" "Saturation": ""
}, },
@@ -6617,6 +6665,9 @@
"Save and switch between display configurations": { "Save and switch between display configurations": {
"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": {
"Save critical priority notifications to history": "" "Save critical priority notifications to history": ""
}, },
@@ -7370,6 +7421,9 @@
"Signal": { "Signal": {
"Signal": "Sygnał" "Signal": "Sygnał"
}, },
"Signal Strength": {
"Signal Strength": ""
},
"Signal:": { "Signal:": {
"Signal:": "Sygnał:" "Signal:": "Sygnał:"
}, },
@@ -8123,6 +8177,9 @@
"Typography & Motion": { "Typography & Motion": {
"Typography & Motion": "Czcionki i Animacje" "Typography & Motion": "Czcionki i Animacje"
}, },
"URI": {
"URI": ""
},
"Unavailable": { "Unavailable": {
"Unavailable": "Niedostępny" "Unavailable": "Niedostępny"
}, },
@@ -8459,6 +8516,9 @@
"VPN configuration updated": { "VPN configuration updated": {
"VPN configuration updated": "Konfiguracja VPN zaktualizowana" "VPN configuration updated": "Konfiguracja VPN zaktualizowana"
}, },
"VPN credentials saved": {
"VPN credentials saved": ""
},
"VPN deleted": { "VPN deleted": {
"VPN deleted": "VPN usunięty" "VPN deleted": "VPN usunięty"
}, },
@@ -8552,6 +8612,9 @@
"Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": {
"Volume, brightness, and other system OSDs": "Głośność, jasność i inne systemowe menu ekranowe" "Volume, brightness, and other system OSDs": "Głośność, jasność i inne systemowe menu ekranowe"
}, },
"Votes": {
"Votes": ""
},
"WPA/WPA2": { "WPA/WPA2": {
"WPA/WPA2": "WPA/WPA2" "WPA/WPA2": "WPA/WPA2"
}, },
@@ -8846,12 +8909,18 @@
"brandon": { "brandon": {
"brandon": "" "brandon": ""
}, },
"broken": {
"broken": ""
},
"by %1": { "by %1": {
"by %1": "od %1" "by %1": "od %1"
}, },
"days": { "days": {
"days": "dni" "days": "dni"
}, },
"deprecated": {
"deprecated": ""
},
"detached": { "detached": {
"detached": "" "detached": ""
}, },
@@ -8867,6 +8936,9 @@
"direct": { "direct": {
"direct": "" "direct": ""
}, },
"discuss": {
"discuss": ""
},
"dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": {
"dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": "" "dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": ""
}, },
@@ -9026,6 +9098,9 @@
"this app": { "this app": {
"this app": "" "this app": ""
}, },
"unmaintained": {
"unmaintained": ""
},
"until %1": { "until %1": {
"until %1": "" "until %1": ""
}, },
@@ -9047,6 +9122,9 @@
"v%1 by %2": { "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 not available - install wtype for paste support": "wtype niedostępny - zainstaluj wtype dla wsparcia wklejania" "wtype not available - install wtype for paste support": "wtype niedostępny - zainstaluj wtype dla wsparcia wklejania"
}, },
+78
View File
@@ -107,6 +107,9 @@
"%1 windows": { "%1 windows": {
"%1 windows": "" "%1 windows": ""
}, },
"%1: %2": {
"%1: %2": ""
},
"%1m ago": { "%1m ago": {
"%1m ago": "%1m atrás" "%1m ago": "%1m atrás"
}, },
@@ -1790,6 +1793,9 @@
"Connecting...": { "Connecting...": {
"Connecting...": "Conectando..." "Connecting...": "Conectando..."
}, },
"Connecting…": {
"Connecting…": ""
},
"Connection failed": { "Connection failed": {
"Connection failed": "" "Connection failed": ""
}, },
@@ -1970,6 +1976,9 @@
"Creating...": { "Creating...": {
"Creating...": "Criando..." "Creating...": "Criando..."
}, },
"Credentials": {
"Credentials": ""
},
"Critical Battery": { "Critical Battery": {
"Critical Battery": "" "Critical Battery": ""
}, },
@@ -2828,6 +2837,9 @@
"Enter PIN for ": { "Enter PIN for ": {
"Enter PIN for ": "Entre código PIN para " "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": {
"Enter URL or text to share": "Digite URL ou texto para compartilhar" "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 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": {
"Failed to save audio config": "Falha ao salvar a configuração de áudio" "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 save profile": "" "Failed to save profile": ""
}, },
"Failed to send SMS": {
"Failed to send SMS": ""
},
"Failed to send clipboard": { "Failed to send clipboard": {
"Failed to send clipboard": "Falha ao enviar área de transferência" "Failed to send clipboard": "Falha ao enviar área de transferência"
}, },
@@ -3503,6 +3521,9 @@
"Format Legend": { "Format Legend": {
"Format Legend": "Formatar Legenda" "Format Legend": "Formatar Legenda"
}, },
"Forward 10s": {
"Forward 10s": ""
},
"Frame": { "Frame": {
"Frame": "" "Frame": ""
}, },
@@ -3818,6 +3839,9 @@
"Hide device": { "Hide device": {
"Hide device": "Ocultar dispositivo" "Hide device": "Ocultar dispositivo"
}, },
"Hide installed": {
"Hide installed": ""
},
"Hide notification content until expanded": { "Hide notification content until expanded": {
"Hide notification content until expanded": "Ocultar conteúdo da notificação até expandir" "Hide notification content until expanded": "Ocultar conteúdo da notificação até expandir"
}, },
@@ -4127,6 +4151,9 @@
"Installed": { "Installed": {
"Installed": "Instalado" "Installed": "Instalado"
}, },
"Installed first": {
"Installed first": ""
},
"Installed: %1": { "Installed: %1": {
"Installed: %1": "Instalado: %1" "Installed: %1": "Instalado: %1"
}, },
@@ -4952,6 +4979,9 @@
"Network Status": { "Network Status": {
"Network Status": "Status da Rede" "Network Status": "Status da Rede"
}, },
"Network Type": {
"Network Type": ""
},
"Network download and upload speed display": { "Network download and upload speed display": {
"Network download and upload speed display": "Monitor de velocidades de download e upload da rede" "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 human user accounts found.": "" "No human user accounts found.": ""
}, },
"No images found": {
"No images found": ""
},
"No info items": { "No info items": {
"No info items": "Nenhum item de informação" "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": {
"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.": {
"Play a video when the screen locks.": "" "Play a video when the screen locks.": ""
}, },
@@ -6101,6 +6137,9 @@
"Preview: %1": { "Preview: %1": {
"Preview: %1": "" "Preview: %1": ""
}, },
"Previous": {
"Previous": ""
},
"Primary": { "Primary": {
"Primary": "Primário" "Primary": "Primário"
}, },
@@ -6287,6 +6326,9 @@
"Recent Colors": { "Recent Colors": {
"Recent Colors": "Cores Recentes" "Recent Colors": "Cores Recentes"
}, },
"Recent Images": {
"Recent Images": ""
},
"Recently Used Apps": { "Recently Used Apps": {
"Recently Used Apps": "Apps Usados Recentemente" "Recently Used Apps": "Apps Usados Recentemente"
}, },
@@ -6509,6 +6551,9 @@
"Revert": { "Revert": {
"Revert": "Reverter" "Revert": "Reverter"
}, },
"Rewind 10s": {
"Rewind 10s": ""
},
"Right": { "Right": {
"Right": "Direita" "Right": "Direita"
}, },
@@ -6596,6 +6641,9 @@
"SMS": { "SMS": {
"SMS": "SMS" "SMS": "SMS"
}, },
"SMS sent successfully": {
"SMS sent successfully": ""
},
"Saturation": { "Saturation": {
"Saturation": "" "Saturation": ""
}, },
@@ -6617,6 +6665,9 @@
"Save and switch between display configurations": { "Save and switch between display configurations": {
"Save and switch between display configurations": "Salvar e alternar entre configurações de exibição" "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": {
"Save critical priority notifications to history": "Salvar notificações de prioridade crítica no histórico" "Save critical priority notifications to history": "Salvar notificações de prioridade crítica no histórico"
}, },
@@ -7370,6 +7421,9 @@
"Signal": { "Signal": {
"Signal": "Sinal" "Signal": "Sinal"
}, },
"Signal Strength": {
"Signal Strength": ""
},
"Signal:": { "Signal:": {
"Signal:": "Sinal:" "Signal:": "Sinal:"
}, },
@@ -8123,6 +8177,9 @@
"Typography & Motion": { "Typography & Motion": {
"Typography & Motion": "Tipografia & Movimento" "Typography & Motion": "Tipografia & Movimento"
}, },
"URI": {
"URI": ""
},
"Unavailable": { "Unavailable": {
"Unavailable": "Indisponível" "Unavailable": "Indisponível"
}, },
@@ -8459,6 +8516,9 @@
"VPN configuration updated": { "VPN configuration updated": {
"VPN configuration updated": "Configuração da VPN atualizada" "VPN configuration updated": "Configuração da VPN atualizada"
}, },
"VPN credentials saved": {
"VPN credentials saved": ""
},
"VPN deleted": { "VPN deleted": {
"VPN deleted": "VPN excluída" "VPN deleted": "VPN excluída"
}, },
@@ -8552,6 +8612,9 @@
"Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": {
"Volume, brightness, and other system OSDs": "Volume, brilho, e outros OSDs do sistema" "Volume, brightness, and other system OSDs": "Volume, brilho, e outros OSDs do sistema"
}, },
"Votes": {
"Votes": ""
},
"WPA/WPA2": { "WPA/WPA2": {
"WPA/WPA2": "WPA/WPA2" "WPA/WPA2": "WPA/WPA2"
}, },
@@ -8846,12 +8909,18 @@
"brandon": { "brandon": {
"brandon": "brandon" "brandon": "brandon"
}, },
"broken": {
"broken": ""
},
"by %1": { "by %1": {
"by %1": "por %1" "by %1": "por %1"
}, },
"days": { "days": {
"days": "dias" "days": "dias"
}, },
"deprecated": {
"deprecated": ""
},
"detached": { "detached": {
"detached": "" "detached": ""
}, },
@@ -8867,6 +8936,9 @@
"direct": { "direct": {
"direct": "" "direct": ""
}, },
"discuss": {
"discuss": ""
},
"dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": {
"dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": "" "dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": ""
}, },
@@ -9026,6 +9098,9 @@
"this app": { "this app": {
"this app": "este aplicativo" "this app": "este aplicativo"
}, },
"unmaintained": {
"unmaintained": ""
},
"until %1": { "until %1": {
"until %1": "" "until %1": ""
}, },
@@ -9047,6 +9122,9 @@
"v%1 by %2": { "v%1 by %2": {
"v%1 by %2": "v%1 por %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 not available - install wtype for paste support": "wtype não disponível - installe wtype para suporte de colagem" "wtype not available - install wtype for paste support": "wtype não disponível - installe wtype para suporte de colagem"
}, },
+78
View File
@@ -107,6 +107,9 @@
"%1 windows": { "%1 windows": {
"%1 windows": "%1 окон" "%1 windows": "%1 окон"
}, },
"%1: %2": {
"%1: %2": ""
},
"%1m ago": { "%1m ago": {
"%1m ago": "%1 мин. назад" "%1m ago": "%1 мин. назад"
}, },
@@ -1790,6 +1793,9 @@
"Connecting...": { "Connecting...": {
"Connecting...": "Подключение..." "Connecting...": "Подключение..."
}, },
"Connecting…": {
"Connecting…": ""
},
"Connection failed": { "Connection failed": {
"Connection failed": "Сбой подключения" "Connection failed": "Сбой подключения"
}, },
@@ -1970,6 +1976,9 @@
"Creating...": { "Creating...": {
"Creating...": "Создание..." "Creating...": "Создание..."
}, },
"Credentials": {
"Credentials": ""
},
"Critical Battery": { "Critical Battery": {
"Critical Battery": "" "Critical Battery": ""
}, },
@@ -2828,6 +2837,9 @@
"Enter PIN for ": { "Enter PIN for ": {
"Enter PIN for ": "Введите PIN для " "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": {
"Enter URL or text to share": "Введите URL или текст для отправки" "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.": {
"Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": "Не удалось выполнить 'dms greeter status'. Убедитесь, что DMS установлен и dms находится в 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": {
"Failed to save audio config": "Не удалось сохранить аудиоконфиг" "Failed to save audio config": "Не удалось сохранить аудиоконфиг"
}, },
@@ -3158,6 +3173,9 @@
"Failed to save profile": { "Failed to save profile": {
"Failed to save profile": "Не удалось сохранить профиль" "Failed to save profile": "Не удалось сохранить профиль"
}, },
"Failed to send SMS": {
"Failed to send SMS": ""
},
"Failed to send clipboard": { "Failed to send clipboard": {
"Failed to send clipboard": "Не удалось отправить буфер обмена" "Failed to send clipboard": "Не удалось отправить буфер обмена"
}, },
@@ -3503,6 +3521,9 @@
"Format Legend": { "Format Legend": {
"Format Legend": "Условные Обозначения" "Format Legend": "Условные Обозначения"
}, },
"Forward 10s": {
"Forward 10s": ""
},
"Frame": { "Frame": {
"Frame": "Рамка" "Frame": "Рамка"
}, },
@@ -3818,6 +3839,9 @@
"Hide device": { "Hide device": {
"Hide device": "Скрыть устройство" "Hide device": "Скрыть устройство"
}, },
"Hide installed": {
"Hide installed": ""
},
"Hide notification content until expanded": { "Hide notification content until expanded": {
"Hide notification content until expanded": "Скрывать содержимое уведомления до развёртывания" "Hide notification content until expanded": "Скрывать содержимое уведомления до развёртывания"
}, },
@@ -4127,6 +4151,9 @@
"Installed": { "Installed": {
"Installed": "Установлено" "Installed": "Установлено"
}, },
"Installed first": {
"Installed first": ""
},
"Installed: %1": { "Installed: %1": {
"Installed: %1": "Установлено: %1" "Installed: %1": "Установлено: %1"
}, },
@@ -4952,6 +4979,9 @@
"Network Status": { "Network Status": {
"Network Status": "Статус сети" "Network Status": "Статус сети"
}, },
"Network Type": {
"Network Type": ""
},
"Network download and upload speed display": { "Network download and upload speed display": {
"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 human user accounts found.": "Учётные записи пользователей не найдены." "No human user accounts found.": "Учётные записи пользователей не найдены."
}, },
"No images found": {
"No images found": ""
},
"No info items": { "No info items": {
"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": {
"Place the dock on the Wayland overlay layer": "Разместить док на слое оверлея Wayland" "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.": {
"Play a video when the screen locks.": "Воспроизводить видео при блокировке экрана." "Play a video when the screen locks.": "Воспроизводить видео при блокировке экрана."
}, },
@@ -6101,6 +6137,9 @@
"Preview: %1": { "Preview: %1": {
"Preview: %1": "" "Preview: %1": ""
}, },
"Previous": {
"Previous": ""
},
"Primary": { "Primary": {
"Primary": "Основной" "Primary": "Основной"
}, },
@@ -6287,6 +6326,9 @@
"Recent Colors": { "Recent Colors": {
"Recent Colors": "Недавние Цвета" "Recent Colors": "Недавние Цвета"
}, },
"Recent Images": {
"Recent Images": ""
},
"Recently Used Apps": { "Recently Used Apps": {
"Recently Used Apps": "Недавно Использованные Приложения" "Recently Used Apps": "Недавно Использованные Приложения"
}, },
@@ -6509,6 +6551,9 @@
"Revert": { "Revert": {
"Revert": "Инвертировать" "Revert": "Инвертировать"
}, },
"Rewind 10s": {
"Rewind 10s": ""
},
"Right": { "Right": {
"Right": "Справа" "Right": "Справа"
}, },
@@ -6596,6 +6641,9 @@
"SMS": { "SMS": {
"SMS": "SMS" "SMS": "SMS"
}, },
"SMS sent successfully": {
"SMS sent successfully": ""
},
"Saturation": { "Saturation": {
"Saturation": "Насыщенность" "Saturation": "Насыщенность"
}, },
@@ -6617,6 +6665,9 @@
"Save and switch between display configurations": { "Save and switch between display configurations": {
"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": {
"Save critical priority notifications to history": "Сохранять уведомления обычного приоритета в историю" "Save critical priority notifications to history": "Сохранять уведомления обычного приоритета в историю"
}, },
@@ -7370,6 +7421,9 @@
"Signal": { "Signal": {
"Signal": "Сигнал" "Signal": "Сигнал"
}, },
"Signal Strength": {
"Signal Strength": ""
},
"Signal:": { "Signal:": {
"Signal:": "Сигнал:" "Signal:": "Сигнал:"
}, },
@@ -8123,6 +8177,9 @@
"Typography & Motion": { "Typography & Motion": {
"Typography & Motion": "Типография и движение" "Typography & Motion": "Типография и движение"
}, },
"URI": {
"URI": ""
},
"Unavailable": { "Unavailable": {
"Unavailable": "Недоступно" "Unavailable": "Недоступно"
}, },
@@ -8459,6 +8516,9 @@
"VPN configuration updated": { "VPN configuration updated": {
"VPN configuration updated": "VPN конфигурации updated" "VPN configuration updated": "VPN конфигурации updated"
}, },
"VPN credentials saved": {
"VPN credentials saved": ""
},
"VPN deleted": { "VPN deleted": {
"VPN deleted": "VPN удалён" "VPN deleted": "VPN удалён"
}, },
@@ -8552,6 +8612,9 @@
"Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": {
"Volume, brightness, and other system OSDs": "Громкость, яркость и другие системные OSD" "Volume, brightness, and other system OSDs": "Громкость, яркость и другие системные OSD"
}, },
"Votes": {
"Votes": ""
},
"WPA/WPA2": { "WPA/WPA2": {
"WPA/WPA2": "WPA/WPA2" "WPA/WPA2": "WPA/WPA2"
}, },
@@ -8846,12 +8909,18 @@
"brandon": { "brandon": {
"brandon": "brandon" "brandon": "brandon"
}, },
"broken": {
"broken": ""
},
"by %1": { "by %1": {
"by %1": "на %1" "by %1": "на %1"
}, },
"days": { "days": {
"days": "дней" "days": "дней"
}, },
"deprecated": {
"deprecated": ""
},
"detached": { "detached": {
"detached": "Отключён" "detached": "Отключён"
}, },
@@ -8867,6 +8936,9 @@
"direct": { "direct": {
"direct": "прямое" "direct": "прямое"
}, },
"discuss": {
"discuss": ""
},
"dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": {
"dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": "dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language." "dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": "dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language."
}, },
@@ -9026,6 +9098,9 @@
"this app": { "this app": {
"this app": "это приложение" "this app": "это приложение"
}, },
"unmaintained": {
"unmaintained": ""
},
"until %1": { "until %1": {
"until %1": "до %1" "until %1": "до %1"
}, },
@@ -9047,6 +9122,9 @@
"v%1 by %2": { "v%1 by %2": {
"v%1 by %2": "v%1 от %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 not available - install wtype for paste support": "wtype недоступен - установите wtype для поддержки вставки" "wtype not available - install wtype for paste support": "wtype недоступен - установите wtype для поддержки вставки"
}, },
+78
View File
@@ -107,6 +107,9 @@
"%1 windows": { "%1 windows": {
"%1 windows": "%1 fönster" "%1 windows": "%1 fönster"
}, },
"%1: %2": {
"%1: %2": ""
},
"%1m ago": { "%1m ago": {
"%1m ago": "för %1 min sedan" "%1m ago": "för %1 min sedan"
}, },
@@ -1790,6 +1793,9 @@
"Connecting...": { "Connecting...": {
"Connecting...": "Ansluter..." "Connecting...": "Ansluter..."
}, },
"Connecting…": {
"Connecting…": ""
},
"Connection failed": { "Connection failed": {
"Connection failed": "Anslutning misslyckades" "Connection failed": "Anslutning misslyckades"
}, },
@@ -1970,6 +1976,9 @@
"Creating...": { "Creating...": {
"Creating...": "Skapar..." "Creating...": "Skapar..."
}, },
"Credentials": {
"Credentials": ""
},
"Critical Battery": { "Critical Battery": {
"Critical Battery": "" "Critical Battery": ""
}, },
@@ -2828,6 +2837,9 @@
"Enter PIN for ": { "Enter PIN for ": {
"Enter PIN for ": "Ange PIN för " "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": {
"Enter URL or text to share": "Ange URL eller text att dela" "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.": {
"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 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": {
"Failed to save audio config": "Misslyckades med att spara ljudkonfiguration" "Failed to save audio config": "Misslyckades med att spara ljudkonfiguration"
}, },
@@ -3158,6 +3173,9 @@
"Failed to save profile": { "Failed to save profile": {
"Failed to save profile": "" "Failed to save profile": ""
}, },
"Failed to send SMS": {
"Failed to send SMS": ""
},
"Failed to send clipboard": { "Failed to send clipboard": {
"Failed to send clipboard": "Misslyckades med att skicka urklipp" "Failed to send clipboard": "Misslyckades med att skicka urklipp"
}, },
@@ -3503,6 +3521,9 @@
"Format Legend": { "Format Legend": {
"Format Legend": "Formateringsguide" "Format Legend": "Formateringsguide"
}, },
"Forward 10s": {
"Forward 10s": ""
},
"Frame": { "Frame": {
"Frame": "" "Frame": ""
}, },
@@ -3818,6 +3839,9 @@
"Hide device": { "Hide device": {
"Hide device": "Dölj enhet" "Hide device": "Dölj enhet"
}, },
"Hide installed": {
"Hide installed": ""
},
"Hide notification content until expanded": { "Hide notification content until expanded": {
"Hide notification content until expanded": "Dölj notisinnehåll tills det expanderas" "Hide notification content until expanded": "Dölj notisinnehåll tills det expanderas"
}, },
@@ -4127,6 +4151,9 @@
"Installed": { "Installed": {
"Installed": "Installerat" "Installed": "Installerat"
}, },
"Installed first": {
"Installed first": ""
},
"Installed: %1": { "Installed: %1": {
"Installed: %1": "Installerat: %1" "Installed: %1": "Installerat: %1"
}, },
@@ -4952,6 +4979,9 @@
"Network Status": { "Network Status": {
"Network Status": "Nätverksstatus" "Network Status": "Nätverksstatus"
}, },
"Network Type": {
"Network Type": ""
},
"Network download and upload speed display": { "Network download and upload speed display": {
"Network download and upload speed display": "Visa upp- och nedladdningshastighet" "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 human user accounts found.": "" "No human user accounts found.": ""
}, },
"No images found": {
"No images found": ""
},
"No info items": { "No info items": {
"No info items": "Inga informationsobjekt" "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": {
"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.": {
"Play a video when the screen locks.": "Spela upp en video när skärmen låses." "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": {
"Preview: %1": "" "Preview: %1": ""
}, },
"Previous": {
"Previous": ""
},
"Primary": { "Primary": {
"Primary": "Primär" "Primary": "Primär"
}, },
@@ -6287,6 +6326,9 @@
"Recent Colors": { "Recent Colors": {
"Recent Colors": "Nyligen använda färger" "Recent Colors": "Nyligen använda färger"
}, },
"Recent Images": {
"Recent Images": ""
},
"Recently Used Apps": { "Recently Used Apps": {
"Recently Used Apps": "Nyligen använda appar" "Recently Used Apps": "Nyligen använda appar"
}, },
@@ -6509,6 +6551,9 @@
"Revert": { "Revert": {
"Revert": "Återställ" "Revert": "Återställ"
}, },
"Rewind 10s": {
"Rewind 10s": ""
},
"Right": { "Right": {
"Right": "Höger" "Right": "Höger"
}, },
@@ -6596,6 +6641,9 @@
"SMS": { "SMS": {
"SMS": "SMS" "SMS": "SMS"
}, },
"SMS sent successfully": {
"SMS sent successfully": ""
},
"Saturation": { "Saturation": {
"Saturation": "" "Saturation": ""
}, },
@@ -6617,6 +6665,9 @@
"Save and switch between display configurations": { "Save and switch between display configurations": {
"Save and switch between display configurations": "Spara och växla mellan bildskärmskonfigurationer" "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": {
"Save critical priority notifications to history": "Spara notiser med kritisk prioritet i historiken" "Save critical priority notifications to history": "Spara notiser med kritisk prioritet i historiken"
}, },
@@ -7370,6 +7421,9 @@
"Signal": { "Signal": {
"Signal": "Signal" "Signal": "Signal"
}, },
"Signal Strength": {
"Signal Strength": ""
},
"Signal:": { "Signal:": {
"Signal:": "Signal:" "Signal:": "Signal:"
}, },
@@ -8123,6 +8177,9 @@
"Typography & Motion": { "Typography & Motion": {
"Typography & Motion": "Typografi & rörelse" "Typography & Motion": "Typografi & rörelse"
}, },
"URI": {
"URI": ""
},
"Unavailable": { "Unavailable": {
"Unavailable": "Otillgänglig" "Unavailable": "Otillgänglig"
}, },
@@ -8459,6 +8516,9 @@
"VPN configuration updated": { "VPN configuration updated": {
"VPN configuration updated": "VPN-konfiguration uppdaterad" "VPN configuration updated": "VPN-konfiguration uppdaterad"
}, },
"VPN credentials saved": {
"VPN credentials saved": ""
},
"VPN deleted": { "VPN deleted": {
"VPN deleted": "VPN raderat" "VPN deleted": "VPN raderat"
}, },
@@ -8552,6 +8612,9 @@
"Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": {
"Volume, brightness, and other system OSDs": "Volym, ljusstyrka och andra systemskärmvisningar" "Volume, brightness, and other system OSDs": "Volym, ljusstyrka och andra systemskärmvisningar"
}, },
"Votes": {
"Votes": ""
},
"WPA/WPA2": { "WPA/WPA2": {
"WPA/WPA2": "WPA/WPA2" "WPA/WPA2": "WPA/WPA2"
}, },
@@ -8846,12 +8909,18 @@
"brandon": { "brandon": {
"brandon": "brandon" "brandon": "brandon"
}, },
"broken": {
"broken": ""
},
"by %1": { "by %1": {
"by %1": "av %1" "by %1": "av %1"
}, },
"days": { "days": {
"days": "dagar" "days": "dagar"
}, },
"deprecated": {
"deprecated": ""
},
"detached": { "detached": {
"detached": "frånkopplad" "detached": "frånkopplad"
}, },
@@ -8867,6 +8936,9 @@
"direct": { "direct": {
"direct": "" "direct": ""
}, },
"discuss": {
"discuss": ""
},
"dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": {
"dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": "dms är ett mycket anpassningsbart, modernt skrivbordsskal med en <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">Material 3-inspirerad</a> design.<br /><br/>Det är byggt med <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, ett QT6-ramverk för att bygga skrivbordsskal, och <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, ett statiskt typat kompilerat programmeringsspråk." "dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": "dms är ett mycket anpassningsbart, modernt skrivbordsskal med en <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">Material 3-inspirerad</a> design.<br /><br/>Det är byggt med <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, ett QT6-ramverk för att bygga skrivbordsskal, och <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, ett statiskt typat kompilerat programmeringsspråk."
}, },
@@ -9026,6 +9098,9 @@
"this app": { "this app": {
"this app": "den här appen" "this app": "den här appen"
}, },
"unmaintained": {
"unmaintained": ""
},
"until %1": { "until %1": {
"until %1": "" "until %1": ""
}, },
@@ -9047,6 +9122,9 @@
"v%1 by %2": { "v%1 by %2": {
"v%1 by %2": "v%1 av %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 not available - install wtype for paste support": "wtype är inte tillgängligt installera wtype för inklistrningsstöd" "wtype not available - install wtype for paste support": "wtype är inte tillgängligt installera wtype för inklistrningsstöd"
}, },
+78
View File
@@ -107,6 +107,9 @@
"%1 windows": { "%1 windows": {
"%1 windows": "" "%1 windows": ""
}, },
"%1: %2": {
"%1: %2": ""
},
"%1m ago": { "%1m ago": {
"%1m ago": "%1dk önce" "%1m ago": "%1dk önce"
}, },
@@ -1790,6 +1793,9 @@
"Connecting...": { "Connecting...": {
"Connecting...": "Bağlanıyor..." "Connecting...": "Bağlanıyor..."
}, },
"Connecting…": {
"Connecting…": ""
},
"Connection failed": { "Connection failed": {
"Connection failed": "" "Connection failed": ""
}, },
@@ -1970,6 +1976,9 @@
"Creating...": { "Creating...": {
"Creating...": "Oluşturuluyor..." "Creating...": "Oluşturuluyor..."
}, },
"Credentials": {
"Credentials": ""
},
"Critical Battery": { "Critical Battery": {
"Critical Battery": "" "Critical Battery": ""
}, },
@@ -2828,6 +2837,9 @@
"Enter PIN for ": { "Enter PIN for ": {
"Enter PIN for ": "Şunun için PIN gir: " "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": {
"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 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": {
"Failed to save audio config": "" "Failed to save audio config": ""
}, },
@@ -3158,6 +3173,9 @@
"Failed to save profile": { "Failed to save profile": {
"Failed to save profile": "" "Failed to save profile": ""
}, },
"Failed to send SMS": {
"Failed to send SMS": ""
},
"Failed to send clipboard": { "Failed to send clipboard": {
"Failed to send clipboard": "" "Failed to send clipboard": ""
}, },
@@ -3503,6 +3521,9 @@
"Format Legend": { "Format Legend": {
"Format Legend": "Biçim Açıklaması" "Format Legend": "Biçim Açıklaması"
}, },
"Forward 10s": {
"Forward 10s": ""
},
"Frame": { "Frame": {
"Frame": "" "Frame": ""
}, },
@@ -3818,6 +3839,9 @@
"Hide device": { "Hide device": {
"Hide device": "" "Hide device": ""
}, },
"Hide installed": {
"Hide installed": ""
},
"Hide notification content until expanded": { "Hide notification content until expanded": {
"Hide notification content until expanded": "" "Hide notification content until expanded": ""
}, },
@@ -4127,6 +4151,9 @@
"Installed": { "Installed": {
"Installed": "Yüklendi" "Installed": "Yüklendi"
}, },
"Installed first": {
"Installed first": ""
},
"Installed: %1": { "Installed: %1": {
"Installed: %1": "Yüklendi: %1" "Installed: %1": "Yüklendi: %1"
}, },
@@ -4952,6 +4979,9 @@
"Network Status": { "Network Status": {
"Network Status": "Ağ Durumu" "Network Status": "Ağ Durumu"
}, },
"Network Type": {
"Network Type": ""
},
"Network download and upload speed display": { "Network download and upload speed display": {
"Network download and upload speed display": "Ağ indirme ve yükleme hız gösterimi" "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 human user accounts found.": "" "No human user accounts found.": ""
}, },
"No images found": {
"No images found": ""
},
"No info items": { "No info items": {
"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": {
"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.": {
"Play a video when the screen locks.": "" "Play a video when the screen locks.": ""
}, },
@@ -6101,6 +6137,9 @@
"Preview: %1": { "Preview: %1": {
"Preview: %1": "" "Preview: %1": ""
}, },
"Previous": {
"Previous": ""
},
"Primary": { "Primary": {
"Primary": "Birincil" "Primary": "Birincil"
}, },
@@ -6287,6 +6326,9 @@
"Recent Colors": { "Recent Colors": {
"Recent Colors": "Son Renkler" "Recent Colors": "Son Renkler"
}, },
"Recent Images": {
"Recent Images": ""
},
"Recently Used Apps": { "Recently Used Apps": {
"Recently Used Apps": "Son Kullanılan Uygulamalar" "Recently Used Apps": "Son Kullanılan Uygulamalar"
}, },
@@ -6509,6 +6551,9 @@
"Revert": { "Revert": {
"Revert": "Geri Al" "Revert": "Geri Al"
}, },
"Rewind 10s": {
"Rewind 10s": ""
},
"Right": { "Right": {
"Right": "Sağ" "Right": "Sağ"
}, },
@@ -6596,6 +6641,9 @@
"SMS": { "SMS": {
"SMS": "" "SMS": ""
}, },
"SMS sent successfully": {
"SMS sent successfully": ""
},
"Saturation": { "Saturation": {
"Saturation": "" "Saturation": ""
}, },
@@ -6617,6 +6665,9 @@
"Save and switch between display configurations": { "Save and switch between display configurations": {
"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": {
"Save critical priority notifications to history": "" "Save critical priority notifications to history": ""
}, },
@@ -7370,6 +7421,9 @@
"Signal": { "Signal": {
"Signal": "Sinyal" "Signal": "Sinyal"
}, },
"Signal Strength": {
"Signal Strength": ""
},
"Signal:": { "Signal:": {
"Signal:": "Sinyal:" "Signal:": "Sinyal:"
}, },
@@ -8123,6 +8177,9 @@
"Typography & Motion": { "Typography & Motion": {
"Typography & Motion": "Tipografi & Hareket" "Typography & Motion": "Tipografi & Hareket"
}, },
"URI": {
"URI": ""
},
"Unavailable": { "Unavailable": {
"Unavailable": "Mevcut Değil" "Unavailable": "Mevcut Değil"
}, },
@@ -8459,6 +8516,9 @@
"VPN configuration updated": { "VPN configuration updated": {
"VPN configuration updated": "VPN ayarı güncellendi" "VPN configuration updated": "VPN ayarı güncellendi"
}, },
"VPN credentials saved": {
"VPN credentials saved": ""
},
"VPN deleted": { "VPN deleted": {
"VPN deleted": "VPN silindi" "VPN deleted": "VPN silindi"
}, },
@@ -8552,6 +8612,9 @@
"Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": {
"Volume, brightness, and other system OSDs": "Ses, parlaklık ve diğer sistem ekran üstü gösterimleri" "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": "WPA/WPA2" "WPA/WPA2": "WPA/WPA2"
}, },
@@ -8846,12 +8909,18 @@
"brandon": { "brandon": {
"brandon": "" "brandon": ""
}, },
"broken": {
"broken": ""
},
"by %1": { "by %1": {
"by %1": "%1 tarafından" "by %1": "%1 tarafından"
}, },
"days": { "days": {
"days": "gün" "days": "gün"
}, },
"deprecated": {
"deprecated": ""
},
"detached": { "detached": {
"detached": "" "detached": ""
}, },
@@ -8867,6 +8936,9 @@
"direct": { "direct": {
"direct": "" "direct": ""
}, },
"discuss": {
"discuss": ""
},
"dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": {
"dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": "" "dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": ""
}, },
@@ -9026,6 +9098,9 @@
"this app": { "this app": {
"this app": "" "this app": ""
}, },
"unmaintained": {
"unmaintained": ""
},
"until %1": { "until %1": {
"until %1": "" "until %1": ""
}, },
@@ -9047,6 +9122,9 @@
"v%1 by %2": { "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 not available - install wtype for paste support": "wtype mevcut değil - yapıştırma desteği için wtype'ı yükleyin" "wtype not available - install wtype for paste support": "wtype mevcut değil - yapıştırma desteği için wtype'ı yükleyin"
}, },
+78
View File
@@ -107,6 +107,9 @@
"%1 windows": { "%1 windows": {
"%1 windows": "%1 cửa sổ" "%1 windows": "%1 cửa sổ"
}, },
"%1: %2": {
"%1: %2": ""
},
"%1m ago": { "%1m ago": {
"%1m ago": "%1 phút trước" "%1m ago": "%1 phút trước"
}, },
@@ -1790,6 +1793,9 @@
"Connecting...": { "Connecting...": {
"Connecting...": "Đang kết nối..." "Connecting...": "Đang kết nối..."
}, },
"Connecting…": {
"Connecting…": ""
},
"Connection failed": { "Connection failed": {
"Connection failed": "Kết nối thất bại" "Connection failed": "Kết nối thất bại"
}, },
@@ -1970,6 +1976,9 @@
"Creating...": { "Creating...": {
"Creating...": "Đang tạo..." "Creating...": "Đang tạo..."
}, },
"Credentials": {
"Credentials": ""
},
"Critical Battery": { "Critical Battery": {
"Critical Battery": "" "Critical Battery": ""
}, },
@@ -2828,6 +2837,9 @@
"Enter PIN for ": { "Enter PIN for ": {
"Enter PIN for ": "Nhập PIN cho " "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": {
"Enter URL or text to share": "Nhập URL hoặc văn bản để chia sẻ" "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.": {
"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 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": {
"Failed to save audio config": "Lưu cấu hình âm thanh thất bại" "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": {
"Failed to save profile": "Lưu cấu hình thất bại" "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": {
"Failed to send clipboard": "Gửi bảng nhớ tạm thất bại" "Failed to send clipboard": "Gửi bảng nhớ tạm thất bại"
}, },
@@ -3503,6 +3521,9 @@
"Format Legend": { "Format Legend": {
"Format Legend": "Chú thích định dạng" "Format Legend": "Chú thích định dạng"
}, },
"Forward 10s": {
"Forward 10s": ""
},
"Frame": { "Frame": {
"Frame": "Khung" "Frame": "Khung"
}, },
@@ -3818,6 +3839,9 @@
"Hide device": { "Hide device": {
"Hide device": "Ẩn thiết bị" "Hide device": "Ẩn thiết bị"
}, },
"Hide installed": {
"Hide installed": ""
},
"Hide notification content until expanded": { "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" "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": {
"Installed": "Đã cài đặt" "Installed": "Đã cài đặt"
}, },
"Installed first": {
"Installed first": ""
},
"Installed: %1": { "Installed: %1": {
"Installed: %1": "Đã cài đặt: %1" "Installed: %1": "Đã cài đặt: %1"
}, },
@@ -4952,6 +4979,9 @@
"Network Status": { "Network Status": {
"Network Status": "Trạng thái mạng" "Network Status": "Trạng thái mạng"
}, },
"Network Type": {
"Network Type": ""
},
"Network download and upload speed display": { "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)" "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.": {
"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 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": {
"No info items": "Không có mục thông tin nào" "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": {
"Place the dock on the Wayland overlay layer": "Đặt thanh dock trên lớp phủ Wayland" "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.": {
"Play a video when the screen locks.": "Phát một video khi màn hình khóa." "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": {
"Preview: %1": "" "Preview: %1": ""
}, },
"Previous": {
"Previous": ""
},
"Primary": { "Primary": {
"Primary": "Chính" "Primary": "Chính"
}, },
@@ -6287,6 +6326,9 @@
"Recent Colors": { "Recent Colors": {
"Recent Colors": "Màu gần đây" "Recent Colors": "Màu gần đây"
}, },
"Recent Images": {
"Recent Images": ""
},
"Recently Used Apps": { "Recently Used Apps": {
"Recently Used Apps": "Ứng dụng đã dùng gần đây" "Recently Used Apps": "Ứng dụng đã dùng gần đây"
}, },
@@ -6509,6 +6551,9 @@
"Revert": { "Revert": {
"Revert": "Hoàn tác" "Revert": "Hoàn tác"
}, },
"Rewind 10s": {
"Rewind 10s": ""
},
"Right": { "Right": {
"Right": "Phải" "Right": "Phải"
}, },
@@ -6596,6 +6641,9 @@
"SMS": { "SMS": {
"SMS": "SMS" "SMS": "SMS"
}, },
"SMS sent successfully": {
"SMS sent successfully": ""
},
"Saturation": { "Saturation": {
"Saturation": "Độ bão hòa" "Saturation": "Độ bão hòa"
}, },
@@ -6617,6 +6665,9 @@
"Save and switch between display configurations": { "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 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": {
"Save critical priority notifications to history": "Lưu thông báo ưu tiên khẩn cấp vào lịch sử" "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": {
"Signal": "Tín hiệu" "Signal": "Tín hiệu"
}, },
"Signal Strength": {
"Signal Strength": ""
},
"Signal:": { "Signal:": {
"Signal:": "Tín hiệu:" "Signal:": "Tín hiệu:"
}, },
@@ -8123,6 +8177,9 @@
"Typography & Motion": { "Typography & Motion": {
"Typography & Motion": "Kiểu chữ & Chuyển động" "Typography & Motion": "Kiểu chữ & Chuyển động"
}, },
"URI": {
"URI": ""
},
"Unavailable": { "Unavailable": {
"Unavailable": "Không khả dụng" "Unavailable": "Không khả dụng"
}, },
@@ -8459,6 +8516,9 @@
"VPN configuration updated": { "VPN configuration updated": {
"VPN configuration updated": "Đã cập nhật cấu hình VPN" "VPN configuration updated": "Đã cập nhật cấu hình VPN"
}, },
"VPN credentials saved": {
"VPN credentials saved": ""
},
"VPN deleted": { "VPN deleted": {
"VPN deleted": "Đã xóa VPN" "VPN deleted": "Đã xóa VPN"
}, },
@@ -8552,6 +8612,9 @@
"Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": {
"Volume, brightness, and other system OSDs": "Âm lượng, độ sáng và OSD hệ thống khác" "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": "WPA/WPA2" "WPA/WPA2": "WPA/WPA2"
}, },
@@ -8846,12 +8909,18 @@
"brandon": { "brandon": {
"brandon": "brandon (Kiểu)" "brandon": "brandon (Kiểu)"
}, },
"broken": {
"broken": ""
},
"by %1": { "by %1": {
"by %1": "bởi %1" "by %1": "bởi %1"
}, },
"days": { "days": {
"days": "ngày" "days": "ngày"
}, },
"deprecated": {
"deprecated": ""
},
"detached": { "detached": {
"detached": "đã tách ra" "detached": "đã tách ra"
}, },
@@ -8867,6 +8936,9 @@
"direct": { "direct": {
"direct": "trực tiếp" "direct": "trực tiếp"
}, },
"discuss": {
"discuss": ""
},
"dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": {
"dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, 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ế <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">lấy cảm hứng từ material 3</a>.<br /><br/>Nó được xây dựng bằng <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, một framework QT6 để xây dựng shell desktop, và <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, một ngôn ngữ lập trình biên dịch, định kiểu tĩnh." "dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, 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ế <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">lấy cảm hứng từ material 3</a>.<br /><br/>Nó được xây dựng bằng <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, một framework QT6 để xây dựng shell desktop, và <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, 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": {
"this app": "ứng dụng này" "this app": "ứng dụng này"
}, },
"unmaintained": {
"unmaintained": ""
},
"until %1": { "until %1": {
"until %1": "cho đến %1" "until %1": "cho đến %1"
}, },
@@ -9047,6 +9122,9 @@
"v%1 by %2": { "v%1 by %2": {
"v%1 by %2": "v%1 bởi %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 not available - install wtype for paste support": "wtype không khả dụng - hãy cài đặt wtype để hỗ trợ dán" "wtype not available - install wtype for paste support": "wtype không khả dụng - hãy cài đặt wtype để hỗ trợ dán"
}, },
+159 -81
View File
@@ -107,6 +107,9 @@
"%1 windows": { "%1 windows": {
"%1 windows": "%1 个窗口" "%1 windows": "%1 个窗口"
}, },
"%1: %2": {
"%1: %2": ""
},
"%1m ago": { "%1m ago": {
"%1m ago": "%1 分钟前" "%1m ago": "%1 分钟前"
}, },
@@ -324,7 +327,7 @@
"A user with that name already exists.": "已存在同名用户。" "A user with that name already exists.": "已存在同名用户。"
}, },
"AC Adapter (Plugged In)": { "AC Adapter (Plugged In)": {
"AC Adapter (Plugged In)": "" "AC Adapter (Plugged In)": "交流电适配器(已插入)"
}, },
"AC Power": { "AC Power": {
"AC Power": "交流电" "AC Power": "交流电"
@@ -528,7 +531,7 @@
"Allow": "允许" "Allow": "允许"
}, },
"Allow LAN access": { "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": {
"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 inverse concave corner cutouts to the bar": "为状态栏应用反向凹角裁切"
}, },
"Apply to Hardware": { "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.": {
"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 Popup Gaps": "自动弹窗间隙"
}, },
"Auto Power Saver": { "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.": {
"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 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.": "" "Automatically turn on Power Saver profile when battery is low.": "低电量时自动启用省电配置"
}, },
"Automation": { "Automation": {
"Automation": "自动化" "Automation": "自动化"
@@ -978,7 +981,7 @@
"Background Blur": "背景模糊" "Background Blur": "背景模糊"
}, },
"Background Color": { "Background Color": {
"Background Color": "" "Background Color": "背景颜色"
}, },
"Background Effect": { "Background Effect": {
"Background Effect": "背景效果" "Background Effect": "背景效果"
@@ -1014,7 +1017,7 @@
"Bar Configurations": "状态栏设置" "Bar Configurations": "状态栏设置"
}, },
"Bar Inset Padding": { "Bar Inset Padding": {
"Bar Inset Padding": "" "Bar Inset Padding": "状态栏内嵌边距"
}, },
"Bar Opacity": { "Bar Opacity": {
"Bar Opacity": "状态栏不透明度" "Bar Opacity": "状态栏不透明度"
@@ -1023,7 +1026,7 @@
"Bar Shadows": "状态栏阴影" "Bar Shadows": "状态栏阴影"
}, },
"Bar Spacing": { "Bar Spacing": {
"Bar Spacing": "" "Bar Spacing": "状态栏间距"
}, },
"Bar Transparency": { "Bar Transparency": {
"Bar Transparency": "状态栏透明度" "Bar Transparency": "状态栏透明度"
@@ -1053,34 +1056,34 @@
"Battery Charge Limit": "电池充电限制" "Battery Charge Limit": "电池充电限制"
}, },
"Battery Health": { "Battery Health": {
"Battery Health": "" "Battery Health": "电池健康"
}, },
"Battery Power": { "Battery Power": {
"Battery Power": "" "Battery Power": "电池电量"
}, },
"Battery Protection & Charging": { "Battery Protection & Charging": {
"Battery Protection & Charging": "" "Battery Protection & Charging": "电池保护与充电"
}, },
"Battery Status": { "Battery Status": {
"Battery Status": "" "Battery Status": "电池状态"
}, },
"Battery and power management": { "Battery and power management": {
"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%": "" "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!": "" "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": "" "Battery is at %1% - Consider charging soon": "电池电量 %1% - 请考虑尽快充电"
}, },
"Battery level and power management": { "Battery level and power management": {
"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.": "" "Battery percentage to trigger a critical alert.": "触发警报的电量百分比"
}, },
"Behavior": { "Behavior": {
"Behavior": "行为" "Behavior": "行为"
@@ -1368,13 +1371,13 @@
"Channel": "频道" "Channel": "频道"
}, },
"Charge Level": { "Charge Level": {
"Charge Level": "" "Charge Level": "充电级别"
}, },
"Charge Limit Reached": { "Charge Limit Reached": {
"Charge Limit Reached": "" "Charge Limit Reached": "已达充电上限"
}, },
"Charge limit applied successfully": { "Charge limit applied successfully": {
"Charge limit applied successfully": "" "Charge limit applied successfully": "充电限制应用成功"
}, },
"Charging": { "Charging": {
"Charging": "充电" "Charging": "充电"
@@ -1437,7 +1440,7 @@
"Choose how this bar resolves shadow direction": "选择此状态栏解析阴影方向的方式" "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 how to be notified about battery alerts.": "选择电量警报通知方式"
}, },
"Choose icon": { "Choose icon": {
"Choose icon": "选择图标" "Choose icon": "选择图标"
@@ -1533,13 +1536,13 @@
"Click Through": "鼠标穿透" "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 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": {
"Click any shortcut to edit. Changes save to %1": "点击任意快捷方式以编辑。更改将保存至 %1。" "Click any shortcut to edit. Changes save to %1": "点击任意快捷方式以编辑。更改将保存至 %1。"
}, },
"Click to Paste": { "Click to Paste": {
"Click to Paste": "" "Click to Paste": "点击粘贴"
}, },
"Click to capture": { "Click to capture": {
"Click to capture": "点击以捕获" "Click to capture": "点击以捕获"
@@ -1790,6 +1793,9 @@
"Connecting...": { "Connecting...": {
"Connecting...": "正在连接..." "Connecting...": "正在连接..."
}, },
"Connecting…": {
"Connecting…": ""
},
"Connection failed": { "Connection failed": {
"Connection failed": "连接失败" "Connection failed": "连接失败"
}, },
@@ -1970,20 +1976,23 @@
"Creating...": { "Creating...": {
"Creating...": "正在创建..." "Creating...": "正在创建..."
}, },
"Credentials": {
"Credentials": ""
},
"Critical Battery": { "Critical Battery": {
"Critical Battery": "" "Critical Battery": "电量警报"
}, },
"Critical Battery Alert": { "Critical Battery Alert": {
"Critical Battery Alert": "" "Critical Battery Alert": "紧急电量警报"
}, },
"Critical Battery Notifications": { "Critical Battery Notifications": {
"Critical Battery Notifications": "" "Critical Battery Notifications": "紧急电量通知"
}, },
"Critical Priority": { "Critical Priority": {
"Critical Priority": "紧急优先级" "Critical Priority": "紧急优先级"
}, },
"Critical Threshold": { "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: Select All • Ctrl+P: Preview • Enter/Shift+Enter: Find Next/Previous • Esc: Close": "Ctrl+A:全选 • Ctrl+P:预览 • Enter/Shift+Enter:查找下一个/上一个 • ESC:关闭" "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": "深色模式"
}, },
"Dark Mode Icon Theme": { "Dark Mode Icon Theme": {
"Dark Mode Icon Theme": "" "Dark Mode Icon Theme": "深色模式图标主题"
}, },
"Dark mode base": { "Dark mode base": {
"Dark mode base": "深色模式基于..." "Dark mode base": "深色模式基于..."
@@ -2667,7 +2676,7 @@
"Edge Spacing": "边缘间距" "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 spacing, exclusive zone, and popup gaps are managed by Frame": "边缘空隙、排除区域及弹窗间隙受框架管理"
}, },
"Edge the launcher slides from": { "Edge the launcher slides from": {
"Edge the launcher slides from": "启动器滑入侧" "Edge the launcher slides from": "启动器滑入侧"
@@ -2828,6 +2837,9 @@
"Enter PIN for ": { "Enter PIN for ": {
"Enter PIN for ": "输入 PIN " "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": {
"Enter URL or text to share": "请输入想要共享的网址或文本" "Enter URL or text to share": "请输入想要共享的网址或文本"
}, },
@@ -2895,7 +2907,7 @@
"Errors": "错误" "Errors": "错误"
}, },
"Estimated Time": { "Estimated Time": {
"Estimated Time": "" "Estimated Time": "预估时间"
}, },
"Ethernet": { "Ethernet": {
"Ethernet": "以太网" "Ethernet": "以太网"
@@ -2925,7 +2937,7 @@
"Existing Users": "现有用户" "Existing Users": "现有用户"
}, },
"Exit node": { "Exit node": {
"Exit node": "" "Exit node": "退出节点"
}, },
"Experimental Feature": { "Experimental Feature": {
"Experimental Feature": "实验性功能" "Experimental Feature": "实验性功能"
@@ -2991,7 +3003,7 @@
"Failed to apply Qt colors": "应用 QT 配色失败" "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 charge limit to system": "充电限制应用到系统失败"
}, },
"Failed to apply profile": { "Failed to apply profile": {
"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.": {
"Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": "运行 'dms greeter status' 失败。确保 DMS 已安装,且 dms 已在 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": {
"Failed to save audio config": "音频配置保存失败" "Failed to save audio config": "音频配置保存失败"
}, },
@@ -3158,6 +3173,9 @@
"Failed to save profile": { "Failed to save profile": {
"Failed to save profile": "保存配置失败" "Failed to save profile": "保存配置失败"
}, },
"Failed to send SMS": {
"Failed to send SMS": ""
},
"Failed to send clipboard": { "Failed to send clipboard": {
"Failed to send clipboard": "发送剪切板失败" "Failed to send clipboard": "发送剪切板失败"
}, },
@@ -3285,7 +3303,7 @@
"Filter": "筛选" "Filter": "筛选"
}, },
"Filter by type": { "Filter by type": {
"Filter by type": "" "Filter by type": "类别筛选"
}, },
"Find in Text": { "Find in Text": {
"Find in Text": "查找文本" "Find in Text": "查找文本"
@@ -3503,6 +3521,9 @@
"Format Legend": { "Format Legend": {
"Format Legend": "参考格式" "Format Legend": "参考格式"
}, },
"Forward 10s": {
"Forward 10s": ""
},
"Frame": { "Frame": {
"Frame": "框架" "Frame": "框架"
}, },
@@ -3588,7 +3609,7 @@
"Gamma control not available. Requires DMS API v6+.": "伽玛控制不可用,需要 DMS API v6+。" "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)": "" "Gap between the end widgets and the bar ends (0 = edge-to-edge)": "两端部件与状态栏之间的间隙( 0 = 边靠边)"
}, },
"Generate Override": { "Generate Override": {
"Generate Override": "生成 Override" "Generate Override": "生成 Override"
@@ -3818,6 +3839,9 @@
"Hide device": { "Hide device": {
"Hide device": "隐藏设备" "Hide device": "隐藏设备"
}, },
"Hide installed": {
"Hide installed": ""
},
"Hide notification content until expanded": { "Hide notification content until expanded": {
"Hide notification content until expanded": "隐藏通知内容,直到展开" "Hide notification content until expanded": "隐藏通知内容,直到展开"
}, },
@@ -3960,7 +3984,7 @@
"Icon Theme": "图标主题" "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": "" "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": {
"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": "已安装" "Installed": "已安装"
}, },
"Installed first": {
"Installed first": ""
},
"Installed: %1": { "Installed: %1": {
"Installed: %1": "已安装:%1" "Installed: %1": "已安装:%1"
}, },
@@ -4197,7 +4224,7 @@
"Keep in Bar": "" "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 the clipboard type filter when reopening history": "重新打开剪切板历史记录时保持上次的筛选类别"
}, },
"Keep typing": { "Keep typing": {
"Keep typing": "继续输入" "Keep typing": "继续输入"
@@ -4341,7 +4368,7 @@
"Light Mode": "浅色模式" "Light Mode": "浅色模式"
}, },
"Light Mode Icon Theme": { "Light Mode Icon Theme": {
"Light Mode Icon Theme": "" "Light Mode Icon Theme": "浅色模式图标主题"
}, },
"Light Rain": { "Light Rain": {
"Light Rain": "小雨" "Light Rain": "小雨"
@@ -4359,10 +4386,10 @@
"Light mode harmony": "浅色模式调和" "Light mode harmony": "浅色模式调和"
}, },
"Limit set to %1%": { "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.": "" "Limit the maximum battery charge level to extend lifespan.": "限制最大充电百分比以延长电池寿命"
}, },
"Line": { "Line": {
"Line": "线条" "Line": "线条"
@@ -4401,7 +4428,7 @@
"Local": "本地" "Local": "本地"
}, },
"Local Weather": { "Local Weather": {
"Local Weather": "" "Local Weather": "本地天气"
}, },
"Locale": { "Locale": {
"Locale": "区域" "Locale": "区域"
@@ -4476,13 +4503,13 @@
"Low": "低" "Low": "低"
}, },
"Low Battery": { "Low Battery": {
"Low Battery": "" "Low Battery": "低电量"
}, },
"Low Battery Notifications": { "Low Battery Notifications": {
"Low Battery Notifications": "" "Low Battery Notifications": "低电量通知"
}, },
"Low Battery Threshold": { "Low Battery Threshold": {
"Low Battery Threshold": "" "Low Battery Threshold": "低电量阈值"
}, },
"Low Priority": { "Low Priority": {
"Low Priority": "次要优先级" "Low Priority": "次要优先级"
@@ -4887,7 +4914,7 @@
"Music Player": "音乐播放器" "Music Player": "音乐播放器"
}, },
"Mute During Playback": { "Mute During Playback": {
"Mute During Playback": "" "Mute During Playback": "媒体播放时静音"
}, },
"Mute Popups": { "Mute Popups": {
"Mute Popups": "静音弹窗" "Mute Popups": "静音弹窗"
@@ -4952,6 +4979,9 @@
"Network Status": { "Network Status": {
"Network Status": "网络状态" "Network Status": "网络状态"
}, },
"Network Type": {
"Network Type": ""
},
"Network download and upload speed display": { "Network download and upload speed display": {
"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 human user accounts found.": "未找到普通用户账户。" "No human user accounts found.": "未找到普通用户账户。"
}, },
"No images found": {
"No images found": ""
},
"No info items": { "No info items": {
"No info items": "无信息项目" "No info items": "无信息项目"
}, },
@@ -5400,7 +5433,7 @@
"Nothing to see here": "空空如也" "Nothing to see here": "空空如也"
}, },
"Notification": { "Notification": {
"Notification": "" "Notification": "通知"
}, },
"Notification Center": { "Notification Center": {
"Notification Center": "通知中心" "Notification Center": "通知中心"
@@ -5424,7 +5457,7 @@
"Notification Timeouts": "通知超时" "Notification Timeouts": "通知超时"
}, },
"Notification Type": { "Notification Type": {
"Notification Type": "" "Notification Type": "通知类型"
}, },
"Notification toast popups": { "Notification toast popups": {
"Notification toast popups": "通知弹窗" "Notification toast popups": "通知弹窗"
@@ -5433,7 +5466,7 @@
"Notifications": "通知" "Notifications": "通知"
}, },
"Notify when limit is reached": { "Notify when limit is reached": {
"Notify when limit is reached": "" "Notify when limit is reached": "达到限制时通知"
}, },
"Numbers": { "Numbers": {
"Numbers": "数字" "Numbers": "数字"
@@ -5888,6 +5921,9 @@
"Place the dock on the Wayland overlay layer": { "Place the dock on the Wayland overlay layer": {
"Place the dock on the Wayland overlay layer": "将程序坞置于 Wayland 叠加层" "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.": {
"Play a video when the screen locks.": "锁屏是播放视频。" "Play a video when the screen locks.": "锁屏是播放视频。"
}, },
@@ -6036,7 +6072,7 @@
"Power Profile Degradation": "电源配置性能下降" "Power Profile Degradation": "电源配置性能下降"
}, },
"Power Profiles Auto-Switching": { "Power Profiles Auto-Switching": {
"Power Profiles Auto-Switching": "" "Power Profiles Auto-Switching": "性能模式自动切换"
}, },
"Power Saver": { "Power Saver": {
"Power Saver": "省电" "Power Saver": "省电"
@@ -6048,10 +6084,10 @@
"Power profile management available": "电源配置管理可用" "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 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 profile to use when running on battery power.": "电池供电时使用性能模式"
}, },
"Power source": { "Power source": {
"Power source": "电源" "Power source": "电源"
@@ -6099,7 +6135,10 @@
"Preview": "预览" "Preview": "预览"
}, },
"Preview: %1": { "Preview: %1": {
"Preview: %1": "" "Preview: %1": "预览:%1"
},
"Previous": {
"Previous": ""
}, },
"Primary": { "Primary": {
"Primary": "主色" "Primary": "主色"
@@ -6108,7 +6147,7 @@
"Primary Container": "主色容器" "Primary Container": "主色容器"
}, },
"Primary Theme Color": { "Primary Theme Color": {
"Primary Theme Color": "" "Primary Theme Color": "主要主题色"
}, },
"Print Server Management": { "Print Server Management": {
"Print Server Management": "打印服务器管理" "Print Server Management": "打印服务器管理"
@@ -6159,7 +6198,7 @@
"Process Count": "进程计数" "Process Count": "进程计数"
}, },
"Process exited with code %1": { "Process exited with code %1": {
"Process exited with code %1": "" "Process exited with code %1": "进程已退出,退出码:%1"
}, },
"Processes": { "Processes": {
"Processes": "进程" "Processes": "进程"
@@ -6198,10 +6237,10 @@
"Profile saved: %1": "已保存配置:%1" "Profile saved: %1": "已保存配置:%1"
}, },
"Profile when Plugged In (AC)": { "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": "" "Profile when on Battery": "电池供电配置模式"
}, },
"Protocol": { "Protocol": {
"Protocol": "协议" "Protocol": "协议"
@@ -6287,6 +6326,9 @@
"Recent Colors": { "Recent Colors": {
"Recent Colors": "最近拾取的颜色" "Recent Colors": "最近拾取的颜色"
}, },
"Recent Images": {
"Recent Images": ""
},
"Recently Used Apps": { "Recently Used Apps": {
"Recently Used Apps": "最近使用的应用" "Recently Used Apps": "最近使用的应用"
}, },
@@ -6336,7 +6378,7 @@
"Remember Last Query": "记忆上次查询" "Remember Last Query": "记忆上次查询"
}, },
"Remember Type Filter": { "Remember Type Filter": {
"Remember Type Filter": "" "Remember Type Filter": "记住筛选类型"
}, },
"Remember last session": { "Remember last session": {
"Remember last session": "记住上次的会话" "Remember last session": "记住上次的会话"
@@ -6509,6 +6551,9 @@
"Revert": { "Revert": {
"Revert": "还原" "Revert": "还原"
}, },
"Rewind 10s": {
"Rewind 10s": ""
},
"Right": { "Right": {
"Right": "右侧" "Right": "右侧"
}, },
@@ -6596,6 +6641,9 @@
"SMS": { "SMS": {
"SMS": "短信" "SMS": "短信"
}, },
"SMS sent successfully": {
"SMS sent successfully": ""
},
"Saturation": { "Saturation": {
"Saturation": "饱和度" "Saturation": "饱和度"
}, },
@@ -6617,6 +6665,9 @@
"Save and switch between display configurations": { "Save and switch between display configurations": {
"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": {
"Save critical priority notifications to history": "将关键优先级通知保存至历史" "Save critical priority notifications to history": "将关键优先级通知保存至历史"
}, },
@@ -6639,7 +6690,7 @@
"Saved Configurations": "已保存的配置" "Saved Configurations": "已保存的配置"
}, },
"Saved Networks": { "Saved Networks": {
"Saved Networks": "" "Saved Networks": "已保存的网络"
}, },
"Saved Note": { "Saved Note": {
"Saved Note": "已保存笔记" "Saved Note": "已保存笔记"
@@ -6765,7 +6816,7 @@
"Secondary": "辅色" "Secondary": "辅色"
}, },
"Secondary Container": { "Secondary Container": {
"Secondary Container": "" "Secondary Container": "辅色容器"
}, },
"Secured": { "Secured": {
"Secured": "已加密" "Secured": "已加密"
@@ -6909,7 +6960,7 @@
"Separate": "分离" "Separate": "分离"
}, },
"Separate Light & Dark Themes": { "Separate Light & Dark Themes": {
"Separate Light & Dark Themes": "" "Separate Light & Dark Themes": "区分浅色主题与深色主题"
}, },
"Separator": { "Separator": {
"Separator": "分隔符" "Separator": "分隔符"
@@ -6954,7 +7005,7 @@
"Set the font size for notification summary text": "设置通知标题字号" "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.": "" "Set the percentage at which the battery is considered low.": "设置低电量百分比"
}, },
"Setting": { "Setting": {
"Setting": "设置项" "Setting": "设置项"
@@ -7071,7 +7122,7 @@
"Show Feels Like Temperature": "显示体感温度" "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.": "" "Show Flatpak, Snap, AppImage, or Nix badge icons on launcher items.": "在启动器项目上显示 Flatpak、Snap、AppImage 或者 Nix 徽标"
}, },
"Show Footer": { "Show Footer": {
"Show Footer": "显示页脚" "Show Footer": "显示页脚"
@@ -7146,13 +7197,13 @@
"Show Overflow Badge Count": "显示溢出徽标计数" "Show Overflow Badge Count": "显示溢出徽标计数"
}, },
"Show Package Source Badges": { "Show Package Source Badges": {
"Show Package Source Badges": "" "Show Package Source Badges": "显示包来源徽标"
}, },
"Show Password Field": { "Show Password Field": {
"Show Password Field": "显示密码区域" "Show Password Field": "显示密码区域"
}, },
"Show Percentage": { "Show Percentage": {
"Show Percentage": "" "Show Percentage": "显示百分比"
}, },
"Show Power Actions": { "Show Power Actions": {
"Show Power Actions": "显示电源操作" "Show Power Actions": "显示电源操作"
@@ -7173,7 +7224,7 @@
"Show Reboot": "显示重启" "Show Reboot": "显示重启"
}, },
"Show Remaining Time": { "Show Remaining Time": {
"Show Remaining Time": "" "Show Remaining Time": "显示剩余时间"
}, },
"Show Restart DMS": { "Show Restart DMS": {
"Show Restart DMS": "显示重启 DMS" "Show Restart DMS": "显示重启 DMS"
@@ -7230,10 +7281,10 @@
"Show a bar that drains as the popup's auto-dismiss timer runs": "显示随通知弹窗超时倒计时而缩短的进度条" "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 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 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": {
"Show all 9 tags instead of only occupied tags": "显示所有的 9 个标签,而不是仅显示已占用的标签" "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 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 an urgent alert when battery reaches critical level.": "电量达到紧急级别时显示紧急警报"
}, },
"Show cava audio visualizer in media widget": { "Show cava audio visualizer in media widget": {
"Show cava audio visualizer in media widget": "在多媒体部件中显示 cava 音频可视化" "Show cava audio visualizer in media widget": "在多媒体部件中显示 cava 音频可视化"
@@ -7370,6 +7421,9 @@
"Signal": { "Signal": {
"Signal": "信号" "Signal": "信号"
}, },
"Signal Strength": {
"Signal Strength": ""
},
"Signal:": { "Signal:": {
"Signal:": "信号:" "Signal:": "信号:"
}, },
@@ -7380,7 +7434,7 @@
"Silence notifications": "静默通知" "Silence notifications": "静默通知"
}, },
"Silence system sounds while media is playing": { "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": {
"Single-Line Popup": "单行弹窗" "Single-Line Popup": "单行弹窗"
@@ -7536,7 +7590,7 @@
"Stripes": "条纹" "Stripes": "条纹"
}, },
"Subtle Overlay": { "Subtle Overlay": {
"Subtle Overlay": "" "Subtle Overlay": "轻微叠加"
}, },
"Summary": { "Summary": {
"Summary": "概要" "Summary": "概要"
@@ -7563,22 +7617,22 @@
"Surface Behavior": "平面行为" "Surface Behavior": "平面行为"
}, },
"Surface Container": { "Surface Container": {
"Surface Container": "" "Surface Container": "平面容器"
}, },
"Surface High": { "Surface High": {
"Surface High": "" "Surface High": "平面增亮"
}, },
"Surface Highest": { "Surface Highest": {
"Surface Highest": "" "Surface Highest": "平面极亮"
}, },
"Surface Opacity": { "Surface Opacity": {
"Surface Opacity": "平面不透明度" "Surface Opacity": "平面不透明度"
}, },
"Surface Text": { "Surface Text": {
"Surface Text": "" "Surface Text": "平面文字"
}, },
"Surface Variant": { "Surface Variant": {
"Surface Variant": "平面变体" "Surface Variant": "平面变体"
}, },
"Surfaces emerge flush from the bar": { "Surfaces emerge flush from the bar": {
"Surfaces emerge flush from the bar": "平面从状态栏涌出" "Surfaces emerge flush from the bar": "平面从状态栏涌出"
@@ -7614,7 +7668,7 @@
"Sync": "同步" "Sync": "同步"
}, },
"Sync Bar Inset Padding": { "Sync Bar Inset Padding": {
"Sync Bar Inset Padding": "" "Sync Bar Inset Padding": "同步状态栏内嵌边距"
}, },
"Sync Mode with Portal": { "Sync Mode with Portal": {
"Sync Mode with Portal": "同步系统颜色模式" "Sync Mode with Portal": "同步系统颜色模式"
@@ -7746,10 +7800,10 @@
"Terminals - Always use Dark Theme": "终端总使用深色主题" "Terminals - Always use Dark Theme": "终端总使用深色主题"
}, },
"Tertiary": { "Tertiary": {
"Tertiary": "" "Tertiary": "三级"
}, },
"Tertiary Container": { "Tertiary Container": {
"Tertiary Container": "" "Tertiary Container": "三级容器"
}, },
"Test Connection": { "Test Connection": {
"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 中的按键绑定" "To use this DMS bind, remove or change the keybind in your config.kdl": "要使用此 DMS 绑定,请删除或更改 config.kdl 中的按键绑定"
}, },
"Toast": { "Toast": {
"Toast": "" "Toast": "浮动通知"
}, },
"Toast Messages": { "Toast Messages": {
"Toast Messages": "弹出式信息" "Toast Messages": "弹出式信息"
@@ -8123,6 +8177,9 @@
"Typography & Motion": { "Typography & Motion": {
"Typography & Motion": "排版与动画" "Typography & Motion": "排版与动画"
}, },
"URI": {
"URI": ""
},
"Unavailable": { "Unavailable": {
"Unavailable": "不可用" "Unavailable": "不可用"
}, },
@@ -8343,7 +8400,7 @@
"Use desktop wallpaper": "使用桌面壁纸" "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 different icon themes for light and dark mode": "为浅色模式与深色模式使用不同的图标主题"
}, },
"Use fingerprint authentication for the lock screen.": { "Use fingerprint authentication for the lock screen.": {
"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 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 one inset value for every bar": "每个状态栏使用同一个内嵌值"
}, },
"Use smaller notification cards": { "Use smaller notification cards": {
"Use smaller notification cards": "使用更小的通知卡片" "Use smaller notification cards": "使用更小的通知卡片"
@@ -8459,6 +8516,9 @@
"VPN configuration updated": { "VPN configuration updated": {
"VPN configuration updated": "VPN 配置已更新" "VPN configuration updated": "VPN 配置已更新"
}, },
"VPN credentials saved": {
"VPN credentials saved": ""
},
"VPN deleted": { "VPN deleted": {
"VPN deleted": "VPN 已删除" "VPN deleted": "VPN 已删除"
}, },
@@ -8552,6 +8612,9 @@
"Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": {
"Volume, brightness, and other system OSDs": "音量、亮度和其他系统 OSD" "Volume, brightness, and other system OSDs": "音量、亮度和其他系统 OSD"
}, },
"Votes": {
"Votes": ""
},
"WPA/WPA2": { "WPA/WPA2": {
"WPA/WPA2": "WPA/WPA2" "WPA/WPA2": "WPA/WPA2"
}, },
@@ -8616,7 +8679,7 @@
"When locked": "何时锁定" "When locked": "何时锁定"
}, },
"White": { "White": {
"White": "" "White": "白色"
}, },
"Wi-Fi Password": { "Wi-Fi Password": {
"Wi-Fi Password": "Wi-Fi 密码" "Wi-Fi Password": "Wi-Fi 密码"
@@ -8670,7 +8733,7 @@
"Widget Styling": "部件样式" "Widget Styling": "部件样式"
}, },
"Widget Text Style": { "Widget Text Style": {
"Widget Text Style": "" "Widget Text Style": "部件文本风格"
}, },
"Widget Transparency": { "Widget Transparency": {
"Widget Transparency": "部件透明度" "Widget Transparency": "部件透明度"
@@ -8846,12 +8909,18 @@
"brandon": { "brandon": {
"brandon": "brandon" "brandon": "brandon"
}, },
"broken": {
"broken": ""
},
"by %1": { "by %1": {
"by %1": "%1" "by %1": "%1"
}, },
"days": { "days": {
"days": "天" "days": "天"
}, },
"deprecated": {
"deprecated": ""
},
"detached": { "detached": {
"detached": "已分离" "detached": "已分离"
}, },
@@ -8867,6 +8936,9 @@
"direct": { "direct": {
"direct": "直接" "direct": "直接"
}, },
"discuss": {
"discuss": ""
},
"dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": {
"dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": "DMS 是一款高度可自定义的现代桌面 Shell,采用受 <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">Material 3</a> 启发的设计。<br /><br/>DMS 基于 <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>(用于构建桌面 Shell 的 QT6 框架)和 <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>(静态类型编译型编程语言)开发。" "dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": "DMS 是一款高度可自定义的现代桌面 Shell,采用受 <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">Material 3</a> 启发的设计。<br /><br/>DMS 基于 <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>(用于构建桌面 Shell 的 QT6 框架)和 <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>(静态类型编译型编程语言)开发。"
}, },
@@ -9026,6 +9098,9 @@
"this app": { "this app": {
"this app": "此应用" "this app": "此应用"
}, },
"unmaintained": {
"unmaintained": ""
},
"until %1": { "until %1": {
"until %1": "直到 %1" "until %1": "直到 %1"
}, },
@@ -9047,6 +9122,9 @@
"v%1 by %2": { "v%1 by %2": {
"v%1 by %2": "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 not available - install wtype for paste support": "wtype 不可用 - 安装 wtype 已支持粘贴功能" "wtype not available - install wtype for paste support": "wtype 不可用 - 安装 wtype 已支持粘贴功能"
}, },
@@ -107,6 +107,9 @@
"%1 windows": { "%1 windows": {
"%1 windows": "%1 個視窗" "%1 windows": "%1 個視窗"
}, },
"%1: %2": {
"%1: %2": ""
},
"%1m ago": { "%1m ago": {
"%1m ago": "%1 分鐘前" "%1m ago": "%1 分鐘前"
}, },
@@ -1790,6 +1793,9 @@
"Connecting...": { "Connecting...": {
"Connecting...": "連線中..." "Connecting...": "連線中..."
}, },
"Connecting…": {
"Connecting…": ""
},
"Connection failed": { "Connection failed": {
"Connection failed": "連線失敗" "Connection failed": "連線失敗"
}, },
@@ -1970,6 +1976,9 @@
"Creating...": { "Creating...": {
"Creating...": "建立中..." "Creating...": "建立中..."
}, },
"Credentials": {
"Credentials": ""
},
"Critical Battery": { "Critical Battery": {
"Critical Battery": "" "Critical Battery": ""
}, },
@@ -2828,6 +2837,9 @@
"Enter PIN for ": { "Enter PIN for ": {
"Enter PIN for ": "請輸入 PIN 給 " "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": {
"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 run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": "執行 'dms greeter status' 失敗。請確保 DMS 已安裝且 dms 位於 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": {
"Failed to save audio config": "無法儲存音訊設定" "Failed to save audio config": "無法儲存音訊設定"
}, },
@@ -3158,6 +3173,9 @@
"Failed to save profile": { "Failed to save profile": {
"Failed to save profile": "儲存設定檔失敗" "Failed to save profile": "儲存設定檔失敗"
}, },
"Failed to send SMS": {
"Failed to send SMS": ""
},
"Failed to send clipboard": { "Failed to send clipboard": {
"Failed to send clipboard": "無法傳送剪貼簿" "Failed to send clipboard": "無法傳送剪貼簿"
}, },
@@ -3503,6 +3521,9 @@
"Format Legend": { "Format Legend": {
"Format Legend": "格式說明" "Format Legend": "格式說明"
}, },
"Forward 10s": {
"Forward 10s": ""
},
"Frame": { "Frame": {
"Frame": "框架" "Frame": "框架"
}, },
@@ -3818,6 +3839,9 @@
"Hide device": { "Hide device": {
"Hide device": "隱藏裝置" "Hide device": "隱藏裝置"
}, },
"Hide installed": {
"Hide installed": ""
},
"Hide notification content until expanded": { "Hide notification content until expanded": {
"Hide notification content until expanded": "展開前隱藏通知內容" "Hide notification content until expanded": "展開前隱藏通知內容"
}, },
@@ -4127,6 +4151,9 @@
"Installed": { "Installed": {
"Installed": "已安裝" "Installed": "已安裝"
}, },
"Installed first": {
"Installed first": ""
},
"Installed: %1": { "Installed: %1": {
"Installed: %1": "已安裝:%1" "Installed: %1": "已安裝:%1"
}, },
@@ -4952,6 +4979,9 @@
"Network Status": { "Network Status": {
"Network Status": "網路狀態" "Network Status": "網路狀態"
}, },
"Network Type": {
"Network Type": ""
},
"Network download and upload speed display": { "Network download and upload speed display": {
"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 human user accounts found.": "找不到任何真實使用者帳戶。" "No human user accounts found.": "找不到任何真實使用者帳戶。"
}, },
"No images found": {
"No images found": ""
},
"No info items": { "No info items": {
"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": {
"Place the dock on the Wayland overlay layer": "將 Dock 放置在 Wayland 覆蓋層上" "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.": {
"Play a video when the screen locks.": "螢幕鎖定時播放影片。" "Play a video when the screen locks.": "螢幕鎖定時播放影片。"
}, },
@@ -6101,6 +6137,9 @@
"Preview: %1": { "Preview: %1": {
"Preview: %1": "" "Preview: %1": ""
}, },
"Previous": {
"Previous": ""
},
"Primary": { "Primary": {
"Primary": "主要" "Primary": "主要"
}, },
@@ -6287,6 +6326,9 @@
"Recent Colors": { "Recent Colors": {
"Recent Colors": "最近的顏色" "Recent Colors": "最近的顏色"
}, },
"Recent Images": {
"Recent Images": ""
},
"Recently Used Apps": { "Recently Used Apps": {
"Recently Used Apps": "最近使用的應用程式" "Recently Used Apps": "最近使用的應用程式"
}, },
@@ -6509,6 +6551,9 @@
"Revert": { "Revert": {
"Revert": "還原" "Revert": "還原"
}, },
"Rewind 10s": {
"Rewind 10s": ""
},
"Right": { "Right": {
"Right": "右方" "Right": "右方"
}, },
@@ -6596,6 +6641,9 @@
"SMS": { "SMS": {
"SMS": "簡訊" "SMS": "簡訊"
}, },
"SMS sent successfully": {
"SMS sent successfully": ""
},
"Saturation": { "Saturation": {
"Saturation": "飽和度" "Saturation": "飽和度"
}, },
@@ -6617,6 +6665,9 @@
"Save and switch between display configurations": { "Save and switch between display configurations": {
"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": {
"Save critical priority notifications to history": "將高優先順序通知儲存至歷史記錄" "Save critical priority notifications to history": "將高優先順序通知儲存至歷史記錄"
}, },
@@ -7370,6 +7421,9 @@
"Signal": { "Signal": {
"Signal": "訊號" "Signal": "訊號"
}, },
"Signal Strength": {
"Signal Strength": ""
},
"Signal:": { "Signal:": {
"Signal:": "訊號:" "Signal:": "訊號:"
}, },
@@ -8123,6 +8177,9 @@
"Typography & Motion": { "Typography & Motion": {
"Typography & Motion": "字體排版和動態" "Typography & Motion": "字體排版和動態"
}, },
"URI": {
"URI": ""
},
"Unavailable": { "Unavailable": {
"Unavailable": "不可用" "Unavailable": "不可用"
}, },
@@ -8459,6 +8516,9 @@
"VPN configuration updated": { "VPN configuration updated": {
"VPN configuration updated": "VPN 設定已更新" "VPN configuration updated": "VPN 設定已更新"
}, },
"VPN credentials saved": {
"VPN credentials saved": ""
},
"VPN deleted": { "VPN deleted": {
"VPN deleted": "VPN 已刪除" "VPN deleted": "VPN 已刪除"
}, },
@@ -8552,6 +8612,9 @@
"Volume, brightness, and other system OSDs": { "Volume, brightness, and other system OSDs": {
"Volume, brightness, and other system OSDs": "音量、亮度及其他系統OSD" "Volume, brightness, and other system OSDs": "音量、亮度及其他系統OSD"
}, },
"Votes": {
"Votes": ""
},
"WPA/WPA2": { "WPA/WPA2": {
"WPA/WPA2": "WPA/WPA2" "WPA/WPA2": "WPA/WPA2"
}, },
@@ -8846,12 +8909,18 @@
"brandon": { "brandon": {
"brandon": "布蘭登" "brandon": "布蘭登"
}, },
"broken": {
"broken": ""
},
"by %1": { "by %1": {
"by %1": "作者:%1" "by %1": "作者:%1"
}, },
"days": { "days": {
"days": "天" "days": "天"
}, },
"deprecated": {
"deprecated": ""
},
"detached": { "detached": {
"detached": "已分離" "detached": "已分離"
}, },
@@ -8867,6 +8936,9 @@
"direct": { "direct": {
"direct": "直接" "direct": "直接"
}, },
"discuss": {
"discuss": ""
},
"dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": { "dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": {
"dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": "dms 是一個高度可自訂的現代桌面外殼,其設計<a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">靈感來自 material 3</a>。<br /><br/>它使用 <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>(一個用於構建桌面外殼的 QT6 框架)和 <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>(一種靜態類型、編譯式程式語言)構建。" "dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": "dms 是一個高度可自訂的現代桌面外殼,其設計<a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">靈感來自 material 3</a>。<br /><br/>它使用 <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>(一個用於構建桌面外殼的 QT6 框架)和 <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>(一種靜態類型、編譯式程式語言)構建。"
}, },
@@ -9026,6 +9098,9 @@
"this app": { "this app": {
"this app": "此應用程式" "this app": "此應用程式"
}, },
"unmaintained": {
"unmaintained": ""
},
"until %1": { "until %1": {
"until %1": "直到 %1" "until %1": "直到 %1"
}, },
@@ -9047,6 +9122,9 @@
"v%1 by %2": { "v%1 by %2": {
"v%1 by %2": "v%1 由 %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 not available - install wtype for paste support": "wtype 未可用 - 請安裝 wtype 以支援貼上功能" "wtype not available - install wtype for paste support": "wtype 未可用 - 請安裝 wtype 以支援貼上功能"
}, },
+192 -101
View File
@@ -251,6 +251,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "%1: %2",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "%1m ago", "term": "%1m ago",
"translation": "", "translation": "",
@@ -321,13 +328,6 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "1 device connected",
"translation": "",
"context": "KDE Connect status single device",
"reference": "",
"comment": ""
},
{ {
"term": "1 hour", "term": "1 hour",
"translation": "", "translation": "",
@@ -2417,7 +2417,7 @@
{ {
"term": "Battery", "term": "Battery",
"translation": "", "translation": "",
"context": "", "context": "KDE Connect battery label",
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
@@ -3621,7 +3621,7 @@
{ {
"term": "Clipboard sent", "term": "Clipboard sent",
"translation": "", "translation": "",
"context": "KDE Connect clipboard action | Phone Connect clipboard action", "context": "Phone Connect clipboard action",
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
@@ -4143,6 +4143,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Connecting…",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Connection failed", "term": "Connection failed",
"translation": "", "translation": "",
@@ -4549,6 +4556,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Credentials",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Critical Battery", "term": "Critical Battery",
"translation": "", "translation": "",
@@ -5196,7 +5210,7 @@
{ {
"term": "Default", "term": "Default",
"translation": "", "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": "", "reference": "",
"comment": "" "comment": ""
}, },
@@ -5539,7 +5553,7 @@
{ {
"term": "Device unpaired", "term": "Device unpaired",
"translation": "", "translation": "",
"context": "KDE Connect unpair action | Phone Connect unpair action", "context": "Phone Connect unpair action",
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
@@ -6531,7 +6545,7 @@
"comment": "" "comment": ""
}, },
{ {
"term": "Enter URL or text to share", "term": "Enter URI or text to share",
"translation": "", "translation": "",
"context": "KDE Connect share input placeholder", "context": "KDE Connect share input placeholder",
"reference": "", "reference": "",
@@ -7272,6 +7286,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Failed to save VPN credentials",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Failed to save audio config", "term": "Failed to save audio config",
"translation": "", "translation": "",
@@ -7300,6 +7321,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Failed to send SMS",
"translation": "",
"context": "Phone Connect error",
"reference": "",
"comment": ""
},
{ {
"term": "Failed to send clipboard", "term": "Failed to send clipboard",
"translation": "", "translation": "",
@@ -7506,7 +7534,7 @@
{ {
"term": "File", "term": "File",
"translation": "", "translation": "",
"context": "", "context": "KDE Connect send file button",
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
@@ -8105,6 +8133,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Forward 10s",
"translation": "",
"context": "Media forward tooltip",
"reference": "",
"comment": ""
},
{ {
"term": "Frame", "term": "Frame",
"translation": "", "translation": "",
@@ -8833,6 +8868,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Hide installed",
"translation": "",
"context": "plugin browser filter chip",
"reference": "",
"comment": ""
},
{ {
"term": "Hide notification content until expanded", "term": "Hide notification content until expanded",
"translation": "", "translation": "",
@@ -9550,7 +9592,14 @@
{ {
"term": "Installed", "term": "Installed",
"translation": "", "translation": "",
"context": "installed status | plugin browser filter chip", "context": "installed status",
"reference": "",
"comment": ""
},
{
"term": "Installed first",
"translation": "",
"context": "plugin browser filter chip",
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
@@ -11479,6 +11528,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Network Type",
"translation": "",
"context": "KDE Connect network type label",
"reference": "",
"comment": ""
},
{ {
"term": "Network download and upload speed display", "term": "Network download and upload speed display",
"translation": "", "translation": "",
@@ -11580,7 +11636,7 @@
{ {
"term": "Next", "term": "Next",
"translation": "", "translation": "",
"context": "greeter next button", "context": "Media next tooltip | greeter next button",
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
@@ -11920,13 +11976,6 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "No devices connected",
"translation": "",
"context": "KDE Connect status",
"reference": "",
"comment": ""
},
{ {
"term": "No devices found", "term": "No devices found",
"translation": "", "translation": "",
@@ -12011,6 +12060,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "No images found",
"translation": "",
"context": "No recent images found message",
"reference": "",
"comment": ""
},
{ {
"term": "No info items", "term": "No info items",
"translation": "", "translation": "",
@@ -12581,7 +12637,7 @@
{ {
"term": "Notifications", "term": "Notifications",
"translation": "", "translation": "",
"context": "greeter settings link", "context": "KDE Connect notifications label | greeter settings link",
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
@@ -12802,13 +12858,6 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Open KDE Connect on your phone",
"translation": "",
"context": "KDE Connect open app hint",
"reference": "",
"comment": ""
},
{ {
"term": "Open Notepad File", "term": "Open Notepad File",
"translation": "", "translation": "",
@@ -12886,13 +12935,6 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Opening SMS",
"translation": "",
"context": "KDE Connect SMS action",
"reference": "",
"comment": ""
},
{ {
"term": "Opening SMS app", "term": "Opening SMS app",
"translation": "", "translation": "",
@@ -12907,13 +12949,6 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Opening files",
"translation": "",
"context": "KDE Connect browse action",
"reference": "",
"comment": ""
},
{ {
"term": "Opening terminal to update greetd", "term": "Opening terminal to update greetd",
"translation": "", "translation": "",
@@ -13246,7 +13281,7 @@
{ {
"term": "Pair", "term": "Pair",
"translation": "", "translation": "",
"context": "KDE Connect pair button", "context": "",
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
@@ -13400,7 +13435,7 @@
{ {
"term": "Pause", "term": "Pause",
"translation": "", "translation": "",
"context": "", "context": "Media pause tooltip",
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
@@ -13495,13 +13530,6 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Phone Connect unavailable",
"translation": "",
"context": "Phone Connect service unavailable message",
"reference": "",
"comment": ""
},
{ {
"term": "Phone number", "term": "Phone number",
"translation": "", "translation": "",
@@ -13565,13 +13593,6 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Ping sent",
"translation": "",
"context": "KDE Connect ping action",
"reference": "",
"comment": ""
},
{ {
"term": "Ping sent to", "term": "Ping sent to",
"translation": "", "translation": "",
@@ -13635,6 +13656,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Play",
"translation": "",
"context": "Media play tooltip",
"reference": "",
"comment": ""
},
{ {
"term": "Play a video when the screen locks.", "term": "Play a video when the screen locks.",
"translation": "", "translation": "",
@@ -14132,6 +14160,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Previous",
"translation": "",
"context": "Media previous tooltip",
"reference": "",
"comment": ""
},
{ {
"term": "Primary", "term": "Primary",
"translation": "", "translation": "",
@@ -14566,6 +14601,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Recent Images",
"translation": "",
"context": "Recent Images title",
"reference": "",
"comment": ""
},
{ {
"term": "Recently Used Apps", "term": "Recently Used Apps",
"translation": "", "translation": "",
@@ -14583,7 +14625,7 @@
{ {
"term": "Refresh", "term": "Refresh",
"translation": "", "translation": "",
"context": "Phone Connect refresh tooltip | Refresh Tailscale device status", "context": "Refresh Tailscale device status",
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
@@ -15084,6 +15126,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Rewind 10s",
"translation": "",
"context": "Media rewind tooltip",
"reference": "",
"comment": ""
},
{ {
"term": "Right", "term": "Right",
"translation": "", "translation": "",
@@ -15143,7 +15192,7 @@
{ {
"term": "Ringing", "term": "Ringing",
"translation": "", "translation": "",
"context": "KDE Connect ring action | Phone Connect ring action", "context": "Phone Connect ring action",
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
@@ -15287,6 +15336,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "SMS sent successfully",
"translation": "",
"context": "Phone Connect SMS action",
"reference": "",
"comment": ""
},
{ {
"term": "Saturation", "term": "Saturation",
"translation": "", "translation": "",
@@ -15336,6 +15392,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Save credentials",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Save critical priority notifications to history", "term": "Save critical priority notifications to history",
"translation": "", "translation": "",
@@ -15983,14 +16046,7 @@
{ {
"term": "Send Clipboard", "term": "Send Clipboard",
"translation": "", "translation": "",
"context": "KDE Connect clipboard tooltip", "context": "KDE Connect clipboard tooltip | KDE Connect send clipboard tooltip",
"reference": "",
"comment": ""
},
{
"term": "Send File",
"translation": "",
"context": "KDE Connect send file button",
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
@@ -16239,20 +16295,6 @@
"reference": "", "reference": "",
"comment": "" "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", "term": "Shared",
"translation": "", "translation": "",
@@ -17093,6 +17135,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Signal Strength",
"translation": "",
"context": "KDE Connect signal strength label",
"reference": "",
"comment": ""
},
{ {
"term": "Signal:", "term": "Signal:",
"translation": "", "translation": "",
@@ -17380,13 +17429,6 @@
"reference": "", "reference": "",
"comment": "" "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", "term": "Start KDE Connect or Valent to use this plugin",
"translation": "", "translation": "",
@@ -18006,7 +18048,7 @@
{ {
"term": "Text", "term": "Text",
"translation": "", "translation": "",
"context": "text color", "context": "KDE Connect share text button | text color",
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
@@ -18822,6 +18864,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "URI",
"translation": "",
"context": "KDE Connect share URI button",
"reference": "",
"comment": ""
},
{ {
"term": "Unavailable", "term": "Unavailable",
"translation": "", "translation": "",
@@ -18909,7 +18958,7 @@
{ {
"term": "Unknown", "term": "Unknown",
"translation": "", "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": "", "reference": "",
"comment": "" "comment": ""
}, },
@@ -19592,6 +19641,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "VPN credentials saved",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "VPN deleted", "term": "VPN deleted",
"translation": "", "translation": "",
@@ -19809,6 +19865,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Votes",
"translation": "",
"context": "plugin browser sort option",
"reference": "",
"comment": ""
},
{ {
"term": "WPA/WPA2", "term": "WPA/WPA2",
"translation": "", "translation": "",
@@ -20474,6 +20537,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "broken",
"translation": "",
"context": "plugin status",
"reference": "",
"comment": ""
},
{ {
"term": "by %1", "term": "by %1",
"translation": "", "translation": "",
@@ -20488,6 +20558,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "deprecated",
"translation": "",
"context": "plugin status",
"reference": "",
"comment": ""
},
{ {
"term": "detached", "term": "detached",
"translation": "", "translation": "",
@@ -20498,14 +20575,7 @@
{ {
"term": "device", "term": "device",
"translation": "", "translation": "",
"context": "Generic device name | Generic device name fallback", "context": "Generic device name fallback",
"reference": "",
"comment": ""
},
{
"term": "devices connected",
"translation": "",
"context": "KDE Connect status multiple devices",
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
@@ -20523,6 +20593,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "discuss",
"translation": "",
"context": "plugin discussion link",
"reference": "",
"comment": ""
},
{ {
"term": "dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.", "term": "dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.",
"translation": "", "translation": "",
@@ -20894,6 +20971,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "unmaintained",
"translation": "",
"context": "plugin status",
"reference": "",
"comment": ""
},
{ {
"term": "until %1", "term": "until %1",
"translation": "", "translation": "",
@@ -20943,6 +21027,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "verified",
"translation": "",
"context": "plugin status",
"reference": "",
"comment": ""
},
{ {
"term": "wtype not available - install wtype for paste support", "term": "wtype not available - install wtype for paste support",
"translation": "", "translation": "",