1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2025-12-05 21:15:38 -05:00

idle: add option to prevent idle when mpris is playing

This commit is contained in:
bbedward
2025-11-09 11:01:32 -05:00
parent d309957927
commit 1524d27f4c
14 changed files with 559 additions and 74 deletions

View File

@@ -224,6 +224,7 @@ Singleton {
property int batterySuspendTimeout: 0 property int batterySuspendTimeout: 0
property int batterySuspendBehavior: SettingsData.SuspendBehavior.Suspend property int batterySuspendBehavior: SettingsData.SuspendBehavior.Suspend
property bool lockBeforeSuspend: false property bool lockBeforeSuspend: false
property bool preventIdleForMedia: false
property bool loginctlLockIntegration: true property bool loginctlLockIntegration: true
property string launchPrefix: "" property string launchPrefix: ""
property var brightnessDevicePins: ({}) property var brightnessDevicePins: ({})

View File

@@ -141,6 +141,7 @@ var SPEC = {
batterySuspendTimeout: { def: 0 }, batterySuspendTimeout: { def: 0 },
batterySuspendBehavior: { def: 0 }, batterySuspendBehavior: { def: 0 },
lockBeforeSuspend: { def: false }, lockBeforeSuspend: { def: false },
preventIdleForMedia: { def: false },
loginctlLockIntegration: { def: true }, loginctlLockIntegration: { def: true },
launchPrefix: { def: "" }, launchPrefix: { def: "" },
brightnessDevicePins: { def: {} }, brightnessDevicePins: { def: {} },

View File

@@ -158,11 +158,21 @@ Item {
} }
} }
DankToggle {
width: parent.width
text: I18n.tr("Prevent idle for media")
description: I18n.tr("Inhibit idle timeout when audio or video is playing")
checked: SettingsData.preventIdleForMedia
visible: IdleService.idleMonitorAvailable
onToggled: checked => SettingsData.set("preventIdleForMedia", checked)
}
DankDropdown { DankDropdown {
id: lockDropdown id: lockDropdown
property var timeoutOptions: ["Never", "1 minute", "2 minutes", "3 minutes", "5 minutes", "10 minutes", "15 minutes", "20 minutes", "30 minutes", "1 hour", "1 hour 30 minutes", "2 hours", "3 hours"] property var timeoutOptions: ["Never", "1 minute", "2 minutes", "3 minutes", "5 minutes", "10 minutes", "15 minutes", "20 minutes", "30 minutes", "1 hour", "1 hour 30 minutes", "2 hours", "3 hours"]
property var timeoutValues: [0, 60, 120, 180, 300, 600, 900, 1200, 1800, 3600, 5400, 7200, 10800] property var timeoutValues: [0, 60, 120, 180, 300, 600, 900, 1200, 1800, 3600, 5400, 7200, 10800]
addHorizontalPadding: true
text: I18n.tr("Automatically lock after") text: I18n.tr("Automatically lock after")
options: timeoutOptions options: timeoutOptions
@@ -199,6 +209,7 @@ Item {
property var timeoutOptions: ["Never", "1 minute", "2 minutes", "3 minutes", "5 minutes", "10 minutes", "15 minutes", "20 minutes", "30 minutes", "1 hour", "1 hour 30 minutes", "2 hours", "3 hours"] property var timeoutOptions: ["Never", "1 minute", "2 minutes", "3 minutes", "5 minutes", "10 minutes", "15 minutes", "20 minutes", "30 minutes", "1 hour", "1 hour 30 minutes", "2 hours", "3 hours"]
property var timeoutValues: [0, 60, 120, 180, 300, 600, 900, 1200, 1800, 3600, 5400, 7200, 10800] property var timeoutValues: [0, 60, 120, 180, 300, 600, 900, 1200, 1800, 3600, 5400, 7200, 10800]
addHorizontalPadding: true
text: I18n.tr("Turn off monitors after") text: I18n.tr("Turn off monitors after")
options: timeoutOptions options: timeoutOptions
@@ -235,6 +246,7 @@ Item {
property var timeoutOptions: ["Never", "1 minute", "2 minutes", "3 minutes", "5 minutes", "10 minutes", "15 minutes", "20 minutes", "30 minutes", "1 hour", "1 hour 30 minutes", "2 hours", "3 hours"] property var timeoutOptions: ["Never", "1 minute", "2 minutes", "3 minutes", "5 minutes", "10 minutes", "15 minutes", "20 minutes", "30 minutes", "1 hour", "1 hour 30 minutes", "2 hours", "3 hours"]
property var timeoutValues: [0, 60, 120, 180, 300, 600, 900, 1200, 1800, 3600, 5400, 7200, 10800] property var timeoutValues: [0, 60, 120, 180, 300, 600, 900, 1200, 1800, 3600, 5400, 7200, 10800]
addHorizontalPadding: true
text: I18n.tr("Suspend system after") text: I18n.tr("Suspend system after")
options: timeoutOptions options: timeoutOptions

View File

@@ -4,6 +4,7 @@ pragma ComponentBehavior: Bound
import QtQuick import QtQuick
import Quickshell import Quickshell
import Quickshell.Wayland import Quickshell.Wayland
import Quickshell.Services.Mpris
import qs.Common import qs.Common
import qs.Services import qs.Services
@@ -18,6 +19,14 @@ Singleton {
} }
} }
readonly property bool idleInhibitorAvailable: {
try {
return typeof IdleInhibitor !== "undefined"
} catch (e) {
return false
}
}
property bool enabled: true property bool enabled: true
property bool respectInhibitors: true property bool respectInhibitors: true
property bool _enableGate: true property bool _enableGate: true
@@ -28,6 +37,8 @@ Singleton {
readonly property int suspendTimeout: isOnBattery ? SettingsData.batterySuspendTimeout : SettingsData.acSuspendTimeout readonly property int suspendTimeout: isOnBattery ? SettingsData.batterySuspendTimeout : SettingsData.acSuspendTimeout
readonly property int suspendBehavior: isOnBattery ? SettingsData.batterySuspendBehavior : SettingsData.acSuspendBehavior readonly property int suspendBehavior: isOnBattery ? SettingsData.batterySuspendBehavior : SettingsData.acSuspendBehavior
readonly property bool mediaPlaying: MprisController.activePlayer !== null
onMonitorTimeoutChanged: _rearmIdleMonitors() onMonitorTimeoutChanged: _rearmIdleMonitors()
onLockTimeoutChanged: _rearmIdleMonitors() onLockTimeoutChanged: _rearmIdleMonitors()
onSuspendTimeoutChanged: _rearmIdleMonitors() onSuspendTimeoutChanged: _rearmIdleMonitors()
@@ -45,6 +56,7 @@ Singleton {
property var monitorOffMonitor: null property var monitorOffMonitor: null
property var lockMonitor: null property var lockMonitor: null
property var suspendMonitor: null property var suspendMonitor: null
property var mediaInhibitor: null
function wake() { function wake() {
requestMonitorOn() requestMonitorOn()
@@ -99,6 +111,20 @@ Singleton {
root.requestSuspend() root.requestSuspend()
} }
}) })
if (idleInhibitorAvailable) {
const inhibitorString = `
import QtQuick
import Quickshell.Wayland
IdleInhibitor {
active: false
}
`
mediaInhibitor = Qt.createQmlObject(inhibitorString, root, "IdleService.MediaInhibitor")
mediaInhibitor.active = Qt.binding(() => root.idleInhibitorAvailable && SettingsData.preventIdleForMedia && root.mediaPlaying)
}
} catch (e) { } catch (e) {
console.warn("IdleService: Error creating IdleMonitors:", e) console.warn("IdleService: Error creating IdleMonitors:", e)
} }

View File

