1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-28 23:42:51 -05:00

i18n: more RTL layout enhancements

This commit is contained in:
bbedward
2026-01-08 16:11:30 -05:00
parent a21a846bf5
commit 1ff1f3a7f2
53 changed files with 1605 additions and 774 deletions

View File

@@ -8,6 +8,9 @@ import qs.Widgets
FocusScope { FocusScope {
id: root id: root
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
property string homeDir: StandardPaths.writableLocation(StandardPaths.HomeLocation) property string homeDir: StandardPaths.writableLocation(StandardPaths.HomeLocation)
property string docsDir: StandardPaths.writableLocation(StandardPaths.DocumentsLocation) property string docsDir: StandardPaths.writableLocation(StandardPaths.DocumentsLocation)
property string musicDir: StandardPaths.writableLocation(StandardPaths.MusicLocation) property string musicDir: StandardPaths.writableLocation(StandardPaths.MusicLocation)

View File

@@ -115,17 +115,18 @@ StyledRect {
height: weMode ? 165 : (iconSizes[iconSizeIndex] - 8) height: weMode ? 165 : (iconSizes[iconSizeIndex] - 8)
anchors.horizontalCenter: parent.horizontalCenter anchors.horizontalCenter: parent.horizontalCenter
CachingImage { Image {
id: gridPreviewImage id: gridPreviewImage
anchors.fill: parent anchors.fill: parent
anchors.margins: 2 anchors.margins: 2
property var weExtensions: [".jpg", ".jpeg", ".png", ".webp", ".gif", ".bmp", ".tga"] property var weExtensions: [".jpg", ".jpeg", ".png", ".webp", ".gif", ".bmp", ".tga"]
property int weExtIndex: 0 property int weExtIndex: 0
imagePath: { property string imagePath: {
if (weMode && delegateRoot.fileIsDir) if (weMode && delegateRoot.fileIsDir)
return delegateRoot.filePath + "/preview" + weExtensions[weExtIndex]; return delegateRoot.filePath + "/preview" + weExtensions[weExtIndex];
return (!delegateRoot.fileIsDir && isImageFile(delegateRoot.fileName)) ? delegateRoot.filePath : ""; return (!delegateRoot.fileIsDir && isImageFile(delegateRoot.fileName)) ? delegateRoot.filePath : "";
} }
source: imagePath ? "file://" + imagePath.split('/').map(s => encodeURIComponent(s)).join('/') : ""
onStatusChanged: { onStatusChanged: {
if (weMode && delegateRoot.fileIsDir && status === Image.Error) { if (weMode && delegateRoot.fileIsDir && status === Image.Error) {
if (weExtIndex < weExtensions.length - 1) { if (weExtIndex < weExtensions.length - 1) {
@@ -136,7 +137,9 @@ StyledRect {
} }
} }
fillMode: Image.PreserveAspectCrop fillMode: Image.PreserveAspectCrop
maxCacheSize: weMode ? 225 : iconSizes[iconSizeIndex] sourceSize.width: weMode ? 225 : iconSizes[iconSizeIndex]
sourceSize.height: weMode ? 225 : iconSizes[iconSizeIndex]
asynchronous: true
visible: false visible: false
} }

View File

@@ -124,12 +124,15 @@ StyledRect {
height: 28 height: 28
anchors.verticalCenter: parent.verticalCenter anchors.verticalCenter: parent.verticalCenter
CachingImage { Image {
id: listPreviewImage id: listPreviewImage
anchors.fill: parent anchors.fill: parent
imagePath: (!listDelegateRoot.fileIsDir && isImageFile(listDelegateRoot.fileName)) ? listDelegateRoot.filePath : "" property string imagePath: (!listDelegateRoot.fileIsDir && isImageFile(listDelegateRoot.fileName)) ? listDelegateRoot.filePath : ""
source: imagePath ? "file://" + imagePath.split('/').map(s => encodeURIComponent(s)).join('/') : ""
fillMode: Image.PreserveAspectCrop fillMode: Image.PreserveAspectCrop
maxCacheSize: 32 sourceSize.width: 32
sourceSize.height: 32
asynchronous: true
visible: false visible: false
} }

View File

@@ -45,8 +45,12 @@ FloatingWindow {
parentModal.shouldHaveFocus = false; parentModal.shouldHaveFocus = false;
parentModal.allowFocusOverride = true; parentModal.allowFocusOverride = true;
} }
content.reset(); Qt.callLater(() => {
Qt.callLater(() => content.forceActiveFocus()); if (content) {
content.reset();
content.forceActiveFocus();
}
});
} else { } else {
if (parentModal && "allowFocusOverride" in parentModal) { if (parentModal && "allowFocusOverride" in parentModal) {
parentModal.allowFocusOverride = false; parentModal.allowFocusOverride = false;
@@ -56,27 +60,35 @@ FloatingWindow {
} }
} }
FileBrowserContent { Loader {
id: content id: contentLoader
anchors.fill: parent anchors.fill: parent
focus: true active: fileBrowserModal.visible
closeOnEscape: false sourceComponent: FileBrowserContent {
windowControls: windowControls id: content
anchors.fill: parent
focus: true
closeOnEscape: false
windowControls: fileBrowserModal.windowControlsRef
browserTitle: fileBrowserModal.browserTitle browserTitle: fileBrowserModal.browserTitle
browserIcon: fileBrowserModal.browserIcon browserIcon: fileBrowserModal.browserIcon
browserType: fileBrowserModal.browserType browserType: fileBrowserModal.browserType
fileExtensions: fileBrowserModal.fileExtensions fileExtensions: fileBrowserModal.fileExtensions
showHiddenFiles: fileBrowserModal.showHiddenFiles showHiddenFiles: fileBrowserModal.showHiddenFiles
saveMode: fileBrowserModal.saveMode saveMode: fileBrowserModal.saveMode
defaultFileName: fileBrowserModal.defaultFileName defaultFileName: fileBrowserModal.defaultFileName
Component.onCompleted: initialize() Component.onCompleted: initialize()
onFileSelected: path => fileBrowserModal.fileSelected(path) onFileSelected: path => fileBrowserModal.fileSelected(path)
onCloseRequested: fileBrowserModal.close() onCloseRequested: fileBrowserModal.close()
}
} }
property alias content: contentLoader.item
property alias windowControlsRef: windowControls
FloatingWindowControls { FloatingWindowControls {
id: windowControls id: windowControls
targetWindow: fileBrowserModal targetWindow: fileBrowserModal

View File

@@ -33,8 +33,12 @@ DankModal {
if (parentPopout) { if (parentPopout) {
parentPopout.customKeyboardFocus = WlrKeyboardFocus.None; parentPopout.customKeyboardFocus = WlrKeyboardFocus.None;
} }
content.reset(); Qt.callLater(() => {
Qt.callLater(() => content.forceActiveFocus()); if (contentLoader.item) {
contentLoader.item.reset();
contentLoader.item.forceActiveFocus();
}
});
} }
onDialogClosed: { onDialogClosed: {
@@ -43,8 +47,7 @@ DankModal {
} }
} }
directContent: FileBrowserContent { content: FileBrowserContent {
id: content
focus: true focus: true
browserTitle: fileBrowserSurfaceModal.browserTitle browserTitle: fileBrowserSurfaceModal.browserTitle

View File

@@ -130,6 +130,7 @@ Rectangle {
color: Theme.surfaceText color: Theme.surfaceText
elide: Text.ElideRight elide: Text.ElideRight
width: parent.width width: parent.width
horizontalAlignment: Text.AlignLeft
} }
StyledText { StyledText {
@@ -138,6 +139,7 @@ Rectangle {
color: Theme.surfaceVariantText color: Theme.surfaceVariantText
elide: Text.ElideRight elide: Text.ElideRight
width: parent.width width: parent.width
horizontalAlignment: Text.AlignLeft
} }
} }
} }

View File

@@ -5,6 +5,9 @@ import qs.Widgets
Rectangle { Rectangle {
id: root id: root
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
property string iconName: "" property string iconName: ""
property string text: "" property string text: ""
property string secondaryText: "" property string secondaryText: ""
@@ -80,6 +83,7 @@ Rectangle {
color: isActive ? Theme.primaryText : Theme.surfaceText color: isActive ? Theme.primaryText : Theme.surfaceText
elide: Text.ElideRight elide: Text.ElideRight
wrapMode: Text.NoWrap wrapMode: Text.NoWrap
horizontalAlignment: Text.AlignLeft
} }
Typography { Typography {
@@ -90,6 +94,7 @@ Rectangle {
visible: text.length > 0 visible: text.length > 0
elide: Text.ElideRight elide: Text.ElideRight
wrapMode: Text.NoWrap wrapMode: Text.NoWrap
horizontalAlignment: Text.AlignLeft
} }
} }
} }

View File

@@ -6,6 +6,9 @@ import qs.Widgets
Row { Row {
id: root id: root
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
property var availableWidgets: [] property var availableWidgets: []
property Item popoutContent: null property Item popoutContent: null
@@ -103,6 +106,7 @@ Row {
color: Theme.surfaceText color: Theme.surfaceText
elide: Text.ElideRight elide: Text.ElideRight
width: parent.width width: parent.width
horizontalAlignment: Text.AlignLeft
} }
Typography { Typography {
@@ -111,6 +115,7 @@ Row {
color: Theme.outline color: Theme.outline
elide: Text.ElideRight elide: Text.ElideRight
width: parent.width width: parent.width
horizontalAlignment: Text.AlignLeft
} }
} }

View File

@@ -6,6 +6,9 @@ import qs.Widgets
Rectangle { Rectangle {
id: root id: root
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
property bool editMode: false property bool editMode: false
signal powerButtonClicked signal powerButtonClicked

View File

@@ -5,6 +5,9 @@ import qs.Widgets
Rectangle { Rectangle {
id: root id: root
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
property string iconName: "" property string iconName: ""
property string text: "" property string text: ""

View File

@@ -8,6 +8,9 @@ import qs.Widgets
Rectangle { Rectangle {
id: root id: root
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
property bool hasInputVolumeSliderInCC: { property bool hasInputVolumeSliderInCC: {
const widgets = SettingsData.controlCenterWidgets || []; const widgets = SettingsData.controlCenterWidgets || [];
return widgets.some(widget => widget.id === "inputVolumeSlider"); return widgets.some(widget => widget.id === "inputVolumeSlider");
@@ -198,6 +201,7 @@ Rectangle {
elide: Text.ElideRight elide: Text.ElideRight
width: parent.width width: parent.width
wrapMode: Text.NoWrap wrapMode: Text.NoWrap
horizontalAlignment: Text.AlignLeft
} }
StyledText { StyledText {
@@ -207,6 +211,7 @@ Rectangle {
elide: Text.ElideRight elide: Text.ElideRight
width: parent.width width: parent.width
wrapMode: Text.NoWrap wrapMode: Text.NoWrap
horizontalAlignment: Text.AlignLeft
} }
} }
} }

View File

@@ -8,6 +8,9 @@ import qs.Widgets
Rectangle { Rectangle {
id: root id: root
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
property bool hasVolumeSliderInCC: { property bool hasVolumeSliderInCC: {
const widgets = SettingsData.controlCenterWidgets || []; const widgets = SettingsData.controlCenterWidgets || [];
return widgets.some(widget => widget.id === "volumeSlider"); return widgets.some(widget => widget.id === "volumeSlider");
@@ -210,6 +213,7 @@ Rectangle {
elide: Text.ElideRight elide: Text.ElideRight
width: parent.width width: parent.width
wrapMode: Text.NoWrap wrapMode: Text.NoWrap
horizontalAlignment: Text.AlignLeft
} }
StyledText { StyledText {
@@ -219,6 +223,7 @@ Rectangle {
elide: Text.ElideRight elide: Text.ElideRight
width: parent.width width: parent.width
wrapMode: Text.NoWrap wrapMode: Text.NoWrap
horizontalAlignment: Text.AlignLeft
} }
} }
} }

View File

@@ -5,6 +5,11 @@ import qs.Services
import qs.Widgets import qs.Widgets
Rectangle { Rectangle {
id: root
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
implicitHeight: contentColumn.implicitHeight + Theme.spacingL * 2 implicitHeight: contentColumn.implicitHeight + Theme.spacingL * 2
radius: Theme.cornerRadius radius: Theme.cornerRadius
color: Theme.withAlpha(Theme.surfaceContainerHigh, Theme.popupTransparency) color: Theme.withAlpha(Theme.surfaceContainerHigh, Theme.popupTransparency)
@@ -110,6 +115,7 @@ Rectangle {
visible: text.length > 0 visible: text.length > 0
elide: Text.ElideRight elide: Text.ElideRight
width: parent.width width: parent.width
horizontalAlignment: Text.AlignLeft
} }
} }
} }
@@ -249,6 +255,7 @@ Rectangle {
color: Qt.rgba(Theme.error.r, Theme.error.g, Theme.error.b, 0.8) color: Qt.rgba(Theme.error.r, Theme.error.g, Theme.error.b, 0.8)
wrapMode: Text.WordWrap wrapMode: Text.WordWrap
width: parent.width width: parent.width
horizontalAlignment: Text.AlignLeft
} }
} }
} }

View File

