diff --git a/Common/SettingsData.qml b/Common/SettingsData.qml index b5aa08ae..3c0bc6f3 100644 --- a/Common/SettingsData.qml +++ b/Common/SettingsData.qml @@ -224,6 +224,7 @@ Singleton { property int batterySuspendTimeout: 0 property int batterySuspendBehavior: SettingsData.SuspendBehavior.Suspend property bool lockBeforeSuspend: false + property bool preventIdleForMedia: false property bool loginctlLockIntegration: true property string launchPrefix: "" property var brightnessDevicePins: ({}) diff --git a/Common/settings/SettingsSpec.js b/Common/settings/SettingsSpec.js index 88a7b12d..ff3fc396 100644 --- a/Common/settings/SettingsSpec.js +++ b/Common/settings/SettingsSpec.js @@ -141,6 +141,7 @@ var SPEC = { batterySuspendTimeout: { def: 0 }, batterySuspendBehavior: { def: 0 }, lockBeforeSuspend: { def: false }, + preventIdleForMedia: { def: false }, loginctlLockIntegration: { def: true }, launchPrefix: { def: "" }, brightnessDevicePins: { def: {} }, diff --git a/Modals/Settings/PowerSettings.qml b/Modals/Settings/PowerSettings.qml index af067eec..dbd02cf2 100644 --- a/Modals/Settings/PowerSettings.qml +++ b/Modals/Settings/PowerSettings.qml @@ -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 { 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 timeoutValues: [0, 60, 120, 180, 300, 600, 900, 1200, 1800, 3600, 5400, 7200, 10800] + addHorizontalPadding: true text: I18n.tr("Automatically lock after") 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 timeoutValues: [0, 60, 120, 180, 300, 600, 900, 1200, 1800, 3600, 5400, 7200, 10800] + addHorizontalPadding: true text: I18n.tr("Turn off monitors after") 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 timeoutValues: [0, 60, 120, 180, 300, 600, 900, 1200, 1800, 3600, 5400, 7200, 10800] + addHorizontalPadding: true text: I18n.tr("Suspend system after") options: timeoutOptions diff --git a/Services/IdleService.qml b/Services/IdleService.qml index bfb72cf6..b0d4301f 100644 --- a/Services/IdleService.qml +++ b/Services/IdleService.qml @@ -4,6 +4,7 @@ pragma ComponentBehavior: Bound import QtQuick import Quickshell import Quickshell.Wayland +import Quickshell.Services.Mpris import qs.Common 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 respectInhibitors: true property bool _enableGate: true @@ -28,6 +37,8 @@ Singleton { readonly property int suspendTimeout: isOnBattery ? SettingsData.batterySuspendTimeout : SettingsData.acSuspendTimeout readonly property int suspendBehavior: isOnBattery ? SettingsData.batterySuspendBehavior : SettingsData.acSuspendBehavior + readonly property bool mediaPlaying: MprisController.activePlayer !== null + onMonitorTimeoutChanged: _rearmIdleMonitors() onLockTimeoutChanged: _rearmIdleMonitors() onSuspendTimeoutChanged: _rearmIdleMonitors() @@ -45,6 +56,7 @@ Singleton { property var monitorOffMonitor: null property var lockMonitor: null property var suspendMonitor: null + property var mediaInhibitor: null function wake() { requestMonitorOn() @@ -99,6 +111,20 @@ Singleton { 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) { console.warn("IdleService: Error creating IdleMonitors:", e) } diff --git a/Widgets/DankDropdown.qml b/Widgets/DankDropdown.qml index 1a31b7c0..54638a44 100644 --- a/Widgets/DankDropdown.qml +++ b/Widgets/DankDropdown.qml @@ -21,6 +21,7 @@ Item { property bool alignPopupRight: false property int dropdownWidth: 200 property bool compactMode: text === "" && description === "" + property bool addHorizontalPadding: false signal valueChanged(string value) @@ -40,6 +41,7 @@ Item { anchors.left: parent.left anchors.right: dropdown.left anchors.verticalCenter: parent.verticalCenter + anchors.leftMargin: root.addHorizontalPadding ? Theme.spacingM : 0 anchors.rightMargin: Theme.spacingL spacing: Theme.spacingXS visible: !root.compactMode @@ -67,6 +69,7 @@ Item { width: root.compactMode ? parent.width : (root.popupWidth === -1 ? undefined : (root.popupWidth > 0 ? root.popupWidth : root.dropdownWidth)) height: 40 anchors.right: parent.right + anchors.rightMargin: root.addHorizontalPadding && !root.compactMode ? Theme.spacingM : 0 anchors.verticalCenter: parent.verticalCenter radius: Theme.cornerRadius color: dropdownArea.containsMouse || dropdownMenu.visible ? Theme.surfaceContainerHigh : Theme.withAlpha(Theme.surfaceContainer, Theme.popupTransparency) diff --git a/translations/en.json b/translations/en.json index 963dd4b6..65f1af10 100644 --- a/translations/en.json +++ b/translations/en.json @@ -398,7 +398,7 @@ { "term": "Automatically lock after", "context": "Automatically lock after", - "reference": "Modals/Settings/PowerSettings.qml:166", + "reference": "Modals/Settings/PowerSettings.qml:176", "comment": "" }, { @@ -611,6 +611,12 @@ "reference": "Modules/Settings/DankBarTab.qml:1969", "comment": "" }, + { + "term": "Changes:", + "context": "Changes:", + "reference": "Modals/DisplayConfirmationModal.qml:123", + "comment": "" + }, { "term": "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", "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": "" }, { "term": "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": "" }, { "term": "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": "" }, { "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", - "reference": "Modals/Settings/PowerSettings.qml:566", + "reference": "Modals/Settings/PowerSettings.qml:578", "comment": "" }, { "term": "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": "" }, { "term": "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": "" }, { @@ -803,6 +809,12 @@ "reference": "Modals/BluetoothPairingModal.qml:292", "comment": "" }, + { + "term": "Confirm Display Changes", + "context": "Confirm Display Changes", + "reference": "Modals/DisplayConfirmationModal.qml:78", + "comment": "" + }, { "term": "Confirm passkey for ", "context": "Confirm passkey for ", @@ -968,7 +980,7 @@ { "term": "Custom Power Actions", "context": "Custom Power Actions", - "reference": "Modals/Settings/PowerSettings.qml:392", + "reference": "Modals/Settings/PowerSettings.qml:404", "comment": "" }, { @@ -1133,6 +1145,12 @@ "reference": "Modules/ControlCenter/Details/NetworkDetail.qml:623", "comment": "" }, + { + "term": "Disabled", + "context": "Disabled", + "reference": "Modals/DisplayConfirmationModal.qml:145", + "comment": "" + }, { "term": "Disconnect", "context": "Disconnect", @@ -1187,6 +1205,12 @@ "reference": "Modules/Settings/DankBarTab.qml:38", "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", "context": "Display volume and brightness percentage values by default in OSD popups", @@ -1337,6 +1361,12 @@ "reference": "Modals/Settings/PowerSettings.qml:81", "comment": "" }, + { + "term": "Enabled", + "context": "Enabled", + "reference": "Modals/DisplayConfirmationModal.qml:145", + "comment": "" + }, { "term": "End", "context": "End", @@ -1808,7 +1838,7 @@ { "term": "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": "" }, { @@ -1841,6 +1871,12 @@ "reference": "Modules/DankBar/Popouts/BatteryPopout.qml:377", "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", "context": "Input Devices", @@ -1889,6 +1925,12 @@ "reference": "Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:20", "comment": "" }, + { + "term": "Keep Changes", + "context": "Keep Changes", + "reference": "Modals/DisplayConfirmationModal.qml:198", + "comment": "" + }, { "term": "Keyboard Layout Name", "context": "Keyboard Layout Name", @@ -2219,6 +2261,12 @@ "reference": "Modules/Settings/PersonalizationTab.qml:1136", "comment": "" }, + { + "term": "Mode: ", + "context": "Mode: ", + "reference": "Modals/DisplayConfirmationModal.qml:138", + "comment": "" + }, { "term": "Monitor Selection:", "context": "Monitor Selection:", @@ -2777,6 +2825,12 @@ "reference": "Modules/Settings/DankBarTab.qml:753", "comment": "" }, + { + "term": "Position: ", + "context": "Position: ", + "reference": "Modals/DisplayConfirmationModal.qml:131", + "comment": "" + }, { "term": "Power & Security", "context": "Power & Security", @@ -2786,7 +2840,7 @@ { "term": "Power Action Confirmation", "context": "Power Action Confirmation", - "reference": "Modals/Settings/PowerSettings.qml:348", + "reference": "Modals/Settings/PowerSettings.qml:360", "comment": "" }, { @@ -2813,6 +2867,12 @@ "reference": "Modules/DankDash/WeatherTab.qml:401, Modules/Settings/TimeWeatherTab.qml:1228", "comment": "" }, + { + "term": "Prevent idle for media", + "context": "Prevent idle for media", + "reference": "Modals/Settings/PowerSettings.qml:163", + "comment": "" + }, { "term": "Prevent screen timeout", "context": "Prevent screen timeout", @@ -2960,7 +3020,7 @@ { "term": "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": "" }, { @@ -2981,6 +3041,18 @@ "reference": "Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:124", "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", "context": "Right", @@ -3086,7 +3158,7 @@ { "term": "Search...", "context": "Search...", - "reference": "Widgets/DankDropdown.qml:264", + "reference": "Widgets/DankDropdown.qml:267", "comment": "" }, { @@ -3212,7 +3284,7 @@ { "term": "Show Confirmation on Power Actions", "context": "Show Confirmation on Power Actions", - "reference": "Modals/Settings/PowerSettings.qml:358", + "reference": "Modals/Settings/PowerSettings.qml:370", "comment": "" }, { @@ -3452,13 +3524,13 @@ { "term": "Suspend behavior", "context": "Suspend behavior", - "reference": "Modals/Settings/PowerSettings.qml:275", + "reference": "Modals/Settings/PowerSettings.qml:287", "comment": "" }, { "term": "Suspend system after", "context": "Suspend system after", - "reference": "Modals/Settings/PowerSettings.qml:238", + "reference": "Modals/Settings/PowerSettings.qml:250", "comment": "" }, { @@ -3728,7 +3800,7 @@ { "term": "Turn off monitors after", "context": "Turn off monitors after", - "reference": "Modals/Settings/PowerSettings.qml:202", + "reference": "Modals/Settings/PowerSettings.qml:213", "comment": "" }, { @@ -3899,6 +3971,12 @@ "reference": "Modules/Settings/DankBarTab.qml:139", "comment": "" }, + { + "term": "VRR: ", + "context": "VRR: ", + "reference": "Modals/DisplayConfirmationModal.qml:145", + "comment": "" + }, { "term": "Vibrant palette with playful saturation.", "context": "Vibrant palette with playful saturation.", diff --git a/translations/poexports/it.json b/translations/poexports/it.json index 6c3d8ec6..b786efcf 100644 --- a/translations/poexports/it.json +++ b/translations/poexports/it.json @@ -297,10 +297,10 @@ "CPU usage indicator": "Indicatore uso CPU" }, "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": "Avviso Filtro Mancante CUPS" }, "Cancel": { "Cancel": "Annulla" @@ -311,6 +311,9 @@ "Center Section": { "Center Section": "Sezione Centrale" }, + "Changes:": { + "Changes:": "" + }, "Check for system updates": { "Check for system updates": "Controlla aggiornamenti di sistema" }, @@ -410,6 +413,9 @@ "Confirm": { "Confirm": "Conferma" }, + "Confirm Display Changes": { + "Confirm Display Changes": "" + }, "Confirm passkey for ": { "Confirm passkey for ": "Conferma passkey per" }, @@ -426,7 +432,7 @@ "Connected Displays": "Display Connessi" }, "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.": "Connessione fallita. Controlla la password e riprova" @@ -468,10 +474,10 @@ "Corner Radius (0 = square corners)": "Raggio Angoli (0 = angoli squadrati)" }, "Corner Radius Override": { - "Corner Radius Override": "" + "Corner Radius Override": "Sovrascrittura Raggio Angoli" }, "Cover Open": { - "Cover Open": "" + "Cover Open": "Coperchio Aperto" }, "Create Dir": { "Create Dir": "Crea Cartella" @@ -584,6 +590,9 @@ "Disable Autoconnect": { "Disable Autoconnect": "Disabilita connessione automatica" }, + "Disabled": { + "Disabled": "" + }, "Disconnect": { "Disconnect": "Disconnetti" }, @@ -611,6 +620,9 @@ "Display currently focused application title": { "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": "Mostra di default la percentuale volume e luminosità nei popups OSD" }, @@ -642,7 +654,7 @@ "Donate on Ko-fi": "Dona su Ko-fi" }, "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.": "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": "Abilita l'integrazione lock loginctl" }, + "Enabled": { + "Enabled": "" + }, "End": { "End": "Fine" }, @@ -720,7 +735,7 @@ "Enter password for ": "Inserisci password per" }, "Error": { - "Error": "" + "Error": "Errore" }, "Exclusive Zone Offset": { "Exclusive Zone Offset": "Offset Zona Esclusa" @@ -735,10 +750,10 @@ "Failed to activate configuration": "Impossibile attivare configurazione" }, "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": "Impossibile cancellare il lavoro selezionato" }, "Failed to connect VPN": { "Failed to connect VPN": "Impossibile connettersi alla VPN" @@ -759,13 +774,13 @@ "Failed to enable WiFi": "Impossibile abilitare WiFi" }, "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": "Impossibile rimuovere dispositivo" }, "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": "Impossibile impostare immagine profilo" @@ -861,7 +876,7 @@ "Good": "Buona" }, "Goth Corner Radius": { - "Goth Corner Radius": "" + "Goth Corner Radius": "Raggio Angoli Gotici" }, "Goth Corners": { "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" }, "HSV": { - "HSV": "" + "HSV": "HSV" }, "Health": { "Health": "Salute" @@ -885,7 +900,7 @@ "Height to Edge Gap (Exclusive Zone)": "Altezza Gap Angolo (Zona Esclusa)" }, "Hex": { - "Hex": "" + "Hex": "Hex" }, "Hex:": { "Hex:": "Hex:" @@ -924,7 +939,7 @@ "Icon Theme": "Tema Icona" }, "Idle": { - "Idle": "" + "Idle": "Inattività" }, "Idle Inhibitor": { "Idle Inhibitor": "Inibitore Riposo" @@ -950,6 +965,9 @@ "Individual Batteries": { "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": "Dispositivi Input" }, @@ -957,7 +975,7 @@ "Install plugins from the DMS plugin registry": "Installa plugins dal registro dei plugin DMS" }, "Interlock Open": { - "Interlock Open": "" + "Interlock Open": "Interblocco Aperto" }, "Internet": { "Internet": "Internet" @@ -969,10 +987,13 @@ "Invert on mode change": "Invertire al cambio di modalità" }, "Jobs": { - "Jobs": "" + "Jobs": "Lavori" }, "Jobs: ": { - "Jobs: ": "" + "Jobs: ": "Lavori:" + }, + "Keep Changes": { + "Keep Changes": "" }, "Keyboard Layout Name": { "Keyboard Layout Name": "Nome Layout Tastiera" @@ -1071,19 +1092,19 @@ "Manual Show/Hide": "Mostra/Nascondi Manuale" }, "Margin": { - "Margin": "" + "Margin": "Margini" }, "Marker Supply Empty": { - "Marker Supply Empty": "" + "Marker Supply Empty": "Scorta Marker Vuota" }, "Marker Supply Low": { - "Marker Supply Low": "" + "Marker Supply Low": "Scorta Marker Bassa" }, "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": "Scarto Marcatori Pieno" }, "Material Colors": { "Material Colors": "Colori Material" @@ -1107,16 +1128,16 @@ "Media Controls": "Controlli Media" }, "Media Empty": { - "Media Empty": "" + "Media Empty": "Media Vuoto" }, "Media Jam": { - "Media Jam": "" + "Media Jam": "Media Inceppato" }, "Media Low": { - "Media Low": "" + "Media Low": "Media Basso" }, "Media Needed": { - "Media Needed": "" + "Media Needed": "Media Richiesti" }, "Media Player Settings": { "Media Player Settings": "Impostazioni Media Player" @@ -1142,6 +1163,9 @@ "Mode:": { "Mode:": "Modalità:" }, + "Mode: ": { + "Mode: ": "" + }, "Monitor": { "Monitor": "Monitor" }, @@ -1158,7 +1182,7 @@ "Mount": "Monta" }, "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.": "Tavolozza sobria con toni sommessi e calmanti." @@ -1245,10 +1269,10 @@ "No plugins found.": "Nessun plugin trovato." }, "No printer found": { - "No printer found": "" + "No printer found": "Nessuna stampante trovata" }, "None": { - "None": "" + "None": "Nulla" }, "Normal Priority": { "Normal Priority": "Priorità Normale" @@ -1296,7 +1320,7 @@ "Office": "Ufficio" }, "Offline Report": { - "Offline Report": "" + "Offline Report": "Riepilogo Offline" }, "On-Screen Displays": { "On-Screen Displays": "Visualizzazione A Schermo" @@ -1317,16 +1341,16 @@ "Open search bar to find text": "Apri barra di ricerca per cercare testo" }, "Other": { - "Other": "" + "Other": "Altro" }, "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": "Area Uscita Piena" }, "Output Tray Missing": { - "Output Tray Missing": "" + "Output Tray Missing": "Vassoio Uscita Mancante" }, "Overview": { "Overview": "Panoramica" @@ -1353,10 +1377,10 @@ "Password": "Password" }, "Pause": { - "Pause": "" + "Pause": "Pausa" }, "Paused": { - "Paused": "" + "Paused": "Messo in Pausa" }, "Per-Mode Wallpapers": { "Per-Mode Wallpapers": "Sfondo Per Modalità" @@ -1424,6 +1448,9 @@ "Position": { "Position": "Posizione" }, + "Position: ": { + "Position: ": "" + }, "Power & Security": { "Power & Security": "Alimentazione & Sicurezza" }, @@ -1442,6 +1469,9 @@ "Pressure": { "Pressure": "Pressione" }, + "Prevent idle for media": { + "Prevent idle for media": "" + }, "Prevent screen timeout": { "Prevent screen timeout": "Previeni timeout schermo" }, @@ -1449,13 +1479,13 @@ "Primary": "Primario" }, "Print Server not available": { - "Print Server not available": "" + "Print Server not available": "Server di Stampa non disponibile" }, "Printers": { - "Printers": "" + "Printers": "Stampanti" }, "Printers: ": { - "Printers: ": "" + "Printers: ": "Stampanti:" }, "Privacy Indicator": { "Privacy Indicator": "Indicatore Privacy" @@ -1464,7 +1494,7 @@ "Process": "Processo" }, "Processing": { - "Processing": "" + "Processing": "Processando" }, "Profile Image Error": { "Profile Image Error": "Errore Immagine Profilo" @@ -1488,13 +1518,13 @@ "Quick note-taking slideout panel": "Pannello scorrevole per la presa veloce di appunti" }, "RGB": { - "RGB": "" + "RGB": "RGB" }, "Rain Chance": { "Rain Chance": "Possibili Piogge" }, "Reason": { - "Reason": "" + "Reason": "Motivo" }, "Reboot": { "Reboot": "Riavvia" @@ -1515,7 +1545,7 @@ "Remove": "Rimuovi" }, "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": "Richiedi conferma alle azioni di spegnimento, riavvio, sospensione, hibernazione e logout" @@ -1527,7 +1557,13 @@ "Resources": "Risorse" }, "Resume": { - "Resume": "" + "Resume": "Riprendi" + }, + "Revert": { + "Revert": "" + }, + "Reverting in:": { + "Reverting in:": "" }, "Right": { "Right": "Destra" @@ -1710,7 +1746,7 @@ "Shows when microphone, camera, or screen sharing is active": "Mostra quando microfono, videocamera, o condivisione schermo sono attivi" }, "Shutdown": { - "Shutdown": "" + "Shutdown": "Spegni" }, "Size": { "Size": "Dimensione" @@ -1731,7 +1767,7 @@ "Spacing": "Spaziatura" }, "Spool Area Full": { - "Spool Area Full": "" + "Spool Area Full": "Area Spool Piena" }, "Square Corners": { "Square Corners": "Angoli squadrati" @@ -1746,13 +1782,13 @@ "Status": "Stato" }, "Stopped": { - "Stopped": "" + "Stopped": "Stoppato" }, "Stopped Partly": { - "Stopped Partly": "" + "Stopped Partly": "Parzialmente Stoppato" }, "Stopping": { - "Stopping": "" + "Stopping": "Stoppando" }, "Storage & Disks": { "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 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": "Tema & Colori" @@ -1872,7 +1908,7 @@ "Time & Weather": "Orario & Meteo" }, "Timed Out": { - "Timed Out": "" + "Timed Out": "Scaduto" }, "To Full": { "To Full": "A Pieno" @@ -1893,10 +1929,10 @@ "Tomorrow": "Domani" }, "Toner Empty": { - "Toner Empty": "" + "Toner Empty": "Toner Vuoto" }, "Toner Low": { - "Toner Low": "" + "Toner Low": "Toner Basso" }, "Top": { "Top": "Superiore" @@ -2000,6 +2036,9 @@ "VPN status and quick connect": { "VPN status and quick connect": "Stato VPN e connessione veloce" }, + "VRR: ": { + "VRR: ": "" + }, "Vibrant palette with playful saturation.": { "Vibrant palette with playful saturation.": "Tavolozza vibrate con saturazione giocosa" }, @@ -2028,7 +2067,7 @@ "Wallpapers": "Sfondi" }, "Warning": { - "Warning": "" + "Warning": "Attenzione" }, "Wave Progress Bars": { "Wave Progress Bars": "Progress Bar ad Onde" diff --git a/translations/poexports/ja.json b/translations/poexports/ja.json index a3ca3c3c..af315e04 100644 --- a/translations/poexports/ja.json +++ b/translations/poexports/ja.json @@ -311,6 +311,9 @@ "Center Section": { "Center Section": "センターセクション" }, + "Changes:": { + "Changes:": "" + }, "Check for system updates": { "Check for system updates": "システムアップデートを検査" }, @@ -410,6 +413,9 @@ "Confirm": { "Confirm": "確認" }, + "Confirm Display Changes": { + "Confirm Display Changes": "" + }, "Confirm passkey for ": { "Confirm passkey for ": "パスキーを確認 " }, @@ -584,6 +590,9 @@ "Disable Autoconnect": { "Disable Autoconnect": "自動接続を無効" }, + "Disabled": { + "Disabled": "" + }, "Disconnect": { "Disconnect": "切断" }, @@ -611,6 +620,9 @@ "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": "OSDポップアップに音量と輝度のパーセンテージ値をデフォルトで表示" }, @@ -686,6 +698,9 @@ "Enable loginctl lock integration": { "Enable loginctl lock integration": "ログインロックの統合を有効に" }, + "Enabled": { + "Enabled": "" + }, "End": { "End": "終わり" }, @@ -950,6 +965,9 @@ "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": "入力デバイス" }, @@ -974,6 +992,9 @@ "Jobs: ": { "Jobs: ": "ジョブ: " }, + "Keep Changes": { + "Keep Changes": "" + }, "Keyboard Layout Name": { "Keyboard Layout Name": "キーボードレイアウト名" }, @@ -1142,6 +1163,9 @@ "Mode:": { "Mode:": "モード:" }, + "Mode: ": { + "Mode: ": "" + }, "Monitor": { "Monitor": "モニター" }, @@ -1424,6 +1448,9 @@ "Position": { "Position": "位置" }, + "Position: ": { + "Position: ": "" + }, "Power & Security": { "Power & Security": "電源とセキュリティ" }, @@ -1442,6 +1469,9 @@ "Pressure": { "Pressure": "プレッシャー" }, + "Prevent idle for media": { + "Prevent idle for media": "" + }, "Prevent screen timeout": { "Prevent screen timeout": "画面のタイムアウトを防止" }, @@ -1529,6 +1559,12 @@ "Resume": { "Resume": "レジュメ" }, + "Revert": { + "Revert": "" + }, + "Reverting in:": { + "Reverting in:": "" + }, "Right": { "Right": "右" }, @@ -2000,6 +2036,9 @@ "VPN status and quick connect": { "VPN status and quick connect": "VPNステータスとクイック接続" }, + "VRR: ": { + "VRR: ": "" + }, "Vibrant palette with playful saturation.": { "Vibrant palette with playful saturation.": "遊び心のある彩度の鮮やかなパレット。" }, diff --git a/translations/poexports/pl.json b/translations/poexports/pl.json index e4aced10..74cb37af 100644 --- a/translations/poexports/pl.json +++ b/translations/poexports/pl.json @@ -311,6 +311,9 @@ "Center Section": { "Center Section": "Sekcja środkowa" }, + "Changes:": { + "Changes:": "" + }, "Check for system updates": { "Check for system updates": "Sprawdź aktualizacje systemu" }, @@ -410,6 +413,9 @@ "Confirm": { "Confirm": "Potwierdź" }, + "Confirm Display Changes": { + "Confirm Display Changes": "" + }, "Confirm passkey for ": { "Confirm passkey for ": "Potwierdź klucz dostępu dla " }, @@ -584,6 +590,9 @@ "Disable Autoconnect": { "Disable Autoconnect": "Wyłącz automatyczne łączenie" }, + "Disabled": { + "Disabled": "" + }, "Disconnect": { "Disconnect": "Rozłącz" }, @@ -611,6 +620,9 @@ "Display currently focused application title": { "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": "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": "Włącz integrację blokady loginctl" }, + "Enabled": { + "Enabled": "" + }, "End": { "End": "Koniec" }, @@ -950,6 +965,9 @@ "Individual Batteries": { "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": "Urządzenia wejściowe" }, @@ -974,6 +992,9 @@ "Jobs: ": { "Jobs: ": "Zadania: " }, + "Keep Changes": { + "Keep Changes": "" + }, "Keyboard Layout Name": { "Keyboard Layout Name": "Nazwa układu klawiatury" }, @@ -1142,6 +1163,9 @@ "Mode:": { "Mode:": "Tryb:" }, + "Mode: ": { + "Mode: ": "" + }, "Monitor": { "Monitor": "Monitor" }, @@ -1424,6 +1448,9 @@ "Position": { "Position": "Pozycja" }, + "Position: ": { + "Position: ": "" + }, "Power & Security": { "Power & Security": "Zasilanie i bezpieczeństwo" }, @@ -1442,6 +1469,9 @@ "Pressure": { "Pressure": "Ciśnienie" }, + "Prevent idle for media": { + "Prevent idle for media": "" + }, "Prevent screen timeout": { "Prevent screen timeout": "Zapobiegaj wygaszaniu ekranu" }, @@ -1529,6 +1559,12 @@ "Resume": { "Resume": "Wznów" }, + "Revert": { + "Revert": "" + }, + "Reverting in:": { + "Reverting in:": "" + }, "Right": { "Right": "Prawo" }, @@ -2000,6 +2036,9 @@ "VPN status and quick connect": { "VPN status and quick connect": "Status VPN i szybkie połączenie" }, + "VRR: ": { + "VRR: ": "" + }, "Vibrant palette with playful saturation.": { "Vibrant palette with playful saturation.": "Wibrująca paleta z zabawnym nasyceniem." }, diff --git a/translations/poexports/pt.json b/translations/poexports/pt.json index bd138ec4..9c3d9cea 100644 --- a/translations/poexports/pt.json +++ b/translations/poexports/pt.json @@ -311,6 +311,9 @@ "Center Section": { "Center Section": "Seção Central" }, + "Changes:": { + "Changes:": "" + }, "Check for system updates": { "Check for system updates": "Verificar por atualizações de sistema" }, @@ -410,6 +413,9 @@ "Confirm": { "Confirm": "Confirmar" }, + "Confirm Display Changes": { + "Confirm Display Changes": "" + }, "Confirm passkey for ": { "Confirm passkey for ": "Confirmar chave de acesso para " }, @@ -584,6 +590,9 @@ "Disable Autoconnect": { "Disable Autoconnect": "" }, + "Disabled": { + "Disabled": "" + }, "Disconnect": { "Disconnect": "Desconectar" }, @@ -611,6 +620,9 @@ "Display currently focused application title": { "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": "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": "Ativar integração de bloqueio do loginctl" }, + "Enabled": { + "Enabled": "" + }, "End": { "End": "Fim" }, @@ -950,6 +965,9 @@ "Individual Batteries": { "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": "Dispositivos de Entrada" }, @@ -974,6 +992,9 @@ "Jobs: ": { "Jobs: ": "" }, + "Keep Changes": { + "Keep Changes": "" + }, "Keyboard Layout Name": { "Keyboard Layout Name": "Nome de Layout do Teclado" }, @@ -1142,6 +1163,9 @@ "Mode:": { "Mode:": "Modo:" }, + "Mode: ": { + "Mode: ": "" + }, "Monitor": { "Monitor": "Monitor" }, @@ -1424,6 +1448,9 @@ "Position": { "Position": "Posição" }, + "Position: ": { + "Position: ": "" + }, "Power & Security": { "Power & Security": "Energia & Segurança" }, @@ -1442,6 +1469,9 @@ "Pressure": { "Pressure": "Pressão" }, + "Prevent idle for media": { + "Prevent idle for media": "" + }, "Prevent screen timeout": { "Prevent screen timeout": "Impedir suspensão da tela" }, @@ -1529,6 +1559,12 @@ "Resume": { "Resume": "" }, + "Revert": { + "Revert": "" + }, + "Reverting in:": { + "Reverting in:": "" + }, "Right": { "Right": "Direita" }, @@ -2000,6 +2036,9 @@ "VPN status and quick connect": { "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.": "Paleta vibrante com saturação divertida." }, diff --git a/translations/poexports/tr.json b/translations/poexports/tr.json index 71e395c5..7061f3a1 100644 --- a/translations/poexports/tr.json +++ b/translations/poexports/tr.json @@ -311,6 +311,9 @@ "Center Section": { "Center Section": "Orta Bölüm" }, + "Changes:": { + "Changes:": "" + }, "Check for system updates": { "Check for system updates": "Sistem güncellemelerini kontrol et" }, @@ -410,6 +413,9 @@ "Confirm": { "Confirm": "Onayla" }, + "Confirm Display Changes": { + "Confirm Display Changes": "" + }, "Confirm passkey for ": { "Confirm passkey for ": "Şunun için şifreyi onayla: " }, @@ -584,6 +590,9 @@ "Disable Autoconnect": { "Disable Autoconnect": "Otomatik Bağlanmayı Devre Dışı Bırak" }, + "Disabled": { + "Disabled": "" + }, "Disconnect": { "Disconnect": "Bağlantıyı Kes" }, @@ -611,6 +620,9 @@ "Display currently focused application title": { "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": "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": "loginctl kilit entegrasyonunu etkinleştir" }, + "Enabled": { + "Enabled": "" + }, "End": { "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" }, "HSV": { - "HSV": "" + "HSV": "HSV" }, "Health": { "Health": "Sağlık" @@ -885,7 +900,7 @@ "Height to Edge Gap (Exclusive Zone)": "Kenar Boşluğu Yüksekliği (Özel Bölge)" }, "Hex": { - "Hex": "" + "Hex": "Hex" }, "Hex:": { "Hex:": "Hex:" @@ -950,6 +965,9 @@ "Individual Batteries": { "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": "Giriş Aygıtları" }, @@ -974,6 +992,9 @@ "Jobs: ": { "Jobs: ": "İşler:" }, + "Keep Changes": { + "Keep Changes": "" + }, "Keyboard Layout Name": { "Keyboard Layout Name": "Klavye Düzeni Adı" }, @@ -1142,6 +1163,9 @@ "Mode:": { "Mode:": "Mod:" }, + "Mode: ": { + "Mode: ": "" + }, "Monitor": { "Monitor": "Monitör" }, @@ -1424,6 +1448,9 @@ "Position": { "Position": "Pozisyon" }, + "Position: ": { + "Position: ": "" + }, "Power & Security": { "Power & Security": "Güç & Güvenlik" }, @@ -1442,6 +1469,9 @@ "Pressure": { "Pressure": "Basınç" }, + "Prevent idle for media": { + "Prevent idle for media": "" + }, "Prevent screen timeout": { "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" }, "RGB": { - "RGB": "" + "RGB": "RGB" }, "Rain Chance": { "Rain Chance": "Yağış İhtimali" @@ -1529,6 +1559,12 @@ "Resume": { "Resume": "Sürdür" }, + "Revert": { + "Revert": "" + }, + "Reverting in:": { + "Reverting in:": "" + }, "Right": { "Right": "Sağ" }, @@ -2000,6 +2036,9 @@ "VPN status and quick connect": { "VPN status and quick connect": "VPN durumu ve hızlı bağlanma" }, + "VRR: ": { + "VRR: ": "" + }, "Vibrant palette with playful saturation.": { "Vibrant palette with playful saturation.": "Oynak doygunluğa sahip canlı palet" }, diff --git a/translations/poexports/zh_CN.json b/translations/poexports/zh_CN.json index 580ed0bb..27462b04 100644 --- a/translations/poexports/zh_CN.json +++ b/translations/poexports/zh_CN.json @@ -311,6 +311,9 @@ "Center Section": { "Center Section": "中间区域" }, + "Changes:": { + "Changes:": "" + }, "Check for system updates": { "Check for system updates": "检查系统更新" }, @@ -410,6 +413,9 @@ "Confirm": { "Confirm": "确认" }, + "Confirm Display Changes": { + "Confirm Display Changes": "" + }, "Confirm passkey for ": { "Confirm passkey for ": "确认密钥 " }, @@ -584,6 +590,9 @@ "Disable Autoconnect": { "Disable Autoconnect": "禁用自动连接" }, + "Disabled": { + "Disabled": "" + }, "Disconnect": { "Disconnect": "断开连接" }, @@ -611,6 +620,9 @@ "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": "在OSD弹窗中默认显示音量与亮度数值" }, @@ -686,6 +698,9 @@ "Enable loginctl lock integration": { "Enable loginctl lock integration": "启用 loginctl 锁定集成" }, + "Enabled": { + "Enabled": "" + }, "End": { "End": "结束" }, @@ -950,6 +965,9 @@ "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": "输入设备" }, @@ -974,6 +992,9 @@ "Jobs: ": { "Jobs: ": "任务: " }, + "Keep Changes": { + "Keep Changes": "" + }, "Keyboard Layout Name": { "Keyboard Layout Name": "键盘布局名称" }, @@ -1142,6 +1163,9 @@ "Mode:": { "Mode:": "模式:" }, + "Mode: ": { + "Mode: ": "" + }, "Monitor": { "Monitor": "显示器" }, @@ -1424,6 +1448,9 @@ "Position": { "Position": "位置" }, + "Position: ": { + "Position: ": "" + }, "Power & Security": { "Power & Security": "电源与安全" }, @@ -1442,6 +1469,9 @@ "Pressure": { "Pressure": "气压" }, + "Prevent idle for media": { + "Prevent idle for media": "" + }, "Prevent screen timeout": { "Prevent screen timeout": "防止屏幕超时" }, @@ -1529,6 +1559,12 @@ "Resume": { "Resume": "恢复" }, + "Revert": { + "Revert": "" + }, + "Reverting in:": { + "Reverting in:": "" + }, "Right": { "Right": "右侧" }, @@ -2000,6 +2036,9 @@ "VPN status and quick connect": { "VPN status and quick connect": "VPN 状态与快速连接" }, + "VRR: ": { + "VRR: ": "" + }, "Vibrant palette with playful saturation.": { "Vibrant palette with playful saturation.": "充满活力的调色板,有着俏皮的饱和度。" }, diff --git a/translations/poexports/zh_TW.json b/translations/poexports/zh_TW.json index 57d2cab7..375cae68 100644 --- a/translations/poexports/zh_TW.json +++ b/translations/poexports/zh_TW.json @@ -311,6 +311,9 @@ "Center Section": { "Center Section": "中間區塊" }, + "Changes:": { + "Changes:": "" + }, "Check for system updates": { "Check for system updates": "檢查系統更新" }, @@ -410,6 +413,9 @@ "Confirm": { "Confirm": "確認" }, + "Confirm Display Changes": { + "Confirm Display Changes": "" + }, "Confirm passkey for ": { "Confirm passkey for ": "確認密碼 " }, @@ -584,6 +590,9 @@ "Disable Autoconnect": { "Disable Autoconnect": "關閉自動連線" }, + "Disabled": { + "Disabled": "" + }, "Disconnect": { "Disconnect": "斷開連線" }, @@ -611,6 +620,9 @@ "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": "在 OSD 彈出視窗中預設顯示音量和亮度百分比值" }, @@ -686,6 +698,9 @@ "Enable loginctl lock integration": { "Enable loginctl lock integration": "啟用 loginctl 鎖定整合" }, + "Enabled": { + "Enabled": "" + }, "End": { "End": "結束" }, @@ -950,6 +965,9 @@ "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": "輸入設備" }, @@ -974,6 +992,9 @@ "Jobs: ": { "Jobs: ": "" }, + "Keep Changes": { + "Keep Changes": "" + }, "Keyboard Layout Name": { "Keyboard Layout Name": "鍵盤布局名稱" }, @@ -1142,6 +1163,9 @@ "Mode:": { "Mode:": "模式:" }, + "Mode: ": { + "Mode: ": "" + }, "Monitor": { "Monitor": "螢幕" }, @@ -1424,6 +1448,9 @@ "Position": { "Position": "位置" }, + "Position: ": { + "Position: ": "" + }, "Power & Security": { "Power & Security": "電源與安全" }, @@ -1442,6 +1469,9 @@ "Pressure": { "Pressure": "氣壓" }, + "Prevent idle for media": { + "Prevent idle for media": "" + }, "Prevent screen timeout": { "Prevent screen timeout": "防止螢幕超時" }, @@ -1529,6 +1559,12 @@ "Resume": { "Resume": "" }, + "Revert": { + "Revert": "" + }, + "Reverting in:": { + "Reverting in:": "" + }, "Right": { "Right": "右方" }, @@ -2000,6 +2036,9 @@ "VPN status and quick connect": { "VPN status and quick connect": "VPN 狀態和快速連線" }, + "VRR: ": { + "VRR: ": "" + }, "Vibrant palette with playful saturation.": { "Vibrant palette with playful saturation.": "色彩鮮明且飽和度活潑的調色板。" }, diff --git a/translations/template.json b/translations/template.json index 3b2d376f..15a89098 100644 --- a/translations/template.json +++ b/translations/template.json @@ -713,6 +713,13 @@ "reference": "", "comment": "" }, + { + "term": "Changes:", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Check for system updates", "translation": "", @@ -937,6 +944,13 @@ "reference": "", "comment": "" }, + { + "term": "Confirm Display Changes", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Confirm passkey for ", "translation": "", @@ -1322,6 +1336,13 @@ "reference": "", "comment": "" }, + { + "term": "Disabled", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Disconnect", "translation": "", @@ -1385,6 +1406,13 @@ "reference": "", "comment": "" }, + { + "term": "Display settings for ", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Display volume and brightness percentage values by default in OSD popups", "translation": "", @@ -1560,6 +1588,13 @@ "reference": "", "comment": "" }, + { + "term": "Enabled", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "End", "translation": "", @@ -2148,6 +2183,13 @@ "reference": "", "comment": "" }, + { + "term": "Inhibit idle timeout when audio or video is playing", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Input Devices", "translation": "", @@ -2204,6 +2246,13 @@ "reference": "", "comment": "" }, + { + "term": "Keep Changes", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Keyboard Layout Name", "translation": "", @@ -2589,6 +2638,13 @@ "reference": "", "comment": "" }, + { + "term": "Mode: ", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Monitor Selection:", "translation": "", @@ -3240,6 +3296,13 @@ "reference": "", "comment": "" }, + { + "term": "Position: ", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Power & Security", "translation": "", @@ -3282,6 +3345,13 @@ "reference": "", "comment": "" }, + { + "term": "Prevent idle for media", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Prevent screen timeout", "translation": "", @@ -3478,6 +3548,20 @@ "reference": "", "comment": "" }, + { + "term": "Revert", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Reverting in:", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Right", "translation": "", @@ -4549,6 +4633,13 @@ "reference": "", "comment": "" }, + { + "term": "VRR: ", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Vibrant palette with playful saturation.", "translation": "",