@@ -21,6 +21,7 @@ Item {
property bool alignPopupRight: false property bool alignPopupRight: false
property int dropdownWidth: 200 property int dropdownWidth: 200
property bool compactMode: text === "" && description === "" property bool compactMode: text === "" && description === ""
property bool addHorizontalPadding: false
signal valueChanged(string value) signal valueChanged(string value)
@@ -40,6 +41,7 @@ Item {
anchors.left: parent.left anchors.left: parent.left
anchors.right: dropdown.left anchors.right: dropdown.left
anchors.verticalCenter: parent.verticalCenter anchors.verticalCenter: parent.verticalCenter
anchors.leftMargin: root.addHorizontalPadding ? Theme.spacingM : 0
anchors.rightMargin: Theme.spacingL anchors.rightMargin: Theme.spacingL
spacing: Theme.spacingXS spacing: Theme.spacingXS
visible: !root.compactMode visible: !root.compactMode
@@ -67,6 +69,7 @@ Item {
width: root.compactMode ? parent.width : (root.popupWidth === -1 ? undefined : (root.popupWidth > 0 ? root.popupWidth : root.dropdownWidth)) width: root.compactMode ? parent.width : (root.popupWidth === -1 ? undefined : (root.popupWidth > 0 ? root.popupWidth : root.dropdownWidth))
height: 40 height: 40
anchors.right: parent.right anchors.right: parent.right
anchors.rightMargin: root.addHorizontalPadding && !root.compactMode ? Theme.spacingM : 0
anchors.verticalCenter: parent.verticalCenter anchors.verticalCenter: parent.verticalCenter
radius: Theme.cornerRadius radius: Theme.cornerRadius
color: dropdownArea.containsMouse || dropdownMenu.visible ? Theme.surfaceContainerHigh : Theme.withAlpha(Theme.surfaceContainer, Theme.popupTransparency) color: dropdownArea.containsMouse || dropdownMenu.visible ? Theme.surfaceContainerHigh : Theme.withAlpha(Theme.surfaceContainer, Theme.popupTransparency)

View File

@@ -398,7 +398,7 @@
{ {
"term": "Automatically lock after", "term": "Automatically lock after",
"context": "Automatically lock after", "context": "Automatically lock after",
"reference": "Modals/Settings/PowerSettings.qml:166", "reference": "Modals/Settings/PowerSettings.qml:176",
"comment": "" "comment": ""
}, },
{ {
@@ -611,6 +611,12 @@
"reference": "Modules/Settings/DankBarTab.qml:1969", "reference": "Modules/Settings/DankBarTab.qml:1969",
"comment": "" "comment": ""
}, },
{
"term": "Changes:",
"context": "Changes:",
"reference": "Modals/DisplayConfirmationModal.qml:123",
"comment": ""
},
{ {
"term": "Check for system updates", "term": "Check for system updates",
"context": "Check for system updates", "context": "Check for system updates",
@@ -728,37 +734,37 @@
{ {
"term": "Command or script to run instead of the standard hibernate procedure", "term": "Command or script to run instead of the standard hibernate procedure",
"context": "Command or script to run instead of the standard hibernate procedure", "context": "Command or script to run instead of the standard hibernate procedure",
"reference": "Modals/Settings/PowerSettings.qml:502", "reference": "Modals/Settings/PowerSettings.qml:514",
"comment": "" "comment": ""
}, },
{ {
"term": "Command or script to run instead of the standard lock procedure", "term": "Command or script to run instead of the standard lock procedure",
"context": "Command or script to run instead of the standard lock procedure", "context": "Command or script to run instead of the standard lock procedure",
"reference": "Modals/Settings/PowerSettings.qml:406", "reference": "Modals/Settings/PowerSettings.qml:418",
"comment": "" "comment": ""
}, },
{ {
"term": "Command or script to run instead of the standard logout procedure", "term": "Command or script to run instead of the standard logout procedure",
"context": "Command or script to run instead of the standard logout procedure", "context": "Command or script to run instead of the standard logout procedure",
"reference": "Modals/Settings/PowerSettings.qml:438", "reference": "Modals/Settings/PowerSettings.qml:450",
"comment": "" "comment": ""
}, },
{ {
"term": "Command or script to run instead of the standard power off procedure", "term": "Command or script to run instead of the standard power off procedure",
"context": "Command or script to run instead of the standard power off procedure", "context": "Command or script to run instead of the standard power off procedure",
"reference": "Modals/Settings/PowerSettings.qml:566", "reference": "Modals/Settings/PowerSettings.qml:578",
"comment": "" "comment": ""
}, },
{ {
"term": "Command or script to run instead of the standard reboot procedure", "term": "Command or script to run instead of the standard reboot procedure",
"context": "Command or script to run instead of the standard reboot procedure", "context": "Command or script to run instead of the standard reboot procedure",
"reference": "Modals/Settings/PowerSettings.qml:534", "reference": "Modals/Settings/PowerSettings.qml:546",
"comment": "" "comment": ""
}, },
{ {
"term": "Command or script to run instead of the standard suspend procedure", "term": "Command or script to run instead of the standard suspend procedure",
"context": "Command or script to run instead of the standard suspend procedure", "context": "Command or script to run instead of the standard suspend procedure",
"reference": "Modals/Settings/PowerSettings.qml:470", "reference": "Modals/Settings/PowerSettings.qml:482",
"comment": "" "comment": ""
}, },
{ {
@@ -803,6 +809,12 @@
"reference": "Modals/BluetoothPairingModal.qml:292", "reference": "Modals/BluetoothPairingModal.qml:292",
"comment": "" "comment": ""
}, },
{
"term": "Confirm Display Changes",
"context": "Confirm Display Changes",
"reference": "Modals/DisplayConfirmationModal.qml:78",
"comment": ""
},
{ {
"term": "Confirm passkey for ", "term": "Confirm passkey for ",
"context": "Confirm passkey for ", "context": "Confirm passkey for ",
@@ -968,7 +980,7 @@
{ {
"term": "Custom Power Actions", "term": "Custom Power Actions",
"context": "Custom Power Actions", "context": "Custom Power Actions",
"reference": "Modals/Settings/PowerSettings.qml:392", "reference": "Modals/Settings/PowerSettings.qml:404",
"comment": "" "comment": ""
}, },
{ {
@@ -1133,6 +1145,12 @@
"reference": "Modules/ControlCenter/Details/NetworkDetail.qml:623", "reference": "Modules/ControlCenter/Details/NetworkDetail.qml:623",
"comment": "" "comment": ""
}, },
{
"term": "Disabled",
"context": "Disabled",
"reference": "Modals/DisplayConfirmationModal.qml:145",
"comment": ""
},
{ {
"term": "Disconnect", "term": "Disconnect",
"context": "Disconnect", "context": "Disconnect",
@@ -1187,6 +1205,12 @@
"reference": "Modules/Settings/DankBarTab.qml:38", "reference": "Modules/Settings/DankBarTab.qml:38",
"comment": "" "comment": ""
}, },
{
"term": "Display settings for ",
"context": "Display settings for ",
"reference": "Modals/DisplayConfirmationModal.qml:85",
"comment": ""
},
{ {
"term": "Display volume and brightness percentage values by default in OSD popups", "term": "Display volume and brightness percentage values by default in OSD popups",
"context": "Display volume and brightness percentage values by default in OSD popups", "context": "Display volume and brightness percentage values by default in OSD popups",
@@ -1337,6 +1361,12 @@
"reference": "Modals/Settings/PowerSettings.qml:81", "reference": "Modals/Settings/PowerSettings.qml:81",
"comment": "" "comment": ""
}, },
{
"term": "Enabled",
"context": "Enabled",
"reference": "Modals/DisplayConfirmationModal.qml:145",
"comment": ""
},
{ {
"term": "End", "term": "End",
"context": "End", "context": "End",
@@ -1808,7 +1838,7 @@
{ {
"term": "Idle monitoring not supported - requires newer Quickshell version", "term": "Idle monitoring not supported - requires newer Quickshell version",
"context": "Idle monitoring not supported - requires newer Quickshell version", "context": "Idle monitoring not supported - requires newer Quickshell version",
"reference": "Modals/Settings/PowerSettings.qml:313", "reference": "Modals/Settings/PowerSettings.qml:325",
"comment": "" "comment": ""
}, },
{ {
@@ -1841,6 +1871,12 @@
"reference": "Modules/DankBar/Popouts/BatteryPopout.qml:377", "reference": "Modules/DankBar/Popouts/BatteryPopout.qml:377",
"comment": "" "comment": ""
}, },
{
"term": "Inhibit idle timeout when audio or video is playing",
"context": "Inhibit idle timeout when audio or video is playing",
"reference": "Modals/Settings/PowerSettings.qml:164",
"comment": ""
},
{ {
"term": "Input Devices", "term": "Input Devices",
"context": "Input Devices", "context": "Input Devices",
@@ -1889,6 +1925,12 @@
"reference": "Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:20", "reference": "Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:20",
"comment": "" "comment": ""
}, },
{
"term": "Keep Changes",
"context": "Keep Changes",
"reference": "Modals/DisplayConfirmationModal.qml:198",
"comment": ""
},
{ {
"term": "Keyboard Layout Name", "term": "Keyboard Layout Name",
"context": "Keyboard Layout Name", "context": "Keyboard Layout Name",
@@ -2219,6 +2261,12 @@
"reference": "Modules/Settings/PersonalizationTab.qml:1136", "reference": "Modules/Settings/PersonalizationTab.qml:1136",
"comment": "" "comment": ""
}, },
{
"term": "Mode: ",
"context": "Mode: ",
"reference": "Modals/DisplayConfirmationModal.qml:138",
"comment": ""
},
{ {
"term": "Monitor Selection:", "term": "Monitor Selection:",
"context": "Monitor Selection:", "context": "Monitor Selection:",
@@ -2777,6 +2825,12 @@
"reference": "Modules/Settings/DankBarTab.qml:753", "reference": "Modules/Settings/DankBarTab.qml:753",
"comment": "" "comment": ""
}, },
{
"term": "Position: ",
"context": "Position: ",
"reference": "Modals/DisplayConfirmationModal.qml:131",
"comment": ""
},
{ {
"term": "Power & Security", "term": "Power & Security",
"context": "Power & Security", "context": "Power & Security",
@@ -2786,7 +2840,7 @@
{ {
"term": "Power Action Confirmation", "term": "Power Action Confirmation",
"context": "Power Action Confirmation", "context": "Power Action Confirmation",
"reference": "Modals/Settings/PowerSettings.qml:348", "reference": "Modals/Settings/PowerSettings.qml:360",
"comment": "" "comment": ""
}, },
{ {
@@ -2813,6 +2867,12 @@
"reference": "Modules/DankDash/WeatherTab.qml:401, Modules/Settings/TimeWeatherTab.qml:1228", "reference": "Modules/DankDash/WeatherTab.qml:401, Modules/Settings/TimeWeatherTab.qml:1228",
"comment": "" "comment": ""
}, },
{
"term": "Prevent idle for media",
"context": "Prevent idle for media",
"reference": "Modals/Settings/PowerSettings.qml:163",
"comment": ""
},
{ {
"term": "Prevent screen timeout", "term": "Prevent screen timeout",
"context": "Prevent screen timeout", "context": "Prevent screen timeout",
@@ -2960,7 +3020,7 @@
{ {
"term": "Request confirmation on power off, restart, suspend, hibernate and logout actions", "term": "Request confirmation on power off, restart, suspend, hibernate and logout actions",
"context": "Request confirmation on power off, restart, suspend, hibernate and logout actions", "context": "Request confirmation on power off, restart, suspend, hibernate and logout actions",
"reference": "Modals/Settings/PowerSettings.qml:359", "reference": "Modals/Settings/PowerSettings.qml:371",
"comment": "" "comment": ""
}, },
{ {
@@ -2981,6 +3041,18 @@
"reference": "Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:124", "reference": "Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:124",
"comment": "" "comment": ""
}, },
{
"term": "Revert",
"context": "Revert",
"reference": "Modals/DisplayConfirmationModal.qml:172",
"comment": ""
},
{
"term": "Reverting in:",
"context": "Reverting in:",
"reference": "Modals/DisplayConfirmationModal.qml:102",
"comment": ""
},
{ {
"term": "Right", "term": "Right",
"context": "Right", "context": "Right",
@@ -3086,7 +3158,7 @@
{ {
"term": "Search...", "term": "Search...",
"context": "Search...", "context": "Search...",
"reference": "Widgets/DankDropdown.qml:264", "reference": "Widgets/DankDropdown.qml:267",
"comment": "" "comment": ""
}, },
{ {
@@ -3212,7 +3284,7 @@
{ {
"term": "Show Confirmation on Power Actions", "term": "Show Confirmation on Power Actions",
"context": "Show Confirmation on Power Actions", "context": "Show Confirmation on Power Actions",
"reference": "Modals/Settings/PowerSettings.qml:358", "reference": "Modals/Settings/PowerSettings.qml:370",
"comment": "" "comment": ""
}, },
{ {
@@ -3452,13 +3524,13 @@
{ {
"term": "Suspend behavior", "term": "Suspend behavior",
"context": "Suspend behavior", "context": "Suspend behavior",
"reference": "Modals/Settings/PowerSettings.qml:275", "reference": "Modals/Settings/PowerSettings.qml:287",
"comment": "" "comment": ""
}, },
{ {
"term": "Suspend system after", "term": "Suspend system after",
"context": "Suspend system after", "context": "Suspend system after",
"reference": "Modals/Settings/PowerSettings.qml:238", "reference": "Modals/Settings/PowerSettings.qml:250",
"comment": "" "comment": ""
}, },
{ {
@@ -3728,7 +3800,7 @@
{ {
"term": "Turn off monitors after", "term": "Turn off monitors after",
"context": "Turn off monitors after", "context": "Turn off monitors after",
"reference": "Modals/Settings/PowerSettings.qml:202", "reference": "Modals/Settings/PowerSettings.qml:213",
"comment": "" "comment": ""
}, },
{ {
@@ -3899,6 +3971,12 @@
"reference": "Modules/Settings/DankBarTab.qml:139", "reference": "Modules/Settings/DankBarTab.qml:139",
"comment": "" "comment": ""
}, },
{
"term": "VRR: ",
"context": "VRR: ",
"reference": "Modals/DisplayConfirmationModal.qml:145",
"comment": ""
},
{ {
"term": "Vibrant palette with playful saturation.", "term": "Vibrant palette with playful saturation.",
"context": "Vibrant palette with playful saturation.", "context": "Vibrant palette with playful saturation.",

View File

@@ -297,10 +297,10 @@
"CPU usage indicator": "Indicatore uso CPU" "CPU usage indicator": "Indicatore uso CPU"
}, },
"CUPS Insecure Filter Warning": { "CUPS Insecure Filter Warning": {
"CUPS Insecure Filter Warning": "" "CUPS Insecure Filter Warning": "Avviso Filtro non Sicuro CUPS"
}, },
"CUPS Missing Filter Warning": { "CUPS Missing Filter Warning": {
"CUPS Missing Filter Warning": "" "CUPS Missing Filter Warning": "Avviso Filtro Mancante CUPS"
}, },
"Cancel": { "Cancel": {
"Cancel": "Annulla" "Cancel": "Annulla"
@@ -311,6 +311,9 @@
"Center Section": { "Center Section": {
"Center Section": "Sezione Centrale" "Center Section": "Sezione Centrale"
}, },
"Changes:": {
"Changes:": ""
},
"Check for system updates": { "Check for system updates": {
"Check for system updates": "Controlla aggiornamenti di sistema" "Check for system updates": "Controlla aggiornamenti di sistema"
}, },
@@ -410,6 +413,9 @@
"Confirm": { "Confirm": {
"Confirm": "Conferma" "Confirm": "Conferma"
}, },
"Confirm Display Changes": {
"Confirm Display Changes": ""
},
"Confirm passkey for ": { "Confirm passkey for ": {
"Confirm passkey for ": "Conferma passkey per" "Confirm passkey for ": "Conferma passkey per"
}, },
@@ -426,7 +432,7 @@
"Connected Displays": "Display Connessi" "Connected Displays": "Display Connessi"
}, },
"Connecting to Device": { "Connecting to Device": {
"Connecting to Device": "" "Connecting to Device": "Connessione al Dispositivo"
}, },
"Connection failed. Check password and try again.": { "Connection failed. Check password and try again.": {
"Connection failed. Check password and try again.": "Connessione fallita. Controlla la password e riprova" "Connection failed. Check password and try again.": "Connessione fallita. Controlla la password e riprova"
@@ -468,10 +474,10 @@
"Corner Radius (0 = square corners)": "Raggio Angoli (0 = angoli squadrati)" "Corner Radius (0 = square corners)": "Raggio Angoli (0 = angoli squadrati)"
}, },
"Corner Radius Override": { "Corner Radius Override": {
"Corner Radius Override": "" "Corner Radius Override": "Sovrascrittura Raggio Angoli"
}, },
"Cover Open": { "Cover Open": {
"Cover Open": "" "Cover Open": "Coperchio Aperto"
}, },
"Create Dir": { "Create Dir": {
"Create Dir": "Crea Cartella" "Create Dir": "Crea Cartella"
@@ -584,6 +590,9 @@
"Disable Autoconnect": { "Disable Autoconnect": {
"Disable Autoconnect": "Disabilita connessione automatica" "Disable Autoconnect": "Disabilita connessione automatica"
}, },
"Disabled": {
"Disabled": ""
},
"Disconnect": { "Disconnect": {
"Disconnect": "Disconnetti" "Disconnect": "Disconnetti"
}, },
@@ -611,6 +620,9 @@
"Display currently focused application title": { "Display currently focused application title": {
"Display currently focused application title": "Mostra il titolo delle applicazioni attualmente in focus" "Display currently focused application title": "Mostra il titolo delle applicazioni attualmente in focus"
}, },
"Display settings for ": {
"Display settings for ": ""
},
"Display volume and brightness percentage values by default in OSD popups": { "Display volume and brightness percentage values by default in OSD popups": {
"Display volume and brightness percentage values by default in OSD popups": "Mostra di default la percentuale volume e luminosità nei popups OSD" "Display volume and brightness percentage values by default in OSD popups": "Mostra di default la percentuale volume e luminosità nei popups OSD"
}, },
@@ -642,7 +654,7 @@
"Donate on Ko-fi": "Dona su Ko-fi" "Donate on Ko-fi": "Dona su Ko-fi"
}, },
"Door Open": { "Door Open": {
"Door Open": "" "Door Open": "Sportello Aperto"
}, },
"Drag widgets to reorder within sections. Use the eye icon to hide/show widgets (maintains spacing), or X to remove them completely.": { "Drag widgets to reorder within sections. Use the eye icon to hide/show widgets (maintains spacing), or X to remove them completely.": {
"Drag widgets to reorder within sections. Use the eye icon to hide/show widgets (maintains spacing), or X to remove them completely.": "Trascina i widget per riordinarli nelle sezioni. Usa l'icona occhio per nascondere/mostrare i widget (mantenendo la spaziatura), o X per rimuoverli completamente." "Drag widgets to reorder within sections. Use the eye icon to hide/show widgets (maintains spacing), or X to remove them completely.": "Trascina i widget per riordinarli nelle sezioni. Usa l'icona occhio per nascondere/mostrare i widget (mantenendo la spaziatura), o X per rimuoverli completamente."
@@ -686,6 +698,9 @@
"Enable loginctl lock integration": { "Enable loginctl lock integration": {
"Enable loginctl lock integration": "Abilita l'integrazione lock loginctl" "Enable loginctl lock integration": "Abilita l'integrazione lock loginctl"
}, },
"Enabled": {
"Enabled": ""
},
"End": { "End": {
"End": "Fine" "End": "Fine"
}, },
@@ -720,7 +735,7 @@
"Enter password for ": "Inserisci password per" "Enter password for ": "Inserisci password per"
}, },
"Error": { "Error": {
"Error": "" "Error": "Errore"
}, },
"Exclusive Zone Offset": { "Exclusive Zone Offset": {
"Exclusive Zone Offset": "Offset Zona Esclusa" "Exclusive Zone Offset": "Offset Zona Esclusa"
@@ -735,10 +750,10 @@
"Failed to activate configuration": "Impossibile attivare configurazione" "Failed to activate configuration": "Impossibile attivare configurazione"
}, },
"Failed to cancel all jobs": { "Failed to cancel all jobs": {
"Failed to cancel all jobs": "" "Failed to cancel all jobs": "Impossibile cancellare tutti i lavori"
}, },
"Failed to cancel selected job": { "Failed to cancel selected job": {
"Failed to cancel selected job": "" "Failed to cancel selected job": "Impossibile cancellare il lavoro selezionato"
}, },
"Failed to connect VPN": { "Failed to connect VPN": {
"Failed to connect VPN": "Impossibile connettersi alla VPN" "Failed to connect VPN": "Impossibile connettersi alla VPN"
@@ -759,13 +774,13 @@
"Failed to enable WiFi": "Impossibile abilitare WiFi" "Failed to enable WiFi": "Impossibile abilitare WiFi"
}, },
"Failed to pause printer": { "Failed to pause printer": {
"Failed to pause printer": "" "Failed to pause printer": "Impossibile mettere in pausa la stampante"
}, },
"Failed to remove device": { "Failed to remove device": {
"Failed to remove device": "Impossibile rimuovere dispositivo" "Failed to remove device": "Impossibile rimuovere dispositivo"
}, },
"Failed to resume printer": { "Failed to resume printer": {
"Failed to resume printer": "" "Failed to resume printer": "Impossibile riavviare la stampante"
}, },
"Failed to set profile image": { "Failed to set profile image": {
"Failed to set profile image": "Impossibile impostare immagine profilo" "Failed to set profile image": "Impossibile impostare immagine profilo"
@@ -861,7 +876,7 @@
"Good": "Buona" "Good": "Buona"
}, },
"Goth Corner Radius": { "Goth Corner Radius": {
"Goth Corner Radius": "" "Goth Corner Radius": "Raggio Angoli Gotici"
}, },
"Goth Corners": { "Goth Corners": {
"Goth Corners": "Angoli Gotici" "Goth Corners": "Angoli Gotici"
@@ -876,7 +891,7 @@
"Group multiple windows of the same app together with a window count indicator": "Raggruppa molteplici finestre della stessa app con un indicatore del numero di finestre" "Group multiple windows of the same app together with a window count indicator": "Raggruppa molteplici finestre della stessa app con un indicatore del numero di finestre"
}, },
"HSV": { "HSV": {
"HSV": "" "HSV": "HSV"
}, },
"Health": { "Health": {
"Health": "Salute" "Health": "Salute"
@@ -885,7 +900,7 @@
"Height to Edge Gap (Exclusive Zone)": "Altezza Gap Angolo (Zona Esclusa)" "Height to Edge Gap (Exclusive Zone)": "Altezza Gap Angolo (Zona Esclusa)"
}, },
"Hex": { "Hex": {
"Hex": "" "Hex": "Hex"
}, },
"Hex:": { "Hex:": {
"Hex:": "Hex:" "Hex:": "Hex:"
@@ -924,7 +939,7 @@
"Icon Theme": "Tema Icona" "Icon Theme": "Tema Icona"
}, },
"Idle": { "Idle": {
"Idle": "" "Idle": "Inattività"
}, },
"Idle Inhibitor": { "Idle Inhibitor": {
"Idle Inhibitor": "Inibitore Riposo" "Idle Inhibitor": "Inibitore Riposo"
@@ -950,6 +965,9 @@
"Individual Batteries": { "Individual Batteries": {
"Individual Batteries": "Batterie Individuali" "Individual Batteries": "Batterie Individuali"
}, },
"Inhibit idle timeout when audio or video is playing": {
"Inhibit idle timeout when audio or video is playing": ""
},
"Input Devices": { "Input Devices": {
"Input Devices": "Dispositivi Input" "Input Devices": "Dispositivi Input"
}, },
@@ -957,7 +975,7 @@
"Install plugins from the DMS plugin registry": "Installa plugins dal registro dei plugin DMS" "Install plugins from the DMS plugin registry": "Installa plugins dal registro dei plugin DMS"
}, },
"Interlock Open": { "Interlock Open": {
"Interlock Open": "" "Interlock Open": "Interblocco Aperto"
}, },
"Internet": { "Internet": {
"Internet": "Internet" "Internet": "Internet"
@@ -969,10 +987,13 @@
"Invert on mode change": "Invertire al cambio di modalità" "Invert on mode change": "Invertire al cambio di modalità"
}, },
"Jobs": { "Jobs": {
"Jobs": "" "Jobs": "Lavori"
}, },
"Jobs: ": { "Jobs: ": {
"Jobs: ": "" "Jobs: ": "Lavori:"
},
"Keep Changes": {
"Keep Changes": ""
}, },
"Keyboard Layout Name": { "Keyboard Layout Name": {
"Keyboard Layout Name": "Nome Layout Tastiera" "Keyboard Layout Name": "Nome Layout Tastiera"
@@ -1071,19 +1092,19 @@
"Manual Show/Hide": "Mostra/Nascondi Manuale" "Manual Show/Hide": "Mostra/Nascondi Manuale"
}, },
"Margin": { "Margin": {
"Margin": "" "Margin": "Margini"
}, },
"Marker Supply Empty": { "Marker Supply Empty": {
"Marker Supply Empty": "" "Marker Supply Empty": "Scorta Marker Vuota"
}, },
"Marker Supply Low": { "Marker Supply Low": {
"Marker Supply Low": "" "Marker Supply Low": "Scorta Marker Bassa"
}, },
"Marker Waste Almost Full": { "Marker Waste Almost Full": {
"Marker Waste Almost Full": "" "Marker Waste Almost Full": "Scarto Marcatori Quasi Pieno"
}, },
"Marker Waste Full": { "Marker Waste Full": {
"Marker Waste Full": "" "Marker Waste Full": "Scarto Marcatori Pieno"
}, },
"Material Colors": { "Material Colors": {
"Material Colors": "Colori Material" "Material Colors": "Colori Material"
@@ -1107,16 +1128,16 @@
"Media Controls": "Controlli Media" "Media Controls": "Controlli Media"
}, },
"Media Empty": { "Media Empty": {
"Media Empty": "" "Media Empty": "Media Vuoto"
}, },
"Media Jam": { "Media Jam": {
"Media Jam": "" "Media Jam": "Media Inceppato"
}, },
"Media Low": { "Media Low": {
"Media Low": "" "Media Low": "Media Basso"
}, },
"Media Needed": { "Media Needed": {
"Media Needed": "" "Media Needed": "Media Richiesti"
}, },
"Media Player Settings": { "Media Player Settings": {
"Media Player Settings": "Impostazioni Media Player" "Media Player Settings": "Impostazioni Media Player"
@@ -1142,6 +1163,9 @@
"Mode:": { "Mode:": {
"Mode:": "Modalità:" "Mode:": "Modalità:"
}, },
"Mode: ": {
"Mode: ": ""
},
"Monitor": { "Monitor": {
"Monitor": "Monitor" "Monitor": "Monitor"
}, },
@@ -1158,7 +1182,7 @@
"Mount": "Monta" "Mount": "Monta"
}, },
"Moving to Paused": { "Moving to Paused": {
"Moving to Paused": "" "Moving to Paused": "Passaggio a In Pausa"
}, },
"Muted palette with subdued, calming tones.": { "Muted palette with subdued, calming tones.": {
"Muted palette with subdued, calming tones.": "Tavolozza sobria con toni sommessi e calmanti." "Muted palette with subdued, calming tones.": "Tavolozza sobria con toni sommessi e calmanti."
@@ -1245,10 +1269,10 @@
"No plugins found.": "Nessun plugin trovato." "No plugins found.": "Nessun plugin trovato."
}, },
"No printer found": { "No printer found": {
"No printer found": "" "No printer found": "Nessuna stampante trovata"
}, },
"None": { "None": {
"None": "" "None": "Nulla"
}, },
"Normal Priority": { "Normal Priority": {
"Normal Priority": "Priorità Normale" "Normal Priority": "Priorità Normale"
@@ -1296,7 +1320,7 @@
"Office": "Ufficio" "Office": "Ufficio"
}, },
"Offline Report": { "Offline Report": {
"Offline Report": "" "Offline Report": "Riepilogo Offline"
}, },
"On-Screen Displays": { "On-Screen Displays": {
"On-Screen Displays": "Visualizzazione A Schermo" "On-Screen Displays": "Visualizzazione A Schermo"
@@ -1317,16 +1341,16 @@
"Open search bar to find text": "Apri barra di ricerca per cercare testo" "Open search bar to find text": "Apri barra di ricerca per cercare testo"
}, },
"Other": { "Other": {
"Other": "" "Other": "Altro"
}, },
"Output Area Almost Full": { "Output Area Almost Full": {
"Output Area Almost Full": "" "Output Area Almost Full": "Area Uscita Quasi Piena"
}, },
"Output Area Full": { "Output Area Full": {
"Output Area Full": "" "Output Area Full": "Area Uscita Piena"
}, },
"Output Tray Missing": { "Output Tray Missing": {
"Output Tray Missing": "" "Output Tray Missing": "Vassoio Uscita Mancante"
}, },
"Overview": { "Overview": {
"Overview": "Panoramica" "Overview": "Panoramica"
@@ -1353,10 +1377,10 @@
"Password": "Password" "Password": "Password"
}, },
"Pause": { "Pause": {
"Pause": "" "Pause": "Pausa"
}, },
"Paused": { "Paused": {
"Paused": "" "Paused": "Messo in Pausa"
}, },
"Per-Mode Wallpapers": { "Per-Mode Wallpapers": {
"Per-Mode Wallpapers": "Sfondo Per Modalità" "Per-Mode Wallpapers": "Sfondo Per Modalità"
@@ -1424,6 +1448,9 @@
"Position": { "Position": {
"Position": "Posizione" "Position": "Posizione"
}, },
"Position: ": {
"Position: ": ""
},
"Power & Security": { "Power & Security": {
"Power & Security": "Alimentazione & Sicurezza" "Power & Security": "Alimentazione & Sicurezza"
}, },
@@ -1442,6 +1469,9 @@
"Pressure": { "Pressure": {
"Pressure": "Pressione" "Pressure": "Pressione"
}, },
"Prevent idle for media": {
"Prevent idle for media": ""
},
"Prevent screen timeout": { "Prevent screen timeout": {
"Prevent screen timeout": "Previeni timeout schermo" "Prevent screen timeout": "Previeni timeout schermo"
}, },
@@ -1449,13 +1479,13 @@
"Primary": "Primario" "Primary": "Primario"
}, },
"Print Server not available": { "Print Server not available": {
"Print Server not available": "" "Print Server not available": "Server di Stampa non disponibile"
}, },
"Printers": { "Printers": {
"Printers": "" "Printers": "Stampanti"
}, },
"Printers: ": { "Printers: ": {
"Printers: ": "" "Printers: ": "Stampanti:"
}, },
"Privacy Indicator": { "Privacy Indicator": {
"Privacy Indicator": "Indicatore Privacy" "Privacy Indicator": "Indicatore Privacy"
@@ -1464,7 +1494,7 @@
"Process": "Processo" "Process": "Processo"
}, },
"Processing": { "Processing": {
"Processing": "" "Processing": "Processando"
}, },
"Profile Image Error": { "Profile Image Error": {
"Profile Image Error": "Errore Immagine Profilo" "Profile Image Error": "Errore Immagine Profilo"
@@ -1488,13 +1518,13 @@
"Quick note-taking slideout panel": "Pannello scorrevole per la presa veloce di appunti" "Quick note-taking slideout panel": "Pannello scorrevole per la presa veloce di appunti"
}, },
"RGB": { "RGB": {
"RGB": "" "RGB": "RGB"
}, },
"Rain Chance": { "Rain Chance": {
"Rain Chance": "Possibili Piogge" "Rain Chance": "Possibili Piogge"
}, },
"Reason": { "Reason": {
"Reason": "" "Reason": "Motivo"
}, },
"Reboot": { "Reboot": {
"Reboot": "Riavvia" "Reboot": "Riavvia"
@@ -1515,7 +1545,7 @@
"Remove": "Rimuovi" "Remove": "Rimuovi"
}, },
"Report": { "Report": {
"Report": "" "Report": "Riepilogo"
}, },
"Request confirmation on power off, restart, suspend, hibernate and logout actions": { "Request confirmation on power off, restart, suspend, hibernate and logout actions": {
"Request confirmation on power off, restart, suspend, hibernate and logout actions": "Richiedi conferma alle azioni di spegnimento, riavvio, sospensione, hibernazione e logout" "Request confirmation on power off, restart, suspend, hibernate and logout actions": "Richiedi conferma alle azioni di spegnimento, riavvio, sospensione, hibernazione e logout"
@@ -1527,7 +1557,13 @@
"Resources": "Risorse" "Resources": "Risorse"
}, },
"Resume": { "Resume": {
"Resume": "" "Resume": "Riprendi"
},
"Revert": {
"Revert": ""
},
"Reverting in:": {
"Reverting in:": ""
}, },
"Right": { "Right": {
"Right": "Destra" "Right": "Destra"
@@ -1710,7 +1746,7 @@
"Shows when microphone, camera, or screen sharing is active": "Mostra quando microfono, videocamera, o condivisione schermo sono attivi" "Shows when microphone, camera, or screen sharing is active": "Mostra quando microfono, videocamera, o condivisione schermo sono attivi"
}, },
"Shutdown": { "Shutdown": {
"Shutdown": "" "Shutdown": "Spegni"
}, },
"Size": { "Size": {
"Size": "Dimensione" "Size": "Dimensione"
@@ -1731,7 +1767,7 @@
"Spacing": "Spaziatura" "Spacing": "Spaziatura"
}, },
"Spool Area Full": { "Spool Area Full": {
"Spool Area Full": "" "Spool Area Full": "Area Spool Piena"
}, },
"Square Corners": { "Square Corners": {
"Square Corners": "Angoli squadrati" "Square Corners": "Angoli squadrati"
@@ -1746,13 +1782,13 @@
"Status": "Stato" "Status": "Stato"
}, },
"Stopped": { "Stopped": {
"Stopped": "" "Stopped": "Stoppato"
}, },
"Stopped Partly": { "Stopped Partly": {
"Stopped Partly": "" "Stopped Partly": "Parzialmente Stoppato"
}, },
"Stopping": { "Stopping": {
"Stopping": "" "Stopping": "Stoppando"
}, },
"Storage & Disks": { "Storage & Disks": {
"Storage & Disks": "Archiviazione & Dischi" "Storage & Disks": "Archiviazione & Dischi"
@@ -1848,7 +1884,7 @@
"The below settings will modify your GTK and Qt settings. If you wish to preserve your current configurations, please back them up (qt5ct.conf|qt6ct.conf and ~/.config/gtk-3.0|gtk-4.0).": "Le seguenti impostazioni modificheranno le tue impostazioni GTK e Qt. Se vuoi preservare la tua configurazione attuale, per favore fai il backup (qt5ct.conf|qt6ct.conf and ~/.config/gtk-3.0|gtk-4.0)." "The below settings will modify your GTK and Qt settings. If you wish to preserve your current configurations, please back them up (qt5ct.conf|qt6ct.conf and ~/.config/gtk-3.0|gtk-4.0).": "Le seguenti impostazioni modificheranno le tue impostazioni GTK e Qt. Se vuoi preservare la tua configurazione attuale, per favore fai il backup (qt5ct.conf|qt6ct.conf and ~/.config/gtk-3.0|gtk-4.0)."
}, },
"The job queue of this printer is empty": { "The job queue of this printer is empty": {
"The job queue of this printer is empty": "" "The job queue of this printer is empty": "La coda lavori della spampante è vuota"
}, },
"Theme & Colors": { "Theme & Colors": {
"Theme & Colors": "Tema & Colori" "Theme & Colors": "Tema & Colori"
@@ -1872,7 +1908,7 @@
"Time & Weather": "Orario & Meteo" "Time & Weather": "Orario & Meteo"
}, },
"Timed Out": { "Timed Out": {
"Timed Out": "" "Timed Out": "Scaduto"
}, },
"To Full": { "To Full": {
"To Full": "A Pieno" "To Full": "A Pieno"
@@ -1893,10 +1929,10 @@
"Tomorrow": "Domani" "Tomorrow": "Domani"
}, },
"Toner Empty": { "Toner Empty": {
"Toner Empty": "" "Toner Empty": "Toner Vuoto"
}, },
"Toner Low": { "Toner Low": {
"Toner Low": "" "Toner Low": "Toner Basso"
}, },
"Top": { "Top": {
"Top": "Superiore" "Top": "Superiore"
@@ -2000,6 +2036,9 @@
"VPN status and quick connect": { "VPN status and quick connect": {
"VPN status and quick connect": "Stato VPN e connessione veloce" "VPN status and quick connect": "Stato VPN e connessione veloce"
}, },
"VRR: ": {
"VRR: ": ""
},
"Vibrant palette with playful saturation.": { "Vibrant palette with playful saturation.": {
"Vibrant palette with playful saturation.": "Tavolozza vibrate con saturazione giocosa" "Vibrant palette with playful saturation.": "Tavolozza vibrate con saturazione giocosa"
}, },
@@ -2028,7 +2067,7 @@
"Wallpapers": "Sfondi" "Wallpapers": "Sfondi"
}, },
"Warning": { "Warning": {
"Warning": "" "Warning": "Attenzione"
}, },
"Wave Progress Bars": { "Wave Progress Bars": {
"Wave Progress Bars": "Progress Bar ad Onde" "Wave Progress Bars": "Progress Bar ad Onde"

View File

@@ -311,6 +311,9 @@
"Center Section": { "Center Section": {
"Center Section": "センターセクション" "Center Section": "センターセクション"
}, },
"Changes:": {
"Changes:": ""
},
"Check for system updates": { "Check for system updates": {
"Check for system updates": "システムアップデートを検査" "Check for system updates": "システムアップデートを検査"
}, },
@@ -410,6 +413,9 @@
"Confirm": { "Confirm": {
"Confirm": "確認" "Confirm": "確認"
}, },
"Confirm Display Changes": {
"Confirm Display Changes": ""
},
"Confirm passkey for ": { "Confirm passkey for ": {
"Confirm passkey for ": "パスキーを確認 " "Confirm passkey for ": "パスキーを確認 "
}, },
@@ -584,6 +590,9 @@
"Disable Autoconnect": { "Disable Autoconnect": {
"Disable Autoconnect": "自動接続を無効" "Disable Autoconnect": "自動接続を無効"
}, },
"Disabled": {
"Disabled": ""
},
"Disconnect": { "Disconnect": {
"Disconnect": "切断" "Disconnect": "切断"
}, },
@@ -611,6 +620,9 @@
"Display currently focused application title": { "Display currently focused application title": {
"Display currently focused application title": "現在フォーカスされているアプリケーションのタイトルを表示" "Display currently focused application title": "現在フォーカスされているアプリケーションのタイトルを表示"
}, },
"Display settings for ": {
"Display settings for ": ""
},
"Display volume and brightness percentage values by default in OSD popups": { "Display volume and brightness percentage values by default in OSD popups": {
"Display volume and brightness percentage values by default in OSD popups": "OSDポップアップに音量と輝度のパーセンテージ値をデフォルトで表示" "Display volume and brightness percentage values by default in OSD popups": "OSDポップアップに音量と輝度のパーセンテージ値をデフォルトで表示"
}, },
@@ -686,6 +698,9 @@
"Enable loginctl lock integration": { "Enable loginctl lock integration": {
"Enable loginctl lock integration": "ログインロックの統合を有効に" "Enable loginctl lock integration": "ログインロックの統合を有効に"
}, },
"Enabled": {
"Enabled": ""
},
"End": { "End": {
"End": "終わり" "End": "終わり"
}, },
@@ -950,6 +965,9 @@
"Individual Batteries": { "Individual Batteries": {
"Individual Batteries": "バッテリーごと" "Individual Batteries": "バッテリーごと"
}, },
"Inhibit idle timeout when audio or video is playing": {
"Inhibit idle timeout when audio or video is playing": ""
},
"Input Devices": { "Input Devices": {
"Input Devices": "入力デバイス" "Input Devices": "入力デバイス"
}, },
@@ -974,6 +992,9 @@
"Jobs: ": { "Jobs: ": {
"Jobs: ": "ジョブ: " "Jobs: ": "ジョブ: "
}, },
"Keep Changes": {
"Keep Changes": ""
},
"Keyboard Layout Name": { "Keyboard Layout Name": {
"Keyboard Layout Name": "キーボードレイアウト名" "Keyboard Layout Name": "キーボードレイアウト名"
}, },
@@ -1142,6 +1163,9 @@
"Mode:": { "Mode:": {
"Mode:": "モード:" "Mode:": "モード:"
}, },
"Mode: ": {
"Mode: ": ""
},
"Monitor": { "Monitor": {
"Monitor": "モニター" "Monitor": "モニター"
}, },
@@ -1424,6 +1448,9 @@
"Position": { "Position": {
"Position": "位置" "Position": "位置"
}, },
"Position: ": {
"Position: ": ""
},
"Power & Security": { "Power & Security": {
"Power & Security": "電源とセキュリティ" "Power & Security": "電源とセキュリティ"
}, },
@@ -1442,6 +1469,9 @@
"Pressure": { "Pressure": {
"Pressure": "プレッシャー" "Pressure": "プレッシャー"
}, },
"Prevent idle for media": {
"Prevent idle for media": ""
},
"Prevent screen timeout": { "Prevent screen timeout": {
"Prevent screen timeout": "画面のタイムアウトを防止" "Prevent screen timeout": "画面のタイムアウトを防止"
}, },
@@ -1529,6 +1559,12 @@
"Resume": { "Resume": {
"Resume": "レジュメ" "Resume": "レジュメ"
}, },
"Revert": {
"Revert": ""
},
"Reverting in:": {
"Reverting in:": ""
},
"Right": { "Right": {
"Right": "右" "Right": "右"
}, },
@@ -2000,6 +2036,9 @@
"VPN status and quick connect": { "VPN status and quick connect": {
"VPN status and quick connect": "VPNステータスとクイック接続" "VPN status and quick connect": "VPNステータスとクイック接続"
}, },
"VRR: ": {
"VRR: ": ""
},
"Vibrant palette with playful saturation.": { "Vibrant palette with playful saturation.": {
"Vibrant palette with playful saturation.": "遊び心のある彩度の鮮やかなパレット。" "Vibrant palette with playful saturation.": "遊び心のある彩度の鮮やかなパレット。"
}, },

View File

@@ -311,6 +311,9 @@
"Center Section": { "Center Section": {
"Center Section": "Sekcja środkowa" "Center Section": "Sekcja środkowa"
}, },
"Changes:": {
"Changes:": ""
},
"Check for system updates": { "Check for system updates": {
"Check for system updates": "Sprawdź aktualizacje systemu" "Check for system updates": "Sprawdź aktualizacje systemu"
}, },
@@ -410,6 +413,9 @@
"Confirm": { "Confirm": {
"Confirm": "Potwierdź" "Confirm": "Potwierdź"
}, },
"Confirm Display Changes": {
"Confirm Display Changes": ""
},
"Confirm passkey for ": { "Confirm passkey for ": {
"Confirm passkey for ": "Potwierdź klucz dostępu dla " "Confirm passkey for ": "Potwierdź klucz dostępu dla "
}, },
@@ -584,6 +590,9 @@
"Disable Autoconnect": { "Disable Autoconnect": {
"Disable Autoconnect": "Wyłącz automatyczne łączenie" "Disable Autoconnect": "Wyłącz automatyczne łączenie"
}, },
"Disabled": {
"Disabled": ""
},
"Disconnect": { "Disconnect": {
"Disconnect": "Rozłącz" "Disconnect": "Rozłącz"
}, },
@@ -611,6 +620,9 @@
"Display currently focused application title": { "Display currently focused application title": {
"Display currently focused application title": "Wyświetlaj tytuł aktywnej aplikacji" "Display currently focused application title": "Wyświetlaj tytuł aktywnej aplikacji"
}, },
"Display settings for ": {
"Display settings for ": ""
},
"Display volume and brightness percentage values by default in OSD popups": { "Display volume and brightness percentage values by default in OSD popups": {
"Display volume and brightness percentage values by default in OSD popups": "Domyślnie wyświetlaj wartości procentowe głośności i jasności w wyskakujących okienkach OSD" "Display volume and brightness percentage values by default in OSD popups": "Domyślnie wyświetlaj wartości procentowe głośności i jasności w wyskakujących okienkach OSD"
}, },
@@ -686,6 +698,9 @@
"Enable loginctl lock integration": { "Enable loginctl lock integration": {
"Enable loginctl lock integration": "Włącz integrację blokady loginctl" "Enable loginctl lock integration": "Włącz integrację blokady loginctl"
}, },
"Enabled": {
"Enabled": ""
},
"End": { "End": {
"End": "Koniec" "End": "Koniec"
}, },
@@ -950,6 +965,9 @@
"Individual Batteries": { "Individual Batteries": {
"Individual Batteries": "Pojedyncze akumulatory" "Individual Batteries": "Pojedyncze akumulatory"
}, },
"Inhibit idle timeout when audio or video is playing": {
"Inhibit idle timeout when audio or video is playing": ""
},
"Input Devices": { "Input Devices": {
"Input Devices": "Urządzenia wejściowe" "Input Devices": "Urządzenia wejściowe"
}, },
@@ -974,6 +992,9 @@
"Jobs: ": { "Jobs: ": {
"Jobs: ": "Zadania: " "Jobs: ": "Zadania: "
}, },
"Keep Changes": {
"Keep Changes": ""
},
"Keyboard Layout Name": { "Keyboard Layout Name": {
"Keyboard Layout Name": "Nazwa układu klawiatury" "Keyboard Layout Name": "Nazwa układu klawiatury"
}, },
@@ -1142,6 +1163,9 @@
"Mode:": { "Mode:": {
"Mode:": "Tryb:" "Mode:": "Tryb:"
}, },
"Mode: ": {
"Mode: ": ""
},
"Monitor": { "Monitor": {
"Monitor": "Monitor" "Monitor": "Monitor"
}, },
@@ -1424,6 +1448,9 @@
"Position": { "Position": {
"Position": "Pozycja" "Position": "Pozycja"
}, },
"Position: ": {
"Position: ": ""
},
"Power & Security": { "Power & Security": {
"Power & Security": "Zasilanie i bezpieczeństwo" "Power & Security": "Zasilanie i bezpieczeństwo"
}, },
@@ -1442,6 +1469,9 @@
"Pressure": { "Pressure": {
"Pressure": "Ciśnienie" "Pressure": "Ciśnienie"
}, },
"Prevent idle for media": {
"Prevent idle for media": ""
},
"Prevent screen timeout": { "Prevent screen timeout": {
"Prevent screen timeout": "Zapobiegaj wygaszaniu ekranu" "Prevent screen timeout": "Zapobiegaj wygaszaniu ekranu"
}, },
@@ -1529,6 +1559,12 @@
"Resume": { "Resume": {
"Resume": "Wznów" "Resume": "Wznów"
}, },
"Revert": {
"Revert": ""
},
"Reverting in:": {
"Reverting in:": ""
},
"Right": { "Right": {
"Right": "Prawo" "Right": "Prawo"
}, },
@@ -2000,6 +2036,9 @@
"VPN status and quick connect": { "VPN status and quick connect": {
"VPN status and quick connect": "Status VPN i szybkie połączenie" "VPN status and quick connect": "Status VPN i szybkie połączenie"
}, },
"VRR: ": {
"VRR: ": ""
},
"Vibrant palette with playful saturation.": { "Vibrant palette with playful saturation.": {
"Vibrant palette with playful saturation.": "Wibrująca paleta z zabawnym nasyceniem." "Vibrant palette with playful saturation.": "Wibrująca paleta z zabawnym nasyceniem."
}, },

View File

@@ -311,6 +311,9 @@
"Center Section": { "Center Section": {
"Center Section": "Seção Central" "Center Section": "Seção Central"
}, },
"Changes:": {
"Changes:": ""
},
"Check for system updates": { "Check for system updates": {
"Check for system updates": "Verificar por atualizações de sistema" "Check for system updates": "Verificar por atualizações de sistema"
}, },
@@ -410,6 +413,9 @@
"Confirm": { "Confirm": {
"Confirm": "Confirmar" "Confirm": "Confirmar"
}, },
"Confirm Display Changes": {
"Confirm Display Changes": ""
},
"Confirm passkey for ": { "Confirm passkey for ": {
"Confirm passkey for ": "Confirmar chave de acesso para " "Confirm passkey for ": "Confirmar chave de acesso para "
}, },
@@ -584,6 +590,9 @@
"Disable Autoconnect": { "Disable Autoconnect": {
"Disable Autoconnect": "" "Disable Autoconnect": ""
}, },
"Disabled": {
"Disabled": ""
},
"Disconnect": { "Disconnect": {
"Disconnect": "Desconectar" "Disconnect": "Desconectar"
}, },
@@ -611,6 +620,9 @@
"Display currently focused application title": { "Display currently focused application title": {
"Display currently focused application title": "Mostrar título do app em foco" "Display currently focused application title": "Mostrar título do app em foco"
}, },
"Display settings for ": {
"Display settings for ": ""
},
"Display volume and brightness percentage values by default in OSD popups": { "Display volume and brightness percentage values by default in OSD popups": {
"Display volume and brightness percentage values by default in OSD popups": "Mostrar porcentagem de volume e brilho por padrão nos pop ups de OSD" "Display volume and brightness percentage values by default in OSD popups": "Mostrar porcentagem de volume e brilho por padrão nos pop ups de OSD"
}, },
@@ -686,6 +698,9 @@
"Enable loginctl lock integration": { "Enable loginctl lock integration": {
"Enable loginctl lock integration": "Ativar integração de bloqueio do loginctl" "Enable loginctl lock integration": "Ativar integração de bloqueio do loginctl"
}, },
"Enabled": {
"Enabled": ""
},
"End": { "End": {
"End": "Fim" "End": "Fim"
}, },
@@ -950,6 +965,9 @@
"Individual Batteries": { "Individual Batteries": {
"Individual Batteries": "Baterias Individuais" "Individual Batteries": "Baterias Individuais"
}, },
"Inhibit idle timeout when audio or video is playing": {
"Inhibit idle timeout when audio or video is playing": ""
},
"Input Devices": { "Input Devices": {
"Input Devices": "Dispositivos de Entrada" "Input Devices": "Dispositivos de Entrada"
}, },
@@ -974,6 +992,9 @@
"Jobs: ": { "Jobs: ": {
"Jobs: ": "" "Jobs: ": ""
}, },
"Keep Changes": {
"Keep Changes": ""
},
"Keyboard Layout Name": { "Keyboard Layout Name": {
"Keyboard Layout Name": "Nome de Layout do Teclado" "Keyboard Layout Name": "Nome de Layout do Teclado"
}, },
@@ -1142,6 +1163,9 @@
"Mode:": { "Mode:": {
"Mode:": "Modo:" "Mode:": "Modo:"
}, },
"Mode: ": {
"Mode: ": ""
},
"Monitor": { "Monitor": {
"Monitor": "Monitor" "Monitor": "Monitor"
}, },
@@ -1424,6 +1448,9 @@
"Position": { "Position": {
"Position": "Posição" "Position": "Posição"
}, },
"Position: ": {
"Position: ": ""
},
"Power & Security": { "Power & Security": {
"Power & Security": "Energia & Segurança" "Power & Security": "Energia & Segurança"
}, },
@@ -1442,6 +1469,9 @@
"Pressure": { "Pressure": {
"Pressure": "Pressão" "Pressure": "Pressão"
}, },
"Prevent idle for media": {
"Prevent idle for media": ""
},
"Prevent screen timeout": { "Prevent screen timeout": {
"Prevent screen timeout": "Impedir suspensão da tela" "Prevent screen timeout": "Impedir suspensão da tela"
}, },
@@ -1529,6 +1559,12 @@
"Resume": { "Resume": {
"Resume": "" "Resume": ""
}, },
"Revert": {
"Revert": ""
},
"Reverting in:": {
"Reverting in:": ""
},
"Right": { "Right": {
"Right": "Direita" "Right": "Direita"
}, },
@@ -2000,6 +2036,9 @@
"VPN status and quick connect": { "VPN status and quick connect": {
"VPN status and quick connect": "Status de VPN e conexão rápida" "VPN status and quick connect": "Status de VPN e conexão rápida"
}, },
"VRR: ": {
"VRR: ": ""
},
"Vibrant palette with playful saturation.": { "Vibrant palette with playful saturation.": {
"Vibrant palette with playful saturation.": "Paleta vibrante com saturação divertida." "Vibrant palette with playful saturation.": "Paleta vibrante com saturação divertida."
}, },

View File

@@ -311,6 +311,9 @@
"Center Section": { "Center Section": {
"Center Section": "Orta Bölüm" "Center Section": "Orta Bölüm"
}, },
"Changes:": {
"Changes:": ""
},
"Check for system updates": { "Check for system updates": {
"Check for system updates": "Sistem güncellemelerini kontrol et" "Check for system updates": "Sistem güncellemelerini kontrol et"
}, },
@@ -410,6 +413,9 @@
"Confirm": { "Confirm": {
"Confirm": "Onayla" "Confirm": "Onayla"
}, },
"Confirm Display Changes": {
"Confirm Display Changes": ""
},
"Confirm passkey for ": { "Confirm passkey for ": {
"Confirm passkey for ": "Şunun için şifreyi onayla: " "Confirm passkey for ": "Şunun için şifreyi onayla: "
}, },
@@ -584,6 +590,9 @@
"Disable Autoconnect": { "Disable Autoconnect": {
"Disable Autoconnect": "Otomatik Bağlanmayı Devre Dışı Bırak" "Disable Autoconnect": "Otomatik Bağlanmayı Devre Dışı Bırak"
}, },
"Disabled": {
"Disabled": ""
},
"Disconnect": { "Disconnect": {
"Disconnect": "Bağlantıyı Kes" "Disconnect": "Bağlantıyı Kes"
}, },
@@ -611,6 +620,9 @@
"Display currently focused application title": { "Display currently focused application title": {
"Display currently focused application title": "Şu anda odaklanmış uygulamanın başlığını göster" "Display currently focused application title": "Şu anda odaklanmış uygulamanın başlığını göster"
}, },
"Display settings for ": {
"Display settings for ": ""
},
"Display volume and brightness percentage values by default in OSD popups": { "Display volume and brightness percentage values by default in OSD popups": {
"Display volume and brightness percentage values by default in OSD popups": "OSD açılır pencerelerinde varsayılan olarak ses seviyesi ve parlaklık yüzdelik değerlerini göster" "Display volume and brightness percentage values by default in OSD popups": "OSD açılır pencerelerinde varsayılan olarak ses seviyesi ve parlaklık yüzdelik değerlerini göster"
}, },
@@ -686,6 +698,9 @@
"Enable loginctl lock integration": { "Enable loginctl lock integration": {
"Enable loginctl lock integration": "loginctl kilit entegrasyonunu etkinleştir" "Enable loginctl lock integration": "loginctl kilit entegrasyonunu etkinleştir"
}, },
"Enabled": {
"Enabled": ""
},
"End": { "End": {
"End": "Son" "End": "Son"
}, },
@@ -876,7 +891,7 @@
"Group multiple windows of the same app together with a window count indicator": "Aynı uygulamanın birden fazla penceresini pencere sayısı göstergesi ile gruplayın" "Group multiple windows of the same app together with a window count indicator": "Aynı uygulamanın birden fazla penceresini pencere sayısı göstergesi ile gruplayın"
}, },
"HSV": { "HSV": {
"HSV": "" "HSV": "HSV"
}, },
"Health": { "Health": {
"Health": "Sağlık" "Health": "Sağlık"
@@ -885,7 +900,7 @@
"Height to Edge Gap (Exclusive Zone)": "Kenar Boşluğu Yüksekliği (Özel Bölge)" "Height to Edge Gap (Exclusive Zone)": "Kenar Boşluğu Yüksekliği (Özel Bölge)"
}, },
"Hex": { "Hex": {
"Hex": "" "Hex": "Hex"
}, },
"Hex:": { "Hex:": {
"Hex:": "Hex:" "Hex:": "Hex:"
@@ -950,6 +965,9 @@
"Individual Batteries": { "Individual Batteries": {
"Individual Batteries": "Tekil Piller" "Individual Batteries": "Tekil Piller"
}, },
"Inhibit idle timeout when audio or video is playing": {
"Inhibit idle timeout when audio or video is playing": ""
},
"Input Devices": { "Input Devices": {
"Input Devices": "Giriş Aygıtları" "Input Devices": "Giriş Aygıtları"
}, },
@@ -974,6 +992,9 @@
"Jobs: ": { "Jobs: ": {
"Jobs: ": "İşler:" "Jobs: ": "İşler:"
}, },
"Keep Changes": {
"Keep Changes": ""
},
"Keyboard Layout Name": { "Keyboard Layout Name": {
"Keyboard Layout Name": "Klavye Düzeni Adı" "Keyboard Layout Name": "Klavye Düzeni Adı"
}, },
@@ -1142,6 +1163,9 @@
"Mode:": { "Mode:": {
"Mode:": "Mod:" "Mode:": "Mod:"
}, },
"Mode: ": {
"Mode: ": ""
},
"Monitor": { "Monitor": {
"Monitor": "Monitör" "Monitor": "Monitör"
}, },
@@ -1424,6 +1448,9 @@
"Position": { "Position": {
"Position": "Pozisyon" "Position": "Pozisyon"
}, },
"Position: ": {
"Position: ": ""
},
"Power & Security": { "Power & Security": {
"Power & Security": "Güç & Güvenlik" "Power & Security": "Güç & Güvenlik"
}, },
@@ -1442,6 +1469,9 @@
"Pressure": { "Pressure": {
"Pressure": "Basınç" "Pressure": "Basınç"
}, },
"Prevent idle for media": {
"Prevent idle for media": ""
},
"Prevent screen timeout": { "Prevent screen timeout": {
"Prevent screen timeout": "Ekran zaman aşımını önle" "Prevent screen timeout": "Ekran zaman aşımını önle"
}, },
@@ -1488,7 +1518,7 @@
"Quick note-taking slideout panel": "Hızlı not alma sürgü paneli" "Quick note-taking slideout panel": "Hızlı not alma sürgü paneli"
}, },
"RGB": { "RGB": {
"RGB": "" "RGB": "RGB"
}, },
"Rain Chance": { "Rain Chance": {
"Rain Chance": "Yağış İhtimali" "Rain Chance": "Yağış İhtimali"
@@ -1529,6 +1559,12 @@
"Resume": { "Resume": {
"Resume": "Sürdür" "Resume": "Sürdür"
}, },
"Revert": {
"Revert": ""
},
"Reverting in:": {
"Reverting in:": ""
},
"Right": { "Right": {
"Right": "Sağ" "Right": "Sağ"
}, },
@@ -2000,6 +2036,9 @@
"VPN status and quick connect": { "VPN status and quick connect": {
"VPN status and quick connect": "VPN durumu ve hızlı bağlanma" "VPN status and quick connect": "VPN durumu ve hızlı bağlanma"
}, },
"VRR: ": {
"VRR: ": ""
},
"Vibrant palette with playful saturation.": { "Vibrant palette with playful saturation.": {
"Vibrant palette with playful saturation.": "Oynak doygunluğa sahip canlı palet" "Vibrant palette with playful saturation.": "Oynak doygunluğa sahip canlı palet"
}, },

View File

@@ -311,6 +311,9 @@
"Center Section": { "Center Section": {
"Center Section": "中间区域" "Center Section": "中间区域"
}, },
"Changes:": {
"Changes:": ""
},
"Check for system updates": { "Check for system updates": {
"Check for system updates": "检查系统更新" "Check for system updates": "检查系统更新"
}, },
@@ -410,6 +413,9 @@
"Confirm": { "Confirm": {
"Confirm": "确认" "Confirm": "确认"
}, },
"Confirm Display Changes": {
"Confirm Display Changes": ""
},
"Confirm passkey for ": { "Confirm passkey for ": {
"Confirm passkey for ": "确认密钥 " "Confirm passkey for ": "确认密钥 "
}, },
@@ -584,6 +590,9 @@
"Disable Autoconnect": { "Disable Autoconnect": {
"Disable Autoconnect": "禁用自动连接" "Disable Autoconnect": "禁用自动连接"
}, },
"Disabled": {
"Disabled": ""
},
"Disconnect": { "Disconnect": {
"Disconnect": "断开连接" "Disconnect": "断开连接"
}, },
@@ -611,6 +620,9 @@
"Display currently focused application title": { "Display currently focused application title": {
"Display currently focused application title": "显示当前聚焦应用的标题" "Display currently focused application title": "显示当前聚焦应用的标题"
}, },
"Display settings for ": {
"Display settings for ": ""
},
"Display volume and brightness percentage values by default in OSD popups": { "Display volume and brightness percentage values by default in OSD popups": {
"Display volume and brightness percentage values by default in OSD popups": "在OSD弹窗中默认显示音量与亮度数值" "Display volume and brightness percentage values by default in OSD popups": "在OSD弹窗中默认显示音量与亮度数值"
}, },
@@ -686,6 +698,9 @@
"Enable loginctl lock integration": { "Enable loginctl lock integration": {
"Enable loginctl lock integration": "启用 loginctl 锁定集成" "Enable loginctl lock integration": "启用 loginctl 锁定集成"
}, },
"Enabled": {
"Enabled": ""
},
"End": { "End": {
"End": "结束" "End": "结束"
}, },
@@ -950,6 +965,9 @@
"Individual Batteries": { "Individual Batteries": {
"Individual Batteries": "分别显示电池" "Individual Batteries": "分别显示电池"
}, },
"Inhibit idle timeout when audio or video is playing": {
"Inhibit idle timeout when audio or video is playing": ""
},
"Input Devices": { "Input Devices": {
"Input Devices": "输入设备" "Input Devices": "输入设备"
}, },
@@ -974,6 +992,9 @@
"Jobs: ": { "Jobs: ": {
"Jobs: ": "任务: " "Jobs: ": "任务: "
}, },
"Keep Changes": {
"Keep Changes": ""
},
"Keyboard Layout Name": { "Keyboard Layout Name": {
"Keyboard Layout Name": "键盘布局名称" "Keyboard Layout Name": "键盘布局名称"
}, },
@@ -1142,6 +1163,9 @@
"Mode:": { "Mode:": {
"Mode:": "模式:" "Mode:": "模式:"
}, },
"Mode: ": {
"Mode: ": ""
},
"Monitor": { "Monitor": {
"Monitor": "显示器" "Monitor": "显示器"
}, },
@@ -1424,6 +1448,9 @@
"Position": { "Position": {
"Position": "位置" "Position": "位置"
}, },
"Position: ": {
"Position: ": ""
},
"Power & Security": { "Power & Security": {
"Power & Security": "电源与安全" "Power & Security": "电源与安全"
}, },
@@ -1442,6 +1469,9 @@
"Pressure": { "Pressure": {
"Pressure": "气压" "Pressure": "气压"
}, },
"Prevent idle for media": {
"Prevent idle for media": ""
},
"Prevent screen timeout": { "Prevent screen timeout": {
"Prevent screen timeout": "防止屏幕超时" "Prevent screen timeout": "防止屏幕超时"
}, },
@@ -1529,6 +1559,12 @@
"Resume": { "Resume": {
"Resume": "恢复" "Resume": "恢复"
}, },
"Revert": {
"Revert": ""
},
"Reverting in:": {
"Reverting in:": ""
},
"Right": { "Right": {
"Right": "右侧" "Right": "右侧"
}, },
@@ -2000,6 +2036,9 @@
"VPN status and quick connect": { "VPN status and quick connect": {
"VPN status and quick connect": "VPN 状态与快速连接" "VPN status and quick connect": "VPN 状态与快速连接"
}, },
"VRR: ": {
"VRR: ": ""
},
"Vibrant palette with playful saturation.": { "Vibrant palette with playful saturation.": {
"Vibrant palette with playful saturation.": "充满活力的调色板,有着俏皮的饱和度。" "Vibrant palette with playful saturation.": "充满活力的调色板,有着俏皮的饱和度。"
}, },

View File

@@ -311,6 +311,9 @@
"Center Section": { "Center Section": {
"Center Section": "中間區塊" "Center Section": "中間區塊"
}, },
"Changes:": {
"Changes:": ""
},
"Check for system updates": { "Check for system updates": {
"Check for system updates": "檢查系統更新" "Check for system updates": "檢查系統更新"
}, },
@@ -410,6 +413,9 @@
"Confirm": { "Confirm": {
"Confirm": "確認" "Confirm": "確認"
}, },
"Confirm Display Changes": {
"Confirm Display Changes": ""
},
"Confirm passkey for ": { "Confirm passkey for ": {
"Confirm passkey for ": "確認密碼 " "Confirm passkey for ": "確認密碼 "
}, },
@@ -584,6 +590,9 @@
"Disable Autoconnect": { "Disable Autoconnect": {
"Disable Autoconnect": "關閉自動連線" "Disable Autoconnect": "關閉自動連線"
}, },
"Disabled": {
"Disabled": ""
},
"Disconnect": { "Disconnect": {
"Disconnect": "斷開連線" "Disconnect": "斷開連線"
}, },
@@ -611,6 +620,9 @@
"Display currently focused application title": { "Display currently focused application title": {
"Display currently focused application title": "顯示目前焦點應用程式的標題" "Display currently focused application title": "顯示目前焦點應用程式的標題"
}, },
"Display settings for ": {
"Display settings for ": ""
},
"Display volume and brightness percentage values by default in OSD popups": { "Display volume and brightness percentage values by default in OSD popups": {
"Display volume and brightness percentage values by default in OSD popups": "在 OSD 彈出視窗中預設顯示音量和亮度百分比值" "Display volume and brightness percentage values by default in OSD popups": "在 OSD 彈出視窗中預設顯示音量和亮度百分比值"
}, },
@@ -686,6 +698,9 @@
"Enable loginctl lock integration": { "Enable loginctl lock integration": {
"Enable loginctl lock integration": "啟用 loginctl 鎖定整合" "Enable loginctl lock integration": "啟用 loginctl 鎖定整合"
}, },
"Enabled": {
"Enabled": ""
},
"End": { "End": {
"End": "結束" "End": "結束"
}, },
@@ -950,6 +965,9 @@
"Individual Batteries": { "Individual Batteries": {
"Individual Batteries": "獨立電池" "Individual Batteries": "獨立電池"
}, },
"Inhibit idle timeout when audio or video is playing": {
"Inhibit idle timeout when audio or video is playing": ""
},
"Input Devices": { "Input Devices": {
"Input Devices": "輸入設備" "Input Devices": "輸入設備"
}, },
@@ -974,6 +992,9 @@
"Jobs: ": { "Jobs: ": {
"Jobs: ": "" "Jobs: ": ""
}, },
"Keep Changes": {
"Keep Changes": ""
},
"Keyboard Layout Name": { "Keyboard Layout Name": {
"Keyboard Layout Name": "鍵盤布局名稱" "Keyboard Layout Name": "鍵盤布局名稱"
}, },
@@ -1142,6 +1163,9 @@
"Mode:": { "Mode:": {
"Mode:": "模式:" "Mode:": "模式:"
}, },
"Mode: ": {
"Mode: ": ""
},
"Monitor": { "Monitor": {
"Monitor": "螢幕" "Monitor": "螢幕"
}, },
@@ -1424,6 +1448,9 @@
"Position": { "Position": {
"Position": "位置" "Position": "位置"
}, },
"Position: ": {
"Position: ": ""
},
"Power & Security": { "Power & Security": {
"Power & Security": "電源與安全" "Power & Security": "電源與安全"
}, },
@@ -1442,6 +1469,9 @@
"Pressure": { "Pressure": {
"Pressure": "氣壓" "Pressure": "氣壓"
}, },
"Prevent idle for media": {
"Prevent idle for media": ""
},
"Prevent screen timeout": { "Prevent screen timeout": {
"Prevent screen timeout": "防止螢幕超時" "Prevent screen timeout": "防止螢幕超時"
}, },
@@ -1529,6 +1559,12 @@
"Resume": { "Resume": {
"Resume": "" "Resume": ""
}, },
"Revert": {
"Revert": ""
},
"Reverting in:": {
"Reverting in:": ""
},
"Right": { "Right": {
"Right": "右方" "Right": "右方"
}, },
@@ -2000,6 +2036,9 @@
"VPN status and quick connect": { "VPN status and quick connect": {
"VPN status and quick connect": "VPN 狀態和快速連線" "VPN status and quick connect": "VPN 狀態和快速連線"
}, },
"VRR: ": {
"VRR: ": ""
},
"Vibrant palette with playful saturation.": { "Vibrant palette with playful saturation.": {
"Vibrant palette with playful saturation.": "色彩鮮明且飽和度活潑的調色板。" "Vibrant palette with playful saturation.": "色彩鮮明且飽和度活潑的調色板。"
}, },

View File

@@ -713,6 +713,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Changes:",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Check for system updates", "term": "Check for system updates",
"translation": "", "translation": "",
@@ -937,6 +944,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Confirm Display Changes",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Confirm passkey for ", "term": "Confirm passkey for ",
"translation": "", "translation": "",
@@ -1322,6 +1336,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Disabled",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Disconnect", "term": "Disconnect",
"translation": "", "translation": "",
@@ -1385,6 +1406,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Display settings for ",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Display volume and brightness percentage values by default in OSD popups", "term": "Display volume and brightness percentage values by default in OSD popups",
"translation": "", "translation": "",
@@ -1560,6 +1588,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Enabled",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "End", "term": "End",
"translation": "", "translation": "",
@@ -2148,6 +2183,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Inhibit idle timeout when audio or video is playing",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Input Devices", "term": "Input Devices",
"translation": "", "translation": "",
@@ -2204,6 +2246,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Keep Changes",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Keyboard Layout Name", "term": "Keyboard Layout Name",
"translation": "", "translation": "",
@@ -2589,6 +2638,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Mode: ",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Monitor Selection:", "term": "Monitor Selection:",
"translation": "", "translation": "",
@@ -3240,6 +3296,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Position: ",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Power & Security", "term": "Power & Security",
"translation": "", "translation": "",
@@ -3282,6 +3345,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Prevent idle for media",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Prevent screen timeout", "term": "Prevent screen timeout",
"translation": "", "translation": "",
@@ -3478,6 +3548,20 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Revert",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "Reverting in:",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Right", "term": "Right",
"translation": "", "translation": "",
@@ -4549,6 +4633,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "VRR: ",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Vibrant palette with playful saturation.", "term": "Vibrant palette with playful saturation.",
"translation": "", "translation": "",