@@ -6,6 +6,9 @@ import qs.Widgets
Item { Item {
id: root id: root
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
property var device: null property var device: null
property bool modalVisible: false property bool modalVisible: false
property var parentItem property var parentItem

View File

@@ -10,6 +10,9 @@ import qs.Modals
Rectangle { Rectangle {
id: root id: root
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
implicitHeight: { implicitHeight: {
if (height > 0) { if (height > 0) {
return height return height
@@ -237,6 +240,7 @@ Rectangle {
font.weight: modelData.connected ? Font.Medium : Font.Normal font.weight: modelData.connected ? Font.Medium : Font.Normal
elide: Text.ElideRight elide: Text.ElideRight
width: parent.width width: parent.width
horizontalAlignment: Text.AlignLeft
} }
Row { Row {
@@ -463,6 +467,7 @@ Rectangle {
color: Theme.surfaceText color: Theme.surfaceText
elide: Text.ElideRight elide: Text.ElideRight
width: parent.width width: parent.width
horizontalAlignment: Text.AlignLeft
} }
Row { Row {

View File

@@ -7,6 +7,9 @@ import qs.Widgets
Rectangle { Rectangle {
id: root id: root
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
property string initialDeviceName: "" property string initialDeviceName: ""
property string instanceId: "" property string instanceId: ""
property string screenName: "" property string screenName: ""
@@ -303,6 +306,7 @@ Rectangle {
font.weight: modelData.name === currentDeviceName ? Font.Medium : Font.Normal font.weight: modelData.name === currentDeviceName ? Font.Medium : Font.Normal
elide: Text.ElideRight elide: Text.ElideRight
width: parent.width width: parent.width
horizontalAlignment: Text.AlignLeft
} }
StyledText { StyledText {
@@ -311,6 +315,7 @@ Rectangle {
color: Theme.surfaceVariantText color: Theme.surfaceVariantText
elide: Text.ElideRight elide: Text.ElideRight
width: parent.width width: parent.width
horizontalAlignment: Text.AlignLeft
} }
StyledText { StyledText {
@@ -328,6 +333,7 @@ Rectangle {
color: Theme.surfaceVariantText color: Theme.surfaceVariantText
elide: Text.ElideRight elide: Text.ElideRight
width: parent.width width: parent.width
horizontalAlignment: Text.AlignLeft
} }
} }
} }

View File

@@ -6,6 +6,9 @@ import qs.Widgets
Rectangle { Rectangle {
id: root id: root
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
property string currentMountPath: "/" property string currentMountPath: "/"
property string instanceId: "" property string instanceId: ""
@@ -128,6 +131,7 @@ Rectangle {
font.weight: modelData.mount === currentMountPath ? Font.Medium : Font.Normal font.weight: modelData.mount === currentMountPath ? Font.Medium : Font.Normal
elide: Text.ElideRight elide: Text.ElideRight
width: parent.width width: parent.width
horizontalAlignment: Text.AlignLeft
} }
StyledText { StyledText {
@@ -137,6 +141,7 @@ Rectangle {
elide: Text.ElideRight elide: Text.ElideRight
width: parent.width width: parent.width
visible: modelData.mount !== "/" visible: modelData.mount !== "/"
horizontalAlignment: Text.AlignLeft
} }
StyledText { StyledText {
@@ -145,6 +150,7 @@ Rectangle {
color: Theme.surfaceVariantText color: Theme.surfaceVariantText
elide: Text.ElideRight elide: Text.ElideRight
width: parent.width width: parent.width
horizontalAlignment: Text.AlignLeft
} }
} }
} }

View File

@@ -9,6 +9,9 @@ import qs.Modals
Rectangle { Rectangle {
id: root id: root
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
implicitHeight: { implicitHeight: {
if (height > 0) { if (height > 0) {
return height; return height;

View File

@@ -6,6 +6,9 @@ import qs.Widgets
Row { Row {
id: root id: root
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
property var defaultSink: AudioService.sink property var defaultSink: AudioService.sink
property color sliderTrackColor: "transparent" property color sliderTrackColor: "transparent"

View File

@@ -6,6 +6,9 @@ import qs.Widgets
Row { Row {
id: root id: root
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
property string deviceName: "" property string deviceName: ""
property string instanceId: "" property string instanceId: ""
property string screenName: "" property string screenName: ""

View File

@@ -1,12 +1,13 @@
import QtQuick import QtQuick
import QtQuick.Controls
import Quickshell
import qs.Common import qs.Common
import qs.Widgets import qs.Widgets
Rectangle { Rectangle {
id: root id: root
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
property string iconName: "" property string iconName: ""
property color iconColor: Theme.surfaceText property color iconColor: Theme.surfaceText
property string labelText: "" property string labelText: ""

View File

@@ -5,6 +5,9 @@ import qs.Widgets
Rectangle { Rectangle {
id: root id: root
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
property string iconName: "" property string iconName: ""
property color iconColor: Theme.surfaceText property color iconColor: Theme.surfaceText
property string primaryText: "" property string primaryText: ""
@@ -137,6 +140,7 @@ Rectangle {
font.weight: Font.Medium font.weight: Font.Medium
elide: Text.ElideRight elide: Text.ElideRight
wrapMode: Text.NoWrap wrapMode: Text.NoWrap
horizontalAlignment: Text.AlignLeft
} }
StyledText { StyledText {
width: parent.width width: parent.width
@@ -146,6 +150,7 @@ Rectangle {
visible: text.length > 0 visible: text.length > 0
elide: Text.ElideRight elide: Text.ElideRight
wrapMode: Text.NoWrap wrapMode: Text.NoWrap
horizontalAlignment: Text.AlignLeft
} }
} }

View File

@@ -1,8 +1,4 @@
import QtQuick import QtQuick
import QtQuick.Controls
import Quickshell
import qs.Common
import qs.Widgets
Rectangle { Rectangle {
id: root id: root
@@ -24,6 +20,4 @@ Rectangle {
sourceComponent: root.content sourceComponent: root.content
asynchronous: true asynchronous: true
} }
} }

View File

@@ -5,6 +5,9 @@ import qs.Widgets
StyledRect { StyledRect {
id: root id: root
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
property string primaryMessage: "" property string primaryMessage: ""
property string secondaryMessage: "" property string secondaryMessage: ""
@@ -37,6 +40,7 @@ StyledRect {
color: Theme.warning color: Theme.warning
font.weight: Font.Medium font.weight: Font.Medium
wrapMode: Text.WordWrap wrapMode: Text.WordWrap
horizontalAlignment: Text.AlignLeft
} }
StyledText { StyledText {
@@ -45,6 +49,7 @@ StyledRect {
font.pixelSize: Theme.fontSizeSmall font.pixelSize: Theme.fontSizeSmall
color: Theme.warning color: Theme.warning
visible: text.length > 0 visible: text.length > 0
horizontalAlignment: Text.AlignLeft
} }
} }
} }

View File

@@ -6,6 +6,9 @@ import qs.Widgets
Row { Row {
id: root id: root
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
property var defaultSource: AudioService.source property var defaultSource: AudioService.source
property color sliderTrackColor: "transparent" property color sliderTrackColor: "transparent"

View File

@@ -6,6 +6,9 @@ import qs.Widgets
Rectangle { Rectangle {
id: root id: root
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
property bool isActive: BatteryService.batteryAvailable && (BatteryService.isCharging || BatteryService.isPluggedIn) property bool isActive: BatteryService.batteryAvailable && (BatteryService.isCharging || BatteryService.isPluggedIn)
property bool enabled: BatteryService.batteryAvailable property bool enabled: BatteryService.batteryAvailable

View File

@@ -6,6 +6,9 @@ import qs.Widgets
Rectangle { Rectangle {
id: root id: root
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
property string mountPath: "/" property string mountPath: "/"
property string instanceId: "" property string instanceId: ""
@@ -84,6 +87,7 @@ Rectangle {
color: Theme.surfaceVariantText color: Theme.surfaceVariantText
elide: Text.ElideMiddle elide: Text.ElideMiddle
width: Math.min(implicitWidth, root.width - Theme.iconSizeSmall - Theme.spacingM) width: Math.min(implicitWidth, root.width - Theme.iconSizeSmall - Theme.spacingM)
horizontalAlignment: Text.AlignLeft
} }
StyledText { StyledText {

View File

@@ -5,6 +5,9 @@ import qs.Widgets
Rectangle { Rectangle {
id: root id: root
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
property string iconName: "" property string iconName: ""
property string text: "" property string text: ""
property bool isActive: false property bool isActive: false
@@ -90,6 +93,7 @@ Rectangle {
font.weight: Font.Medium font.weight: Font.Medium
elide: Text.ElideRight elide: Text.ElideRight
wrapMode: Text.NoWrap wrapMode: Text.NoWrap
horizontalAlignment: Text.AlignLeft
} }
StyledText { StyledText {
@@ -100,6 +104,7 @@ Rectangle {
visible: text.length > 0 visible: text.length > 0
elide: Text.ElideRight elide: Text.ElideRight
wrapMode: Text.NoWrap wrapMode: Text.NoWrap
horizontalAlignment: Text.AlignLeft
} }
} }
} }

View File

@@ -6,6 +6,9 @@ import qs.Widgets
Card { Card {
id: root id: root
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
Component.onCompleted: DgopService.addRef("system") Component.onCompleted: DgopService.addRef("system")
Component.onDestruction: DgopService.removeRef("system") Component.onDestruction: DgopService.removeRef("system")
@@ -44,9 +47,11 @@ Card {
color: Theme.surfaceText color: Theme.surfaceText
elide: Text.ElideRight elide: Text.ElideRight
width: parent.parent.parent.width - avatarContainer.width - Theme.spacingM * 3 width: parent.parent.parent.width - avatarContainer.width - Theme.spacingM * 3
horizontalAlignment: Text.AlignLeft
} }
Row { Row {
anchors.left: parent.left
spacing: Theme.spacingS spacing: Theme.spacingS
SystemLogo { SystemLogo {
@@ -76,10 +81,12 @@ Card {
anchors.verticalCenter: parent.verticalCenter anchors.verticalCenter: parent.verticalCenter
elide: Text.ElideRight elide: Text.ElideRight
width: parent.parent.parent.parent.width - avatarContainer.width - Theme.spacingM * 3 - 16 - Theme.spacingS width: parent.parent.parent.parent.width - avatarContainer.width - Theme.spacingM * 3 - 16 - Theme.spacingS
horizontalAlignment: Text.AlignLeft
} }
} }
Row { Row {
anchors.left: parent.left
spacing: Theme.spacingS spacing: Theme.spacingS
DankIcon { DankIcon {

View File

@@ -1,6 +1,5 @@
import QtQuick import QtQuick
import QtQuick.Controls import QtQuick.Controls
import QtQuick.Effects
import qs.Common import qs.Common
import qs.Services import qs.Services
import qs.Widgets import qs.Widgets
@@ -8,7 +7,10 @@ import qs.Widgets
Card { Card {
id: root id: root
signal clicked() LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
signal clicked
Component.onCompleted: WeatherService.addRef() Component.onCompleted: WeatherService.addRef()
Component.onDestruction: WeatherService.removeRef() Component.onDestruction: WeatherService.removeRef()
@@ -60,10 +62,12 @@ Card {
anchors.verticalCenter: parent.verticalCenter anchors.verticalCenter: parent.verticalCenter
StyledText { StyledText {
anchors.left: parent.left
text: { text: {
const temp = SettingsData.useFahrenheit ? WeatherService.weather.tempF : WeatherService.weather.temp const temp = SettingsData.useFahrenheit ? WeatherService.weather.tempF : WeatherService.weather.temp;
if (temp === undefined || temp === null) return "--°" + (SettingsData.useFahrenheit ? "F" : "C") if (temp === undefined || temp === null)
return temp + "°" + (SettingsData.useFahrenheit ? "F" : "C") return "--°" + (SettingsData.useFahrenheit ? "F" : "C");
return temp + "°" + (SettingsData.useFahrenheit ? "F" : "C");
} }
font.pixelSize: Theme.fontSizeXLarge + 4 font.pixelSize: Theme.fontSizeXLarge + 4
color: Theme.surfaceText color: Theme.surfaceText
@@ -76,6 +80,7 @@ Card {
color: Qt.rgba(Theme.surfaceText.r, Theme.surfaceText.g, Theme.surfaceText.b, 0.7) color: Qt.rgba(Theme.surfaceText.r, Theme.surfaceText.g, Theme.surfaceText.b, 0.7)
elide: Text.ElideRight elide: Text.ElideRight
width: parent.parent.parent.width - 48 - Theme.spacingL * 2 width: parent.parent.parent.width - 48 - Theme.spacingL * 2
horizontalAlignment: Text.AlignLeft
} }
} }
} }

View File

@@ -10,6 +10,9 @@ import qs.Modules.Settings.Widgets
Item { Item {
id: root id: root
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
property var parentModal: null property var parentModal: null
property string selectedMonitorName: { property string selectedMonitorName: {
var screens = Quickshell.screens; var screens = Quickshell.screens;
@@ -233,6 +236,7 @@ Item {
elide: Text.ElideMiddle elide: Text.ElideMiddle
maximumLineCount: 1 maximumLineCount: 1
width: parent.width width: parent.width
horizontalAlignment: Text.AlignLeft
} }
StyledText { StyledText {
@@ -245,6 +249,7 @@ Item {
elide: Text.ElideMiddle elide: Text.ElideMiddle
maximumLineCount: 1 maximumLineCount: 1
width: parent.width width: parent.width
horizontalAlignment: Text.AlignLeft
visible: { visible: {
var currentWallpaper = SessionData.perMonitorWallpaper ? SessionData.getMonitorWallpaper(selectedMonitorName) : SessionData.wallpaperPath; var currentWallpaper = SessionData.perMonitorWallpaper ? SessionData.getMonitorWallpaper(selectedMonitorName) : SessionData.wallpaperPath;
return currentWallpaper !== ""; return currentWallpaper !== "";
@@ -252,7 +257,9 @@ Item {
} }
Row { Row {
anchors.left: parent.left
spacing: Theme.spacingS spacing: Theme.spacingS
layoutDirection: I18n.isRtl ? Qt.RightToLeft : Qt.LeftToRight
visible: { visible: {
var currentWallpaper = SessionData.perMonitorWallpaper ? SessionData.getMonitorWallpaper(selectedMonitorName) : SessionData.wallpaperPath; var currentWallpaper = SessionData.perMonitorWallpaper ? SessionData.getMonitorWallpaper(selectedMonitorName) : SessionData.wallpaperPath;
return currentWallpaper !== ""; return currentWallpaper !== "";

View File

@@ -93,7 +93,7 @@ Item {
elide: Text.ElideRight elide: Text.ElideRight
width: parent.width width: parent.width
visible: root.text !== "" visible: root.text !== ""
anchors.left: parent.left horizontalAlignment: Text.AlignLeft
} }
StyledText { StyledText {
@@ -103,7 +103,7 @@ Item {
wrapMode: Text.WordWrap wrapMode: Text.WordWrap
width: parent.width width: parent.width
visible: root.description !== "" visible: root.description !== ""
anchors.left: parent.left horizontalAlignment: Text.AlignLeft
} }
} }

View File

@@ -8,6 +8,9 @@ import qs.Widgets
DankDropdown { DankDropdown {
id: root id: root
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
property string tab: "" property string tab: ""
property var tags: [] property var tags: []
property string settingKey: "" property string settingKey: ""

View File

@@ -7,6 +7,9 @@ import qs.Widgets
StyledRect { StyledRect {
id: root id: root
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
property string tab: "" property string tab: ""
property var tags: [] property var tags: []
@@ -67,6 +70,7 @@ StyledRect {
color: Theme.surfaceVariantText color: Theme.surfaceVariantText
wrapMode: Text.WordWrap wrapMode: Text.WordWrap
width: parent.width width: parent.width
horizontalAlignment: Text.AlignLeft
visible: root.description !== "" visible: root.description !== ""
} }
} }

View File

@@ -96,7 +96,7 @@ Item {
color: Theme.surfaceText color: Theme.surfaceText
visible: root.text !== "" visible: root.text !== ""
width: parent.width width: parent.width
anchors.left: parent.left horizontalAlignment: Text.AlignLeft
} }
StyledText { StyledText {
@@ -106,7 +106,7 @@ Item {
wrapMode: Text.WordWrap wrapMode: Text.WordWrap
width: parent.width width: parent.width
visible: root.description !== "" visible: root.description !== ""
anchors.left: parent.left horizontalAlignment: Text.AlignLeft
} }
} }

View File

@@ -7,6 +7,9 @@ import qs.Widgets
StyledRect { StyledRect {
id: root id: root
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
property string tab: "" property string tab: ""
property var tags: [] property var tags: []
@@ -76,6 +79,7 @@ StyledRect {
color: Theme.surfaceVariantText color: Theme.surfaceVariantText
wrapMode: Text.WordWrap wrapMode: Text.WordWrap
width: parent.width width: parent.width
horizontalAlignment: Text.AlignLeft
visible: root.description !== "" visible: root.description !== ""
} }
} }

View File

@@ -8,6 +8,9 @@ import qs.Widgets
DankToggle { DankToggle {
id: root id: root
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
property string tab: "" property string tab: ""
property var tags: [] property var tags: []
property string settingKey: "" property string settingKey: ""

View File

@@ -82,7 +82,7 @@ Item {
font.pixelSize: Appearance.fontSize.small font.pixelSize: Appearance.fontSize.small
color: toggle.descriptionColor color: toggle.descriptionColor
wrapMode: Text.WordWrap wrapMode: Text.WordWrap
width: Math.min(implicitWidth, toggle.width - 120) width: parent.width
visible: toggle.description.length > 0 visible: toggle.description.length > 0
horizontalAlignment: Text.AlignLeft horizontalAlignment: Text.AlignLeft
} }

View File

@@ -10,6 +10,9 @@ import qs.Widgets
Rectangle { Rectangle {
id: root id: root
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
property var parentPopout: null property var parentPopout: null
property string expandedUuid: "" property string expandedUuid: ""
property int listHeight: 180 property int listHeight: 180

View File

@@ -6,6 +6,9 @@ import qs.Widgets
Rectangle { Rectangle {
id: root id: root
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
required property var profile required property var profile
property bool isExpanded: false property bool isExpanded: false
@@ -125,6 +128,7 @@ Rectangle {
elide: Text.ElideRight elide: Text.ElideRight
wrapMode: Text.NoWrap wrapMode: Text.NoWrap
width: parent.width width: parent.width
horizontalAlignment: Text.AlignLeft
} }
StyledText { StyledText {
@@ -134,6 +138,7 @@ Rectangle {
wrapMode: Text.NoWrap wrapMode: Text.NoWrap
width: parent.width width: parent.width
elide: Text.ElideRight elide: Text.ElideRight
horizontalAlignment: Text.AlignLeft
} }
} }

File diff suppressed because it is too large Load Diff

View File

@@ -20,6 +20,12 @@
"%1 display(s)": { "%1 display(s)": {
"%1 display(s)": "%1 pantalla(s)" "%1 display(s)": "%1 pantalla(s)"
}, },
"%1 exists but is not included in config. Custom keybinds will not work until this is fixed.": {
"%1 exists but is not included in config. Custom keybinds will not work until this is fixed.": ""
},
"%1 is now included in config": {
"%1 is now included in config": ""
},
"%1 job(s)": { "%1 job(s)": {
"%1 job(s)": "%1 trabajo(s)" "%1 job(s)": "%1 trabajo(s)"
}, },
@@ -701,6 +707,9 @@
"Clear at Startup": { "Clear at Startup": {
"Clear at Startup": "Limpiar al inicio" "Clear at Startup": "Limpiar al inicio"
}, },
"Click 'Setup' to create %1 and add include to config.": {
"Click 'Setup' to create %1 and add include to config.": ""
},
"Click 'Setup' to create cursor config and add include to your compositor config.": { "Click 'Setup' to create cursor config and add include to your compositor config.": {
"Click 'Setup' to create cursor config and add include to your compositor config.": "" "Click 'Setup' to create cursor config and add include to your compositor config.": ""
}, },
@@ -713,6 +722,9 @@
"Click Import to add a .ovpn or .conf": { "Click Import to add a .ovpn or .conf": {
"Click Import to add a .ovpn or .conf": "Clic en importar para añadir un archivo .ovpn o .conf" "Click Import to add a .ovpn or .conf": "Clic en importar para añadir un archivo .ovpn o .conf"
}, },
"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 dms/binds.kdl": { "Click any shortcut to edit. Changes save to dms/binds.kdl": {
"Click any shortcut to edit. Changes save to dms/binds.kdl": "Haz clic en cualquier acceso directo para editarlo. Los cambios se guardan en dms/binds.kdl" "Click any shortcut to edit. Changes save to dms/binds.kdl": "Haz clic en cualquier acceso directo para editarlo. Los cambios se guardan en dms/binds.kdl"
}, },
@@ -848,6 +860,9 @@
"Connect": { "Connect": {
"Connect": "Conectar" "Connect": "Conectar"
}, },
"Connect to Hidden Network": {
"Connect to Hidden Network": ""
},
"Connect to VPN": { "Connect to VPN": {
"Connect to VPN": "Conectar a una VPN" "Connect to VPN": "Conectar a una VPN"
}, },
@@ -1403,6 +1418,9 @@
"Enter launch prefix (e.g., 'uwsm-app')": { "Enter launch prefix (e.g., 'uwsm-app')": {
"Enter launch prefix (e.g., 'uwsm-app')": "Introduce prefijo de lanzamiento (e.j.,'uwsm-app')" "Enter launch prefix (e.g., 'uwsm-app')": "Introduce prefijo de lanzamiento (e.j.,'uwsm-app')"
}, },
"Enter network name and password": {
"Enter network name and password": ""
},
"Enter passkey for ": { "Enter passkey for ": {
"Enter passkey for ": "Ingresar clave para " "Enter passkey for ": "Ingresar clave para "
}, },
@@ -1634,6 +1652,9 @@
"Fixing...": { "Fixing...": {
"Fixing...": "Arreglando..." "Fixing...": "Arreglando..."
}, },
"Flags": {
"Flags": ""
},
"Flipped": { "Flipped": {
"Flipped": "Voltear" "Flipped": "Voltear"
}, },
@@ -1796,6 +1817,12 @@
"Hibernate": { "Hibernate": {
"Hibernate": "Hibernar" "Hibernate": "Hibernar"
}, },
"Hidden": {
"Hidden": ""
},
"Hidden Network": {
"Hidden Network": ""
},
"Hide Delay": { "Hide Delay": {
"Hide Delay": "Ocultar Retardo" "Hide Delay": "Ocultar Retardo"
}, },
@@ -2111,6 +2138,9 @@
"Lock fade grace period": { "Lock fade grace period": {
"Lock fade grace period": "" "Lock fade grace period": ""
}, },
"Locked": {
"Locked": ""
},
"Log Out": { "Log Out": {
"Log Out": "Cerrar sesión" "Log Out": "Cerrar sesión"
}, },
@@ -2120,6 +2150,9 @@
"Long Text": { "Long Text": {
"Long Text": "Texto largo" "Long Text": "Texto largo"
}, },
"Long press": {
"Long press": ""
},
"Longitude": { "Longitude": {
"Longitude": "Longitud" "Longitude": "Longitud"
}, },
@@ -2345,6 +2378,9 @@
"Network Information": { "Network Information": {
"Network Information": "Información de red" "Network Information": "Información de red"
}, },
"Network Name (SSID)": {
"Network Name (SSID)": ""
},
"Network Speed Monitor": { "Network Speed Monitor": {
"Network Speed Monitor": "Monitor de velocidad de red" "Network Speed Monitor": "Monitor de velocidad de red"
}, },
@@ -2921,6 +2957,9 @@
"Reject Jobs": { "Reject Jobs": {
"Reject Jobs": "Rechazar trabajos" "Reject Jobs": "Rechazar trabajos"
}, },
"Release": {
"Release": ""
},
"Reload Plugin": { "Reload Plugin": {
"Reload Plugin": "Reiniciar complemento" "Reload Plugin": "Reiniciar complemento"
}, },
@@ -2930,6 +2969,9 @@
"Remove gaps and border when windows are maximized": { "Remove gaps and border when windows are maximized": {
"Remove gaps and border when windows are maximized": "Eliminar espacios y bordes cuando las ventanas estan maximizadas" "Remove gaps and border when windows are maximized": "Eliminar espacios y bordes cuando las ventanas estan maximizadas"
}, },
"Repeat": {
"Repeat": ""
},
"Report": { "Report": {
"Report": "Reporte" "Report": "Reporte"
}, },
@@ -4300,7 +4342,8 @@
"Modular widget bar": "", "Modular widget bar": "",
"Night mode & gamma": "", "Night mode & gamma": "",
"Per-screen config": "", "Per-screen config": "",
"Quick system toggles": "" "Quick system toggles": "",
"Security & privacy": ""
}, },
"greeter feature card title": { "greeter feature card title": {
"App Theming": "", "App Theming": "",
@@ -4317,6 +4360,9 @@
"greeter feature card title | greeter settings link": { "greeter feature card title | greeter settings link": {
"DankBar": "" "DankBar": ""
}, },
"greeter feature card title | lock screen notifications settings card": {
"Lock Screen": ""
},
"greeter finish button": { "greeter finish button": {
"Finish": "" "Finish": ""
}, },
@@ -4560,6 +4606,9 @@
"update dms for NM integration.": { "update dms for NM integration.": {
"update dms for NM integration.": "Actualizar dms para integración con NM." "update dms for NM integration.": "Actualizar dms para integración con NM."
}, },
"version requirement": {
"Requires %1": ""
},
"wallpaper directory file browser title": { "wallpaper directory file browser title": {
"Select Wallpaper Directory": "Elegir carpeta de fondos de pantalla" "Select Wallpaper Directory": "Elegir carpeta de fondos de pantalla"
}, },

View File

@@ -20,6 +20,12 @@
"%1 display(s)": { "%1 display(s)": {
"%1 display(s)": "%1 نمایشگر" "%1 display(s)": "%1 نمایشگر"
}, },
"%1 exists but is not included in config. Custom keybinds will not work until this is fixed.": {
"%1 exists but is not included in config. Custom keybinds will not work until this is fixed.": ""
},
"%1 is now included in config": {
"%1 is now included in config": ""
},
"%1 job(s)": { "%1 job(s)": {
"%1 job(s)": "%1 کار چاپ" "%1 job(s)": "%1 کار چاپ"
}, },
@@ -701,6 +707,9 @@
"Clear at Startup": { "Clear at Startup": {
"Clear at Startup": "پاک‌کردن در هنگام راه‌اندازی" "Clear at Startup": "پاک‌کردن در هنگام راه‌اندازی"
}, },
"Click 'Setup' to create %1 and add include to config.": {
"Click 'Setup' to create %1 and add include to config.": ""
},
"Click 'Setup' to create cursor config and add include to your compositor config.": { "Click 'Setup' to create cursor config and add include to your compositor config.": {
"Click 'Setup' to create cursor config and add include to your compositor config.": "" "Click 'Setup' to create cursor config and add include to your compositor config.": ""
}, },
@@ -713,6 +722,9 @@
"Click Import to add a .ovpn or .conf": { "Click Import to add a .ovpn or .conf": {
"Click Import to add a .ovpn or .conf": "برای افزودن یک فایل .conf یا .ovpn کلیک کنید" "Click Import to add a .ovpn or .conf": "برای افزودن یک فایل .conf یا .ovpn کلیک کنید"
}, },
"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 dms/binds.kdl": { "Click any shortcut to edit. Changes save to dms/binds.kdl": {
"Click any shortcut to edit. Changes save to dms/binds.kdl": "برای ویرایش، روی هر میانبری کلیک کنید. تغییرات در dms/binds.kdl ذخیره می‌شوند" "Click any shortcut to edit. Changes save to dms/binds.kdl": "برای ویرایش، روی هر میانبری کلیک کنید. تغییرات در dms/binds.kdl ذخیره می‌شوند"
}, },
@@ -848,6 +860,9 @@
"Connect": { "Connect": {
"Connect": "اتصال" "Connect": "اتصال"
}, },
"Connect to Hidden Network": {
"Connect to Hidden Network": ""
},
"Connect to VPN": { "Connect to VPN": {
"Connect to VPN": "اتصال به VPN" "Connect to VPN": "اتصال به VPN"
}, },
@@ -1403,6 +1418,9 @@
"Enter launch prefix (e.g., 'uwsm-app')": { "Enter launch prefix (e.g., 'uwsm-app')": {
"Enter launch prefix (e.g., 'uwsm-app')": "پیشوند اجرا را وارد کنید (مانند 'uwsm-app')" "Enter launch prefix (e.g., 'uwsm-app')": "پیشوند اجرا را وارد کنید (مانند 'uwsm-app')"
}, },
"Enter network name and password": {
"Enter network name and password": ""
},
"Enter passkey for ": { "Enter passkey for ": {
"Enter passkey for ": "ورود کلید عبور برای " "Enter passkey for ": "ورود کلید عبور برای "
}, },
@@ -1634,6 +1652,9 @@
"Fixing...": { "Fixing...": {
"Fixing...": "درحال رفع..." "Fixing...": "درحال رفع..."
}, },
"Flags": {
"Flags": ""
},
"Flipped": { "Flipped": {
"Flipped": "وارونه" "Flipped": "وارونه"
}, },
@@ -1796,6 +1817,12 @@
"Hibernate": { "Hibernate": {
"Hibernate": "هایبرنیت" "Hibernate": "هایبرنیت"
}, },
"Hidden": {
"Hidden": ""
},
"Hidden Network": {
"Hidden Network": ""
},
"Hide Delay": { "Hide Delay": {
"Hide Delay": "تأخیر پنهان‌شدن" "Hide Delay": "تأخیر پنهان‌شدن"
}, },
@@ -2111,6 +2138,9 @@
"Lock fade grace period": { "Lock fade grace period": {
"Lock fade grace period": "" "Lock fade grace period": ""
}, },
"Locked": {
"Locked": ""
},
"Log Out": { "Log Out": {
"Log Out": "خروج" "Log Out": "خروج"
}, },
@@ -2120,6 +2150,9 @@
"Long Text": { "Long Text": {
"Long Text": "متن طولانی" "Long Text": "متن طولانی"
}, },
"Long press": {
"Long press": ""
},
"Longitude": { "Longitude": {
"Longitude": "طول جغرافیایی" "Longitude": "طول جغرافیایی"
}, },
@@ -2345,6 +2378,9 @@
"Network Information": { "Network Information": {
"Network Information": "اطلاعات شبکه" "Network Information": "اطلاعات شبکه"
}, },
"Network Name (SSID)": {
"Network Name (SSID)": ""
},
"Network Speed Monitor": { "Network Speed Monitor": {
"Network Speed Monitor": "نمایشگر سرعت شبکه" "Network Speed Monitor": "نمایشگر سرعت شبکه"
}, },
@@ -2921,6 +2957,9 @@
"Reject Jobs": { "Reject Jobs": {
"Reject Jobs": "ردکردن کارهای چاپ" "Reject Jobs": "ردکردن کارهای چاپ"
}, },
"Release": {
"Release": ""
},
"Reload Plugin": { "Reload Plugin": {
"Reload Plugin": "بارگیری مجدد افزونه" "Reload Plugin": "بارگیری مجدد افزونه"
}, },
@@ -2930,6 +2969,9 @@
"Remove gaps and border when windows are maximized": { "Remove gaps and border when windows are maximized": {
"Remove gaps and border when windows are maximized": "حذف فاصله‌ها و حاشیه هنگام بزرگ‌کردن پنجره‌ها" "Remove gaps and border when windows are maximized": "حذف فاصله‌ها و حاشیه هنگام بزرگ‌کردن پنجره‌ها"
}, },
"Repeat": {
"Repeat": ""
},
"Report": { "Report": {
"Report": "گزارش" "Report": "گزارش"
}, },
@@ -4300,7 +4342,8 @@
"Modular widget bar": "نوار ابزارک ماژولار", "Modular widget bar": "نوار ابزارک ماژولار",
"Night mode & gamma": "", "Night mode & gamma": "",
"Per-screen config": "پیکربندی به ازای هر صفحه", "Per-screen config": "پیکربندی به ازای هر صفحه",
"Quick system toggles": "" "Quick system toggles": "",
"Security & privacy": ""
}, },
"greeter feature card title": { "greeter feature card title": {
"App Theming": "تم برنامه", "App Theming": "تم برنامه",
@@ -4317,6 +4360,9 @@
"greeter feature card title | greeter settings link": { "greeter feature card title | greeter settings link": {
"DankBar": "DankBar" "DankBar": "DankBar"
}, },
"greeter feature card title | lock screen notifications settings card": {
"Lock Screen": ""
},
"greeter finish button": { "greeter finish button": {
"Finish": "پایان" "Finish": "پایان"
}, },
@@ -4560,6 +4606,9 @@
"update dms for NM integration.": { "update dms for NM integration.": {
"update dms for NM integration.": "DMS را برای یکپارچه‌سازی NM بروز کنید." "update dms for NM integration.": "DMS را برای یکپارچه‌سازی NM بروز کنید."
}, },
"version requirement": {
"Requires %1": ""
},
"wallpaper directory file browser title": { "wallpaper directory file browser title": {
"Select Wallpaper Directory": "انتخاب دایرکتوری تصاویر پس‌زمینه" "Select Wallpaper Directory": "انتخاب دایرکتوری تصاویر پس‌زمینه"
}, },

View File

@@ -20,6 +20,12 @@
"%1 display(s)": { "%1 display(s)": {
"%1 display(s)": "%1 מסך/מסכים" "%1 display(s)": "%1 מסך/מסכים"
}, },
"%1 exists but is not included in config. Custom keybinds will not work until this is fixed.": {
"%1 exists but is not included in config. Custom keybinds will not work until this is fixed.": ""
},
"%1 is now included in config": {
"%1 is now included in config": ""
},
"%1 job(s)": { "%1 job(s)": {
"%1 job(s)": "%1 עבודות" "%1 job(s)": "%1 עבודות"
}, },
@@ -701,6 +707,9 @@
"Clear at Startup": { "Clear at Startup": {
"Clear at Startup": "" "Clear at Startup": ""
}, },
"Click 'Setup' to create %1 and add include to config.": {
"Click 'Setup' to create %1 and add include to config.": ""
},
"Click 'Setup' to create cursor config and add include to your compositor config.": { "Click 'Setup' to create cursor config and add include to your compositor config.": {
"Click 'Setup' to create cursor config and add include to your compositor config.": "" "Click 'Setup' to create cursor config and add include to your compositor config.": ""
}, },
@@ -713,6 +722,9 @@
"Click Import to add a .ovpn or .conf": { "Click Import to add a .ovpn or .conf": {
"Click Import to add a .ovpn or .conf": "לחץ/י על ייבוא כדי להוסיף קובץ ovpn. או conf." "Click Import to add a .ovpn or .conf": "לחץ/י על ייבוא כדי להוסיף קובץ ovpn. או conf."
}, },
"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 dms/binds.kdl": { "Click any shortcut to edit. Changes save to dms/binds.kdl": {
"Click any shortcut to edit. Changes save to dms/binds.kdl": "לחץ/י על כל קיצור דרך לעריכה. השינויים נשמרים בקובץ dms/binds.kdl" "Click any shortcut to edit. Changes save to dms/binds.kdl": "לחץ/י על כל קיצור דרך לעריכה. השינויים נשמרים בקובץ dms/binds.kdl"
}, },
@@ -848,6 +860,9 @@
"Connect": { "Connect": {
"Connect": "התחבר/י" "Connect": "התחבר/י"
}, },
"Connect to Hidden Network": {
"Connect to Hidden Network": ""
},
"Connect to VPN": { "Connect to VPN": {
"Connect to VPN": "התחבר/י לVPN" "Connect to VPN": "התחבר/י לVPN"
}, },
@@ -1403,6 +1418,9 @@
"Enter launch prefix (e.g., 'uwsm-app')": { "Enter launch prefix (e.g., 'uwsm-app')": {
"Enter launch prefix (e.g., 'uwsm-app')": "" "Enter launch prefix (e.g., 'uwsm-app')": ""
}, },
"Enter network name and password": {
"Enter network name and password": ""
},
"Enter passkey for ": { "Enter passkey for ": {
"Enter passkey for ": "הזן/הזיני מפתח גישה עבור " "Enter passkey for ": "הזן/הזיני מפתח גישה עבור "
}, },
@@ -1634,6 +1652,9 @@
"Fixing...": { "Fixing...": {
"Fixing...": "מתקן..." "Fixing...": "מתקן..."
}, },
"Flags": {
"Flags": ""
},
"Flipped": { "Flipped": {
"Flipped": "" "Flipped": ""
}, },
@@ -1796,6 +1817,12 @@
"Hibernate": { "Hibernate": {
"Hibernate": "שינה עמוקה" "Hibernate": "שינה עמוקה"
}, },
"Hidden": {
"Hidden": ""
},
"Hidden Network": {
"Hidden Network": ""
},
"Hide Delay": { "Hide Delay": {
"Hide Delay": "עיכוב הסתרה" "Hide Delay": "עיכוב הסתרה"
}, },
@@ -2111,6 +2138,9 @@
"Lock fade grace period": { "Lock fade grace period": {
"Lock fade grace period": "" "Lock fade grace period": ""
}, },
"Locked": {
"Locked": ""
},
"Log Out": { "Log Out": {
"Log Out": "התנתק/י" "Log Out": "התנתק/י"
}, },
@@ -2120,6 +2150,9 @@
"Long Text": { "Long Text": {
"Long Text": "טקסט ארוך" "Long Text": "טקסט ארוך"
}, },
"Long press": {
"Long press": ""
},
"Longitude": { "Longitude": {
"Longitude": "קו אורך" "Longitude": "קו אורך"
}, },
@@ -2345,6 +2378,9 @@
"Network Information": { "Network Information": {
"Network Information": "מידע רשת מפורט" "Network Information": "מידע רשת מפורט"
}, },
"Network Name (SSID)": {
"Network Name (SSID)": ""
},
"Network Speed Monitor": { "Network Speed Monitor": {
"Network Speed Monitor": "מנטר מהירות רשת" "Network Speed Monitor": "מנטר מהירות רשת"
}, },
@@ -2921,6 +2957,9 @@
"Reject Jobs": { "Reject Jobs": {
"Reject Jobs": "דחה/י עבודות" "Reject Jobs": "דחה/י עבודות"
}, },
"Release": {
"Release": ""
},
"Reload Plugin": { "Reload Plugin": {
"Reload Plugin": "טען/י תוסף מחדש" "Reload Plugin": "טען/י תוסף מחדש"
}, },
@@ -2930,6 +2969,9 @@
"Remove gaps and border when windows are maximized": { "Remove gaps and border when windows are maximized": {
"Remove gaps and border when windows are maximized": "" "Remove gaps and border when windows are maximized": ""
}, },
"Repeat": {
"Repeat": ""
},
"Report": { "Report": {
"Report": "דיווח" "Report": "דיווח"
}, },
@@ -4300,7 +4342,8 @@
"Modular widget bar": "", "Modular widget bar": "",
"Night mode & gamma": "", "Night mode & gamma": "",
"Per-screen config": "", "Per-screen config": "",
"Quick system toggles": "" "Quick system toggles": "",
"Security & privacy": ""
}, },
"greeter feature card title": { "greeter feature card title": {
"App Theming": "", "App Theming": "",
@@ -4317,6 +4360,9 @@
"greeter feature card title | greeter settings link": { "greeter feature card title | greeter settings link": {
"DankBar": "" "DankBar": ""
}, },
"greeter feature card title | lock screen notifications settings card": {
"Lock Screen": ""
},
"greeter finish button": { "greeter finish button": {
"Finish": "" "Finish": ""
}, },
@@ -4560,6 +4606,9 @@
"update dms for NM integration.": { "update dms for NM integration.": {
"update dms for NM integration.": "עדכן/י את dms עבור שילוב עם NM." "update dms for NM integration.": "עדכן/י את dms עבור שילוב עם NM."
}, },
"version requirement": {
"Requires %1": ""
},
"wallpaper directory file browser title": { "wallpaper directory file browser title": {
"Select Wallpaper Directory": "בחר/י תיקיית רקעים" "Select Wallpaper Directory": "בחר/י תיקיית רקעים"
}, },

View File

@@ -20,6 +20,12 @@
"%1 display(s)": { "%1 display(s)": {
"%1 display(s)": "%1 kijelző" "%1 display(s)": "%1 kijelző"
}, },
"%1 exists but is not included in config. Custom keybinds will not work until this is fixed.": {
"%1 exists but is not included in config. Custom keybinds will not work until this is fixed.": ""
},
"%1 is now included in config": {
"%1 is now included in config": ""
},
"%1 job(s)": { "%1 job(s)": {
"%1 job(s)": "%1 feladat(ok)" "%1 job(s)": "%1 feladat(ok)"
}, },
@@ -701,6 +707,9 @@
"Clear at Startup": { "Clear at Startup": {
"Clear at Startup": "Törlés indításkor" "Clear at Startup": "Törlés indításkor"
}, },
"Click 'Setup' to create %1 and add include to config.": {
"Click 'Setup' to create %1 and add include to config.": ""
},
"Click 'Setup' to create cursor config and add include to your compositor config.": { "Click 'Setup' to create cursor config and add include to your compositor config.": {
"Click 'Setup' to create cursor config and add include to your compositor config.": "" "Click 'Setup' to create cursor config and add include to your compositor config.": ""
}, },
@@ -713,6 +722,9 @@
"Click Import to add a .ovpn or .conf": { "Click Import to add a .ovpn or .conf": {
"Click Import to add a .ovpn or .conf": "Kattints az importálás gombra .ovpn vagy .conf fájl hozzáadásához" "Click Import to add a .ovpn or .conf": "Kattints az importálás gombra .ovpn vagy .conf fájl hozzáadásához"
}, },
"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 dms/binds.kdl": { "Click any shortcut to edit. Changes save to dms/binds.kdl": {
"Click any shortcut to edit. Changes save to dms/binds.kdl": "Kattints bármelyik gyorsbillentyűre a szerkesztéshez. A változtatások a dms/binds.kdl fájlba mentődnek" "Click any shortcut to edit. Changes save to dms/binds.kdl": "Kattints bármelyik gyorsbillentyűre a szerkesztéshez. A változtatások a dms/binds.kdl fájlba mentődnek"
}, },
@@ -848,6 +860,9 @@
"Connect": { "Connect": {
"Connect": "Csatlakozás" "Connect": "Csatlakozás"
}, },
"Connect to Hidden Network": {
"Connect to Hidden Network": ""
},
"Connect to VPN": { "Connect to VPN": {
"Connect to VPN": "Csatlakozás VPN-hez" "Connect to VPN": "Csatlakozás VPN-hez"
}, },
@@ -1403,6 +1418,9 @@
"Enter launch prefix (e.g., 'uwsm-app')": { "Enter launch prefix (e.g., 'uwsm-app')": {
"Enter launch prefix (e.g., 'uwsm-app')": "Írd be az indítási előtagot (pl. „uwsm-app”)" "Enter launch prefix (e.g., 'uwsm-app')": "Írd be az indítási előtagot (pl. „uwsm-app”)"
}, },
"Enter network name and password": {
"Enter network name and password": ""
},
"Enter passkey for ": { "Enter passkey for ": {
"Enter passkey for ": "Jelszó megadása ehhez: " "Enter passkey for ": "Jelszó megadása ehhez: "
}, },
@@ -1634,6 +1652,9 @@
"Fixing...": { "Fixing...": {
"Fixing...": "Javítás..." "Fixing...": "Javítás..."
}, },
"Flags": {
"Flags": ""
},
"Flipped": { "Flipped": {
"Flipped": "Tükrözött" "Flipped": "Tükrözött"
}, },
@@ -1796,6 +1817,12 @@
"Hibernate": { "Hibernate": {
"Hibernate": "Hibernálás" "Hibernate": "Hibernálás"
}, },
"Hidden": {
"Hidden": ""
},
"Hidden Network": {
"Hidden Network": ""
},
"Hide Delay": { "Hide Delay": {
"Hide Delay": "Elrejtési késleltetés" "Hide Delay": "Elrejtési késleltetés"
}, },
@@ -2111,6 +2138,9 @@
"Lock fade grace period": { "Lock fade grace period": {
"Lock fade grace period": "" "Lock fade grace period": ""
}, },
"Locked": {
"Locked": ""
},
"Log Out": { "Log Out": {
"Log Out": "Kijelentkezés" "Log Out": "Kijelentkezés"
}, },
@@ -2120,6 +2150,9 @@
"Long Text": { "Long Text": {
"Long Text": "Hosszú szöveg" "Long Text": "Hosszú szöveg"
}, },
"Long press": {
"Long press": ""
},
"Longitude": { "Longitude": {
"Longitude": "Hosszúság" "Longitude": "Hosszúság"
}, },
@@ -2345,6 +2378,9 @@
"Network Information": { "Network Information": {
"Network Information": "Hálózati információ" "Network Information": "Hálózati információ"
}, },
"Network Name (SSID)": {
"Network Name (SSID)": ""
},
"Network Speed Monitor": { "Network Speed Monitor": {
"Network Speed Monitor": "Hálózati sebességfigyelő" "Network Speed Monitor": "Hálózati sebességfigyelő"
}, },
@@ -2921,6 +2957,9 @@
"Reject Jobs": { "Reject Jobs": {
"Reject Jobs": "Feladatok elutasítása" "Reject Jobs": "Feladatok elutasítása"
}, },
"Release": {
"Release": ""
},
"Reload Plugin": { "Reload Plugin": {
"Reload Plugin": "Bővítmény újratöltése" "Reload Plugin": "Bővítmény újratöltése"
}, },
@@ -2930,6 +2969,9 @@
"Remove gaps and border when windows are maximized": { "Remove gaps and border when windows are maximized": {
"Remove gaps and border when windows are maximized": "Rések és szegély eltávolítása az ablakok maximalizálásakor" "Remove gaps and border when windows are maximized": "Rések és szegély eltávolítása az ablakok maximalizálásakor"
}, },
"Repeat": {
"Repeat": ""
},
"Report": { "Report": {
"Report": "Jelentés" "Report": "Jelentés"
}, },
@@ -4300,7 +4342,8 @@
"Modular widget bar": "", "Modular widget bar": "",
"Night mode & gamma": "", "Night mode & gamma": "",
"Per-screen config": "", "Per-screen config": "",
"Quick system toggles": "" "Quick system toggles": "",
"Security & privacy": ""
}, },
"greeter feature card title": { "greeter feature card title": {
"App Theming": "", "App Theming": "",
@@ -4317,6 +4360,9 @@
"greeter feature card title | greeter settings link": { "greeter feature card title | greeter settings link": {
"DankBar": "" "DankBar": ""
}, },
"greeter feature card title | lock screen notifications settings card": {
"Lock Screen": ""
},
"greeter finish button": { "greeter finish button": {
"Finish": "" "Finish": ""
}, },
@@ -4560,6 +4606,9 @@
"update dms for NM integration.": { "update dms for NM integration.": {
"update dms for NM integration.": "dms frissítése a NM integrációhoz." "update dms for NM integration.": "dms frissítése a NM integrációhoz."
}, },
"version requirement": {
"Requires %1": ""
},
"wallpaper directory file browser title": { "wallpaper directory file browser title": {
"Select Wallpaper Directory": "Háttérkép könyvtár kiválasztása" "Select Wallpaper Directory": "Háttérkép könyvtár kiválasztása"
}, },

View File

@@ -20,6 +20,12 @@
"%1 display(s)": { "%1 display(s)": {
"%1 display(s)": "%1 schermo(i)" "%1 display(s)": "%1 schermo(i)"
}, },
"%1 exists but is not included in config. Custom keybinds will not work until this is fixed.": {
"%1 exists but is not included in config. Custom keybinds will not work until this is fixed.": ""
},
"%1 is now included in config": {
"%1 is now included in config": ""
},
"%1 job(s)": { "%1 job(s)": {
"%1 job(s)": "%1 stampa/e" "%1 job(s)": "%1 stampa/e"
}, },
@@ -144,7 +150,7 @@
"Accept Jobs": "Accetta Stampe" "Accept Jobs": "Accetta Stampe"
}, },
"Accepting": { "Accepting": {
"Accepting": "Accettazione" "Accepting": "In Accettazione"
}, },
"Access clipboard history": { "Access clipboard history": {
"Access clipboard history": "Accesso alla cronologia degli appunti" "Access clipboard history": "Accesso alla cronologia degli appunti"
@@ -165,7 +171,7 @@
"Activate": "Attiva" "Activate": "Attiva"
}, },
"Activation": { "Activation": {
"Activation": "" "Activation": "Attivazione"
}, },
"Active": { "Active": {
"Active": "Attivo" "Active": "Attivo"
@@ -237,7 +243,7 @@
"Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": "Alt+←/Backspace: Indietro • F1/I: File Info • F10: Aiuto • Esc: Chiudi" "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": "Alt+←/Backspace: Indietro • F1/I: File Info • F10: Aiuto • Esc: Chiudi"
}, },
"Always Active": { "Always Active": {
"Always Active": "" "Always Active": "Sempre Attivo"
}, },
"Always Show Percentage": { "Always Show Percentage": {
"Always Show Percentage": "Mostra sempre percentuale" "Always Show Percentage": "Mostra sempre percentuale"
@@ -336,7 +342,7 @@
"Auth Type": "Tipo di Autenticazione" "Auth Type": "Tipo di Autenticazione"
}, },
"Authenticate": { "Authenticate": {
"Authenticate": "Autenticare" "Authenticate": "Autenticati"
}, },
"Authentication": { "Authentication": {
"Authentication": "Autenticazione" "Authentication": "Autenticazione"
@@ -372,7 +378,7 @@
"Auto-Clear After": "Cancellazione Automatica Dopo" "Auto-Clear After": "Cancellazione Automatica Dopo"
}, },
"Auto-Hide Timeout": { "Auto-Hide Timeout": {
"Auto-Hide Timeout": "" "Auto-Hide Timeout": "Tempo Auto-Nascondi"
}, },
"Auto-close Niri overview when launching apps.": { "Auto-close Niri overview when launching apps.": {
"Auto-close Niri overview when launching apps.": "Chiudi automaticamente la panoramica di Niri all'avvio delle app." "Auto-close Niri overview when launching apps.": "Chiudi automaticamente la panoramica di Niri all'avvio delle app."
@@ -381,7 +387,7 @@
"Auto-hide": "Nascondi automaticamente" "Auto-hide": "Nascondi automaticamente"
}, },
"Auto-hide Dock": { "Auto-hide Dock": {
"Auto-hide Dock": "Nascondi Automaticamente Dock" "Auto-hide Dock": "Nascondi Automaticamente la Dock"
}, },
"Auto-saving...": { "Auto-saving...": {
"Auto-saving...": "Salvataggio automatico..." "Auto-saving...": "Salvataggio automatico..."
@@ -701,8 +707,11 @@
"Clear at Startup": { "Clear at Startup": {
"Clear at Startup": "Cancella all'Avvio" "Clear at Startup": "Cancella all'Avvio"
}, },
"Click 'Setup' to create %1 and add include to config.": {
"Click 'Setup' to create %1 and add include to config.": ""
},
"Click 'Setup' to create cursor config and add include to your compositor config.": { "Click 'Setup' to create cursor config and add include to your compositor config.": {
"Click 'Setup' to create cursor config and add include to your compositor config.": "" "Click 'Setup' to create cursor config and add include to your compositor config.": "Clicca \"Configura\" per creare la configurazione del cursore e aggiungere l'inclusione al tuo file di configurazione del compositor."
}, },
"Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": { "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": {
"Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": "Clicca su 'Configura' per creare dms/binds.kdl e aggiungere l'istruzione include a config.kdl." "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": "Clicca su 'Configura' per creare dms/binds.kdl e aggiungere l'istruzione include a config.kdl."
@@ -713,6 +722,9 @@
"Click Import to add a .ovpn or .conf": { "Click Import to add a .ovpn or .conf": {
"Click Import to add a .ovpn or .conf": "Clicca su Importa per aggiungere un file .ovpn o .conf" "Click Import to add a .ovpn or .conf": "Clicca su Importa per aggiungere un file .ovpn o .conf"
}, },
"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 dms/binds.kdl": { "Click any shortcut to edit. Changes save to dms/binds.kdl": {
"Click any shortcut to edit. Changes save to dms/binds.kdl": "Clicca su qualsiasi scorciatoia per modificarla. Le modifiche vengono salvate in dms/binds.kdl" "Click any shortcut to edit. Changes save to dms/binds.kdl": "Clicca su qualsiasi scorciatoia per modificarla. Le modifiche vengono salvate in dms/binds.kdl"
}, },
@@ -738,7 +750,7 @@
"Clock": "Orologio" "Clock": "Orologio"
}, },
"Clock Style": { "Clock Style": {
"Clock Style": "Stile dellOrologio" "Clock Style": "Stile dell'Orologio"
}, },
"Close": { "Close": {
"Close": "Chiudi" "Close": "Chiudi"
@@ -759,7 +771,7 @@
"Color Mode": "Modalità Colore" "Color Mode": "Modalità Colore"
}, },
"Color Override": { "Color Override": {
"Color Override": "Sovrascrittura Colore" "Color Override": "Forzatura Colore"
}, },
"Color Picker": { "Color Picker": {
"Color Picker": "Selettore Colore" "Color Picker": "Selettore Colore"
@@ -848,6 +860,9 @@
"Connect": { "Connect": {
"Connect": "Connetti" "Connect": "Connetti"
}, },
"Connect to Hidden Network": {
"Connect to Hidden Network": ""
},
"Connect to VPN": { "Connect to VPN": {
"Connect to VPN": "Connetti alla VPN" "Connect to VPN": "Connetti alla VPN"
}, },
@@ -891,7 +906,7 @@
"Copied!": "Copiato!" "Copied!": "Copiato!"
}, },
"Copy": { "Copy": {
"Copy": "" "Copy": "Copia"
}, },
"Copy PID": { "Copy PID": {
"Copy PID": "Copia PID" "Copy PID": "Copia PID"
@@ -903,7 +918,7 @@
"Corner Radius": "Raggio degli Angoli" "Corner Radius": "Raggio degli Angoli"
}, },
"Corner Radius Override": { "Corner Radius Override": {
"Corner Radius Override": "Sovrascrittura Raggio Angoli" "Corner Radius Override": "Forzatura Raggio Angoli"
}, },
"Corners & Background": { "Corners & Background": {
"Corners & Background": "Angoli & Sfondo" "Corners & Background": "Angoli & Sfondo"
@@ -948,16 +963,16 @@
"Current: %1": "Attuale: %1" "Current: %1": "Attuale: %1"
}, },
"Cursor Config Not Configured": { "Cursor Config Not Configured": {
"Cursor Config Not Configured": "" "Cursor Config Not Configured": "Configurazione Cursore Non Impostata"
}, },
"Cursor Include Missing": { "Cursor Include Missing": {
"Cursor Include Missing": "" "Cursor Include Missing": "Inclusione Cursore Mancante"
}, },
"Cursor Size": { "Cursor Size": {
"Cursor Size": "" "Cursor Size": "Dimensione Cursore"
}, },
"Cursor Theme": { "Cursor Theme": {
"Cursor Theme": "" "Cursor Theme": "Tema del Cursore"
}, },
"Custom": { "Custom": {
"Custom": "Personalizzato" "Custom": "Personalizzato"
@@ -1005,7 +1020,7 @@
"Customizable empty space": "Spazio vuoto personalizzabile" "Customizable empty space": "Spazio vuoto personalizzabile"
}, },
"Customize which actions appear in the power menu": { "Customize which actions appear in the power menu": {
"Customize which actions appear in the power menu": "Personalizza quali azioni visualizzare nel menù alimentazione" "Customize which actions appear in the power menu": "Personalizza quali azioni visualizzare nel menu alimentazione"
}, },
"DDC/CI monitor": { "DDC/CI monitor": {
"DDC/CI monitor": "Monitor DDC/CI" "DDC/CI monitor": "Monitor DDC/CI"
@@ -1059,16 +1074,16 @@
"Date Format": "Formato Data" "Date Format": "Formato Data"
}, },
"Dawn (Astronomical Twilight)": { "Dawn (Astronomical Twilight)": {
"Dawn (Astronomical Twilight)": "Alba (Crepuscolo Astronomico)" "Dawn (Astronomical Twilight)": "Aurora (Crepuscolo Astronomico)"
}, },
"Dawn (Civil Twilight)": { "Dawn (Civil Twilight)": {
"Dawn (Civil Twilight)": "Alba (Crepuscolo Civile)" "Dawn (Civil Twilight)": "Aurora (Crepuscolo Civile)"
}, },
"Dawn (Nautical Twilight)": { "Dawn (Nautical Twilight)": {
"Dawn (Nautical Twilight)": "Alba (Crepuscolo Nautico)" "Dawn (Nautical Twilight)": "Aurora (Crepuscolo Nautico)"
}, },
"Day Temperature": { "Day Temperature": {
"Day Temperature": "Temperatura Giorno" "Day Temperature": "Temperatura Diurna"
}, },
"Daytime": { "Daytime": {
"Daytime": "Ora del Giorno" "Daytime": "Ora del Giorno"
@@ -1089,7 +1104,7 @@
"Defaults": "Predefiniti" "Defaults": "Predefiniti"
}, },
"Del: Clear • Shift+Del: Clear All • 1-9: Actions • F10: Help • Esc: Close": { "Del: Clear • Shift+Del: Clear All • 1-9: Actions • F10: Help • Esc: Close": {
"Del: Clear • Shift+Del: Clear All • 1-9: Actions • F10: Help • Esc: Close": "Del: Elimina • Shift+Del: Elimina Tutto • 1-9: Azioni • F10: Aiuto • Esc: Chiudi" "Del: Clear • Shift+Del: Clear All • 1-9: Actions • F10: Help • Esc: Close": "Canc: Elimina • Shift+Canc: Elimina Tutto • 1-9: Azioni • F10: Aiuto • Esc: Chiudi"
}, },
"Delete": { "Delete": {
"Delete": "Elimina" "Delete": "Elimina"
@@ -1221,7 +1236,7 @@
"Display hourly weather predictions": "Mostra previsioni meteo orarie" "Display hourly weather predictions": "Mostra previsioni meteo orarie"
}, },
"Display only workspaces that contain windows": { "Display only workspaces that contain windows": {
"Display only workspaces that contain windows": "Mostra solo gli spazi di lavoro che contengono finestre" "Display only workspaces that contain windows": "Mostra solo gli spazi di lavoro con finestre"
}, },
"Display power menu actions in a grid instead of a list": { "Display power menu actions in a grid instead of a list": {
"Display power menu actions in a grid instead of a list": "Visualizza le azioni di alimentazione in griglia invece di una lista" "Display power menu actions in a grid instead of a list": "Visualizza le azioni di alimentazione in griglia invece di una lista"
@@ -1341,7 +1356,7 @@
"Enable WiFi": "Abilita WiFi" "Enable WiFi": "Abilita WiFi"
}, },
"Enable compositor-targetable blur layer (namespace: dms:blurwallpaper). Requires manual niri configuration.": { "Enable compositor-targetable blur layer (namespace: dms:blurwallpaper). Requires manual niri configuration.": {
"Enable compositor-targetable blur layer (namespace: dms:blurwallpaper). Requires manual niri configuration.": "Abilita il livello di sfocatura compositore-targetable (namespace: dms:blurwallpaper). Richiede la configurazione manuale di niri." "Enable compositor-targetable blur layer (namespace: dms:blurwallpaper). Requires manual niri configuration.": "Abilita il livello di sfocatura gestibile dal compositor (namespace: dms:blurwallpaper). Richiede la configurazione manuale di niri."
}, },
"Enable fingerprint authentication": { "Enable fingerprint authentication": {
"Enable fingerprint authentication": "Abilita autenticazione biometrica" "Enable fingerprint authentication": "Abilita autenticazione biometrica"
@@ -1403,6 +1418,9 @@
"Enter launch prefix (e.g., 'uwsm-app')": { "Enter launch prefix (e.g., 'uwsm-app')": {
"Enter launch prefix (e.g., 'uwsm-app')": "Inserisci il prefisso di avvio (es. 'uwsm-app')" "Enter launch prefix (e.g., 'uwsm-app')": "Inserisci il prefisso di avvio (es. 'uwsm-app')"
}, },
"Enter network name and password": {
"Enter network name and password": ""
},
"Enter passkey for ": { "Enter passkey for ": {
"Enter passkey for ": "Inserisci passkey per " "Enter passkey for ": "Inserisci passkey per "
}, },
@@ -1634,6 +1652,9 @@
"Fixing...": { "Fixing...": {
"Fixing...": "Correzione in Corso..." "Fixing...": "Correzione in Corso..."
}, },
"Flags": {
"Flags": ""
},
"Flipped": { "Flipped": {
"Flipped": "Ruotato" "Flipped": "Ruotato"
}, },
@@ -1796,26 +1817,32 @@
"Hibernate": { "Hibernate": {
"Hibernate": "Iberna" "Hibernate": "Iberna"
}, },
"Hidden": {
"Hidden": ""
},
"Hidden Network": {
"Hidden Network": ""
},
"Hide Delay": { "Hide Delay": {
"Hide Delay": "Ritardo Nascondi" "Hide Delay": "Ritardo Nascondi"
}, },
"Hide When Typing": { "Hide When Typing": {
"Hide When Typing": "" "Hide When Typing": "Nascondi Durante la Digitazione"
}, },
"Hide When Windows Open": { "Hide When Windows Open": {
"Hide When Windows Open": "Nascondi Quando le Finestre Sono Aperte" "Hide When Windows Open": "Nascondi Quando le Finestre Sono Aperte"
}, },
"Hide cursor after inactivity (0 = disabled)": { "Hide cursor after inactivity (0 = disabled)": {
"Hide cursor after inactivity (0 = disabled)": "" "Hide cursor after inactivity (0 = disabled)": "Nascondi il cursore dopo inattività (0 = disabilitato)"
}, },
"Hide cursor when pressing keyboard keys": { "Hide cursor when pressing keyboard keys": {
"Hide cursor when pressing keyboard keys": "" "Hide cursor when pressing keyboard keys": "Nascondi il cursore quando si premono i tasti della tastiera"
}, },
"Hide cursor when using touch input": { "Hide cursor when using touch input": {
"Hide cursor when using touch input": "" "Hide cursor when using touch input": "Nascondi il cursore quando si usa l'input touch"
}, },
"Hide on Touch": { "Hide on Touch": {
"Hide on Touch": "" "Hide on Touch": "Nascondi al Tocco"
}, },
"Hide the dock when not in use and reveal it when hovering near the dock area": { "Hide the dock when not in use and reveal it when hovering near the dock area": {
"Hide the dock when not in use and reveal it when hovering near the dock area": "Nascondi la dock quando non è in uso e mostrala quando il cursore passa vicino allarea della dock" "Hide the dock when not in use and reveal it when hovering near the dock area": "Nascondi la dock quando non è in uso e mostrala quando il cursore passa vicino allarea della dock"
@@ -1845,7 +1872,7 @@
"Hot Corners": "Angoli Attivi" "Hot Corners": "Angoli Attivi"
}, },
"Hotkey overlay title (optional)": { "Hotkey overlay title (optional)": {
"Hotkey overlay title (optional)": "Titolo della sovrapposizione per tasti di scelta rapida (opzionale)" "Hotkey overlay title (optional)": "Titolo della sovrapposizione per scorciatoie (opzionale)"
}, },
"Hour": { "Hour": {
"Hour": "Ore" "Hour": "Ore"
@@ -1884,7 +1911,7 @@
"Idle": "Inattività" "Idle": "Inattività"
}, },
"Idle Inhibitor": { "Idle Inhibitor": {
"Idle Inhibitor": "Inibitore Inattività" "Idle Inhibitor": "Blocco Sospensione"
}, },
"Idle Settings": { "Idle Settings": {
"Idle Settings": "Impostazioni Riposo" "Idle Settings": "Impostazioni Riposo"
@@ -1980,13 +2007,13 @@
"Key": "Tasto" "Key": "Tasto"
}, },
"Keybind Sources": { "Keybind Sources": {
"Keybind Sources": "" "Keybind Sources": "Sorgenti Scorciatoie"
}, },
"Keybinds Search Settings": { "Keybinds Search Settings": {
"Keybinds Search Settings": "" "Keybinds Search Settings": "Impostazioni Ricerca Scorciatoie"
}, },
"Keybinds shown alongside regular search results": { "Keybinds shown alongside regular search results": {
"Keybinds shown alongside regular search results": "" "Keybinds shown alongside regular search results": "Scorciatoie mostrate insieme ai normali risultati di ricerca"
}, },
"Keyboard Layout Name": { "Keyboard Layout Name": {
"Keyboard Layout Name": "Nome Layout Tastiera" "Keyboard Layout Name": "Nome Layout Tastiera"
@@ -2111,6 +2138,9 @@
"Lock fade grace period": { "Lock fade grace period": {
"Lock fade grace period": "Periodo di attesa per la dissolvenza al blocco" "Lock fade grace period": "Periodo di attesa per la dissolvenza al blocco"
}, },
"Locked": {
"Locked": ""
},
"Log Out": { "Log Out": {
"Log Out": "Termina Sessione" "Log Out": "Termina Sessione"
}, },
@@ -2120,6 +2150,9 @@
"Long Text": { "Long Text": {
"Long Text": "Testo Lungo" "Long Text": "Testo Lungo"
}, },
"Long press": {
"Long press": ""
},
"Longitude": { "Longitude": {
"Longitude": "Longitudine" "Longitude": "Longitudine"
}, },
@@ -2307,10 +2340,10 @@
"Mount": "Monta" "Mount": "Monta"
}, },
"Mouse pointer appearance": { "Mouse pointer appearance": {
"Mouse pointer appearance": "" "Mouse pointer appearance": "Aspetto puntatore del mouse"
}, },
"Mouse pointer size in pixels": { "Mouse pointer size in pixels": {
"Mouse pointer size in pixels": "" "Mouse pointer size in pixels": "Dimensione puntatore del mouse in pixel"
}, },
"Move Widget": { "Move Widget": {
"Move Widget": "Sposta Widget" "Move Widget": "Sposta Widget"
@@ -2345,6 +2378,9 @@
"Network Information": { "Network Information": {
"Network Information": "Informazioni Rete" "Network Information": "Informazioni Rete"
}, },
"Network Name (SSID)": {
"Network Name (SSID)": ""
},
"Network Speed Monitor": { "Network Speed Monitor": {
"Network Speed Monitor": "Monitor Velocità Rete" "Network Speed Monitor": "Monitor Velocità Rete"
}, },
@@ -2382,7 +2418,7 @@
"Night Mode": "Modalità Notte" "Night Mode": "Modalità Notte"
}, },
"Night Temperature": { "Night Temperature": {
"Night Temperature": "Temperatura Notte" "Night Temperature": "Temperatura Notturna"
}, },
"Niri Integration": { "Niri Integration": {
"Niri Integration": "Integrazione Niri" "Niri Integration": "Integrazione Niri"
@@ -2748,7 +2784,7 @@
"Plugin Management": "Gestione Plugin" "Plugin Management": "Gestione Plugin"
}, },
"Plugin is disabled - enable in Plugins settings to use": { "Plugin is disabled - enable in Plugins settings to use": {
"Plugin is disabled - enable in Plugins settings to use": "Plugin disabilitato - per usarlo, attivalo nelle impostazioni Plugin" "Plugin is disabled - enable in Plugins settings to use": "Plugin disabilitato - per usarlo, attivalo nelle impostazioni Plugin"
}, },
"Plugins": { "Plugins": {
"Plugins": "Plugin" "Plugins": "Plugin"
@@ -2766,7 +2802,7 @@
"Position": "Posizione" "Position": "Posizione"
}, },
"Possible Override Conflicts": { "Possible Override Conflicts": {
"Possible Override Conflicts": "Possibili Conflitti di Sovrascrittura" "Possible Override Conflicts": "Possibili Conflitti di Forzatura"
}, },
"Power": { "Power": {
"Power": "Alimentazione" "Power": "Alimentazione"
@@ -2781,7 +2817,7 @@
"Power Action Confirmation": "Conferma Azioni Alimentazione" "Power Action Confirmation": "Conferma Azioni Alimentazione"
}, },
"Power Menu Customization": { "Power Menu Customization": {
"Power Menu Customization": "Personalizzazione Menù Alimentazione" "Power Menu Customization": "Personalizzazione Menu Alimentazione"
}, },
"Power Off": { "Power Off": {
"Power Off": "Spegni" "Power Off": "Spegni"
@@ -2921,6 +2957,9 @@
"Reject Jobs": { "Reject Jobs": {
"Reject Jobs": "Rifiuta Stampe" "Reject Jobs": "Rifiuta Stampe"
}, },
"Release": {
"Release": ""
},
"Reload Plugin": { "Reload Plugin": {
"Reload Plugin": "Ricarica Plugin" "Reload Plugin": "Ricarica Plugin"
}, },
@@ -2930,6 +2969,9 @@
"Remove gaps and border when windows are maximized": { "Remove gaps and border when windows are maximized": {
"Remove gaps and border when windows are maximized": "Rimuovi spazi e bordo quando le finestre sono massimizzate" "Remove gaps and border when windows are maximized": "Rimuovi spazi e bordo quando le finestre sono massimizzate"
}, },
"Repeat": {
"Repeat": ""
},
"Report": { "Report": {
"Report": "Riepilogo" "Report": "Riepilogo"
}, },
@@ -3057,7 +3099,7 @@
"Scale": "Scala" "Scale": "Scala"
}, },
"Scale DankBar font sizes independently": { "Scale DankBar font sizes independently": {
"Scale DankBar font sizes independently": "Scala indipendentemente le dimensioni dei font della DankBar" "Scale DankBar font sizes independently": "Scala le dimensioni dei font della DankBar in modo indipendente"
}, },
"Scale all font sizes throughout the shell": { "Scale all font sizes throughout the shell": {
"Scale all font sizes throughout the shell": "Ridimensiona tutte le dimensioni dei caratteri nell'intera shell" "Scale all font sizes throughout the shell": "Ridimensiona tutte le dimensioni dei caratteri nell'intera shell"
@@ -3096,7 +3138,7 @@
"Scrolling": "Scorrimento" "Scrolling": "Scorrimento"
}, },
"Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": { "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": {
"Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "" "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "Cerca per combinazione di tasti, descrizione o nome azione.\\n\\nL'azione predefinita copia la scorciatoia negli appunti.\\nClic-destro o Freccia Destra per fissare le scorciatoie frequenti - appariranno in cima quando non si cerca."
}, },
"Search file contents": { "Search file contents": {
"Search file contents": "Cerca il contenuto dei file" "Search file contents": "Cerca il contenuto dei file"
@@ -3111,7 +3153,7 @@
"Search keybinds...": "Cerca scorciatoie..." "Search keybinds...": "Cerca scorciatoie..."
}, },
"Search keyboard shortcuts from your compositor and applications": { "Search keyboard shortcuts from your compositor and applications": {
"Search keyboard shortcuts from your compositor and applications": "" "Search keyboard shortcuts from your compositor and applications": "Cerca scorciatoie da tastiera dal tuo compositor e applicazioni"
}, },
"Search plugins...": { "Search plugins...": {
"Search plugins...": "Cerca plugin..." "Search plugins...": "Cerca plugin..."
@@ -3156,7 +3198,7 @@
"Select an image file...": "Seleziona un'immagine" "Select an image file...": "Seleziona un'immagine"
}, },
"Select at least one provider": { "Select at least one provider": {
"Select at least one provider": "" "Select at least one provider": "Seleziona almeno un fornitore"
}, },
"Select device...": { "Select device...": {
"Select device...": "Seleziona un dispositivo..." "Select device...": "Seleziona un dispositivo..."
@@ -3183,7 +3225,7 @@
"Select the palette algorithm used for wallpaper-based colors": "Seleziona l'algoritmo tavolozza usato per i colori basati sullo sfondo" "Select the palette algorithm used for wallpaper-based colors": "Seleziona l'algoritmo tavolozza usato per i colori basati sullo sfondo"
}, },
"Select which keybind providers to include": { "Select which keybind providers to include": {
"Select which keybind providers to include": "" "Select which keybind providers to include": "Seleziona quali fornitori di scorciatoie includere"
}, },
"Select which transitions to include in randomization": { "Select which transitions to include in randomization": {
"Select which transitions to include in randomization": "Seleziona quali transizioni includere nella randomizzazione" "Select which transitions to include in randomization": "Seleziona quali transizioni includere nella randomizzazione"
@@ -3216,7 +3258,7 @@
"Shell": "Shell" "Shell": "Shell"
}, },
"Shift+Del: Clear All • Esc: Close": { "Shift+Del: Clear All • Esc: Close": {
"Shift+Del: Clear All • Esc: Close": "Shift+Del: Elimina tutto • Esc: Chiudi" "Shift+Del: Clear All • Esc: Close": "Shift+Canc: Elimina tutto • Esc: Chiudi"
}, },
"Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": { "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": {
"Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": "Shift+Invio: Incolla • Shift+Canc: Cancella Tutto • Esc: Chiudi" "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": "Shift+Invio: Incolla • Shift+Canc: Cancella Tutto • Esc: Chiudi"
@@ -3249,7 +3291,7 @@
"Show Disk": "Mostra Disco" "Show Disk": "Mostra Disco"
}, },
"Show Dock": { "Show Dock": {
"Show Dock": "Mostra Dock" "Show Dock": "Mostra la Dock"
}, },
"Show Feels Like Temperature": { "Show Feels Like Temperature": {
"Show Feels Like Temperature": "Mostra Temperatura Percepita" "Show Feels Like Temperature": "Mostra Temperatura Percepita"
@@ -3342,7 +3384,7 @@
"Show Workspace Apps": "Mostra Icone negli Spazi di Lavoro" "Show Workspace Apps": "Mostra Icone negli Spazi di Lavoro"
}, },
"Show all 9 tags instead of only occupied tags (DWL only)": { "Show all 9 tags instead of only occupied tags (DWL only)": {
"Show all 9 tags instead of only occupied tags (DWL only)": "Mostra tutti i 9 tag invece dei soli tag occupati (solo DWL)" "Show all 9 tags instead of only occupied tags (DWL only)": "Mostra tutti i 9 tag invece di quelli occupati (solo DWL)"
}, },
"Show cava audio visualizer in media widget": { "Show cava audio visualizer in media widget": {
"Show cava audio visualizer in media widget": "Mostra il visualizzatore audio cava nel widget multimediale" "Show cava audio visualizer in media widget": "Mostra il visualizzatore audio cava nel widget multimediale"
@@ -3363,7 +3405,7 @@
"Show on Overview": "Mostra in Panoramica" "Show on Overview": "Mostra in Panoramica"
}, },
"Show on Overview Only": { "Show on Overview Only": {
"Show on Overview Only": "" "Show on Overview Only": "Mostra Solo nella Panoramica"
}, },
"Show on all connected displays": { "Show on all connected displays": {
"Show on all connected displays": "Mostra su tutti gli schermi connessi" "Show on all connected displays": "Mostra su tutti gli schermi connessi"
@@ -3381,13 +3423,13 @@
"Show on-screen display when cycling audio output devices": "Mostra un avviso sullo schermo quando si scorre tra i dispositivi di uscita audio" "Show on-screen display when cycling audio output devices": "Mostra un avviso sullo schermo quando si scorre tra i dispositivi di uscita audio"
}, },
"Show on-screen display when idle inhibitor state changes": { "Show on-screen display when idle inhibitor state changes": {
"Show on-screen display when idle inhibitor state changes": "Mostra visualizzazione a schermo quando cambia lo stato dell'inibitore di inattività" "Show on-screen display when idle inhibitor state changes": "Mostra visualizzazione a schermo quando cambia lo stato del blocco sospensione"
}, },
"Show on-screen display when media player volume changes": { "Show on-screen display when media player volume changes": {
"Show on-screen display when media player volume changes": "Mostra visualizzazione a schermo quando cambia il volume del lettore multimediale" "Show on-screen display when media player volume changes": "Mostra visualizzazione a schermo quando cambia il volume del lettore multimediale"
}, },
"Show on-screen display when microphone is muted/unmuted": { "Show on-screen display when microphone is muted/unmuted": {
"Show on-screen display when microphone is muted/unmuted": "Visualizza un messaggio a schermo quando il microfono è mutato/aperto" "Show on-screen display when microphone is muted/unmuted": "Visualizza un messaggio a schermo quando il microfono è attivato/disattivato"
}, },
"Show on-screen display when power profile changes": { "Show on-screen display when power profile changes": {
"Show on-screen display when power profile changes": "Visualizza un messaggio a schermo quando il profilo di alimentazione cambia" "Show on-screen display when power profile changes": "Visualizza un messaggio a schermo quando il profilo di alimentazione cambia"
@@ -3609,7 +3651,7 @@
"Tab": "Scheda" "Tab": "Scheda"
}, },
"Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": { "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": {
"Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": "Tab/Shift+Tab: Nav • ←→↑↓: Griglia Nav • Enter/Spazio: Seleziona" "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": "Tab/Shift+Tab: Nav • ←→↑↓: Griglia Nav • Invio/Spazio: Seleziona"
}, },
"Terminal custom additional parameters": { "Terminal custom additional parameters": {
"Terminal custom additional parameters": "Parametri aggiuntivi personalizzati terminale" "Terminal custom additional parameters": "Parametri aggiuntivi personalizzati terminale"
@@ -3693,7 +3735,7 @@
"Title": "Titolo" "Title": "Titolo"
}, },
"To Full": { "To Full": {
"To Full": "Per la Carica Completa" "To Full": "Alla Carica Completa"
}, },
"To update, run the following command:": { "To update, run the following command:": {
"To update, run the following command:": "Per aggiornare, esegui il seguente comando:" "To update, run the following command:": "Per aggiornare, esegui il seguente comando:"
@@ -3708,7 +3750,7 @@
"Today": "Oggi" "Today": "Oggi"
}, },
"Toggle visibility of this bar configuration": { "Toggle visibility of this bar configuration": {
"Toggle visibility of this bar configuration": "Attiva/disattiva la visibilità di questa configurazione della barra" "Toggle visibility of this bar configuration": "Attiva/Disattiva questa configurazione della barra"
}, },
"Toggling...": { "Toggling...": {
"Toggling...": "Attivazione/Disattivazione in corso..." "Toggling...": "Attivazione/Disattivazione in corso..."
@@ -3756,10 +3798,10 @@
"Transparency": "Trasparenza" "Transparency": "Trasparenza"
}, },
"Trigger": { "Trigger": {
"Trigger": "" "Trigger": "Attivatore"
}, },
"Trigger Prefix": { "Trigger Prefix": {
"Trigger Prefix": "" "Trigger Prefix": "Prefisso Attivatore"
}, },
"Turn off monitors after": { "Turn off monitors after": {
"Turn off monitors after": "Spegni monitor dopo" "Turn off monitors after": "Spegni monitor dopo"
@@ -3768,7 +3810,7 @@
"Type": "Tipo" "Type": "Tipo"
}, },
"Type this prefix to search keybinds": { "Type this prefix to search keybinds": {
"Type this prefix to search keybinds": "" "Type this prefix to search keybinds": "Digita questo prefisso per cercare scorciatoie"
}, },
"Typography": { "Typography": {
"Typography": "Tipografia" "Typography": "Tipografia"
@@ -3798,7 +3840,7 @@
"Unknown Network": "Rete sconosciuta" "Unknown Network": "Rete sconosciuta"
}, },
"Unpin": { "Unpin": {
"Unpin": "" "Unpin": "Rimuovi"
}, },
"Unpin from Dock": { "Unpin from Dock": {
"Unpin from Dock": "Rimuovi dalla Dock" "Unpin from Dock": "Rimuovi dalla Dock"
@@ -3822,10 +3864,10 @@
"Update Plugin": "Aggiorna Plugin" "Update Plugin": "Aggiorna Plugin"
}, },
"Usage Tips": { "Usage Tips": {
"Usage Tips": "" "Usage Tips": "Suggerimenti d'Uso"
}, },
"Use 24-hour time format instead of 12-hour AM/PM": { "Use 24-hour time format instead of 12-hour AM/PM": {
"Use 24-hour time format instead of 12-hour AM/PM": "Usa formato 24-ore invece del 12-ore AM/PM" "Use 24-hour time format instead of 12-hour AM/PM": "Usa formato 24 ore invece del formato 12 ore AM/PM"
}, },
"Use Custom Command": { "Use Custom Command": {
"Use Custom Command": "Usa Comando Personalizzato" "Use Custom Command": "Usa Comando Personalizzato"
@@ -3864,7 +3906,7 @@
"Use custom gaps instead of bar spacing": "Usa spaziature personalizzate invece di quelle della barra" "Use custom gaps instead of bar spacing": "Usa spaziature personalizzate invece di quelle della barra"
}, },
"Use custom window radius instead of theme radius": { "Use custom window radius instead of theme radius": {
"Use custom window radius instead of theme radius": "Usa un raggio finestra personalizzato invece di quello del tema" "Use custom window radius instead of theme radius": "Usa raggio personalizzato per le finestre invece di quello del tema"
}, },
"Use custom window rounding instead of theme radius": { "Use custom window rounding instead of theme radius": {
"Use custom window rounding instead of theme radius": "Usa un arrotondamento finestre personalizzato invece del raggio del tema" "Use custom window rounding instead of theme radius": "Usa un arrotondamento finestre personalizzato invece del raggio del tema"
@@ -3879,7 +3921,7 @@
"Use sound theme from system settings": "Usa tema di suoni dalle impostazioni di sistema" "Use sound theme from system settings": "Usa tema di suoni dalle impostazioni di sistema"
}, },
"Use trigger prefix to activate": { "Use trigger prefix to activate": {
"Use trigger prefix to activate": "" "Use trigger prefix to activate": "Usa il prefisso attivatore per attivare"
}, },
"Use%": { "Use%": {
"Use%": "Utilizzo%" "Use%": "Utilizzo%"
@@ -4091,7 +4133,7 @@
"Width of window border (general.border_size)": "Larghezza bordo finestra (general.border_size)" "Width of window border (general.border_size)": "Larghezza bordo finestra (general.border_size)"
}, },
"Width of window border and focus ring": { "Width of window border and focus ring": {
"Width of window border and focus ring": "Larghezza del bordo e dell'anello di fuoco delle finestre" "Width of window border and focus ring": "Larghezza del bordo e dell'anello di focus"
}, },
"Wind": { "Wind": {
"Wind": "Vento" "Wind": "Vento"
@@ -4163,7 +4205,7 @@
"by %1": "di %1" "by %1": "di %1"
}, },
"bar shadow settings card": { "bar shadow settings card": {
"Shadow": "" "Shadow": "Ombra"
}, },
"browse themes button | theme browser header | theme browser window title": { "browse themes button | theme browser header | theme browser window title": {
"Browse Themes": "Sfoglia Temi" "Browse Themes": "Sfoglia Temi"
@@ -4199,7 +4241,7 @@
"dms/binds.kdl is now included in config.kdl": "dms/binds.kdl è ora incluso in config.kdl" "dms/binds.kdl is now included in config.kdl": "dms/binds.kdl è ora incluso in config.kdl"
}, },
"dms/cursor config exists but is not included. Cursor settings won't apply.": { "dms/cursor config exists but is not included. Cursor settings won't apply.": {
"dms/cursor config exists but is not included. Cursor settings won't apply.": "" "dms/cursor config exists but is not included. Cursor settings won't apply.": "Il file di configurazione dms/cursor esiste ma non è incluso. Le impostazioni del cursore non verranno applicate."
}, },
"dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": { "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": {
"dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": "La configurazione dms/outputs esiste ma non è inclusa nella configurazione del compositor. Le modifiche allo schermo non saranno persistenti." "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": "La configurazione dms/outputs esiste ma non è inclusa nella configurazione del compositor. Le modifiche allo schermo non saranno persistenti."
@@ -4247,13 +4289,13 @@
"You're All Set!": "Tutto Pronto!" "You're All Set!": "Tutto Pronto!"
}, },
"greeter configure keybinds link": { "greeter configure keybinds link": {
"Configure Keybinds": "Configura Tasti di Scelta Rapida" "Configure Keybinds": "Configura Scorciatoie"
}, },
"greeter dankbar description": { "greeter dankbar description": {
"Widgets, layout, style": "Widget, layout, stile" "Widgets, layout, style": "Widget, layout, stile"
}, },
"greeter displays description": { "greeter displays description": {
"Resolution, position, scale": "Risoluzione, posizione, scala" "Resolution, position, scale": "Risoluzione, posizione, ridimensionamento"
}, },
"greeter dock description": { "greeter dock description": {
"Position, pinned apps": "Posizione, app fissate" "Position, pinned apps": "Posizione, app fissate"
@@ -4300,7 +4342,8 @@
"Modular widget bar": "Barra widget modulare", "Modular widget bar": "Barra widget modulare",
"Night mode & gamma": "Modalità notte e gamma", "Night mode & gamma": "Modalità notte e gamma",
"Per-screen config": "Configurazione per schermo", "Per-screen config": "Configurazione per schermo",
"Quick system toggles": "Comandi rapidi di sistema" "Quick system toggles": "Comandi rapidi di sistema",
"Security & privacy": ""
}, },
"greeter feature card title": { "greeter feature card title": {
"App Theming": "Theming Applicazioni", "App Theming": "Theming Applicazioni",
@@ -4317,6 +4360,9 @@
"greeter feature card title | greeter settings link": { "greeter feature card title | greeter settings link": {
"DankBar": "DankBar" "DankBar": "DankBar"
}, },
"greeter feature card title | lock screen notifications settings card": {
"Lock Screen": ""
},
"greeter finish button": { "greeter finish button": {
"Finish": "Fine" "Finish": "Fine"
}, },
@@ -4344,7 +4390,7 @@
"greeter settings link": { "greeter settings link": {
"Displays": "Schermi", "Displays": "Schermi",
"Dock": "Dock", "Dock": "Dock",
"Keybinds": "Tasti di Scelta Rapida", "Keybinds": "Scorciatoie",
"Notifications": "Notifiche", "Notifications": "Notifiche",
"Theme & Colors": "Temi & Colori", "Theme & Colors": "Temi & Colori",
"Wallpaper": "Sfondo" "Wallpaper": "Sfondo"
@@ -4404,7 +4450,7 @@
"Full Content": "Contenuto Completo" "Full Content": "Contenuto Completo"
}, },
"lock screen notification privacy setting": { "lock screen notification privacy setting": {
"Control what notification information is shown on the lock screen": "Controlla quali informazioni delle notifiche vengono mostrate sulla schermata di blocco", "Control what notification information is shown on the lock screen": "Scegli quali informazioni delle notifiche vengono mostrate sulla schermata di blocco",
"Notification Display": "Visualizzazione Notifiche" "Notification Display": "Visualizzazione Notifiche"
}, },
"lock screen notifications settings card": { "lock screen notifications settings card": {
@@ -4518,11 +4564,11 @@
"Widgets": "Widget" "Widgets": "Widget"
}, },
"shadow color option": { "shadow color option": {
"Surface": "", "Surface": "Superficie",
"Text": "" "Text": "Testo"
}, },
"shadow intensity slider": { "shadow intensity slider": {
"Intensity": "" "Intensity": "Intensità"
}, },
"source code link": { "source code link": {
"source": "sorgente" "source": "sorgente"
@@ -4560,6 +4606,9 @@
"update dms for NM integration.": { "update dms for NM integration.": {
"update dms for NM integration.": "aggiorna dms per l'integrazione NM." "update dms for NM integration.": "aggiorna dms per l'integrazione NM."
}, },
"version requirement": {
"Requires %1": ""
},
"wallpaper directory file browser title": { "wallpaper directory file browser title": {
"Select Wallpaper Directory": "Seleziona Cartella Sfondo" "Select Wallpaper Directory": "Seleziona Cartella Sfondo"
}, },

View File

@@ -20,6 +20,12 @@
"%1 display(s)": { "%1 display(s)": {
"%1 display(s)": "%1 表示" "%1 display(s)": "%1 表示"
}, },
"%1 exists but is not included in config. Custom keybinds will not work until this is fixed.": {
"%1 exists but is not included in config. Custom keybinds will not work until this is fixed.": ""
},
"%1 is now included in config": {
"%1 is now included in config": ""
},
"%1 job(s)": { "%1 job(s)": {
"%1 job(s)": "" "%1 job(s)": ""
}, },
@@ -701,6 +707,9 @@
"Clear at Startup": { "Clear at Startup": {
"Clear at Startup": "" "Clear at Startup": ""
}, },
"Click 'Setup' to create %1 and add include to config.": {
"Click 'Setup' to create %1 and add include to config.": ""
},
"Click 'Setup' to create cursor config and add include to your compositor config.": { "Click 'Setup' to create cursor config and add include to your compositor config.": {
"Click 'Setup' to create cursor config and add include to your compositor config.": "" "Click 'Setup' to create cursor config and add include to your compositor config.": ""
}, },
@@ -713,6 +722,9 @@
"Click Import to add a .ovpn or .conf": { "Click Import to add a .ovpn or .conf": {
"Click Import to add a .ovpn or .conf": "" "Click Import to add a .ovpn or .conf": ""
}, },
"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 dms/binds.kdl": { "Click any shortcut to edit. Changes save to dms/binds.kdl": {
"Click any shortcut to edit. Changes save to dms/binds.kdl": "" "Click any shortcut to edit. Changes save to dms/binds.kdl": ""
}, },
@@ -848,6 +860,9 @@
"Connect": { "Connect": {
"Connect": "接続" "Connect": "接続"
}, },
"Connect to Hidden Network": {
"Connect to Hidden Network": ""
},
"Connect to VPN": { "Connect to VPN": {
"Connect to VPN": "VPNに接続" "Connect to VPN": "VPNに接続"
}, },
@@ -1403,6 +1418,9 @@
"Enter launch prefix (e.g., 'uwsm-app')": { "Enter launch prefix (e.g., 'uwsm-app')": {
"Enter launch prefix (e.g., 'uwsm-app')": "" "Enter launch prefix (e.g., 'uwsm-app')": ""
}, },
"Enter network name and password": {
"Enter network name and password": ""
},
"Enter passkey for ": { "Enter passkey for ": {
"Enter passkey for ": "パスキーを入力してください " "Enter passkey for ": "パスキーを入力してください "
}, },
@@ -1634,6 +1652,9 @@
"Fixing...": { "Fixing...": {
"Fixing...": "" "Fixing...": ""
}, },
"Flags": {
"Flags": ""
},
"Flipped": { "Flipped": {
"Flipped": "" "Flipped": ""
}, },
@@ -1796,6 +1817,12 @@
"Hibernate": { "Hibernate": {
"Hibernate": "休止状態" "Hibernate": "休止状態"
}, },
"Hidden": {
"Hidden": ""
},
"Hidden Network": {
"Hidden Network": ""
},
"Hide Delay": { "Hide Delay": {
"Hide Delay": "" "Hide Delay": ""
}, },
@@ -2111,6 +2138,9 @@
"Lock fade grace period": { "Lock fade grace period": {
"Lock fade grace period": "" "Lock fade grace period": ""
}, },
"Locked": {
"Locked": ""
},
"Log Out": { "Log Out": {
"Log Out": "ログアウト" "Log Out": "ログアウト"
}, },
@@ -2120,6 +2150,9 @@
"Long Text": { "Long Text": {
"Long Text": "長文" "Long Text": "長文"
}, },
"Long press": {
"Long press": ""
},
"Longitude": { "Longitude": {
"Longitude": "経度" "Longitude": "経度"
}, },
@@ -2345,6 +2378,9 @@
"Network Information": { "Network Information": {
"Network Information": "ネットワーク情報" "Network Information": "ネットワーク情報"
}, },
"Network Name (SSID)": {
"Network Name (SSID)": ""
},
"Network Speed Monitor": { "Network Speed Monitor": {
"Network Speed Monitor": "ネットワーク速度モニター" "Network Speed Monitor": "ネットワーク速度モニター"
}, },
@@ -2921,6 +2957,9 @@
"Reject Jobs": { "Reject Jobs": {
"Reject Jobs": "" "Reject Jobs": ""
}, },
"Release": {
"Release": ""
},
"Reload Plugin": { "Reload Plugin": {
"Reload Plugin": "プラグインをリロード" "Reload Plugin": "プラグインをリロード"
}, },
@@ -2930,6 +2969,9 @@
"Remove gaps and border when windows are maximized": { "Remove gaps and border when windows are maximized": {
"Remove gaps and border when windows are maximized": "" "Remove gaps and border when windows are maximized": ""
}, },
"Repeat": {
"Repeat": ""
},
"Report": { "Report": {
"Report": "報告" "Report": "報告"
}, },
@@ -4300,7 +4342,8 @@
"Modular widget bar": "", "Modular widget bar": "",
"Night mode & gamma": "", "Night mode & gamma": "",
"Per-screen config": "", "Per-screen config": "",
"Quick system toggles": "" "Quick system toggles": "",
"Security & privacy": ""
}, },
"greeter feature card title": { "greeter feature card title": {
"App Theming": "", "App Theming": "",
@@ -4317,6 +4360,9 @@
"greeter feature card title | greeter settings link": { "greeter feature card title | greeter settings link": {
"DankBar": "" "DankBar": ""
}, },
"greeter feature card title | lock screen notifications settings card": {
"Lock Screen": ""
},
"greeter finish button": { "greeter finish button": {
"Finish": "" "Finish": ""
}, },
@@ -4560,6 +4606,9 @@
"update dms for NM integration.": { "update dms for NM integration.": {
"update dms for NM integration.": "NM統合のためにDMSを更新します。" "update dms for NM integration.": "NM統合のためにDMSを更新します。"
}, },
"version requirement": {
"Requires %1": ""
},
"wallpaper directory file browser title": { "wallpaper directory file browser title": {
"Select Wallpaper Directory": "壁紙のディレクトリを選んでください" "Select Wallpaper Directory": "壁紙のディレクトリを選んでください"
}, },

View File

@@ -20,6 +20,12 @@
"%1 display(s)": { "%1 display(s)": {
"%1 display(s)": "%1 wyświetlaczy" "%1 display(s)": "%1 wyświetlaczy"
}, },
"%1 exists but is not included in config. Custom keybinds will not work until this is fixed.": {
"%1 exists but is not included in config. Custom keybinds will not work until this is fixed.": ""
},
"%1 is now included in config": {
"%1 is now included in config": ""
},
"%1 job(s)": { "%1 job(s)": {
"%1 job(s)": "%1 zadań" "%1 job(s)": "%1 zadań"
}, },
@@ -701,6 +707,9 @@
"Clear at Startup": { "Clear at Startup": {
"Clear at Startup": "Wyczyść przy starcie" "Clear at Startup": "Wyczyść przy starcie"
}, },
"Click 'Setup' to create %1 and add include to config.": {
"Click 'Setup' to create %1 and add include to config.": ""
},
"Click 'Setup' to create cursor config and add include to your compositor config.": { "Click 'Setup' to create cursor config and add include to your compositor config.": {
"Click 'Setup' to create cursor config and add include to your compositor config.": "" "Click 'Setup' to create cursor config and add include to your compositor config.": ""
}, },
@@ -713,6 +722,9 @@
"Click Import to add a .ovpn or .conf": { "Click Import to add a .ovpn or .conf": {
"Click Import to add a .ovpn or .conf": "Kliknij Importuj, aby dodać plik .ovpn lub .conf" "Click Import to add a .ovpn or .conf": "Kliknij Importuj, aby dodać plik .ovpn lub .conf"
}, },
"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 dms/binds.kdl": { "Click any shortcut to edit. Changes save to dms/binds.kdl": {
"Click any shortcut to edit. Changes save to dms/binds.kdl": "Kliknij dowolny skrót, aby edytować. Zmiany zostaną zapisane w pliku dms/binds.kdl." "Click any shortcut to edit. Changes save to dms/binds.kdl": "Kliknij dowolny skrót, aby edytować. Zmiany zostaną zapisane w pliku dms/binds.kdl."
}, },
@@ -848,6 +860,9 @@
"Connect": { "Connect": {
"Connect": "Połącz" "Connect": "Połącz"
}, },
"Connect to Hidden Network": {
"Connect to Hidden Network": ""
},
"Connect to VPN": { "Connect to VPN": {
"Connect to VPN": "Połącz z VPN" "Connect to VPN": "Połącz z VPN"
}, },
@@ -1403,6 +1418,9 @@
"Enter launch prefix (e.g., 'uwsm-app')": { "Enter launch prefix (e.g., 'uwsm-app')": {
"Enter launch prefix (e.g., 'uwsm-app')": "Dodaj prefiks uruchamiania (np. 'uwsp-app')" "Enter launch prefix (e.g., 'uwsm-app')": "Dodaj prefiks uruchamiania (np. 'uwsp-app')"
}, },
"Enter network name and password": {
"Enter network name and password": ""
},
"Enter passkey for ": { "Enter passkey for ": {
"Enter passkey for ": "Wprowadź klucz dostępu dla " "Enter passkey for ": "Wprowadź klucz dostępu dla "
}, },
@@ -1634,6 +1652,9 @@
"Fixing...": { "Fixing...": {
"Fixing...": "Ustalenie..." "Fixing...": "Ustalenie..."
}, },
"Flags": {
"Flags": ""
},
"Flipped": { "Flipped": {
"Flipped": "Odwrócony" "Flipped": "Odwrócony"
}, },
@@ -1796,6 +1817,12 @@
"Hibernate": { "Hibernate": {
"Hibernate": "Hibernacja" "Hibernate": "Hibernacja"
}, },
"Hidden": {
"Hidden": ""
},
"Hidden Network": {
"Hidden Network": ""
},
"Hide Delay": { "Hide Delay": {
"Hide Delay": "Ukryj opóźnienie" "Hide Delay": "Ukryj opóźnienie"
}, },
@@ -2111,6 +2138,9 @@
"Lock fade grace period": { "Lock fade grace period": {
"Lock fade grace period": "" "Lock fade grace period": ""
}, },
"Locked": {
"Locked": ""
},
"Log Out": { "Log Out": {
"Log Out": "Wyloguj" "Log Out": "Wyloguj"
}, },
@@ -2120,6 +2150,9 @@
"Long Text": { "Long Text": {
"Long Text": "Długi tekst" "Long Text": "Długi tekst"
}, },
"Long press": {
"Long press": ""
},
"Longitude": { "Longitude": {
"Longitude": "Długość geograficzna" "Longitude": "Długość geograficzna"
}, },
@@ -2345,6 +2378,9 @@
"Network Information": { "Network Information": {
"Network Information": "Informacje sieciowe" "Network Information": "Informacje sieciowe"
}, },
"Network Name (SSID)": {
"Network Name (SSID)": ""
},
"Network Speed Monitor": { "Network Speed Monitor": {
"Network Speed Monitor": "Monitor prędkości sieci" "Network Speed Monitor": "Monitor prędkości sieci"
}, },
@@ -2921,6 +2957,9 @@
"Reject Jobs": { "Reject Jobs": {
"Reject Jobs": "Odrzucaj zadania" "Reject Jobs": "Odrzucaj zadania"
}, },
"Release": {
"Release": ""
},
"Reload Plugin": { "Reload Plugin": {
"Reload Plugin": "Wczytaj ponownie wtyczkę" "Reload Plugin": "Wczytaj ponownie wtyczkę"
}, },
@@ -2930,6 +2969,9 @@
"Remove gaps and border when windows are maximized": { "Remove gaps and border when windows are maximized": {
"Remove gaps and border when windows are maximized": "Usuń odstępy i ramkę gdy okna są zmaksymalizowane" "Remove gaps and border when windows are maximized": "Usuń odstępy i ramkę gdy okna są zmaksymalizowane"
}, },
"Repeat": {
"Repeat": ""
},
"Report": { "Report": {
"Report": "Raport" "Report": "Raport"
}, },
@@ -4300,7 +4342,8 @@
"Modular widget bar": "", "Modular widget bar": "",
"Night mode & gamma": "", "Night mode & gamma": "",
"Per-screen config": "", "Per-screen config": "",
"Quick system toggles": "" "Quick system toggles": "",
"Security & privacy": ""
}, },
"greeter feature card title": { "greeter feature card title": {
"App Theming": "", "App Theming": "",
@@ -4317,6 +4360,9 @@
"greeter feature card title | greeter settings link": { "greeter feature card title | greeter settings link": {
"DankBar": "" "DankBar": ""
}, },
"greeter feature card title | lock screen notifications settings card": {
"Lock Screen": ""
},
"greeter finish button": { "greeter finish button": {
"Finish": "" "Finish": ""
}, },
@@ -4560,6 +4606,9 @@
"update dms for NM integration.": { "update dms for NM integration.": {
"update dms for NM integration.": "zaktualizuj dms dla integracji z NM." "update dms for NM integration.": "zaktualizuj dms dla integracji z NM."
}, },
"version requirement": {
"Requires %1": ""
},
"wallpaper directory file browser title": { "wallpaper directory file browser title": {
"Select Wallpaper Directory": "Wybierz katalog z tapetami" "Select Wallpaper Directory": "Wybierz katalog z tapetami"
}, },

View File

@@ -20,6 +20,12 @@
"%1 display(s)": { "%1 display(s)": {
"%1 display(s)": "%1 monitor(es)" "%1 display(s)": "%1 monitor(es)"
}, },
"%1 exists but is not included in config. Custom keybinds will not work until this is fixed.": {
"%1 exists but is not included in config. Custom keybinds will not work until this is fixed.": ""
},
"%1 is now included in config": {
"%1 is now included in config": ""
},
"%1 job(s)": { "%1 job(s)": {
"%1 job(s)": "%1 trabalho(s)" "%1 job(s)": "%1 trabalho(s)"
}, },
@@ -701,6 +707,9 @@
"Clear at Startup": { "Clear at Startup": {
"Clear at Startup": "Limpar ao Iniciar" "Clear at Startup": "Limpar ao Iniciar"
}, },
"Click 'Setup' to create %1 and add include to config.": {
"Click 'Setup' to create %1 and add include to config.": ""
},
"Click 'Setup' to create cursor config and add include to your compositor config.": { "Click 'Setup' to create cursor config and add include to your compositor config.": {
"Click 'Setup' to create cursor config and add include to your compositor config.": "" "Click 'Setup' to create cursor config and add include to your compositor config.": ""
}, },
@@ -713,6 +722,9 @@
"Click Import to add a .ovpn or .conf": { "Click Import to add a .ovpn or .conf": {
"Click Import to add a .ovpn or .conf": "Clique em Importar para adicionar um arquivo .ovpn ou .conf" "Click Import to add a .ovpn or .conf": "Clique em Importar para adicionar um arquivo .ovpn ou .conf"
}, },
"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 dms/binds.kdl": { "Click any shortcut to edit. Changes save to dms/binds.kdl": {
"Click any shortcut to edit. Changes save to dms/binds.kdl": "Clique em qualquer atalho para editar. Alterações são salvas em dms/binds.kdl" "Click any shortcut to edit. Changes save to dms/binds.kdl": "Clique em qualquer atalho para editar. Alterações são salvas em dms/binds.kdl"
}, },
@@ -848,6 +860,9 @@
"Connect": { "Connect": {
"Connect": "Conectar" "Connect": "Conectar"
}, },
"Connect to Hidden Network": {
"Connect to Hidden Network": ""
},
"Connect to VPN": { "Connect to VPN": {
"Connect to VPN": "Conectar à VPN" "Connect to VPN": "Conectar à VPN"
}, },
@@ -1403,6 +1418,9 @@
"Enter launch prefix (e.g., 'uwsm-app')": { "Enter launch prefix (e.g., 'uwsm-app')": {
"Enter launch prefix (e.g., 'uwsm-app')": "" "Enter launch prefix (e.g., 'uwsm-app')": ""
}, },
"Enter network name and password": {
"Enter network name and password": ""
},
"Enter passkey for ": { "Enter passkey for ": {
"Enter passkey for ": "Entre chave de acesso para " "Enter passkey for ": "Entre chave de acesso para "
}, },
@@ -1634,6 +1652,9 @@
"Fixing...": { "Fixing...": {
"Fixing...": "Consertando..." "Fixing...": "Consertando..."
}, },
"Flags": {
"Flags": ""
},
"Flipped": { "Flipped": {
"Flipped": "" "Flipped": ""
}, },
@@ -1796,6 +1817,12 @@
"Hibernate": { "Hibernate": {
"Hibernate": "Hibernar" "Hibernate": "Hibernar"
}, },
"Hidden": {
"Hidden": ""
},
"Hidden Network": {
"Hidden Network": ""
},
"Hide Delay": { "Hide Delay": {
"Hide Delay": "" "Hide Delay": ""
}, },
@@ -2111,6 +2138,9 @@
"Lock fade grace period": { "Lock fade grace period": {
"Lock fade grace period": "" "Lock fade grace period": ""
}, },
"Locked": {
"Locked": ""
},
"Log Out": { "Log Out": {
"Log Out": "Sair" "Log Out": "Sair"
}, },
@@ -2120,6 +2150,9 @@
"Long Text": { "Long Text": {
"Long Text": "Longo Texto" "Long Text": "Longo Texto"
}, },
"Long press": {
"Long press": ""
},
"Longitude": { "Longitude": {
"Longitude": "Longitude" "Longitude": "Longitude"
}, },
@@ -2345,6 +2378,9 @@
"Network Information": { "Network Information": {
"Network Information": "Informações de Rede" "Network Information": "Informações de Rede"
}, },
"Network Name (SSID)": {
"Network Name (SSID)": ""
},
"Network Speed Monitor": { "Network Speed Monitor": {
"Network Speed Monitor": "Monitor de Velocidade da Rede" "Network Speed Monitor": "Monitor de Velocidade da Rede"
}, },
@@ -2921,6 +2957,9 @@
"Reject Jobs": { "Reject Jobs": {
"Reject Jobs": "Rejeitar Trabalhos" "Reject Jobs": "Rejeitar Trabalhos"
}, },
"Release": {
"Release": ""
},
"Reload Plugin": { "Reload Plugin": {
"Reload Plugin": "Reiniciar Plugin" "Reload Plugin": "Reiniciar Plugin"
}, },
@@ -2930,6 +2969,9 @@
"Remove gaps and border when windows are maximized": { "Remove gaps and border when windows are maximized": {
"Remove gaps and border when windows are maximized": "Remover espaçámentos e borda quando janelas estão maximizadas" "Remove gaps and border when windows are maximized": "Remover espaçámentos e borda quando janelas estão maximizadas"
}, },
"Repeat": {
"Repeat": ""
},
"Report": { "Report": {
"Report": "Relatório" "Report": "Relatório"
}, },
@@ -4300,7 +4342,8 @@
"Modular widget bar": "", "Modular widget bar": "",
"Night mode & gamma": "", "Night mode & gamma": "",
"Per-screen config": "", "Per-screen config": "",
"Quick system toggles": "" "Quick system toggles": "",
"Security & privacy": ""
}, },
"greeter feature card title": { "greeter feature card title": {
"App Theming": "", "App Theming": "",
@@ -4317,6 +4360,9 @@
"greeter feature card title | greeter settings link": { "greeter feature card title | greeter settings link": {
"DankBar": "" "DankBar": ""
}, },
"greeter feature card title | lock screen notifications settings card": {
"Lock Screen": ""
},
"greeter finish button": { "greeter finish button": {
"Finish": "" "Finish": ""
}, },
@@ -4560,6 +4606,9 @@
"update dms for NM integration.": { "update dms for NM integration.": {
"update dms for NM integration.": "atualize dms para integração com o NM." "update dms for NM integration.": "atualize dms para integração com o NM."
}, },
"version requirement": {
"Requires %1": ""
},
"wallpaper directory file browser title": { "wallpaper directory file browser title": {
"Select Wallpaper Directory": "Selecionar Diretório de Papéis de Parede" "Select Wallpaper Directory": "Selecionar Diretório de Papéis de Parede"
}, },

View File

@@ -20,6 +20,12 @@
"%1 display(s)": { "%1 display(s)": {
"%1 display(s)": "%1 ekran" "%1 display(s)": "%1 ekran"
}, },
"%1 exists but is not included in config. Custom keybinds will not work until this is fixed.": {
"%1 exists but is not included in config. Custom keybinds will not work until this is fixed.": ""
},
"%1 is now included in config": {
"%1 is now included in config": ""
},
"%1 job(s)": { "%1 job(s)": {
"%1 job(s)": "%1 iş" "%1 job(s)": "%1 iş"
}, },
@@ -701,6 +707,9 @@
"Clear at Startup": { "Clear at Startup": {
"Clear at Startup": "Başlangıçta Temizle" "Clear at Startup": "Başlangıçta Temizle"
}, },
"Click 'Setup' to create %1 and add include to config.": {
"Click 'Setup' to create %1 and add include to config.": ""
},
"Click 'Setup' to create cursor config and add include to your compositor config.": { "Click 'Setup' to create cursor config and add include to your compositor config.": {
"Click 'Setup' to create cursor config and add include to your compositor config.": "" "Click 'Setup' to create cursor config and add include to your compositor config.": ""
}, },
@@ -713,6 +722,9 @@
"Click Import to add a .ovpn or .conf": { "Click Import to add a .ovpn or .conf": {
"Click Import to add a .ovpn or .conf": ".ovpn veya .conf dosyası eklemek için İçe Aktar'ı tıklayın." "Click Import to add a .ovpn or .conf": ".ovpn veya .conf dosyası eklemek için İçe Aktar'ı tıklayın."
}, },
"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 dms/binds.kdl": { "Click any shortcut to edit. Changes save to dms/binds.kdl": {
"Click any shortcut to edit. Changes save to dms/binds.kdl": "Düzenlemek için herhangi bir kısayola tıklayın. Değişiklikler dms/binds.kdl dosyasına kaydedilir." "Click any shortcut to edit. Changes save to dms/binds.kdl": "Düzenlemek için herhangi bir kısayola tıklayın. Değişiklikler dms/binds.kdl dosyasına kaydedilir."
}, },
@@ -848,6 +860,9 @@
"Connect": { "Connect": {
"Connect": "Bağlan" "Connect": "Bağlan"
}, },
"Connect to Hidden Network": {
"Connect to Hidden Network": ""
},
"Connect to VPN": { "Connect to VPN": {
"Connect to VPN": "VPN'e Bağlan" "Connect to VPN": "VPN'e Bağlan"
}, },
@@ -1403,6 +1418,9 @@
"Enter launch prefix (e.g., 'uwsm-app')": { "Enter launch prefix (e.g., 'uwsm-app')": {
"Enter launch prefix (e.g., 'uwsm-app')": "Başlatma önekini girin (örneğin, 'uwsm-app')" "Enter launch prefix (e.g., 'uwsm-app')": "Başlatma önekini girin (örneğin, 'uwsm-app')"
}, },
"Enter network name and password": {
"Enter network name and password": ""
},
"Enter passkey for ": { "Enter passkey for ": {
"Enter passkey for ": "Şunun için şifre gir: " "Enter passkey for ": "Şunun için şifre gir: "
}, },
@@ -1634,6 +1652,9 @@
"Fixing...": { "Fixing...": {
"Fixing...": "Düzeltiliyor..." "Fixing...": "Düzeltiliyor..."
}, },
"Flags": {
"Flags": ""
},
"Flipped": { "Flipped": {
"Flipped": "Döndürülmüş" "Flipped": "Döndürülmüş"
}, },
@@ -1796,6 +1817,12 @@
"Hibernate": { "Hibernate": {
"Hibernate": "Hazırda Beklet" "Hibernate": "Hazırda Beklet"
}, },
"Hidden": {
"Hidden": ""
},
"Hidden Network": {
"Hidden Network": ""
},
"Hide Delay": { "Hide Delay": {
"Hide Delay": "Gizleme Gecikmesi" "Hide Delay": "Gizleme Gecikmesi"
}, },
@@ -2111,6 +2138,9 @@
"Lock fade grace period": { "Lock fade grace period": {
"Lock fade grace period": "" "Lock fade grace period": ""
}, },
"Locked": {
"Locked": ""
},
"Log Out": { "Log Out": {
"Log Out": ıkış" "Log Out": ıkış"
}, },
@@ -2120,6 +2150,9 @@
"Long Text": { "Long Text": {
"Long Text": "Uzun Metin" "Long Text": "Uzun Metin"
}, },
"Long press": {
"Long press": ""
},
"Longitude": { "Longitude": {
"Longitude": "Boylam" "Longitude": "Boylam"
}, },
@@ -2345,6 +2378,9 @@
"Network Information": { "Network Information": {
"Network Information": "Ağ Bilgisi" "Network Information": "Ağ Bilgisi"
}, },
"Network Name (SSID)": {
"Network Name (SSID)": ""
},
"Network Speed Monitor": { "Network Speed Monitor": {
"Network Speed Monitor": "Ağ Hız Monitörü" "Network Speed Monitor": "Ağ Hız Monitörü"
}, },
@@ -2921,6 +2957,9 @@
"Reject Jobs": { "Reject Jobs": {
"Reject Jobs": "İşleri Reddet" "Reject Jobs": "İşleri Reddet"
}, },
"Release": {
"Release": ""
},
"Reload Plugin": { "Reload Plugin": {
"Reload Plugin": "Eklentiyi Yeniden Yükle" "Reload Plugin": "Eklentiyi Yeniden Yükle"
}, },
@@ -2930,6 +2969,9 @@
"Remove gaps and border when windows are maximized": { "Remove gaps and border when windows are maximized": {
"Remove gaps and border when windows are maximized": "Pencereler ekranı kapladığında boşlukları ve kenarlıkları kaldır" "Remove gaps and border when windows are maximized": "Pencereler ekranı kapladığında boşlukları ve kenarlıkları kaldır"
}, },
"Repeat": {
"Repeat": ""
},
"Report": { "Report": {
"Report": "Rapor" "Report": "Rapor"
}, },
@@ -4300,7 +4342,8 @@
"Modular widget bar": "", "Modular widget bar": "",
"Night mode & gamma": "", "Night mode & gamma": "",
"Per-screen config": "", "Per-screen config": "",
"Quick system toggles": "" "Quick system toggles": "",
"Security & privacy": ""
}, },
"greeter feature card title": { "greeter feature card title": {
"App Theming": "", "App Theming": "",
@@ -4317,6 +4360,9 @@
"greeter feature card title | greeter settings link": { "greeter feature card title | greeter settings link": {
"DankBar": "" "DankBar": ""
}, },
"greeter feature card title | lock screen notifications settings card": {
"Lock Screen": ""
},
"greeter finish button": { "greeter finish button": {
"Finish": "" "Finish": ""
}, },
@@ -4560,6 +4606,9 @@
"update dms for NM integration.": { "update dms for NM integration.": {
"update dms for NM integration.": "NM entegrasyonu için dms'yi güncelle" "update dms for NM integration.": "NM entegrasyonu için dms'yi güncelle"
}, },
"version requirement": {
"Requires %1": ""
},
"wallpaper directory file browser title": { "wallpaper directory file browser title": {
"Select Wallpaper Directory": "Duvar Kağıdı Dizinini Seç" "Select Wallpaper Directory": "Duvar Kağıdı Dizinini Seç"
}, },

View File

@@ -20,6 +20,12 @@
"%1 display(s)": { "%1 display(s)": {
"%1 display(s)": "%1 显示" "%1 display(s)": "%1 显示"
}, },
"%1 exists but is not included in config. Custom keybinds will not work until this is fixed.": {
"%1 exists but is not included in config. Custom keybinds will not work until this is fixed.": ""
},
"%1 is now included in config": {
"%1 is now included in config": ""
},
"%1 job(s)": { "%1 job(s)": {
"%1 job(s)": "%1 个任务" "%1 job(s)": "%1 个任务"
}, },
@@ -165,7 +171,7 @@
"Activate": "激活" "Activate": "激活"
}, },
"Activation": { "Activation": {
"Activation": "" "Activation": "激活"
}, },
"Active": { "Active": {
"Active": "活动" "Active": "活动"
@@ -237,7 +243,7 @@
"Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": "Alt+←/退格: 返回 • F1/I: 文件信息 • F10: 帮助 • Esc: 关闭" "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": "Alt+←/退格: 返回 • F1/I: 文件信息 • F10: 帮助 • Esc: 关闭"
}, },
"Always Active": { "Always Active": {
"Always Active": "" "Always Active": "总是激活"
}, },
"Always Show Percentage": { "Always Show Percentage": {
"Always Show Percentage": "始终显示百分比" "Always Show Percentage": "始终显示百分比"
@@ -372,7 +378,7 @@
"Auto-Clear After": "在此之后自动清除" "Auto-Clear After": "在此之后自动清除"
}, },
"Auto-Hide Timeout": { "Auto-Hide Timeout": {
"Auto-Hide Timeout": "" "Auto-Hide Timeout": "自动隐藏超时"
}, },
"Auto-close Niri overview when launching apps.": { "Auto-close Niri overview when launching apps.": {
"Auto-close Niri overview when launching apps.": "当启动程序时自动关闭Niri概览。" "Auto-close Niri overview when launching apps.": "当启动程序时自动关闭Niri概览。"
@@ -701,8 +707,11 @@
"Clear at Startup": { "Clear at Startup": {
"Clear at Startup": "启动时清除" "Clear at Startup": "启动时清除"
}, },
"Click 'Setup' to create %1 and add include to config.": {
"Click 'Setup' to create %1 and add include to config.": ""
},
"Click 'Setup' to create cursor config and add include to your compositor config.": { "Click 'Setup' to create cursor config and add include to your compositor config.": {
"Click 'Setup' to create cursor config and add include to your compositor config.": "" "Click 'Setup' to create cursor config and add include to your compositor config.": "点击设置以创建光标配置,并导入至合成器配置文件。"
}, },
"Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": { "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": {
"Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": "点击设置以创建 dms/binds.kdl并添加至config.kdl。" "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": "点击设置以创建 dms/binds.kdl并添加至config.kdl。"
@@ -713,6 +722,9 @@
"Click Import to add a .ovpn or .conf": { "Click Import to add a .ovpn or .conf": {
"Click Import to add a .ovpn or .conf": "点击导入添加 .ovpn 或 .conf 文件" "Click Import to add a .ovpn or .conf": "点击导入添加 .ovpn 或 .conf 文件"
}, },
"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 dms/binds.kdl": { "Click any shortcut to edit. Changes save to dms/binds.kdl": {
"Click any shortcut to edit. Changes save to dms/binds.kdl": "点击任意快捷方式进行编辑。更改将保存到 dms/binds.kdl" "Click any shortcut to edit. Changes save to dms/binds.kdl": "点击任意快捷方式进行编辑。更改将保存到 dms/binds.kdl"
}, },
@@ -848,6 +860,9 @@
"Connect": { "Connect": {
"Connect": "连接" "Connect": "连接"
}, },
"Connect to Hidden Network": {
"Connect to Hidden Network": ""
},
"Connect to VPN": { "Connect to VPN": {
"Connect to VPN": "连接到 VPN" "Connect to VPN": "连接到 VPN"
}, },
@@ -891,7 +906,7 @@
"Copied!": "复制成功!" "Copied!": "复制成功!"
}, },
"Copy": { "Copy": {
"Copy": "" "Copy": "复制"
}, },
"Copy PID": { "Copy PID": {
"Copy PID": "复制进程ID" "Copy PID": "复制进程ID"
@@ -948,16 +963,16 @@
"Current: %1": "当前:%1" "Current: %1": "当前:%1"
}, },
"Cursor Config Not Configured": { "Cursor Config Not Configured": {
"Cursor Config Not Configured": "" "Cursor Config Not Configured": "光标未配置"
}, },
"Cursor Include Missing": { "Cursor Include Missing": {
"Cursor Include Missing": "" "Cursor Include Missing": "未找到光标导入配置"
}, },
"Cursor Size": { "Cursor Size": {
"Cursor Size": "" "Cursor Size": "光标尺寸"
}, },
"Cursor Theme": { "Cursor Theme": {
"Cursor Theme": "" "Cursor Theme": "光标主题"
}, },
"Custom": { "Custom": {
"Custom": "自定义" "Custom": "自定义"
@@ -1403,6 +1418,9 @@
"Enter launch prefix (e.g., 'uwsm-app')": { "Enter launch prefix (e.g., 'uwsm-app')": {
"Enter launch prefix (e.g., 'uwsm-app')": "输入启动前缀(例如 uwsm-app" "Enter launch prefix (e.g., 'uwsm-app')": "输入启动前缀(例如 uwsm-app"
}, },
"Enter network name and password": {
"Enter network name and password": ""
},
"Enter passkey for ": { "Enter passkey for ": {
"Enter passkey for ": "输入密钥 " "Enter passkey for ": "输入密钥 "
}, },
@@ -1634,6 +1652,9 @@
"Fixing...": { "Fixing...": {
"Fixing...": "正在修复..." "Fixing...": "正在修复..."
}, },
"Flags": {
"Flags": ""
},
"Flipped": { "Flipped": {
"Flipped": "翻转" "Flipped": "翻转"
}, },
@@ -1796,26 +1817,32 @@
"Hibernate": { "Hibernate": {
"Hibernate": "休眠" "Hibernate": "休眠"
}, },
"Hidden": {
"Hidden": ""
},
"Hidden Network": {
"Hidden Network": ""
},
"Hide Delay": { "Hide Delay": {
"Hide Delay": "隐藏延迟" "Hide Delay": "隐藏延迟"
}, },
"Hide When Typing": { "Hide When Typing": {
"Hide When Typing": "" "Hide When Typing": "打字时隐藏"
}, },
"Hide When Windows Open": { "Hide When Windows Open": {
"Hide When Windows Open": "当窗口打开时隐藏" "Hide When Windows Open": "当窗口打开时隐藏"
}, },
"Hide cursor after inactivity (0 = disabled)": { "Hide cursor after inactivity (0 = disabled)": {
"Hide cursor after inactivity (0 = disabled)": "" "Hide cursor after inactivity (0 = disabled)": "在未激活超过此时间后隐藏光标0为禁用"
}, },
"Hide cursor when pressing keyboard keys": { "Hide cursor when pressing keyboard keys": {
"Hide cursor when pressing keyboard keys": "" "Hide cursor when pressing keyboard keys": "当按下键盘时隐藏光标"
}, },
"Hide cursor when using touch input": { "Hide cursor when using touch input": {
"Hide cursor when using touch input": "" "Hide cursor when using touch input": "当使用触摸板输入时隐藏光标"
}, },
"Hide on Touch": { "Hide on Touch": {
"Hide on Touch": "" "Hide on Touch": "当使用触摸板时隐藏光标"
}, },
"Hide the dock when not in use and reveal it when hovering near the dock area": { "Hide the dock when not in use and reveal it when hovering near the dock area": {
"Hide the dock when not in use and reveal it when hovering near the dock area": "在未使用时隐藏程序坞,鼠标悬停到程序坞区域时显示" "Hide the dock when not in use and reveal it when hovering near the dock area": "在未使用时隐藏程序坞,鼠标悬停到程序坞区域时显示"
@@ -1980,13 +2007,13 @@
"Key": "键" "Key": "键"
}, },
"Keybind Sources": { "Keybind Sources": {
"Keybind Sources": "" "Keybind Sources": "快捷键绑定源"
}, },
"Keybinds Search Settings": { "Keybinds Search Settings": {
"Keybinds Search Settings": "" "Keybinds Search Settings": "快捷键绑定搜索设置"
}, },
"Keybinds shown alongside regular search results": { "Keybinds shown alongside regular search results": {
"Keybinds shown alongside regular search results": "" "Keybinds shown alongside regular search results": "快捷键绑定与常规搜索结果并列显示"
}, },
"Keyboard Layout Name": { "Keyboard Layout Name": {
"Keyboard Layout Name": "键盘布局名称" "Keyboard Layout Name": "键盘布局名称"
@@ -2111,6 +2138,9 @@
"Lock fade grace period": { "Lock fade grace period": {
"Lock fade grace period": "锁定淡出时间" "Lock fade grace period": "锁定淡出时间"
}, },
"Locked": {
"Locked": ""
},
"Log Out": { "Log Out": {
"Log Out": "注销" "Log Out": "注销"
}, },
@@ -2120,6 +2150,9 @@
"Long Text": { "Long Text": {
"Long Text": "长文本" "Long Text": "长文本"
}, },
"Long press": {
"Long press": ""
},
"Longitude": { "Longitude": {
"Longitude": "经度" "Longitude": "经度"
}, },
@@ -2307,10 +2340,10 @@
"Mount": "挂载" "Mount": "挂载"
}, },
"Mouse pointer appearance": { "Mouse pointer appearance": {
"Mouse pointer appearance": "" "Mouse pointer appearance": "鼠标指针外观"
}, },
"Mouse pointer size in pixels": { "Mouse pointer size in pixels": {
"Mouse pointer size in pixels": "" "Mouse pointer size in pixels": "鼠标指针的像素尺寸"
}, },
"Move Widget": { "Move Widget": {
"Move Widget": "移动部件" "Move Widget": "移动部件"
@@ -2345,6 +2378,9 @@
"Network Information": { "Network Information": {
"Network Information": "网络信息" "Network Information": "网络信息"
}, },
"Network Name (SSID)": {
"Network Name (SSID)": ""
},
"Network Speed Monitor": { "Network Speed Monitor": {
"Network Speed Monitor": "实时网速显示" "Network Speed Monitor": "实时网速显示"
}, },
@@ -2921,6 +2957,9 @@
"Reject Jobs": { "Reject Jobs": {
"Reject Jobs": "拒绝任务" "Reject Jobs": "拒绝任务"
}, },
"Release": {
"Release": ""
},
"Reload Plugin": { "Reload Plugin": {
"Reload Plugin": "重载插件" "Reload Plugin": "重载插件"
}, },
@@ -2930,6 +2969,9 @@
"Remove gaps and border when windows are maximized": { "Remove gaps and border when windows are maximized": {
"Remove gaps and border when windows are maximized": "当窗口最大化时移除间距和边框" "Remove gaps and border when windows are maximized": "当窗口最大化时移除间距和边框"
}, },
"Repeat": {
"Repeat": ""
},
"Report": { "Report": {
"Report": "报告" "Report": "报告"
}, },
@@ -3096,7 +3138,7 @@
"Scrolling": "滚动" "Scrolling": "滚动"
}, },
"Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": { "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": {
"Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "" "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "通过按键组合、描述或动作名称搜索。\\n\\n默认动作会将快捷键复制到剪贴板。\\n按下右键或右箭头会固定常用快捷键——未处于搜索时它们会出现在顶部。"
}, },
"Search file contents": { "Search file contents": {
"Search file contents": "检索文件内容" "Search file contents": "检索文件内容"
@@ -3111,7 +3153,7 @@
"Search keybinds...": "搜索按键绑定..." "Search keybinds...": "搜索按键绑定..."
}, },
"Search keyboard shortcuts from your compositor and applications": { "Search keyboard shortcuts from your compositor and applications": {
"Search keyboard shortcuts from your compositor and applications": "" "Search keyboard shortcuts from your compositor and applications": "从合成器与应用中搜索键盘快捷键"
}, },
"Search plugins...": { "Search plugins...": {
"Search plugins...": "搜索插件中..." "Search plugins...": "搜索插件中..."
@@ -3156,7 +3198,7 @@
"Select an image file...": "选择一张图片..." "Select an image file...": "选择一张图片..."
}, },
"Select at least one provider": { "Select at least one provider": {
"Select at least one provider": "" "Select at least one provider": "至少选择一个提供源"
}, },
"Select device...": { "Select device...": {
"Select device...": "选择设备..." "Select device...": "选择设备..."
@@ -3183,7 +3225,7 @@
"Select the palette algorithm used for wallpaper-based colors": "选择从壁纸取色的配色方案" "Select the palette algorithm used for wallpaper-based colors": "选择从壁纸取色的配色方案"
}, },
"Select which keybind providers to include": { "Select which keybind providers to include": {
"Select which keybind providers to include": "" "Select which keybind providers to include": "选择快捷键绑定提供源以导入"
}, },
"Select which transitions to include in randomization": { "Select which transitions to include in randomization": {
"Select which transitions to include in randomization": "选择在随机轮换中使用的过渡效果" "Select which transitions to include in randomization": "选择在随机轮换中使用的过渡效果"
@@ -3363,7 +3405,7 @@
"Show on Overview": "概览中显示" "Show on Overview": "概览中显示"
}, },
"Show on Overview Only": { "Show on Overview Only": {
"Show on Overview Only": "" "Show on Overview Only": "仅在概览中显示"
}, },
"Show on all connected displays": { "Show on all connected displays": {
"Show on all connected displays": "在所有已连接的显示器上显示" "Show on all connected displays": "在所有已连接的显示器上显示"
@@ -3756,10 +3798,10 @@
"Transparency": "透明度" "Transparency": "透明度"
}, },
"Trigger": { "Trigger": {
"Trigger": "" "Trigger": "触发"
}, },
"Trigger Prefix": { "Trigger Prefix": {
"Trigger Prefix": "" "Trigger Prefix": "触发前缀"
}, },
"Turn off monitors after": { "Turn off monitors after": {
"Turn off monitors after": "在此时间后关闭显示器" "Turn off monitors after": "在此时间后关闭显示器"
@@ -3768,7 +3810,7 @@
"Type": "类型" "Type": "类型"
}, },
"Type this prefix to search keybinds": { "Type this prefix to search keybinds": {
"Type this prefix to search keybinds": "" "Type this prefix to search keybinds": "键入此前缀以搜索快捷键绑定"
}, },
"Typography": { "Typography": {
"Typography": "排版" "Typography": "排版"
@@ -3798,7 +3840,7 @@
"Unknown Network": "未知网络" "Unknown Network": "未知网络"
}, },
"Unpin": { "Unpin": {
"Unpin": "" "Unpin": "解除固定"
}, },
"Unpin from Dock": { "Unpin from Dock": {
"Unpin from Dock": "从程序坞取消固定" "Unpin from Dock": "从程序坞取消固定"
@@ -3822,7 +3864,7 @@
"Update Plugin": "更新插件" "Update Plugin": "更新插件"
}, },
"Usage Tips": { "Usage Tips": {
"Usage Tips": "" "Usage Tips": "使用提示"
}, },
"Use 24-hour time format instead of 12-hour AM/PM": { "Use 24-hour time format instead of 12-hour AM/PM": {
"Use 24-hour time format instead of 12-hour AM/PM": "改用24小时制显示时间" "Use 24-hour time format instead of 12-hour AM/PM": "改用24小时制显示时间"
@@ -3879,7 +3921,7 @@
"Use sound theme from system settings": "使用系统设置中的声音主题" "Use sound theme from system settings": "使用系统设置中的声音主题"
}, },
"Use trigger prefix to activate": { "Use trigger prefix to activate": {
"Use trigger prefix to activate": "" "Use trigger prefix to activate": "使用触发前缀以激活"
}, },
"Use%": { "Use%": {
"Use%": "使用%" "Use%": "使用%"
@@ -4163,7 +4205,7 @@
"by %1": "%1" "by %1": "%1"
}, },
"bar shadow settings card": { "bar shadow settings card": {
"Shadow": "" "Shadow": "阴影"
}, },
"browse themes button | theme browser header | theme browser window title": { "browse themes button | theme browser header | theme browser window title": {
"Browse Themes": "浏览主题" "Browse Themes": "浏览主题"
@@ -4199,7 +4241,7 @@
"dms/binds.kdl is now included in config.kdl": "dms/binds.kdl 现已包含在 config.kdl 中" "dms/binds.kdl is now included in config.kdl": "dms/binds.kdl 现已包含在 config.kdl 中"
}, },
"dms/cursor config exists but is not included. Cursor settings won't apply.": { "dms/cursor config exists but is not included. Cursor settings won't apply.": {
"dms/cursor config exists but is not included. Cursor settings won't apply.": "" "dms/cursor config exists but is not included. Cursor settings won't apply.": "已找到dms/cursor的配置文件但并未导入。光标设置将不会生效。"
}, },
"dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": { "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": {
"dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": "dms/输出配置存在,但不包含在你的合成器配置里。显示更改不会保留。" "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": "dms/输出配置存在,但不包含在你的合成器配置里。显示更改不会保留。"
@@ -4300,7 +4342,8 @@
"Modular widget bar": "模块化部件状态栏", "Modular widget bar": "模块化部件状态栏",
"Night mode & gamma": "夜间模式与伽玛", "Night mode & gamma": "夜间模式与伽玛",
"Per-screen config": "按屏幕区分设置", "Per-screen config": "按屏幕区分设置",
"Quick system toggles": "快速系统切换" "Quick system toggles": "快速系统切换",
"Security & privacy": ""
}, },
"greeter feature card title": { "greeter feature card title": {
"App Theming": "应用主题", "App Theming": "应用主题",
@@ -4317,6 +4360,9 @@
"greeter feature card title | greeter settings link": { "greeter feature card title | greeter settings link": {
"DankBar": "DankBar" "DankBar": "DankBar"
}, },
"greeter feature card title | lock screen notifications settings card": {
"Lock Screen": ""
},
"greeter finish button": { "greeter finish button": {
"Finish": "完成" "Finish": "完成"
}, },
@@ -4518,11 +4564,11 @@
"Widgets": "部件" "Widgets": "部件"
}, },
"shadow color option": { "shadow color option": {
"Surface": "", "Surface": "表面",
"Text": "" "Text": "文本"
}, },
"shadow intensity slider": { "shadow intensity slider": {
"Intensity": "" "Intensity": "强度"
}, },
"source code link": { "source code link": {
"source": "源" "source": "源"
@@ -4560,6 +4606,9 @@
"update dms for NM integration.": { "update dms for NM integration.": {
"update dms for NM integration.": "更新 DMS 以集成 NM" "update dms for NM integration.": "更新 DMS 以集成 NM"
}, },
"version requirement": {
"Requires %1": ""
},
"wallpaper directory file browser title": { "wallpaper directory file browser title": {
"Select Wallpaper Directory": "选择壁纸位置" "Select Wallpaper Directory": "选择壁纸位置"
}, },

View File

@@ -20,11 +20,17 @@
"%1 display(s)": { "%1 display(s)": {
"%1 display(s)": "%1 個螢幕" "%1 display(s)": "%1 個螢幕"
}, },
"%1 exists but is not included in config. Custom keybinds will not work until this is fixed.": {
"%1 exists but is not included in config. Custom keybinds will not work until this is fixed.": ""
},
"%1 is now included in config": {
"%1 is now included in config": ""
},
"%1 job(s)": { "%1 job(s)": {
"%1 job(s)": "%1 個工作" "%1 job(s)": "%1 個工作"
}, },
"%1 notifications": { "%1 notifications": {
"%1 notifications": "" "%1 notifications": "%1 則通知"
}, },
"%1 printer(s)": { "%1 printer(s)": {
"%1 printer(s)": "%1 台印表機" "%1 printer(s)": "%1 台印表機"
@@ -42,7 +48,7 @@
"(Unnamed)": "(未命名)" "(Unnamed)": "(未命名)"
}, },
"+ %1 more": { "+ %1 more": {
"+ %1 more": "" "+ %1 more": "+ %1 個"
}, },
"0 = square corners": { "0 = square corners": {
"0 = square corners": "0 = 直角" "0 = square corners": "0 = 直角"
@@ -57,7 +63,7 @@
"1 minute": "1 分鐘" "1 minute": "1 分鐘"
}, },
"1 notification": { "1 notification": {
"1 notification": "" "1 notification": "1 則通知"
}, },
"1 second": { "1 second": {
"1 second": "1 秒" "1 second": "1 秒"
@@ -138,7 +144,7 @@
"About": "關於" "About": "關於"
}, },
"Accent Color": { "Accent Color": {
"Accent Color": "" "Accent Color": "強調色"
}, },
"Accept Jobs": { "Accept Jobs": {
"Accept Jobs": "接受工作" "Accept Jobs": "接受工作"
@@ -165,7 +171,7 @@
"Activate": "啟用" "Activate": "啟用"
}, },
"Activation": { "Activation": {
"Activation": "" "Activation": "啟用"
}, },
"Active": { "Active": {
"Active": "啟用" "Active": "啟用"
@@ -237,7 +243,7 @@
"Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": "Alt+←/Backspace: 返回 • F1/I: 檔案資訊 • F10: 幫助 • Esc: 關閉" "Alt+←/Backspace: Back • F1/I: File Info • F10: Help • Esc: Close": "Alt+←/Backspace: 返回 • F1/I: 檔案資訊 • F10: 幫助 • Esc: 關閉"
}, },
"Always Active": { "Always Active": {
"Always Active": "" "Always Active": "總是啟用"
}, },
"Always Show Percentage": { "Always Show Percentage": {
"Always Show Percentage": "始終顯示百分比" "Always Show Percentage": "始終顯示百分比"
@@ -372,7 +378,7 @@
"Auto-Clear After": "自動清除於" "Auto-Clear After": "自動清除於"
}, },
"Auto-Hide Timeout": { "Auto-Hide Timeout": {
"Auto-Hide Timeout": "" "Auto-Hide Timeout": "自動隱藏延遲"
}, },
"Auto-close Niri overview when launching apps.": { "Auto-close Niri overview when launching apps.": {
"Auto-close Niri overview when launching apps.": "啟動應用程式時自動關閉 Niri 總覽。" "Auto-close Niri overview when launching apps.": "啟動應用程式時自動關閉 Niri 總覽。"
@@ -435,7 +441,7 @@
"Available Screens (%1)": "可用螢幕 (%1)" "Available Screens (%1)": "可用螢幕 (%1)"
}, },
"Available in Detailed and Forecast view modes": { "Available in Detailed and Forecast view modes": {
"Available in Detailed and Forecast view modes": "" "Available in Detailed and Forecast view modes": "可於詳細和預報檢視模式中顯示"
}, },
"BSSID": { "BSSID": {
"BSSID": "BSSID" "BSSID": "BSSID"
@@ -525,7 +531,7 @@
"Border Opacity": "邊框不透明度" "Border Opacity": "邊框不透明度"
}, },
"Border Size": { "Border Size": {
"Border Size": "" "Border Size": "邊框大小"
}, },
"Border Thickness": { "Border Thickness": {
"Border Thickness": "邊框厚度" "Border Thickness": "邊框厚度"
@@ -654,7 +660,7 @@
"Choose colors from palette": "從調色盤選擇顏色" "Choose colors from palette": "從調色盤選擇顏色"
}, },
"Choose how the weather widget is displayed": { "Choose how the weather widget is displayed": {
"Choose how the weather widget is displayed": "" "Choose how the weather widget is displayed": "選擇天氣小工具的顯示方式"
}, },
"Choose icon": { "Choose icon": {
"Choose icon": "選擇圖示" "Choose icon": "選擇圖示"
@@ -701,8 +707,11 @@
"Clear at Startup": { "Clear at Startup": {
"Clear at Startup": "啟動時清除" "Clear at Startup": "啟動時清除"
}, },
"Click 'Setup' to create %1 and add include to config.": {
"Click 'Setup' to create %1 and add include to config.": ""
},
"Click 'Setup' to create cursor config and add include to your compositor config.": { "Click 'Setup' to create cursor config and add include to your compositor config.": {
"Click 'Setup' to create cursor config and add include to your compositor config.": "" "Click 'Setup' to create cursor config and add include to your compositor config.": "點擊「設定」以建立游標設定檔,並將其包含至您的合成器設定中。"
}, },
"Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": { "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": {
"Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": "按一下「設定」以建立 dms/binds.kdl 並將其包含至 config.kdl 中。" "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.": "按一下「設定」以建立 dms/binds.kdl 並將其包含至 config.kdl 中。"
@@ -713,6 +722,9 @@
"Click Import to add a .ovpn or .conf": { "Click Import to add a .ovpn or .conf": {
"Click Import to add a .ovpn or .conf": "點擊匯入以新增 .ovpn 或 .conf" "Click Import to add a .ovpn or .conf": "點擊匯入以新增 .ovpn 或 .conf"
}, },
"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 dms/binds.kdl": { "Click any shortcut to edit. Changes save to dms/binds.kdl": {
"Click any shortcut to edit. Changes save to dms/binds.kdl": "點擊任何快捷方式進行編輯。更改將保存到 dms/binds.kdl" "Click any shortcut to edit. Changes save to dms/binds.kdl": "點擊任何快捷方式進行編輯。更改將保存到 dms/binds.kdl"
}, },
@@ -789,7 +801,7 @@
"Communication": "通訊" "Communication": "通訊"
}, },
"Compact": { "Compact": {
"Compact": "" "Compact": "精簡"
}, },
"Compact Mode": { "Compact Mode": {
"Compact Mode": "緊湊模式" "Compact Mode": "緊湊模式"
@@ -848,6 +860,9 @@
"Connect": { "Connect": {
"Connect": "連線" "Connect": "連線"
}, },
"Connect to Hidden Network": {
"Connect to Hidden Network": ""
},
"Connect to VPN": { "Connect to VPN": {
"Connect to VPN": "連線到 VPN" "Connect to VPN": "連線到 VPN"
}, },
@@ -891,7 +906,7 @@
"Copied!": "已複製!" "Copied!": "已複製!"
}, },
"Copy": { "Copy": {
"Copy": "" "Copy": "複製"
}, },
"Copy PID": { "Copy PID": {
"Copy PID": "複製 PID" "Copy PID": "複製 PID"
@@ -948,22 +963,22 @@
"Current: %1": "目前:%1" "Current: %1": "目前:%1"
}, },
"Cursor Config Not Configured": { "Cursor Config Not Configured": {
"Cursor Config Not Configured": "" "Cursor Config Not Configured": "游標設定檔未設定"
}, },
"Cursor Include Missing": { "Cursor Include Missing": {
"Cursor Include Missing": "" "Cursor Include Missing": "游標包含檔遺失"
}, },
"Cursor Size": { "Cursor Size": {
"Cursor Size": "" "Cursor Size": "游標大小"
}, },
"Cursor Theme": { "Cursor Theme": {
"Cursor Theme": "" "Cursor Theme": "游標主題"
}, },
"Custom": { "Custom": {
"Custom": "自訂" "Custom": "自訂"
}, },
"Custom Color": { "Custom Color": {
"Custom Color": "" "Custom Color": "自訂顏色"
}, },
"Custom Duration": { "Custom Duration": {
"Custom Duration": "自訂持續時間" "Custom Duration": "自訂持續時間"
@@ -1128,7 +1143,7 @@
"Desktop Clock": "桌面時鐘" "Desktop Clock": "桌面時鐘"
}, },
"Detailed": { "Detailed": {
"Detailed": "" "Detailed": "詳細"
}, },
"Development": { "Development": {
"Development": "開發" "Development": "開發"
@@ -1218,7 +1233,7 @@
"Display currently focused application title": "顯示目前焦點應用程式的標題" "Display currently focused application title": "顯示目前焦點應用程式的標題"
}, },
"Display hourly weather predictions": { "Display hourly weather predictions": {
"Display hourly weather predictions": "" "Display hourly weather predictions": "顯示每小時天氣預報"
}, },
"Display only workspaces that contain windows": { "Display only workspaces that contain windows": {
"Display only workspaces that contain windows": "只顯示包含視窗的工作區" "Display only workspaces that contain windows": "只顯示包含視窗的工作區"
@@ -1403,6 +1418,9 @@
"Enter launch prefix (e.g., 'uwsm-app')": { "Enter launch prefix (e.g., 'uwsm-app')": {
"Enter launch prefix (e.g., 'uwsm-app')": "輸入啟動前綴例如「uwsm-app」" "Enter launch prefix (e.g., 'uwsm-app')": "輸入啟動前綴例如「uwsm-app」"
}, },
"Enter network name and password": {
"Enter network name and password": ""
},
"Enter passkey for ": { "Enter passkey for ": {
"Enter passkey for ": "請輸入密碼給 " "Enter passkey for ": "請輸入密碼給 "
}, },
@@ -1596,7 +1614,7 @@
"Failed to write temp file for validation": "寫入驗證的暫存檔案失敗" "Failed to write temp file for validation": "寫入驗證的暫存檔案失敗"
}, },
"Feels": { "Feels": {
"Feels": "" "Feels": "體感"
}, },
"Feels Like": { "Feels Like": {
"Feels Like": "體感溫度" "Feels Like": "體感溫度"
@@ -1634,6 +1652,9 @@
"Fixing...": { "Fixing...": {
"Fixing...": "正在修復..." "Fixing...": "正在修復..."
}, },
"Flags": {
"Flags": ""
},
"Flipped": { "Flipped": {
"Flipped": "翻轉" "Flipped": "翻轉"
}, },
@@ -1680,10 +1701,10 @@
"Force terminal applications to always use dark color schemes": "強制終端應用程式始終使用深色配色方案" "Force terminal applications to always use dark color schemes": "強制終端應用程式始終使用深色配色方案"
}, },
"Forecast": { "Forecast": {
"Forecast": "" "Forecast": "預報"
}, },
"Forecast Days": { "Forecast Days": {
"Forecast Days": "" "Forecast Days": "預報天數"
}, },
"Forecast Not Available": { "Forecast Not Available": {
"Forecast Not Available": "預報不可用" "Forecast Not Available": "預報不可用"
@@ -1796,26 +1817,32 @@
"Hibernate": { "Hibernate": {
"Hibernate": "休眠" "Hibernate": "休眠"
}, },
"Hidden": {
"Hidden": ""
},
"Hidden Network": {
"Hidden Network": ""
},
"Hide Delay": { "Hide Delay": {
"Hide Delay": "隱藏延遲" "Hide Delay": "隱藏延遲"
}, },
"Hide When Typing": { "Hide When Typing": {
"Hide When Typing": "" "Hide When Typing": "打字時隱藏"
}, },
"Hide When Windows Open": { "Hide When Windows Open": {
"Hide When Windows Open": "視窗開啟時隱藏" "Hide When Windows Open": "視窗開啟時隱藏"
}, },
"Hide cursor after inactivity (0 = disabled)": { "Hide cursor after inactivity (0 = disabled)": {
"Hide cursor after inactivity (0 = disabled)": "" "Hide cursor after inactivity (0 = disabled)": "閒置後隱藏游標 (0 = 停用)"
}, },
"Hide cursor when pressing keyboard keys": { "Hide cursor when pressing keyboard keys": {
"Hide cursor when pressing keyboard keys": "" "Hide cursor when pressing keyboard keys": "按下鍵盤按鍵時隱藏游標"
}, },
"Hide cursor when using touch input": { "Hide cursor when using touch input": {
"Hide cursor when using touch input": "" "Hide cursor when using touch input": "使用觸控輸入時隱藏游標"
}, },
"Hide on Touch": { "Hide on Touch": {
"Hide on Touch": "" "Hide on Touch": "觸控時隱藏"
}, },
"Hide the dock when not in use and reveal it when hovering near the dock area": { "Hide the dock when not in use and reveal it when hovering near the dock area": {
"Hide the dock when not in use and reveal it when hovering near the dock area": "不使用時隱藏 Dock並在 Dock 區域附近懸停時顯示 Dock" "Hide the dock when not in use and reveal it when hovering near the dock area": "不使用時隱藏 Dock並在 Dock 區域附近懸停時顯示 Dock"
@@ -1854,7 +1881,7 @@
"Hourly Forecast": "每小時預報" "Hourly Forecast": "每小時預報"
}, },
"Hourly Forecast Count": { "Hourly Forecast Count": {
"Hourly Forecast Count": "" "Hourly Forecast Count": "每小時預報數量"
}, },
"How often to change wallpaper": { "How often to change wallpaper": {
"How often to change wallpaper": "多久更換一次桌布" "How often to change wallpaper": "多久更換一次桌布"
@@ -1863,7 +1890,7 @@
"Humidity": "濕度" "Humidity": "濕度"
}, },
"Hyprland Layout Overrides": { "Hyprland Layout Overrides": {
"Hyprland Layout Overrides": "" "Hyprland Layout Overrides": "Hyprland 版面配置覆寫"
}, },
"I Understand": { "I Understand": {
"I Understand": "我了解" "I Understand": "我了解"
@@ -1980,13 +2007,13 @@
"Key": "按鍵" "Key": "按鍵"
}, },
"Keybind Sources": { "Keybind Sources": {
"Keybind Sources": "" "Keybind Sources": "快捷鍵來源"
}, },
"Keybinds Search Settings": { "Keybinds Search Settings": {
"Keybinds Search Settings": "" "Keybinds Search Settings": "快捷鍵搜尋設定"
}, },
"Keybinds shown alongside regular search results": { "Keybinds shown alongside regular search results": {
"Keybinds shown alongside regular search results": "" "Keybinds shown alongside regular search results": "快捷鍵與一般搜尋結果一同顯示"
}, },
"Keyboard Layout Name": { "Keyboard Layout Name": {
"Keyboard Layout Name": "鍵盤布局名稱" "Keyboard Layout Name": "鍵盤布局名稱"
@@ -2111,6 +2138,9 @@
"Lock fade grace period": { "Lock fade grace period": {
"Lock fade grace period": "鎖定淡出緩衝期" "Lock fade grace period": "鎖定淡出緩衝期"
}, },
"Locked": {
"Locked": ""
},
"Log Out": { "Log Out": {
"Log Out": "登出" "Log Out": "登出"
}, },
@@ -2120,6 +2150,9 @@
"Long Text": { "Long Text": {
"Long Text": "長文字" "Long Text": "長文字"
}, },
"Long press": {
"Long press": ""
},
"Longitude": { "Longitude": {
"Longitude": "經度" "Longitude": "經度"
}, },
@@ -2142,7 +2175,7 @@
"Management": "管理" "Management": "管理"
}, },
"MangoWC Layout Overrides": { "MangoWC Layout Overrides": {
"MangoWC Layout Overrides": "" "MangoWC Layout Overrides": "MangoWC 版面配置覆寫"
}, },
"Manual Coordinates": { "Manual Coordinates": {
"Manual Coordinates": "手動設定座標" "Manual Coordinates": "手動設定座標"
@@ -2307,10 +2340,10 @@
"Mount": "掛載" "Mount": "掛載"
}, },
"Mouse pointer appearance": { "Mouse pointer appearance": {
"Mouse pointer appearance": "" "Mouse pointer appearance": "滑鼠指標外觀"
}, },
"Mouse pointer size in pixels": { "Mouse pointer size in pixels": {
"Mouse pointer size in pixels": "" "Mouse pointer size in pixels": "滑鼠指標像素大小"
}, },
"Move Widget": { "Move Widget": {
"Move Widget": "移動小工具" "Move Widget": "移動小工具"
@@ -2345,6 +2378,9 @@
"Network Information": { "Network Information": {
"Network Information": "網路資訊" "Network Information": "網路資訊"
}, },
"Network Name (SSID)": {
"Network Name (SSID)": ""
},
"Network Speed Monitor": { "Network Speed Monitor": {
"Network Speed Monitor": "網速監視" "Network Speed Monitor": "網速監視"
}, },
@@ -2415,7 +2451,7 @@
"No VPN profiles": "沒有 VPN 設定檔" "No VPN profiles": "沒有 VPN 設定檔"
}, },
"No Weather Data": { "No Weather Data": {
"No Weather Data": "" "No Weather Data": "無天氣資料"
}, },
"No Weather Data Available": { "No Weather Data Available": {
"No Weather Data Available": "沒有氣象數據" "No Weather Data Available": "沒有氣象數據"
@@ -2508,7 +2544,7 @@
"Not connected": "未連接" "Not connected": "未連接"
}, },
"Not detected": { "Not detected": {
"Not detected": "" "Not detected": "未偵測到"
}, },
"Note: this only changes the percentage, it does not actually limit charging.": { "Note: this only changes the percentage, it does not actually limit charging.": {
"Note: this only changes the percentage, it does not actually limit charging.": "注意:這只會變更百分比顯示,並不會實際限制充電。" "Note: this only changes the percentage, it does not actually limit charging.": "注意:這只會變更百分比顯示,並不會實際限制充電。"
@@ -2625,7 +2661,7 @@
"Override": "覆蓋" "Override": "覆蓋"
}, },
"Override Border Size": { "Override Border Size": {
"Override Border Size": "" "Override Border Size": "覆寫邊框大小"
}, },
"Override Corner Radius": { "Override Corner Radius": {
"Override Corner Radius": "覆寫圓角半徑" "Override Corner Radius": "覆寫圓角半徑"
@@ -2802,7 +2838,7 @@
"Power source": "電源" "Power source": "電源"
}, },
"Precip": { "Precip": {
"Precip": "" "Precip": "降水"
}, },
"Precipitation Chance": { "Precipitation Chance": {
"Precipitation Chance": "降水機率" "Precipitation Chance": "降水機率"
@@ -2921,6 +2957,9 @@
"Reject Jobs": { "Reject Jobs": {
"Reject Jobs": "拒絕工作" "Reject Jobs": "拒絕工作"
}, },
"Release": {
"Release": ""
},
"Reload Plugin": { "Reload Plugin": {
"Reload Plugin": "重新載入插件" "Reload Plugin": "重新載入插件"
}, },
@@ -2930,6 +2969,9 @@
"Remove gaps and border when windows are maximized": { "Remove gaps and border when windows are maximized": {
"Remove gaps and border when windows are maximized": "視窗最大化時移除間距與邊框" "Remove gaps and border when windows are maximized": "視窗最大化時移除間距與邊框"
}, },
"Repeat": {
"Repeat": ""
},
"Report": { "Report": {
"Report": "報告" "Report": "報告"
}, },
@@ -3006,10 +3048,10 @@
"Rounded corners for windows": "視窗圓角" "Rounded corners for windows": "視窗圓角"
}, },
"Rounded corners for windows (border_radius)": { "Rounded corners for windows (border_radius)": {
"Rounded corners for windows (border_radius)": "" "Rounded corners for windows (border_radius)": "視窗圓角 (border_radius)"
}, },
"Rounded corners for windows (decoration.rounding)": { "Rounded corners for windows (decoration.rounding)": {
"Rounded corners for windows (decoration.rounding)": "" "Rounded corners for windows (decoration.rounding)": "視窗圓角 (decoration.rounding)"
}, },
"Run DMS Templates": { "Run DMS Templates": {
"Run DMS Templates": "執行 DMS 範本" "Run DMS Templates": "執行 DMS 範本"
@@ -3096,7 +3138,7 @@
"Scrolling": "滾動" "Scrolling": "滾動"
}, },
"Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": { "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": {
"Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "" "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "依按鍵組合、描述或動作名稱搜尋。\n\n預設動作會將快捷鍵複製到剪貼簿。\n右鍵點擊或按下右方向鍵可釘選常用快捷鍵 — 釘選後,它們會在未搜尋時顯示在頂部。"
}, },
"Search file contents": { "Search file contents": {
"Search file contents": "搜尋檔案內容" "Search file contents": "搜尋檔案內容"
@@ -3111,7 +3153,7 @@
"Search keybinds...": "搜尋按鍵綁定..." "Search keybinds...": "搜尋按鍵綁定..."
}, },
"Search keyboard shortcuts from your compositor and applications": { "Search keyboard shortcuts from your compositor and applications": {
"Search keyboard shortcuts from your compositor and applications": "" "Search keyboard shortcuts from your compositor and applications": "搜尋合成器與應用程式的鍵盤快捷鍵"
}, },
"Search plugins...": { "Search plugins...": {
"Search plugins...": "搜尋插件..." "Search plugins...": "搜尋插件..."
@@ -3156,7 +3198,7 @@
"Select an image file...": "選擇一張圖片..." "Select an image file...": "選擇一張圖片..."
}, },
"Select at least one provider": { "Select at least one provider": {
"Select at least one provider": "" "Select at least one provider": "請至少選擇一個提供者"
}, },
"Select device...": { "Select device...": {
"Select device...": "選擇裝置..." "Select device...": "選擇裝置..."
@@ -3183,7 +3225,7 @@
"Select the palette algorithm used for wallpaper-based colors": "請選擇調色板演算法,以桌布的顏色為基底。" "Select the palette algorithm used for wallpaper-based colors": "請選擇調色板演算法,以桌布的顏色為基底。"
}, },
"Select which keybind providers to include": { "Select which keybind providers to include": {
"Select which keybind providers to include": "" "Select which keybind providers to include": "選擇要包含哪些快捷鍵提供者"
}, },
"Select which transitions to include in randomization": { "Select which transitions to include in randomization": {
"Select which transitions to include in randomization": "選擇要包含在隨機中的轉換效果" "Select which transitions to include in randomization": "選擇要包含在隨機中的轉換效果"
@@ -3252,10 +3294,10 @@
"Show Dock": "顯示 Dock" "Show Dock": "顯示 Dock"
}, },
"Show Feels Like Temperature": { "Show Feels Like Temperature": {
"Show Feels Like Temperature": "" "Show Feels Like Temperature": "顯示體感溫度"
}, },
"Show Forecast": { "Show Forecast": {
"Show Forecast": "" "Show Forecast": "顯示預報"
}, },
"Show GPU Temperature": { "Show GPU Temperature": {
"Show GPU Temperature": "顯示 GPU 溫度" "Show GPU Temperature": "顯示 GPU 溫度"
@@ -3270,16 +3312,16 @@
"Show Hour Numbers": "顯示小時數字" "Show Hour Numbers": "顯示小時數字"
}, },
"Show Hourly Forecast": { "Show Hourly Forecast": {
"Show Hourly Forecast": "" "Show Hourly Forecast": "顯示每小時預報"
}, },
"Show Humidity": { "Show Humidity": {
"Show Humidity": "" "Show Humidity": "顯示濕度"
}, },
"Show Line Numbers": { "Show Line Numbers": {
"Show Line Numbers": "顯示行數" "Show Line Numbers": "顯示行數"
}, },
"Show Location": { "Show Location": {
"Show Location": "" "Show Location": "顯示位置"
}, },
"Show Lock": { "Show Lock": {
"Show Lock": "顯示鎖定" "Show Lock": "顯示鎖定"
@@ -3306,10 +3348,10 @@
"Show Power Off": "顯示關機" "Show Power Off": "顯示關機"
}, },
"Show Precipitation Probability": { "Show Precipitation Probability": {
"Show Precipitation Probability": "" "Show Precipitation Probability": "顯示降雨機率"
}, },
"Show Pressure": { "Show Pressure": {
"Show Pressure": "" "Show Pressure": "顯示氣壓"
}, },
"Show Reboot": { "Show Reboot": {
"Show Reboot": "顯示重新啟動" "Show Reboot": "顯示重新啟動"
@@ -3321,7 +3363,7 @@
"Show Seconds": "顯示秒數" "Show Seconds": "顯示秒數"
}, },
"Show Sunrise/Sunset": { "Show Sunrise/Sunset": {
"Show Sunrise/Sunset": "" "Show Sunrise/Sunset": "顯示日出/日落"
}, },
"Show Suspend": { "Show Suspend": {
"Show Suspend": "顯示睡眠" "Show Suspend": "顯示睡眠"
@@ -3330,13 +3372,13 @@
"Show Top Processes": "顯示最佔用程序" "Show Top Processes": "顯示最佔用程序"
}, },
"Show Weather Condition": { "Show Weather Condition": {
"Show Weather Condition": "" "Show Weather Condition": "顯示天氣狀況"
}, },
"Show Welcome": { "Show Welcome": {
"Show Welcome": "" "Show Welcome": "顯示歡迎畫面"
}, },
"Show Wind Speed": { "Show Wind Speed": {
"Show Wind Speed": "" "Show Wind Speed": "顯示風速"
}, },
"Show Workspace Apps": { "Show Workspace Apps": {
"Show Workspace Apps": "顯示工作區應用程式" "Show Workspace Apps": "顯示工作區應用程式"
@@ -3363,7 +3405,7 @@
"Show on Overview": "顯示在概覽畫面" "Show on Overview": "顯示在概覽畫面"
}, },
"Show on Overview Only": { "Show on Overview Only": {
"Show on Overview Only": "" "Show on Overview Only": "僅在總覽中顯示"
}, },
"Show on all connected displays": { "Show on all connected displays": {
"Show on all connected displays": "在所有連接的螢幕上顯示" "Show on all connected displays": "在所有連接的螢幕上顯示"
@@ -3471,10 +3513,10 @@
"Space between windows": "視窗間距" "Space between windows": "視窗間距"
}, },
"Space between windows (gappih/gappiv/gappoh/gappov)": { "Space between windows (gappih/gappiv/gappoh/gappov)": {
"Space between windows (gappih/gappiv/gappoh/gappov)": "" "Space between windows (gappih/gappiv/gappoh/gappov)": "視窗間距 (gappih/gappiv/gappoh/gappov)"
}, },
"Space between windows (gaps_in and gaps_out)": { "Space between windows (gaps_in and gaps_out)": {
"Space between windows (gaps_in and gaps_out)": "" "Space between windows (gaps_in and gaps_out)": "視窗間距 (gaps_in 和 gaps_out)"
}, },
"Spacer": { "Spacer": {
"Spacer": "空白間隔" "Spacer": "空白間隔"
@@ -3498,7 +3540,7 @@
"Stacked": "堆疊" "Stacked": "堆疊"
}, },
"Standard": { "Standard": {
"Standard": "" "Standard": "標準"
}, },
"Start": { "Start": {
"Start": "開始" "Start": "開始"
@@ -3723,7 +3765,7 @@
"Toner Low": "碳粉不足" "Toner Low": "碳粉不足"
}, },
"Tools": { "Tools": {
"Tools": "" "Tools": "工具"
}, },
"Top": { "Top": {
"Top": "上方" "Top": "上方"
@@ -3756,10 +3798,10 @@
"Transparency": "透明度" "Transparency": "透明度"
}, },
"Trigger": { "Trigger": {
"Trigger": "" "Trigger": "觸發"
}, },
"Trigger Prefix": { "Trigger Prefix": {
"Trigger Prefix": "" "Trigger Prefix": "觸發前綴"
}, },
"Turn off monitors after": { "Turn off monitors after": {
"Turn off monitors after": "關閉螢幕之後" "Turn off monitors after": "關閉螢幕之後"
@@ -3768,7 +3810,7 @@
"Type": "類型" "Type": "類型"
}, },
"Type this prefix to search keybinds": { "Type this prefix to search keybinds": {
"Type this prefix to search keybinds": "" "Type this prefix to search keybinds": "輸入此前綴以搜尋快捷鍵"
}, },
"Typography": { "Typography": {
"Typography": "字體排版" "Typography": "字體排版"
@@ -3798,7 +3840,7 @@
"Unknown Network": "未知網路" "Unknown Network": "未知網路"
}, },
"Unpin": { "Unpin": {
"Unpin": "" "Unpin": "取消釘選"
}, },
"Unpin from Dock": { "Unpin from Dock": {
"Unpin from Dock": "取消 Dock 釘選" "Unpin from Dock": "取消 Dock 釘選"
@@ -3822,7 +3864,7 @@
"Update Plugin": "更新插件" "Update Plugin": "更新插件"
}, },
"Usage Tips": { "Usage Tips": {
"Usage Tips": "" "Usage Tips": "使用提示"
}, },
"Use 24-hour time format instead of 12-hour AM/PM": { "Use 24-hour time format instead of 12-hour AM/PM": {
"Use 24-hour time format instead of 12-hour AM/PM": "使用 24 小時時間格式,而不是 12 小時 AM/PM" "Use 24-hour time format instead of 12-hour AM/PM": "使用 24 小時時間格式,而不是 12 小時 AM/PM"
@@ -3852,10 +3894,10 @@
"Use animated wave progress bars for media playback": "在媒體播放使用動畫波浪進度條" "Use animated wave progress bars for media playback": "在媒體播放使用動畫波浪進度條"
}, },
"Use custom border size": { "Use custom border size": {
"Use custom border size": "" "Use custom border size": "使用自訂邊框大小"
}, },
"Use custom border/focus-ring width": { "Use custom border/focus-ring width": {
"Use custom border/focus-ring width": "" "Use custom border/focus-ring width": "使用自訂邊框/焦點環寬度"
}, },
"Use custom command for update your system": { "Use custom command for update your system": {
"Use custom command for update your system": "使用自訂指令更新您的系統" "Use custom command for update your system": "使用自訂指令更新您的系統"
@@ -3867,7 +3909,7 @@
"Use custom window radius instead of theme radius": "使用自訂視窗圓角而非主題圓角" "Use custom window radius instead of theme radius": "使用自訂視窗圓角而非主題圓角"
}, },
"Use custom window rounding instead of theme radius": { "Use custom window rounding instead of theme radius": {
"Use custom window rounding instead of theme radius": "" "Use custom window rounding instead of theme radius": "使用自訂視窗圓角而非主題半徑"
}, },
"Use fingerprint reader for lock screen authentication (requires enrolled fingerprints)": { "Use fingerprint reader for lock screen authentication (requires enrolled fingerprints)": {
"Use fingerprint reader for lock screen authentication (requires enrolled fingerprints)": "使用指紋辨識器進行鎖定畫面身份驗證(需要註冊指紋)" "Use fingerprint reader for lock screen authentication (requires enrolled fingerprints)": "使用指紋辨識器進行鎖定畫面身份驗證(需要註冊指紋)"
@@ -3879,7 +3921,7 @@
"Use sound theme from system settings": "使用系統設定中的音效主題" "Use sound theme from system settings": "使用系統設定中的音效主題"
}, },
"Use trigger prefix to activate": { "Use trigger prefix to activate": {
"Use trigger prefix to activate": "" "Use trigger prefix to activate": "使用觸發前綴啟用"
}, },
"Use%": { "Use%": {
"Use%": "使用%" "Use%": "使用%"
@@ -3888,7 +3930,7 @@
"Used": "已使用" "Used": "已使用"
}, },
"Used when accent color is set to Custom": { "Used when accent color is set to Custom": {
"Used when accent color is set to Custom": "" "Used when accent color is set to Custom": "當強調色設為自訂時使用"
}, },
"User": { "User": {
"User": "使用者" "User": "使用者"
@@ -3966,7 +4008,7 @@
"Vibrant palette with playful saturation.": "色彩鮮明且飽和度活潑的調色板。" "Vibrant palette with playful saturation.": "色彩鮮明且飽和度活潑的調色板。"
}, },
"View Mode": { "View Mode": {
"View Mode": "" "View Mode": "檢視模式"
}, },
"Visibility": { "Visibility": {
"Visibility": "能見度" "Visibility": "能見度"
@@ -4085,13 +4127,13 @@
"Widget removed": "小工具已移除" "Widget removed": "小工具已移除"
}, },
"Width of window border (borderpx)": { "Width of window border (borderpx)": {
"Width of window border (borderpx)": "" "Width of window border (borderpx)": "視窗邊框寬度 (borderpx)"
}, },
"Width of window border (general.border_size)": { "Width of window border (general.border_size)": {
"Width of window border (general.border_size)": "" "Width of window border (general.border_size)": "視窗邊框寬度 (general.border_size)"
}, },
"Width of window border and focus ring": { "Width of window border and focus ring": {
"Width of window border and focus ring": "" "Width of window border and focus ring": "視窗邊框與焦點環寬度"
}, },
"Wind": { "Wind": {
"Wind": "風速" "Wind": "風速"
@@ -4109,7 +4151,7 @@
"Window Gaps (px)": "視窗間距 (像素)" "Window Gaps (px)": "視窗間距 (像素)"
}, },
"Window Rounding": { "Window Rounding": {
"Window Rounding": "" "Window Rounding": "視窗圓角"
}, },
"Workspace": { "Workspace": {
"Workspace": "工作區" "Workspace": "工作區"
@@ -4163,7 +4205,7 @@
"by %1": "作者:%1" "by %1": "作者:%1"
}, },
"bar shadow settings card": { "bar shadow settings card": {
"Shadow": "" "Shadow": "陰影"
}, },
"browse themes button | theme browser header | theme browser window title": { "browse themes button | theme browser header | theme browser window title": {
"Browse Themes": "瀏覽佈景主題" "Browse Themes": "瀏覽佈景主題"
@@ -4199,7 +4241,7 @@
"dms/binds.kdl is now included in config.kdl": "dms/binds.kdl 現已包含在 config.kdl 中" "dms/binds.kdl is now included in config.kdl": "dms/binds.kdl 現已包含在 config.kdl 中"
}, },
"dms/cursor config exists but is not included. Cursor settings won't apply.": { "dms/cursor config exists but is not included. Cursor settings won't apply.": {
"dms/cursor config exists but is not included. Cursor settings won't apply.": "" "dms/cursor config exists but is not included. Cursor settings won't apply.": "dms/cursor 設定存在但未被包含。游標設定將不會套用。"
}, },
"dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": { "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": {
"dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": "dms/outputs 組態存在,但未包含在您的合成器組態中。顯示變更將不會保留。" "dms/outputs config exists but is not included in your compositor config. Display changes won't persist.": "dms/outputs 組態存在,但未包含在您的合成器組態中。顯示變更將不會保留。"
@@ -4238,143 +4280,147 @@
"Material Design inspired color themes": "受 Material Design 啟發的色彩主題" "Material Design inspired color themes": "受 Material Design 啟發的色彩主題"
}, },
"greeter back button": { "greeter back button": {
"Back": "" "Back": "返回"
}, },
"greeter completion page subtitle": { "greeter completion page subtitle": {
"DankMaterialShell is ready to use": "" "DankMaterialShell is ready to use": "DankMaterialShell 已可使用"
}, },
"greeter completion page title": { "greeter completion page title": {
"You're All Set!": "" "You're All Set!": "一切就緒!"
}, },
"greeter configure keybinds link": { "greeter configure keybinds link": {
"Configure Keybinds": "" "Configure Keybinds": "設定按鍵綁定"
}, },
"greeter dankbar description": { "greeter dankbar description": {
"Widgets, layout, style": "" "Widgets, layout, style": "小工具、版面配置、樣式"
}, },
"greeter displays description": { "greeter displays description": {
"Resolution, position, scale": "" "Resolution, position, scale": "解析度、位置、比例"
}, },
"greeter dock description": { "greeter dock description": {
"Position, pinned apps": "" "Position, pinned apps": "位置、釘選的應用程式"
}, },
"greeter doctor page button": { "greeter doctor page button": {
"Run Again": "" "Run Again": "重新執行"
}, },
"greeter doctor page empty state": { "greeter doctor page empty state": {
"No checks passed": "", "No checks passed": "無檢查通過",
"No errors": "", "No errors": "無錯誤",
"No info items": "", "No info items": "無資訊項目",
"No warnings": "" "No warnings": "無警告"
}, },
"greeter doctor page error count": { "greeter doctor page error count": {
"%1 issue(s) found": "" "%1 issue(s) found": "%1 個問題"
}, },
"greeter doctor page loading text": { "greeter doctor page loading text": {
"Analyzing configuration...": "" "Analyzing configuration...": "正在分析設定..."
}, },
"greeter doctor page status card": { "greeter doctor page status card": {
"Errors": "", "Errors": "錯誤",
"Info": "", "Info": "資訊",
"OK": "", "OK": "確定",
"Warnings": "" "Warnings": "警告"
}, },
"greeter doctor page success": { "greeter doctor page success": {
"All checks passed": "" "All checks passed": "所有檢查皆通過"
}, },
"greeter doctor page title": { "greeter doctor page title": {
"System Check": "" "System Check": "系統檢查"
}, },
"greeter documentation link": { "greeter documentation link": {
"Docs": "" "Docs": "說明文件"
}, },
"greeter explore section header": { "greeter explore section header": {
"Explore": "" "Explore": "探索"
}, },
"greeter feature card description": { "greeter feature card description": {
"Background app icons": "", "Background app icons": "背景應用程式圖示",
"Colors from wallpaper": "", "Colors from wallpaper": "從桌布取色",
"Community themes": "", "Community themes": "社群主題",
"Extensible architecture": "", "Extensible architecture": "可擴充架構",
"GTK, Qt, IDEs, more": "", "GTK, Qt, IDEs, more": "GTK、Qt、IDE 等",
"Modular widget bar": "", "Modular widget bar": "模組化小工具列",
"Night mode & gamma": "", "Night mode & gamma": "夜間模式與伽瑪",
"Per-screen config": "", "Per-screen config": "依螢幕設定",
"Quick system toggles": "" "Quick system toggles": "快速系統切換",
"Security & privacy": ""
}, },
"greeter feature card title": { "greeter feature card title": {
"App Theming": "", "App Theming": "應用程式主題",
"Control Center": "", "Control Center": "控制中心",
"Display Control": "", "Display Control": "顯示控制",
"Dynamic Theming": "", "Dynamic Theming": "動態主題",
"Multi-Monitor": "", "Multi-Monitor": "多顯示器",
"System Tray": "", "System Tray": "系統匣",
"Theme Registry": "" "Theme Registry": "主題註冊"
}, },
"greeter feature card title | greeter plugins link": { "greeter feature card title | greeter plugins link": {
"Plugins": "" "Plugins": "外掛程式"
}, },
"greeter feature card title | greeter settings link": { "greeter feature card title | greeter settings link": {
"DankBar": "" "DankBar": "DankBar"
},
"greeter feature card title | lock screen notifications settings card": {
"Lock Screen": ""
}, },
"greeter finish button": { "greeter finish button": {
"Finish": "" "Finish": "完成"
}, },
"greeter first page button": { "greeter first page button": {
"Get Started": "" "Get Started": "開始使用"
}, },
"greeter keybinds niri description": { "greeter keybinds niri description": {
"niri shortcuts config": "" "niri shortcuts config": "niri 捷徑設定"
}, },
"greeter keybinds section header": { "greeter keybinds section header": {
"DMS Shortcuts": "" "DMS Shortcuts": "DMS 捷徑"
}, },
"greeter modal window title": { "greeter modal window title": {
"Welcome": "" "Welcome": "歡迎"
}, },
"greeter next button": { "greeter next button": {
"Next": "" "Next": "下一步"
}, },
"greeter no keybinds message": { "greeter no keybinds message": {
"No DMS shortcuts configured": "" "No DMS shortcuts configured": "未設定 DMS 捷徑"
}, },
"greeter notifications description": { "greeter notifications description": {
"Popup behavior, position": "" "Popup behavior, position": "彈出視窗行為與位置"
}, },
"greeter settings link": { "greeter settings link": {
"Displays": "", "Displays": "顯示器",
"Dock": "", "Dock": "Dock",
"Keybinds": "", "Keybinds": "按鍵綁定",
"Notifications": "", "Notifications": "通知",
"Theme & Colors": "", "Theme & Colors": "主題與色彩",
"Wallpaper": "" "Wallpaper": "桌布"
}, },
"greeter settings section header": { "greeter settings section header": {
"Configure": "" "Configure": "設定"
}, },
"greeter skip button": { "greeter skip button": {
"Skip": "" "Skip": "跳過"
}, },
"greeter skip button tooltip": { "greeter skip button tooltip": {
"Skip setup": "" "Skip setup": "跳過設定"
}, },
"greeter theme description": { "greeter theme description": {
"Dynamic colors, presets": "" "Dynamic colors, presets": "動態顏色、預設集"
}, },
"greeter themes link": { "greeter themes link": {
"Themes": "" "Themes": "主題"
}, },
"greeter wallpaper description": { "greeter wallpaper description": {
"Background image": "" "Background image": "背景圖片"
}, },
"greeter welcome page section header": { "greeter welcome page section header": {
"Features": "" "Features": "功能"
}, },
"greeter welcome page tagline": { "greeter welcome page tagline": {
"A modern desktop shell for Wayland compositors": "" "A modern desktop shell for Wayland compositors": "適用於 Wayland 顯示合成器的現代桌面殼層"
}, },
"greeter welcome page title": { "greeter welcome page title": {
"Welcome to DankMaterialShell": "" "Welcome to DankMaterialShell": "歡迎使用 DankMaterialShell"
}, },
"install action button": { "install action button": {
"Install": "安裝" "Install": "安裝"
@@ -4398,17 +4444,17 @@
"Loading...": "載入中..." "Loading...": "載入中..."
}, },
"lock screen notification mode option": { "lock screen notification mode option": {
"App Names": "", "App Names": "應用程式名稱",
"Count Only": "", "Count Only": "僅計數",
"Disabled": "", "Disabled": "已停用",
"Full Content": "" "Full Content": "完整內容"
}, },
"lock screen notification privacy setting": { "lock screen notification privacy setting": {
"Control what notification information is shown on the lock screen": "", "Control what notification information is shown on the lock screen": "控制鎖定畫面上顯示的通知資訊",
"Notification Display": "" "Notification Display": "通知顯示"
}, },
"lock screen notifications settings card": { "lock screen notifications settings card": {
"Lock Screen": "" "Lock Screen": "鎖定畫面"
}, },
"loginctl not available - lock integration requires DMS socket connection": { "loginctl not available - lock integration requires DMS socket connection": {
"loginctl not available - lock integration requires DMS socket connection": "loginctl 不可用 - 鎖定整合需要 DMS 套接字連接" "loginctl not available - lock integration requires DMS socket connection": "loginctl 不可用 - 鎖定整合需要 DMS 套接字連接"
@@ -4518,11 +4564,11 @@
"Widgets": "小工具" "Widgets": "小工具"
}, },
"shadow color option": { "shadow color option": {
"Surface": "", "Surface": "表面",
"Text": "" "Text": "文字"
}, },
"shadow intensity slider": { "shadow intensity slider": {
"Intensity": "" "Intensity": "強度"
}, },
"source code link": { "source code link": {
"source": "來源" "source": "來源"
@@ -4560,6 +4606,9 @@
"update dms for NM integration.": { "update dms for NM integration.": {
"update dms for NM integration.": "更新 dms 以進行 NM 整合。" "update dms for NM integration.": "更新 dms 以進行 NM 整合。"
}, },
"version requirement": {
"Requires %1": ""
},
"wallpaper directory file browser title": { "wallpaper directory file browser title": {
"Select Wallpaper Directory": "選擇桌布目錄" "Select Wallpaper Directory": "選擇桌布目錄"
}, },

View File

@@ -48,6 +48,20 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "%1 exists but is not included in config. Custom keybinds will not work until this is fixed.",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "%1 is now included in config",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "%1 issue(s) found", "term": "%1 issue(s) found",
"translation": "", "translation": "",
@@ -1105,13 +1119,6 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Background app icons",
"translation": "",
"context": "greeter feature card description",
"reference": "",
"comment": ""
},
{ {
"term": "Background image", "term": "Background image",
"translation": "", "translation": "",
@@ -1722,14 +1729,14 @@
"comment": "" "comment": ""
}, },
{ {
"term": "Click 'Setup' to create cursor config and add include to your compositor config.", "term": "Click 'Setup' to create %1 and add include to config.",
"translation": "", "translation": "",
"context": "", "context": "",
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{ {
"term": "Click 'Setup' to create dms/binds.kdl and add include to config.kdl.", "term": "Click 'Setup' to create cursor config and add include to your compositor config.",
"translation": "", "translation": "",
"context": "", "context": "",
"reference": "", "reference": "",
@@ -1750,7 +1757,7 @@
"comment": "" "comment": ""
}, },
{ {
"term": "Click any shortcut to edit. Changes save to dms/binds.kdl", "term": "Click any shortcut to edit. Changes save to %1",
"translation": "", "translation": "",
"context": "", "context": "",
"reference": "", "reference": "",
@@ -2106,6 +2113,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Connect to Hidden Network",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Connect to VPN", "term": "Connect to VPN",
"translation": "", "translation": "",
@@ -3422,6 +3436,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Enter network name and password",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Enter passkey for ", "term": "Enter passkey for ",
"translation": "", "translation": "",
@@ -3996,6 +4017,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Flags",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Flipped", "term": "Flipped",
"translation": "", "translation": "",
@@ -4423,6 +4451,20 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Hidden",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "Hidden Network",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Hide Delay", "term": "Hide Delay",
"translation": "", "translation": "",
@@ -5231,7 +5273,7 @@
{ {
"term": "Lock Screen", "term": "Lock Screen",
"translation": "", "translation": "",
"context": "lock screen notifications settings card", "context": "greeter feature card title | lock screen notifications settings card",
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
@@ -5277,6 +5319,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Locked",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Log Out", "term": "Log Out",
"translation": "", "translation": "",
@@ -5298,6 +5347,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Long press",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Longitude", "term": "Longitude",
"translation": "", "translation": "",
@@ -5865,6 +5921,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Network Name (SSID)",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Network Speed Monitor", "term": "Network Speed Monitor",
"translation": "", "translation": "",
@@ -7328,6 +7391,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Release",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Reload Plugin", "term": "Reload Plugin",
"translation": "", "translation": "",
@@ -7349,6 +7419,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Repeat",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Report", "term": "Report",
"translation": "", "translation": "",
@@ -7363,6 +7440,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Requires %1",
"translation": "",
"context": "version requirement",
"reference": "",
"comment": ""
},
{ {
"term": "Requires 'dgop' tool", "term": "Requires 'dgop' tool",
"translation": "", "translation": "",
@@ -7867,6 +7951,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Security & privacy",
"translation": "",
"context": "greeter feature card description",
"reference": "",
"comment": ""
},
{ {
"term": "Select Application", "term": "Select Application",
"translation": "", "translation": "",
@@ -9011,7 +9102,7 @@
{ {
"term": "System Tray", "term": "System Tray",
"translation": "", "translation": "",
"context": "greeter feature card title", "context": "",
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
@@ -10464,20 +10555,6 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "dms/binds.kdl exists but is not included in config.kdl. Custom keybinds will not work until this is fixed.",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "dms/binds.kdl is now included in config.kdl",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "dms/cursor config exists but is not included. Cursor settings won't apply.", "term": "dms/cursor config exists but is not included. Cursor settings won't apply.",
"translation": "", "translation": "",