mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-01-30 00:12:50 -05:00
i18n: WIP initial RTL support
- notifications - color picker - process list - settings - control center, dash - launcher part of #1059
This commit is contained in:
@@ -16,6 +16,9 @@ Singleton {
|
|||||||
return [fullUnderscore, fullHyphen, _lang].filter(c => c && c !== "en");
|
return [fullUnderscore, fullHyphen, _lang].filter(c => c && c !== "en");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
readonly property var _rtlLanguages: ["ar", "he", "iw", "fa", "ur", "ps", "sd", "dv", "yi", "ku"]
|
||||||
|
readonly property bool isRtl: _rtlLanguages.includes(_lang)
|
||||||
|
|
||||||
readonly property url translationsFolder: Qt.resolvedUrl("../translations/poexports")
|
readonly property url translationsFolder: Qt.resolvedUrl("../translations/poexports")
|
||||||
|
|
||||||
property string currentLocale: "en"
|
property string currentLocale: "en"
|
||||||
|
|||||||
@@ -128,6 +128,9 @@ DankModal {
|
|||||||
FocusScope {
|
FocusScope {
|
||||||
id: colorContent
|
id: colorContent
|
||||||
|
|
||||||
|
LayoutMirroring.enabled: I18n.isRtl
|
||||||
|
LayoutMirroring.childrenInherit: true
|
||||||
|
|
||||||
property alias hexInput: hexInput
|
property alias hexInput: hexInput
|
||||||
|
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
@@ -160,12 +163,14 @@ DankModal {
|
|||||||
font.pixelSize: Theme.fontSizeLarge
|
font.pixelSize: Theme.fontSizeLarge
|
||||||
color: Theme.surfaceText
|
color: Theme.surfaceText
|
||||||
font.weight: Font.Medium
|
font.weight: Font.Medium
|
||||||
|
anchors.left: parent.left
|
||||||
}
|
}
|
||||||
|
|
||||||
StyledText {
|
StyledText {
|
||||||
text: I18n.tr("Select a color from the palette or use custom sliders")
|
text: I18n.tr("Select a color from the palette or use custom sliders")
|
||||||
font.pixelSize: Theme.fontSizeMedium
|
font.pixelSize: Theme.fontSizeMedium
|
||||||
color: Theme.surfaceTextMedium
|
color: Theme.surfaceTextMedium
|
||||||
|
anchors.left: parent.left
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -360,6 +365,7 @@ DankModal {
|
|||||||
font.pixelSize: Theme.fontSizeMedium
|
font.pixelSize: Theme.fontSizeMedium
|
||||||
color: Theme.surfaceText
|
color: Theme.surfaceText
|
||||||
font.weight: Font.Medium
|
font.weight: Font.Medium
|
||||||
|
anchors.left: parent.left
|
||||||
}
|
}
|
||||||
|
|
||||||
GridView {
|
GridView {
|
||||||
@@ -410,6 +416,7 @@ DankModal {
|
|||||||
font.pixelSize: Theme.fontSizeMedium
|
font.pixelSize: Theme.fontSizeMedium
|
||||||
color: Theme.surfaceText
|
color: Theme.surfaceText
|
||||||
font.weight: Font.Medium
|
font.weight: Font.Medium
|
||||||
|
anchors.left: parent.left
|
||||||
}
|
}
|
||||||
|
|
||||||
Row {
|
Row {
|
||||||
@@ -462,6 +469,7 @@ DankModal {
|
|||||||
font.pixelSize: Theme.fontSizeMedium
|
font.pixelSize: Theme.fontSizeMedium
|
||||||
color: Theme.surfaceText
|
color: Theme.surfaceText
|
||||||
font.weight: Font.Medium
|
font.weight: Font.Medium
|
||||||
|
anchors.left: parent.left
|
||||||
}
|
}
|
||||||
|
|
||||||
DankSlider {
|
DankSlider {
|
||||||
@@ -507,6 +515,7 @@ DankModal {
|
|||||||
font.pixelSize: Theme.fontSizeSmall
|
font.pixelSize: Theme.fontSizeSmall
|
||||||
color: Theme.surfaceTextMedium
|
color: Theme.surfaceTextMedium
|
||||||
font.weight: Font.Medium
|
font.weight: Font.Medium
|
||||||
|
anchors.left: parent.left
|
||||||
}
|
}
|
||||||
|
|
||||||
Row {
|
Row {
|
||||||
@@ -566,6 +575,7 @@ DankModal {
|
|||||||
font.pixelSize: Theme.fontSizeSmall
|
font.pixelSize: Theme.fontSizeSmall
|
||||||
color: Theme.surfaceTextMedium
|
color: Theme.surfaceTextMedium
|
||||||
font.weight: Font.Medium
|
font.weight: Font.Medium
|
||||||
|
anchors.left: parent.left
|
||||||
}
|
}
|
||||||
|
|
||||||
Row {
|
Row {
|
||||||
@@ -630,6 +640,7 @@ DankModal {
|
|||||||
font.pixelSize: Theme.fontSizeSmall
|
font.pixelSize: Theme.fontSizeSmall
|
||||||
color: Theme.surfaceTextMedium
|
color: Theme.surfaceTextMedium
|
||||||
font.weight: Font.Medium
|
font.weight: Font.Medium
|
||||||
|
anchors.left: parent.left
|
||||||
}
|
}
|
||||||
|
|
||||||
Row {
|
Row {
|
||||||
|
|||||||
@@ -99,7 +99,7 @@ DankModal {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function toggleDoNotDisturb(): string {
|
function toggleDoNotDisturb(): string {
|
||||||
SessionData.setDoNotDisturb(!SessionData.doNotDisturb)
|
SessionData.setDoNotDisturb(!SessionData.doNotDisturb);
|
||||||
|
|
||||||
return "NOTIFICATION_MODAL_TOGGLE_DND_SUCCESS";
|
return "NOTIFICATION_MODAL_TOGGLE_DND_SUCCESS";
|
||||||
}
|
}
|
||||||
@@ -111,6 +111,9 @@ DankModal {
|
|||||||
Item {
|
Item {
|
||||||
id: notificationKeyHandler
|
id: notificationKeyHandler
|
||||||
|
|
||||||
|
LayoutMirroring.enabled: I18n.isRtl
|
||||||
|
LayoutMirroring.childrenInherit: true
|
||||||
|
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
|
|
||||||
Column {
|
Column {
|
||||||
|
|||||||
@@ -108,6 +108,9 @@ FloatingWindow {
|
|||||||
FocusScope {
|
FocusScope {
|
||||||
id: contentFocusScope
|
id: contentFocusScope
|
||||||
|
|
||||||
|
LayoutMirroring.enabled: I18n.isRtl
|
||||||
|
LayoutMirroring.childrenInherit: true
|
||||||
|
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
focus: true
|
focus: true
|
||||||
|
|
||||||
|
|||||||
@@ -5,6 +5,9 @@ import qs.Modules.Settings
|
|||||||
FocusScope {
|
FocusScope {
|
||||||
id: root
|
id: root
|
||||||
|
|
||||||
|
LayoutMirroring.enabled: I18n.isRtl
|
||||||
|
LayoutMirroring.childrenInherit: true
|
||||||
|
|
||||||
property int currentIndex: 0
|
property int currentIndex: 0
|
||||||
property var parentModal: null
|
property var parentModal: null
|
||||||
|
|
||||||
|
|||||||
@@ -135,6 +135,9 @@ FloatingWindow {
|
|||||||
FocusScope {
|
FocusScope {
|
||||||
id: contentFocusScope
|
id: contentFocusScope
|
||||||
|
|
||||||
|
LayoutMirroring.enabled: I18n.isRtl
|
||||||
|
LayoutMirroring.childrenInherit: true
|
||||||
|
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
focus: true
|
focus: true
|
||||||
|
|
||||||
@@ -223,7 +226,7 @@ FloatingWindow {
|
|||||||
SettingsSidebar {
|
SettingsSidebar {
|
||||||
id: sidebar
|
id: sidebar
|
||||||
|
|
||||||
x: 0
|
anchors.left: parent.left
|
||||||
width: settingsModal.isCompactMode ? parent.width : 270
|
width: settingsModal.isCompactMode ? parent.width : 270
|
||||||
visible: settingsModal.isCompactMode ? settingsModal.menuVisible : true
|
visible: settingsModal.isCompactMode ? settingsModal.menuVisible : true
|
||||||
parentModal: settingsModal
|
parentModal: settingsModal
|
||||||
@@ -238,8 +241,8 @@ FloatingWindow {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Item {
|
Item {
|
||||||
x: settingsModal.isCompactMode ? (settingsModal.menuVisible ? parent.width : 0) : sidebar.width
|
anchors.left: settingsModal.isCompactMode ? (settingsModal.menuVisible ? sidebar.right : parent.left) : sidebar.right
|
||||||
width: settingsModal.isCompactMode ? parent.width : parent.width - sidebar.width
|
anchors.right: parent.right
|
||||||
height: parent.height
|
height: parent.height
|
||||||
clip: true
|
clip: true
|
||||||
|
|
||||||
@@ -250,14 +253,6 @@ FloatingWindow {
|
|||||||
parentModal: settingsModal
|
parentModal: settingsModal
|
||||||
currentIndex: settingsModal.currentTabIndex
|
currentIndex: settingsModal.currentTabIndex
|
||||||
}
|
}
|
||||||
|
|
||||||
Behavior on x {
|
|
||||||
enabled: settingsModal.enableAnimations
|
|
||||||
NumberAnimation {
|
|
||||||
duration: Theme.mediumDuration
|
|
||||||
easing.bezierCurve: Theme.expressiveCurves.emphasizedDecel
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,6 +9,9 @@ import qs.Widgets
|
|||||||
Rectangle {
|
Rectangle {
|
||||||
id: root
|
id: root
|
||||||
|
|
||||||
|
LayoutMirroring.enabled: I18n.isRtl
|
||||||
|
LayoutMirroring.childrenInherit: true
|
||||||
|
|
||||||
property int currentIndex: 0
|
property int currentIndex: 0
|
||||||
property var parentModal: null
|
property var parentModal: null
|
||||||
property var expandedCategories: ({})
|
property var expandedCategories: ({})
|
||||||
|
|||||||
@@ -8,6 +8,9 @@ import qs.Widgets
|
|||||||
Item {
|
Item {
|
||||||
id: spotlightKeyHandler
|
id: spotlightKeyHandler
|
||||||
|
|
||||||
|
LayoutMirroring.enabled: I18n.isRtl
|
||||||
|
LayoutMirroring.childrenInherit: true
|
||||||
|
|
||||||
property alias appLauncher: appLauncher
|
property alias appLauncher: appLauncher
|
||||||
property alias searchField: searchField
|
property alias searchField: searchField
|
||||||
property alias fileSearchController: fileSearchController
|
property alias fileSearchController: fileSearchController
|
||||||
@@ -72,10 +75,10 @@ Item {
|
|||||||
}
|
}
|
||||||
event.accepted = true;
|
event.accepted = true;
|
||||||
} else if (event.key === Qt.Key_Right && searchMode === "apps" && appLauncher.viewMode === "grid") {
|
} else if (event.key === Qt.Key_Right && searchMode === "apps" && appLauncher.viewMode === "grid") {
|
||||||
appLauncher.selectNextInRow();
|
I18n.isRtl ? appLauncher.selectPreviousInRow() : appLauncher.selectNextInRow();
|
||||||
event.accepted = true;
|
event.accepted = true;
|
||||||
} else if (event.key === Qt.Key_Left && searchMode === "apps" && appLauncher.viewMode === "grid") {
|
} else if (event.key === Qt.Key_Left && searchMode === "apps" && appLauncher.viewMode === "grid") {
|
||||||
appLauncher.selectPreviousInRow();
|
I18n.isRtl ? appLauncher.selectNextInRow() : appLauncher.selectPreviousInRow();
|
||||||
event.accepted = true;
|
event.accepted = true;
|
||||||
} else if (event.key == Qt.Key_J && event.modifiers & Qt.ControlModifier) {
|
} else if (event.key == Qt.Key_J && event.modifiers & Qt.ControlModifier) {
|
||||||
if (searchMode === "apps") {
|
if (searchMode === "apps") {
|
||||||
@@ -92,10 +95,10 @@ Item {
|
|||||||
}
|
}
|
||||||
event.accepted = true;
|
event.accepted = true;
|
||||||
} else if (event.key == Qt.Key_L && event.modifiers & Qt.ControlModifier && searchMode === "apps" && appLauncher.viewMode === "grid") {
|
} else if (event.key == Qt.Key_L && event.modifiers & Qt.ControlModifier && searchMode === "apps" && appLauncher.viewMode === "grid") {
|
||||||
appLauncher.selectNextInRow();
|
I18n.isRtl ? appLauncher.selectPreviousInRow() : appLauncher.selectNextInRow();
|
||||||
event.accepted = true;
|
event.accepted = true;
|
||||||
} else if (event.key == Qt.Key_H && event.modifiers & Qt.ControlModifier && searchMode === "apps" && appLauncher.viewMode === "grid") {
|
} else if (event.key == Qt.Key_H && event.modifiers & Qt.ControlModifier && searchMode === "apps" && appLauncher.viewMode === "grid") {
|
||||||
appLauncher.selectPreviousInRow();
|
I18n.isRtl ? appLauncher.selectNextInRow() : appLauncher.selectPreviousInRow();
|
||||||
event.accepted = true;
|
event.accepted = true;
|
||||||
} else if (event.key === Qt.Key_Tab) {
|
} else if (event.key === Qt.Key_Tab) {
|
||||||
if (searchMode === "apps") {
|
if (searchMode === "apps") {
|
||||||
|
|||||||
@@ -95,6 +95,9 @@ DankPopout {
|
|||||||
Rectangle {
|
Rectangle {
|
||||||
id: launcherPanel
|
id: launcherPanel
|
||||||
|
|
||||||
|
LayoutMirroring.enabled: I18n.isRtl
|
||||||
|
LayoutMirroring.childrenInherit: true
|
||||||
|
|
||||||
property alias searchField: searchField
|
property alias searchField: searchField
|
||||||
|
|
||||||
color: "transparent"
|
color: "transparent"
|
||||||
@@ -179,8 +182,8 @@ DankPopout {
|
|||||||
mappings[Qt.Key_Backtab] = () => appDrawerPopout.searchMode === "apps" && appLauncher.viewMode === "grid" ? appLauncher.selectPreviousInRow() : keyHandler.selectPrevious();
|
mappings[Qt.Key_Backtab] = () => appDrawerPopout.searchMode === "apps" && appLauncher.viewMode === "grid" ? appLauncher.selectPreviousInRow() : keyHandler.selectPrevious();
|
||||||
|
|
||||||
if (appDrawerPopout.searchMode === "apps" && appLauncher.viewMode === "grid") {
|
if (appDrawerPopout.searchMode === "apps" && appLauncher.viewMode === "grid") {
|
||||||
mappings[Qt.Key_Right] = () => appLauncher.selectNextInRow();
|
mappings[Qt.Key_Right] = () => I18n.isRtl ? appLauncher.selectPreviousInRow() : appLauncher.selectNextInRow();
|
||||||
mappings[Qt.Key_Left] = () => appLauncher.selectPreviousInRow();
|
mappings[Qt.Key_Left] = () => I18n.isRtl ? appLauncher.selectNextInRow() : appLauncher.selectPreviousInRow();
|
||||||
}
|
}
|
||||||
|
|
||||||
return mappings;
|
return mappings;
|
||||||
@@ -211,13 +214,13 @@ DankPopout {
|
|||||||
return;
|
return;
|
||||||
case Qt.Key_L:
|
case Qt.Key_L:
|
||||||
if (appDrawerPopout.searchMode === "apps" && appLauncher.viewMode === "grid") {
|
if (appDrawerPopout.searchMode === "apps" && appLauncher.viewMode === "grid") {
|
||||||
appLauncher.selectNextInRow();
|
I18n.isRtl ? appLauncher.selectPreviousInRow() : appLauncher.selectNextInRow();
|
||||||
event.accepted = true;
|
event.accepted = true;
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
case Qt.Key_H:
|
case Qt.Key_H:
|
||||||
if (appDrawerPopout.searchMode === "apps" && appLauncher.viewMode === "grid") {
|
if (appDrawerPopout.searchMode === "apps" && appLauncher.viewMode === "grid") {
|
||||||
appLauncher.selectPreviousInRow();
|
I18n.isRtl ? appLauncher.selectNextInRow() : appLauncher.selectPreviousInRow();
|
||||||
event.accepted = true;
|
event.accepted = true;
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
|
|||||||
@@ -110,6 +110,9 @@ DankPopout {
|
|||||||
Rectangle {
|
Rectangle {
|
||||||
id: controlContent
|
id: controlContent
|
||||||
|
|
||||||
|
LayoutMirroring.enabled: I18n.isRtl
|
||||||
|
LayoutMirroring.childrenInherit: true
|
||||||
|
|
||||||
implicitHeight: mainColumn.implicitHeight + Theme.spacingM
|
implicitHeight: mainColumn.implicitHeight + Theme.spacingM
|
||||||
property alias bluetoothCodecSelector: bluetoothCodecSelector
|
property alias bluetoothCodecSelector: bluetoothCodecSelector
|
||||||
|
|
||||||
|
|||||||
@@ -43,6 +43,9 @@ DankPopout {
|
|||||||
Rectangle {
|
Rectangle {
|
||||||
id: batteryContent
|
id: batteryContent
|
||||||
|
|
||||||
|
LayoutMirroring.enabled: I18n.isRtl
|
||||||
|
LayoutMirroring.childrenInherit: true
|
||||||
|
|
||||||
implicitHeight: contentColumn.implicitHeight + Theme.spacingL * 2
|
implicitHeight: contentColumn.implicitHeight + Theme.spacingL * 2
|
||||||
color: "transparent"
|
color: "transparent"
|
||||||
radius: Theme.cornerRadius
|
radius: Theme.cornerRadius
|
||||||
|
|||||||
@@ -166,6 +166,9 @@ DankPopout {
|
|||||||
Rectangle {
|
Rectangle {
|
||||||
id: mainContainer
|
id: mainContainer
|
||||||
|
|
||||||
|
LayoutMirroring.enabled: I18n.isRtl
|
||||||
|
LayoutMirroring.childrenInherit: true
|
||||||
|
|
||||||
implicitHeight: contentColumn.height + Theme.spacingM * 2
|
implicitHeight: contentColumn.height + Theme.spacingM * 2
|
||||||
color: "transparent"
|
color: "transparent"
|
||||||
radius: Theme.cornerRadius
|
radius: Theme.cornerRadius
|
||||||
|
|||||||
@@ -8,6 +8,9 @@ import qs.Widgets
|
|||||||
Item {
|
Item {
|
||||||
id: root
|
id: root
|
||||||
|
|
||||||
|
LayoutMirroring.enabled: I18n.isRtl
|
||||||
|
LayoutMirroring.childrenInherit: true
|
||||||
|
|
||||||
property int dropdownType: 0
|
property int dropdownType: 0
|
||||||
property var activePlayer: null
|
property var activePlayer: null
|
||||||
property var allPlayers: []
|
property var allPlayers: []
|
||||||
|
|||||||
@@ -10,6 +10,9 @@ import qs.Widgets
|
|||||||
Item {
|
Item {
|
||||||
id: root
|
id: root
|
||||||
|
|
||||||
|
LayoutMirroring.enabled: I18n.isRtl
|
||||||
|
LayoutMirroring.childrenInherit: true
|
||||||
|
|
||||||
property MprisPlayer activePlayer: MprisController.activePlayer
|
property MprisPlayer activePlayer: MprisController.activePlayer
|
||||||
property var allPlayers: MprisController.availablePlayers
|
property var allPlayers: MprisController.availablePlayers
|
||||||
property var targetScreen: null
|
property var targetScreen: null
|
||||||
|
|||||||
@@ -1,10 +1,12 @@
|
|||||||
import QtQuick
|
import QtQuick
|
||||||
import QtQuick.Controls
|
|
||||||
import qs.Common
|
import qs.Common
|
||||||
|
|
||||||
Rectangle {
|
Rectangle {
|
||||||
id: card
|
id: card
|
||||||
|
|
||||||
|
LayoutMirroring.enabled: I18n.isRtl
|
||||||
|
LayoutMirroring.childrenInherit: true
|
||||||
|
|
||||||
property int pad: Theme.spacingM
|
property int pad: Theme.spacingM
|
||||||
|
|
||||||
radius: Theme.cornerRadius
|
radius: Theme.cornerRadius
|
||||||
|
|||||||
@@ -1,20 +1,19 @@
|
|||||||
import QtQuick
|
import QtQuick
|
||||||
import QtQuick.Controls
|
|
||||||
import QtQuick.Layouts
|
|
||||||
import qs.Common
|
import qs.Common
|
||||||
import qs.Services
|
|
||||||
import qs.Widgets
|
|
||||||
import qs.Modules.DankDash.Overview
|
import qs.Modules.DankDash.Overview
|
||||||
|
|
||||||
Item {
|
Item {
|
||||||
id: root
|
id: root
|
||||||
|
|
||||||
|
LayoutMirroring.enabled: I18n.isRtl
|
||||||
|
LayoutMirroring.childrenInherit: true
|
||||||
|
|
||||||
implicitWidth: 700
|
implicitWidth: 700
|
||||||
implicitHeight: 410
|
implicitHeight: 410
|
||||||
|
|
||||||
signal switchToWeatherTab()
|
signal switchToWeatherTab
|
||||||
signal switchToMediaTab()
|
signal switchToMediaTab
|
||||||
signal closeDash()
|
signal closeDash
|
||||||
|
|
||||||
Item {
|
Item {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ import QtCore
|
|||||||
import QtQuick
|
import QtQuick
|
||||||
import QtQuick.Controls
|
import QtQuick.Controls
|
||||||
import QtQuick.Effects
|
import QtQuick.Effects
|
||||||
import Quickshell
|
|
||||||
import qs.Common
|
import qs.Common
|
||||||
import qs.Modals.FileBrowser
|
import qs.Modals.FileBrowser
|
||||||
import qs.Widgets
|
import qs.Widgets
|
||||||
@@ -11,6 +10,9 @@ import qs.Widgets
|
|||||||
Item {
|
Item {
|
||||||
id: root
|
id: root
|
||||||
|
|
||||||
|
LayoutMirroring.enabled: I18n.isRtl
|
||||||
|
LayoutMirroring.childrenInherit: true
|
||||||
|
|
||||||
implicitWidth: 700
|
implicitWidth: 700
|
||||||
implicitHeight: 410
|
implicitHeight: 410
|
||||||
|
|
||||||
@@ -95,22 +97,41 @@ Item {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (event.key === Qt.Key_Right || event.key === Qt.Key_L) {
|
if (event.key === Qt.Key_Right || event.key === Qt.Key_L) {
|
||||||
if (gridIndex + 1 < visibleCount) {
|
if (I18n.isRtl) {
|
||||||
gridIndex++;
|
if (gridIndex > 0) {
|
||||||
} else if (currentPage < totalPages - 1) {
|
gridIndex--;
|
||||||
gridIndex = 0;
|
} else if (currentPage > 0) {
|
||||||
currentPage++;
|
currentPage--;
|
||||||
|
const prevPageCount = Math.min(itemsPerPage, wallpaperFolderModel.count - currentPage * itemsPerPage);
|
||||||
|
gridIndex = prevPageCount - 1;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (gridIndex + 1 < visibleCount) {
|
||||||
|
gridIndex++;
|
||||||
|
} else if (currentPage < totalPages - 1) {
|
||||||
|
gridIndex = 0;
|
||||||
|
currentPage++;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (event.key === Qt.Key_Left || event.key === Qt.Key_H) {
|
if (event.key === Qt.Key_Left || event.key === Qt.Key_H) {
|
||||||
if (gridIndex > 0) {
|
if (I18n.isRtl) {
|
||||||
gridIndex--;
|
if (gridIndex + 1 < visibleCount) {
|
||||||
} else if (currentPage > 0) {
|
gridIndex++;
|
||||||
currentPage--;
|
} else if (currentPage < totalPages - 1) {
|
||||||
const prevPageCount = Math.min(itemsPerPage, wallpaperFolderModel.count - currentPage * itemsPerPage);
|
gridIndex = 0;
|
||||||
gridIndex = prevPageCount - 1;
|
currentPage++;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (gridIndex > 0) {
|
||||||
|
gridIndex--;
|
||||||
|
} else if (currentPage > 0) {
|
||||||
|
currentPage--;
|
||||||
|
const prevPageCount = Math.min(itemsPerPage, wallpaperFolderModel.count - currentPage * itemsPerPage);
|
||||||
|
gridIndex = prevPageCount - 1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,6 +9,9 @@ import qs.Modules.DankBar.Widgets
|
|||||||
Item {
|
Item {
|
||||||
id: root
|
id: root
|
||||||
|
|
||||||
|
LayoutMirroring.enabled: I18n.isRtl
|
||||||
|
LayoutMirroring.childrenInherit: true
|
||||||
|
|
||||||
implicitWidth: 700
|
implicitWidth: 700
|
||||||
implicitHeight: 410
|
implicitHeight: 410
|
||||||
property bool syncing: false
|
property bool syncing: false
|
||||||
@@ -145,6 +148,10 @@ Item {
|
|||||||
|
|
||||||
Item {
|
Item {
|
||||||
id: weatherContainer
|
id: weatherContainer
|
||||||
|
|
||||||
|
LayoutMirroring.enabled: false
|
||||||
|
LayoutMirroring.childrenInherit: true
|
||||||
|
|
||||||
width: parent.width
|
width: parent.width
|
||||||
height: weatherColumn.height
|
height: weatherColumn.height
|
||||||
|
|
||||||
|
|||||||
@@ -100,6 +100,9 @@ DankPopout {
|
|||||||
Rectangle {
|
Rectangle {
|
||||||
id: notificationContent
|
id: notificationContent
|
||||||
|
|
||||||
|
LayoutMirroring.enabled: I18n.isRtl
|
||||||
|
LayoutMirroring.childrenInherit: true
|
||||||
|
|
||||||
property var externalKeyboardController: null
|
property var externalKeyboardController: null
|
||||||
property real cachedHeaderHeight: 32
|
property real cachedHeaderHeight: 32
|
||||||
|
|
||||||
|
|||||||
@@ -343,6 +343,9 @@ PanelWindow {
|
|||||||
anchors.margins: Theme.snap(4, win.dpr)
|
anchors.margins: Theme.snap(4, win.dpr)
|
||||||
clip: true
|
clip: true
|
||||||
|
|
||||||
|
LayoutMirroring.enabled: I18n.isRtl
|
||||||
|
LayoutMirroring.childrenInherit: true
|
||||||
|
|
||||||
Item {
|
Item {
|
||||||
id: notificationContent
|
id: notificationContent
|
||||||
|
|
||||||
@@ -428,6 +431,7 @@ PanelWindow {
|
|||||||
font.pixelSize: Theme.fontSizeSmall
|
font.pixelSize: Theme.fontSizeSmall
|
||||||
font.weight: Font.Medium
|
font.weight: Font.Medium
|
||||||
elide: Text.ElideRight
|
elide: Text.ElideRight
|
||||||
|
horizontalAlignment: Text.AlignLeft
|
||||||
maximumLineCount: 1
|
maximumLineCount: 1
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -438,6 +442,7 @@ PanelWindow {
|
|||||||
font.weight: Font.Medium
|
font.weight: Font.Medium
|
||||||
width: parent.width
|
width: parent.width
|
||||||
elide: Text.ElideRight
|
elide: Text.ElideRight
|
||||||
|
horizontalAlignment: Text.AlignLeft
|
||||||
maximumLineCount: 1
|
maximumLineCount: 1
|
||||||
visible: text.length > 0
|
visible: text.length > 0
|
||||||
}
|
}
|
||||||
@@ -448,6 +453,7 @@ PanelWindow {
|
|||||||
font.pixelSize: Theme.fontSizeSmall
|
font.pixelSize: Theme.fontSizeSmall
|
||||||
width: parent.width
|
width: parent.width
|
||||||
elide: Text.ElideRight
|
elide: Text.ElideRight
|
||||||
|
horizontalAlignment: Text.AlignLeft
|
||||||
maximumLineCount: 2
|
maximumLineCount: 2
|
||||||
wrapMode: Text.WordWrap
|
wrapMode: Text.WordWrap
|
||||||
visible: text.length > 0
|
visible: text.length > 0
|
||||||
|
|||||||
@@ -50,6 +50,9 @@ DankPopout {
|
|||||||
Rectangle {
|
Rectangle {
|
||||||
id: processListContent
|
id: processListContent
|
||||||
|
|
||||||
|
LayoutMirroring.enabled: I18n.isRtl
|
||||||
|
LayoutMirroring.childrenInherit: true
|
||||||
|
|
||||||
radius: Theme.cornerRadius
|
radius: Theme.cornerRadius
|
||||||
color: "transparent"
|
color: "transparent"
|
||||||
border.color: Qt.rgba(Theme.outline.r, Theme.outline.g, Theme.outline.b, 0.08)
|
border.color: Qt.rgba(Theme.outline.r, Theme.outline.g, Theme.outline.b, 0.08)
|
||||||
|
|||||||
@@ -7,6 +7,9 @@ import qs.Widgets
|
|||||||
Item {
|
Item {
|
||||||
id: root
|
id: root
|
||||||
|
|
||||||
|
LayoutMirroring.enabled: I18n.isRtl
|
||||||
|
LayoutMirroring.childrenInherit: true
|
||||||
|
|
||||||
property string tab: ""
|
property string tab: ""
|
||||||
property var tags: []
|
property var tags: []
|
||||||
property string settingKey: ""
|
property string settingKey: ""
|
||||||
@@ -49,6 +52,7 @@ Item {
|
|||||||
elide: Text.ElideRight
|
elide: Text.ElideRight
|
||||||
width: parent.width
|
width: parent.width
|
||||||
visible: root.text !== ""
|
visible: root.text !== ""
|
||||||
|
anchors.left: parent.left
|
||||||
}
|
}
|
||||||
|
|
||||||
StyledText {
|
StyledText {
|
||||||
@@ -58,6 +62,7 @@ Item {
|
|||||||
wrapMode: Text.WordWrap
|
wrapMode: Text.WordWrap
|
||||||
width: parent.width
|
width: parent.width
|
||||||
visible: root.description !== ""
|
visible: root.description !== ""
|
||||||
|
anchors.left: parent.left
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -7,6 +7,9 @@ import qs.Widgets
|
|||||||
StyledRect {
|
StyledRect {
|
||||||
id: root
|
id: root
|
||||||
|
|
||||||
|
LayoutMirroring.enabled: I18n.isRtl
|
||||||
|
LayoutMirroring.childrenInherit: true
|
||||||
|
|
||||||
property string tab: ""
|
property string tab: ""
|
||||||
property var tags: []
|
property var tags: []
|
||||||
|
|
||||||
|
|||||||
@@ -7,6 +7,9 @@ import qs.Widgets
|
|||||||
Item {
|
Item {
|
||||||
id: root
|
id: root
|
||||||
|
|
||||||
|
LayoutMirroring.enabled: I18n.isRtl
|
||||||
|
LayoutMirroring.childrenInherit: true
|
||||||
|
|
||||||
property string tab: ""
|
property string tab: ""
|
||||||
property var tags: []
|
property var tags: []
|
||||||
property string settingKey: ""
|
property string settingKey: ""
|
||||||
@@ -51,6 +54,8 @@ Item {
|
|||||||
font.weight: Font.Medium
|
font.weight: Font.Medium
|
||||||
color: Theme.surfaceText
|
color: Theme.surfaceText
|
||||||
visible: root.text !== ""
|
visible: root.text !== ""
|
||||||
|
width: parent.width
|
||||||
|
anchors.left: parent.left
|
||||||
}
|
}
|
||||||
|
|
||||||
StyledText {
|
StyledText {
|
||||||
@@ -60,6 +65,7 @@ Item {
|
|||||||
wrapMode: Text.WordWrap
|
wrapMode: Text.WordWrap
|
||||||
width: parent.width
|
width: parent.width
|
||||||
visible: root.description !== ""
|
visible: root.description !== ""
|
||||||
|
anchors.left: parent.left
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -5,6 +5,9 @@ import qs.Widgets
|
|||||||
Rectangle {
|
Rectangle {
|
||||||
id: root
|
id: root
|
||||||
|
|
||||||
|
LayoutMirroring.enabled: I18n.isRtl
|
||||||
|
LayoutMirroring.childrenInherit: true
|
||||||
|
|
||||||
required property var model
|
required property var model
|
||||||
required property int index
|
required property int index
|
||||||
required property var listView
|
required property var listView
|
||||||
@@ -66,6 +69,7 @@ Rectangle {
|
|||||||
color: Theme.surfaceText
|
color: Theme.surfaceText
|
||||||
font.weight: Font.Medium
|
font.weight: Font.Medium
|
||||||
elide: Text.ElideRight
|
elide: Text.ElideRight
|
||||||
|
horizontalAlignment: Text.AlignLeft
|
||||||
wrapMode: Text.NoWrap
|
wrapMode: Text.NoWrap
|
||||||
maximumLineCount: 1
|
maximumLineCount: 1
|
||||||
}
|
}
|
||||||
@@ -76,6 +80,7 @@ Rectangle {
|
|||||||
font.pixelSize: Theme.fontSizeMedium
|
font.pixelSize: Theme.fontSizeMedium
|
||||||
color: Theme.surfaceVariantText
|
color: Theme.surfaceVariantText
|
||||||
elide: Text.ElideRight
|
elide: Text.ElideRight
|
||||||
|
horizontalAlignment: Text.AlignLeft
|
||||||
maximumLineCount: 1
|
maximumLineCount: 1
|
||||||
visible: root.showDescription && model.comment && model.comment.length > 0
|
visible: root.showDescription && model.comment && model.comment.length > 0
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ Flow {
|
|||||||
property bool userInteracted: false
|
property bool userInteracted: false
|
||||||
|
|
||||||
signal selectionChanged(int index, bool selected)
|
signal selectionChanged(int index, bool selected)
|
||||||
signal animationCompleted()
|
signal animationCompleted
|
||||||
|
|
||||||
spacing: Theme.spacingXS
|
spacing: Theme.spacingXS
|
||||||
|
|
||||||
@@ -36,35 +36,35 @@ Flow {
|
|||||||
|
|
||||||
function isSelected(index) {
|
function isSelected(index) {
|
||||||
if (multiSelect) {
|
if (multiSelect) {
|
||||||
return repeater.itemAt(index)?.selected || false
|
return repeater.itemAt(index)?.selected || false;
|
||||||
}
|
}
|
||||||
return index === currentIndex
|
return index === currentIndex;
|
||||||
}
|
}
|
||||||
|
|
||||||
function selectItem(index) {
|
function selectItem(index) {
|
||||||
userInteracted = true;
|
userInteracted = true;
|
||||||
if (multiSelect) {
|
if (multiSelect) {
|
||||||
const modelValue = model[index]
|
const modelValue = model[index];
|
||||||
let newSelection = [...currentSelection]
|
let newSelection = [...currentSelection];
|
||||||
const isCurrentlySelected = newSelection.includes(modelValue)
|
const isCurrentlySelected = newSelection.includes(modelValue);
|
||||||
|
|
||||||
if (isCurrentlySelected) {
|
if (isCurrentlySelected) {
|
||||||
newSelection = newSelection.filter(item => item !== modelValue)
|
newSelection = newSelection.filter(item => item !== modelValue);
|
||||||
} else {
|
} else {
|
||||||
newSelection.push(modelValue)
|
newSelection.push(modelValue);
|
||||||
}
|
}
|
||||||
|
|
||||||
currentSelection = newSelection
|
currentSelection = newSelection;
|
||||||
selectionChanged(index, !isCurrentlySelected)
|
selectionChanged(index, !isCurrentlySelected);
|
||||||
animationTimer.restart()
|
animationTimer.restart();
|
||||||
} else {
|
} else {
|
||||||
const oldIndex = currentIndex
|
const oldIndex = currentIndex;
|
||||||
currentIndex = index
|
currentIndex = index;
|
||||||
selectionChanged(index, true)
|
selectionChanged(index, true);
|
||||||
if (oldIndex !== index && oldIndex >= 0) {
|
if (oldIndex !== index && oldIndex >= 0) {
|
||||||
selectionChanged(oldIndex, false)
|
selectionChanged(oldIndex, false);
|
||||||
}
|
}
|
||||||
animationTimer.restart()
|
animationTimer.restart();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -82,6 +82,8 @@ Flow {
|
|||||||
property bool pressed: mouseArea.pressed
|
property bool pressed: mouseArea.pressed
|
||||||
property bool isFirst: index === 0
|
property bool isFirst: index === 0
|
||||||
property bool isLast: index === repeater.count - 1
|
property bool isLast: index === repeater.count - 1
|
||||||
|
property bool visualFirst: I18n.isRtl ? isLast : isFirst
|
||||||
|
property bool visualLast: I18n.isRtl ? isFirst : isLast
|
||||||
property bool prevSelected: index > 0 ? root.isSelected(index - 1) : false
|
property bool prevSelected: index > 0 ? root.isSelected(index - 1) : false
|
||||||
property bool nextSelected: index < repeater.count - 1 ? root.isSelected(index + 1) : false
|
property bool nextSelected: index < repeater.count - 1 ? root.isSelected(index + 1) : false
|
||||||
|
|
||||||
@@ -92,10 +94,10 @@ Flow {
|
|||||||
border.color: "transparent"
|
border.color: "transparent"
|
||||||
border.width: 0
|
border.width: 0
|
||||||
|
|
||||||
topLeftRadius: (isFirst || selected) ? Theme.cornerRadius : 4
|
topLeftRadius: (visualFirst || selected) ? Theme.cornerRadius : 4
|
||||||
bottomLeftRadius: (isFirst || selected) ? Theme.cornerRadius : 4
|
bottomLeftRadius: (visualFirst || selected) ? Theme.cornerRadius : 4
|
||||||
topRightRadius: (isLast || selected) ? Theme.cornerRadius : 4
|
topRightRadius: (visualLast || selected) ? Theme.cornerRadius : 4
|
||||||
bottomRightRadius: (isLast || selected) ? Theme.cornerRadius : 4
|
bottomRightRadius: (visualLast || selected) ? Theme.cornerRadius : 4
|
||||||
|
|
||||||
Behavior on width {
|
Behavior on width {
|
||||||
enabled: root.userInteracted
|
enabled: root.userInteracted
|
||||||
@@ -153,9 +155,11 @@ Flow {
|
|||||||
topRightRadius: parent.topRightRadius
|
topRightRadius: parent.topRightRadius
|
||||||
bottomRightRadius: parent.bottomRightRadius
|
bottomRightRadius: parent.bottomRightRadius
|
||||||
color: {
|
color: {
|
||||||
if (pressed) return selected ? Theme.primaryPressed : Theme.surfaceTextHover
|
if (pressed)
|
||||||
if (hovered) return selected ? Theme.primaryHover : Theme.surfaceTextHover
|
return selected ? Theme.primaryPressed : Theme.surfaceTextHover;
|
||||||
return "transparent"
|
if (hovered)
|
||||||
|
return selected ? Theme.primaryHover : Theme.surfaceTextHover;
|
||||||
|
return "transparent";
|
||||||
}
|
}
|
||||||
|
|
||||||
Behavior on color {
|
Behavior on color {
|
||||||
|
|||||||
@@ -9,6 +9,9 @@ import qs.Widgets
|
|||||||
Item {
|
Item {
|
||||||
id: root
|
id: root
|
||||||
|
|
||||||
|
LayoutMirroring.enabled: I18n.isRtl
|
||||||
|
LayoutMirroring.childrenInherit: true
|
||||||
|
|
||||||
property string text: ""
|
property string text: ""
|
||||||
property string description: ""
|
property string description: ""
|
||||||
property string currentValue: ""
|
property string currentValue: ""
|
||||||
@@ -63,6 +66,8 @@ Item {
|
|||||||
font.pixelSize: Theme.fontSizeMedium
|
font.pixelSize: Theme.fontSizeMedium
|
||||||
color: Theme.surfaceText
|
color: Theme.surfaceText
|
||||||
font.weight: Font.Medium
|
font.weight: Font.Medium
|
||||||
|
width: parent.width
|
||||||
|
anchors.left: parent.left
|
||||||
}
|
}
|
||||||
|
|
||||||
StyledText {
|
StyledText {
|
||||||
@@ -72,6 +77,7 @@ Item {
|
|||||||
visible: description.length > 0
|
visible: description.length > 0
|
||||||
wrapMode: Text.WordWrap
|
wrapMode: Text.WordWrap
|
||||||
width: parent.width
|
width: parent.width
|
||||||
|
anchors.left: parent.left
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -5,6 +5,9 @@ import qs.Widgets
|
|||||||
StyledRect {
|
StyledRect {
|
||||||
id: root
|
id: root
|
||||||
|
|
||||||
|
LayoutMirroring.enabled: I18n.isRtl
|
||||||
|
LayoutMirroring.childrenInherit: true
|
||||||
|
|
||||||
activeFocusOnTab: true
|
activeFocusOnTab: true
|
||||||
|
|
||||||
KeyNavigation.tab: keyNavigationTab
|
KeyNavigation.tab: keyNavigationTab
|
||||||
@@ -92,13 +95,17 @@ StyledRect {
|
|||||||
TextInput {
|
TextInput {
|
||||||
id: textInput
|
id: textInput
|
||||||
|
|
||||||
anchors.fill: parent
|
anchors.left: leftIcon.visible ? leftIcon.right : parent.left
|
||||||
anchors.leftMargin: root.leftPadding
|
anchors.leftMargin: Theme.spacingM
|
||||||
anchors.rightMargin: root.rightPadding
|
anchors.right: clearButton.visible ? clearButton.left : parent.right
|
||||||
|
anchors.rightMargin: Theme.spacingM
|
||||||
|
anchors.top: parent.top
|
||||||
anchors.topMargin: root.topPadding
|
anchors.topMargin: root.topPadding
|
||||||
|
anchors.bottom: parent.bottom
|
||||||
anchors.bottomMargin: root.bottomPadding
|
anchors.bottomMargin: root.bottomPadding
|
||||||
font.pixelSize: Theme.fontSizeMedium
|
font.pixelSize: Theme.fontSizeMedium
|
||||||
color: Theme.surfaceText
|
color: Theme.surfaceText
|
||||||
|
horizontalAlignment: I18n.isRtl ? TextInput.AlignRight : TextInput.AlignLeft
|
||||||
verticalAlignment: TextInput.AlignVCenter
|
verticalAlignment: TextInput.AlignVCenter
|
||||||
selectByMouse: !root.ignoreLeftRightKeys
|
selectByMouse: !root.ignoreLeftRightKeys
|
||||||
clip: true
|
clip: true
|
||||||
@@ -182,9 +189,10 @@ StyledRect {
|
|||||||
text: root.placeholderText
|
text: root.placeholderText
|
||||||
font: textInput.font
|
font: textInput.font
|
||||||
color: placeholderColor
|
color: placeholderColor
|
||||||
|
horizontalAlignment: textInput.horizontalAlignment
|
||||||
verticalAlignment: textInput.verticalAlignment
|
verticalAlignment: textInput.verticalAlignment
|
||||||
visible: textInput.text.length === 0 && !textInput.activeFocus
|
visible: textInput.text.length === 0 && !textInput.activeFocus
|
||||||
elide: Text.ElideRight
|
elide: I18n.isRtl ? Text.ElideLeft : Text.ElideRight
|
||||||
}
|
}
|
||||||
|
|
||||||
Behavior on border.color {
|
Behavior on border.color {
|
||||||
|
|||||||
@@ -5,6 +5,9 @@ import qs.Widgets
|
|||||||
Item {
|
Item {
|
||||||
id: toggle
|
id: toggle
|
||||||
|
|
||||||
|
LayoutMirroring.enabled: I18n.isRtl
|
||||||
|
LayoutMirroring.childrenInherit: true
|
||||||
|
|
||||||
// API
|
// API
|
||||||
property bool checked: false
|
property bool checked: false
|
||||||
property bool enabled: true
|
property bool enabled: true
|
||||||
@@ -27,9 +30,10 @@ Item {
|
|||||||
height: showText ? (description.length > 0 ? 60 : 44) : trackHeight
|
height: showText ? (description.length > 0 ? 60 : 44) : trackHeight
|
||||||
|
|
||||||
function handleClick() {
|
function handleClick() {
|
||||||
if (!enabled) return
|
if (!enabled)
|
||||||
clicked()
|
return;
|
||||||
toggled(!checked)
|
clicked();
|
||||||
|
toggled(!checked);
|
||||||
}
|
}
|
||||||
|
|
||||||
StyledRect {
|
StyledRect {
|
||||||
@@ -58,6 +62,7 @@ Item {
|
|||||||
visible: showText
|
visible: showText
|
||||||
|
|
||||||
Column {
|
Column {
|
||||||
|
width: parent.width
|
||||||
anchors.verticalCenter: parent.verticalCenter
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
spacing: Theme.spacingXS
|
spacing: Theme.spacingXS
|
||||||
|
|
||||||
@@ -66,6 +71,8 @@ Item {
|
|||||||
font.pixelSize: Appearance.fontSize.normal
|
font.pixelSize: Appearance.fontSize.normal
|
||||||
font.weight: Font.Medium
|
font.weight: Font.Medium
|
||||||
opacity: toggle.enabled ? 1 : 0.4
|
opacity: toggle.enabled ? 1 : 0.4
|
||||||
|
width: parent.width
|
||||||
|
anchors.left: parent.left
|
||||||
}
|
}
|
||||||
|
|
||||||
StyledText {
|
StyledText {
|
||||||
@@ -75,6 +82,7 @@ Item {
|
|||||||
wrapMode: Text.WordWrap
|
wrapMode: Text.WordWrap
|
||||||
width: Math.min(implicitWidth, toggle.width - 120)
|
width: Math.min(implicitWidth, toggle.width - 120)
|
||||||
visible: toggle.description.length > 0
|
visible: toggle.description.length > 0
|
||||||
|
anchors.left: parent.left
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -121,7 +129,7 @@ Item {
|
|||||||
}
|
}
|
||||||
ScriptAction {
|
ScriptAction {
|
||||||
script: {
|
script: {
|
||||||
toggle.toggleCompleted(toggle.checked)
|
toggle.toggleCompleted(toggle.checked);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -50,12 +50,18 @@
|
|||||||
"10 seconds": {
|
"10 seconds": {
|
||||||
"10 seconds": "10 segundos"
|
"10 seconds": "10 segundos"
|
||||||
},
|
},
|
||||||
|
"10-bit Color": {
|
||||||
|
"10-bit Color": ""
|
||||||
|
},
|
||||||
"14 days": {
|
"14 days": {
|
||||||
"14 days": ""
|
"14 days": ""
|
||||||
},
|
},
|
||||||
"15 seconds": {
|
"15 seconds": {
|
||||||
"15 seconds": "15 segundos"
|
"15 seconds": "15 segundos"
|
||||||
},
|
},
|
||||||
|
"180°": {
|
||||||
|
"180°": ""
|
||||||
|
},
|
||||||
"2 minutes": {
|
"2 minutes": {
|
||||||
"2 minutes": "2 minutos"
|
"2 minutes": "2 minutos"
|
||||||
},
|
},
|
||||||
@@ -65,6 +71,9 @@
|
|||||||
"24-hour format": {
|
"24-hour format": {
|
||||||
"24-hour format": "Formato de 24 horas"
|
"24-hour format": "Formato de 24 horas"
|
||||||
},
|
},
|
||||||
|
"270°": {
|
||||||
|
"270°": ""
|
||||||
|
},
|
||||||
"3 days": {
|
"3 days": {
|
||||||
"3 days": ""
|
"3 days": ""
|
||||||
},
|
},
|
||||||
@@ -95,6 +104,9 @@
|
|||||||
"90 days": {
|
"90 days": {
|
||||||
"90 days": ""
|
"90 days": ""
|
||||||
},
|
},
|
||||||
|
"90°": {
|
||||||
|
"90°": ""
|
||||||
|
},
|
||||||
"A file with this name already exists. Do you want to overwrite it?": {
|
"A file with this name already exists. Do you want to overwrite it?": {
|
||||||
"A file with this name already exists. Do you want to overwrite it?": "Un archivo con este nombre ya existe. ¿Quieres reemplazarlo?"
|
"A file with this name already exists. Do you want to overwrite it?": "Un archivo con este nombre ya existe. ¿Quieres reemplazarlo?"
|
||||||
},
|
},
|
||||||
@@ -200,6 +212,9 @@
|
|||||||
"Amount": {
|
"Amount": {
|
||||||
"Amount": ""
|
"Amount": ""
|
||||||
},
|
},
|
||||||
|
"Analog": {
|
||||||
|
"Analog": ""
|
||||||
|
},
|
||||||
"Animation Speed": {
|
"Animation Speed": {
|
||||||
"Animation Speed": "Velocidad de animación"
|
"Animation Speed": "Velocidad de animación"
|
||||||
},
|
},
|
||||||
@@ -218,6 +233,9 @@
|
|||||||
"Applications": {
|
"Applications": {
|
||||||
"Applications": "Aplicaciones"
|
"Applications": "Aplicaciones"
|
||||||
},
|
},
|
||||||
|
"Apply Changes": {
|
||||||
|
"Apply Changes": ""
|
||||||
|
},
|
||||||
"Apply GTK Colors": {
|
"Apply GTK Colors": {
|
||||||
"Apply GTK Colors": "Aplicar colores GTK"
|
"Apply GTK Colors": "Aplicar colores GTK"
|
||||||
},
|
},
|
||||||
@@ -233,6 +251,9 @@
|
|||||||
"Apps are ordered by usage frequency, then last used, then alphabetically.": {
|
"Apps are ordered by usage frequency, then last used, then alphabetically.": {
|
||||||
"Apps are ordered by usage frequency, then last used, then alphabetically.": "Las aplicaciones son ordenadas por frecuencia de uso, luego por último utilizado, y luego alfabéticamente."
|
"Apps are ordered by usage frequency, then last used, then alphabetically.": "Las aplicaciones son ordenadas por frecuencia de uso, luego por último utilizado, y luego alfabéticamente."
|
||||||
},
|
},
|
||||||
|
"Arrange displays and configure resolution, refresh rate, and VRR": {
|
||||||
|
"Arrange displays and configure resolution, refresh rate, and VRR": ""
|
||||||
|
},
|
||||||
"Audio": {
|
"Audio": {
|
||||||
"Audio": "Audio"
|
"Audio": "Audio"
|
||||||
},
|
},
|
||||||
@@ -284,6 +305,9 @@
|
|||||||
"Auto": {
|
"Auto": {
|
||||||
"Auto": "Auto"
|
"Auto": "Auto"
|
||||||
},
|
},
|
||||||
|
"Auto (Wide)": {
|
||||||
|
"Auto (Wide)": ""
|
||||||
|
},
|
||||||
"Auto Location": {
|
"Auto Location": {
|
||||||
"Auto Location": "Localización automática"
|
"Auto Location": "Localización automática"
|
||||||
},
|
},
|
||||||
@@ -365,6 +389,9 @@
|
|||||||
"Backend": {
|
"Backend": {
|
||||||
"Backend": "Backend"
|
"Backend": "Backend"
|
||||||
},
|
},
|
||||||
|
"Background Opacity": {
|
||||||
|
"Background Opacity": ""
|
||||||
|
},
|
||||||
"Balanced palette with focused accents (default).": {
|
"Balanced palette with focused accents (default).": {
|
||||||
"Balanced palette with focused accents (default).": "Colores armonizados con acentos definidos (base)."
|
"Balanced palette with focused accents (default).": "Colores armonizados con acentos definidos (base)."
|
||||||
},
|
},
|
||||||
@@ -392,6 +419,9 @@
|
|||||||
"Binds include added": {
|
"Binds include added": {
|
||||||
"Binds include added": ""
|
"Binds include added": ""
|
||||||
},
|
},
|
||||||
|
"Bit Depth": {
|
||||||
|
"Bit Depth": ""
|
||||||
|
},
|
||||||
"Bluetooth": {
|
"Bluetooth": {
|
||||||
"Bluetooth": "Bluetooth"
|
"Bluetooth": "Bluetooth"
|
||||||
},
|
},
|
||||||
@@ -422,6 +452,12 @@
|
|||||||
"Bottom": {
|
"Bottom": {
|
||||||
"Bottom": "Abajo"
|
"Bottom": "Abajo"
|
||||||
},
|
},
|
||||||
|
"Bottom Left": {
|
||||||
|
"Bottom Left": ""
|
||||||
|
},
|
||||||
|
"Bottom Right": {
|
||||||
|
"Bottom Right": ""
|
||||||
|
},
|
||||||
"Bottom Section": {
|
"Bottom Section": {
|
||||||
"Bottom Section": "Sección inferior"
|
"Bottom Section": "Sección inferior"
|
||||||
},
|
},
|
||||||
@@ -443,6 +479,9 @@
|
|||||||
"CPU": {
|
"CPU": {
|
||||||
"CPU": "CPU"
|
"CPU": "CPU"
|
||||||
},
|
},
|
||||||
|
"CPU Graph": {
|
||||||
|
"CPU Graph": ""
|
||||||
|
},
|
||||||
"CPU Temperature": {
|
"CPU Temperature": {
|
||||||
"CPU Temperature": "Temperatura de CPU"
|
"CPU Temperature": "Temperatura de CPU"
|
||||||
},
|
},
|
||||||
@@ -491,6 +530,9 @@
|
|||||||
"Center Section": {
|
"Center Section": {
|
||||||
"Center Section": "Sección central"
|
"Center Section": "Sección central"
|
||||||
},
|
},
|
||||||
|
"Center Single Column": {
|
||||||
|
"Center Single Column": ""
|
||||||
|
},
|
||||||
"Center Tiling": {
|
"Center Tiling": {
|
||||||
"Center Tiling": "Mosaico centrado"
|
"Center Tiling": "Mosaico centrado"
|
||||||
},
|
},
|
||||||
@@ -536,6 +578,9 @@
|
|||||||
"Choose where on-screen displays appear on screen": {
|
"Choose where on-screen displays appear on screen": {
|
||||||
"Choose where on-screen displays appear on screen": "Elije dónde aparecen los indicadores en pantalla"
|
"Choose where on-screen displays appear on screen": "Elije dónde aparecen los indicadores en pantalla"
|
||||||
},
|
},
|
||||||
|
"Choose which displays show this widget": {
|
||||||
|
"Choose which displays show this widget": ""
|
||||||
|
},
|
||||||
"Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": {
|
"Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": {
|
||||||
"Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": ""
|
"Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": ""
|
||||||
},
|
},
|
||||||
@@ -587,6 +632,9 @@
|
|||||||
"Clock": {
|
"Clock": {
|
||||||
"Clock": "Reloj"
|
"Clock": "Reloj"
|
||||||
},
|
},
|
||||||
|
"Clock Style": {
|
||||||
|
"Clock Style": ""
|
||||||
|
},
|
||||||
"Clock show seconds": {
|
"Clock show seconds": {
|
||||||
"Clock show seconds": "Mostrar segundos en el reloj"
|
"Clock show seconds": "Mostrar segundos en el reloj"
|
||||||
},
|
},
|
||||||
@@ -599,6 +647,12 @@
|
|||||||
"Color": {
|
"Color": {
|
||||||
"Color": "Color"
|
"Color": "Color"
|
||||||
},
|
},
|
||||||
|
"Color Gamut": {
|
||||||
|
"Color Gamut": ""
|
||||||
|
},
|
||||||
|
"Color Management": {
|
||||||
|
"Color Management": ""
|
||||||
|
},
|
||||||
"Color Mode": {
|
"Color Mode": {
|
||||||
"Color Mode": "Modo de color"
|
"Color Mode": "Modo de color"
|
||||||
},
|
},
|
||||||
@@ -623,6 +677,9 @@
|
|||||||
"Colorful mix of bright contrasting accents.": {
|
"Colorful mix of bright contrasting accents.": {
|
||||||
"Colorful mix of bright contrasting accents.": "Colores vivos con contrastes luminosos."
|
"Colorful mix of bright contrasting accents.": "Colores vivos con contrastes luminosos."
|
||||||
},
|
},
|
||||||
|
"Column": {
|
||||||
|
"Column": ""
|
||||||
|
},
|
||||||
"Command": {
|
"Command": {
|
||||||
"Command": "Comando"
|
"Command": "Comando"
|
||||||
},
|
},
|
||||||
@@ -656,12 +713,27 @@
|
|||||||
"Compositor": {
|
"Compositor": {
|
||||||
"Compositor": "Compositor"
|
"Compositor": "Compositor"
|
||||||
},
|
},
|
||||||
|
"Compositor Settings": {
|
||||||
|
"Compositor Settings": ""
|
||||||
|
},
|
||||||
|
"Config Format": {
|
||||||
|
"Config Format": ""
|
||||||
|
},
|
||||||
"Config action: %1": {
|
"Config action: %1": {
|
||||||
"Config action: %1": ""
|
"Config action: %1": ""
|
||||||
},
|
},
|
||||||
|
"Config validation failed": {
|
||||||
|
"Config validation failed": ""
|
||||||
|
},
|
||||||
|
"Configuration": {
|
||||||
|
"Configuration": ""
|
||||||
|
},
|
||||||
"Configuration activated": {
|
"Configuration activated": {
|
||||||
"Configuration activated": "Configuración activada"
|
"Configuration activated": "Configuración activada"
|
||||||
},
|
},
|
||||||
|
"Configuration will be preserved when this display reconnects": {
|
||||||
|
"Configuration will be preserved when this display reconnects": ""
|
||||||
|
},
|
||||||
"Configure a new printer": {
|
"Configure a new printer": {
|
||||||
"Configure a new printer": "Configurar nueva impresora"
|
"Configure a new printer": "Configurar nueva impresora"
|
||||||
},
|
},
|
||||||
@@ -710,6 +782,9 @@
|
|||||||
"Control currently playing media": {
|
"Control currently playing media": {
|
||||||
"Control currently playing media": "Controlar la reproducción en curso"
|
"Control currently playing media": "Controlar la reproducción en curso"
|
||||||
},
|
},
|
||||||
|
"Control workspaces and columns by scrolling on the bar": {
|
||||||
|
"Control workspaces and columns by scrolling on the bar": ""
|
||||||
|
},
|
||||||
"Controls opacity of all popouts, modals, and their content layers": {
|
"Controls opacity of all popouts, modals, and their content layers": {
|
||||||
"Controls opacity of all popouts, modals, and their content layers": ""
|
"Controls opacity of all popouts, modals, and their content layers": ""
|
||||||
},
|
},
|
||||||
@@ -815,6 +890,9 @@
|
|||||||
"Custom Transparency": {
|
"Custom Transparency": {
|
||||||
"Custom Transparency": "Transparencia personalizada"
|
"Custom Transparency": "Transparencia personalizada"
|
||||||
},
|
},
|
||||||
|
"Custom...": {
|
||||||
|
"Custom...": ""
|
||||||
|
},
|
||||||
"Custom: ": {
|
"Custom: ": {
|
||||||
"Custom: ": "Personalizado: "
|
"Custom: ": "Personalizado: "
|
||||||
},
|
},
|
||||||
@@ -896,6 +974,9 @@
|
|||||||
"Default": {
|
"Default": {
|
||||||
"Default": "Base"
|
"Default": "Base"
|
||||||
},
|
},
|
||||||
|
"Default Width (%)": {
|
||||||
|
"Default Width (%)": ""
|
||||||
|
},
|
||||||
"Default selected action": {
|
"Default selected action": {
|
||||||
"Default selected action": "Acción predeterminada"
|
"Default selected action": "Acción predeterminada"
|
||||||
},
|
},
|
||||||
@@ -923,6 +1004,12 @@
|
|||||||
"Description": {
|
"Description": {
|
||||||
"Description": "Descripción"
|
"Description": "Descripción"
|
||||||
},
|
},
|
||||||
|
"Desktop Clock": {
|
||||||
|
"Desktop Clock": ""
|
||||||
|
},
|
||||||
|
"Desktop Widgets": {
|
||||||
|
"Desktop Widgets": ""
|
||||||
|
},
|
||||||
"Desktop background images": {
|
"Desktop background images": {
|
||||||
"Desktop background images": "Imágenes de fondo de escritorio"
|
"Desktop background images": "Imágenes de fondo de escritorio"
|
||||||
},
|
},
|
||||||
@@ -935,6 +1022,9 @@
|
|||||||
"Device paired": {
|
"Device paired": {
|
||||||
"Device paired": "Dispositivo emparejado"
|
"Device paired": "Dispositivo emparejado"
|
||||||
},
|
},
|
||||||
|
"Digital": {
|
||||||
|
"Digital": ""
|
||||||
|
},
|
||||||
"Disable Autoconnect": {
|
"Disable Autoconnect": {
|
||||||
"Disable Autoconnect": "Desactivar conexión automática"
|
"Disable Autoconnect": "Desactivar conexión automática"
|
||||||
},
|
},
|
||||||
@@ -947,12 +1037,18 @@
|
|||||||
"Disable History Persistence": {
|
"Disable History Persistence": {
|
||||||
"Disable History Persistence": ""
|
"Disable History Persistence": ""
|
||||||
},
|
},
|
||||||
|
"Disable Output": {
|
||||||
|
"Disable Output": ""
|
||||||
|
},
|
||||||
"Disable clipboard manager entirely (requires restart)": {
|
"Disable clipboard manager entirely (requires restart)": {
|
||||||
"Disable clipboard manager entirely (requires restart)": ""
|
"Disable clipboard manager entirely (requires restart)": ""
|
||||||
},
|
},
|
||||||
"Disabled": {
|
"Disabled": {
|
||||||
"Disabled": "Desactivado"
|
"Disabled": "Desactivado"
|
||||||
},
|
},
|
||||||
|
"Discard": {
|
||||||
|
"Discard": ""
|
||||||
|
},
|
||||||
"Disconnect": {
|
"Disconnect": {
|
||||||
"Disconnect": "Desconectar"
|
"Disconnect": "Desconectar"
|
||||||
},
|
},
|
||||||
@@ -977,6 +1073,9 @@
|
|||||||
"Display Name Format": {
|
"Display Name Format": {
|
||||||
"Display Name Format": "Formato de nombre"
|
"Display Name Format": "Formato de nombre"
|
||||||
},
|
},
|
||||||
|
"Display Settings": {
|
||||||
|
"Display Settings": ""
|
||||||
|
},
|
||||||
"Display a dock with pinned and running applications": {
|
"Display a dock with pinned and running applications": {
|
||||||
"Display a dock with pinned and running applications": ""
|
"Display a dock with pinned and running applications": ""
|
||||||
},
|
},
|
||||||
@@ -989,6 +1088,9 @@
|
|||||||
"Display application icons in workspace indicators": {
|
"Display application icons in workspace indicators": {
|
||||||
"Display application icons in workspace indicators": "Mostrar iconos de aplicaciones en los espacios"
|
"Display application icons in workspace indicators": "Mostrar iconos de aplicaciones en los espacios"
|
||||||
},
|
},
|
||||||
|
"Display configuration is not available. WLR output management protocol not supported.": {
|
||||||
|
"Display configuration is not available. WLR output management protocol not supported.": ""
|
||||||
|
},
|
||||||
"Display currently focused application title": {
|
"Display currently focused application title": {
|
||||||
"Display currently focused application title": "Mostrar título de la aplicación enfocada"
|
"Display currently focused application title": "Mostrar título de la aplicación enfocada"
|
||||||
},
|
},
|
||||||
@@ -1079,6 +1181,9 @@
|
|||||||
"Empty": {
|
"Empty": {
|
||||||
"Empty": "Vacío"
|
"Empty": "Vacío"
|
||||||
},
|
},
|
||||||
|
"Enable 10-bit color depth for wider color gamut and HDR support": {
|
||||||
|
"Enable 10-bit color depth for wider color gamut and HDR support": ""
|
||||||
|
},
|
||||||
"Enable Autoconnect": {
|
"Enable Autoconnect": {
|
||||||
"Enable Autoconnect": "Activar conexión automática"
|
"Enable Autoconnect": "Activar conexión automática"
|
||||||
},
|
},
|
||||||
@@ -1088,6 +1193,9 @@
|
|||||||
"Enable Border": {
|
"Enable Border": {
|
||||||
"Enable Border": ""
|
"Enable Border": ""
|
||||||
},
|
},
|
||||||
|
"Enable Desktop Clock": {
|
||||||
|
"Enable Desktop Clock": ""
|
||||||
|
},
|
||||||
"Enable Do Not Disturb": {
|
"Enable Do Not Disturb": {
|
||||||
"Enable Do Not Disturb": "Activar \"No Molestar\""
|
"Enable Do Not Disturb": "Activar \"No Molestar\""
|
||||||
},
|
},
|
||||||
@@ -1097,6 +1205,9 @@
|
|||||||
"Enable Overview Overlay": {
|
"Enable Overview Overlay": {
|
||||||
"Enable Overview Overlay": "Activar el overlay en la vista general"
|
"Enable Overview Overlay": "Activar el overlay en la vista general"
|
||||||
},
|
},
|
||||||
|
"Enable System Monitor": {
|
||||||
|
"Enable System Monitor": ""
|
||||||
|
},
|
||||||
"Enable System Sounds": {
|
"Enable System Sounds": {
|
||||||
"Enable System Sounds": "Activar sonidos del sistema"
|
"Enable System Sounds": "Activar sonidos del sistema"
|
||||||
},
|
},
|
||||||
@@ -1187,6 +1298,9 @@
|
|||||||
"Exclusive Zone Offset": {
|
"Exclusive Zone Offset": {
|
||||||
"Exclusive Zone Offset": "Zona exclusiva"
|
"Exclusive Zone Offset": "Zona exclusiva"
|
||||||
},
|
},
|
||||||
|
"Experimental Feature": {
|
||||||
|
"Experimental Feature": ""
|
||||||
|
},
|
||||||
"F1/I: Toggle • F10: Help": {
|
"F1/I: Toggle • F10: Help": {
|
||||||
"F1/I: Toggle • F10: Help": "F1/I: Accionar • F10: Ayudar"
|
"F1/I: Toggle • F10: Help": "F1/I: Accionar • F10: Ayudar"
|
||||||
},
|
},
|
||||||
@@ -1316,6 +1430,9 @@
|
|||||||
"Failed to update sharing": {
|
"Failed to update sharing": {
|
||||||
"Failed to update sharing": "Error al actualizar la compartición"
|
"Failed to update sharing": "Error al actualizar la compartición"
|
||||||
},
|
},
|
||||||
|
"Failed to write temp file for validation": {
|
||||||
|
"Failed to write temp file for validation": ""
|
||||||
|
},
|
||||||
"Feels Like": {
|
"Feels Like": {
|
||||||
"Feels Like": "Temperatura"
|
"Feels Like": "Temperatura"
|
||||||
},
|
},
|
||||||
@@ -1349,6 +1466,21 @@
|
|||||||
"Fixing...": {
|
"Fixing...": {
|
||||||
"Fixing...": "Arreglando..."
|
"Fixing...": "Arreglando..."
|
||||||
},
|
},
|
||||||
|
"Flipped": {
|
||||||
|
"Flipped": ""
|
||||||
|
},
|
||||||
|
"Flipped 180°": {
|
||||||
|
"Flipped 180°": ""
|
||||||
|
},
|
||||||
|
"Flipped 270°": {
|
||||||
|
"Flipped 270°": ""
|
||||||
|
},
|
||||||
|
"Flipped 90°": {
|
||||||
|
"Flipped 90°": ""
|
||||||
|
},
|
||||||
|
"Focus at Startup": {
|
||||||
|
"Focus at Startup": ""
|
||||||
|
},
|
||||||
"Focused Window": {
|
"Focused Window": {
|
||||||
"Focused Window": "Ventana enfocada"
|
"Focused Window": "Ventana enfocada"
|
||||||
},
|
},
|
||||||
@@ -1367,9 +1499,15 @@
|
|||||||
"Font Weight": {
|
"Font Weight": {
|
||||||
"Font Weight": "Grosor de fuente"
|
"Font Weight": "Grosor de fuente"
|
||||||
},
|
},
|
||||||
|
"Force HDR": {
|
||||||
|
"Force HDR": ""
|
||||||
|
},
|
||||||
"Force Kill Process": {
|
"Force Kill Process": {
|
||||||
"Force Kill Process": "Forzar terminar el proceso"
|
"Force Kill Process": "Forzar terminar el proceso"
|
||||||
},
|
},
|
||||||
|
"Force Wide Color": {
|
||||||
|
"Force Wide Color": ""
|
||||||
|
},
|
||||||
"Force terminal applications to always use dark color schemes": {
|
"Force terminal applications to always use dark color schemes": {
|
||||||
"Force terminal applications to always use dark color schemes": "Forzar que las aplicaciones de terminal usen esquemas de colores oscuros"
|
"Force terminal applications to always use dark color schemes": "Forzar que las aplicaciones de terminal usen esquemas de colores oscuros"
|
||||||
},
|
},
|
||||||
@@ -1433,6 +1571,9 @@
|
|||||||
"Gradually fade the screen before locking with a configurable grace period": {
|
"Gradually fade the screen before locking with a configurable grace period": {
|
||||||
"Gradually fade the screen before locking with a configurable grace period": "Desvanecer gradualmente la pantalla antes de bloquear, con una duración configurable"
|
"Gradually fade the screen before locking with a configurable grace period": "Desvanecer gradualmente la pantalla antes de bloquear, con una duración configurable"
|
||||||
},
|
},
|
||||||
|
"Graph Time Range": {
|
||||||
|
"Graph Time Range": ""
|
||||||
|
},
|
||||||
"Graphics": {
|
"Graphics": {
|
||||||
"Graphics": "Gráficos"
|
"Graphics": "Gráficos"
|
||||||
},
|
},
|
||||||
@@ -1448,6 +1589,15 @@
|
|||||||
"Group multiple windows of the same app together with a window count indicator": {
|
"Group multiple windows of the same app together with a window count indicator": {
|
||||||
"Group multiple windows of the same app together with a window count indicator": "Mostrar número de ventanas agrupadas en el icono de la aplicación"
|
"Group multiple windows of the same app together with a window count indicator": "Mostrar número de ventanas agrupadas en el icono de la aplicación"
|
||||||
},
|
},
|
||||||
|
"HDR (EDID)": {
|
||||||
|
"HDR (EDID)": ""
|
||||||
|
},
|
||||||
|
"HDR Tone Mapping": {
|
||||||
|
"HDR Tone Mapping": ""
|
||||||
|
},
|
||||||
|
"HDR mode is experimental. Verify your monitor supports HDR before enabling.": {
|
||||||
|
"HDR mode is experimental. Verify your monitor supports HDR before enabling.": ""
|
||||||
|
},
|
||||||
"HSV": {
|
"HSV": {
|
||||||
"HSV": "HSV"
|
"HSV": "HSV"
|
||||||
},
|
},
|
||||||
@@ -1457,6 +1607,9 @@
|
|||||||
"Held": {
|
"Held": {
|
||||||
"Held": "Retenido"
|
"Held": "Retenido"
|
||||||
},
|
},
|
||||||
|
"Help": {
|
||||||
|
"Help": ""
|
||||||
|
},
|
||||||
"Hex": {
|
"Hex": {
|
||||||
"Hex": "HEX"
|
"Hex": "HEX"
|
||||||
},
|
},
|
||||||
@@ -1496,6 +1649,9 @@
|
|||||||
"Hold to confirm (%1s)": {
|
"Hold to confirm (%1s)": {
|
||||||
"Hold to confirm (%1s)": "Mantener pulsado para confirmar (%1s)"
|
"Hold to confirm (%1s)": "Mantener pulsado para confirmar (%1s)"
|
||||||
},
|
},
|
||||||
|
"Hot Corners": {
|
||||||
|
"Hot Corners": ""
|
||||||
|
},
|
||||||
"Hotkey overlay title (optional)": {
|
"Hotkey overlay title (optional)": {
|
||||||
"Hotkey overlay title (optional)": ""
|
"Hotkey overlay title (optional)": ""
|
||||||
},
|
},
|
||||||
@@ -1565,6 +1721,9 @@
|
|||||||
"Include Transitions": {
|
"Include Transitions": {
|
||||||
"Include Transitions": "Incluir transiciones"
|
"Include Transitions": "Incluir transiciones"
|
||||||
},
|
},
|
||||||
|
"Incompatible Plugins Loaded": {
|
||||||
|
"Incompatible Plugins Loaded": ""
|
||||||
|
},
|
||||||
"Incorrect password": {
|
"Incorrect password": {
|
||||||
"Incorrect password": "Contraseña incorrecta"
|
"Incorrect password": "Contraseña incorrecta"
|
||||||
},
|
},
|
||||||
@@ -1577,6 +1736,9 @@
|
|||||||
"Individual bar configuration": {
|
"Individual bar configuration": {
|
||||||
"Individual bar configuration": "Configuración individual de la barra"
|
"Individual bar configuration": "Configuración individual de la barra"
|
||||||
},
|
},
|
||||||
|
"Inherit": {
|
||||||
|
"Inherit": ""
|
||||||
|
},
|
||||||
"Inhibit idle timeout when audio or video is playing": {
|
"Inhibit idle timeout when audio or video is playing": {
|
||||||
"Inhibit idle timeout when audio or video is playing": "Mantener activo mientras se reproduce audio o video"
|
"Inhibit idle timeout when audio or video is playing": "Mantener activo mientras se reproduce audio o video"
|
||||||
},
|
},
|
||||||
@@ -1598,6 +1760,9 @@
|
|||||||
"Interval": {
|
"Interval": {
|
||||||
"Interval": "Intervalo"
|
"Interval": "Intervalo"
|
||||||
},
|
},
|
||||||
|
"Invalid configuration": {
|
||||||
|
"Invalid configuration": ""
|
||||||
|
},
|
||||||
"Invert on mode change": {
|
"Invert on mode change": {
|
||||||
"Invert on mode change": "Invertir al cambiar de modo"
|
"Invert on mode change": "Invertir al cambiar de modo"
|
||||||
},
|
},
|
||||||
@@ -1670,6 +1835,9 @@
|
|||||||
"Layout": {
|
"Layout": {
|
||||||
"Layout": "Diseño"
|
"Layout": "Diseño"
|
||||||
},
|
},
|
||||||
|
"Layout Overrides": {
|
||||||
|
"Layout Overrides": ""
|
||||||
|
},
|
||||||
"Left": {
|
"Left": {
|
||||||
"Left": "Izquierda"
|
"Left": "Izquierda"
|
||||||
},
|
},
|
||||||
@@ -1682,6 +1850,9 @@
|
|||||||
"Lines: %1": {
|
"Lines: %1": {
|
||||||
"Lines: %1": "Líneas: %1"
|
"Lines: %1": "Líneas: %1"
|
||||||
},
|
},
|
||||||
|
"List": {
|
||||||
|
"List": ""
|
||||||
|
},
|
||||||
"Lively palette with saturated accents.": {
|
"Lively palette with saturated accents.": {
|
||||||
"Lively palette with saturated accents.": "Paleta vibrante con acentos saturados."
|
"Lively palette with saturated accents.": "Paleta vibrante con acentos saturados."
|
||||||
},
|
},
|
||||||
@@ -1847,6 +2018,9 @@
|
|||||||
"Memory": {
|
"Memory": {
|
||||||
"Memory": "Memoria"
|
"Memory": "Memoria"
|
||||||
},
|
},
|
||||||
|
"Memory Graph": {
|
||||||
|
"Memory Graph": ""
|
||||||
|
},
|
||||||
"Memory Usage": {
|
"Memory Usage": {
|
||||||
"Memory Usage": "Uso de memoria"
|
"Memory Usage": "Uso de memoria"
|
||||||
},
|
},
|
||||||
@@ -1883,6 +2057,12 @@
|
|||||||
"Model": {
|
"Model": {
|
||||||
"Model": "Modelo"
|
"Model": "Modelo"
|
||||||
},
|
},
|
||||||
|
"Modified": {
|
||||||
|
"Modified": ""
|
||||||
|
},
|
||||||
|
"Monitor Configuration": {
|
||||||
|
"Monitor Configuration": ""
|
||||||
|
},
|
||||||
"Monitor whose wallpaper drives dynamic theming colors": {
|
"Monitor whose wallpaper drives dynamic theming colors": {
|
||||||
"Monitor whose wallpaper drives dynamic theming colors": "Seleccionar monitor que define los colores dinámicos"
|
"Monitor whose wallpaper drives dynamic theming colors": "Seleccionar monitor que define los colores dinámicos"
|
||||||
},
|
},
|
||||||
@@ -1898,6 +2078,9 @@
|
|||||||
"Mount": {
|
"Mount": {
|
||||||
"Mount": "Montar"
|
"Mount": "Montar"
|
||||||
},
|
},
|
||||||
|
"Move Widget": {
|
||||||
|
"Move Widget": ""
|
||||||
|
},
|
||||||
"Moving to Paused": {
|
"Moving to Paused": {
|
||||||
"Moving to Paused": "Pausando"
|
"Moving to Paused": "Pausando"
|
||||||
},
|
},
|
||||||
@@ -1919,6 +2102,9 @@
|
|||||||
"Network": {
|
"Network": {
|
||||||
"Network": "Red"
|
"Network": "Red"
|
||||||
},
|
},
|
||||||
|
"Network Graph": {
|
||||||
|
"Network Graph": ""
|
||||||
|
},
|
||||||
"Network Info": {
|
"Network Info": {
|
||||||
"Network Info": "Información de red"
|
"Network Info": "Información de red"
|
||||||
},
|
},
|
||||||
@@ -2015,6 +2201,9 @@
|
|||||||
"No drivers found": {
|
"No drivers found": {
|
||||||
"No drivers found": "No se encontraron controladores"
|
"No drivers found": "No se encontraron controladores"
|
||||||
},
|
},
|
||||||
|
"No features enabled": {
|
||||||
|
"No features enabled": ""
|
||||||
|
},
|
||||||
"No files found": {
|
"No files found": {
|
||||||
"No files found": "Archivos no encontrados"
|
"No files found": "Archivos no encontrados"
|
||||||
},
|
},
|
||||||
@@ -2042,9 +2231,15 @@
|
|||||||
"No printers found": {
|
"No printers found": {
|
||||||
"No printers found": "No se encontraron impresoras"
|
"No printers found": "No se encontraron impresoras"
|
||||||
},
|
},
|
||||||
|
"No variants created. Click Add to create a new monitor widget.": {
|
||||||
|
"No variants created. Click Add to create a new monitor widget.": ""
|
||||||
|
},
|
||||||
"None": {
|
"None": {
|
||||||
"None": "Ninguna"
|
"None": "Ninguna"
|
||||||
},
|
},
|
||||||
|
"Normal": {
|
||||||
|
"Normal": ""
|
||||||
|
},
|
||||||
"Normal Font": {
|
"Normal Font": {
|
||||||
"Normal Font": "Fuente normal"
|
"Normal Font": "Fuente normal"
|
||||||
},
|
},
|
||||||
@@ -2096,6 +2291,9 @@
|
|||||||
"OSD Position": {
|
"OSD Position": {
|
||||||
"OSD Position": "Posición OSD"
|
"OSD Position": "Posición OSD"
|
||||||
},
|
},
|
||||||
|
"Off": {
|
||||||
|
"Off": ""
|
||||||
|
},
|
||||||
"Office": {
|
"Office": {
|
||||||
"Office": "Oficina"
|
"Office": "Oficina"
|
||||||
},
|
},
|
||||||
@@ -2159,12 +2357,18 @@
|
|||||||
"Output Tray Missing": {
|
"Output Tray Missing": {
|
||||||
"Output Tray Missing": "Bandeja de salida no encontrada"
|
"Output Tray Missing": "Bandeja de salida no encontrada"
|
||||||
},
|
},
|
||||||
|
"Outputs Include Missing": {
|
||||||
|
"Outputs Include Missing": ""
|
||||||
|
},
|
||||||
"Overridden by config": {
|
"Overridden by config": {
|
||||||
"Overridden by config": ""
|
"Overridden by config": ""
|
||||||
},
|
},
|
||||||
"Override": {
|
"Override": {
|
||||||
"Override": "Sobrescribir"
|
"Override": "Sobrescribir"
|
||||||
},
|
},
|
||||||
|
"Override global layout settings for this output": {
|
||||||
|
"Override global layout settings for this output": ""
|
||||||
|
},
|
||||||
"Overrides": {
|
"Overrides": {
|
||||||
"Overrides": ""
|
"Overrides": ""
|
||||||
},
|
},
|
||||||
@@ -2324,6 +2528,9 @@
|
|||||||
"Preference": {
|
"Preference": {
|
||||||
"Preference": "Preferencia"
|
"Preference": "Preferencia"
|
||||||
},
|
},
|
||||||
|
"Preset Widths (%)": {
|
||||||
|
"Preset Widths (%)": ""
|
||||||
|
},
|
||||||
"Press key...": {
|
"Press key...": {
|
||||||
"Press key...": "Presiona la tecla deseada..."
|
"Press key...": "Presiona la tecla deseada..."
|
||||||
},
|
},
|
||||||
@@ -2372,6 +2579,9 @@
|
|||||||
"Process": {
|
"Process": {
|
||||||
"Process": "Proceso"
|
"Process": "Proceso"
|
||||||
},
|
},
|
||||||
|
"Process Count": {
|
||||||
|
"Process Count": ""
|
||||||
|
},
|
||||||
"Processing": {
|
"Processing": {
|
||||||
"Processing": "Procesando"
|
"Processing": "Procesando"
|
||||||
},
|
},
|
||||||
@@ -2447,12 +2657,27 @@
|
|||||||
"Require holding button/key to confirm power off, restart, suspend, hibernate and logout": {
|
"Require holding button/key to confirm power off, restart, suspend, hibernate and logout": {
|
||||||
"Require holding button/key to confirm power off, restart, suspend, hibernate and logout": "Requiere mantener pulsado el botón/tecla para confirmar apagar, reiniciar, suspender, hibernar y cerrar sesión"
|
"Require holding button/key to confirm power off, restart, suspend, hibernate and logout": "Requiere mantener pulsado el botón/tecla para confirmar apagar, reiniciar, suspender, hibernar y cerrar sesión"
|
||||||
},
|
},
|
||||||
|
"Requires DMS": {
|
||||||
|
"Requires DMS": ""
|
||||||
|
},
|
||||||
"Requires DWL compositor": {
|
"Requires DWL compositor": {
|
||||||
"Requires DWL compositor": "Requiere un compositor DWL"
|
"Requires DWL compositor": "Requiere un compositor DWL"
|
||||||
},
|
},
|
||||||
"Reset": {
|
"Reset": {
|
||||||
"Reset": "Reiniciar"
|
"Reset": "Reiniciar"
|
||||||
},
|
},
|
||||||
|
"Reset Position": {
|
||||||
|
"Reset Position": ""
|
||||||
|
},
|
||||||
|
"Reset Size": {
|
||||||
|
"Reset Size": ""
|
||||||
|
},
|
||||||
|
"Resize Widget": {
|
||||||
|
"Resize Widget": ""
|
||||||
|
},
|
||||||
|
"Resolution & Refresh": {
|
||||||
|
"Resolution & Refresh": ""
|
||||||
|
},
|
||||||
"Resources": {
|
"Resources": {
|
||||||
"Resources": "Recursos"
|
"Resources": "Recursos"
|
||||||
},
|
},
|
||||||
@@ -2483,6 +2708,12 @@
|
|||||||
"Right Tiling": {
|
"Right Tiling": {
|
||||||
"Right Tiling": "Mosaico derecho"
|
"Right Tiling": "Mosaico derecho"
|
||||||
},
|
},
|
||||||
|
"Right-click and drag anywhere on the widget": {
|
||||||
|
"Right-click and drag anywhere on the widget": ""
|
||||||
|
},
|
||||||
|
"Right-click and drag the bottom-right corner": {
|
||||||
|
"Right-click and drag the bottom-right corner": ""
|
||||||
|
},
|
||||||
"Right-click bar widget to cycle": {
|
"Right-click bar widget to cycle": {
|
||||||
"Right-click bar widget to cycle": "Clic derecho en la barra para cambiar"
|
"Right-click bar widget to cycle": "Clic derecho en la barra para cambiar"
|
||||||
},
|
},
|
||||||
@@ -2507,6 +2738,12 @@
|
|||||||
"Running Apps Settings": {
|
"Running Apps Settings": {
|
||||||
"Running Apps Settings": "Ajustes de aplicaciones activas"
|
"Running Apps Settings": "Ajustes de aplicaciones activas"
|
||||||
},
|
},
|
||||||
|
"SDR Brightness": {
|
||||||
|
"SDR Brightness": ""
|
||||||
|
},
|
||||||
|
"SDR Saturation": {
|
||||||
|
"SDR Saturation": ""
|
||||||
|
},
|
||||||
"Save": {
|
"Save": {
|
||||||
"Save": "Guardar"
|
"Save": "Guardar"
|
||||||
},
|
},
|
||||||
@@ -2522,6 +2759,9 @@
|
|||||||
"Saved Configurations": {
|
"Saved Configurations": {
|
||||||
"Saved Configurations": "Configuraciones guardadas"
|
"Saved Configurations": "Configuraciones guardadas"
|
||||||
},
|
},
|
||||||
|
"Scale": {
|
||||||
|
"Scale": ""
|
||||||
|
},
|
||||||
"Scale DankBar font sizes independently": {
|
"Scale DankBar font sizes independently": {
|
||||||
"Scale DankBar font sizes independently": "Escalar fuentes de la barra independientemente"
|
"Scale DankBar font sizes independently": "Escalar fuentes de la barra independientemente"
|
||||||
},
|
},
|
||||||
@@ -2540,6 +2780,9 @@
|
|||||||
"Screen sharing": {
|
"Screen sharing": {
|
||||||
"Screen sharing": "Compartir pantalla"
|
"Screen sharing": "Compartir pantalla"
|
||||||
},
|
},
|
||||||
|
"Scroll Wheel": {
|
||||||
|
"Scroll Wheel": ""
|
||||||
|
},
|
||||||
"Scroll song title": {
|
"Scroll song title": {
|
||||||
"Scroll song title": ""
|
"Scroll song title": ""
|
||||||
},
|
},
|
||||||
@@ -2570,6 +2813,9 @@
|
|||||||
"Searching...": {
|
"Searching...": {
|
||||||
"Searching...": "Buscando..."
|
"Searching...": "Buscando..."
|
||||||
},
|
},
|
||||||
|
"Secondary": {
|
||||||
|
"Secondary": ""
|
||||||
|
},
|
||||||
"Secured": {
|
"Secured": {
|
||||||
"Secured": "Seguro"
|
"Secured": "Seguro"
|
||||||
},
|
},
|
||||||
@@ -2666,15 +2912,39 @@
|
|||||||
"Show All Tags": {
|
"Show All Tags": {
|
||||||
"Show All Tags": "Mostrar todas las etiquetas"
|
"Show All Tags": "Mostrar todas las etiquetas"
|
||||||
},
|
},
|
||||||
|
"Show CPU": {
|
||||||
|
"Show CPU": ""
|
||||||
|
},
|
||||||
|
"Show CPU Graph": {
|
||||||
|
"Show CPU Graph": ""
|
||||||
|
},
|
||||||
|
"Show CPU Temp": {
|
||||||
|
"Show CPU Temp": ""
|
||||||
|
},
|
||||||
"Show Confirmation on Power Actions": {
|
"Show Confirmation on Power Actions": {
|
||||||
"Show Confirmation on Power Actions": "Mostrar una confirmación en las opciones de energía y apagado"
|
"Show Confirmation on Power Actions": "Mostrar una confirmación en las opciones de energía y apagado"
|
||||||
},
|
},
|
||||||
|
"Show Date": {
|
||||||
|
"Show Date": ""
|
||||||
|
},
|
||||||
|
"Show Disk": {
|
||||||
|
"Show Disk": ""
|
||||||
|
},
|
||||||
"Show Dock": {
|
"Show Dock": {
|
||||||
"Show Dock": "Mostrar dock"
|
"Show Dock": "Mostrar dock"
|
||||||
},
|
},
|
||||||
|
"Show GPU Temperature": {
|
||||||
|
"Show GPU Temperature": ""
|
||||||
|
},
|
||||||
|
"Show Header": {
|
||||||
|
"Show Header": ""
|
||||||
|
},
|
||||||
"Show Hibernate": {
|
"Show Hibernate": {
|
||||||
"Show Hibernate": "Mostrar Hibernar"
|
"Show Hibernate": "Mostrar Hibernar"
|
||||||
},
|
},
|
||||||
|
"Show Hour Numbers": {
|
||||||
|
"Show Hour Numbers": ""
|
||||||
|
},
|
||||||
"Show Line Numbers": {
|
"Show Line Numbers": {
|
||||||
"Show Line Numbers": "Mostrar números de líneas"
|
"Show Line Numbers": "Mostrar números de líneas"
|
||||||
},
|
},
|
||||||
@@ -2684,6 +2954,18 @@
|
|||||||
"Show Log Out": {
|
"Show Log Out": {
|
||||||
"Show Log Out": "Mostrar Cerrar sesión"
|
"Show Log Out": "Mostrar Cerrar sesión"
|
||||||
},
|
},
|
||||||
|
"Show Memory": {
|
||||||
|
"Show Memory": ""
|
||||||
|
},
|
||||||
|
"Show Memory Graph": {
|
||||||
|
"Show Memory Graph": ""
|
||||||
|
},
|
||||||
|
"Show Network": {
|
||||||
|
"Show Network": ""
|
||||||
|
},
|
||||||
|
"Show Network Graph": {
|
||||||
|
"Show Network Graph": ""
|
||||||
|
},
|
||||||
"Show Occupied Workspaces Only": {
|
"Show Occupied Workspaces Only": {
|
||||||
"Show Occupied Workspaces Only": "Mostrar solo espacios de trabajo ocupados"
|
"Show Occupied Workspaces Only": "Mostrar solo espacios de trabajo ocupados"
|
||||||
},
|
},
|
||||||
@@ -2705,6 +2987,9 @@
|
|||||||
"Show Suspend": {
|
"Show Suspend": {
|
||||||
"Show Suspend": "Mostrar Suspender"
|
"Show Suspend": "Mostrar Suspender"
|
||||||
},
|
},
|
||||||
|
"Show Top Processes": {
|
||||||
|
"Show Top Processes": ""
|
||||||
|
},
|
||||||
"Show Workspace Apps": {
|
"Show Workspace Apps": {
|
||||||
"Show Workspace Apps": "Mostrar aplicaciones en el espacio de trabajo"
|
"Show Workspace Apps": "Mostrar aplicaciones en el espacio de trabajo"
|
||||||
},
|
},
|
||||||
@@ -2807,9 +3092,15 @@
|
|||||||
"Sizing": {
|
"Sizing": {
|
||||||
"Sizing": ""
|
"Sizing": ""
|
||||||
},
|
},
|
||||||
|
"Some plugins require a newer version of DMS:": {
|
||||||
|
"Some plugins require a newer version of DMS:": ""
|
||||||
|
},
|
||||||
"Sort Alphabetically": {
|
"Sort Alphabetically": {
|
||||||
"Sort Alphabetically": "Ordenar alfabéticamente"
|
"Sort Alphabetically": "Ordenar alfabéticamente"
|
||||||
},
|
},
|
||||||
|
"Sort By": {
|
||||||
|
"Sort By": ""
|
||||||
|
},
|
||||||
"Sorting & Layout": {
|
"Sorting & Layout": {
|
||||||
"Sorting & Layout": ""
|
"Sorting & Layout": ""
|
||||||
},
|
},
|
||||||
@@ -2834,6 +3125,9 @@
|
|||||||
"Square Corners": {
|
"Square Corners": {
|
||||||
"Square Corners": "Esquinas cuadradas"
|
"Square Corners": "Esquinas cuadradas"
|
||||||
},
|
},
|
||||||
|
"Stacked": {
|
||||||
|
"Stacked": ""
|
||||||
|
},
|
||||||
"Start": {
|
"Start": {
|
||||||
"Start": "Empezar"
|
"Start": "Empezar"
|
||||||
},
|
},
|
||||||
@@ -3053,12 +3347,24 @@
|
|||||||
"Top Bar Format": {
|
"Top Bar Format": {
|
||||||
"Top Bar Format": "Formato en la barra superior"
|
"Top Bar Format": "Formato en la barra superior"
|
||||||
},
|
},
|
||||||
|
"Top Left": {
|
||||||
|
"Top Left": ""
|
||||||
|
},
|
||||||
|
"Top Processes": {
|
||||||
|
"Top Processes": ""
|
||||||
|
},
|
||||||
|
"Top Right": {
|
||||||
|
"Top Right": ""
|
||||||
|
},
|
||||||
"Top Section": {
|
"Top Section": {
|
||||||
"Top Section": "Sección superior"
|
"Top Section": "Sección superior"
|
||||||
},
|
},
|
||||||
"Total Jobs": {
|
"Total Jobs": {
|
||||||
"Total Jobs": "Trabajos totales"
|
"Total Jobs": "Trabajos totales"
|
||||||
},
|
},
|
||||||
|
"Transform": {
|
||||||
|
"Transform": ""
|
||||||
|
},
|
||||||
"Transition Effect": {
|
"Transition Effect": {
|
||||||
"Transition Effect": "Efecto de transición"
|
"Transition Effect": "Efecto de transición"
|
||||||
},
|
},
|
||||||
@@ -3182,9 +3488,27 @@
|
|||||||
"VPN status and quick connect": {
|
"VPN status and quick connect": {
|
||||||
"VPN status and quick connect": "Estado de VPN y conexión rápida"
|
"VPN status and quick connect": "Estado de VPN y conexión rápida"
|
||||||
},
|
},
|
||||||
|
"VRR": {
|
||||||
|
"VRR": ""
|
||||||
|
},
|
||||||
|
"VRR On-Demand": {
|
||||||
|
"VRR On-Demand": ""
|
||||||
|
},
|
||||||
|
"VRR activates only when applications request it": {
|
||||||
|
"VRR activates only when applications request it": ""
|
||||||
|
},
|
||||||
"VRR: ": {
|
"VRR: ": {
|
||||||
"VRR: ": "VRR: "
|
"VRR: ": "VRR: "
|
||||||
},
|
},
|
||||||
|
"Variable Refresh Rate": {
|
||||||
|
"Variable Refresh Rate": ""
|
||||||
|
},
|
||||||
|
"Variant created - expand to configure": {
|
||||||
|
"Variant created - expand to configure": ""
|
||||||
|
},
|
||||||
|
"Variant removed": {
|
||||||
|
"Variant removed": ""
|
||||||
|
},
|
||||||
"Version": {
|
"Version": {
|
||||||
"Version": "Versión"
|
"Version": "Versión"
|
||||||
},
|
},
|
||||||
@@ -3260,6 +3584,10 @@
|
|||||||
"When enabled, shows the launcher overlay when typing in Niri overview mode. Disable this if you prefer to not have the launcher when typing on Niri overview or want to use other launcher in the overview.": {
|
"When enabled, shows the launcher overlay when typing in Niri overview mode. Disable this if you prefer to not have the launcher when typing on Niri overview or want to use other launcher in the overview.": {
|
||||||
"When enabled, shows the launcher overlay when typing in Niri overview mode. Disable this if you prefer to not have the launcher when typing on Niri overview or want to use other launcher in the overview.": "Con esto activo, se mostrará el lanzador automáticamente cuando escribas algo en la vista general de Niri. Desactiva esto si prefieres que el lanzador no se abra al escribir en la vista general."
|
"When enabled, shows the launcher overlay when typing in Niri overview mode. Disable this if you prefer to not have the launcher when typing on Niri overview or want to use other launcher in the overview.": "Con esto activo, se mostrará el lanzador automáticamente cuando escribas algo en la vista general de Niri. Desactiva esto si prefieres que el lanzador no se abra al escribir en la vista general."
|
||||||
},
|
},
|
||||||
|
"When updater widget is used, then hide it if no update found": {
|
||||||
|
"Hide Updater Widget": "",
|
||||||
|
"When updater widget is used, then hide it if no update found": ""
|
||||||
|
},
|
||||||
"Wi-Fi Password": {
|
"Wi-Fi Password": {
|
||||||
"Wi-Fi Password": "Contraseña Wi-Fi"
|
"Wi-Fi Password": "Contraseña Wi-Fi"
|
||||||
},
|
},
|
||||||
@@ -3278,6 +3606,9 @@
|
|||||||
"WiFi is off": {
|
"WiFi is off": {
|
||||||
"WiFi is off": "Wi‑Fi apagado"
|
"WiFi is off": "Wi‑Fi apagado"
|
||||||
},
|
},
|
||||||
|
"Wide (BT2020)": {
|
||||||
|
"Wide (BT2020)": ""
|
||||||
|
},
|
||||||
"Widget Background Color": {
|
"Widget Background Color": {
|
||||||
"Widget Background Color": "Color de fondo del Widget"
|
"Widget Background Color": "Color de fondo del Widget"
|
||||||
},
|
},
|
||||||
@@ -3296,6 +3627,9 @@
|
|||||||
"Widget Transparency": {
|
"Widget Transparency": {
|
||||||
"Widget Transparency": "Transparencia de widget"
|
"Widget Transparency": "Transparencia de widget"
|
||||||
},
|
},
|
||||||
|
"Widget Variants": {
|
||||||
|
"Widget Variants": ""
|
||||||
|
},
|
||||||
"Widgets": {
|
"Widgets": {
|
||||||
"Widgets": "Widgets"
|
"Widgets": "Widgets"
|
||||||
},
|
},
|
||||||
@@ -3305,6 +3639,9 @@
|
|||||||
"Wind Speed": {
|
"Wind Speed": {
|
||||||
"Wind Speed": "Velocidad del viento"
|
"Wind Speed": "Velocidad del viento"
|
||||||
},
|
},
|
||||||
|
"Window Gaps (px)": {
|
||||||
|
"Window Gaps (px)": ""
|
||||||
|
},
|
||||||
"Workspace": {
|
"Workspace": {
|
||||||
"Workspace": "Espacio de trabajo"
|
"Workspace": "Espacio de trabajo"
|
||||||
},
|
},
|
||||||
@@ -3326,6 +3663,12 @@
|
|||||||
"Workspaces & Widgets": {
|
"Workspaces & Widgets": {
|
||||||
"Workspaces & Widgets": ""
|
"Workspaces & Widgets": ""
|
||||||
},
|
},
|
||||||
|
"X Axis": {
|
||||||
|
"X Axis": ""
|
||||||
|
},
|
||||||
|
"Y Axis": {
|
||||||
|
"Y Axis": ""
|
||||||
|
},
|
||||||
"Yes": {
|
"Yes": {
|
||||||
"Yes": "Si"
|
"Yes": "Si"
|
||||||
},
|
},
|
||||||
@@ -3398,6 +3741,9 @@
|
|||||||
"settings window title": {
|
"settings window title": {
|
||||||
"Settings": "Ajustes"
|
"Settings": "Ajustes"
|
||||||
},
|
},
|
||||||
|
"settings_displays": {
|
||||||
|
"Widgets": ""
|
||||||
|
},
|
||||||
"sysmon window title": {
|
"sysmon window title": {
|
||||||
"System Monitor": "Monitor del sistema"
|
"System Monitor": "Monitor del sistema"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -50,12 +50,18 @@
|
|||||||
"10 seconds": {
|
"10 seconds": {
|
||||||
"10 seconds": "10 שניות"
|
"10 seconds": "10 שניות"
|
||||||
},
|
},
|
||||||
|
"10-bit Color": {
|
||||||
|
"10-bit Color": ""
|
||||||
|
},
|
||||||
"14 days": {
|
"14 days": {
|
||||||
"14 days": ""
|
"14 days": ""
|
||||||
},
|
},
|
||||||
"15 seconds": {
|
"15 seconds": {
|
||||||
"15 seconds": "15 שניות"
|
"15 seconds": "15 שניות"
|
||||||
},
|
},
|
||||||
|
"180°": {
|
||||||
|
"180°": ""
|
||||||
|
},
|
||||||
"2 minutes": {
|
"2 minutes": {
|
||||||
"2 minutes": "2 דקות"
|
"2 minutes": "2 דקות"
|
||||||
},
|
},
|
||||||
@@ -65,6 +71,9 @@
|
|||||||
"24-hour format": {
|
"24-hour format": {
|
||||||
"24-hour format": "תבנית 24 שעות"
|
"24-hour format": "תבנית 24 שעות"
|
||||||
},
|
},
|
||||||
|
"270°": {
|
||||||
|
"270°": ""
|
||||||
|
},
|
||||||
"3 days": {
|
"3 days": {
|
||||||
"3 days": ""
|
"3 days": ""
|
||||||
},
|
},
|
||||||
@@ -95,6 +104,9 @@
|
|||||||
"90 days": {
|
"90 days": {
|
||||||
"90 days": ""
|
"90 days": ""
|
||||||
},
|
},
|
||||||
|
"90°": {
|
||||||
|
"90°": ""
|
||||||
|
},
|
||||||
"A file with this name already exists. Do you want to overwrite it?": {
|
"A file with this name already exists. Do you want to overwrite it?": {
|
||||||
"A file with this name already exists. Do you want to overwrite it?": "קיים כבר קובץ עם השם זה. האם ברצונך לדרוס אותו?"
|
"A file with this name already exists. Do you want to overwrite it?": "קיים כבר קובץ עם השם זה. האם ברצונך לדרוס אותו?"
|
||||||
},
|
},
|
||||||
@@ -200,6 +212,9 @@
|
|||||||
"Amount": {
|
"Amount": {
|
||||||
"Amount": ""
|
"Amount": ""
|
||||||
},
|
},
|
||||||
|
"Analog": {
|
||||||
|
"Analog": ""
|
||||||
|
},
|
||||||
"Animation Speed": {
|
"Animation Speed": {
|
||||||
"Animation Speed": "מהירות אנימציה"
|
"Animation Speed": "מהירות אנימציה"
|
||||||
},
|
},
|
||||||
@@ -218,6 +233,9 @@
|
|||||||
"Applications": {
|
"Applications": {
|
||||||
"Applications": "אפליקציות"
|
"Applications": "אפליקציות"
|
||||||
},
|
},
|
||||||
|
"Apply Changes": {
|
||||||
|
"Apply Changes": ""
|
||||||
|
},
|
||||||
"Apply GTK Colors": {
|
"Apply GTK Colors": {
|
||||||
"Apply GTK Colors": "החל/י צבעי GTK"
|
"Apply GTK Colors": "החל/י צבעי GTK"
|
||||||
},
|
},
|
||||||
@@ -233,6 +251,9 @@
|
|||||||
"Apps are ordered by usage frequency, then last used, then alphabetically.": {
|
"Apps are ordered by usage frequency, then last used, then alphabetically.": {
|
||||||
"Apps are ordered by usage frequency, then last used, then alphabetically.": "האפליקציות ממוינות לפי תדירות השימוש, אחר כך לפי שימוש אחרון ולבסוף לפי סדר אלפביתי."
|
"Apps are ordered by usage frequency, then last used, then alphabetically.": "האפליקציות ממוינות לפי תדירות השימוש, אחר כך לפי שימוש אחרון ולבסוף לפי סדר אלפביתי."
|
||||||
},
|
},
|
||||||
|
"Arrange displays and configure resolution, refresh rate, and VRR": {
|
||||||
|
"Arrange displays and configure resolution, refresh rate, and VRR": ""
|
||||||
|
},
|
||||||
"Audio": {
|
"Audio": {
|
||||||
"Audio": "אודיו"
|
"Audio": "אודיו"
|
||||||
},
|
},
|
||||||
@@ -284,6 +305,9 @@
|
|||||||
"Auto": {
|
"Auto": {
|
||||||
"Auto": "אוטומטי"
|
"Auto": "אוטומטי"
|
||||||
},
|
},
|
||||||
|
"Auto (Wide)": {
|
||||||
|
"Auto (Wide)": ""
|
||||||
|
},
|
||||||
"Auto Location": {
|
"Auto Location": {
|
||||||
"Auto Location": "מיקום אוטומטי"
|
"Auto Location": "מיקום אוטומטי"
|
||||||
},
|
},
|
||||||
@@ -365,6 +389,9 @@
|
|||||||
"Backend": {
|
"Backend": {
|
||||||
"Backend": "Backend"
|
"Backend": "Backend"
|
||||||
},
|
},
|
||||||
|
"Background Opacity": {
|
||||||
|
"Background Opacity": ""
|
||||||
|
},
|
||||||
"Balanced palette with focused accents (default).": {
|
"Balanced palette with focused accents (default).": {
|
||||||
"Balanced palette with focused accents (default).": "פלטה מאוזנת עם דגשים ממוקדים (ברירת מחדל)."
|
"Balanced palette with focused accents (default).": "פלטה מאוזנת עם דגשים ממוקדים (ברירת מחדל)."
|
||||||
},
|
},
|
||||||
@@ -392,6 +419,9 @@
|
|||||||
"Binds include added": {
|
"Binds include added": {
|
||||||
"Binds include added": "קובץ includes של קיצורי מקלדת נוסף"
|
"Binds include added": "קובץ includes של קיצורי מקלדת נוסף"
|
||||||
},
|
},
|
||||||
|
"Bit Depth": {
|
||||||
|
"Bit Depth": ""
|
||||||
|
},
|
||||||
"Bluetooth": {
|
"Bluetooth": {
|
||||||
"Bluetooth": "Bluetooth"
|
"Bluetooth": "Bluetooth"
|
||||||
},
|
},
|
||||||
@@ -422,6 +452,12 @@
|
|||||||
"Bottom": {
|
"Bottom": {
|
||||||
"Bottom": "למטה"
|
"Bottom": "למטה"
|
||||||
},
|
},
|
||||||
|
"Bottom Left": {
|
||||||
|
"Bottom Left": ""
|
||||||
|
},
|
||||||
|
"Bottom Right": {
|
||||||
|
"Bottom Right": ""
|
||||||
|
},
|
||||||
"Bottom Section": {
|
"Bottom Section": {
|
||||||
"Bottom Section": "קטע תחתון"
|
"Bottom Section": "קטע תחתון"
|
||||||
},
|
},
|
||||||
@@ -443,6 +479,9 @@
|
|||||||
"CPU": {
|
"CPU": {
|
||||||
"CPU": "CPU"
|
"CPU": "CPU"
|
||||||
},
|
},
|
||||||
|
"CPU Graph": {
|
||||||
|
"CPU Graph": ""
|
||||||
|
},
|
||||||
"CPU Temperature": {
|
"CPU Temperature": {
|
||||||
"CPU Temperature": "טמפרטורת CPU"
|
"CPU Temperature": "טמפרטורת CPU"
|
||||||
},
|
},
|
||||||
@@ -491,6 +530,9 @@
|
|||||||
"Center Section": {
|
"Center Section": {
|
||||||
"Center Section": "קטע אמצעי"
|
"Center Section": "קטע אמצעי"
|
||||||
},
|
},
|
||||||
|
"Center Single Column": {
|
||||||
|
"Center Single Column": ""
|
||||||
|
},
|
||||||
"Center Tiling": {
|
"Center Tiling": {
|
||||||
"Center Tiling": "ריצוף מרכזי"
|
"Center Tiling": "ריצוף מרכזי"
|
||||||
},
|
},
|
||||||
@@ -536,6 +578,9 @@
|
|||||||
"Choose where on-screen displays appear on screen": {
|
"Choose where on-screen displays appear on screen": {
|
||||||
"Choose where on-screen displays appear on screen": "בחר/י היכן יופיעו תצוגות הOSD על המסך"
|
"Choose where on-screen displays appear on screen": "בחר/י היכן יופיעו תצוגות הOSD על המסך"
|
||||||
},
|
},
|
||||||
|
"Choose which displays show this widget": {
|
||||||
|
"Choose which displays show this widget": ""
|
||||||
|
},
|
||||||
"Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": {
|
"Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": {
|
||||||
"Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": "בחר/י איזה מסך מציג את ממשק מסך הנעילה. מסכים אחרים יציגו צבע אחיד להגנה מפני צריבת OLED."
|
"Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": "בחר/י איזה מסך מציג את ממשק מסך הנעילה. מסכים אחרים יציגו צבע אחיד להגנה מפני צריבת OLED."
|
||||||
},
|
},
|
||||||
@@ -587,6 +632,9 @@
|
|||||||
"Clock": {
|
"Clock": {
|
||||||
"Clock": "שעון"
|
"Clock": "שעון"
|
||||||
},
|
},
|
||||||
|
"Clock Style": {
|
||||||
|
"Clock Style": ""
|
||||||
|
},
|
||||||
"Clock show seconds": {
|
"Clock show seconds": {
|
||||||
"Clock show seconds": "הצגת שניות בשעון"
|
"Clock show seconds": "הצגת שניות בשעון"
|
||||||
},
|
},
|
||||||
@@ -599,6 +647,12 @@
|
|||||||
"Color": {
|
"Color": {
|
||||||
"Color": "צבע"
|
"Color": "צבע"
|
||||||
},
|
},
|
||||||
|
"Color Gamut": {
|
||||||
|
"Color Gamut": ""
|
||||||
|
},
|
||||||
|
"Color Management": {
|
||||||
|
"Color Management": ""
|
||||||
|
},
|
||||||
"Color Mode": {
|
"Color Mode": {
|
||||||
"Color Mode": "מצב צבע"
|
"Color Mode": "מצב צבע"
|
||||||
},
|
},
|
||||||
@@ -623,6 +677,9 @@
|
|||||||
"Colorful mix of bright contrasting accents.": {
|
"Colorful mix of bright contrasting accents.": {
|
||||||
"Colorful mix of bright contrasting accents.": "שילוב צבעוני של דגשים מנוגדים ובהירים."
|
"Colorful mix of bright contrasting accents.": "שילוב צבעוני של דגשים מנוגדים ובהירים."
|
||||||
},
|
},
|
||||||
|
"Column": {
|
||||||
|
"Column": ""
|
||||||
|
},
|
||||||
"Command": {
|
"Command": {
|
||||||
"Command": "פקודה"
|
"Command": "פקודה"
|
||||||
},
|
},
|
||||||
@@ -656,12 +713,27 @@
|
|||||||
"Compositor": {
|
"Compositor": {
|
||||||
"Compositor": "קומפוזיטור"
|
"Compositor": "קומפוזיטור"
|
||||||
},
|
},
|
||||||
|
"Compositor Settings": {
|
||||||
|
"Compositor Settings": ""
|
||||||
|
},
|
||||||
|
"Config Format": {
|
||||||
|
"Config Format": ""
|
||||||
|
},
|
||||||
"Config action: %1": {
|
"Config action: %1": {
|
||||||
"Config action: %1": "פעולת config: %1"
|
"Config action: %1": "פעולת config: %1"
|
||||||
},
|
},
|
||||||
|
"Config validation failed": {
|
||||||
|
"Config validation failed": ""
|
||||||
|
},
|
||||||
|
"Configuration": {
|
||||||
|
"Configuration": ""
|
||||||
|
},
|
||||||
"Configuration activated": {
|
"Configuration activated": {
|
||||||
"Configuration activated": "התצורה הופעלה"
|
"Configuration activated": "התצורה הופעלה"
|
||||||
},
|
},
|
||||||
|
"Configuration will be preserved when this display reconnects": {
|
||||||
|
"Configuration will be preserved when this display reconnects": ""
|
||||||
|
},
|
||||||
"Configure a new printer": {
|
"Configure a new printer": {
|
||||||
"Configure a new printer": "הגדר/י מדפסת חדשה"
|
"Configure a new printer": "הגדר/י מדפסת חדשה"
|
||||||
},
|
},
|
||||||
@@ -710,6 +782,9 @@
|
|||||||
"Control currently playing media": {
|
"Control currently playing media": {
|
||||||
"Control currently playing media": "שלוט/שלטי במדיה שמתנגנת כעת"
|
"Control currently playing media": "שלוט/שלטי במדיה שמתנגנת כעת"
|
||||||
},
|
},
|
||||||
|
"Control workspaces and columns by scrolling on the bar": {
|
||||||
|
"Control workspaces and columns by scrolling on the bar": ""
|
||||||
|
},
|
||||||
"Controls opacity of all popouts, modals, and their content layers": {
|
"Controls opacity of all popouts, modals, and their content layers": {
|
||||||
"Controls opacity of all popouts, modals, and their content layers": "שולט בשקיפות של כל החלונות הקופצים, המודלים ושכבות התוכן שלהם"
|
"Controls opacity of all popouts, modals, and their content layers": "שולט בשקיפות של כל החלונות הקופצים, המודלים ושכבות התוכן שלהם"
|
||||||
},
|
},
|
||||||
@@ -815,6 +890,9 @@
|
|||||||
"Custom Transparency": {
|
"Custom Transparency": {
|
||||||
"Custom Transparency": "שקיפות מותאמת אישית"
|
"Custom Transparency": "שקיפות מותאמת אישית"
|
||||||
},
|
},
|
||||||
|
"Custom...": {
|
||||||
|
"Custom...": ""
|
||||||
|
},
|
||||||
"Custom: ": {
|
"Custom: ": {
|
||||||
"Custom: ": "מותאם אישית: "
|
"Custom: ": "מותאם אישית: "
|
||||||
},
|
},
|
||||||
@@ -896,6 +974,9 @@
|
|||||||
"Default": {
|
"Default": {
|
||||||
"Default": "ברירת מחדל"
|
"Default": "ברירת מחדל"
|
||||||
},
|
},
|
||||||
|
"Default Width (%)": {
|
||||||
|
"Default Width (%)": ""
|
||||||
|
},
|
||||||
"Default selected action": {
|
"Default selected action": {
|
||||||
"Default selected action": "פעולת ברירת המחדל שנבחרה"
|
"Default selected action": "פעולת ברירת המחדל שנבחרה"
|
||||||
},
|
},
|
||||||
@@ -923,6 +1004,12 @@
|
|||||||
"Description": {
|
"Description": {
|
||||||
"Description": "תיאור"
|
"Description": "תיאור"
|
||||||
},
|
},
|
||||||
|
"Desktop Clock": {
|
||||||
|
"Desktop Clock": ""
|
||||||
|
},
|
||||||
|
"Desktop Widgets": {
|
||||||
|
"Desktop Widgets": ""
|
||||||
|
},
|
||||||
"Desktop background images": {
|
"Desktop background images": {
|
||||||
"Desktop background images": "תמונות רקע לשולחן העבודה"
|
"Desktop background images": "תמונות רקע לשולחן העבודה"
|
||||||
},
|
},
|
||||||
@@ -935,6 +1022,9 @@
|
|||||||
"Device paired": {
|
"Device paired": {
|
||||||
"Device paired": "ההתקן צומד"
|
"Device paired": "ההתקן צומד"
|
||||||
},
|
},
|
||||||
|
"Digital": {
|
||||||
|
"Digital": ""
|
||||||
|
},
|
||||||
"Disable Autoconnect": {
|
"Disable Autoconnect": {
|
||||||
"Disable Autoconnect": "השבת/י התחברות אוטומטית"
|
"Disable Autoconnect": "השבת/י התחברות אוטומטית"
|
||||||
},
|
},
|
||||||
@@ -947,12 +1037,18 @@
|
|||||||
"Disable History Persistence": {
|
"Disable History Persistence": {
|
||||||
"Disable History Persistence": ""
|
"Disable History Persistence": ""
|
||||||
},
|
},
|
||||||
|
"Disable Output": {
|
||||||
|
"Disable Output": ""
|
||||||
|
},
|
||||||
"Disable clipboard manager entirely (requires restart)": {
|
"Disable clipboard manager entirely (requires restart)": {
|
||||||
"Disable clipboard manager entirely (requires restart)": ""
|
"Disable clipboard manager entirely (requires restart)": ""
|
||||||
},
|
},
|
||||||
"Disabled": {
|
"Disabled": {
|
||||||
"Disabled": "מושבת"
|
"Disabled": "מושבת"
|
||||||
},
|
},
|
||||||
|
"Discard": {
|
||||||
|
"Discard": ""
|
||||||
|
},
|
||||||
"Disconnect": {
|
"Disconnect": {
|
||||||
"Disconnect": "ניתוק"
|
"Disconnect": "ניתוק"
|
||||||
},
|
},
|
||||||
@@ -977,6 +1073,9 @@
|
|||||||
"Display Name Format": {
|
"Display Name Format": {
|
||||||
"Display Name Format": "תבנית שם התצוגה"
|
"Display Name Format": "תבנית שם התצוגה"
|
||||||
},
|
},
|
||||||
|
"Display Settings": {
|
||||||
|
"Display Settings": ""
|
||||||
|
},
|
||||||
"Display a dock with pinned and running applications": {
|
"Display a dock with pinned and running applications": {
|
||||||
"Display a dock with pinned and running applications": "הצג/י Dock עם יישומים מוצמדים ופעילים"
|
"Display a dock with pinned and running applications": "הצג/י Dock עם יישומים מוצמדים ופעילים"
|
||||||
},
|
},
|
||||||
@@ -989,6 +1088,9 @@
|
|||||||
"Display application icons in workspace indicators": {
|
"Display application icons in workspace indicators": {
|
||||||
"Display application icons in workspace indicators": "הצג/י סמלי אפליקציות במצייני סביבת העבודה"
|
"Display application icons in workspace indicators": "הצג/י סמלי אפליקציות במצייני סביבת העבודה"
|
||||||
},
|
},
|
||||||
|
"Display configuration is not available. WLR output management protocol not supported.": {
|
||||||
|
"Display configuration is not available. WLR output management protocol not supported.": ""
|
||||||
|
},
|
||||||
"Display currently focused application title": {
|
"Display currently focused application title": {
|
||||||
"Display currently focused application title": "הצג/י את כותרת האפליקציה שנמצאת כרגע במוקד"
|
"Display currently focused application title": "הצג/י את כותרת האפליקציה שנמצאת כרגע במוקד"
|
||||||
},
|
},
|
||||||
@@ -1079,6 +1181,9 @@
|
|||||||
"Empty": {
|
"Empty": {
|
||||||
"Empty": "ריק"
|
"Empty": "ריק"
|
||||||
},
|
},
|
||||||
|
"Enable 10-bit color depth for wider color gamut and HDR support": {
|
||||||
|
"Enable 10-bit color depth for wider color gamut and HDR support": ""
|
||||||
|
},
|
||||||
"Enable Autoconnect": {
|
"Enable Autoconnect": {
|
||||||
"Enable Autoconnect": "הפעל/י התחברות אוטומטית"
|
"Enable Autoconnect": "הפעל/י התחברות אוטומטית"
|
||||||
},
|
},
|
||||||
@@ -1088,6 +1193,9 @@
|
|||||||
"Enable Border": {
|
"Enable Border": {
|
||||||
"Enable Border": "הפעל/י מסגרת"
|
"Enable Border": "הפעל/י מסגרת"
|
||||||
},
|
},
|
||||||
|
"Enable Desktop Clock": {
|
||||||
|
"Enable Desktop Clock": ""
|
||||||
|
},
|
||||||
"Enable Do Not Disturb": {
|
"Enable Do Not Disturb": {
|
||||||
"Enable Do Not Disturb": "הפעל/י את מצב ״נא לא להפריע״"
|
"Enable Do Not Disturb": "הפעל/י את מצב ״נא לא להפריע״"
|
||||||
},
|
},
|
||||||
@@ -1097,6 +1205,9 @@
|
|||||||
"Enable Overview Overlay": {
|
"Enable Overview Overlay": {
|
||||||
"Enable Overview Overlay": "הפעל/י שכבת כיסוי לסקירה"
|
"Enable Overview Overlay": "הפעל/י שכבת כיסוי לסקירה"
|
||||||
},
|
},
|
||||||
|
"Enable System Monitor": {
|
||||||
|
"Enable System Monitor": ""
|
||||||
|
},
|
||||||
"Enable System Sounds": {
|
"Enable System Sounds": {
|
||||||
"Enable System Sounds": "הפעלת צלילי מערכת"
|
"Enable System Sounds": "הפעלת צלילי מערכת"
|
||||||
},
|
},
|
||||||
@@ -1187,6 +1298,9 @@
|
|||||||
"Exclusive Zone Offset": {
|
"Exclusive Zone Offset": {
|
||||||
"Exclusive Zone Offset": "היסט האזור הבלעדי"
|
"Exclusive Zone Offset": "היסט האזור הבלעדי"
|
||||||
},
|
},
|
||||||
|
"Experimental Feature": {
|
||||||
|
"Experimental Feature": ""
|
||||||
|
},
|
||||||
"F1/I: Toggle • F10: Help": {
|
"F1/I: Toggle • F10: Help": {
|
||||||
"F1/I: Toggle • F10: Help": "F1/I: החלפה • F10: עזרה"
|
"F1/I: Toggle • F10: Help": "F1/I: החלפה • F10: עזרה"
|
||||||
},
|
},
|
||||||
@@ -1316,6 +1430,9 @@
|
|||||||
"Failed to update sharing": {
|
"Failed to update sharing": {
|
||||||
"Failed to update sharing": "עדכון השיתוף נכשל"
|
"Failed to update sharing": "עדכון השיתוף נכשל"
|
||||||
},
|
},
|
||||||
|
"Failed to write temp file for validation": {
|
||||||
|
"Failed to write temp file for validation": ""
|
||||||
|
},
|
||||||
"Feels Like": {
|
"Feels Like": {
|
||||||
"Feels Like": "מרגיש כמו"
|
"Feels Like": "מרגיש כמו"
|
||||||
},
|
},
|
||||||
@@ -1349,6 +1466,21 @@
|
|||||||
"Fixing...": {
|
"Fixing...": {
|
||||||
"Fixing...": "מתקן..."
|
"Fixing...": "מתקן..."
|
||||||
},
|
},
|
||||||
|
"Flipped": {
|
||||||
|
"Flipped": ""
|
||||||
|
},
|
||||||
|
"Flipped 180°": {
|
||||||
|
"Flipped 180°": ""
|
||||||
|
},
|
||||||
|
"Flipped 270°": {
|
||||||
|
"Flipped 270°": ""
|
||||||
|
},
|
||||||
|
"Flipped 90°": {
|
||||||
|
"Flipped 90°": ""
|
||||||
|
},
|
||||||
|
"Focus at Startup": {
|
||||||
|
"Focus at Startup": ""
|
||||||
|
},
|
||||||
"Focused Window": {
|
"Focused Window": {
|
||||||
"Focused Window": "חלון ממוקד"
|
"Focused Window": "חלון ממוקד"
|
||||||
},
|
},
|
||||||
@@ -1367,9 +1499,15 @@
|
|||||||
"Font Weight": {
|
"Font Weight": {
|
||||||
"Font Weight": "משקל הגופן"
|
"Font Weight": "משקל הגופן"
|
||||||
},
|
},
|
||||||
|
"Force HDR": {
|
||||||
|
"Force HDR": ""
|
||||||
|
},
|
||||||
"Force Kill Process": {
|
"Force Kill Process": {
|
||||||
"Force Kill Process": "אילוץ סיום תהליך"
|
"Force Kill Process": "אילוץ סיום תהליך"
|
||||||
},
|
},
|
||||||
|
"Force Wide Color": {
|
||||||
|
"Force Wide Color": ""
|
||||||
|
},
|
||||||
"Force terminal applications to always use dark color schemes": {
|
"Force terminal applications to always use dark color schemes": {
|
||||||
"Force terminal applications to always use dark color schemes": "אלץ/י יישומי מסוף להשתמש תמיד בערכות צבעים כהות"
|
"Force terminal applications to always use dark color schemes": "אלץ/י יישומי מסוף להשתמש תמיד בערכות צבעים כהות"
|
||||||
},
|
},
|
||||||
@@ -1433,6 +1571,9 @@
|
|||||||
"Gradually fade the screen before locking with a configurable grace period": {
|
"Gradually fade the screen before locking with a configurable grace period": {
|
||||||
"Gradually fade the screen before locking with a configurable grace period": "הפעל/י דהייה הדרגתית של המסך לפני הנעילה עם תקופת חסד הניתנת להגדרה"
|
"Gradually fade the screen before locking with a configurable grace period": "הפעל/י דהייה הדרגתית של המסך לפני הנעילה עם תקופת חסד הניתנת להגדרה"
|
||||||
},
|
},
|
||||||
|
"Graph Time Range": {
|
||||||
|
"Graph Time Range": ""
|
||||||
|
},
|
||||||
"Graphics": {
|
"Graphics": {
|
||||||
"Graphics": "גרפיקה"
|
"Graphics": "גרפיקה"
|
||||||
},
|
},
|
||||||
@@ -1448,6 +1589,15 @@
|
|||||||
"Group multiple windows of the same app together with a window count indicator": {
|
"Group multiple windows of the same app together with a window count indicator": {
|
||||||
"Group multiple windows of the same app together with a window count indicator": "קבץ/י מספר חלונות של אותה אפליקציה יחד עם מונה חלונות"
|
"Group multiple windows of the same app together with a window count indicator": "קבץ/י מספר חלונות של אותה אפליקציה יחד עם מונה חלונות"
|
||||||
},
|
},
|
||||||
|
"HDR (EDID)": {
|
||||||
|
"HDR (EDID)": ""
|
||||||
|
},
|
||||||
|
"HDR Tone Mapping": {
|
||||||
|
"HDR Tone Mapping": ""
|
||||||
|
},
|
||||||
|
"HDR mode is experimental. Verify your monitor supports HDR before enabling.": {
|
||||||
|
"HDR mode is experimental. Verify your monitor supports HDR before enabling.": ""
|
||||||
|
},
|
||||||
"HSV": {
|
"HSV": {
|
||||||
"HSV": "HSV"
|
"HSV": "HSV"
|
||||||
},
|
},
|
||||||
@@ -1457,6 +1607,9 @@
|
|||||||
"Held": {
|
"Held": {
|
||||||
"Held": "מושהה"
|
"Held": "מושהה"
|
||||||
},
|
},
|
||||||
|
"Help": {
|
||||||
|
"Help": ""
|
||||||
|
},
|
||||||
"Hex": {
|
"Hex": {
|
||||||
"Hex": "Hex"
|
"Hex": "Hex"
|
||||||
},
|
},
|
||||||
@@ -1496,6 +1649,9 @@
|
|||||||
"Hold to confirm (%1s)": {
|
"Hold to confirm (%1s)": {
|
||||||
"Hold to confirm (%1s)": "החזק/י לחוץ כדי לאשר (%1 שניות)"
|
"Hold to confirm (%1s)": "החזק/י לחוץ כדי לאשר (%1 שניות)"
|
||||||
},
|
},
|
||||||
|
"Hot Corners": {
|
||||||
|
"Hot Corners": ""
|
||||||
|
},
|
||||||
"Hotkey overlay title (optional)": {
|
"Hotkey overlay title (optional)": {
|
||||||
"Hotkey overlay title (optional)": "כותרת קיצור דרך שתופיע בשכבה עליונה (אופציונלי)"
|
"Hotkey overlay title (optional)": "כותרת קיצור דרך שתופיע בשכבה עליונה (אופציונלי)"
|
||||||
},
|
},
|
||||||
@@ -1565,6 +1721,9 @@
|
|||||||
"Include Transitions": {
|
"Include Transitions": {
|
||||||
"Include Transitions": "כלול/כללי מעברים"
|
"Include Transitions": "כלול/כללי מעברים"
|
||||||
},
|
},
|
||||||
|
"Incompatible Plugins Loaded": {
|
||||||
|
"Incompatible Plugins Loaded": ""
|
||||||
|
},
|
||||||
"Incorrect password": {
|
"Incorrect password": {
|
||||||
"Incorrect password": "סיסמה שגויה"
|
"Incorrect password": "סיסמה שגויה"
|
||||||
},
|
},
|
||||||
@@ -1577,6 +1736,9 @@
|
|||||||
"Individual bar configuration": {
|
"Individual bar configuration": {
|
||||||
"Individual bar configuration": "תצורת סרגל אישית"
|
"Individual bar configuration": "תצורת סרגל אישית"
|
||||||
},
|
},
|
||||||
|
"Inherit": {
|
||||||
|
"Inherit": ""
|
||||||
|
},
|
||||||
"Inhibit idle timeout when audio or video is playing": {
|
"Inhibit idle timeout when audio or video is playing": {
|
||||||
"Inhibit idle timeout when audio or video is playing": "מנע/י כיבוי מסך אוטומטי בעת ניגון שמע או וידאו"
|
"Inhibit idle timeout when audio or video is playing": "מנע/י כיבוי מסך אוטומטי בעת ניגון שמע או וידאו"
|
||||||
},
|
},
|
||||||
@@ -1598,6 +1760,9 @@
|
|||||||
"Interval": {
|
"Interval": {
|
||||||
"Interval": "מרווח זמן"
|
"Interval": "מרווח זמן"
|
||||||
},
|
},
|
||||||
|
"Invalid configuration": {
|
||||||
|
"Invalid configuration": ""
|
||||||
|
},
|
||||||
"Invert on mode change": {
|
"Invert on mode change": {
|
||||||
"Invert on mode change": "הפוך/הפכי בעת שינוי מצב"
|
"Invert on mode change": "הפוך/הפכי בעת שינוי מצב"
|
||||||
},
|
},
|
||||||
@@ -1670,6 +1835,9 @@
|
|||||||
"Layout": {
|
"Layout": {
|
||||||
"Layout": "פריסה"
|
"Layout": "פריסה"
|
||||||
},
|
},
|
||||||
|
"Layout Overrides": {
|
||||||
|
"Layout Overrides": ""
|
||||||
|
},
|
||||||
"Left": {
|
"Left": {
|
||||||
"Left": "שמאל"
|
"Left": "שמאל"
|
||||||
},
|
},
|
||||||
@@ -1682,6 +1850,9 @@
|
|||||||
"Lines: %1": {
|
"Lines: %1": {
|
||||||
"Lines: %1": "שורות: %1"
|
"Lines: %1": "שורות: %1"
|
||||||
},
|
},
|
||||||
|
"List": {
|
||||||
|
"List": ""
|
||||||
|
},
|
||||||
"Lively palette with saturated accents.": {
|
"Lively palette with saturated accents.": {
|
||||||
"Lively palette with saturated accents.": "פלטת צבעים תוססת עם דגשים רוויים."
|
"Lively palette with saturated accents.": "פלטת צבעים תוססת עם דגשים רוויים."
|
||||||
},
|
},
|
||||||
@@ -1847,6 +2018,9 @@
|
|||||||
"Memory": {
|
"Memory": {
|
||||||
"Memory": "זיכרון"
|
"Memory": "זיכרון"
|
||||||
},
|
},
|
||||||
|
"Memory Graph": {
|
||||||
|
"Memory Graph": ""
|
||||||
|
},
|
||||||
"Memory Usage": {
|
"Memory Usage": {
|
||||||
"Memory Usage": "שימוש בזיכרון"
|
"Memory Usage": "שימוש בזיכרון"
|
||||||
},
|
},
|
||||||
@@ -1883,6 +2057,12 @@
|
|||||||
"Model": {
|
"Model": {
|
||||||
"Model": "דגם"
|
"Model": "דגם"
|
||||||
},
|
},
|
||||||
|
"Modified": {
|
||||||
|
"Modified": ""
|
||||||
|
},
|
||||||
|
"Monitor Configuration": {
|
||||||
|
"Monitor Configuration": ""
|
||||||
|
},
|
||||||
"Monitor whose wallpaper drives dynamic theming colors": {
|
"Monitor whose wallpaper drives dynamic theming colors": {
|
||||||
"Monitor whose wallpaper drives dynamic theming colors": "המסך שהרקע שלו קובע את צבעי ערכת הנושא הדינמית"
|
"Monitor whose wallpaper drives dynamic theming colors": "המסך שהרקע שלו קובע את צבעי ערכת הנושא הדינמית"
|
||||||
},
|
},
|
||||||
@@ -1898,6 +2078,9 @@
|
|||||||
"Mount": {
|
"Mount": {
|
||||||
"Mount": "טעינה"
|
"Mount": "טעינה"
|
||||||
},
|
},
|
||||||
|
"Move Widget": {
|
||||||
|
"Move Widget": ""
|
||||||
|
},
|
||||||
"Moving to Paused": {
|
"Moving to Paused": {
|
||||||
"Moving to Paused": "עובר להשהיה"
|
"Moving to Paused": "עובר להשהיה"
|
||||||
},
|
},
|
||||||
@@ -1919,6 +2102,9 @@
|
|||||||
"Network": {
|
"Network": {
|
||||||
"Network": "רשת"
|
"Network": "רשת"
|
||||||
},
|
},
|
||||||
|
"Network Graph": {
|
||||||
|
"Network Graph": ""
|
||||||
|
},
|
||||||
"Network Info": {
|
"Network Info": {
|
||||||
"Network Info": "מידע רשת"
|
"Network Info": "מידע רשת"
|
||||||
},
|
},
|
||||||
@@ -2015,6 +2201,9 @@
|
|||||||
"No drivers found": {
|
"No drivers found": {
|
||||||
"No drivers found": "לא נמצאו מנהלי התקן"
|
"No drivers found": "לא נמצאו מנהלי התקן"
|
||||||
},
|
},
|
||||||
|
"No features enabled": {
|
||||||
|
"No features enabled": ""
|
||||||
|
},
|
||||||
"No files found": {
|
"No files found": {
|
||||||
"No files found": "לא נמצאו קבצים"
|
"No files found": "לא נמצאו קבצים"
|
||||||
},
|
},
|
||||||
@@ -2042,9 +2231,15 @@
|
|||||||
"No printers found": {
|
"No printers found": {
|
||||||
"No printers found": "לא נמצאו מדפסות"
|
"No printers found": "לא נמצאו מדפסות"
|
||||||
},
|
},
|
||||||
|
"No variants created. Click Add to create a new monitor widget.": {
|
||||||
|
"No variants created. Click Add to create a new monitor widget.": ""
|
||||||
|
},
|
||||||
"None": {
|
"None": {
|
||||||
"None": "ללא"
|
"None": "ללא"
|
||||||
},
|
},
|
||||||
|
"Normal": {
|
||||||
|
"Normal": ""
|
||||||
|
},
|
||||||
"Normal Font": {
|
"Normal Font": {
|
||||||
"Normal Font": "גופן רגיל"
|
"Normal Font": "גופן רגיל"
|
||||||
},
|
},
|
||||||
@@ -2096,6 +2291,9 @@
|
|||||||
"OSD Position": {
|
"OSD Position": {
|
||||||
"OSD Position": "מיקום OSD"
|
"OSD Position": "מיקום OSD"
|
||||||
},
|
},
|
||||||
|
"Off": {
|
||||||
|
"Off": ""
|
||||||
|
},
|
||||||
"Office": {
|
"Office": {
|
||||||
"Office": "משרד"
|
"Office": "משרד"
|
||||||
},
|
},
|
||||||
@@ -2159,12 +2357,18 @@
|
|||||||
"Output Tray Missing": {
|
"Output Tray Missing": {
|
||||||
"Output Tray Missing": "מגש הפלט חסר"
|
"Output Tray Missing": "מגש הפלט חסר"
|
||||||
},
|
},
|
||||||
|
"Outputs Include Missing": {
|
||||||
|
"Outputs Include Missing": ""
|
||||||
|
},
|
||||||
"Overridden by config": {
|
"Overridden by config": {
|
||||||
"Overridden by config": "נדרס על ידי config"
|
"Overridden by config": "נדרס על ידי config"
|
||||||
},
|
},
|
||||||
"Override": {
|
"Override": {
|
||||||
"Override": "דריסה"
|
"Override": "דריסה"
|
||||||
},
|
},
|
||||||
|
"Override global layout settings for this output": {
|
||||||
|
"Override global layout settings for this output": ""
|
||||||
|
},
|
||||||
"Overrides": {
|
"Overrides": {
|
||||||
"Overrides": "דריסות"
|
"Overrides": "דריסות"
|
||||||
},
|
},
|
||||||
@@ -2324,6 +2528,9 @@
|
|||||||
"Preference": {
|
"Preference": {
|
||||||
"Preference": "העדפה"
|
"Preference": "העדפה"
|
||||||
},
|
},
|
||||||
|
"Preset Widths (%)": {
|
||||||
|
"Preset Widths (%)": ""
|
||||||
|
},
|
||||||
"Press key...": {
|
"Press key...": {
|
||||||
"Press key...": "לחץ/י על מקש..."
|
"Press key...": "לחץ/י על מקש..."
|
||||||
},
|
},
|
||||||
@@ -2372,6 +2579,9 @@
|
|||||||
"Process": {
|
"Process": {
|
||||||
"Process": "תהליך"
|
"Process": "תהליך"
|
||||||
},
|
},
|
||||||
|
"Process Count": {
|
||||||
|
"Process Count": ""
|
||||||
|
},
|
||||||
"Processing": {
|
"Processing": {
|
||||||
"Processing": "מעבד"
|
"Processing": "מעבד"
|
||||||
},
|
},
|
||||||
@@ -2447,12 +2657,27 @@
|
|||||||
"Require holding button/key to confirm power off, restart, suspend, hibernate and logout": {
|
"Require holding button/key to confirm power off, restart, suspend, hibernate and logout": {
|
||||||
"Require holding button/key to confirm power off, restart, suspend, hibernate and logout": "דרוש/דרשי החזקה של הכפתור לאישור כיבוי, הפעלה מחדש, השהיה, שינה עמוקה והתנתקות"
|
"Require holding button/key to confirm power off, restart, suspend, hibernate and logout": "דרוש/דרשי החזקה של הכפתור לאישור כיבוי, הפעלה מחדש, השהיה, שינה עמוקה והתנתקות"
|
||||||
},
|
},
|
||||||
|
"Requires DMS": {
|
||||||
|
"Requires DMS": ""
|
||||||
|
},
|
||||||
"Requires DWL compositor": {
|
"Requires DWL compositor": {
|
||||||
"Requires DWL compositor": "דורש קומפוזיטור DWL"
|
"Requires DWL compositor": "דורש קומפוזיטור DWL"
|
||||||
},
|
},
|
||||||
"Reset": {
|
"Reset": {
|
||||||
"Reset": "איפוס"
|
"Reset": "איפוס"
|
||||||
},
|
},
|
||||||
|
"Reset Position": {
|
||||||
|
"Reset Position": ""
|
||||||
|
},
|
||||||
|
"Reset Size": {
|
||||||
|
"Reset Size": ""
|
||||||
|
},
|
||||||
|
"Resize Widget": {
|
||||||
|
"Resize Widget": ""
|
||||||
|
},
|
||||||
|
"Resolution & Refresh": {
|
||||||
|
"Resolution & Refresh": ""
|
||||||
|
},
|
||||||
"Resources": {
|
"Resources": {
|
||||||
"Resources": "משאבים"
|
"Resources": "משאבים"
|
||||||
},
|
},
|
||||||
@@ -2483,6 +2708,12 @@
|
|||||||
"Right Tiling": {
|
"Right Tiling": {
|
||||||
"Right Tiling": "ריצוף ימני"
|
"Right Tiling": "ריצוף ימני"
|
||||||
},
|
},
|
||||||
|
"Right-click and drag anywhere on the widget": {
|
||||||
|
"Right-click and drag anywhere on the widget": ""
|
||||||
|
},
|
||||||
|
"Right-click and drag the bottom-right corner": {
|
||||||
|
"Right-click and drag the bottom-right corner": ""
|
||||||
|
},
|
||||||
"Right-click bar widget to cycle": {
|
"Right-click bar widget to cycle": {
|
||||||
"Right-click bar widget to cycle": "לחץ/י קליק ימני על הווידג׳ט כדי לעבור במעגל"
|
"Right-click bar widget to cycle": "לחץ/י קליק ימני על הווידג׳ט כדי לעבור במעגל"
|
||||||
},
|
},
|
||||||
@@ -2507,6 +2738,12 @@
|
|||||||
"Running Apps Settings": {
|
"Running Apps Settings": {
|
||||||
"Running Apps Settings": "הגדרות אפליקציות פעילות"
|
"Running Apps Settings": "הגדרות אפליקציות פעילות"
|
||||||
},
|
},
|
||||||
|
"SDR Brightness": {
|
||||||
|
"SDR Brightness": ""
|
||||||
|
},
|
||||||
|
"SDR Saturation": {
|
||||||
|
"SDR Saturation": ""
|
||||||
|
},
|
||||||
"Save": {
|
"Save": {
|
||||||
"Save": "שמירה"
|
"Save": "שמירה"
|
||||||
},
|
},
|
||||||
@@ -2522,6 +2759,9 @@
|
|||||||
"Saved Configurations": {
|
"Saved Configurations": {
|
||||||
"Saved Configurations": "תצורות שמורות"
|
"Saved Configurations": "תצורות שמורות"
|
||||||
},
|
},
|
||||||
|
"Scale": {
|
||||||
|
"Scale": ""
|
||||||
|
},
|
||||||
"Scale DankBar font sizes independently": {
|
"Scale DankBar font sizes independently": {
|
||||||
"Scale DankBar font sizes independently": "שנה/י את גודל הגופנים של DankBar באופן עצמאי"
|
"Scale DankBar font sizes independently": "שנה/י את גודל הגופנים של DankBar באופן עצמאי"
|
||||||
},
|
},
|
||||||
@@ -2540,6 +2780,9 @@
|
|||||||
"Screen sharing": {
|
"Screen sharing": {
|
||||||
"Screen sharing": "שיתוף מסך"
|
"Screen sharing": "שיתוף מסך"
|
||||||
},
|
},
|
||||||
|
"Scroll Wheel": {
|
||||||
|
"Scroll Wheel": ""
|
||||||
|
},
|
||||||
"Scroll song title": {
|
"Scroll song title": {
|
||||||
"Scroll song title": "גלילה של שם השיר"
|
"Scroll song title": "גלילה של שם השיר"
|
||||||
},
|
},
|
||||||
@@ -2570,6 +2813,9 @@
|
|||||||
"Searching...": {
|
"Searching...": {
|
||||||
"Searching...": "מחפש..."
|
"Searching...": "מחפש..."
|
||||||
},
|
},
|
||||||
|
"Secondary": {
|
||||||
|
"Secondary": ""
|
||||||
|
},
|
||||||
"Secured": {
|
"Secured": {
|
||||||
"Secured": "מאובטח"
|
"Secured": "מאובטח"
|
||||||
},
|
},
|
||||||
@@ -2666,15 +2912,39 @@
|
|||||||
"Show All Tags": {
|
"Show All Tags": {
|
||||||
"Show All Tags": "הצג/י את כל התגים"
|
"Show All Tags": "הצג/י את כל התגים"
|
||||||
},
|
},
|
||||||
|
"Show CPU": {
|
||||||
|
"Show CPU": ""
|
||||||
|
},
|
||||||
|
"Show CPU Graph": {
|
||||||
|
"Show CPU Graph": ""
|
||||||
|
},
|
||||||
|
"Show CPU Temp": {
|
||||||
|
"Show CPU Temp": ""
|
||||||
|
},
|
||||||
"Show Confirmation on Power Actions": {
|
"Show Confirmation on Power Actions": {
|
||||||
"Show Confirmation on Power Actions": "הצג/י אישור עבור פעולות חשמל"
|
"Show Confirmation on Power Actions": "הצג/י אישור עבור פעולות חשמל"
|
||||||
},
|
},
|
||||||
|
"Show Date": {
|
||||||
|
"Show Date": ""
|
||||||
|
},
|
||||||
|
"Show Disk": {
|
||||||
|
"Show Disk": ""
|
||||||
|
},
|
||||||
"Show Dock": {
|
"Show Dock": {
|
||||||
"Show Dock": "הצג/י Dock"
|
"Show Dock": "הצג/י Dock"
|
||||||
},
|
},
|
||||||
|
"Show GPU Temperature": {
|
||||||
|
"Show GPU Temperature": ""
|
||||||
|
},
|
||||||
|
"Show Header": {
|
||||||
|
"Show Header": ""
|
||||||
|
},
|
||||||
"Show Hibernate": {
|
"Show Hibernate": {
|
||||||
"Show Hibernate": "הצג/י שינה עמוקה"
|
"Show Hibernate": "הצג/י שינה עמוקה"
|
||||||
},
|
},
|
||||||
|
"Show Hour Numbers": {
|
||||||
|
"Show Hour Numbers": ""
|
||||||
|
},
|
||||||
"Show Line Numbers": {
|
"Show Line Numbers": {
|
||||||
"Show Line Numbers": "הצג/י מספרי שורות"
|
"Show Line Numbers": "הצג/י מספרי שורות"
|
||||||
},
|
},
|
||||||
@@ -2684,6 +2954,18 @@
|
|||||||
"Show Log Out": {
|
"Show Log Out": {
|
||||||
"Show Log Out": "הצג/י התנתקות"
|
"Show Log Out": "הצג/י התנתקות"
|
||||||
},
|
},
|
||||||
|
"Show Memory": {
|
||||||
|
"Show Memory": ""
|
||||||
|
},
|
||||||
|
"Show Memory Graph": {
|
||||||
|
"Show Memory Graph": ""
|
||||||
|
},
|
||||||
|
"Show Network": {
|
||||||
|
"Show Network": ""
|
||||||
|
},
|
||||||
|
"Show Network Graph": {
|
||||||
|
"Show Network Graph": ""
|
||||||
|
},
|
||||||
"Show Occupied Workspaces Only": {
|
"Show Occupied Workspaces Only": {
|
||||||
"Show Occupied Workspaces Only": "הצג/י רק סביבות עבודה שתפוסות"
|
"Show Occupied Workspaces Only": "הצג/י רק סביבות עבודה שתפוסות"
|
||||||
},
|
},
|
||||||
@@ -2705,6 +2987,9 @@
|
|||||||
"Show Suspend": {
|
"Show Suspend": {
|
||||||
"Show Suspend": "הצג/י השהיה"
|
"Show Suspend": "הצג/י השהיה"
|
||||||
},
|
},
|
||||||
|
"Show Top Processes": {
|
||||||
|
"Show Top Processes": ""
|
||||||
|
},
|
||||||
"Show Workspace Apps": {
|
"Show Workspace Apps": {
|
||||||
"Show Workspace Apps": "הצג/י אפליקציות בסביבת העבודה"
|
"Show Workspace Apps": "הצג/י אפליקציות בסביבת העבודה"
|
||||||
},
|
},
|
||||||
@@ -2807,9 +3092,15 @@
|
|||||||
"Sizing": {
|
"Sizing": {
|
||||||
"Sizing": "גודל"
|
"Sizing": "גודל"
|
||||||
},
|
},
|
||||||
|
"Some plugins require a newer version of DMS:": {
|
||||||
|
"Some plugins require a newer version of DMS:": ""
|
||||||
|
},
|
||||||
"Sort Alphabetically": {
|
"Sort Alphabetically": {
|
||||||
"Sort Alphabetically": "מיון לפי סדר אלפביתי"
|
"Sort Alphabetically": "מיון לפי סדר אלפביתי"
|
||||||
},
|
},
|
||||||
|
"Sort By": {
|
||||||
|
"Sort By": ""
|
||||||
|
},
|
||||||
"Sorting & Layout": {
|
"Sorting & Layout": {
|
||||||
"Sorting & Layout": "מיון ופריסה"
|
"Sorting & Layout": "מיון ופריסה"
|
||||||
},
|
},
|
||||||
@@ -2834,6 +3125,9 @@
|
|||||||
"Square Corners": {
|
"Square Corners": {
|
||||||
"Square Corners": "פינות ישרות"
|
"Square Corners": "פינות ישרות"
|
||||||
},
|
},
|
||||||
|
"Stacked": {
|
||||||
|
"Stacked": ""
|
||||||
|
},
|
||||||
"Start": {
|
"Start": {
|
||||||
"Start": "התחל/י"
|
"Start": "התחל/י"
|
||||||
},
|
},
|
||||||
@@ -3053,12 +3347,24 @@
|
|||||||
"Top Bar Format": {
|
"Top Bar Format": {
|
||||||
"Top Bar Format": "תבנית הסרגל העליון"
|
"Top Bar Format": "תבנית הסרגל העליון"
|
||||||
},
|
},
|
||||||
|
"Top Left": {
|
||||||
|
"Top Left": ""
|
||||||
|
},
|
||||||
|
"Top Processes": {
|
||||||
|
"Top Processes": ""
|
||||||
|
},
|
||||||
|
"Top Right": {
|
||||||
|
"Top Right": ""
|
||||||
|
},
|
||||||
"Top Section": {
|
"Top Section": {
|
||||||
"Top Section": "מקטע עליון"
|
"Top Section": "מקטע עליון"
|
||||||
},
|
},
|
||||||
"Total Jobs": {
|
"Total Jobs": {
|
||||||
"Total Jobs": "סה״כ עבודות"
|
"Total Jobs": "סה״כ עבודות"
|
||||||
},
|
},
|
||||||
|
"Transform": {
|
||||||
|
"Transform": ""
|
||||||
|
},
|
||||||
"Transition Effect": {
|
"Transition Effect": {
|
||||||
"Transition Effect": "אפקט מעבר"
|
"Transition Effect": "אפקט מעבר"
|
||||||
},
|
},
|
||||||
@@ -3182,9 +3488,27 @@
|
|||||||
"VPN status and quick connect": {
|
"VPN status and quick connect": {
|
||||||
"VPN status and quick connect": "מצב הVPN וחיבור מהיר"
|
"VPN status and quick connect": "מצב הVPN וחיבור מהיר"
|
||||||
},
|
},
|
||||||
|
"VRR": {
|
||||||
|
"VRR": ""
|
||||||
|
},
|
||||||
|
"VRR On-Demand": {
|
||||||
|
"VRR On-Demand": ""
|
||||||
|
},
|
||||||
|
"VRR activates only when applications request it": {
|
||||||
|
"VRR activates only when applications request it": ""
|
||||||
|
},
|
||||||
"VRR: ": {
|
"VRR: ": {
|
||||||
"VRR: ": "VRR: "
|
"VRR: ": "VRR: "
|
||||||
},
|
},
|
||||||
|
"Variable Refresh Rate": {
|
||||||
|
"Variable Refresh Rate": ""
|
||||||
|
},
|
||||||
|
"Variant created - expand to configure": {
|
||||||
|
"Variant created - expand to configure": ""
|
||||||
|
},
|
||||||
|
"Variant removed": {
|
||||||
|
"Variant removed": ""
|
||||||
|
},
|
||||||
"Version": {
|
"Version": {
|
||||||
"Version": "גרסה"
|
"Version": "גרסה"
|
||||||
},
|
},
|
||||||
@@ -3260,6 +3584,10 @@
|
|||||||
"When enabled, shows the launcher overlay when typing in Niri overview mode. Disable this if you prefer to not have the launcher when typing on Niri overview or want to use other launcher in the overview.": {
|
"When enabled, shows the launcher overlay when typing in Niri overview mode. Disable this if you prefer to not have the launcher when typing on Niri overview or want to use other launcher in the overview.": {
|
||||||
"When enabled, shows the launcher overlay when typing in Niri overview mode. Disable this if you prefer to not have the launcher when typing on Niri overview or want to use other launcher in the overview.": "כאשר אפשרות זו מופעלת, שכבת המשגר תוצג מעל הסקירה של Niri בעת הקלדה. השבת/י את האפשרות הזו אם את/ה מעדיף/ה שהמשגר לא יופיע מעל הסקירה של Niri כשאת/ה מקליד/ה, או אם ברצונך להשתמש במשגר אחר בסקירה."
|
"When enabled, shows the launcher overlay when typing in Niri overview mode. Disable this if you prefer to not have the launcher when typing on Niri overview or want to use other launcher in the overview.": "כאשר אפשרות זו מופעלת, שכבת המשגר תוצג מעל הסקירה של Niri בעת הקלדה. השבת/י את האפשרות הזו אם את/ה מעדיף/ה שהמשגר לא יופיע מעל הסקירה של Niri כשאת/ה מקליד/ה, או אם ברצונך להשתמש במשגר אחר בסקירה."
|
||||||
},
|
},
|
||||||
|
"When updater widget is used, then hide it if no update found": {
|
||||||
|
"Hide Updater Widget": "",
|
||||||
|
"When updater widget is used, then hide it if no update found": ""
|
||||||
|
},
|
||||||
"Wi-Fi Password": {
|
"Wi-Fi Password": {
|
||||||
"Wi-Fi Password": "סיסמת Wi-Fi"
|
"Wi-Fi Password": "סיסמת Wi-Fi"
|
||||||
},
|
},
|
||||||
@@ -3278,6 +3606,9 @@
|
|||||||
"WiFi is off": {
|
"WiFi is off": {
|
||||||
"WiFi is off": "הWi-Fi כבוי"
|
"WiFi is off": "הWi-Fi כבוי"
|
||||||
},
|
},
|
||||||
|
"Wide (BT2020)": {
|
||||||
|
"Wide (BT2020)": ""
|
||||||
|
},
|
||||||
"Widget Background Color": {
|
"Widget Background Color": {
|
||||||
"Widget Background Color": "צבע רקע לווידג׳טים"
|
"Widget Background Color": "צבע רקע לווידג׳טים"
|
||||||
},
|
},
|
||||||
@@ -3296,6 +3627,9 @@
|
|||||||
"Widget Transparency": {
|
"Widget Transparency": {
|
||||||
"Widget Transparency": "שקיפות לווידג׳טים"
|
"Widget Transparency": "שקיפות לווידג׳טים"
|
||||||
},
|
},
|
||||||
|
"Widget Variants": {
|
||||||
|
"Widget Variants": ""
|
||||||
|
},
|
||||||
"Widgets": {
|
"Widgets": {
|
||||||
"Widgets": "ווידג׳טים"
|
"Widgets": "ווידג׳טים"
|
||||||
},
|
},
|
||||||
@@ -3305,6 +3639,9 @@
|
|||||||
"Wind Speed": {
|
"Wind Speed": {
|
||||||
"Wind Speed": "מהירות הרוח"
|
"Wind Speed": "מהירות הרוח"
|
||||||
},
|
},
|
||||||
|
"Window Gaps (px)": {
|
||||||
|
"Window Gaps (px)": ""
|
||||||
|
},
|
||||||
"Workspace": {
|
"Workspace": {
|
||||||
"Workspace": "סביבת עבודה"
|
"Workspace": "סביבת עבודה"
|
||||||
},
|
},
|
||||||
@@ -3326,6 +3663,12 @@
|
|||||||
"Workspaces & Widgets": {
|
"Workspaces & Widgets": {
|
||||||
"Workspaces & Widgets": "סביבות עבודה וווידג׳טים"
|
"Workspaces & Widgets": "סביבות עבודה וווידג׳טים"
|
||||||
},
|
},
|
||||||
|
"X Axis": {
|
||||||
|
"X Axis": ""
|
||||||
|
},
|
||||||
|
"Y Axis": {
|
||||||
|
"Y Axis": ""
|
||||||
|
},
|
||||||
"Yes": {
|
"Yes": {
|
||||||
"Yes": "כן"
|
"Yes": "כן"
|
||||||
},
|
},
|
||||||
@@ -3398,6 +3741,9 @@
|
|||||||
"settings window title": {
|
"settings window title": {
|
||||||
"Settings": "הגדרות"
|
"Settings": "הגדרות"
|
||||||
},
|
},
|
||||||
|
"settings_displays": {
|
||||||
|
"Widgets": ""
|
||||||
|
},
|
||||||
"sysmon window title": {
|
"sysmon window title": {
|
||||||
"System Monitor": "מנטר המערכת"
|
"System Monitor": "מנטר המערכת"
|
||||||
},
|
},
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -50,12 +50,18 @@
|
|||||||
"10 seconds": {
|
"10 seconds": {
|
||||||
"10 seconds": ""
|
"10 seconds": ""
|
||||||
},
|
},
|
||||||
|
"10-bit Color": {
|
||||||
|
"10-bit Color": ""
|
||||||
|
},
|
||||||
"14 days": {
|
"14 days": {
|
||||||
"14 days": ""
|
"14 days": ""
|
||||||
},
|
},
|
||||||
"15 seconds": {
|
"15 seconds": {
|
||||||
"15 seconds": ""
|
"15 seconds": ""
|
||||||
},
|
},
|
||||||
|
"180°": {
|
||||||
|
"180°": ""
|
||||||
|
},
|
||||||
"2 minutes": {
|
"2 minutes": {
|
||||||
"2 minutes": ""
|
"2 minutes": ""
|
||||||
},
|
},
|
||||||
@@ -65,6 +71,9 @@
|
|||||||
"24-hour format": {
|
"24-hour format": {
|
||||||
"24-hour format": "24時間形式"
|
"24-hour format": "24時間形式"
|
||||||
},
|
},
|
||||||
|
"270°": {
|
||||||
|
"270°": ""
|
||||||
|
},
|
||||||
"3 days": {
|
"3 days": {
|
||||||
"3 days": ""
|
"3 days": ""
|
||||||
},
|
},
|
||||||
@@ -95,6 +104,9 @@
|
|||||||
"90 days": {
|
"90 days": {
|
||||||
"90 days": ""
|
"90 days": ""
|
||||||
},
|
},
|
||||||
|
"90°": {
|
||||||
|
"90°": ""
|
||||||
|
},
|
||||||
"A file with this name already exists. Do you want to overwrite it?": {
|
"A file with this name already exists. Do you want to overwrite it?": {
|
||||||
"A file with this name already exists. Do you want to overwrite it?": "この名前のファイルは既に存在します。上書きしてもよろしいですか?"
|
"A file with this name already exists. Do you want to overwrite it?": "この名前のファイルは既に存在します。上書きしてもよろしいですか?"
|
||||||
},
|
},
|
||||||
@@ -200,6 +212,9 @@
|
|||||||
"Amount": {
|
"Amount": {
|
||||||
"Amount": ""
|
"Amount": ""
|
||||||
},
|
},
|
||||||
|
"Analog": {
|
||||||
|
"Analog": ""
|
||||||
|
},
|
||||||
"Animation Speed": {
|
"Animation Speed": {
|
||||||
"Animation Speed": "アニメーション速度"
|
"Animation Speed": "アニメーション速度"
|
||||||
},
|
},
|
||||||
@@ -218,6 +233,9 @@
|
|||||||
"Applications": {
|
"Applications": {
|
||||||
"Applications": "アプリ"
|
"Applications": "アプリ"
|
||||||
},
|
},
|
||||||
|
"Apply Changes": {
|
||||||
|
"Apply Changes": ""
|
||||||
|
},
|
||||||
"Apply GTK Colors": {
|
"Apply GTK Colors": {
|
||||||
"Apply GTK Colors": "GTKカラーを適用"
|
"Apply GTK Colors": "GTKカラーを適用"
|
||||||
},
|
},
|
||||||
@@ -233,6 +251,9 @@
|
|||||||
"Apps are ordered by usage frequency, then last used, then alphabetically.": {
|
"Apps are ordered by usage frequency, then last used, then alphabetically.": {
|
||||||
"Apps are ordered by usage frequency, then last used, then alphabetically.": "アプリは使用頻度、最終使用日、アルファベット順の優先順位で並べられています。"
|
"Apps are ordered by usage frequency, then last used, then alphabetically.": "アプリは使用頻度、最終使用日、アルファベット順の優先順位で並べられています。"
|
||||||
},
|
},
|
||||||
|
"Arrange displays and configure resolution, refresh rate, and VRR": {
|
||||||
|
"Arrange displays and configure resolution, refresh rate, and VRR": ""
|
||||||
|
},
|
||||||
"Audio": {
|
"Audio": {
|
||||||
"Audio": ""
|
"Audio": ""
|
||||||
},
|
},
|
||||||
@@ -284,6 +305,9 @@
|
|||||||
"Auto": {
|
"Auto": {
|
||||||
"Auto": ""
|
"Auto": ""
|
||||||
},
|
},
|
||||||
|
"Auto (Wide)": {
|
||||||
|
"Auto (Wide)": ""
|
||||||
|
},
|
||||||
"Auto Location": {
|
"Auto Location": {
|
||||||
"Auto Location": "自動位置検出"
|
"Auto Location": "自動位置検出"
|
||||||
},
|
},
|
||||||
@@ -365,6 +389,9 @@
|
|||||||
"Backend": {
|
"Backend": {
|
||||||
"Backend": ""
|
"Backend": ""
|
||||||
},
|
},
|
||||||
|
"Background Opacity": {
|
||||||
|
"Background Opacity": ""
|
||||||
|
},
|
||||||
"Balanced palette with focused accents (default).": {
|
"Balanced palette with focused accents (default).": {
|
||||||
"Balanced palette with focused accents (default).": "アクセントに焦点を絞ったバランスの取れたパレット(デフォルト)。"
|
"Balanced palette with focused accents (default).": "アクセントに焦点を絞ったバランスの取れたパレット(デフォルト)。"
|
||||||
},
|
},
|
||||||
@@ -392,6 +419,9 @@
|
|||||||
"Binds include added": {
|
"Binds include added": {
|
||||||
"Binds include added": ""
|
"Binds include added": ""
|
||||||
},
|
},
|
||||||
|
"Bit Depth": {
|
||||||
|
"Bit Depth": ""
|
||||||
|
},
|
||||||
"Bluetooth": {
|
"Bluetooth": {
|
||||||
"Bluetooth": ""
|
"Bluetooth": ""
|
||||||
},
|
},
|
||||||
@@ -422,6 +452,12 @@
|
|||||||
"Bottom": {
|
"Bottom": {
|
||||||
"Bottom": "ボトム"
|
"Bottom": "ボトム"
|
||||||
},
|
},
|
||||||
|
"Bottom Left": {
|
||||||
|
"Bottom Left": ""
|
||||||
|
},
|
||||||
|
"Bottom Right": {
|
||||||
|
"Bottom Right": ""
|
||||||
|
},
|
||||||
"Bottom Section": {
|
"Bottom Section": {
|
||||||
"Bottom Section": "ボトムセクション"
|
"Bottom Section": "ボトムセクション"
|
||||||
},
|
},
|
||||||
@@ -443,6 +479,9 @@
|
|||||||
"CPU": {
|
"CPU": {
|
||||||
"CPU": "CPU"
|
"CPU": "CPU"
|
||||||
},
|
},
|
||||||
|
"CPU Graph": {
|
||||||
|
"CPU Graph": ""
|
||||||
|
},
|
||||||
"CPU Temperature": {
|
"CPU Temperature": {
|
||||||
"CPU Temperature": "CPU温度"
|
"CPU Temperature": "CPU温度"
|
||||||
},
|
},
|
||||||
@@ -491,6 +530,9 @@
|
|||||||
"Center Section": {
|
"Center Section": {
|
||||||
"Center Section": "センターセクション"
|
"Center Section": "センターセクション"
|
||||||
},
|
},
|
||||||
|
"Center Single Column": {
|
||||||
|
"Center Single Column": ""
|
||||||
|
},
|
||||||
"Center Tiling": {
|
"Center Tiling": {
|
||||||
"Center Tiling": "中央タイルリング"
|
"Center Tiling": "中央タイルリング"
|
||||||
},
|
},
|
||||||
@@ -536,6 +578,9 @@
|
|||||||
"Choose where on-screen displays appear on screen": {
|
"Choose where on-screen displays appear on screen": {
|
||||||
"Choose where on-screen displays appear on screen": "OSDの表示する場所を選んでください"
|
"Choose where on-screen displays appear on screen": "OSDの表示する場所を選んでください"
|
||||||
},
|
},
|
||||||
|
"Choose which displays show this widget": {
|
||||||
|
"Choose which displays show this widget": ""
|
||||||
|
},
|
||||||
"Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": {
|
"Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": {
|
||||||
"Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": ""
|
"Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": ""
|
||||||
},
|
},
|
||||||
@@ -587,6 +632,9 @@
|
|||||||
"Clock": {
|
"Clock": {
|
||||||
"Clock": "時計"
|
"Clock": "時計"
|
||||||
},
|
},
|
||||||
|
"Clock Style": {
|
||||||
|
"Clock Style": ""
|
||||||
|
},
|
||||||
"Clock show seconds": {
|
"Clock show seconds": {
|
||||||
"Clock show seconds": "時計に秒数を表示"
|
"Clock show seconds": "時計に秒数を表示"
|
||||||
},
|
},
|
||||||
@@ -599,6 +647,12 @@
|
|||||||
"Color": {
|
"Color": {
|
||||||
"Color": ""
|
"Color": ""
|
||||||
},
|
},
|
||||||
|
"Color Gamut": {
|
||||||
|
"Color Gamut": ""
|
||||||
|
},
|
||||||
|
"Color Management": {
|
||||||
|
"Color Management": ""
|
||||||
|
},
|
||||||
"Color Mode": {
|
"Color Mode": {
|
||||||
"Color Mode": ""
|
"Color Mode": ""
|
||||||
},
|
},
|
||||||
@@ -623,6 +677,9 @@
|
|||||||
"Colorful mix of bright contrasting accents.": {
|
"Colorful mix of bright contrasting accents.": {
|
||||||
"Colorful mix of bright contrasting accents.": "明るいコントラストのアクセントのカラフルなミックス。"
|
"Colorful mix of bright contrasting accents.": "明るいコントラストのアクセントのカラフルなミックス。"
|
||||||
},
|
},
|
||||||
|
"Column": {
|
||||||
|
"Column": ""
|
||||||
|
},
|
||||||
"Command": {
|
"Command": {
|
||||||
"Command": ""
|
"Command": ""
|
||||||
},
|
},
|
||||||
@@ -656,12 +713,27 @@
|
|||||||
"Compositor": {
|
"Compositor": {
|
||||||
"Compositor": "コンポジター"
|
"Compositor": "コンポジター"
|
||||||
},
|
},
|
||||||
|
"Compositor Settings": {
|
||||||
|
"Compositor Settings": ""
|
||||||
|
},
|
||||||
|
"Config Format": {
|
||||||
|
"Config Format": ""
|
||||||
|
},
|
||||||
"Config action: %1": {
|
"Config action: %1": {
|
||||||
"Config action: %1": ""
|
"Config action: %1": ""
|
||||||
},
|
},
|
||||||
|
"Config validation failed": {
|
||||||
|
"Config validation failed": ""
|
||||||
|
},
|
||||||
|
"Configuration": {
|
||||||
|
"Configuration": ""
|
||||||
|
},
|
||||||
"Configuration activated": {
|
"Configuration activated": {
|
||||||
"Configuration activated": "設定が適用されました"
|
"Configuration activated": "設定が適用されました"
|
||||||
},
|
},
|
||||||
|
"Configuration will be preserved when this display reconnects": {
|
||||||
|
"Configuration will be preserved when this display reconnects": ""
|
||||||
|
},
|
||||||
"Configure a new printer": {
|
"Configure a new printer": {
|
||||||
"Configure a new printer": ""
|
"Configure a new printer": ""
|
||||||
},
|
},
|
||||||
@@ -710,6 +782,9 @@
|
|||||||
"Control currently playing media": {
|
"Control currently playing media": {
|
||||||
"Control currently playing media": "現在再生中のメディアを制御"
|
"Control currently playing media": "現在再生中のメディアを制御"
|
||||||
},
|
},
|
||||||
|
"Control workspaces and columns by scrolling on the bar": {
|
||||||
|
"Control workspaces and columns by scrolling on the bar": ""
|
||||||
|
},
|
||||||
"Controls opacity of all popouts, modals, and their content layers": {
|
"Controls opacity of all popouts, modals, and their content layers": {
|
||||||
"Controls opacity of all popouts, modals, and their content layers": ""
|
"Controls opacity of all popouts, modals, and their content layers": ""
|
||||||
},
|
},
|
||||||
@@ -815,6 +890,9 @@
|
|||||||
"Custom Transparency": {
|
"Custom Transparency": {
|
||||||
"Custom Transparency": "カスタム透明度"
|
"Custom Transparency": "カスタム透明度"
|
||||||
},
|
},
|
||||||
|
"Custom...": {
|
||||||
|
"Custom...": ""
|
||||||
|
},
|
||||||
"Custom: ": {
|
"Custom: ": {
|
||||||
"Custom: ": "カスタム: "
|
"Custom: ": "カスタム: "
|
||||||
},
|
},
|
||||||
@@ -896,6 +974,9 @@
|
|||||||
"Default": {
|
"Default": {
|
||||||
"Default": "デフォルト"
|
"Default": "デフォルト"
|
||||||
},
|
},
|
||||||
|
"Default Width (%)": {
|
||||||
|
"Default Width (%)": ""
|
||||||
|
},
|
||||||
"Default selected action": {
|
"Default selected action": {
|
||||||
"Default selected action": "デフォルトで選択されるアクション"
|
"Default selected action": "デフォルトで選択されるアクション"
|
||||||
},
|
},
|
||||||
@@ -923,6 +1004,12 @@
|
|||||||
"Description": {
|
"Description": {
|
||||||
"Description": ""
|
"Description": ""
|
||||||
},
|
},
|
||||||
|
"Desktop Clock": {
|
||||||
|
"Desktop Clock": ""
|
||||||
|
},
|
||||||
|
"Desktop Widgets": {
|
||||||
|
"Desktop Widgets": ""
|
||||||
|
},
|
||||||
"Desktop background images": {
|
"Desktop background images": {
|
||||||
"Desktop background images": "デスクトップの背景画像"
|
"Desktop background images": "デスクトップの背景画像"
|
||||||
},
|
},
|
||||||
@@ -935,6 +1022,9 @@
|
|||||||
"Device paired": {
|
"Device paired": {
|
||||||
"Device paired": "デバイスがペアリングされました"
|
"Device paired": "デバイスがペアリングされました"
|
||||||
},
|
},
|
||||||
|
"Digital": {
|
||||||
|
"Digital": ""
|
||||||
|
},
|
||||||
"Disable Autoconnect": {
|
"Disable Autoconnect": {
|
||||||
"Disable Autoconnect": "自動接続を無効"
|
"Disable Autoconnect": "自動接続を無効"
|
||||||
},
|
},
|
||||||
@@ -947,12 +1037,18 @@
|
|||||||
"Disable History Persistence": {
|
"Disable History Persistence": {
|
||||||
"Disable History Persistence": ""
|
"Disable History Persistence": ""
|
||||||
},
|
},
|
||||||
|
"Disable Output": {
|
||||||
|
"Disable Output": ""
|
||||||
|
},
|
||||||
"Disable clipboard manager entirely (requires restart)": {
|
"Disable clipboard manager entirely (requires restart)": {
|
||||||
"Disable clipboard manager entirely (requires restart)": ""
|
"Disable clipboard manager entirely (requires restart)": ""
|
||||||
},
|
},
|
||||||
"Disabled": {
|
"Disabled": {
|
||||||
"Disabled": "無効化されました"
|
"Disabled": "無効化されました"
|
||||||
},
|
},
|
||||||
|
"Discard": {
|
||||||
|
"Discard": ""
|
||||||
|
},
|
||||||
"Disconnect": {
|
"Disconnect": {
|
||||||
"Disconnect": "切断"
|
"Disconnect": "切断"
|
||||||
},
|
},
|
||||||
@@ -977,6 +1073,9 @@
|
|||||||
"Display Name Format": {
|
"Display Name Format": {
|
||||||
"Display Name Format": "名称形式を表示"
|
"Display Name Format": "名称形式を表示"
|
||||||
},
|
},
|
||||||
|
"Display Settings": {
|
||||||
|
"Display Settings": ""
|
||||||
|
},
|
||||||
"Display a dock with pinned and running applications": {
|
"Display a dock with pinned and running applications": {
|
||||||
"Display a dock with pinned and running applications": ""
|
"Display a dock with pinned and running applications": ""
|
||||||
},
|
},
|
||||||
@@ -989,6 +1088,9 @@
|
|||||||
"Display application icons in workspace indicators": {
|
"Display application icons in workspace indicators": {
|
||||||
"Display application icons in workspace indicators": "ワークスペース インジケーターにアプリのアイコンを表示"
|
"Display application icons in workspace indicators": "ワークスペース インジケーターにアプリのアイコンを表示"
|
||||||
},
|
},
|
||||||
|
"Display configuration is not available. WLR output management protocol not supported.": {
|
||||||
|
"Display configuration is not available. WLR output management protocol not supported.": ""
|
||||||
|
},
|
||||||
"Display currently focused application title": {
|
"Display currently focused application title": {
|
||||||
"Display currently focused application title": "現在フォーカスされているアプリケーションのタイトルを表示"
|
"Display currently focused application title": "現在フォーカスされているアプリケーションのタイトルを表示"
|
||||||
},
|
},
|
||||||
@@ -1079,6 +1181,9 @@
|
|||||||
"Empty": {
|
"Empty": {
|
||||||
"Empty": "空白"
|
"Empty": "空白"
|
||||||
},
|
},
|
||||||
|
"Enable 10-bit color depth for wider color gamut and HDR support": {
|
||||||
|
"Enable 10-bit color depth for wider color gamut and HDR support": ""
|
||||||
|
},
|
||||||
"Enable Autoconnect": {
|
"Enable Autoconnect": {
|
||||||
"Enable Autoconnect": "自動接続を有効"
|
"Enable Autoconnect": "自動接続を有効"
|
||||||
},
|
},
|
||||||
@@ -1088,6 +1193,9 @@
|
|||||||
"Enable Border": {
|
"Enable Border": {
|
||||||
"Enable Border": ""
|
"Enable Border": ""
|
||||||
},
|
},
|
||||||
|
"Enable Desktop Clock": {
|
||||||
|
"Enable Desktop Clock": ""
|
||||||
|
},
|
||||||
"Enable Do Not Disturb": {
|
"Enable Do Not Disturb": {
|
||||||
"Enable Do Not Disturb": ""
|
"Enable Do Not Disturb": ""
|
||||||
},
|
},
|
||||||
@@ -1097,6 +1205,9 @@
|
|||||||
"Enable Overview Overlay": {
|
"Enable Overview Overlay": {
|
||||||
"Enable Overview Overlay": ""
|
"Enable Overview Overlay": ""
|
||||||
},
|
},
|
||||||
|
"Enable System Monitor": {
|
||||||
|
"Enable System Monitor": ""
|
||||||
|
},
|
||||||
"Enable System Sounds": {
|
"Enable System Sounds": {
|
||||||
"Enable System Sounds": "システムサウンドを有効に"
|
"Enable System Sounds": "システムサウンドを有効に"
|
||||||
},
|
},
|
||||||
@@ -1187,6 +1298,9 @@
|
|||||||
"Exclusive Zone Offset": {
|
"Exclusive Zone Offset": {
|
||||||
"Exclusive Zone Offset": "排他ゾーンオフセット"
|
"Exclusive Zone Offset": "排他ゾーンオフセット"
|
||||||
},
|
},
|
||||||
|
"Experimental Feature": {
|
||||||
|
"Experimental Feature": ""
|
||||||
|
},
|
||||||
"F1/I: Toggle • F10: Help": {
|
"F1/I: Toggle • F10: Help": {
|
||||||
"F1/I: Toggle • F10: Help": "F1/I: 切り替え • F10: ヘルプ"
|
"F1/I: Toggle • F10: Help": "F1/I: 切り替え • F10: ヘルプ"
|
||||||
},
|
},
|
||||||
@@ -1316,6 +1430,9 @@
|
|||||||
"Failed to update sharing": {
|
"Failed to update sharing": {
|
||||||
"Failed to update sharing": ""
|
"Failed to update sharing": ""
|
||||||
},
|
},
|
||||||
|
"Failed to write temp file for validation": {
|
||||||
|
"Failed to write temp file for validation": ""
|
||||||
|
},
|
||||||
"Feels Like": {
|
"Feels Like": {
|
||||||
"Feels Like": "どうやら"
|
"Feels Like": "どうやら"
|
||||||
},
|
},
|
||||||
@@ -1349,6 +1466,21 @@
|
|||||||
"Fixing...": {
|
"Fixing...": {
|
||||||
"Fixing...": ""
|
"Fixing...": ""
|
||||||
},
|
},
|
||||||
|
"Flipped": {
|
||||||
|
"Flipped": ""
|
||||||
|
},
|
||||||
|
"Flipped 180°": {
|
||||||
|
"Flipped 180°": ""
|
||||||
|
},
|
||||||
|
"Flipped 270°": {
|
||||||
|
"Flipped 270°": ""
|
||||||
|
},
|
||||||
|
"Flipped 90°": {
|
||||||
|
"Flipped 90°": ""
|
||||||
|
},
|
||||||
|
"Focus at Startup": {
|
||||||
|
"Focus at Startup": ""
|
||||||
|
},
|
||||||
"Focused Window": {
|
"Focused Window": {
|
||||||
"Focused Window": "フォーカスされたウィンドウ"
|
"Focused Window": "フォーカスされたウィンドウ"
|
||||||
},
|
},
|
||||||
@@ -1367,9 +1499,15 @@
|
|||||||
"Font Weight": {
|
"Font Weight": {
|
||||||
"Font Weight": "フォントの太さ"
|
"Font Weight": "フォントの太さ"
|
||||||
},
|
},
|
||||||
|
"Force HDR": {
|
||||||
|
"Force HDR": ""
|
||||||
|
},
|
||||||
"Force Kill Process": {
|
"Force Kill Process": {
|
||||||
"Force Kill Process": "プロセスを強制終了"
|
"Force Kill Process": "プロセスを強制終了"
|
||||||
},
|
},
|
||||||
|
"Force Wide Color": {
|
||||||
|
"Force Wide Color": ""
|
||||||
|
},
|
||||||
"Force terminal applications to always use dark color schemes": {
|
"Force terminal applications to always use dark color schemes": {
|
||||||
"Force terminal applications to always use dark color schemes": "端末アプリで常に暗い配色を強制使用"
|
"Force terminal applications to always use dark color schemes": "端末アプリで常に暗い配色を強制使用"
|
||||||
},
|
},
|
||||||
@@ -1433,6 +1571,9 @@
|
|||||||
"Gradually fade the screen before locking with a configurable grace period": {
|
"Gradually fade the screen before locking with a configurable grace period": {
|
||||||
"Gradually fade the screen before locking with a configurable grace period": ""
|
"Gradually fade the screen before locking with a configurable grace period": ""
|
||||||
},
|
},
|
||||||
|
"Graph Time Range": {
|
||||||
|
"Graph Time Range": ""
|
||||||
|
},
|
||||||
"Graphics": {
|
"Graphics": {
|
||||||
"Graphics": "グラフィック"
|
"Graphics": "グラフィック"
|
||||||
},
|
},
|
||||||
@@ -1448,6 +1589,15 @@
|
|||||||
"Group multiple windows of the same app together with a window count indicator": {
|
"Group multiple windows of the same app together with a window count indicator": {
|
||||||
"Group multiple windows of the same app together with a window count indicator": "同じアプリの複数のウィンドウをウィンドウ数インジケーターでグループ化します"
|
"Group multiple windows of the same app together with a window count indicator": "同じアプリの複数のウィンドウをウィンドウ数インジケーターでグループ化します"
|
||||||
},
|
},
|
||||||
|
"HDR (EDID)": {
|
||||||
|
"HDR (EDID)": ""
|
||||||
|
},
|
||||||
|
"HDR Tone Mapping": {
|
||||||
|
"HDR Tone Mapping": ""
|
||||||
|
},
|
||||||
|
"HDR mode is experimental. Verify your monitor supports HDR before enabling.": {
|
||||||
|
"HDR mode is experimental. Verify your monitor supports HDR before enabling.": ""
|
||||||
|
},
|
||||||
"HSV": {
|
"HSV": {
|
||||||
"HSV": "色相/彩度/輝度"
|
"HSV": "色相/彩度/輝度"
|
||||||
},
|
},
|
||||||
@@ -1457,6 +1607,9 @@
|
|||||||
"Held": {
|
"Held": {
|
||||||
"Held": ""
|
"Held": ""
|
||||||
},
|
},
|
||||||
|
"Help": {
|
||||||
|
"Help": ""
|
||||||
|
},
|
||||||
"Hex": {
|
"Hex": {
|
||||||
"Hex": "16進数"
|
"Hex": "16進数"
|
||||||
},
|
},
|
||||||
@@ -1496,6 +1649,9 @@
|
|||||||
"Hold to confirm (%1s)": {
|
"Hold to confirm (%1s)": {
|
||||||
"Hold to confirm (%1s)": ""
|
"Hold to confirm (%1s)": ""
|
||||||
},
|
},
|
||||||
|
"Hot Corners": {
|
||||||
|
"Hot Corners": ""
|
||||||
|
},
|
||||||
"Hotkey overlay title (optional)": {
|
"Hotkey overlay title (optional)": {
|
||||||
"Hotkey overlay title (optional)": ""
|
"Hotkey overlay title (optional)": ""
|
||||||
},
|
},
|
||||||
@@ -1565,6 +1721,9 @@
|
|||||||
"Include Transitions": {
|
"Include Transitions": {
|
||||||
"Include Transitions": "トランジションを含める"
|
"Include Transitions": "トランジションを含める"
|
||||||
},
|
},
|
||||||
|
"Incompatible Plugins Loaded": {
|
||||||
|
"Incompatible Plugins Loaded": ""
|
||||||
|
},
|
||||||
"Incorrect password": {
|
"Incorrect password": {
|
||||||
"Incorrect password": "パスワードが間違っています"
|
"Incorrect password": "パスワードが間違っています"
|
||||||
},
|
},
|
||||||
@@ -1577,6 +1736,9 @@
|
|||||||
"Individual bar configuration": {
|
"Individual bar configuration": {
|
||||||
"Individual bar configuration": "バーの個別設定"
|
"Individual bar configuration": "バーの個別設定"
|
||||||
},
|
},
|
||||||
|
"Inherit": {
|
||||||
|
"Inherit": ""
|
||||||
|
},
|
||||||
"Inhibit idle timeout when audio or video is playing": {
|
"Inhibit idle timeout when audio or video is playing": {
|
||||||
"Inhibit idle timeout when audio or video is playing": "オーディオまたはビデオの再生中のアイドルタイムアウトを禁止"
|
"Inhibit idle timeout when audio or video is playing": "オーディオまたはビデオの再生中のアイドルタイムアウトを禁止"
|
||||||
},
|
},
|
||||||
@@ -1598,6 +1760,9 @@
|
|||||||
"Interval": {
|
"Interval": {
|
||||||
"Interval": "間隔"
|
"Interval": "間隔"
|
||||||
},
|
},
|
||||||
|
"Invalid configuration": {
|
||||||
|
"Invalid configuration": ""
|
||||||
|
},
|
||||||
"Invert on mode change": {
|
"Invert on mode change": {
|
||||||
"Invert on mode change": "モード変更時に反転"
|
"Invert on mode change": "モード変更時に反転"
|
||||||
},
|
},
|
||||||
@@ -1670,6 +1835,9 @@
|
|||||||
"Layout": {
|
"Layout": {
|
||||||
"Layout": "レイアウト"
|
"Layout": "レイアウト"
|
||||||
},
|
},
|
||||||
|
"Layout Overrides": {
|
||||||
|
"Layout Overrides": ""
|
||||||
|
},
|
||||||
"Left": {
|
"Left": {
|
||||||
"Left": "左"
|
"Left": "左"
|
||||||
},
|
},
|
||||||
@@ -1682,6 +1850,9 @@
|
|||||||
"Lines: %1": {
|
"Lines: %1": {
|
||||||
"Lines: %1": "行数: %1"
|
"Lines: %1": "行数: %1"
|
||||||
},
|
},
|
||||||
|
"List": {
|
||||||
|
"List": ""
|
||||||
|
},
|
||||||
"Lively palette with saturated accents.": {
|
"Lively palette with saturated accents.": {
|
||||||
"Lively palette with saturated accents.": "彩度の高いアクセントを備えた生き生きとしたパレット。"
|
"Lively palette with saturated accents.": "彩度の高いアクセントを備えた生き生きとしたパレット。"
|
||||||
},
|
},
|
||||||
@@ -1847,6 +2018,9 @@
|
|||||||
"Memory": {
|
"Memory": {
|
||||||
"Memory": "メモリ"
|
"Memory": "メモリ"
|
||||||
},
|
},
|
||||||
|
"Memory Graph": {
|
||||||
|
"Memory Graph": ""
|
||||||
|
},
|
||||||
"Memory Usage": {
|
"Memory Usage": {
|
||||||
"Memory Usage": "メモリ使用率"
|
"Memory Usage": "メモリ使用率"
|
||||||
},
|
},
|
||||||
@@ -1883,6 +2057,12 @@
|
|||||||
"Model": {
|
"Model": {
|
||||||
"Model": "モデル"
|
"Model": "モデル"
|
||||||
},
|
},
|
||||||
|
"Modified": {
|
||||||
|
"Modified": ""
|
||||||
|
},
|
||||||
|
"Monitor Configuration": {
|
||||||
|
"Monitor Configuration": ""
|
||||||
|
},
|
||||||
"Monitor whose wallpaper drives dynamic theming colors": {
|
"Monitor whose wallpaper drives dynamic theming colors": {
|
||||||
"Monitor whose wallpaper drives dynamic theming colors": "ダイナミックテーマの色を駆動する壁紙をモニター"
|
"Monitor whose wallpaper drives dynamic theming colors": "ダイナミックテーマの色を駆動する壁紙をモニター"
|
||||||
},
|
},
|
||||||
@@ -1898,6 +2078,9 @@
|
|||||||
"Mount": {
|
"Mount": {
|
||||||
"Mount": "マウント"
|
"Mount": "マウント"
|
||||||
},
|
},
|
||||||
|
"Move Widget": {
|
||||||
|
"Move Widget": ""
|
||||||
|
},
|
||||||
"Moving to Paused": {
|
"Moving to Paused": {
|
||||||
"Moving to Paused": "一時停止への移行"
|
"Moving to Paused": "一時停止への移行"
|
||||||
},
|
},
|
||||||
@@ -1919,6 +2102,9 @@
|
|||||||
"Network": {
|
"Network": {
|
||||||
"Network": "ネットワーク"
|
"Network": "ネットワーク"
|
||||||
},
|
},
|
||||||
|
"Network Graph": {
|
||||||
|
"Network Graph": ""
|
||||||
|
},
|
||||||
"Network Info": {
|
"Network Info": {
|
||||||
"Network Info": "ネットワーク情報"
|
"Network Info": "ネットワーク情報"
|
||||||
},
|
},
|
||||||
@@ -2015,6 +2201,9 @@
|
|||||||
"No drivers found": {
|
"No drivers found": {
|
||||||
"No drivers found": ""
|
"No drivers found": ""
|
||||||
},
|
},
|
||||||
|
"No features enabled": {
|
||||||
|
"No features enabled": ""
|
||||||
|
},
|
||||||
"No files found": {
|
"No files found": {
|
||||||
"No files found": "ファイルが見つかりませんでした"
|
"No files found": "ファイルが見つかりませんでした"
|
||||||
},
|
},
|
||||||
@@ -2042,9 +2231,15 @@
|
|||||||
"No printers found": {
|
"No printers found": {
|
||||||
"No printers found": ""
|
"No printers found": ""
|
||||||
},
|
},
|
||||||
|
"No variants created. Click Add to create a new monitor widget.": {
|
||||||
|
"No variants created. Click Add to create a new monitor widget.": ""
|
||||||
|
},
|
||||||
"None": {
|
"None": {
|
||||||
"None": "ない"
|
"None": "ない"
|
||||||
},
|
},
|
||||||
|
"Normal": {
|
||||||
|
"Normal": ""
|
||||||
|
},
|
||||||
"Normal Font": {
|
"Normal Font": {
|
||||||
"Normal Font": ""
|
"Normal Font": ""
|
||||||
},
|
},
|
||||||
@@ -2096,6 +2291,9 @@
|
|||||||
"OSD Position": {
|
"OSD Position": {
|
||||||
"OSD Position": "OSD位置"
|
"OSD Position": "OSD位置"
|
||||||
},
|
},
|
||||||
|
"Off": {
|
||||||
|
"Off": ""
|
||||||
|
},
|
||||||
"Office": {
|
"Office": {
|
||||||
"Office": "オフィス"
|
"Office": "オフィス"
|
||||||
},
|
},
|
||||||
@@ -2159,12 +2357,18 @@
|
|||||||
"Output Tray Missing": {
|
"Output Tray Missing": {
|
||||||
"Output Tray Missing": "アウトプットトレイが見つかりませんでした"
|
"Output Tray Missing": "アウトプットトレイが見つかりませんでした"
|
||||||
},
|
},
|
||||||
|
"Outputs Include Missing": {
|
||||||
|
"Outputs Include Missing": ""
|
||||||
|
},
|
||||||
"Overridden by config": {
|
"Overridden by config": {
|
||||||
"Overridden by config": ""
|
"Overridden by config": ""
|
||||||
},
|
},
|
||||||
"Override": {
|
"Override": {
|
||||||
"Override": ""
|
"Override": ""
|
||||||
},
|
},
|
||||||
|
"Override global layout settings for this output": {
|
||||||
|
"Override global layout settings for this output": ""
|
||||||
|
},
|
||||||
"Overrides": {
|
"Overrides": {
|
||||||
"Overrides": ""
|
"Overrides": ""
|
||||||
},
|
},
|
||||||
@@ -2324,6 +2528,9 @@
|
|||||||
"Preference": {
|
"Preference": {
|
||||||
"Preference": ""
|
"Preference": ""
|
||||||
},
|
},
|
||||||
|
"Preset Widths (%)": {
|
||||||
|
"Preset Widths (%)": ""
|
||||||
|
},
|
||||||
"Press key...": {
|
"Press key...": {
|
||||||
"Press key...": ""
|
"Press key...": ""
|
||||||
},
|
},
|
||||||
@@ -2372,6 +2579,9 @@
|
|||||||
"Process": {
|
"Process": {
|
||||||
"Process": "プロセス"
|
"Process": "プロセス"
|
||||||
},
|
},
|
||||||
|
"Process Count": {
|
||||||
|
"Process Count": ""
|
||||||
|
},
|
||||||
"Processing": {
|
"Processing": {
|
||||||
"Processing": "進行中"
|
"Processing": "進行中"
|
||||||
},
|
},
|
||||||
@@ -2447,12 +2657,27 @@
|
|||||||
"Require holding button/key to confirm power off, restart, suspend, hibernate and logout": {
|
"Require holding button/key to confirm power off, restart, suspend, hibernate and logout": {
|
||||||
"Require holding button/key to confirm power off, restart, suspend, hibernate and logout": ""
|
"Require holding button/key to confirm power off, restart, suspend, hibernate and logout": ""
|
||||||
},
|
},
|
||||||
|
"Requires DMS": {
|
||||||
|
"Requires DMS": ""
|
||||||
|
},
|
||||||
"Requires DWL compositor": {
|
"Requires DWL compositor": {
|
||||||
"Requires DWL compositor": "DWLコンポジターが必要"
|
"Requires DWL compositor": "DWLコンポジターが必要"
|
||||||
},
|
},
|
||||||
"Reset": {
|
"Reset": {
|
||||||
"Reset": "リセット"
|
"Reset": "リセット"
|
||||||
},
|
},
|
||||||
|
"Reset Position": {
|
||||||
|
"Reset Position": ""
|
||||||
|
},
|
||||||
|
"Reset Size": {
|
||||||
|
"Reset Size": ""
|
||||||
|
},
|
||||||
|
"Resize Widget": {
|
||||||
|
"Resize Widget": ""
|
||||||
|
},
|
||||||
|
"Resolution & Refresh": {
|
||||||
|
"Resolution & Refresh": ""
|
||||||
|
},
|
||||||
"Resources": {
|
"Resources": {
|
||||||
"Resources": "リソース"
|
"Resources": "リソース"
|
||||||
},
|
},
|
||||||
@@ -2483,6 +2708,12 @@
|
|||||||
"Right Tiling": {
|
"Right Tiling": {
|
||||||
"Right Tiling": "右タイリング"
|
"Right Tiling": "右タイリング"
|
||||||
},
|
},
|
||||||
|
"Right-click and drag anywhere on the widget": {
|
||||||
|
"Right-click and drag anywhere on the widget": ""
|
||||||
|
},
|
||||||
|
"Right-click and drag the bottom-right corner": {
|
||||||
|
"Right-click and drag the bottom-right corner": ""
|
||||||
|
},
|
||||||
"Right-click bar widget to cycle": {
|
"Right-click bar widget to cycle": {
|
||||||
"Right-click bar widget to cycle": "バーウィジェットを右クリックして循環"
|
"Right-click bar widget to cycle": "バーウィジェットを右クリックして循環"
|
||||||
},
|
},
|
||||||
@@ -2507,6 +2738,12 @@
|
|||||||
"Running Apps Settings": {
|
"Running Apps Settings": {
|
||||||
"Running Apps Settings": "実行中のアプリの設定"
|
"Running Apps Settings": "実行中のアプリの設定"
|
||||||
},
|
},
|
||||||
|
"SDR Brightness": {
|
||||||
|
"SDR Brightness": ""
|
||||||
|
},
|
||||||
|
"SDR Saturation": {
|
||||||
|
"SDR Saturation": ""
|
||||||
|
},
|
||||||
"Save": {
|
"Save": {
|
||||||
"Save": "保存"
|
"Save": "保存"
|
||||||
},
|
},
|
||||||
@@ -2522,6 +2759,9 @@
|
|||||||
"Saved Configurations": {
|
"Saved Configurations": {
|
||||||
"Saved Configurations": ""
|
"Saved Configurations": ""
|
||||||
},
|
},
|
||||||
|
"Scale": {
|
||||||
|
"Scale": ""
|
||||||
|
},
|
||||||
"Scale DankBar font sizes independently": {
|
"Scale DankBar font sizes independently": {
|
||||||
"Scale DankBar font sizes independently": "Dank Barのフォントサイズを個別に調整"
|
"Scale DankBar font sizes independently": "Dank Barのフォントサイズを個別に調整"
|
||||||
},
|
},
|
||||||
@@ -2540,6 +2780,9 @@
|
|||||||
"Screen sharing": {
|
"Screen sharing": {
|
||||||
"Screen sharing": "画面共有"
|
"Screen sharing": "画面共有"
|
||||||
},
|
},
|
||||||
|
"Scroll Wheel": {
|
||||||
|
"Scroll Wheel": ""
|
||||||
|
},
|
||||||
"Scroll song title": {
|
"Scroll song title": {
|
||||||
"Scroll song title": ""
|
"Scroll song title": ""
|
||||||
},
|
},
|
||||||
@@ -2570,6 +2813,9 @@
|
|||||||
"Searching...": {
|
"Searching...": {
|
||||||
"Searching...": "検索中..."
|
"Searching...": "検索中..."
|
||||||
},
|
},
|
||||||
|
"Secondary": {
|
||||||
|
"Secondary": ""
|
||||||
|
},
|
||||||
"Secured": {
|
"Secured": {
|
||||||
"Secured": ""
|
"Secured": ""
|
||||||
},
|
},
|
||||||
@@ -2666,15 +2912,39 @@
|
|||||||
"Show All Tags": {
|
"Show All Tags": {
|
||||||
"Show All Tags": "すべてのタグを表示"
|
"Show All Tags": "すべてのタグを表示"
|
||||||
},
|
},
|
||||||
|
"Show CPU": {
|
||||||
|
"Show CPU": ""
|
||||||
|
},
|
||||||
|
"Show CPU Graph": {
|
||||||
|
"Show CPU Graph": ""
|
||||||
|
},
|
||||||
|
"Show CPU Temp": {
|
||||||
|
"Show CPU Temp": ""
|
||||||
|
},
|
||||||
"Show Confirmation on Power Actions": {
|
"Show Confirmation on Power Actions": {
|
||||||
"Show Confirmation on Power Actions": "電源アクションの確認を表示"
|
"Show Confirmation on Power Actions": "電源アクションの確認を表示"
|
||||||
},
|
},
|
||||||
|
"Show Date": {
|
||||||
|
"Show Date": ""
|
||||||
|
},
|
||||||
|
"Show Disk": {
|
||||||
|
"Show Disk": ""
|
||||||
|
},
|
||||||
"Show Dock": {
|
"Show Dock": {
|
||||||
"Show Dock": "ドックを表示"
|
"Show Dock": "ドックを表示"
|
||||||
},
|
},
|
||||||
|
"Show GPU Temperature": {
|
||||||
|
"Show GPU Temperature": ""
|
||||||
|
},
|
||||||
|
"Show Header": {
|
||||||
|
"Show Header": ""
|
||||||
|
},
|
||||||
"Show Hibernate": {
|
"Show Hibernate": {
|
||||||
"Show Hibernate": "休止状態を表示"
|
"Show Hibernate": "休止状態を表示"
|
||||||
},
|
},
|
||||||
|
"Show Hour Numbers": {
|
||||||
|
"Show Hour Numbers": ""
|
||||||
|
},
|
||||||
"Show Line Numbers": {
|
"Show Line Numbers": {
|
||||||
"Show Line Numbers": "行番号を表示"
|
"Show Line Numbers": "行番号を表示"
|
||||||
},
|
},
|
||||||
@@ -2684,6 +2954,18 @@
|
|||||||
"Show Log Out": {
|
"Show Log Out": {
|
||||||
"Show Log Out": "ログアウトを表示"
|
"Show Log Out": "ログアウトを表示"
|
||||||
},
|
},
|
||||||
|
"Show Memory": {
|
||||||
|
"Show Memory": ""
|
||||||
|
},
|
||||||
|
"Show Memory Graph": {
|
||||||
|
"Show Memory Graph": ""
|
||||||
|
},
|
||||||
|
"Show Network": {
|
||||||
|
"Show Network": ""
|
||||||
|
},
|
||||||
|
"Show Network Graph": {
|
||||||
|
"Show Network Graph": ""
|
||||||
|
},
|
||||||
"Show Occupied Workspaces Only": {
|
"Show Occupied Workspaces Only": {
|
||||||
"Show Occupied Workspaces Only": ""
|
"Show Occupied Workspaces Only": ""
|
||||||
},
|
},
|
||||||
@@ -2705,6 +2987,9 @@
|
|||||||
"Show Suspend": {
|
"Show Suspend": {
|
||||||
"Show Suspend": "一時停止を表示"
|
"Show Suspend": "一時停止を表示"
|
||||||
},
|
},
|
||||||
|
"Show Top Processes": {
|
||||||
|
"Show Top Processes": ""
|
||||||
|
},
|
||||||
"Show Workspace Apps": {
|
"Show Workspace Apps": {
|
||||||
"Show Workspace Apps": "ワークスペースアプリを表示"
|
"Show Workspace Apps": "ワークスペースアプリを表示"
|
||||||
},
|
},
|
||||||
@@ -2807,9 +3092,15 @@
|
|||||||
"Sizing": {
|
"Sizing": {
|
||||||
"Sizing": ""
|
"Sizing": ""
|
||||||
},
|
},
|
||||||
|
"Some plugins require a newer version of DMS:": {
|
||||||
|
"Some plugins require a newer version of DMS:": ""
|
||||||
|
},
|
||||||
"Sort Alphabetically": {
|
"Sort Alphabetically": {
|
||||||
"Sort Alphabetically": "アルファベット順に並べ替える"
|
"Sort Alphabetically": "アルファベット順に並べ替える"
|
||||||
},
|
},
|
||||||
|
"Sort By": {
|
||||||
|
"Sort By": ""
|
||||||
|
},
|
||||||
"Sorting & Layout": {
|
"Sorting & Layout": {
|
||||||
"Sorting & Layout": ""
|
"Sorting & Layout": ""
|
||||||
},
|
},
|
||||||
@@ -2834,6 +3125,9 @@
|
|||||||
"Square Corners": {
|
"Square Corners": {
|
||||||
"Square Corners": "四角コーナー"
|
"Square Corners": "四角コーナー"
|
||||||
},
|
},
|
||||||
|
"Stacked": {
|
||||||
|
"Stacked": ""
|
||||||
|
},
|
||||||
"Start": {
|
"Start": {
|
||||||
"Start": "始める"
|
"Start": "始める"
|
||||||
},
|
},
|
||||||
@@ -3053,12 +3347,24 @@
|
|||||||
"Top Bar Format": {
|
"Top Bar Format": {
|
||||||
"Top Bar Format": "トップバー形式"
|
"Top Bar Format": "トップバー形式"
|
||||||
},
|
},
|
||||||
|
"Top Left": {
|
||||||
|
"Top Left": ""
|
||||||
|
},
|
||||||
|
"Top Processes": {
|
||||||
|
"Top Processes": ""
|
||||||
|
},
|
||||||
|
"Top Right": {
|
||||||
|
"Top Right": ""
|
||||||
|
},
|
||||||
"Top Section": {
|
"Top Section": {
|
||||||
"Top Section": "トップセクション"
|
"Top Section": "トップセクション"
|
||||||
},
|
},
|
||||||
"Total Jobs": {
|
"Total Jobs": {
|
||||||
"Total Jobs": ""
|
"Total Jobs": ""
|
||||||
},
|
},
|
||||||
|
"Transform": {
|
||||||
|
"Transform": ""
|
||||||
|
},
|
||||||
"Transition Effect": {
|
"Transition Effect": {
|
||||||
"Transition Effect": "トランジション効果"
|
"Transition Effect": "トランジション効果"
|
||||||
},
|
},
|
||||||
@@ -3182,9 +3488,27 @@
|
|||||||
"VPN status and quick connect": {
|
"VPN status and quick connect": {
|
||||||
"VPN status and quick connect": "VPNステータスとクイック接続"
|
"VPN status and quick connect": "VPNステータスとクイック接続"
|
||||||
},
|
},
|
||||||
|
"VRR": {
|
||||||
|
"VRR": ""
|
||||||
|
},
|
||||||
|
"VRR On-Demand": {
|
||||||
|
"VRR On-Demand": ""
|
||||||
|
},
|
||||||
|
"VRR activates only when applications request it": {
|
||||||
|
"VRR activates only when applications request it": ""
|
||||||
|
},
|
||||||
"VRR: ": {
|
"VRR: ": {
|
||||||
"VRR: ": "VRR: "
|
"VRR: ": "VRR: "
|
||||||
},
|
},
|
||||||
|
"Variable Refresh Rate": {
|
||||||
|
"Variable Refresh Rate": ""
|
||||||
|
},
|
||||||
|
"Variant created - expand to configure": {
|
||||||
|
"Variant created - expand to configure": ""
|
||||||
|
},
|
||||||
|
"Variant removed": {
|
||||||
|
"Variant removed": ""
|
||||||
|
},
|
||||||
"Version": {
|
"Version": {
|
||||||
"Version": ""
|
"Version": ""
|
||||||
},
|
},
|
||||||
@@ -3260,6 +3584,10 @@
|
|||||||
"When enabled, shows the launcher overlay when typing in Niri overview mode. Disable this if you prefer to not have the launcher when typing on Niri overview or want to use other launcher in the overview.": {
|
"When enabled, shows the launcher overlay when typing in Niri overview mode. Disable this if you prefer to not have the launcher when typing on Niri overview or want to use other launcher in the overview.": {
|
||||||
"When enabled, shows the launcher overlay when typing in Niri overview mode. Disable this if you prefer to not have the launcher when typing on Niri overview or want to use other launcher in the overview.": ""
|
"When enabled, shows the launcher overlay when typing in Niri overview mode. Disable this if you prefer to not have the launcher when typing on Niri overview or want to use other launcher in the overview.": ""
|
||||||
},
|
},
|
||||||
|
"When updater widget is used, then hide it if no update found": {
|
||||||
|
"Hide Updater Widget": "",
|
||||||
|
"When updater widget is used, then hide it if no update found": ""
|
||||||
|
},
|
||||||
"Wi-Fi Password": {
|
"Wi-Fi Password": {
|
||||||
"Wi-Fi Password": ""
|
"Wi-Fi Password": ""
|
||||||
},
|
},
|
||||||
@@ -3278,6 +3606,9 @@
|
|||||||
"WiFi is off": {
|
"WiFi is off": {
|
||||||
"WiFi is off": "Wi-Fiはオフ中"
|
"WiFi is off": "Wi-Fiはオフ中"
|
||||||
},
|
},
|
||||||
|
"Wide (BT2020)": {
|
||||||
|
"Wide (BT2020)": ""
|
||||||
|
},
|
||||||
"Widget Background Color": {
|
"Widget Background Color": {
|
||||||
"Widget Background Color": "ウィジェットの背景色"
|
"Widget Background Color": "ウィジェットの背景色"
|
||||||
},
|
},
|
||||||
@@ -3296,6 +3627,9 @@
|
|||||||
"Widget Transparency": {
|
"Widget Transparency": {
|
||||||
"Widget Transparency": "ウィジェットの透明度"
|
"Widget Transparency": "ウィジェットの透明度"
|
||||||
},
|
},
|
||||||
|
"Widget Variants": {
|
||||||
|
"Widget Variants": ""
|
||||||
|
},
|
||||||
"Widgets": {
|
"Widgets": {
|
||||||
"Widgets": "ウィジェット"
|
"Widgets": "ウィジェット"
|
||||||
},
|
},
|
||||||
@@ -3305,6 +3639,9 @@
|
|||||||
"Wind Speed": {
|
"Wind Speed": {
|
||||||
"Wind Speed": ""
|
"Wind Speed": ""
|
||||||
},
|
},
|
||||||
|
"Window Gaps (px)": {
|
||||||
|
"Window Gaps (px)": ""
|
||||||
|
},
|
||||||
"Workspace": {
|
"Workspace": {
|
||||||
"Workspace": "ワークスペース"
|
"Workspace": "ワークスペース"
|
||||||
},
|
},
|
||||||
@@ -3326,6 +3663,12 @@
|
|||||||
"Workspaces & Widgets": {
|
"Workspaces & Widgets": {
|
||||||
"Workspaces & Widgets": ""
|
"Workspaces & Widgets": ""
|
||||||
},
|
},
|
||||||
|
"X Axis": {
|
||||||
|
"X Axis": ""
|
||||||
|
},
|
||||||
|
"Y Axis": {
|
||||||
|
"Y Axis": ""
|
||||||
|
},
|
||||||
"Yes": {
|
"Yes": {
|
||||||
"Yes": ""
|
"Yes": ""
|
||||||
},
|
},
|
||||||
@@ -3398,6 +3741,9 @@
|
|||||||
"settings window title": {
|
"settings window title": {
|
||||||
"Settings": "設定"
|
"Settings": "設定"
|
||||||
},
|
},
|
||||||
|
"settings_displays": {
|
||||||
|
"Widgets": ""
|
||||||
|
},
|
||||||
"sysmon window title": {
|
"sysmon window title": {
|
||||||
"System Monitor": "システムモニタ"
|
"System Monitor": "システムモニタ"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -50,12 +50,18 @@
|
|||||||
"10 seconds": {
|
"10 seconds": {
|
||||||
"10 seconds": "10 sekund"
|
"10 seconds": "10 sekund"
|
||||||
},
|
},
|
||||||
|
"10-bit Color": {
|
||||||
|
"10-bit Color": ""
|
||||||
|
},
|
||||||
"14 days": {
|
"14 days": {
|
||||||
"14 days": ""
|
"14 days": ""
|
||||||
},
|
},
|
||||||
"15 seconds": {
|
"15 seconds": {
|
||||||
"15 seconds": "15 sekund"
|
"15 seconds": "15 sekund"
|
||||||
},
|
},
|
||||||
|
"180°": {
|
||||||
|
"180°": ""
|
||||||
|
},
|
||||||
"2 minutes": {
|
"2 minutes": {
|
||||||
"2 minutes": "2 minuty"
|
"2 minutes": "2 minuty"
|
||||||
},
|
},
|
||||||
@@ -65,6 +71,9 @@
|
|||||||
"24-hour format": {
|
"24-hour format": {
|
||||||
"24-hour format": "format 24-godzinny"
|
"24-hour format": "format 24-godzinny"
|
||||||
},
|
},
|
||||||
|
"270°": {
|
||||||
|
"270°": ""
|
||||||
|
},
|
||||||
"3 days": {
|
"3 days": {
|
||||||
"3 days": ""
|
"3 days": ""
|
||||||
},
|
},
|
||||||
@@ -95,6 +104,9 @@
|
|||||||
"90 days": {
|
"90 days": {
|
||||||
"90 days": ""
|
"90 days": ""
|
||||||
},
|
},
|
||||||
|
"90°": {
|
||||||
|
"90°": ""
|
||||||
|
},
|
||||||
"A file with this name already exists. Do you want to overwrite it?": {
|
"A file with this name already exists. Do you want to overwrite it?": {
|
||||||
"A file with this name already exists. Do you want to overwrite it?": "Plik o takiej nazwie już istnieje. Czy chcesz go nadpisać?"
|
"A file with this name already exists. Do you want to overwrite it?": "Plik o takiej nazwie już istnieje. Czy chcesz go nadpisać?"
|
||||||
},
|
},
|
||||||
@@ -200,6 +212,9 @@
|
|||||||
"Amount": {
|
"Amount": {
|
||||||
"Amount": ""
|
"Amount": ""
|
||||||
},
|
},
|
||||||
|
"Analog": {
|
||||||
|
"Analog": ""
|
||||||
|
},
|
||||||
"Animation Speed": {
|
"Animation Speed": {
|
||||||
"Animation Speed": "Szybkość animacji"
|
"Animation Speed": "Szybkość animacji"
|
||||||
},
|
},
|
||||||
@@ -218,6 +233,9 @@
|
|||||||
"Applications": {
|
"Applications": {
|
||||||
"Applications": "Aplikacje"
|
"Applications": "Aplikacje"
|
||||||
},
|
},
|
||||||
|
"Apply Changes": {
|
||||||
|
"Apply Changes": ""
|
||||||
|
},
|
||||||
"Apply GTK Colors": {
|
"Apply GTK Colors": {
|
||||||
"Apply GTK Colors": "Zastosuj kolory GTK"
|
"Apply GTK Colors": "Zastosuj kolory GTK"
|
||||||
},
|
},
|
||||||
@@ -233,6 +251,9 @@
|
|||||||
"Apps are ordered by usage frequency, then last used, then alphabetically.": {
|
"Apps are ordered by usage frequency, then last used, then alphabetically.": {
|
||||||
"Apps are ordered by usage frequency, then last used, then alphabetically.": "Aplikacje są uporządkowane według częstotliwości użytkowania, następnie według daty ostatniego użycia, a następnie alfabetycznie."
|
"Apps are ordered by usage frequency, then last used, then alphabetically.": "Aplikacje są uporządkowane według częstotliwości użytkowania, następnie według daty ostatniego użycia, a następnie alfabetycznie."
|
||||||
},
|
},
|
||||||
|
"Arrange displays and configure resolution, refresh rate, and VRR": {
|
||||||
|
"Arrange displays and configure resolution, refresh rate, and VRR": ""
|
||||||
|
},
|
||||||
"Audio": {
|
"Audio": {
|
||||||
"Audio": "Dźwięk"
|
"Audio": "Dźwięk"
|
||||||
},
|
},
|
||||||
@@ -284,6 +305,9 @@
|
|||||||
"Auto": {
|
"Auto": {
|
||||||
"Auto": "Automatycznie"
|
"Auto": "Automatycznie"
|
||||||
},
|
},
|
||||||
|
"Auto (Wide)": {
|
||||||
|
"Auto (Wide)": ""
|
||||||
|
},
|
||||||
"Auto Location": {
|
"Auto Location": {
|
||||||
"Auto Location": "Automatyczna lokalizacja"
|
"Auto Location": "Automatyczna lokalizacja"
|
||||||
},
|
},
|
||||||
@@ -365,6 +389,9 @@
|
|||||||
"Backend": {
|
"Backend": {
|
||||||
"Backend": "Backend"
|
"Backend": "Backend"
|
||||||
},
|
},
|
||||||
|
"Background Opacity": {
|
||||||
|
"Background Opacity": ""
|
||||||
|
},
|
||||||
"Balanced palette with focused accents (default).": {
|
"Balanced palette with focused accents (default).": {
|
||||||
"Balanced palette with focused accents (default).": "Zrównoważona paleta ze skupionymi akcentami (domyślnie)."
|
"Balanced palette with focused accents (default).": "Zrównoważona paleta ze skupionymi akcentami (domyślnie)."
|
||||||
},
|
},
|
||||||
@@ -392,6 +419,9 @@
|
|||||||
"Binds include added": {
|
"Binds include added": {
|
||||||
"Binds include added": "Dodano powiązania"
|
"Binds include added": "Dodano powiązania"
|
||||||
},
|
},
|
||||||
|
"Bit Depth": {
|
||||||
|
"Bit Depth": ""
|
||||||
|
},
|
||||||
"Bluetooth": {
|
"Bluetooth": {
|
||||||
"Bluetooth": "Bluetooth"
|
"Bluetooth": "Bluetooth"
|
||||||
},
|
},
|
||||||
@@ -422,6 +452,12 @@
|
|||||||
"Bottom": {
|
"Bottom": {
|
||||||
"Bottom": "Dół"
|
"Bottom": "Dół"
|
||||||
},
|
},
|
||||||
|
"Bottom Left": {
|
||||||
|
"Bottom Left": ""
|
||||||
|
},
|
||||||
|
"Bottom Right": {
|
||||||
|
"Bottom Right": ""
|
||||||
|
},
|
||||||
"Bottom Section": {
|
"Bottom Section": {
|
||||||
"Bottom Section": "Sekcja dolna"
|
"Bottom Section": "Sekcja dolna"
|
||||||
},
|
},
|
||||||
@@ -443,6 +479,9 @@
|
|||||||
"CPU": {
|
"CPU": {
|
||||||
"CPU": "CPU"
|
"CPU": "CPU"
|
||||||
},
|
},
|
||||||
|
"CPU Graph": {
|
||||||
|
"CPU Graph": ""
|
||||||
|
},
|
||||||
"CPU Temperature": {
|
"CPU Temperature": {
|
||||||
"CPU Temperature": "Temperatura CPU"
|
"CPU Temperature": "Temperatura CPU"
|
||||||
},
|
},
|
||||||
@@ -491,6 +530,9 @@
|
|||||||
"Center Section": {
|
"Center Section": {
|
||||||
"Center Section": "Sekcja środkowa"
|
"Center Section": "Sekcja środkowa"
|
||||||
},
|
},
|
||||||
|
"Center Single Column": {
|
||||||
|
"Center Single Column": ""
|
||||||
|
},
|
||||||
"Center Tiling": {
|
"Center Tiling": {
|
||||||
"Center Tiling": "Płytki środkowe"
|
"Center Tiling": "Płytki środkowe"
|
||||||
},
|
},
|
||||||
@@ -536,6 +578,9 @@
|
|||||||
"Choose where on-screen displays appear on screen": {
|
"Choose where on-screen displays appear on screen": {
|
||||||
"Choose where on-screen displays appear on screen": "Wybierz miejsce wyświetlania informacji na ekranie"
|
"Choose where on-screen displays appear on screen": "Wybierz miejsce wyświetlania informacji na ekranie"
|
||||||
},
|
},
|
||||||
|
"Choose which displays show this widget": {
|
||||||
|
"Choose which displays show this widget": ""
|
||||||
|
},
|
||||||
"Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": {
|
"Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": {
|
||||||
"Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": "Wybierz monitor, na którym będzie wyświetlany interfejs ekranu blokady. Inne monitory będą wyświetlać jednolity kolor, aby chronić ekran OLED przed wypaleniem."
|
"Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": "Wybierz monitor, na którym będzie wyświetlany interfejs ekranu blokady. Inne monitory będą wyświetlać jednolity kolor, aby chronić ekran OLED przed wypaleniem."
|
||||||
},
|
},
|
||||||
@@ -587,6 +632,9 @@
|
|||||||
"Clock": {
|
"Clock": {
|
||||||
"Clock": "Zegar"
|
"Clock": "Zegar"
|
||||||
},
|
},
|
||||||
|
"Clock Style": {
|
||||||
|
"Clock Style": ""
|
||||||
|
},
|
||||||
"Clock show seconds": {
|
"Clock show seconds": {
|
||||||
"Clock show seconds": "Pokazuj sekundy"
|
"Clock show seconds": "Pokazuj sekundy"
|
||||||
},
|
},
|
||||||
@@ -599,6 +647,12 @@
|
|||||||
"Color": {
|
"Color": {
|
||||||
"Color": "Kolor"
|
"Color": "Kolor"
|
||||||
},
|
},
|
||||||
|
"Color Gamut": {
|
||||||
|
"Color Gamut": ""
|
||||||
|
},
|
||||||
|
"Color Management": {
|
||||||
|
"Color Management": ""
|
||||||
|
},
|
||||||
"Color Mode": {
|
"Color Mode": {
|
||||||
"Color Mode": "Tryb kolorów"
|
"Color Mode": "Tryb kolorów"
|
||||||
},
|
},
|
||||||
@@ -623,6 +677,9 @@
|
|||||||
"Colorful mix of bright contrasting accents.": {
|
"Colorful mix of bright contrasting accents.": {
|
||||||
"Colorful mix of bright contrasting accents.": "Kolorowa mieszanka jasnych kontrastujących akcentów."
|
"Colorful mix of bright contrasting accents.": "Kolorowa mieszanka jasnych kontrastujących akcentów."
|
||||||
},
|
},
|
||||||
|
"Column": {
|
||||||
|
"Column": ""
|
||||||
|
},
|
||||||
"Command": {
|
"Command": {
|
||||||
"Command": "Rozkaz"
|
"Command": "Rozkaz"
|
||||||
},
|
},
|
||||||
@@ -656,12 +713,27 @@
|
|||||||
"Compositor": {
|
"Compositor": {
|
||||||
"Compositor": "Kompozytor"
|
"Compositor": "Kompozytor"
|
||||||
},
|
},
|
||||||
|
"Compositor Settings": {
|
||||||
|
"Compositor Settings": ""
|
||||||
|
},
|
||||||
|
"Config Format": {
|
||||||
|
"Config Format": ""
|
||||||
|
},
|
||||||
"Config action: %1": {
|
"Config action: %1": {
|
||||||
"Config action: %1": "Akcja konfiguracji: %1"
|
"Config action: %1": "Akcja konfiguracji: %1"
|
||||||
},
|
},
|
||||||
|
"Config validation failed": {
|
||||||
|
"Config validation failed": ""
|
||||||
|
},
|
||||||
|
"Configuration": {
|
||||||
|
"Configuration": ""
|
||||||
|
},
|
||||||
"Configuration activated": {
|
"Configuration activated": {
|
||||||
"Configuration activated": "Konfiguracja aktywowana"
|
"Configuration activated": "Konfiguracja aktywowana"
|
||||||
},
|
},
|
||||||
|
"Configuration will be preserved when this display reconnects": {
|
||||||
|
"Configuration will be preserved when this display reconnects": ""
|
||||||
|
},
|
||||||
"Configure a new printer": {
|
"Configure a new printer": {
|
||||||
"Configure a new printer": "Skonfiguruj nową drukarkę"
|
"Configure a new printer": "Skonfiguruj nową drukarkę"
|
||||||
},
|
},
|
||||||
@@ -710,6 +782,9 @@
|
|||||||
"Control currently playing media": {
|
"Control currently playing media": {
|
||||||
"Control currently playing media": "Steruj aktualnie odtwarzanymi multimediami"
|
"Control currently playing media": "Steruj aktualnie odtwarzanymi multimediami"
|
||||||
},
|
},
|
||||||
|
"Control workspaces and columns by scrolling on the bar": {
|
||||||
|
"Control workspaces and columns by scrolling on the bar": ""
|
||||||
|
},
|
||||||
"Controls opacity of all popouts, modals, and their content layers": {
|
"Controls opacity of all popouts, modals, and their content layers": {
|
||||||
"Controls opacity of all popouts, modals, and their content layers": "Steruje kryciem wszystkich okien pop-up, modów i ich warstw zawartości"
|
"Controls opacity of all popouts, modals, and their content layers": "Steruje kryciem wszystkich okien pop-up, modów i ich warstw zawartości"
|
||||||
},
|
},
|
||||||
@@ -815,6 +890,9 @@
|
|||||||
"Custom Transparency": {
|
"Custom Transparency": {
|
||||||
"Custom Transparency": "Niestandardowa przezroczystość"
|
"Custom Transparency": "Niestandardowa przezroczystość"
|
||||||
},
|
},
|
||||||
|
"Custom...": {
|
||||||
|
"Custom...": ""
|
||||||
|
},
|
||||||
"Custom: ": {
|
"Custom: ": {
|
||||||
"Custom: ": "Niestandardowy: "
|
"Custom: ": "Niestandardowy: "
|
||||||
},
|
},
|
||||||
@@ -896,6 +974,9 @@
|
|||||||
"Default": {
|
"Default": {
|
||||||
"Default": "Domyślne"
|
"Default": "Domyślne"
|
||||||
},
|
},
|
||||||
|
"Default Width (%)": {
|
||||||
|
"Default Width (%)": ""
|
||||||
|
},
|
||||||
"Default selected action": {
|
"Default selected action": {
|
||||||
"Default selected action": "Domyślnie wybrana akcja"
|
"Default selected action": "Domyślnie wybrana akcja"
|
||||||
},
|
},
|
||||||
@@ -923,6 +1004,12 @@
|
|||||||
"Description": {
|
"Description": {
|
||||||
"Description": "Opis"
|
"Description": "Opis"
|
||||||
},
|
},
|
||||||
|
"Desktop Clock": {
|
||||||
|
"Desktop Clock": ""
|
||||||
|
},
|
||||||
|
"Desktop Widgets": {
|
||||||
|
"Desktop Widgets": ""
|
||||||
|
},
|
||||||
"Desktop background images": {
|
"Desktop background images": {
|
||||||
"Desktop background images": "Obrazy tła pulpitu"
|
"Desktop background images": "Obrazy tła pulpitu"
|
||||||
},
|
},
|
||||||
@@ -935,6 +1022,9 @@
|
|||||||
"Device paired": {
|
"Device paired": {
|
||||||
"Device paired": "Urządzenie sparowane"
|
"Device paired": "Urządzenie sparowane"
|
||||||
},
|
},
|
||||||
|
"Digital": {
|
||||||
|
"Digital": ""
|
||||||
|
},
|
||||||
"Disable Autoconnect": {
|
"Disable Autoconnect": {
|
||||||
"Disable Autoconnect": "Wyłącz automatyczne łączenie"
|
"Disable Autoconnect": "Wyłącz automatyczne łączenie"
|
||||||
},
|
},
|
||||||
@@ -947,12 +1037,18 @@
|
|||||||
"Disable History Persistence": {
|
"Disable History Persistence": {
|
||||||
"Disable History Persistence": ""
|
"Disable History Persistence": ""
|
||||||
},
|
},
|
||||||
|
"Disable Output": {
|
||||||
|
"Disable Output": ""
|
||||||
|
},
|
||||||
"Disable clipboard manager entirely (requires restart)": {
|
"Disable clipboard manager entirely (requires restart)": {
|
||||||
"Disable clipboard manager entirely (requires restart)": ""
|
"Disable clipboard manager entirely (requires restart)": ""
|
||||||
},
|
},
|
||||||
"Disabled": {
|
"Disabled": {
|
||||||
"Disabled": "Wyłączony"
|
"Disabled": "Wyłączony"
|
||||||
},
|
},
|
||||||
|
"Discard": {
|
||||||
|
"Discard": ""
|
||||||
|
},
|
||||||
"Disconnect": {
|
"Disconnect": {
|
||||||
"Disconnect": "Rozłącz"
|
"Disconnect": "Rozłącz"
|
||||||
},
|
},
|
||||||
@@ -977,6 +1073,9 @@
|
|||||||
"Display Name Format": {
|
"Display Name Format": {
|
||||||
"Display Name Format": "Format nazwy wyświetlanej"
|
"Display Name Format": "Format nazwy wyświetlanej"
|
||||||
},
|
},
|
||||||
|
"Display Settings": {
|
||||||
|
"Display Settings": ""
|
||||||
|
},
|
||||||
"Display a dock with pinned and running applications": {
|
"Display a dock with pinned and running applications": {
|
||||||
"Display a dock with pinned and running applications": "Wyświetl dok z przypiętymi i uruchomionymi aplikacjami"
|
"Display a dock with pinned and running applications": "Wyświetl dok z przypiętymi i uruchomionymi aplikacjami"
|
||||||
},
|
},
|
||||||
@@ -989,6 +1088,9 @@
|
|||||||
"Display application icons in workspace indicators": {
|
"Display application icons in workspace indicators": {
|
||||||
"Display application icons in workspace indicators": "Wyświetlaj ikony aplikacji we wskaźnikach obszaru roboczego"
|
"Display application icons in workspace indicators": "Wyświetlaj ikony aplikacji we wskaźnikach obszaru roboczego"
|
||||||
},
|
},
|
||||||
|
"Display configuration is not available. WLR output management protocol not supported.": {
|
||||||
|
"Display configuration is not available. WLR output management protocol not supported.": ""
|
||||||
|
},
|
||||||
"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"
|
||||||
},
|
},
|
||||||
@@ -1079,6 +1181,9 @@
|
|||||||
"Empty": {
|
"Empty": {
|
||||||
"Empty": "Pusty"
|
"Empty": "Pusty"
|
||||||
},
|
},
|
||||||
|
"Enable 10-bit color depth for wider color gamut and HDR support": {
|
||||||
|
"Enable 10-bit color depth for wider color gamut and HDR support": ""
|
||||||
|
},
|
||||||
"Enable Autoconnect": {
|
"Enable Autoconnect": {
|
||||||
"Enable Autoconnect": "Włącz automatyczne łączenie"
|
"Enable Autoconnect": "Włącz automatyczne łączenie"
|
||||||
},
|
},
|
||||||
@@ -1088,6 +1193,9 @@
|
|||||||
"Enable Border": {
|
"Enable Border": {
|
||||||
"Enable Border": "Włącz obramowanie"
|
"Enable Border": "Włącz obramowanie"
|
||||||
},
|
},
|
||||||
|
"Enable Desktop Clock": {
|
||||||
|
"Enable Desktop Clock": ""
|
||||||
|
},
|
||||||
"Enable Do Not Disturb": {
|
"Enable Do Not Disturb": {
|
||||||
"Enable Do Not Disturb": "Włącz opcję Nie przeszkadzać"
|
"Enable Do Not Disturb": "Włącz opcję Nie przeszkadzać"
|
||||||
},
|
},
|
||||||
@@ -1097,6 +1205,9 @@
|
|||||||
"Enable Overview Overlay": {
|
"Enable Overview Overlay": {
|
||||||
"Enable Overview Overlay": "Włącz nakładkę przeglądu"
|
"Enable Overview Overlay": "Włącz nakładkę przeglądu"
|
||||||
},
|
},
|
||||||
|
"Enable System Monitor": {
|
||||||
|
"Enable System Monitor": ""
|
||||||
|
},
|
||||||
"Enable System Sounds": {
|
"Enable System Sounds": {
|
||||||
"Enable System Sounds": "Włącz dźwięki systemowe"
|
"Enable System Sounds": "Włącz dźwięki systemowe"
|
||||||
},
|
},
|
||||||
@@ -1187,6 +1298,9 @@
|
|||||||
"Exclusive Zone Offset": {
|
"Exclusive Zone Offset": {
|
||||||
"Exclusive Zone Offset": "Przesunięcie strefy wyłączności"
|
"Exclusive Zone Offset": "Przesunięcie strefy wyłączności"
|
||||||
},
|
},
|
||||||
|
"Experimental Feature": {
|
||||||
|
"Experimental Feature": ""
|
||||||
|
},
|
||||||
"F1/I: Toggle • F10: Help": {
|
"F1/I: Toggle • F10: Help": {
|
||||||
"F1/I: Toggle • F10: Help": "F1/I: Przełącz • F10: Pomoc"
|
"F1/I: Toggle • F10: Help": "F1/I: Przełącz • F10: Pomoc"
|
||||||
},
|
},
|
||||||
@@ -1316,6 +1430,9 @@
|
|||||||
"Failed to update sharing": {
|
"Failed to update sharing": {
|
||||||
"Failed to update sharing": "Nie udało się zaktualizować udostępniania"
|
"Failed to update sharing": "Nie udało się zaktualizować udostępniania"
|
||||||
},
|
},
|
||||||
|
"Failed to write temp file for validation": {
|
||||||
|
"Failed to write temp file for validation": ""
|
||||||
|
},
|
||||||
"Feels Like": {
|
"Feels Like": {
|
||||||
"Feels Like": "Odczuwalna"
|
"Feels Like": "Odczuwalna"
|
||||||
},
|
},
|
||||||
@@ -1349,6 +1466,21 @@
|
|||||||
"Fixing...": {
|
"Fixing...": {
|
||||||
"Fixing...": "Ustalenie..."
|
"Fixing...": "Ustalenie..."
|
||||||
},
|
},
|
||||||
|
"Flipped": {
|
||||||
|
"Flipped": ""
|
||||||
|
},
|
||||||
|
"Flipped 180°": {
|
||||||
|
"Flipped 180°": ""
|
||||||
|
},
|
||||||
|
"Flipped 270°": {
|
||||||
|
"Flipped 270°": ""
|
||||||
|
},
|
||||||
|
"Flipped 90°": {
|
||||||
|
"Flipped 90°": ""
|
||||||
|
},
|
||||||
|
"Focus at Startup": {
|
||||||
|
"Focus at Startup": ""
|
||||||
|
},
|
||||||
"Focused Window": {
|
"Focused Window": {
|
||||||
"Focused Window": "Aktywne okno"
|
"Focused Window": "Aktywne okno"
|
||||||
},
|
},
|
||||||
@@ -1367,9 +1499,15 @@
|
|||||||
"Font Weight": {
|
"Font Weight": {
|
||||||
"Font Weight": "Grubość czcionki"
|
"Font Weight": "Grubość czcionki"
|
||||||
},
|
},
|
||||||
|
"Force HDR": {
|
||||||
|
"Force HDR": ""
|
||||||
|
},
|
||||||
"Force Kill Process": {
|
"Force Kill Process": {
|
||||||
"Force Kill Process": "Wymuś zamknięcie procesu"
|
"Force Kill Process": "Wymuś zamknięcie procesu"
|
||||||
},
|
},
|
||||||
|
"Force Wide Color": {
|
||||||
|
"Force Wide Color": ""
|
||||||
|
},
|
||||||
"Force terminal applications to always use dark color schemes": {
|
"Force terminal applications to always use dark color schemes": {
|
||||||
"Force terminal applications to always use dark color schemes": "Wymuś ciemny motyw na aplikacjach terminala"
|
"Force terminal applications to always use dark color schemes": "Wymuś ciemny motyw na aplikacjach terminala"
|
||||||
},
|
},
|
||||||
@@ -1433,6 +1571,9 @@
|
|||||||
"Gradually fade the screen before locking with a configurable grace period": {
|
"Gradually fade the screen before locking with a configurable grace period": {
|
||||||
"Gradually fade the screen before locking with a configurable grace period": "Stopniowe wygaszanie ekranu przed zablokowaniem z konfigurowalnym czasem opóźnienia"
|
"Gradually fade the screen before locking with a configurable grace period": "Stopniowe wygaszanie ekranu przed zablokowaniem z konfigurowalnym czasem opóźnienia"
|
||||||
},
|
},
|
||||||
|
"Graph Time Range": {
|
||||||
|
"Graph Time Range": ""
|
||||||
|
},
|
||||||
"Graphics": {
|
"Graphics": {
|
||||||
"Graphics": "Grafika"
|
"Graphics": "Grafika"
|
||||||
},
|
},
|
||||||
@@ -1448,6 +1589,15 @@
|
|||||||
"Group multiple windows of the same app together with a window count indicator": {
|
"Group multiple windows of the same app together with a window count indicator": {
|
||||||
"Group multiple windows of the same app together with a window count indicator": "Grupuj wiele okien tej samej aplikacji ze wskaźnikiem liczby okien"
|
"Group multiple windows of the same app together with a window count indicator": "Grupuj wiele okien tej samej aplikacji ze wskaźnikiem liczby okien"
|
||||||
},
|
},
|
||||||
|
"HDR (EDID)": {
|
||||||
|
"HDR (EDID)": ""
|
||||||
|
},
|
||||||
|
"HDR Tone Mapping": {
|
||||||
|
"HDR Tone Mapping": ""
|
||||||
|
},
|
||||||
|
"HDR mode is experimental. Verify your monitor supports HDR before enabling.": {
|
||||||
|
"HDR mode is experimental. Verify your monitor supports HDR before enabling.": ""
|
||||||
|
},
|
||||||
"HSV": {
|
"HSV": {
|
||||||
"HSV": "HSV"
|
"HSV": "HSV"
|
||||||
},
|
},
|
||||||
@@ -1457,6 +1607,9 @@
|
|||||||
"Held": {
|
"Held": {
|
||||||
"Held": "Wstrzymane"
|
"Held": "Wstrzymane"
|
||||||
},
|
},
|
||||||
|
"Help": {
|
||||||
|
"Help": ""
|
||||||
|
},
|
||||||
"Hex": {
|
"Hex": {
|
||||||
"Hex": "Klątwa"
|
"Hex": "Klątwa"
|
||||||
},
|
},
|
||||||
@@ -1496,6 +1649,9 @@
|
|||||||
"Hold to confirm (%1s)": {
|
"Hold to confirm (%1s)": {
|
||||||
"Hold to confirm (%1s)": "Przytrzymaj, aby potwierdzić (%1s)"
|
"Hold to confirm (%1s)": "Przytrzymaj, aby potwierdzić (%1s)"
|
||||||
},
|
},
|
||||||
|
"Hot Corners": {
|
||||||
|
"Hot Corners": ""
|
||||||
|
},
|
||||||
"Hotkey overlay title (optional)": {
|
"Hotkey overlay title (optional)": {
|
||||||
"Hotkey overlay title (optional)": "Tytuł nakładki skrótu klawiszowego (opcjonalnie)"
|
"Hotkey overlay title (optional)": "Tytuł nakładki skrótu klawiszowego (opcjonalnie)"
|
||||||
},
|
},
|
||||||
@@ -1565,6 +1721,9 @@
|
|||||||
"Include Transitions": {
|
"Include Transitions": {
|
||||||
"Include Transitions": "Uwzględnij przejścia"
|
"Include Transitions": "Uwzględnij przejścia"
|
||||||
},
|
},
|
||||||
|
"Incompatible Plugins Loaded": {
|
||||||
|
"Incompatible Plugins Loaded": ""
|
||||||
|
},
|
||||||
"Incorrect password": {
|
"Incorrect password": {
|
||||||
"Incorrect password": "Niepoprawne hasło"
|
"Incorrect password": "Niepoprawne hasło"
|
||||||
},
|
},
|
||||||
@@ -1577,6 +1736,9 @@
|
|||||||
"Individual bar configuration": {
|
"Individual bar configuration": {
|
||||||
"Individual bar configuration": "Indywidualna konfiguracja paska"
|
"Individual bar configuration": "Indywidualna konfiguracja paska"
|
||||||
},
|
},
|
||||||
|
"Inherit": {
|
||||||
|
"Inherit": ""
|
||||||
|
},
|
||||||
"Inhibit idle timeout when audio or video is playing": {
|
"Inhibit idle timeout when audio or video is playing": {
|
||||||
"Inhibit idle timeout when audio or video is playing": "Blokuj limit czasu bezczynności podczas odtwarzania dźwięku lub obrazu"
|
"Inhibit idle timeout when audio or video is playing": "Blokuj limit czasu bezczynności podczas odtwarzania dźwięku lub obrazu"
|
||||||
},
|
},
|
||||||
@@ -1598,6 +1760,9 @@
|
|||||||
"Interval": {
|
"Interval": {
|
||||||
"Interval": "Interwał"
|
"Interval": "Interwał"
|
||||||
},
|
},
|
||||||
|
"Invalid configuration": {
|
||||||
|
"Invalid configuration": ""
|
||||||
|
},
|
||||||
"Invert on mode change": {
|
"Invert on mode change": {
|
||||||
"Invert on mode change": "Odwróć przy zmianie trybu"
|
"Invert on mode change": "Odwróć przy zmianie trybu"
|
||||||
},
|
},
|
||||||
@@ -1670,6 +1835,9 @@
|
|||||||
"Layout": {
|
"Layout": {
|
||||||
"Layout": "Układ"
|
"Layout": "Układ"
|
||||||
},
|
},
|
||||||
|
"Layout Overrides": {
|
||||||
|
"Layout Overrides": ""
|
||||||
|
},
|
||||||
"Left": {
|
"Left": {
|
||||||
"Left": "Lewa"
|
"Left": "Lewa"
|
||||||
},
|
},
|
||||||
@@ -1682,6 +1850,9 @@
|
|||||||
"Lines: %1": {
|
"Lines: %1": {
|
||||||
"Lines: %1": "Linie: %1"
|
"Lines: %1": "Linie: %1"
|
||||||
},
|
},
|
||||||
|
"List": {
|
||||||
|
"List": ""
|
||||||
|
},
|
||||||
"Lively palette with saturated accents.": {
|
"Lively palette with saturated accents.": {
|
||||||
"Lively palette with saturated accents.": "Żywa paleta z nasyconymi akcentami."
|
"Lively palette with saturated accents.": "Żywa paleta z nasyconymi akcentami."
|
||||||
},
|
},
|
||||||
@@ -1847,6 +2018,9 @@
|
|||||||
"Memory": {
|
"Memory": {
|
||||||
"Memory": "Pamięć"
|
"Memory": "Pamięć"
|
||||||
},
|
},
|
||||||
|
"Memory Graph": {
|
||||||
|
"Memory Graph": ""
|
||||||
|
},
|
||||||
"Memory Usage": {
|
"Memory Usage": {
|
||||||
"Memory Usage": "Użycie pamięci"
|
"Memory Usage": "Użycie pamięci"
|
||||||
},
|
},
|
||||||
@@ -1883,6 +2057,12 @@
|
|||||||
"Model": {
|
"Model": {
|
||||||
"Model": "Model"
|
"Model": "Model"
|
||||||
},
|
},
|
||||||
|
"Modified": {
|
||||||
|
"Modified": ""
|
||||||
|
},
|
||||||
|
"Monitor Configuration": {
|
||||||
|
"Monitor Configuration": ""
|
||||||
|
},
|
||||||
"Monitor whose wallpaper drives dynamic theming colors": {
|
"Monitor whose wallpaper drives dynamic theming colors": {
|
||||||
"Monitor whose wallpaper drives dynamic theming colors": "Monitor, którego tapeta steruje dynamicznymi kolorami motywu"
|
"Monitor whose wallpaper drives dynamic theming colors": "Monitor, którego tapeta steruje dynamicznymi kolorami motywu"
|
||||||
},
|
},
|
||||||
@@ -1898,6 +2078,9 @@
|
|||||||
"Mount": {
|
"Mount": {
|
||||||
"Mount": "Zamontuj"
|
"Mount": "Zamontuj"
|
||||||
},
|
},
|
||||||
|
"Move Widget": {
|
||||||
|
"Move Widget": ""
|
||||||
|
},
|
||||||
"Moving to Paused": {
|
"Moving to Paused": {
|
||||||
"Moving to Paused": "Przechodzenie w stan wstrzymania"
|
"Moving to Paused": "Przechodzenie w stan wstrzymania"
|
||||||
},
|
},
|
||||||
@@ -1919,6 +2102,9 @@
|
|||||||
"Network": {
|
"Network": {
|
||||||
"Network": "Sieć"
|
"Network": "Sieć"
|
||||||
},
|
},
|
||||||
|
"Network Graph": {
|
||||||
|
"Network Graph": ""
|
||||||
|
},
|
||||||
"Network Info": {
|
"Network Info": {
|
||||||
"Network Info": "Informacje o sieci"
|
"Network Info": "Informacje o sieci"
|
||||||
},
|
},
|
||||||
@@ -2015,6 +2201,9 @@
|
|||||||
"No drivers found": {
|
"No drivers found": {
|
||||||
"No drivers found": "Nie znaleziono sterowników"
|
"No drivers found": "Nie znaleziono sterowników"
|
||||||
},
|
},
|
||||||
|
"No features enabled": {
|
||||||
|
"No features enabled": ""
|
||||||
|
},
|
||||||
"No files found": {
|
"No files found": {
|
||||||
"No files found": "Nie znaleziono plików"
|
"No files found": "Nie znaleziono plików"
|
||||||
},
|
},
|
||||||
@@ -2042,9 +2231,15 @@
|
|||||||
"No printers found": {
|
"No printers found": {
|
||||||
"No printers found": "Nie znaleziono drukarek"
|
"No printers found": "Nie znaleziono drukarek"
|
||||||
},
|
},
|
||||||
|
"No variants created. Click Add to create a new monitor widget.": {
|
||||||
|
"No variants created. Click Add to create a new monitor widget.": ""
|
||||||
|
},
|
||||||
"None": {
|
"None": {
|
||||||
"None": "Brak"
|
"None": "Brak"
|
||||||
},
|
},
|
||||||
|
"Normal": {
|
||||||
|
"Normal": ""
|
||||||
|
},
|
||||||
"Normal Font": {
|
"Normal Font": {
|
||||||
"Normal Font": "Czcionka normalna"
|
"Normal Font": "Czcionka normalna"
|
||||||
},
|
},
|
||||||
@@ -2096,6 +2291,9 @@
|
|||||||
"OSD Position": {
|
"OSD Position": {
|
||||||
"OSD Position": "Pozycja OSD"
|
"OSD Position": "Pozycja OSD"
|
||||||
},
|
},
|
||||||
|
"Off": {
|
||||||
|
"Off": ""
|
||||||
|
},
|
||||||
"Office": {
|
"Office": {
|
||||||
"Office": "Biuro"
|
"Office": "Biuro"
|
||||||
},
|
},
|
||||||
@@ -2159,12 +2357,18 @@
|
|||||||
"Output Tray Missing": {
|
"Output Tray Missing": {
|
||||||
"Output Tray Missing": "Brak tacy wyjściowej"
|
"Output Tray Missing": "Brak tacy wyjściowej"
|
||||||
},
|
},
|
||||||
|
"Outputs Include Missing": {
|
||||||
|
"Outputs Include Missing": ""
|
||||||
|
},
|
||||||
"Overridden by config": {
|
"Overridden by config": {
|
||||||
"Overridden by config": "Nadpisane przez konfigurację"
|
"Overridden by config": "Nadpisane przez konfigurację"
|
||||||
},
|
},
|
||||||
"Override": {
|
"Override": {
|
||||||
"Override": "Prześcigać"
|
"Override": "Prześcigać"
|
||||||
},
|
},
|
||||||
|
"Override global layout settings for this output": {
|
||||||
|
"Override global layout settings for this output": ""
|
||||||
|
},
|
||||||
"Overrides": {
|
"Overrides": {
|
||||||
"Overrides": "Nadpisuje"
|
"Overrides": "Nadpisuje"
|
||||||
},
|
},
|
||||||
@@ -2324,6 +2528,9 @@
|
|||||||
"Preference": {
|
"Preference": {
|
||||||
"Preference": "Ustawienie"
|
"Preference": "Ustawienie"
|
||||||
},
|
},
|
||||||
|
"Preset Widths (%)": {
|
||||||
|
"Preset Widths (%)": ""
|
||||||
|
},
|
||||||
"Press key...": {
|
"Press key...": {
|
||||||
"Press key...": "Naciśnij klawisz..."
|
"Press key...": "Naciśnij klawisz..."
|
||||||
},
|
},
|
||||||
@@ -2372,6 +2579,9 @@
|
|||||||
"Process": {
|
"Process": {
|
||||||
"Process": "Proces"
|
"Process": "Proces"
|
||||||
},
|
},
|
||||||
|
"Process Count": {
|
||||||
|
"Process Count": ""
|
||||||
|
},
|
||||||
"Processing": {
|
"Processing": {
|
||||||
"Processing": "Przetwarzanie"
|
"Processing": "Przetwarzanie"
|
||||||
},
|
},
|
||||||
@@ -2447,12 +2657,27 @@
|
|||||||
"Require holding button/key to confirm power off, restart, suspend, hibernate and logout": {
|
"Require holding button/key to confirm power off, restart, suspend, hibernate and logout": {
|
||||||
"Require holding button/key to confirm power off, restart, suspend, hibernate and logout": "Wymagaj przytrzymania przycisku/klawisza, aby potwierdzić wyłączenie, ponowne uruchomienie, wstrzymanie, hibernację i wylogowanie"
|
"Require holding button/key to confirm power off, restart, suspend, hibernate and logout": "Wymagaj przytrzymania przycisku/klawisza, aby potwierdzić wyłączenie, ponowne uruchomienie, wstrzymanie, hibernację i wylogowanie"
|
||||||
},
|
},
|
||||||
|
"Requires DMS": {
|
||||||
|
"Requires DMS": ""
|
||||||
|
},
|
||||||
"Requires DWL compositor": {
|
"Requires DWL compositor": {
|
||||||
"Requires DWL compositor": "Wymaga kompozytora DWL"
|
"Requires DWL compositor": "Wymaga kompozytora DWL"
|
||||||
},
|
},
|
||||||
"Reset": {
|
"Reset": {
|
||||||
"Reset": "Resetuj"
|
"Reset": "Resetuj"
|
||||||
},
|
},
|
||||||
|
"Reset Position": {
|
||||||
|
"Reset Position": ""
|
||||||
|
},
|
||||||
|
"Reset Size": {
|
||||||
|
"Reset Size": ""
|
||||||
|
},
|
||||||
|
"Resize Widget": {
|
||||||
|
"Resize Widget": ""
|
||||||
|
},
|
||||||
|
"Resolution & Refresh": {
|
||||||
|
"Resolution & Refresh": ""
|
||||||
|
},
|
||||||
"Resources": {
|
"Resources": {
|
||||||
"Resources": "Źródła"
|
"Resources": "Źródła"
|
||||||
},
|
},
|
||||||
@@ -2483,6 +2708,12 @@
|
|||||||
"Right Tiling": {
|
"Right Tiling": {
|
||||||
"Right Tiling": "Prawe kafelkowanie"
|
"Right Tiling": "Prawe kafelkowanie"
|
||||||
},
|
},
|
||||||
|
"Right-click and drag anywhere on the widget": {
|
||||||
|
"Right-click and drag anywhere on the widget": ""
|
||||||
|
},
|
||||||
|
"Right-click and drag the bottom-right corner": {
|
||||||
|
"Right-click and drag the bottom-right corner": ""
|
||||||
|
},
|
||||||
"Right-click bar widget to cycle": {
|
"Right-click bar widget to cycle": {
|
||||||
"Right-click bar widget to cycle": "Kliknij prawym przyciskiem myszy pasek widżetu, aby przejść do następnego"
|
"Right-click bar widget to cycle": "Kliknij prawym przyciskiem myszy pasek widżetu, aby przejść do następnego"
|
||||||
},
|
},
|
||||||
@@ -2507,6 +2738,12 @@
|
|||||||
"Running Apps Settings": {
|
"Running Apps Settings": {
|
||||||
"Running Apps Settings": "Ustawienia uruchomionych aplikacji"
|
"Running Apps Settings": "Ustawienia uruchomionych aplikacji"
|
||||||
},
|
},
|
||||||
|
"SDR Brightness": {
|
||||||
|
"SDR Brightness": ""
|
||||||
|
},
|
||||||
|
"SDR Saturation": {
|
||||||
|
"SDR Saturation": ""
|
||||||
|
},
|
||||||
"Save": {
|
"Save": {
|
||||||
"Save": "Zapisz"
|
"Save": "Zapisz"
|
||||||
},
|
},
|
||||||
@@ -2522,6 +2759,9 @@
|
|||||||
"Saved Configurations": {
|
"Saved Configurations": {
|
||||||
"Saved Configurations": "Zapisane konfiguracje"
|
"Saved Configurations": "Zapisane konfiguracje"
|
||||||
},
|
},
|
||||||
|
"Scale": {
|
||||||
|
"Scale": ""
|
||||||
|
},
|
||||||
"Scale DankBar font sizes independently": {
|
"Scale DankBar font sizes independently": {
|
||||||
"Scale DankBar font sizes independently": "Skaluj rozmiary czcionek DankBar niezależnie"
|
"Scale DankBar font sizes independently": "Skaluj rozmiary czcionek DankBar niezależnie"
|
||||||
},
|
},
|
||||||
@@ -2540,6 +2780,9 @@
|
|||||||
"Screen sharing": {
|
"Screen sharing": {
|
||||||
"Screen sharing": "Udostępnianie ekranu"
|
"Screen sharing": "Udostępnianie ekranu"
|
||||||
},
|
},
|
||||||
|
"Scroll Wheel": {
|
||||||
|
"Scroll Wheel": ""
|
||||||
|
},
|
||||||
"Scroll song title": {
|
"Scroll song title": {
|
||||||
"Scroll song title": "Przewiń tytuł piosenki"
|
"Scroll song title": "Przewiń tytuł piosenki"
|
||||||
},
|
},
|
||||||
@@ -2570,6 +2813,9 @@
|
|||||||
"Searching...": {
|
"Searching...": {
|
||||||
"Searching...": "Wyszukiwanie..."
|
"Searching...": "Wyszukiwanie..."
|
||||||
},
|
},
|
||||||
|
"Secondary": {
|
||||||
|
"Secondary": ""
|
||||||
|
},
|
||||||
"Secured": {
|
"Secured": {
|
||||||
"Secured": "Zabezpieczona"
|
"Secured": "Zabezpieczona"
|
||||||
},
|
},
|
||||||
@@ -2666,15 +2912,39 @@
|
|||||||
"Show All Tags": {
|
"Show All Tags": {
|
||||||
"Show All Tags": "Pokaż wszystkie tagi"
|
"Show All Tags": "Pokaż wszystkie tagi"
|
||||||
},
|
},
|
||||||
|
"Show CPU": {
|
||||||
|
"Show CPU": ""
|
||||||
|
},
|
||||||
|
"Show CPU Graph": {
|
||||||
|
"Show CPU Graph": ""
|
||||||
|
},
|
||||||
|
"Show CPU Temp": {
|
||||||
|
"Show CPU Temp": ""
|
||||||
|
},
|
||||||
"Show Confirmation on Power Actions": {
|
"Show Confirmation on Power Actions": {
|
||||||
"Show Confirmation on Power Actions": "Pokaż potwierdzenie dla akcji zasilania"
|
"Show Confirmation on Power Actions": "Pokaż potwierdzenie dla akcji zasilania"
|
||||||
},
|
},
|
||||||
|
"Show Date": {
|
||||||
|
"Show Date": ""
|
||||||
|
},
|
||||||
|
"Show Disk": {
|
||||||
|
"Show Disk": ""
|
||||||
|
},
|
||||||
"Show Dock": {
|
"Show Dock": {
|
||||||
"Show Dock": "Pokaż dok"
|
"Show Dock": "Pokaż dok"
|
||||||
},
|
},
|
||||||
|
"Show GPU Temperature": {
|
||||||
|
"Show GPU Temperature": ""
|
||||||
|
},
|
||||||
|
"Show Header": {
|
||||||
|
"Show Header": ""
|
||||||
|
},
|
||||||
"Show Hibernate": {
|
"Show Hibernate": {
|
||||||
"Show Hibernate": "Pokaż hibernację"
|
"Show Hibernate": "Pokaż hibernację"
|
||||||
},
|
},
|
||||||
|
"Show Hour Numbers": {
|
||||||
|
"Show Hour Numbers": ""
|
||||||
|
},
|
||||||
"Show Line Numbers": {
|
"Show Line Numbers": {
|
||||||
"Show Line Numbers": "Pokaż numery wierszy"
|
"Show Line Numbers": "Pokaż numery wierszy"
|
||||||
},
|
},
|
||||||
@@ -2684,6 +2954,18 @@
|
|||||||
"Show Log Out": {
|
"Show Log Out": {
|
||||||
"Show Log Out": "Pokaż wylogowanie"
|
"Show Log Out": "Pokaż wylogowanie"
|
||||||
},
|
},
|
||||||
|
"Show Memory": {
|
||||||
|
"Show Memory": ""
|
||||||
|
},
|
||||||
|
"Show Memory Graph": {
|
||||||
|
"Show Memory Graph": ""
|
||||||
|
},
|
||||||
|
"Show Network": {
|
||||||
|
"Show Network": ""
|
||||||
|
},
|
||||||
|
"Show Network Graph": {
|
||||||
|
"Show Network Graph": ""
|
||||||
|
},
|
||||||
"Show Occupied Workspaces Only": {
|
"Show Occupied Workspaces Only": {
|
||||||
"Show Occupied Workspaces Only": "Pokaż tylko zajęte obszary robocze"
|
"Show Occupied Workspaces Only": "Pokaż tylko zajęte obszary robocze"
|
||||||
},
|
},
|
||||||
@@ -2705,6 +2987,9 @@
|
|||||||
"Show Suspend": {
|
"Show Suspend": {
|
||||||
"Show Suspend": "Pokaż wstrzymanie"
|
"Show Suspend": "Pokaż wstrzymanie"
|
||||||
},
|
},
|
||||||
|
"Show Top Processes": {
|
||||||
|
"Show Top Processes": ""
|
||||||
|
},
|
||||||
"Show Workspace Apps": {
|
"Show Workspace Apps": {
|
||||||
"Show Workspace Apps": "Pokaż aplikacje z obszaru roboczego"
|
"Show Workspace Apps": "Pokaż aplikacje z obszaru roboczego"
|
||||||
},
|
},
|
||||||
@@ -2807,9 +3092,15 @@
|
|||||||
"Sizing": {
|
"Sizing": {
|
||||||
"Sizing": "Rozmiarowanie"
|
"Sizing": "Rozmiarowanie"
|
||||||
},
|
},
|
||||||
|
"Some plugins require a newer version of DMS:": {
|
||||||
|
"Some plugins require a newer version of DMS:": ""
|
||||||
|
},
|
||||||
"Sort Alphabetically": {
|
"Sort Alphabetically": {
|
||||||
"Sort Alphabetically": "Sortuj alfabetycznie"
|
"Sort Alphabetically": "Sortuj alfabetycznie"
|
||||||
},
|
},
|
||||||
|
"Sort By": {
|
||||||
|
"Sort By": ""
|
||||||
|
},
|
||||||
"Sorting & Layout": {
|
"Sorting & Layout": {
|
||||||
"Sorting & Layout": "Sortowanie i układ"
|
"Sorting & Layout": "Sortowanie i układ"
|
||||||
},
|
},
|
||||||
@@ -2834,6 +3125,9 @@
|
|||||||
"Square Corners": {
|
"Square Corners": {
|
||||||
"Square Corners": "Kwadratowe rogi"
|
"Square Corners": "Kwadratowe rogi"
|
||||||
},
|
},
|
||||||
|
"Stacked": {
|
||||||
|
"Stacked": ""
|
||||||
|
},
|
||||||
"Start": {
|
"Start": {
|
||||||
"Start": "Start"
|
"Start": "Start"
|
||||||
},
|
},
|
||||||
@@ -3053,12 +3347,24 @@
|
|||||||
"Top Bar Format": {
|
"Top Bar Format": {
|
||||||
"Top Bar Format": "Format górnego paska"
|
"Top Bar Format": "Format górnego paska"
|
||||||
},
|
},
|
||||||
|
"Top Left": {
|
||||||
|
"Top Left": ""
|
||||||
|
},
|
||||||
|
"Top Processes": {
|
||||||
|
"Top Processes": ""
|
||||||
|
},
|
||||||
|
"Top Right": {
|
||||||
|
"Top Right": ""
|
||||||
|
},
|
||||||
"Top Section": {
|
"Top Section": {
|
||||||
"Top Section": "Górna sekcja"
|
"Top Section": "Górna sekcja"
|
||||||
},
|
},
|
||||||
"Total Jobs": {
|
"Total Jobs": {
|
||||||
"Total Jobs": "Suma zadań"
|
"Total Jobs": "Suma zadań"
|
||||||
},
|
},
|
||||||
|
"Transform": {
|
||||||
|
"Transform": ""
|
||||||
|
},
|
||||||
"Transition Effect": {
|
"Transition Effect": {
|
||||||
"Transition Effect": "Efekt przejścia"
|
"Transition Effect": "Efekt przejścia"
|
||||||
},
|
},
|
||||||
@@ -3075,7 +3381,7 @@
|
|||||||
"Typography": "Typografia"
|
"Typography": "Typografia"
|
||||||
},
|
},
|
||||||
"Typography & Motion": {
|
"Typography & Motion": {
|
||||||
"Typography & Motion": "Typografia i ruch"
|
"Typography & Motion": "Czcionki i Animacje"
|
||||||
},
|
},
|
||||||
"Unavailable": {
|
"Unavailable": {
|
||||||
"Unavailable": "Niedostępny"
|
"Unavailable": "Niedostępny"
|
||||||
@@ -3182,9 +3488,27 @@
|
|||||||
"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": ""
|
||||||
|
},
|
||||||
|
"VRR On-Demand": {
|
||||||
|
"VRR On-Demand": ""
|
||||||
|
},
|
||||||
|
"VRR activates only when applications request it": {
|
||||||
|
"VRR activates only when applications request it": ""
|
||||||
|
},
|
||||||
"VRR: ": {
|
"VRR: ": {
|
||||||
"VRR: ": "VRR: "
|
"VRR: ": "VRR: "
|
||||||
},
|
},
|
||||||
|
"Variable Refresh Rate": {
|
||||||
|
"Variable Refresh Rate": ""
|
||||||
|
},
|
||||||
|
"Variant created - expand to configure": {
|
||||||
|
"Variant created - expand to configure": ""
|
||||||
|
},
|
||||||
|
"Variant removed": {
|
||||||
|
"Variant removed": ""
|
||||||
|
},
|
||||||
"Version": {
|
"Version": {
|
||||||
"Version": "Wersja"
|
"Version": "Wersja"
|
||||||
},
|
},
|
||||||
@@ -3260,6 +3584,10 @@
|
|||||||
"When enabled, shows the launcher overlay when typing in Niri overview mode. Disable this if you prefer to not have the launcher when typing on Niri overview or want to use other launcher in the overview.": {
|
"When enabled, shows the launcher overlay when typing in Niri overview mode. Disable this if you prefer to not have the launcher when typing on Niri overview or want to use other launcher in the overview.": {
|
||||||
"When enabled, shows the launcher overlay when typing in Niri overview mode. Disable this if you prefer to not have the launcher when typing on Niri overview or want to use other launcher in the overview.": "Po włączeniu wyświetla nakładkę programu uruchamiającego podczas pisania w trybie przeglądu Niri. Wyłącz tę opcję, jeśli wolisz nie wyświetlać programu uruchamiającego podczas pisania w trybie przeglądu Niri lub chcesz używać innego programu uruchamiającego w tym trybie."
|
"When enabled, shows the launcher overlay when typing in Niri overview mode. Disable this if you prefer to not have the launcher when typing on Niri overview or want to use other launcher in the overview.": "Po włączeniu wyświetla nakładkę programu uruchamiającego podczas pisania w trybie przeglądu Niri. Wyłącz tę opcję, jeśli wolisz nie wyświetlać programu uruchamiającego podczas pisania w trybie przeglądu Niri lub chcesz używać innego programu uruchamiającego w tym trybie."
|
||||||
},
|
},
|
||||||
|
"When updater widget is used, then hide it if no update found": {
|
||||||
|
"Hide Updater Widget": "",
|
||||||
|
"When updater widget is used, then hide it if no update found": ""
|
||||||
|
},
|
||||||
"Wi-Fi Password": {
|
"Wi-Fi Password": {
|
||||||
"Wi-Fi Password": "Hasło Wi-Fi"
|
"Wi-Fi Password": "Hasło Wi-Fi"
|
||||||
},
|
},
|
||||||
@@ -3278,6 +3606,9 @@
|
|||||||
"WiFi is off": {
|
"WiFi is off": {
|
||||||
"WiFi is off": "WiFi jest wyłączone"
|
"WiFi is off": "WiFi jest wyłączone"
|
||||||
},
|
},
|
||||||
|
"Wide (BT2020)": {
|
||||||
|
"Wide (BT2020)": ""
|
||||||
|
},
|
||||||
"Widget Background Color": {
|
"Widget Background Color": {
|
||||||
"Widget Background Color": "Kolor tła widżetu"
|
"Widget Background Color": "Kolor tła widżetu"
|
||||||
},
|
},
|
||||||
@@ -3296,6 +3627,9 @@
|
|||||||
"Widget Transparency": {
|
"Widget Transparency": {
|
||||||
"Widget Transparency": "Przezroczystość widżetu"
|
"Widget Transparency": "Przezroczystość widżetu"
|
||||||
},
|
},
|
||||||
|
"Widget Variants": {
|
||||||
|
"Widget Variants": ""
|
||||||
|
},
|
||||||
"Widgets": {
|
"Widgets": {
|
||||||
"Widgets": "Widżety"
|
"Widgets": "Widżety"
|
||||||
},
|
},
|
||||||
@@ -3305,6 +3639,9 @@
|
|||||||
"Wind Speed": {
|
"Wind Speed": {
|
||||||
"Wind Speed": "Prędkość wiatru"
|
"Wind Speed": "Prędkość wiatru"
|
||||||
},
|
},
|
||||||
|
"Window Gaps (px)": {
|
||||||
|
"Window Gaps (px)": ""
|
||||||
|
},
|
||||||
"Workspace": {
|
"Workspace": {
|
||||||
"Workspace": "Obszar roboczy"
|
"Workspace": "Obszar roboczy"
|
||||||
},
|
},
|
||||||
@@ -3326,6 +3663,12 @@
|
|||||||
"Workspaces & Widgets": {
|
"Workspaces & Widgets": {
|
||||||
"Workspaces & Widgets": "Obszary robocze i widżety"
|
"Workspaces & Widgets": "Obszary robocze i widżety"
|
||||||
},
|
},
|
||||||
|
"X Axis": {
|
||||||
|
"X Axis": ""
|
||||||
|
},
|
||||||
|
"Y Axis": {
|
||||||
|
"Y Axis": ""
|
||||||
|
},
|
||||||
"Yes": {
|
"Yes": {
|
||||||
"Yes": "Tak"
|
"Yes": "Tak"
|
||||||
},
|
},
|
||||||
@@ -3398,6 +3741,9 @@
|
|||||||
"settings window title": {
|
"settings window title": {
|
||||||
"Settings": "Ustawienia"
|
"Settings": "Ustawienia"
|
||||||
},
|
},
|
||||||
|
"settings_displays": {
|
||||||
|
"Widgets": ""
|
||||||
|
},
|
||||||
"sysmon window title": {
|
"sysmon window title": {
|
||||||
"System Monitor": "Monitor systemu"
|
"System Monitor": "Monitor systemu"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -50,12 +50,18 @@
|
|||||||
"10 seconds": {
|
"10 seconds": {
|
||||||
"10 seconds": ""
|
"10 seconds": ""
|
||||||
},
|
},
|
||||||
|
"10-bit Color": {
|
||||||
|
"10-bit Color": ""
|
||||||
|
},
|
||||||
"14 days": {
|
"14 days": {
|
||||||
"14 days": ""
|
"14 days": ""
|
||||||
},
|
},
|
||||||
"15 seconds": {
|
"15 seconds": {
|
||||||
"15 seconds": ""
|
"15 seconds": ""
|
||||||
},
|
},
|
||||||
|
"180°": {
|
||||||
|
"180°": ""
|
||||||
|
},
|
||||||
"2 minutes": {
|
"2 minutes": {
|
||||||
"2 minutes": ""
|
"2 minutes": ""
|
||||||
},
|
},
|
||||||
@@ -65,6 +71,9 @@
|
|||||||
"24-hour format": {
|
"24-hour format": {
|
||||||
"24-hour format": "formato de 24 horas"
|
"24-hour format": "formato de 24 horas"
|
||||||
},
|
},
|
||||||
|
"270°": {
|
||||||
|
"270°": ""
|
||||||
|
},
|
||||||
"3 days": {
|
"3 days": {
|
||||||
"3 days": ""
|
"3 days": ""
|
||||||
},
|
},
|
||||||
@@ -95,6 +104,9 @@
|
|||||||
"90 days": {
|
"90 days": {
|
||||||
"90 days": ""
|
"90 days": ""
|
||||||
},
|
},
|
||||||
|
"90°": {
|
||||||
|
"90°": ""
|
||||||
|
},
|
||||||
"A file with this name already exists. Do you want to overwrite it?": {
|
"A file with this name already exists. Do you want to overwrite it?": {
|
||||||
"A file with this name already exists. Do you want to overwrite it?": "Um arquivo com esse nome já existe. Você quer sobrescrevê-lo?"
|
"A file with this name already exists. Do you want to overwrite it?": "Um arquivo com esse nome já existe. Você quer sobrescrevê-lo?"
|
||||||
},
|
},
|
||||||
@@ -200,6 +212,9 @@
|
|||||||
"Amount": {
|
"Amount": {
|
||||||
"Amount": ""
|
"Amount": ""
|
||||||
},
|
},
|
||||||
|
"Analog": {
|
||||||
|
"Analog": ""
|
||||||
|
},
|
||||||
"Animation Speed": {
|
"Animation Speed": {
|
||||||
"Animation Speed": "Velocidade de Animação"
|
"Animation Speed": "Velocidade de Animação"
|
||||||
},
|
},
|
||||||
@@ -218,6 +233,9 @@
|
|||||||
"Applications": {
|
"Applications": {
|
||||||
"Applications": "Aplicativos"
|
"Applications": "Aplicativos"
|
||||||
},
|
},
|
||||||
|
"Apply Changes": {
|
||||||
|
"Apply Changes": ""
|
||||||
|
},
|
||||||
"Apply GTK Colors": {
|
"Apply GTK Colors": {
|
||||||
"Apply GTK Colors": "Aplicar cores no GTK"
|
"Apply GTK Colors": "Aplicar cores no GTK"
|
||||||
},
|
},
|
||||||
@@ -233,6 +251,9 @@
|
|||||||
"Apps are ordered by usage frequency, then last used, then alphabetically.": {
|
"Apps are ordered by usage frequency, then last used, then alphabetically.": {
|
||||||
"Apps are ordered by usage frequency, then last used, then alphabetically.": "Os aplicativos são ordenados por frequência de uso, mais recentes, e por último, alfabéticamente."
|
"Apps are ordered by usage frequency, then last used, then alphabetically.": "Os aplicativos são ordenados por frequência de uso, mais recentes, e por último, alfabéticamente."
|
||||||
},
|
},
|
||||||
|
"Arrange displays and configure resolution, refresh rate, and VRR": {
|
||||||
|
"Arrange displays and configure resolution, refresh rate, and VRR": ""
|
||||||
|
},
|
||||||
"Audio": {
|
"Audio": {
|
||||||
"Audio": ""
|
"Audio": ""
|
||||||
},
|
},
|
||||||
@@ -284,6 +305,9 @@
|
|||||||
"Auto": {
|
"Auto": {
|
||||||
"Auto": ""
|
"Auto": ""
|
||||||
},
|
},
|
||||||
|
"Auto (Wide)": {
|
||||||
|
"Auto (Wide)": ""
|
||||||
|
},
|
||||||
"Auto Location": {
|
"Auto Location": {
|
||||||
"Auto Location": "Localização Automática"
|
"Auto Location": "Localização Automática"
|
||||||
},
|
},
|
||||||
@@ -365,6 +389,9 @@
|
|||||||
"Backend": {
|
"Backend": {
|
||||||
"Backend": ""
|
"Backend": ""
|
||||||
},
|
},
|
||||||
|
"Background Opacity": {
|
||||||
|
"Background Opacity": ""
|
||||||
|
},
|
||||||
"Balanced palette with focused accents (default).": {
|
"Balanced palette with focused accents (default).": {
|
||||||
"Balanced palette with focused accents (default).": "Paleta equilibrada com destaques de cor focados (padrão)."
|
"Balanced palette with focused accents (default).": "Paleta equilibrada com destaques de cor focados (padrão)."
|
||||||
},
|
},
|
||||||
@@ -392,6 +419,9 @@
|
|||||||
"Binds include added": {
|
"Binds include added": {
|
||||||
"Binds include added": ""
|
"Binds include added": ""
|
||||||
},
|
},
|
||||||
|
"Bit Depth": {
|
||||||
|
"Bit Depth": ""
|
||||||
|
},
|
||||||
"Bluetooth": {
|
"Bluetooth": {
|
||||||
"Bluetooth": ""
|
"Bluetooth": ""
|
||||||
},
|
},
|
||||||
@@ -422,6 +452,12 @@
|
|||||||
"Bottom": {
|
"Bottom": {
|
||||||
"Bottom": "Inferior"
|
"Bottom": "Inferior"
|
||||||
},
|
},
|
||||||
|
"Bottom Left": {
|
||||||
|
"Bottom Left": ""
|
||||||
|
},
|
||||||
|
"Bottom Right": {
|
||||||
|
"Bottom Right": ""
|
||||||
|
},
|
||||||
"Bottom Section": {
|
"Bottom Section": {
|
||||||
"Bottom Section": "Seção Inferior"
|
"Bottom Section": "Seção Inferior"
|
||||||
},
|
},
|
||||||
@@ -443,6 +479,9 @@
|
|||||||
"CPU": {
|
"CPU": {
|
||||||
"CPU": "CPU"
|
"CPU": "CPU"
|
||||||
},
|
},
|
||||||
|
"CPU Graph": {
|
||||||
|
"CPU Graph": ""
|
||||||
|
},
|
||||||
"CPU Temperature": {
|
"CPU Temperature": {
|
||||||
"CPU Temperature": "Temperatura da CPU"
|
"CPU Temperature": "Temperatura da CPU"
|
||||||
},
|
},
|
||||||
@@ -491,6 +530,9 @@
|
|||||||
"Center Section": {
|
"Center Section": {
|
||||||
"Center Section": "Seção Central"
|
"Center Section": "Seção Central"
|
||||||
},
|
},
|
||||||
|
"Center Single Column": {
|
||||||
|
"Center Single Column": ""
|
||||||
|
},
|
||||||
"Center Tiling": {
|
"Center Tiling": {
|
||||||
"Center Tiling": ""
|
"Center Tiling": ""
|
||||||
},
|
},
|
||||||
@@ -536,6 +578,9 @@
|
|||||||
"Choose where on-screen displays appear on screen": {
|
"Choose where on-screen displays appear on screen": {
|
||||||
"Choose where on-screen displays appear on screen": ""
|
"Choose where on-screen displays appear on screen": ""
|
||||||
},
|
},
|
||||||
|
"Choose which displays show this widget": {
|
||||||
|
"Choose which displays show this widget": ""
|
||||||
|
},
|
||||||
"Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": {
|
"Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": {
|
||||||
"Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": ""
|
"Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": ""
|
||||||
},
|
},
|
||||||
@@ -587,6 +632,9 @@
|
|||||||
"Clock": {
|
"Clock": {
|
||||||
"Clock": "Relógio"
|
"Clock": "Relógio"
|
||||||
},
|
},
|
||||||
|
"Clock Style": {
|
||||||
|
"Clock Style": ""
|
||||||
|
},
|
||||||
"Clock show seconds": {
|
"Clock show seconds": {
|
||||||
"Clock show seconds": "Relógio mostra segundos"
|
"Clock show seconds": "Relógio mostra segundos"
|
||||||
},
|
},
|
||||||
@@ -599,6 +647,12 @@
|
|||||||
"Color": {
|
"Color": {
|
||||||
"Color": ""
|
"Color": ""
|
||||||
},
|
},
|
||||||
|
"Color Gamut": {
|
||||||
|
"Color Gamut": ""
|
||||||
|
},
|
||||||
|
"Color Management": {
|
||||||
|
"Color Management": ""
|
||||||
|
},
|
||||||
"Color Mode": {
|
"Color Mode": {
|
||||||
"Color Mode": ""
|
"Color Mode": ""
|
||||||
},
|
},
|
||||||
@@ -623,6 +677,9 @@
|
|||||||
"Colorful mix of bright contrasting accents.": {
|
"Colorful mix of bright contrasting accents.": {
|
||||||
"Colorful mix of bright contrasting accents.": "Mistura colorida de destaques de cor brilhantes e contrastantes."
|
"Colorful mix of bright contrasting accents.": "Mistura colorida de destaques de cor brilhantes e contrastantes."
|
||||||
},
|
},
|
||||||
|
"Column": {
|
||||||
|
"Column": ""
|
||||||
|
},
|
||||||
"Command": {
|
"Command": {
|
||||||
"Command": ""
|
"Command": ""
|
||||||
},
|
},
|
||||||
@@ -656,12 +713,27 @@
|
|||||||
"Compositor": {
|
"Compositor": {
|
||||||
"Compositor": "Compositor"
|
"Compositor": "Compositor"
|
||||||
},
|
},
|
||||||
|
"Compositor Settings": {
|
||||||
|
"Compositor Settings": ""
|
||||||
|
},
|
||||||
|
"Config Format": {
|
||||||
|
"Config Format": ""
|
||||||
|
},
|
||||||
"Config action: %1": {
|
"Config action: %1": {
|
||||||
"Config action: %1": ""
|
"Config action: %1": ""
|
||||||
},
|
},
|
||||||
|
"Config validation failed": {
|
||||||
|
"Config validation failed": ""
|
||||||
|
},
|
||||||
|
"Configuration": {
|
||||||
|
"Configuration": ""
|
||||||
|
},
|
||||||
"Configuration activated": {
|
"Configuration activated": {
|
||||||
"Configuration activated": "Configuração ativada"
|
"Configuration activated": "Configuração ativada"
|
||||||
},
|
},
|
||||||
|
"Configuration will be preserved when this display reconnects": {
|
||||||
|
"Configuration will be preserved when this display reconnects": ""
|
||||||
|
},
|
||||||
"Configure a new printer": {
|
"Configure a new printer": {
|
||||||
"Configure a new printer": ""
|
"Configure a new printer": ""
|
||||||
},
|
},
|
||||||
@@ -710,6 +782,9 @@
|
|||||||
"Control currently playing media": {
|
"Control currently playing media": {
|
||||||
"Control currently playing media": "Controlar mídia que está sendo reproduzida"
|
"Control currently playing media": "Controlar mídia que está sendo reproduzida"
|
||||||
},
|
},
|
||||||
|
"Control workspaces and columns by scrolling on the bar": {
|
||||||
|
"Control workspaces and columns by scrolling on the bar": ""
|
||||||
|
},
|
||||||
"Controls opacity of all popouts, modals, and their content layers": {
|
"Controls opacity of all popouts, modals, and their content layers": {
|
||||||
"Controls opacity of all popouts, modals, and their content layers": ""
|
"Controls opacity of all popouts, modals, and their content layers": ""
|
||||||
},
|
},
|
||||||
@@ -815,6 +890,9 @@
|
|||||||
"Custom Transparency": {
|
"Custom Transparency": {
|
||||||
"Custom Transparency": "Transparência Customizada"
|
"Custom Transparency": "Transparência Customizada"
|
||||||
},
|
},
|
||||||
|
"Custom...": {
|
||||||
|
"Custom...": ""
|
||||||
|
},
|
||||||
"Custom: ": {
|
"Custom: ": {
|
||||||
"Custom: ": "Customizar: "
|
"Custom: ": "Customizar: "
|
||||||
},
|
},
|
||||||
@@ -896,6 +974,9 @@
|
|||||||
"Default": {
|
"Default": {
|
||||||
"Default": "Padrão"
|
"Default": "Padrão"
|
||||||
},
|
},
|
||||||
|
"Default Width (%)": {
|
||||||
|
"Default Width (%)": ""
|
||||||
|
},
|
||||||
"Default selected action": {
|
"Default selected action": {
|
||||||
"Default selected action": ""
|
"Default selected action": ""
|
||||||
},
|
},
|
||||||
@@ -923,6 +1004,12 @@
|
|||||||
"Description": {
|
"Description": {
|
||||||
"Description": ""
|
"Description": ""
|
||||||
},
|
},
|
||||||
|
"Desktop Clock": {
|
||||||
|
"Desktop Clock": ""
|
||||||
|
},
|
||||||
|
"Desktop Widgets": {
|
||||||
|
"Desktop Widgets": ""
|
||||||
|
},
|
||||||
"Desktop background images": {
|
"Desktop background images": {
|
||||||
"Desktop background images": "Imagens de fundo da área de trabalho"
|
"Desktop background images": "Imagens de fundo da área de trabalho"
|
||||||
},
|
},
|
||||||
@@ -935,6 +1022,9 @@
|
|||||||
"Device paired": {
|
"Device paired": {
|
||||||
"Device paired": "Dispositivo pareado"
|
"Device paired": "Dispositivo pareado"
|
||||||
},
|
},
|
||||||
|
"Digital": {
|
||||||
|
"Digital": ""
|
||||||
|
},
|
||||||
"Disable Autoconnect": {
|
"Disable Autoconnect": {
|
||||||
"Disable Autoconnect": ""
|
"Disable Autoconnect": ""
|
||||||
},
|
},
|
||||||
@@ -947,12 +1037,18 @@
|
|||||||
"Disable History Persistence": {
|
"Disable History Persistence": {
|
||||||
"Disable History Persistence": ""
|
"Disable History Persistence": ""
|
||||||
},
|
},
|
||||||
|
"Disable Output": {
|
||||||
|
"Disable Output": ""
|
||||||
|
},
|
||||||
"Disable clipboard manager entirely (requires restart)": {
|
"Disable clipboard manager entirely (requires restart)": {
|
||||||
"Disable clipboard manager entirely (requires restart)": ""
|
"Disable clipboard manager entirely (requires restart)": ""
|
||||||
},
|
},
|
||||||
"Disabled": {
|
"Disabled": {
|
||||||
"Disabled": ""
|
"Disabled": ""
|
||||||
},
|
},
|
||||||
|
"Discard": {
|
||||||
|
"Discard": ""
|
||||||
|
},
|
||||||
"Disconnect": {
|
"Disconnect": {
|
||||||
"Disconnect": "Desconectar"
|
"Disconnect": "Desconectar"
|
||||||
},
|
},
|
||||||
@@ -977,6 +1073,9 @@
|
|||||||
"Display Name Format": {
|
"Display Name Format": {
|
||||||
"Display Name Format": ""
|
"Display Name Format": ""
|
||||||
},
|
},
|
||||||
|
"Display Settings": {
|
||||||
|
"Display Settings": ""
|
||||||
|
},
|
||||||
"Display a dock with pinned and running applications": {
|
"Display a dock with pinned and running applications": {
|
||||||
"Display a dock with pinned and running applications": ""
|
"Display a dock with pinned and running applications": ""
|
||||||
},
|
},
|
||||||
@@ -989,6 +1088,9 @@
|
|||||||
"Display application icons in workspace indicators": {
|
"Display application icons in workspace indicators": {
|
||||||
"Display application icons in workspace indicators": "Mostrar ícones de aplicativos em indicadores de espaço de trabalho"
|
"Display application icons in workspace indicators": "Mostrar ícones de aplicativos em indicadores de espaço de trabalho"
|
||||||
},
|
},
|
||||||
|
"Display configuration is not available. WLR output management protocol not supported.": {
|
||||||
|
"Display configuration is not available. WLR output management protocol not supported.": ""
|
||||||
|
},
|
||||||
"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"
|
||||||
},
|
},
|
||||||
@@ -1079,6 +1181,9 @@
|
|||||||
"Empty": {
|
"Empty": {
|
||||||
"Empty": "Vázio"
|
"Empty": "Vázio"
|
||||||
},
|
},
|
||||||
|
"Enable 10-bit color depth for wider color gamut and HDR support": {
|
||||||
|
"Enable 10-bit color depth for wider color gamut and HDR support": ""
|
||||||
|
},
|
||||||
"Enable Autoconnect": {
|
"Enable Autoconnect": {
|
||||||
"Enable Autoconnect": ""
|
"Enable Autoconnect": ""
|
||||||
},
|
},
|
||||||
@@ -1088,6 +1193,9 @@
|
|||||||
"Enable Border": {
|
"Enable Border": {
|
||||||
"Enable Border": ""
|
"Enable Border": ""
|
||||||
},
|
},
|
||||||
|
"Enable Desktop Clock": {
|
||||||
|
"Enable Desktop Clock": ""
|
||||||
|
},
|
||||||
"Enable Do Not Disturb": {
|
"Enable Do Not Disturb": {
|
||||||
"Enable Do Not Disturb": ""
|
"Enable Do Not Disturb": ""
|
||||||
},
|
},
|
||||||
@@ -1097,6 +1205,9 @@
|
|||||||
"Enable Overview Overlay": {
|
"Enable Overview Overlay": {
|
||||||
"Enable Overview Overlay": ""
|
"Enable Overview Overlay": ""
|
||||||
},
|
},
|
||||||
|
"Enable System Monitor": {
|
||||||
|
"Enable System Monitor": ""
|
||||||
|
},
|
||||||
"Enable System Sounds": {
|
"Enable System Sounds": {
|
||||||
"Enable System Sounds": "Ativar Sons do Sistema"
|
"Enable System Sounds": "Ativar Sons do Sistema"
|
||||||
},
|
},
|
||||||
@@ -1187,6 +1298,9 @@
|
|||||||
"Exclusive Zone Offset": {
|
"Exclusive Zone Offset": {
|
||||||
"Exclusive Zone Offset": "Ajuste da Zona Exclusiva"
|
"Exclusive Zone Offset": "Ajuste da Zona Exclusiva"
|
||||||
},
|
},
|
||||||
|
"Experimental Feature": {
|
||||||
|
"Experimental Feature": ""
|
||||||
|
},
|
||||||
"F1/I: Toggle • F10: Help": {
|
"F1/I: Toggle • F10: Help": {
|
||||||
"F1/I: Toggle • F10: Help": "F1/I: Ativar • F10: Ajuda"
|
"F1/I: Toggle • F10: Help": "F1/I: Ativar • F10: Ajuda"
|
||||||
},
|
},
|
||||||
@@ -1316,6 +1430,9 @@
|
|||||||
"Failed to update sharing": {
|
"Failed to update sharing": {
|
||||||
"Failed to update sharing": ""
|
"Failed to update sharing": ""
|
||||||
},
|
},
|
||||||
|
"Failed to write temp file for validation": {
|
||||||
|
"Failed to write temp file for validation": ""
|
||||||
|
},
|
||||||
"Feels Like": {
|
"Feels Like": {
|
||||||
"Feels Like": "Sensação Térmica"
|
"Feels Like": "Sensação Térmica"
|
||||||
},
|
},
|
||||||
@@ -1349,6 +1466,21 @@
|
|||||||
"Fixing...": {
|
"Fixing...": {
|
||||||
"Fixing...": ""
|
"Fixing...": ""
|
||||||
},
|
},
|
||||||
|
"Flipped": {
|
||||||
|
"Flipped": ""
|
||||||
|
},
|
||||||
|
"Flipped 180°": {
|
||||||
|
"Flipped 180°": ""
|
||||||
|
},
|
||||||
|
"Flipped 270°": {
|
||||||
|
"Flipped 270°": ""
|
||||||
|
},
|
||||||
|
"Flipped 90°": {
|
||||||
|
"Flipped 90°": ""
|
||||||
|
},
|
||||||
|
"Focus at Startup": {
|
||||||
|
"Focus at Startup": ""
|
||||||
|
},
|
||||||
"Focused Window": {
|
"Focused Window": {
|
||||||
"Focused Window": "Janela Focada"
|
"Focused Window": "Janela Focada"
|
||||||
},
|
},
|
||||||
@@ -1367,9 +1499,15 @@
|
|||||||
"Font Weight": {
|
"Font Weight": {
|
||||||
"Font Weight": "Peso da Fonte"
|
"Font Weight": "Peso da Fonte"
|
||||||
},
|
},
|
||||||
|
"Force HDR": {
|
||||||
|
"Force HDR": ""
|
||||||
|
},
|
||||||
"Force Kill Process": {
|
"Force Kill Process": {
|
||||||
"Force Kill Process": "Forçar Fechamento do Processo"
|
"Force Kill Process": "Forçar Fechamento do Processo"
|
||||||
},
|
},
|
||||||
|
"Force Wide Color": {
|
||||||
|
"Force Wide Color": ""
|
||||||
|
},
|
||||||
"Force terminal applications to always use dark color schemes": {
|
"Force terminal applications to always use dark color schemes": {
|
||||||
"Force terminal applications to always use dark color schemes": ""
|
"Force terminal applications to always use dark color schemes": ""
|
||||||
},
|
},
|
||||||
@@ -1433,6 +1571,9 @@
|
|||||||
"Gradually fade the screen before locking with a configurable grace period": {
|
"Gradually fade the screen before locking with a configurable grace period": {
|
||||||
"Gradually fade the screen before locking with a configurable grace period": ""
|
"Gradually fade the screen before locking with a configurable grace period": ""
|
||||||
},
|
},
|
||||||
|
"Graph Time Range": {
|
||||||
|
"Graph Time Range": ""
|
||||||
|
},
|
||||||
"Graphics": {
|
"Graphics": {
|
||||||
"Graphics": "Gráficos"
|
"Graphics": "Gráficos"
|
||||||
},
|
},
|
||||||
@@ -1448,6 +1589,15 @@
|
|||||||
"Group multiple windows of the same app together with a window count indicator": {
|
"Group multiple windows of the same app together with a window count indicator": {
|
||||||
"Group multiple windows of the same app together with a window count indicator": "Agrupar múltiplas janelas do mesmo app com um indicador de número de janelas"
|
"Group multiple windows of the same app together with a window count indicator": "Agrupar múltiplas janelas do mesmo app com um indicador de número de janelas"
|
||||||
},
|
},
|
||||||
|
"HDR (EDID)": {
|
||||||
|
"HDR (EDID)": ""
|
||||||
|
},
|
||||||
|
"HDR Tone Mapping": {
|
||||||
|
"HDR Tone Mapping": ""
|
||||||
|
},
|
||||||
|
"HDR mode is experimental. Verify your monitor supports HDR before enabling.": {
|
||||||
|
"HDR mode is experimental. Verify your monitor supports HDR before enabling.": ""
|
||||||
|
},
|
||||||
"HSV": {
|
"HSV": {
|
||||||
"HSV": ""
|
"HSV": ""
|
||||||
},
|
},
|
||||||
@@ -1457,6 +1607,9 @@
|
|||||||
"Held": {
|
"Held": {
|
||||||
"Held": ""
|
"Held": ""
|
||||||
},
|
},
|
||||||
|
"Help": {
|
||||||
|
"Help": ""
|
||||||
|
},
|
||||||
"Hex": {
|
"Hex": {
|
||||||
"Hex": ""
|
"Hex": ""
|
||||||
},
|
},
|
||||||
@@ -1496,6 +1649,9 @@
|
|||||||
"Hold to confirm (%1s)": {
|
"Hold to confirm (%1s)": {
|
||||||
"Hold to confirm (%1s)": ""
|
"Hold to confirm (%1s)": ""
|
||||||
},
|
},
|
||||||
|
"Hot Corners": {
|
||||||
|
"Hot Corners": ""
|
||||||
|
},
|
||||||
"Hotkey overlay title (optional)": {
|
"Hotkey overlay title (optional)": {
|
||||||
"Hotkey overlay title (optional)": ""
|
"Hotkey overlay title (optional)": ""
|
||||||
},
|
},
|
||||||
@@ -1565,6 +1721,9 @@
|
|||||||
"Include Transitions": {
|
"Include Transitions": {
|
||||||
"Include Transitions": "Incluir Transições"
|
"Include Transitions": "Incluir Transições"
|
||||||
},
|
},
|
||||||
|
"Incompatible Plugins Loaded": {
|
||||||
|
"Incompatible Plugins Loaded": ""
|
||||||
|
},
|
||||||
"Incorrect password": {
|
"Incorrect password": {
|
||||||
"Incorrect password": "Senha incorreta"
|
"Incorrect password": "Senha incorreta"
|
||||||
},
|
},
|
||||||
@@ -1577,6 +1736,9 @@
|
|||||||
"Individual bar configuration": {
|
"Individual bar configuration": {
|
||||||
"Individual bar configuration": ""
|
"Individual bar configuration": ""
|
||||||
},
|
},
|
||||||
|
"Inherit": {
|
||||||
|
"Inherit": ""
|
||||||
|
},
|
||||||
"Inhibit idle timeout when audio or video is playing": {
|
"Inhibit idle timeout when audio or video is playing": {
|
||||||
"Inhibit idle timeout when audio or video is playing": ""
|
"Inhibit idle timeout when audio or video is playing": ""
|
||||||
},
|
},
|
||||||
@@ -1598,6 +1760,9 @@
|
|||||||
"Interval": {
|
"Interval": {
|
||||||
"Interval": "Intervalo"
|
"Interval": "Intervalo"
|
||||||
},
|
},
|
||||||
|
"Invalid configuration": {
|
||||||
|
"Invalid configuration": ""
|
||||||
|
},
|
||||||
"Invert on mode change": {
|
"Invert on mode change": {
|
||||||
"Invert on mode change": "Inverter na mudança de modo"
|
"Invert on mode change": "Inverter na mudança de modo"
|
||||||
},
|
},
|
||||||
@@ -1670,6 +1835,9 @@
|
|||||||
"Layout": {
|
"Layout": {
|
||||||
"Layout": ""
|
"Layout": ""
|
||||||
},
|
},
|
||||||
|
"Layout Overrides": {
|
||||||
|
"Layout Overrides": ""
|
||||||
|
},
|
||||||
"Left": {
|
"Left": {
|
||||||
"Left": "Esquerda"
|
"Left": "Esquerda"
|
||||||
},
|
},
|
||||||
@@ -1682,6 +1850,9 @@
|
|||||||
"Lines: %1": {
|
"Lines: %1": {
|
||||||
"Lines: %1": "Linhas: %1"
|
"Lines: %1": "Linhas: %1"
|
||||||
},
|
},
|
||||||
|
"List": {
|
||||||
|
"List": ""
|
||||||
|
},
|
||||||
"Lively palette with saturated accents.": {
|
"Lively palette with saturated accents.": {
|
||||||
"Lively palette with saturated accents.": "Paleta vívida com destaques de cor saturados."
|
"Lively palette with saturated accents.": "Paleta vívida com destaques de cor saturados."
|
||||||
},
|
},
|
||||||
@@ -1847,6 +2018,9 @@
|
|||||||
"Memory": {
|
"Memory": {
|
||||||
"Memory": "Memória"
|
"Memory": "Memória"
|
||||||
},
|
},
|
||||||
|
"Memory Graph": {
|
||||||
|
"Memory Graph": ""
|
||||||
|
},
|
||||||
"Memory Usage": {
|
"Memory Usage": {
|
||||||
"Memory Usage": "Uso de Memória"
|
"Memory Usage": "Uso de Memória"
|
||||||
},
|
},
|
||||||
@@ -1883,6 +2057,12 @@
|
|||||||
"Model": {
|
"Model": {
|
||||||
"Model": ""
|
"Model": ""
|
||||||
},
|
},
|
||||||
|
"Modified": {
|
||||||
|
"Modified": ""
|
||||||
|
},
|
||||||
|
"Monitor Configuration": {
|
||||||
|
"Monitor Configuration": ""
|
||||||
|
},
|
||||||
"Monitor whose wallpaper drives dynamic theming colors": {
|
"Monitor whose wallpaper drives dynamic theming colors": {
|
||||||
"Monitor whose wallpaper drives dynamic theming colors": "Monitor o qual papel de parede controla cores de tema dinâmicas"
|
"Monitor whose wallpaper drives dynamic theming colors": "Monitor o qual papel de parede controla cores de tema dinâmicas"
|
||||||
},
|
},
|
||||||
@@ -1898,6 +2078,9 @@
|
|||||||
"Mount": {
|
"Mount": {
|
||||||
"Mount": "Ponto de montagem"
|
"Mount": "Ponto de montagem"
|
||||||
},
|
},
|
||||||
|
"Move Widget": {
|
||||||
|
"Move Widget": ""
|
||||||
|
},
|
||||||
"Moving to Paused": {
|
"Moving to Paused": {
|
||||||
"Moving to Paused": ""
|
"Moving to Paused": ""
|
||||||
},
|
},
|
||||||
@@ -1919,6 +2102,9 @@
|
|||||||
"Network": {
|
"Network": {
|
||||||
"Network": "Rede"
|
"Network": "Rede"
|
||||||
},
|
},
|
||||||
|
"Network Graph": {
|
||||||
|
"Network Graph": ""
|
||||||
|
},
|
||||||
"Network Info": {
|
"Network Info": {
|
||||||
"Network Info": "Informação de Rede"
|
"Network Info": "Informação de Rede"
|
||||||
},
|
},
|
||||||
@@ -2015,6 +2201,9 @@
|
|||||||
"No drivers found": {
|
"No drivers found": {
|
||||||
"No drivers found": ""
|
"No drivers found": ""
|
||||||
},
|
},
|
||||||
|
"No features enabled": {
|
||||||
|
"No features enabled": ""
|
||||||
|
},
|
||||||
"No files found": {
|
"No files found": {
|
||||||
"No files found": "Nenhum arquivo encontrado"
|
"No files found": "Nenhum arquivo encontrado"
|
||||||
},
|
},
|
||||||
@@ -2042,9 +2231,15 @@
|
|||||||
"No printers found": {
|
"No printers found": {
|
||||||
"No printers found": ""
|
"No printers found": ""
|
||||||
},
|
},
|
||||||
|
"No variants created. Click Add to create a new monitor widget.": {
|
||||||
|
"No variants created. Click Add to create a new monitor widget.": ""
|
||||||
|
},
|
||||||
"None": {
|
"None": {
|
||||||
"None": ""
|
"None": ""
|
||||||
},
|
},
|
||||||
|
"Normal": {
|
||||||
|
"Normal": ""
|
||||||
|
},
|
||||||
"Normal Font": {
|
"Normal Font": {
|
||||||
"Normal Font": ""
|
"Normal Font": ""
|
||||||
},
|
},
|
||||||
@@ -2096,6 +2291,9 @@
|
|||||||
"OSD Position": {
|
"OSD Position": {
|
||||||
"OSD Position": ""
|
"OSD Position": ""
|
||||||
},
|
},
|
||||||
|
"Off": {
|
||||||
|
"Off": ""
|
||||||
|
},
|
||||||
"Office": {
|
"Office": {
|
||||||
"Office": "Escritório"
|
"Office": "Escritório"
|
||||||
},
|
},
|
||||||
@@ -2159,12 +2357,18 @@
|
|||||||
"Output Tray Missing": {
|
"Output Tray Missing": {
|
||||||
"Output Tray Missing": ""
|
"Output Tray Missing": ""
|
||||||
},
|
},
|
||||||
|
"Outputs Include Missing": {
|
||||||
|
"Outputs Include Missing": ""
|
||||||
|
},
|
||||||
"Overridden by config": {
|
"Overridden by config": {
|
||||||
"Overridden by config": ""
|
"Overridden by config": ""
|
||||||
},
|
},
|
||||||
"Override": {
|
"Override": {
|
||||||
"Override": ""
|
"Override": ""
|
||||||
},
|
},
|
||||||
|
"Override global layout settings for this output": {
|
||||||
|
"Override global layout settings for this output": ""
|
||||||
|
},
|
||||||
"Overrides": {
|
"Overrides": {
|
||||||
"Overrides": ""
|
"Overrides": ""
|
||||||
},
|
},
|
||||||
@@ -2324,6 +2528,9 @@
|
|||||||
"Preference": {
|
"Preference": {
|
||||||
"Preference": ""
|
"Preference": ""
|
||||||
},
|
},
|
||||||
|
"Preset Widths (%)": {
|
||||||
|
"Preset Widths (%)": ""
|
||||||
|
},
|
||||||
"Press key...": {
|
"Press key...": {
|
||||||
"Press key...": ""
|
"Press key...": ""
|
||||||
},
|
},
|
||||||
@@ -2372,6 +2579,9 @@
|
|||||||
"Process": {
|
"Process": {
|
||||||
"Process": "Processo"
|
"Process": "Processo"
|
||||||
},
|
},
|
||||||
|
"Process Count": {
|
||||||
|
"Process Count": ""
|
||||||
|
},
|
||||||
"Processing": {
|
"Processing": {
|
||||||
"Processing": ""
|
"Processing": ""
|
||||||
},
|
},
|
||||||
@@ -2447,12 +2657,27 @@
|
|||||||
"Require holding button/key to confirm power off, restart, suspend, hibernate and logout": {
|
"Require holding button/key to confirm power off, restart, suspend, hibernate and logout": {
|
||||||
"Require holding button/key to confirm power off, restart, suspend, hibernate and logout": ""
|
"Require holding button/key to confirm power off, restart, suspend, hibernate and logout": ""
|
||||||
},
|
},
|
||||||
|
"Requires DMS": {
|
||||||
|
"Requires DMS": ""
|
||||||
|
},
|
||||||
"Requires DWL compositor": {
|
"Requires DWL compositor": {
|
||||||
"Requires DWL compositor": ""
|
"Requires DWL compositor": ""
|
||||||
},
|
},
|
||||||
"Reset": {
|
"Reset": {
|
||||||
"Reset": "Resetar"
|
"Reset": "Resetar"
|
||||||
},
|
},
|
||||||
|
"Reset Position": {
|
||||||
|
"Reset Position": ""
|
||||||
|
},
|
||||||
|
"Reset Size": {
|
||||||
|
"Reset Size": ""
|
||||||
|
},
|
||||||
|
"Resize Widget": {
|
||||||
|
"Resize Widget": ""
|
||||||
|
},
|
||||||
|
"Resolution & Refresh": {
|
||||||
|
"Resolution & Refresh": ""
|
||||||
|
},
|
||||||
"Resources": {
|
"Resources": {
|
||||||
"Resources": "Recursos"
|
"Resources": "Recursos"
|
||||||
},
|
},
|
||||||
@@ -2483,6 +2708,12 @@
|
|||||||
"Right Tiling": {
|
"Right Tiling": {
|
||||||
"Right Tiling": ""
|
"Right Tiling": ""
|
||||||
},
|
},
|
||||||
|
"Right-click and drag anywhere on the widget": {
|
||||||
|
"Right-click and drag anywhere on the widget": ""
|
||||||
|
},
|
||||||
|
"Right-click and drag the bottom-right corner": {
|
||||||
|
"Right-click and drag the bottom-right corner": ""
|
||||||
|
},
|
||||||
"Right-click bar widget to cycle": {
|
"Right-click bar widget to cycle": {
|
||||||
"Right-click bar widget to cycle": ""
|
"Right-click bar widget to cycle": ""
|
||||||
},
|
},
|
||||||
@@ -2507,6 +2738,12 @@
|
|||||||
"Running Apps Settings": {
|
"Running Apps Settings": {
|
||||||
"Running Apps Settings": "Configurações de Apps em Execução"
|
"Running Apps Settings": "Configurações de Apps em Execução"
|
||||||
},
|
},
|
||||||
|
"SDR Brightness": {
|
||||||
|
"SDR Brightness": ""
|
||||||
|
},
|
||||||
|
"SDR Saturation": {
|
||||||
|
"SDR Saturation": ""
|
||||||
|
},
|
||||||
"Save": {
|
"Save": {
|
||||||
"Save": "Salvar"
|
"Save": "Salvar"
|
||||||
},
|
},
|
||||||
@@ -2522,6 +2759,9 @@
|
|||||||
"Saved Configurations": {
|
"Saved Configurations": {
|
||||||
"Saved Configurations": ""
|
"Saved Configurations": ""
|
||||||
},
|
},
|
||||||
|
"Scale": {
|
||||||
|
"Scale": ""
|
||||||
|
},
|
||||||
"Scale DankBar font sizes independently": {
|
"Scale DankBar font sizes independently": {
|
||||||
"Scale DankBar font sizes independently": "Ajustar tamanho da fonte da DankBar de forma independente"
|
"Scale DankBar font sizes independently": "Ajustar tamanho da fonte da DankBar de forma independente"
|
||||||
},
|
},
|
||||||
@@ -2540,6 +2780,9 @@
|
|||||||
"Screen sharing": {
|
"Screen sharing": {
|
||||||
"Screen sharing": ""
|
"Screen sharing": ""
|
||||||
},
|
},
|
||||||
|
"Scroll Wheel": {
|
||||||
|
"Scroll Wheel": ""
|
||||||
|
},
|
||||||
"Scroll song title": {
|
"Scroll song title": {
|
||||||
"Scroll song title": ""
|
"Scroll song title": ""
|
||||||
},
|
},
|
||||||
@@ -2570,6 +2813,9 @@
|
|||||||
"Searching...": {
|
"Searching...": {
|
||||||
"Searching...": "Pesquisando..."
|
"Searching...": "Pesquisando..."
|
||||||
},
|
},
|
||||||
|
"Secondary": {
|
||||||
|
"Secondary": ""
|
||||||
|
},
|
||||||
"Secured": {
|
"Secured": {
|
||||||
"Secured": ""
|
"Secured": ""
|
||||||
},
|
},
|
||||||
@@ -2666,15 +2912,39 @@
|
|||||||
"Show All Tags": {
|
"Show All Tags": {
|
||||||
"Show All Tags": "Mostrar Todas as Tags"
|
"Show All Tags": "Mostrar Todas as Tags"
|
||||||
},
|
},
|
||||||
|
"Show CPU": {
|
||||||
|
"Show CPU": ""
|
||||||
|
},
|
||||||
|
"Show CPU Graph": {
|
||||||
|
"Show CPU Graph": ""
|
||||||
|
},
|
||||||
|
"Show CPU Temp": {
|
||||||
|
"Show CPU Temp": ""
|
||||||
|
},
|
||||||
"Show Confirmation on Power Actions": {
|
"Show Confirmation on Power Actions": {
|
||||||
"Show Confirmation on Power Actions": "Mostrar Confirmação em Ações de Energia"
|
"Show Confirmation on Power Actions": "Mostrar Confirmação em Ações de Energia"
|
||||||
},
|
},
|
||||||
|
"Show Date": {
|
||||||
|
"Show Date": ""
|
||||||
|
},
|
||||||
|
"Show Disk": {
|
||||||
|
"Show Disk": ""
|
||||||
|
},
|
||||||
"Show Dock": {
|
"Show Dock": {
|
||||||
"Show Dock": "Mostrar Dock"
|
"Show Dock": "Mostrar Dock"
|
||||||
},
|
},
|
||||||
|
"Show GPU Temperature": {
|
||||||
|
"Show GPU Temperature": ""
|
||||||
|
},
|
||||||
|
"Show Header": {
|
||||||
|
"Show Header": ""
|
||||||
|
},
|
||||||
"Show Hibernate": {
|
"Show Hibernate": {
|
||||||
"Show Hibernate": ""
|
"Show Hibernate": ""
|
||||||
},
|
},
|
||||||
|
"Show Hour Numbers": {
|
||||||
|
"Show Hour Numbers": ""
|
||||||
|
},
|
||||||
"Show Line Numbers": {
|
"Show Line Numbers": {
|
||||||
"Show Line Numbers": "Mostrar Numeração de Linha"
|
"Show Line Numbers": "Mostrar Numeração de Linha"
|
||||||
},
|
},
|
||||||
@@ -2684,6 +2954,18 @@
|
|||||||
"Show Log Out": {
|
"Show Log Out": {
|
||||||
"Show Log Out": ""
|
"Show Log Out": ""
|
||||||
},
|
},
|
||||||
|
"Show Memory": {
|
||||||
|
"Show Memory": ""
|
||||||
|
},
|
||||||
|
"Show Memory Graph": {
|
||||||
|
"Show Memory Graph": ""
|
||||||
|
},
|
||||||
|
"Show Network": {
|
||||||
|
"Show Network": ""
|
||||||
|
},
|
||||||
|
"Show Network Graph": {
|
||||||
|
"Show Network Graph": ""
|
||||||
|
},
|
||||||
"Show Occupied Workspaces Only": {
|
"Show Occupied Workspaces Only": {
|
||||||
"Show Occupied Workspaces Only": ""
|
"Show Occupied Workspaces Only": ""
|
||||||
},
|
},
|
||||||
@@ -2705,6 +2987,9 @@
|
|||||||
"Show Suspend": {
|
"Show Suspend": {
|
||||||
"Show Suspend": ""
|
"Show Suspend": ""
|
||||||
},
|
},
|
||||||
|
"Show Top Processes": {
|
||||||
|
"Show Top Processes": ""
|
||||||
|
},
|
||||||
"Show Workspace Apps": {
|
"Show Workspace Apps": {
|
||||||
"Show Workspace Apps": "Mostrar Aplicativos da Área de Trabalho Virtual"
|
"Show Workspace Apps": "Mostrar Aplicativos da Área de Trabalho Virtual"
|
||||||
},
|
},
|
||||||
@@ -2807,9 +3092,15 @@
|
|||||||
"Sizing": {
|
"Sizing": {
|
||||||
"Sizing": ""
|
"Sizing": ""
|
||||||
},
|
},
|
||||||
|
"Some plugins require a newer version of DMS:": {
|
||||||
|
"Some plugins require a newer version of DMS:": ""
|
||||||
|
},
|
||||||
"Sort Alphabetically": {
|
"Sort Alphabetically": {
|
||||||
"Sort Alphabetically": "Ordenar Alfabeticamente"
|
"Sort Alphabetically": "Ordenar Alfabeticamente"
|
||||||
},
|
},
|
||||||
|
"Sort By": {
|
||||||
|
"Sort By": ""
|
||||||
|
},
|
||||||
"Sorting & Layout": {
|
"Sorting & Layout": {
|
||||||
"Sorting & Layout": ""
|
"Sorting & Layout": ""
|
||||||
},
|
},
|
||||||
@@ -2834,6 +3125,9 @@
|
|||||||
"Square Corners": {
|
"Square Corners": {
|
||||||
"Square Corners": "Cantos Retos"
|
"Square Corners": "Cantos Retos"
|
||||||
},
|
},
|
||||||
|
"Stacked": {
|
||||||
|
"Stacked": ""
|
||||||
|
},
|
||||||
"Start": {
|
"Start": {
|
||||||
"Start": "Iniciar"
|
"Start": "Iniciar"
|
||||||
},
|
},
|
||||||
@@ -3053,12 +3347,24 @@
|
|||||||
"Top Bar Format": {
|
"Top Bar Format": {
|
||||||
"Top Bar Format": "Formato da Barra Superior"
|
"Top Bar Format": "Formato da Barra Superior"
|
||||||
},
|
},
|
||||||
|
"Top Left": {
|
||||||
|
"Top Left": ""
|
||||||
|
},
|
||||||
|
"Top Processes": {
|
||||||
|
"Top Processes": ""
|
||||||
|
},
|
||||||
|
"Top Right": {
|
||||||
|
"Top Right": ""
|
||||||
|
},
|
||||||
"Top Section": {
|
"Top Section": {
|
||||||
"Top Section": "Seção do topo"
|
"Top Section": "Seção do topo"
|
||||||
},
|
},
|
||||||
"Total Jobs": {
|
"Total Jobs": {
|
||||||
"Total Jobs": ""
|
"Total Jobs": ""
|
||||||
},
|
},
|
||||||
|
"Transform": {
|
||||||
|
"Transform": ""
|
||||||
|
},
|
||||||
"Transition Effect": {
|
"Transition Effect": {
|
||||||
"Transition Effect": "Efeito de Transição"
|
"Transition Effect": "Efeito de Transição"
|
||||||
},
|
},
|
||||||
@@ -3182,9 +3488,27 @@
|
|||||||
"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": ""
|
||||||
|
},
|
||||||
|
"VRR On-Demand": {
|
||||||
|
"VRR On-Demand": ""
|
||||||
|
},
|
||||||
|
"VRR activates only when applications request it": {
|
||||||
|
"VRR activates only when applications request it": ""
|
||||||
|
},
|
||||||
"VRR: ": {
|
"VRR: ": {
|
||||||
"VRR: ": ""
|
"VRR: ": ""
|
||||||
},
|
},
|
||||||
|
"Variable Refresh Rate": {
|
||||||
|
"Variable Refresh Rate": ""
|
||||||
|
},
|
||||||
|
"Variant created - expand to configure": {
|
||||||
|
"Variant created - expand to configure": ""
|
||||||
|
},
|
||||||
|
"Variant removed": {
|
||||||
|
"Variant removed": ""
|
||||||
|
},
|
||||||
"Version": {
|
"Version": {
|
||||||
"Version": ""
|
"Version": ""
|
||||||
},
|
},
|
||||||
@@ -3260,6 +3584,10 @@
|
|||||||
"When enabled, shows the launcher overlay when typing in Niri overview mode. Disable this if you prefer to not have the launcher when typing on Niri overview or want to use other launcher in the overview.": {
|
"When enabled, shows the launcher overlay when typing in Niri overview mode. Disable this if you prefer to not have the launcher when typing on Niri overview or want to use other launcher in the overview.": {
|
||||||
"When enabled, shows the launcher overlay when typing in Niri overview mode. Disable this if you prefer to not have the launcher when typing on Niri overview or want to use other launcher in the overview.": ""
|
"When enabled, shows the launcher overlay when typing in Niri overview mode. Disable this if you prefer to not have the launcher when typing on Niri overview or want to use other launcher in the overview.": ""
|
||||||
},
|
},
|
||||||
|
"When updater widget is used, then hide it if no update found": {
|
||||||
|
"Hide Updater Widget": "",
|
||||||
|
"When updater widget is used, then hide it if no update found": ""
|
||||||
|
},
|
||||||
"Wi-Fi Password": {
|
"Wi-Fi Password": {
|
||||||
"Wi-Fi Password": ""
|
"Wi-Fi Password": ""
|
||||||
},
|
},
|
||||||
@@ -3278,6 +3606,9 @@
|
|||||||
"WiFi is off": {
|
"WiFi is off": {
|
||||||
"WiFi is off": "WiFi desligado"
|
"WiFi is off": "WiFi desligado"
|
||||||
},
|
},
|
||||||
|
"Wide (BT2020)": {
|
||||||
|
"Wide (BT2020)": ""
|
||||||
|
},
|
||||||
"Widget Background Color": {
|
"Widget Background Color": {
|
||||||
"Widget Background Color": ""
|
"Widget Background Color": ""
|
||||||
},
|
},
|
||||||
@@ -3296,6 +3627,9 @@
|
|||||||
"Widget Transparency": {
|
"Widget Transparency": {
|
||||||
"Widget Transparency": ""
|
"Widget Transparency": ""
|
||||||
},
|
},
|
||||||
|
"Widget Variants": {
|
||||||
|
"Widget Variants": ""
|
||||||
|
},
|
||||||
"Widgets": {
|
"Widgets": {
|
||||||
"Widgets": "Widgets"
|
"Widgets": "Widgets"
|
||||||
},
|
},
|
||||||
@@ -3305,6 +3639,9 @@
|
|||||||
"Wind Speed": {
|
"Wind Speed": {
|
||||||
"Wind Speed": ""
|
"Wind Speed": ""
|
||||||
},
|
},
|
||||||
|
"Window Gaps (px)": {
|
||||||
|
"Window Gaps (px)": ""
|
||||||
|
},
|
||||||
"Workspace": {
|
"Workspace": {
|
||||||
"Workspace": "Área de Trabalho"
|
"Workspace": "Área de Trabalho"
|
||||||
},
|
},
|
||||||
@@ -3326,6 +3663,12 @@
|
|||||||
"Workspaces & Widgets": {
|
"Workspaces & Widgets": {
|
||||||
"Workspaces & Widgets": ""
|
"Workspaces & Widgets": ""
|
||||||
},
|
},
|
||||||
|
"X Axis": {
|
||||||
|
"X Axis": ""
|
||||||
|
},
|
||||||
|
"Y Axis": {
|
||||||
|
"Y Axis": ""
|
||||||
|
},
|
||||||
"Yes": {
|
"Yes": {
|
||||||
"Yes": ""
|
"Yes": ""
|
||||||
},
|
},
|
||||||
@@ -3398,6 +3741,9 @@
|
|||||||
"settings window title": {
|
"settings window title": {
|
||||||
"Settings": ""
|
"Settings": ""
|
||||||
},
|
},
|
||||||
|
"settings_displays": {
|
||||||
|
"Widgets": ""
|
||||||
|
},
|
||||||
"sysmon window title": {
|
"sysmon window title": {
|
||||||
"System Monitor": ""
|
"System Monitor": ""
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -50,12 +50,18 @@
|
|||||||
"10 seconds": {
|
"10 seconds": {
|
||||||
"10 seconds": "10 saniye"
|
"10 seconds": "10 saniye"
|
||||||
},
|
},
|
||||||
|
"10-bit Color": {
|
||||||
|
"10-bit Color": ""
|
||||||
|
},
|
||||||
"14 days": {
|
"14 days": {
|
||||||
"14 days": ""
|
"14 days": ""
|
||||||
},
|
},
|
||||||
"15 seconds": {
|
"15 seconds": {
|
||||||
"15 seconds": "15 saniye"
|
"15 seconds": "15 saniye"
|
||||||
},
|
},
|
||||||
|
"180°": {
|
||||||
|
"180°": ""
|
||||||
|
},
|
||||||
"2 minutes": {
|
"2 minutes": {
|
||||||
"2 minutes": "2 dakika"
|
"2 minutes": "2 dakika"
|
||||||
},
|
},
|
||||||
@@ -65,6 +71,9 @@
|
|||||||
"24-hour format": {
|
"24-hour format": {
|
||||||
"24-hour format": "24-saat biçimi"
|
"24-hour format": "24-saat biçimi"
|
||||||
},
|
},
|
||||||
|
"270°": {
|
||||||
|
"270°": ""
|
||||||
|
},
|
||||||
"3 days": {
|
"3 days": {
|
||||||
"3 days": ""
|
"3 days": ""
|
||||||
},
|
},
|
||||||
@@ -95,6 +104,9 @@
|
|||||||
"90 days": {
|
"90 days": {
|
||||||
"90 days": ""
|
"90 days": ""
|
||||||
},
|
},
|
||||||
|
"90°": {
|
||||||
|
"90°": ""
|
||||||
|
},
|
||||||
"A file with this name already exists. Do you want to overwrite it?": {
|
"A file with this name already exists. Do you want to overwrite it?": {
|
||||||
"A file with this name already exists. Do you want to overwrite it?": "Bu isimde bir dosya zaten var. Üzerine yazmak istiyor musunuz?"
|
"A file with this name already exists. Do you want to overwrite it?": "Bu isimde bir dosya zaten var. Üzerine yazmak istiyor musunuz?"
|
||||||
},
|
},
|
||||||
@@ -200,6 +212,9 @@
|
|||||||
"Amount": {
|
"Amount": {
|
||||||
"Amount": "Miktar"
|
"Amount": "Miktar"
|
||||||
},
|
},
|
||||||
|
"Analog": {
|
||||||
|
"Analog": ""
|
||||||
|
},
|
||||||
"Animation Speed": {
|
"Animation Speed": {
|
||||||
"Animation Speed": "Animasyon Hızı"
|
"Animation Speed": "Animasyon Hızı"
|
||||||
},
|
},
|
||||||
@@ -218,6 +233,9 @@
|
|||||||
"Applications": {
|
"Applications": {
|
||||||
"Applications": "Uygulamalar"
|
"Applications": "Uygulamalar"
|
||||||
},
|
},
|
||||||
|
"Apply Changes": {
|
||||||
|
"Apply Changes": ""
|
||||||
|
},
|
||||||
"Apply GTK Colors": {
|
"Apply GTK Colors": {
|
||||||
"Apply GTK Colors": "GTK Renklerini Uygula"
|
"Apply GTK Colors": "GTK Renklerini Uygula"
|
||||||
},
|
},
|
||||||
@@ -233,6 +251,9 @@
|
|||||||
"Apps are ordered by usage frequency, then last used, then alphabetically.": {
|
"Apps are ordered by usage frequency, then last used, then alphabetically.": {
|
||||||
"Apps are ordered by usage frequency, then last used, then alphabetically.": "Uygulamalar önce kullanım sıklığına göre, daha sonra son kullanılana göre ve en son alfabetik olarak sıralanır."
|
"Apps are ordered by usage frequency, then last used, then alphabetically.": "Uygulamalar önce kullanım sıklığına göre, daha sonra son kullanılana göre ve en son alfabetik olarak sıralanır."
|
||||||
},
|
},
|
||||||
|
"Arrange displays and configure resolution, refresh rate, and VRR": {
|
||||||
|
"Arrange displays and configure resolution, refresh rate, and VRR": ""
|
||||||
|
},
|
||||||
"Audio": {
|
"Audio": {
|
||||||
"Audio": "Ses"
|
"Audio": "Ses"
|
||||||
},
|
},
|
||||||
@@ -284,6 +305,9 @@
|
|||||||
"Auto": {
|
"Auto": {
|
||||||
"Auto": "Oto"
|
"Auto": "Oto"
|
||||||
},
|
},
|
||||||
|
"Auto (Wide)": {
|
||||||
|
"Auto (Wide)": ""
|
||||||
|
},
|
||||||
"Auto Location": {
|
"Auto Location": {
|
||||||
"Auto Location": "Otomatik Konum"
|
"Auto Location": "Otomatik Konum"
|
||||||
},
|
},
|
||||||
@@ -365,6 +389,9 @@
|
|||||||
"Backend": {
|
"Backend": {
|
||||||
"Backend": "Arka Uç"
|
"Backend": "Arka Uç"
|
||||||
},
|
},
|
||||||
|
"Background Opacity": {
|
||||||
|
"Background Opacity": ""
|
||||||
|
},
|
||||||
"Balanced palette with focused accents (default).": {
|
"Balanced palette with focused accents (default).": {
|
||||||
"Balanced palette with focused accents (default).": "Odaklanmış vurgularla dengeli palet (varsayılan)."
|
"Balanced palette with focused accents (default).": "Odaklanmış vurgularla dengeli palet (varsayılan)."
|
||||||
},
|
},
|
||||||
@@ -392,6 +419,9 @@
|
|||||||
"Binds include added": {
|
"Binds include added": {
|
||||||
"Binds include added": "Bağlantı dahili eklendi"
|
"Binds include added": "Bağlantı dahili eklendi"
|
||||||
},
|
},
|
||||||
|
"Bit Depth": {
|
||||||
|
"Bit Depth": ""
|
||||||
|
},
|
||||||
"Bluetooth": {
|
"Bluetooth": {
|
||||||
"Bluetooth": "Bluetooth"
|
"Bluetooth": "Bluetooth"
|
||||||
},
|
},
|
||||||
@@ -422,6 +452,12 @@
|
|||||||
"Bottom": {
|
"Bottom": {
|
||||||
"Bottom": "Alt"
|
"Bottom": "Alt"
|
||||||
},
|
},
|
||||||
|
"Bottom Left": {
|
||||||
|
"Bottom Left": ""
|
||||||
|
},
|
||||||
|
"Bottom Right": {
|
||||||
|
"Bottom Right": ""
|
||||||
|
},
|
||||||
"Bottom Section": {
|
"Bottom Section": {
|
||||||
"Bottom Section": "Alt Bölüm"
|
"Bottom Section": "Alt Bölüm"
|
||||||
},
|
},
|
||||||
@@ -443,6 +479,9 @@
|
|||||||
"CPU": {
|
"CPU": {
|
||||||
"CPU": "CPU"
|
"CPU": "CPU"
|
||||||
},
|
},
|
||||||
|
"CPU Graph": {
|
||||||
|
"CPU Graph": ""
|
||||||
|
},
|
||||||
"CPU Temperature": {
|
"CPU Temperature": {
|
||||||
"CPU Temperature": "CPU Sıcaklığı"
|
"CPU Temperature": "CPU Sıcaklığı"
|
||||||
},
|
},
|
||||||
@@ -491,6 +530,9 @@
|
|||||||
"Center Section": {
|
"Center Section": {
|
||||||
"Center Section": "Orta Bölüm"
|
"Center Section": "Orta Bölüm"
|
||||||
},
|
},
|
||||||
|
"Center Single Column": {
|
||||||
|
"Center Single Column": ""
|
||||||
|
},
|
||||||
"Center Tiling": {
|
"Center Tiling": {
|
||||||
"Center Tiling": "Merkez Döşeme"
|
"Center Tiling": "Merkez Döşeme"
|
||||||
},
|
},
|
||||||
@@ -536,6 +578,9 @@
|
|||||||
"Choose where on-screen displays appear on screen": {
|
"Choose where on-screen displays appear on screen": {
|
||||||
"Choose where on-screen displays appear on screen": "Ekran gösterimlerinin ekranda nerede gösterileceğini seç"
|
"Choose where on-screen displays appear on screen": "Ekran gösterimlerinin ekranda nerede gösterileceğini seç"
|
||||||
},
|
},
|
||||||
|
"Choose which displays show this widget": {
|
||||||
|
"Choose which displays show this widget": ""
|
||||||
|
},
|
||||||
"Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": {
|
"Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": {
|
||||||
"Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": "Hangi monitörün kilit ekranı arayüzünü göstereceğini seçin. Diğer monitörler, OLED yanma koruması için düz bir renk gösterecektir."
|
"Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": "Hangi monitörün kilit ekranı arayüzünü göstereceğini seçin. Diğer monitörler, OLED yanma koruması için düz bir renk gösterecektir."
|
||||||
},
|
},
|
||||||
@@ -587,6 +632,9 @@
|
|||||||
"Clock": {
|
"Clock": {
|
||||||
"Clock": "Saat"
|
"Clock": "Saat"
|
||||||
},
|
},
|
||||||
|
"Clock Style": {
|
||||||
|
"Clock Style": ""
|
||||||
|
},
|
||||||
"Clock show seconds": {
|
"Clock show seconds": {
|
||||||
"Clock show seconds": "Saat saniyeleri gösterir"
|
"Clock show seconds": "Saat saniyeleri gösterir"
|
||||||
},
|
},
|
||||||
@@ -599,6 +647,12 @@
|
|||||||
"Color": {
|
"Color": {
|
||||||
"Color": "Renk"
|
"Color": "Renk"
|
||||||
},
|
},
|
||||||
|
"Color Gamut": {
|
||||||
|
"Color Gamut": ""
|
||||||
|
},
|
||||||
|
"Color Management": {
|
||||||
|
"Color Management": ""
|
||||||
|
},
|
||||||
"Color Mode": {
|
"Color Mode": {
|
||||||
"Color Mode": "Renk Modu"
|
"Color Mode": "Renk Modu"
|
||||||
},
|
},
|
||||||
@@ -623,6 +677,9 @@
|
|||||||
"Colorful mix of bright contrasting accents.": {
|
"Colorful mix of bright contrasting accents.": {
|
||||||
"Colorful mix of bright contrasting accents.": "Parlak kontrastlı vurguların renkli karışımı."
|
"Colorful mix of bright contrasting accents.": "Parlak kontrastlı vurguların renkli karışımı."
|
||||||
},
|
},
|
||||||
|
"Column": {
|
||||||
|
"Column": ""
|
||||||
|
},
|
||||||
"Command": {
|
"Command": {
|
||||||
"Command": "Komut"
|
"Command": "Komut"
|
||||||
},
|
},
|
||||||
@@ -656,12 +713,27 @@
|
|||||||
"Compositor": {
|
"Compositor": {
|
||||||
"Compositor": "Kompozitör"
|
"Compositor": "Kompozitör"
|
||||||
},
|
},
|
||||||
|
"Compositor Settings": {
|
||||||
|
"Compositor Settings": ""
|
||||||
|
},
|
||||||
|
"Config Format": {
|
||||||
|
"Config Format": ""
|
||||||
|
},
|
||||||
"Config action: %1": {
|
"Config action: %1": {
|
||||||
"Config action: %1": "Yapılandırma eylemi: %1"
|
"Config action: %1": "Yapılandırma eylemi: %1"
|
||||||
},
|
},
|
||||||
|
"Config validation failed": {
|
||||||
|
"Config validation failed": ""
|
||||||
|
},
|
||||||
|
"Configuration": {
|
||||||
|
"Configuration": ""
|
||||||
|
},
|
||||||
"Configuration activated": {
|
"Configuration activated": {
|
||||||
"Configuration activated": "Yapılandırma aktifleştirildi"
|
"Configuration activated": "Yapılandırma aktifleştirildi"
|
||||||
},
|
},
|
||||||
|
"Configuration will be preserved when this display reconnects": {
|
||||||
|
"Configuration will be preserved when this display reconnects": ""
|
||||||
|
},
|
||||||
"Configure a new printer": {
|
"Configure a new printer": {
|
||||||
"Configure a new printer": "Yeni bir yazıcı yapılandır"
|
"Configure a new printer": "Yeni bir yazıcı yapılandır"
|
||||||
},
|
},
|
||||||
@@ -710,6 +782,9 @@
|
|||||||
"Control currently playing media": {
|
"Control currently playing media": {
|
||||||
"Control currently playing media": "Şu anda oynatılan medyayı kontrol et"
|
"Control currently playing media": "Şu anda oynatılan medyayı kontrol et"
|
||||||
},
|
},
|
||||||
|
"Control workspaces and columns by scrolling on the bar": {
|
||||||
|
"Control workspaces and columns by scrolling on the bar": ""
|
||||||
|
},
|
||||||
"Controls opacity of all popouts, modals, and their content layers": {
|
"Controls opacity of all popouts, modals, and their content layers": {
|
||||||
"Controls opacity of all popouts, modals, and their content layers": "Tüm açılır pencerelerin, modal pencerelerin ve bunların içerik katmanlarının opaklığını kontrol eder."
|
"Controls opacity of all popouts, modals, and their content layers": "Tüm açılır pencerelerin, modal pencerelerin ve bunların içerik katmanlarının opaklığını kontrol eder."
|
||||||
},
|
},
|
||||||
@@ -815,6 +890,9 @@
|
|||||||
"Custom Transparency": {
|
"Custom Transparency": {
|
||||||
"Custom Transparency": "Özel Şeffaflık"
|
"Custom Transparency": "Özel Şeffaflık"
|
||||||
},
|
},
|
||||||
|
"Custom...": {
|
||||||
|
"Custom...": ""
|
||||||
|
},
|
||||||
"Custom: ": {
|
"Custom: ": {
|
||||||
"Custom: ": "Özel: "
|
"Custom: ": "Özel: "
|
||||||
},
|
},
|
||||||
@@ -896,6 +974,9 @@
|
|||||||
"Default": {
|
"Default": {
|
||||||
"Default": "Varsayılan"
|
"Default": "Varsayılan"
|
||||||
},
|
},
|
||||||
|
"Default Width (%)": {
|
||||||
|
"Default Width (%)": ""
|
||||||
|
},
|
||||||
"Default selected action": {
|
"Default selected action": {
|
||||||
"Default selected action": "Ön tanımlı seçili eylem"
|
"Default selected action": "Ön tanımlı seçili eylem"
|
||||||
},
|
},
|
||||||
@@ -923,6 +1004,12 @@
|
|||||||
"Description": {
|
"Description": {
|
||||||
"Description": "Tanım"
|
"Description": "Tanım"
|
||||||
},
|
},
|
||||||
|
"Desktop Clock": {
|
||||||
|
"Desktop Clock": ""
|
||||||
|
},
|
||||||
|
"Desktop Widgets": {
|
||||||
|
"Desktop Widgets": ""
|
||||||
|
},
|
||||||
"Desktop background images": {
|
"Desktop background images": {
|
||||||
"Desktop background images": "Masaüstü arkaplan resimleri"
|
"Desktop background images": "Masaüstü arkaplan resimleri"
|
||||||
},
|
},
|
||||||
@@ -935,6 +1022,9 @@
|
|||||||
"Device paired": {
|
"Device paired": {
|
||||||
"Device paired": "Cihaz eşleştirildi"
|
"Device paired": "Cihaz eşleştirildi"
|
||||||
},
|
},
|
||||||
|
"Digital": {
|
||||||
|
"Digital": ""
|
||||||
|
},
|
||||||
"Disable Autoconnect": {
|
"Disable Autoconnect": {
|
||||||
"Disable Autoconnect": "Otomatik Bağlanmayı Devre Dışı Bırak"
|
"Disable Autoconnect": "Otomatik Bağlanmayı Devre Dışı Bırak"
|
||||||
},
|
},
|
||||||
@@ -947,12 +1037,18 @@
|
|||||||
"Disable History Persistence": {
|
"Disable History Persistence": {
|
||||||
"Disable History Persistence": ""
|
"Disable History Persistence": ""
|
||||||
},
|
},
|
||||||
|
"Disable Output": {
|
||||||
|
"Disable Output": ""
|
||||||
|
},
|
||||||
"Disable clipboard manager entirely (requires restart)": {
|
"Disable clipboard manager entirely (requires restart)": {
|
||||||
"Disable clipboard manager entirely (requires restart)": ""
|
"Disable clipboard manager entirely (requires restart)": ""
|
||||||
},
|
},
|
||||||
"Disabled": {
|
"Disabled": {
|
||||||
"Disabled": "Devre Dışı"
|
"Disabled": "Devre Dışı"
|
||||||
},
|
},
|
||||||
|
"Discard": {
|
||||||
|
"Discard": ""
|
||||||
|
},
|
||||||
"Disconnect": {
|
"Disconnect": {
|
||||||
"Disconnect": "Bağlantıyı Kes"
|
"Disconnect": "Bağlantıyı Kes"
|
||||||
},
|
},
|
||||||
@@ -977,6 +1073,9 @@
|
|||||||
"Display Name Format": {
|
"Display Name Format": {
|
||||||
"Display Name Format": "Ekran İsim Formatı"
|
"Display Name Format": "Ekran İsim Formatı"
|
||||||
},
|
},
|
||||||
|
"Display Settings": {
|
||||||
|
"Display Settings": ""
|
||||||
|
},
|
||||||
"Display a dock with pinned and running applications": {
|
"Display a dock with pinned and running applications": {
|
||||||
"Display a dock with pinned and running applications": "Sabitlenmiş ve çalışan uygulamaları içeren bir dock göster"
|
"Display a dock with pinned and running applications": "Sabitlenmiş ve çalışan uygulamaları içeren bir dock göster"
|
||||||
},
|
},
|
||||||
@@ -989,6 +1088,9 @@
|
|||||||
"Display application icons in workspace indicators": {
|
"Display application icons in workspace indicators": {
|
||||||
"Display application icons in workspace indicators": "Çalışma alanı göstergesinde uygulama simgelerini göster"
|
"Display application icons in workspace indicators": "Çalışma alanı göstergesinde uygulama simgelerini göster"
|
||||||
},
|
},
|
||||||
|
"Display configuration is not available. WLR output management protocol not supported.": {
|
||||||
|
"Display configuration is not available. WLR output management protocol not supported.": ""
|
||||||
|
},
|
||||||
"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"
|
||||||
},
|
},
|
||||||
@@ -1079,6 +1181,9 @@
|
|||||||
"Empty": {
|
"Empty": {
|
||||||
"Empty": "Boş"
|
"Empty": "Boş"
|
||||||
},
|
},
|
||||||
|
"Enable 10-bit color depth for wider color gamut and HDR support": {
|
||||||
|
"Enable 10-bit color depth for wider color gamut and HDR support": ""
|
||||||
|
},
|
||||||
"Enable Autoconnect": {
|
"Enable Autoconnect": {
|
||||||
"Enable Autoconnect": "Otomatik Bağlanmayı Etkinleştir"
|
"Enable Autoconnect": "Otomatik Bağlanmayı Etkinleştir"
|
||||||
},
|
},
|
||||||
@@ -1088,6 +1193,9 @@
|
|||||||
"Enable Border": {
|
"Enable Border": {
|
||||||
"Enable Border": "Kenarlığı Etkinleştir"
|
"Enable Border": "Kenarlığı Etkinleştir"
|
||||||
},
|
},
|
||||||
|
"Enable Desktop Clock": {
|
||||||
|
"Enable Desktop Clock": ""
|
||||||
|
},
|
||||||
"Enable Do Not Disturb": {
|
"Enable Do Not Disturb": {
|
||||||
"Enable Do Not Disturb": "Rahatsız Etmeyi Etkinleştir"
|
"Enable Do Not Disturb": "Rahatsız Etmeyi Etkinleştir"
|
||||||
},
|
},
|
||||||
@@ -1097,6 +1205,9 @@
|
|||||||
"Enable Overview Overlay": {
|
"Enable Overview Overlay": {
|
||||||
"Enable Overview Overlay": "Genel Görünüm Katmanını Etkinleştir"
|
"Enable Overview Overlay": "Genel Görünüm Katmanını Etkinleştir"
|
||||||
},
|
},
|
||||||
|
"Enable System Monitor": {
|
||||||
|
"Enable System Monitor": ""
|
||||||
|
},
|
||||||
"Enable System Sounds": {
|
"Enable System Sounds": {
|
||||||
"Enable System Sounds": "Sistem Seslerini Etkinleştir"
|
"Enable System Sounds": "Sistem Seslerini Etkinleştir"
|
||||||
},
|
},
|
||||||
@@ -1187,6 +1298,9 @@
|
|||||||
"Exclusive Zone Offset": {
|
"Exclusive Zone Offset": {
|
||||||
"Exclusive Zone Offset": "Özel Bölge Ofseti"
|
"Exclusive Zone Offset": "Özel Bölge Ofseti"
|
||||||
},
|
},
|
||||||
|
"Experimental Feature": {
|
||||||
|
"Experimental Feature": ""
|
||||||
|
},
|
||||||
"F1/I: Toggle • F10: Help": {
|
"F1/I: Toggle • F10: Help": {
|
||||||
"F1/I: Toggle • F10: Help": "F1/I: Değiştir • F10: Yardım"
|
"F1/I: Toggle • F10: Help": "F1/I: Değiştir • F10: Yardım"
|
||||||
},
|
},
|
||||||
@@ -1316,6 +1430,9 @@
|
|||||||
"Failed to update sharing": {
|
"Failed to update sharing": {
|
||||||
"Failed to update sharing": "Paylaşım güncellenemedi"
|
"Failed to update sharing": "Paylaşım güncellenemedi"
|
||||||
},
|
},
|
||||||
|
"Failed to write temp file for validation": {
|
||||||
|
"Failed to write temp file for validation": ""
|
||||||
|
},
|
||||||
"Feels Like": {
|
"Feels Like": {
|
||||||
"Feels Like": "Hissedilen"
|
"Feels Like": "Hissedilen"
|
||||||
},
|
},
|
||||||
@@ -1349,6 +1466,21 @@
|
|||||||
"Fixing...": {
|
"Fixing...": {
|
||||||
"Fixing...": "Düzeltiliyor..."
|
"Fixing...": "Düzeltiliyor..."
|
||||||
},
|
},
|
||||||
|
"Flipped": {
|
||||||
|
"Flipped": ""
|
||||||
|
},
|
||||||
|
"Flipped 180°": {
|
||||||
|
"Flipped 180°": ""
|
||||||
|
},
|
||||||
|
"Flipped 270°": {
|
||||||
|
"Flipped 270°": ""
|
||||||
|
},
|
||||||
|
"Flipped 90°": {
|
||||||
|
"Flipped 90°": ""
|
||||||
|
},
|
||||||
|
"Focus at Startup": {
|
||||||
|
"Focus at Startup": ""
|
||||||
|
},
|
||||||
"Focused Window": {
|
"Focused Window": {
|
||||||
"Focused Window": "Odaklanılmış Pencere"
|
"Focused Window": "Odaklanılmış Pencere"
|
||||||
},
|
},
|
||||||
@@ -1367,9 +1499,15 @@
|
|||||||
"Font Weight": {
|
"Font Weight": {
|
||||||
"Font Weight": "Yazı Tipi Ağırlığı"
|
"Font Weight": "Yazı Tipi Ağırlığı"
|
||||||
},
|
},
|
||||||
|
"Force HDR": {
|
||||||
|
"Force HDR": ""
|
||||||
|
},
|
||||||
"Force Kill Process": {
|
"Force Kill Process": {
|
||||||
"Force Kill Process": "Süreci Zorla Kapat"
|
"Force Kill Process": "Süreci Zorla Kapat"
|
||||||
},
|
},
|
||||||
|
"Force Wide Color": {
|
||||||
|
"Force Wide Color": ""
|
||||||
|
},
|
||||||
"Force terminal applications to always use dark color schemes": {
|
"Force terminal applications to always use dark color schemes": {
|
||||||
"Force terminal applications to always use dark color schemes": "Terminal uygulamalarının her zaman koyu renk şemalarını kullanmasını zorla"
|
"Force terminal applications to always use dark color schemes": "Terminal uygulamalarının her zaman koyu renk şemalarını kullanmasını zorla"
|
||||||
},
|
},
|
||||||
@@ -1433,6 +1571,9 @@
|
|||||||
"Gradually fade the screen before locking with a configurable grace period": {
|
"Gradually fade the screen before locking with a configurable grace period": {
|
||||||
"Gradually fade the screen before locking with a configurable grace period": "Yapılandırılabilir bir bekleme süresi ile kilitlemeden önce ekranı kademeli olarak karartın"
|
"Gradually fade the screen before locking with a configurable grace period": "Yapılandırılabilir bir bekleme süresi ile kilitlemeden önce ekranı kademeli olarak karartın"
|
||||||
},
|
},
|
||||||
|
"Graph Time Range": {
|
||||||
|
"Graph Time Range": ""
|
||||||
|
},
|
||||||
"Graphics": {
|
"Graphics": {
|
||||||
"Graphics": "Grafik"
|
"Graphics": "Grafik"
|
||||||
},
|
},
|
||||||
@@ -1448,6 +1589,15 @@
|
|||||||
"Group multiple windows of the same app together with a window count indicator": {
|
"Group multiple windows of the same app together with a window count indicator": {
|
||||||
"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"
|
||||||
},
|
},
|
||||||
|
"HDR (EDID)": {
|
||||||
|
"HDR (EDID)": ""
|
||||||
|
},
|
||||||
|
"HDR Tone Mapping": {
|
||||||
|
"HDR Tone Mapping": ""
|
||||||
|
},
|
||||||
|
"HDR mode is experimental. Verify your monitor supports HDR before enabling.": {
|
||||||
|
"HDR mode is experimental. Verify your monitor supports HDR before enabling.": ""
|
||||||
|
},
|
||||||
"HSV": {
|
"HSV": {
|
||||||
"HSV": "HSV"
|
"HSV": "HSV"
|
||||||
},
|
},
|
||||||
@@ -1457,6 +1607,9 @@
|
|||||||
"Held": {
|
"Held": {
|
||||||
"Held": "Bekletildi"
|
"Held": "Bekletildi"
|
||||||
},
|
},
|
||||||
|
"Help": {
|
||||||
|
"Help": ""
|
||||||
|
},
|
||||||
"Hex": {
|
"Hex": {
|
||||||
"Hex": "Hex"
|
"Hex": "Hex"
|
||||||
},
|
},
|
||||||
@@ -1496,6 +1649,9 @@
|
|||||||
"Hold to confirm (%1s)": {
|
"Hold to confirm (%1s)": {
|
||||||
"Hold to confirm (%1s)": "Onaylamak için basılı tutun (%1s)"
|
"Hold to confirm (%1s)": "Onaylamak için basılı tutun (%1s)"
|
||||||
},
|
},
|
||||||
|
"Hot Corners": {
|
||||||
|
"Hot Corners": ""
|
||||||
|
},
|
||||||
"Hotkey overlay title (optional)": {
|
"Hotkey overlay title (optional)": {
|
||||||
"Hotkey overlay title (optional)": "Kısayol katmanı başlığı (opsiyonel)"
|
"Hotkey overlay title (optional)": "Kısayol katmanı başlığı (opsiyonel)"
|
||||||
},
|
},
|
||||||
@@ -1565,6 +1721,9 @@
|
|||||||
"Include Transitions": {
|
"Include Transitions": {
|
||||||
"Include Transitions": "Geçişleri Dahil Et"
|
"Include Transitions": "Geçişleri Dahil Et"
|
||||||
},
|
},
|
||||||
|
"Incompatible Plugins Loaded": {
|
||||||
|
"Incompatible Plugins Loaded": ""
|
||||||
|
},
|
||||||
"Incorrect password": {
|
"Incorrect password": {
|
||||||
"Incorrect password": "Hatalı parola"
|
"Incorrect password": "Hatalı parola"
|
||||||
},
|
},
|
||||||
@@ -1577,6 +1736,9 @@
|
|||||||
"Individual bar configuration": {
|
"Individual bar configuration": {
|
||||||
"Individual bar configuration": "Bireysel bar yapılandırması"
|
"Individual bar configuration": "Bireysel bar yapılandırması"
|
||||||
},
|
},
|
||||||
|
"Inherit": {
|
||||||
|
"Inherit": ""
|
||||||
|
},
|
||||||
"Inhibit idle timeout when audio or video is playing": {
|
"Inhibit idle timeout when audio or video is playing": {
|
||||||
"Inhibit idle timeout when audio or video is playing": "Ses veya video oynatılırken boşta kalma süresini engelle"
|
"Inhibit idle timeout when audio or video is playing": "Ses veya video oynatılırken boşta kalma süresini engelle"
|
||||||
},
|
},
|
||||||
@@ -1598,6 +1760,9 @@
|
|||||||
"Interval": {
|
"Interval": {
|
||||||
"Interval": "Aralık"
|
"Interval": "Aralık"
|
||||||
},
|
},
|
||||||
|
"Invalid configuration": {
|
||||||
|
"Invalid configuration": ""
|
||||||
|
},
|
||||||
"Invert on mode change": {
|
"Invert on mode change": {
|
||||||
"Invert on mode change": "Mod değişikliğinde ters çevir"
|
"Invert on mode change": "Mod değişikliğinde ters çevir"
|
||||||
},
|
},
|
||||||
@@ -1670,6 +1835,9 @@
|
|||||||
"Layout": {
|
"Layout": {
|
||||||
"Layout": "Düzen"
|
"Layout": "Düzen"
|
||||||
},
|
},
|
||||||
|
"Layout Overrides": {
|
||||||
|
"Layout Overrides": ""
|
||||||
|
},
|
||||||
"Left": {
|
"Left": {
|
||||||
"Left": "Sol"
|
"Left": "Sol"
|
||||||
},
|
},
|
||||||
@@ -1682,6 +1850,9 @@
|
|||||||
"Lines: %1": {
|
"Lines: %1": {
|
||||||
"Lines: %1": "Satırlar: %1"
|
"Lines: %1": "Satırlar: %1"
|
||||||
},
|
},
|
||||||
|
"List": {
|
||||||
|
"List": ""
|
||||||
|
},
|
||||||
"Lively palette with saturated accents.": {
|
"Lively palette with saturated accents.": {
|
||||||
"Lively palette with saturated accents.": "Doygun vurgularla canlı renk paleti."
|
"Lively palette with saturated accents.": "Doygun vurgularla canlı renk paleti."
|
||||||
},
|
},
|
||||||
@@ -1847,6 +2018,9 @@
|
|||||||
"Memory": {
|
"Memory": {
|
||||||
"Memory": "Bellek"
|
"Memory": "Bellek"
|
||||||
},
|
},
|
||||||
|
"Memory Graph": {
|
||||||
|
"Memory Graph": ""
|
||||||
|
},
|
||||||
"Memory Usage": {
|
"Memory Usage": {
|
||||||
"Memory Usage": "Bellek Kullanımı"
|
"Memory Usage": "Bellek Kullanımı"
|
||||||
},
|
},
|
||||||
@@ -1883,6 +2057,12 @@
|
|||||||
"Model": {
|
"Model": {
|
||||||
"Model": "Model"
|
"Model": "Model"
|
||||||
},
|
},
|
||||||
|
"Modified": {
|
||||||
|
"Modified": ""
|
||||||
|
},
|
||||||
|
"Monitor Configuration": {
|
||||||
|
"Monitor Configuration": ""
|
||||||
|
},
|
||||||
"Monitor whose wallpaper drives dynamic theming colors": {
|
"Monitor whose wallpaper drives dynamic theming colors": {
|
||||||
"Monitor whose wallpaper drives dynamic theming colors": "Duvar kağıdı dinamik tema renklerini yönlendiren monitör"
|
"Monitor whose wallpaper drives dynamic theming colors": "Duvar kağıdı dinamik tema renklerini yönlendiren monitör"
|
||||||
},
|
},
|
||||||
@@ -1898,6 +2078,9 @@
|
|||||||
"Mount": {
|
"Mount": {
|
||||||
"Mount": "Bağlı"
|
"Mount": "Bağlı"
|
||||||
},
|
},
|
||||||
|
"Move Widget": {
|
||||||
|
"Move Widget": ""
|
||||||
|
},
|
||||||
"Moving to Paused": {
|
"Moving to Paused": {
|
||||||
"Moving to Paused": "Duraklatılıyor"
|
"Moving to Paused": "Duraklatılıyor"
|
||||||
},
|
},
|
||||||
@@ -1919,6 +2102,9 @@
|
|||||||
"Network": {
|
"Network": {
|
||||||
"Network": "Ağ"
|
"Network": "Ağ"
|
||||||
},
|
},
|
||||||
|
"Network Graph": {
|
||||||
|
"Network Graph": ""
|
||||||
|
},
|
||||||
"Network Info": {
|
"Network Info": {
|
||||||
"Network Info": "Ağ Bilgisi"
|
"Network Info": "Ağ Bilgisi"
|
||||||
},
|
},
|
||||||
@@ -2015,6 +2201,9 @@
|
|||||||
"No drivers found": {
|
"No drivers found": {
|
||||||
"No drivers found": "Sürücü bulunamadı"
|
"No drivers found": "Sürücü bulunamadı"
|
||||||
},
|
},
|
||||||
|
"No features enabled": {
|
||||||
|
"No features enabled": ""
|
||||||
|
},
|
||||||
"No files found": {
|
"No files found": {
|
||||||
"No files found": "Dosya bulunamadı"
|
"No files found": "Dosya bulunamadı"
|
||||||
},
|
},
|
||||||
@@ -2042,9 +2231,15 @@
|
|||||||
"No printers found": {
|
"No printers found": {
|
||||||
"No printers found": "Hiçbir yazıcı bulunmadı"
|
"No printers found": "Hiçbir yazıcı bulunmadı"
|
||||||
},
|
},
|
||||||
|
"No variants created. Click Add to create a new monitor widget.": {
|
||||||
|
"No variants created. Click Add to create a new monitor widget.": ""
|
||||||
|
},
|
||||||
"None": {
|
"None": {
|
||||||
"None": "Hiçbiri"
|
"None": "Hiçbiri"
|
||||||
},
|
},
|
||||||
|
"Normal": {
|
||||||
|
"Normal": ""
|
||||||
|
},
|
||||||
"Normal Font": {
|
"Normal Font": {
|
||||||
"Normal Font": "Normal Yazı Tipi"
|
"Normal Font": "Normal Yazı Tipi"
|
||||||
},
|
},
|
||||||
@@ -2096,6 +2291,9 @@
|
|||||||
"OSD Position": {
|
"OSD Position": {
|
||||||
"OSD Position": "OSD Pozisyonu"
|
"OSD Position": "OSD Pozisyonu"
|
||||||
},
|
},
|
||||||
|
"Off": {
|
||||||
|
"Off": ""
|
||||||
|
},
|
||||||
"Office": {
|
"Office": {
|
||||||
"Office": "Ofis"
|
"Office": "Ofis"
|
||||||
},
|
},
|
||||||
@@ -2159,12 +2357,18 @@
|
|||||||
"Output Tray Missing": {
|
"Output Tray Missing": {
|
||||||
"Output Tray Missing": "Çıktı Tepsisi Yok"
|
"Output Tray Missing": "Çıktı Tepsisi Yok"
|
||||||
},
|
},
|
||||||
|
"Outputs Include Missing": {
|
||||||
|
"Outputs Include Missing": ""
|
||||||
|
},
|
||||||
"Overridden by config": {
|
"Overridden by config": {
|
||||||
"Overridden by config": "Yapılandırma tarafından geçersiz kılınmıştır"
|
"Overridden by config": "Yapılandırma tarafından geçersiz kılınmıştır"
|
||||||
},
|
},
|
||||||
"Override": {
|
"Override": {
|
||||||
"Override": "Geçersiz Kıl"
|
"Override": "Geçersiz Kıl"
|
||||||
},
|
},
|
||||||
|
"Override global layout settings for this output": {
|
||||||
|
"Override global layout settings for this output": ""
|
||||||
|
},
|
||||||
"Overrides": {
|
"Overrides": {
|
||||||
"Overrides": "Geçersiz Kılınanlar"
|
"Overrides": "Geçersiz Kılınanlar"
|
||||||
},
|
},
|
||||||
@@ -2324,6 +2528,9 @@
|
|||||||
"Preference": {
|
"Preference": {
|
||||||
"Preference": "Tercih"
|
"Preference": "Tercih"
|
||||||
},
|
},
|
||||||
|
"Preset Widths (%)": {
|
||||||
|
"Preset Widths (%)": ""
|
||||||
|
},
|
||||||
"Press key...": {
|
"Press key...": {
|
||||||
"Press key...": "Tuşa bas..."
|
"Press key...": "Tuşa bas..."
|
||||||
},
|
},
|
||||||
@@ -2372,6 +2579,9 @@
|
|||||||
"Process": {
|
"Process": {
|
||||||
"Process": "Süreç"
|
"Process": "Süreç"
|
||||||
},
|
},
|
||||||
|
"Process Count": {
|
||||||
|
"Process Count": ""
|
||||||
|
},
|
||||||
"Processing": {
|
"Processing": {
|
||||||
"Processing": "İşleniyor"
|
"Processing": "İşleniyor"
|
||||||
},
|
},
|
||||||
@@ -2447,12 +2657,27 @@
|
|||||||
"Require holding button/key to confirm power off, restart, suspend, hibernate and logout": {
|
"Require holding button/key to confirm power off, restart, suspend, hibernate and logout": {
|
||||||
"Require holding button/key to confirm power off, restart, suspend, hibernate and logout": "Güç kapatma, yeniden başlatma, askıya alma, hazırda bekletme ve oturumu kapatma işlemlerini onaylamak için düğmeyi/tuşu basılı tutmak gerekir"
|
"Require holding button/key to confirm power off, restart, suspend, hibernate and logout": "Güç kapatma, yeniden başlatma, askıya alma, hazırda bekletme ve oturumu kapatma işlemlerini onaylamak için düğmeyi/tuşu basılı tutmak gerekir"
|
||||||
},
|
},
|
||||||
|
"Requires DMS": {
|
||||||
|
"Requires DMS": ""
|
||||||
|
},
|
||||||
"Requires DWL compositor": {
|
"Requires DWL compositor": {
|
||||||
"Requires DWL compositor": "DWL kompozitör gerektirir"
|
"Requires DWL compositor": "DWL kompozitör gerektirir"
|
||||||
},
|
},
|
||||||
"Reset": {
|
"Reset": {
|
||||||
"Reset": "Sıfırla"
|
"Reset": "Sıfırla"
|
||||||
},
|
},
|
||||||
|
"Reset Position": {
|
||||||
|
"Reset Position": ""
|
||||||
|
},
|
||||||
|
"Reset Size": {
|
||||||
|
"Reset Size": ""
|
||||||
|
},
|
||||||
|
"Resize Widget": {
|
||||||
|
"Resize Widget": ""
|
||||||
|
},
|
||||||
|
"Resolution & Refresh": {
|
||||||
|
"Resolution & Refresh": ""
|
||||||
|
},
|
||||||
"Resources": {
|
"Resources": {
|
||||||
"Resources": "Kaynaklar"
|
"Resources": "Kaynaklar"
|
||||||
},
|
},
|
||||||
@@ -2483,6 +2708,12 @@
|
|||||||
"Right Tiling": {
|
"Right Tiling": {
|
||||||
"Right Tiling": "Sağ Döşeme"
|
"Right Tiling": "Sağ Döşeme"
|
||||||
},
|
},
|
||||||
|
"Right-click and drag anywhere on the widget": {
|
||||||
|
"Right-click and drag anywhere on the widget": ""
|
||||||
|
},
|
||||||
|
"Right-click and drag the bottom-right corner": {
|
||||||
|
"Right-click and drag the bottom-right corner": ""
|
||||||
|
},
|
||||||
"Right-click bar widget to cycle": {
|
"Right-click bar widget to cycle": {
|
||||||
"Right-click bar widget to cycle": "Çubuk widget'ını sağ tıklayarak döngüye değiştir"
|
"Right-click bar widget to cycle": "Çubuk widget'ını sağ tıklayarak döngüye değiştir"
|
||||||
},
|
},
|
||||||
@@ -2507,6 +2738,12 @@
|
|||||||
"Running Apps Settings": {
|
"Running Apps Settings": {
|
||||||
"Running Apps Settings": "Çalışan Uygulamalar Ayarları"
|
"Running Apps Settings": "Çalışan Uygulamalar Ayarları"
|
||||||
},
|
},
|
||||||
|
"SDR Brightness": {
|
||||||
|
"SDR Brightness": ""
|
||||||
|
},
|
||||||
|
"SDR Saturation": {
|
||||||
|
"SDR Saturation": ""
|
||||||
|
},
|
||||||
"Save": {
|
"Save": {
|
||||||
"Save": "Kaydet"
|
"Save": "Kaydet"
|
||||||
},
|
},
|
||||||
@@ -2522,6 +2759,9 @@
|
|||||||
"Saved Configurations": {
|
"Saved Configurations": {
|
||||||
"Saved Configurations": "Kaydedilen Yapılandırmalar"
|
"Saved Configurations": "Kaydedilen Yapılandırmalar"
|
||||||
},
|
},
|
||||||
|
"Scale": {
|
||||||
|
"Scale": ""
|
||||||
|
},
|
||||||
"Scale DankBar font sizes independently": {
|
"Scale DankBar font sizes independently": {
|
||||||
"Scale DankBar font sizes independently": "DankBar yazı tipi boyutlarını bağımsız olarak ölçeklendir"
|
"Scale DankBar font sizes independently": "DankBar yazı tipi boyutlarını bağımsız olarak ölçeklendir"
|
||||||
},
|
},
|
||||||
@@ -2540,6 +2780,9 @@
|
|||||||
"Screen sharing": {
|
"Screen sharing": {
|
||||||
"Screen sharing": "Ekran paylaşımı"
|
"Screen sharing": "Ekran paylaşımı"
|
||||||
},
|
},
|
||||||
|
"Scroll Wheel": {
|
||||||
|
"Scroll Wheel": ""
|
||||||
|
},
|
||||||
"Scroll song title": {
|
"Scroll song title": {
|
||||||
"Scroll song title": "Şarkı başlığını kaydır"
|
"Scroll song title": "Şarkı başlığını kaydır"
|
||||||
},
|
},
|
||||||
@@ -2570,6 +2813,9 @@
|
|||||||
"Searching...": {
|
"Searching...": {
|
||||||
"Searching...": "Arıyor..."
|
"Searching...": "Arıyor..."
|
||||||
},
|
},
|
||||||
|
"Secondary": {
|
||||||
|
"Secondary": ""
|
||||||
|
},
|
||||||
"Secured": {
|
"Secured": {
|
||||||
"Secured": "Güvenli"
|
"Secured": "Güvenli"
|
||||||
},
|
},
|
||||||
@@ -2666,15 +2912,39 @@
|
|||||||
"Show All Tags": {
|
"Show All Tags": {
|
||||||
"Show All Tags": "Tüm Etiketleri Göster"
|
"Show All Tags": "Tüm Etiketleri Göster"
|
||||||
},
|
},
|
||||||
|
"Show CPU": {
|
||||||
|
"Show CPU": ""
|
||||||
|
},
|
||||||
|
"Show CPU Graph": {
|
||||||
|
"Show CPU Graph": ""
|
||||||
|
},
|
||||||
|
"Show CPU Temp": {
|
||||||
|
"Show CPU Temp": ""
|
||||||
|
},
|
||||||
"Show Confirmation on Power Actions": {
|
"Show Confirmation on Power Actions": {
|
||||||
"Show Confirmation on Power Actions": "Güç Eylemlerinde Onay Göster"
|
"Show Confirmation on Power Actions": "Güç Eylemlerinde Onay Göster"
|
||||||
},
|
},
|
||||||
|
"Show Date": {
|
||||||
|
"Show Date": ""
|
||||||
|
},
|
||||||
|
"Show Disk": {
|
||||||
|
"Show Disk": ""
|
||||||
|
},
|
||||||
"Show Dock": {
|
"Show Dock": {
|
||||||
"Show Dock": "Dock'u Göster"
|
"Show Dock": "Dock'u Göster"
|
||||||
},
|
},
|
||||||
|
"Show GPU Temperature": {
|
||||||
|
"Show GPU Temperature": ""
|
||||||
|
},
|
||||||
|
"Show Header": {
|
||||||
|
"Show Header": ""
|
||||||
|
},
|
||||||
"Show Hibernate": {
|
"Show Hibernate": {
|
||||||
"Show Hibernate": "Hazırda Bekleti Göster"
|
"Show Hibernate": "Hazırda Bekleti Göster"
|
||||||
},
|
},
|
||||||
|
"Show Hour Numbers": {
|
||||||
|
"Show Hour Numbers": ""
|
||||||
|
},
|
||||||
"Show Line Numbers": {
|
"Show Line Numbers": {
|
||||||
"Show Line Numbers": "Satır Numaralarını Göster"
|
"Show Line Numbers": "Satır Numaralarını Göster"
|
||||||
},
|
},
|
||||||
@@ -2684,6 +2954,18 @@
|
|||||||
"Show Log Out": {
|
"Show Log Out": {
|
||||||
"Show Log Out": "Çıkışı Göster"
|
"Show Log Out": "Çıkışı Göster"
|
||||||
},
|
},
|
||||||
|
"Show Memory": {
|
||||||
|
"Show Memory": ""
|
||||||
|
},
|
||||||
|
"Show Memory Graph": {
|
||||||
|
"Show Memory Graph": ""
|
||||||
|
},
|
||||||
|
"Show Network": {
|
||||||
|
"Show Network": ""
|
||||||
|
},
|
||||||
|
"Show Network Graph": {
|
||||||
|
"Show Network Graph": ""
|
||||||
|
},
|
||||||
"Show Occupied Workspaces Only": {
|
"Show Occupied Workspaces Only": {
|
||||||
"Show Occupied Workspaces Only": "Sadece Dolu Çalışma Alanlarını Göster"
|
"Show Occupied Workspaces Only": "Sadece Dolu Çalışma Alanlarını Göster"
|
||||||
},
|
},
|
||||||
@@ -2705,6 +2987,9 @@
|
|||||||
"Show Suspend": {
|
"Show Suspend": {
|
||||||
"Show Suspend": "Askıya Alı Göster"
|
"Show Suspend": "Askıya Alı Göster"
|
||||||
},
|
},
|
||||||
|
"Show Top Processes": {
|
||||||
|
"Show Top Processes": ""
|
||||||
|
},
|
||||||
"Show Workspace Apps": {
|
"Show Workspace Apps": {
|
||||||
"Show Workspace Apps": "Çalışma Alanı Uygulamalarını Göster"
|
"Show Workspace Apps": "Çalışma Alanı Uygulamalarını Göster"
|
||||||
},
|
},
|
||||||
@@ -2807,9 +3092,15 @@
|
|||||||
"Sizing": {
|
"Sizing": {
|
||||||
"Sizing": "Boyutlandırma"
|
"Sizing": "Boyutlandırma"
|
||||||
},
|
},
|
||||||
|
"Some plugins require a newer version of DMS:": {
|
||||||
|
"Some plugins require a newer version of DMS:": ""
|
||||||
|
},
|
||||||
"Sort Alphabetically": {
|
"Sort Alphabetically": {
|
||||||
"Sort Alphabetically": "Alfabetik Olarak Sırala"
|
"Sort Alphabetically": "Alfabetik Olarak Sırala"
|
||||||
},
|
},
|
||||||
|
"Sort By": {
|
||||||
|
"Sort By": ""
|
||||||
|
},
|
||||||
"Sorting & Layout": {
|
"Sorting & Layout": {
|
||||||
"Sorting & Layout": "Sıralama & Düzen"
|
"Sorting & Layout": "Sıralama & Düzen"
|
||||||
},
|
},
|
||||||
@@ -2834,6 +3125,9 @@
|
|||||||
"Square Corners": {
|
"Square Corners": {
|
||||||
"Square Corners": "Kare Köşeler"
|
"Square Corners": "Kare Köşeler"
|
||||||
},
|
},
|
||||||
|
"Stacked": {
|
||||||
|
"Stacked": ""
|
||||||
|
},
|
||||||
"Start": {
|
"Start": {
|
||||||
"Start": "Başlat"
|
"Start": "Başlat"
|
||||||
},
|
},
|
||||||
@@ -3053,12 +3347,24 @@
|
|||||||
"Top Bar Format": {
|
"Top Bar Format": {
|
||||||
"Top Bar Format": "Üst Çubuk Biçimi"
|
"Top Bar Format": "Üst Çubuk Biçimi"
|
||||||
},
|
},
|
||||||
|
"Top Left": {
|
||||||
|
"Top Left": ""
|
||||||
|
},
|
||||||
|
"Top Processes": {
|
||||||
|
"Top Processes": ""
|
||||||
|
},
|
||||||
|
"Top Right": {
|
||||||
|
"Top Right": ""
|
||||||
|
},
|
||||||
"Top Section": {
|
"Top Section": {
|
||||||
"Top Section": "Üst Bölüm"
|
"Top Section": "Üst Bölüm"
|
||||||
},
|
},
|
||||||
"Total Jobs": {
|
"Total Jobs": {
|
||||||
"Total Jobs": "Toplam İşler"
|
"Total Jobs": "Toplam İşler"
|
||||||
},
|
},
|
||||||
|
"Transform": {
|
||||||
|
"Transform": ""
|
||||||
|
},
|
||||||
"Transition Effect": {
|
"Transition Effect": {
|
||||||
"Transition Effect": "Geçiş Efekti"
|
"Transition Effect": "Geçiş Efekti"
|
||||||
},
|
},
|
||||||
@@ -3182,9 +3488,27 @@
|
|||||||
"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": ""
|
||||||
|
},
|
||||||
|
"VRR On-Demand": {
|
||||||
|
"VRR On-Demand": ""
|
||||||
|
},
|
||||||
|
"VRR activates only when applications request it": {
|
||||||
|
"VRR activates only when applications request it": ""
|
||||||
|
},
|
||||||
"VRR: ": {
|
"VRR: ": {
|
||||||
"VRR: ": "VRR: "
|
"VRR: ": "VRR: "
|
||||||
},
|
},
|
||||||
|
"Variable Refresh Rate": {
|
||||||
|
"Variable Refresh Rate": ""
|
||||||
|
},
|
||||||
|
"Variant created - expand to configure": {
|
||||||
|
"Variant created - expand to configure": ""
|
||||||
|
},
|
||||||
|
"Variant removed": {
|
||||||
|
"Variant removed": ""
|
||||||
|
},
|
||||||
"Version": {
|
"Version": {
|
||||||
"Version": "Sürüm"
|
"Version": "Sürüm"
|
||||||
},
|
},
|
||||||
@@ -3260,6 +3584,10 @@
|
|||||||
"When enabled, shows the launcher overlay when typing in Niri overview mode. Disable this if you prefer to not have the launcher when typing on Niri overview or want to use other launcher in the overview.": {
|
"When enabled, shows the launcher overlay when typing in Niri overview mode. Disable this if you prefer to not have the launcher when typing on Niri overview or want to use other launcher in the overview.": {
|
||||||
"When enabled, shows the launcher overlay when typing in Niri overview mode. Disable this if you prefer to not have the launcher when typing on Niri overview or want to use other launcher in the overview.": "Etkinleştirildiğinde, Niri genel görünümünde yazarken başlatıcı katmanını gösterir. Niri genel görünümünde yazarken başlatıcının olmasını tercih etmiyorsanız veya genel görünümde başka bir başlatıcı kullanmak istiyorsanız bunu devre dışı bırakın."
|
"When enabled, shows the launcher overlay when typing in Niri overview mode. Disable this if you prefer to not have the launcher when typing on Niri overview or want to use other launcher in the overview.": "Etkinleştirildiğinde, Niri genel görünümünde yazarken başlatıcı katmanını gösterir. Niri genel görünümünde yazarken başlatıcının olmasını tercih etmiyorsanız veya genel görünümde başka bir başlatıcı kullanmak istiyorsanız bunu devre dışı bırakın."
|
||||||
},
|
},
|
||||||
|
"When updater widget is used, then hide it if no update found": {
|
||||||
|
"Hide Updater Widget": "",
|
||||||
|
"When updater widget is used, then hide it if no update found": ""
|
||||||
|
},
|
||||||
"Wi-Fi Password": {
|
"Wi-Fi Password": {
|
||||||
"Wi-Fi Password": "Wi-Fi Parolası"
|
"Wi-Fi Password": "Wi-Fi Parolası"
|
||||||
},
|
},
|
||||||
@@ -3278,6 +3606,9 @@
|
|||||||
"WiFi is off": {
|
"WiFi is off": {
|
||||||
"WiFi is off": "WiFi kapalı"
|
"WiFi is off": "WiFi kapalı"
|
||||||
},
|
},
|
||||||
|
"Wide (BT2020)": {
|
||||||
|
"Wide (BT2020)": ""
|
||||||
|
},
|
||||||
"Widget Background Color": {
|
"Widget Background Color": {
|
||||||
"Widget Background Color": "Widget Arkaplan Rengi"
|
"Widget Background Color": "Widget Arkaplan Rengi"
|
||||||
},
|
},
|
||||||
@@ -3296,6 +3627,9 @@
|
|||||||
"Widget Transparency": {
|
"Widget Transparency": {
|
||||||
"Widget Transparency": "Widget Opaklığı"
|
"Widget Transparency": "Widget Opaklığı"
|
||||||
},
|
},
|
||||||
|
"Widget Variants": {
|
||||||
|
"Widget Variants": ""
|
||||||
|
},
|
||||||
"Widgets": {
|
"Widgets": {
|
||||||
"Widgets": "Widgetlar"
|
"Widgets": "Widgetlar"
|
||||||
},
|
},
|
||||||
@@ -3305,6 +3639,9 @@
|
|||||||
"Wind Speed": {
|
"Wind Speed": {
|
||||||
"Wind Speed": "Rüzgar hızı"
|
"Wind Speed": "Rüzgar hızı"
|
||||||
},
|
},
|
||||||
|
"Window Gaps (px)": {
|
||||||
|
"Window Gaps (px)": ""
|
||||||
|
},
|
||||||
"Workspace": {
|
"Workspace": {
|
||||||
"Workspace": "Çalışma Alanı"
|
"Workspace": "Çalışma Alanı"
|
||||||
},
|
},
|
||||||
@@ -3326,6 +3663,12 @@
|
|||||||
"Workspaces & Widgets": {
|
"Workspaces & Widgets": {
|
||||||
"Workspaces & Widgets": "Çalışma Alanları & Widgetlar"
|
"Workspaces & Widgets": "Çalışma Alanları & Widgetlar"
|
||||||
},
|
},
|
||||||
|
"X Axis": {
|
||||||
|
"X Axis": ""
|
||||||
|
},
|
||||||
|
"Y Axis": {
|
||||||
|
"Y Axis": ""
|
||||||
|
},
|
||||||
"Yes": {
|
"Yes": {
|
||||||
"Yes": "Evet"
|
"Yes": "Evet"
|
||||||
},
|
},
|
||||||
@@ -3398,6 +3741,9 @@
|
|||||||
"settings window title": {
|
"settings window title": {
|
||||||
"Settings": "Ayarlar"
|
"Settings": "Ayarlar"
|
||||||
},
|
},
|
||||||
|
"settings_displays": {
|
||||||
|
"Widgets": ""
|
||||||
|
},
|
||||||
"sysmon window title": {
|
"sysmon window title": {
|
||||||
"System Monitor": "Sistem Monitörü"
|
"System Monitor": "Sistem Monitörü"
|
||||||
},
|
},
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user