1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-24 21:42:51 -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:
bbedward
2025-12-17 13:50:06 -05:00
parent 811e89fcfa
commit 523ccc6bf8
41 changed files with 5735 additions and 730 deletions

View File

@@ -16,6 +16,9 @@ Singleton {
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")
property string currentLocale: "en"

View File

@@ -128,6 +128,9 @@ DankModal {
FocusScope {
id: colorContent
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
property alias hexInput: hexInput
anchors.fill: parent
@@ -160,12 +163,14 @@ DankModal {
font.pixelSize: Theme.fontSizeLarge
color: Theme.surfaceText
font.weight: Font.Medium
anchors.left: parent.left
}
StyledText {
text: I18n.tr("Select a color from the palette or use custom sliders")
font.pixelSize: Theme.fontSizeMedium
color: Theme.surfaceTextMedium
anchors.left: parent.left
}
}
@@ -360,6 +365,7 @@ DankModal {
font.pixelSize: Theme.fontSizeMedium
color: Theme.surfaceText
font.weight: Font.Medium
anchors.left: parent.left
}
GridView {
@@ -410,6 +416,7 @@ DankModal {
font.pixelSize: Theme.fontSizeMedium
color: Theme.surfaceText
font.weight: Font.Medium
anchors.left: parent.left
}
Row {
@@ -462,6 +469,7 @@ DankModal {
font.pixelSize: Theme.fontSizeMedium
color: Theme.surfaceText
font.weight: Font.Medium
anchors.left: parent.left
}
DankSlider {
@@ -507,6 +515,7 @@ DankModal {
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceTextMedium
font.weight: Font.Medium
anchors.left: parent.left
}
Row {
@@ -566,6 +575,7 @@ DankModal {
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceTextMedium
font.weight: Font.Medium
anchors.left: parent.left
}
Row {
@@ -630,6 +640,7 @@ DankModal {
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceTextMedium
font.weight: Font.Medium
anchors.left: parent.left
}
Row {

View File

@@ -99,7 +99,7 @@ DankModal {
}
function toggleDoNotDisturb(): string {
SessionData.setDoNotDisturb(!SessionData.doNotDisturb)
SessionData.setDoNotDisturb(!SessionData.doNotDisturb);
return "NOTIFICATION_MODAL_TOGGLE_DND_SUCCESS";
}
@@ -111,6 +111,9 @@ DankModal {
Item {
id: notificationKeyHandler
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
anchors.fill: parent
Column {

View File

@@ -108,6 +108,9 @@ FloatingWindow {
FocusScope {
id: contentFocusScope
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
anchors.fill: parent
focus: true

View File

@@ -5,6 +5,9 @@ import qs.Modules.Settings
FocusScope {
id: root
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
property int currentIndex: 0
property var parentModal: null

View File

@@ -135,6 +135,9 @@ FloatingWindow {
FocusScope {
id: contentFocusScope
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
anchors.fill: parent
focus: true
@@ -223,7 +226,7 @@ FloatingWindow {
SettingsSidebar {
id: sidebar
x: 0
anchors.left: parent.left
width: settingsModal.isCompactMode ? parent.width : 270
visible: settingsModal.isCompactMode ? settingsModal.menuVisible : true
parentModal: settingsModal
@@ -238,8 +241,8 @@ FloatingWindow {
}
Item {
x: settingsModal.isCompactMode ? (settingsModal.menuVisible ? parent.width : 0) : sidebar.width
width: settingsModal.isCompactMode ? parent.width : parent.width - sidebar.width
anchors.left: settingsModal.isCompactMode ? (settingsModal.menuVisible ? sidebar.right : parent.left) : sidebar.right
anchors.right: parent.right
height: parent.height
clip: true
@@ -250,14 +253,6 @@ FloatingWindow {
parentModal: settingsModal
currentIndex: settingsModal.currentTabIndex
}
Behavior on x {
enabled: settingsModal.enableAnimations
NumberAnimation {
duration: Theme.mediumDuration
easing.bezierCurve: Theme.expressiveCurves.emphasizedDecel
}
}
}
}
}

View File

@@ -9,6 +9,9 @@ import qs.Widgets
Rectangle {
id: root
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
property int currentIndex: 0
property var parentModal: null
property var expandedCategories: ({})

View File

@@ -8,6 +8,9 @@ import qs.Widgets
Item {
id: spotlightKeyHandler
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
property alias appLauncher: appLauncher
property alias searchField: searchField
property alias fileSearchController: fileSearchController
@@ -72,10 +75,10 @@ Item {
}
event.accepted = true;
} else if (event.key === Qt.Key_Right && searchMode === "apps" && appLauncher.viewMode === "grid") {
appLauncher.selectNextInRow();
I18n.isRtl ? appLauncher.selectPreviousInRow() : appLauncher.selectNextInRow();
event.accepted = true;
} else if (event.key === Qt.Key_Left && searchMode === "apps" && appLauncher.viewMode === "grid") {
appLauncher.selectPreviousInRow();
I18n.isRtl ? appLauncher.selectNextInRow() : appLauncher.selectPreviousInRow();
event.accepted = true;
} else if (event.key == Qt.Key_J && event.modifiers & Qt.ControlModifier) {
if (searchMode === "apps") {
@@ -92,10 +95,10 @@ Item {
}
event.accepted = true;
} 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;
} 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;
} else if (event.key === Qt.Key_Tab) {
if (searchMode === "apps") {

View File

@@ -95,6 +95,9 @@ DankPopout {
Rectangle {
id: launcherPanel
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
property alias searchField: searchField
color: "transparent"
@@ -179,8 +182,8 @@ DankPopout {
mappings[Qt.Key_Backtab] = () => appDrawerPopout.searchMode === "apps" && appLauncher.viewMode === "grid" ? appLauncher.selectPreviousInRow() : keyHandler.selectPrevious();
if (appDrawerPopout.searchMode === "apps" && appLauncher.viewMode === "grid") {
mappings[Qt.Key_Right] = () => appLauncher.selectNextInRow();
mappings[Qt.Key_Left] = () => appLauncher.selectPreviousInRow();
mappings[Qt.Key_Right] = () => I18n.isRtl ? appLauncher.selectPreviousInRow() : appLauncher.selectNextInRow();
mappings[Qt.Key_Left] = () => I18n.isRtl ? appLauncher.selectNextInRow() : appLauncher.selectPreviousInRow();
}
return mappings;
@@ -211,13 +214,13 @@ DankPopout {
return;
case Qt.Key_L:
if (appDrawerPopout.searchMode === "apps" && appLauncher.viewMode === "grid") {
appLauncher.selectNextInRow();
I18n.isRtl ? appLauncher.selectPreviousInRow() : appLauncher.selectNextInRow();
event.accepted = true;
}
return;
case Qt.Key_H:
if (appDrawerPopout.searchMode === "apps" && appLauncher.viewMode === "grid") {
appLauncher.selectPreviousInRow();
I18n.isRtl ? appLauncher.selectNextInRow() : appLauncher.selectPreviousInRow();
event.accepted = true;
}
return;

View File

@@ -110,6 +110,9 @@ DankPopout {
Rectangle {
id: controlContent
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
implicitHeight: mainColumn.implicitHeight + Theme.spacingM
property alias bluetoothCodecSelector: bluetoothCodecSelector

View File

@@ -43,6 +43,9 @@ DankPopout {
Rectangle {
id: batteryContent
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
implicitHeight: contentColumn.implicitHeight + Theme.spacingL * 2
color: "transparent"
radius: Theme.cornerRadius

View File

@@ -166,6 +166,9 @@ DankPopout {
Rectangle {
id: mainContainer
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
implicitHeight: contentColumn.height + Theme.spacingM * 2
color: "transparent"
radius: Theme.cornerRadius

View File

@@ -8,6 +8,9 @@ import qs.Widgets
Item {
id: root
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
property int dropdownType: 0
property var activePlayer: null
property var allPlayers: []

View File

@@ -10,6 +10,9 @@ import qs.Widgets
Item {
id: root
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
property MprisPlayer activePlayer: MprisController.activePlayer
property var allPlayers: MprisController.availablePlayers
property var targetScreen: null

View File

@@ -1,10 +1,12 @@
import QtQuick
import QtQuick.Controls
import qs.Common
Rectangle {
id: card
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
property int pad: Theme.spacingM
radius: Theme.cornerRadius

View File

@@ -1,20 +1,19 @@
import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
import qs.Common
import qs.Services
import qs.Widgets
import qs.Modules.DankDash.Overview
Item {
id: root
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
implicitWidth: 700
implicitHeight: 410
signal switchToWeatherTab()
signal switchToMediaTab()
signal closeDash()
signal switchToWeatherTab
signal switchToMediaTab
signal closeDash
Item {
anchors.fill: parent

View File

@@ -3,7 +3,6 @@ import QtCore
import QtQuick
import QtQuick.Controls
import QtQuick.Effects
import Quickshell
import qs.Common
import qs.Modals.FileBrowser
import qs.Widgets
@@ -11,6 +10,9 @@ import qs.Widgets
Item {
id: root
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
implicitWidth: 700
implicitHeight: 410
@@ -95,16 +97,7 @@ Item {
}
if (event.key === Qt.Key_Right || event.key === Qt.Key_L) {
if (gridIndex + 1 < visibleCount) {
gridIndex++;
} else if (currentPage < totalPages - 1) {
gridIndex = 0;
currentPage++;
}
return true;
}
if (event.key === Qt.Key_Left || event.key === Qt.Key_H) {
if (I18n.isRtl) {
if (gridIndex > 0) {
gridIndex--;
} else if (currentPage > 0) {
@@ -112,6 +105,34 @@ Item {
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;
}
if (event.key === Qt.Key_Left || event.key === Qt.Key_H) {
if (I18n.isRtl) {
if (gridIndex + 1 < visibleCount) {
gridIndex++;
} else if (currentPage < totalPages - 1) {
gridIndex = 0;
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;
}

View File

@@ -9,6 +9,9 @@ import qs.Modules.DankBar.Widgets
Item {
id: root
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
implicitWidth: 700
implicitHeight: 410
property bool syncing: false
@@ -145,6 +148,10 @@ Item {
Item {
id: weatherContainer
LayoutMirroring.enabled: false
LayoutMirroring.childrenInherit: true
width: parent.width
height: weatherColumn.height

View File

@@ -100,6 +100,9 @@ DankPopout {
Rectangle {
id: notificationContent
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
property var externalKeyboardController: null
property real cachedHeaderHeight: 32

View File

@@ -343,6 +343,9 @@ PanelWindow {
anchors.margins: Theme.snap(4, win.dpr)
clip: true
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
Item {
id: notificationContent
@@ -428,6 +431,7 @@ PanelWindow {
font.pixelSize: Theme.fontSizeSmall
font.weight: Font.Medium
elide: Text.ElideRight
horizontalAlignment: Text.AlignLeft
maximumLineCount: 1
}
@@ -438,6 +442,7 @@ PanelWindow {
font.weight: Font.Medium
width: parent.width
elide: Text.ElideRight
horizontalAlignment: Text.AlignLeft
maximumLineCount: 1
visible: text.length > 0
}
@@ -448,6 +453,7 @@ PanelWindow {
font.pixelSize: Theme.fontSizeSmall
width: parent.width
elide: Text.ElideRight
horizontalAlignment: Text.AlignLeft
maximumLineCount: 2
wrapMode: Text.WordWrap
visible: text.length > 0

View File

@@ -50,6 +50,9 @@ DankPopout {
Rectangle {
id: processListContent
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
radius: Theme.cornerRadius
color: "transparent"
border.color: Qt.rgba(Theme.outline.r, Theme.outline.g, Theme.outline.b, 0.08)

View File

@@ -7,6 +7,9 @@ import qs.Widgets
Item {
id: root
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
property string tab: ""
property var tags: []
property string settingKey: ""
@@ -49,6 +52,7 @@ Item {
elide: Text.ElideRight
width: parent.width
visible: root.text !== ""
anchors.left: parent.left
}
StyledText {
@@ -58,6 +62,7 @@ Item {
wrapMode: Text.WordWrap
width: parent.width
visible: root.description !== ""
anchors.left: parent.left
}
}

View File

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

View File

@@ -7,6 +7,9 @@ import qs.Widgets
Item {
id: root
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
property string tab: ""
property var tags: []
property string settingKey: ""
@@ -51,6 +54,8 @@ Item {
font.weight: Font.Medium
color: Theme.surfaceText
visible: root.text !== ""
width: parent.width
anchors.left: parent.left
}
StyledText {
@@ -60,6 +65,7 @@ Item {
wrapMode: Text.WordWrap
width: parent.width
visible: root.description !== ""
anchors.left: parent.left
}
}

View File

@@ -5,6 +5,9 @@ import qs.Widgets
Rectangle {
id: root
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
required property var model
required property int index
required property var listView
@@ -66,6 +69,7 @@ Rectangle {
color: Theme.surfaceText
font.weight: Font.Medium
elide: Text.ElideRight
horizontalAlignment: Text.AlignLeft
wrapMode: Text.NoWrap
maximumLineCount: 1
}
@@ -76,6 +80,7 @@ Rectangle {
font.pixelSize: Theme.fontSizeMedium
color: Theme.surfaceVariantText
elide: Text.ElideRight
horizontalAlignment: Text.AlignLeft
maximumLineCount: 1
visible: root.showDescription && model.comment && model.comment.length > 0
}

View File

@@ -21,7 +21,7 @@ Flow {
property bool userInteracted: false
signal selectionChanged(int index, bool selected)
signal animationCompleted()
signal animationCompleted
spacing: Theme.spacingXS
@@ -36,35 +36,35 @@ Flow {
function isSelected(index) {
if (multiSelect) {
return repeater.itemAt(index)?.selected || false
return repeater.itemAt(index)?.selected || false;
}
return index === currentIndex
return index === currentIndex;
}
function selectItem(index) {
userInteracted = true;
if (multiSelect) {
const modelValue = model[index]
let newSelection = [...currentSelection]
const isCurrentlySelected = newSelection.includes(modelValue)
const modelValue = model[index];
let newSelection = [...currentSelection];
const isCurrentlySelected = newSelection.includes(modelValue);
if (isCurrentlySelected) {
newSelection = newSelection.filter(item => item !== modelValue)
newSelection = newSelection.filter(item => item !== modelValue);
} else {
newSelection.push(modelValue)
newSelection.push(modelValue);
}
currentSelection = newSelection
selectionChanged(index, !isCurrentlySelected)
animationTimer.restart()
currentSelection = newSelection;
selectionChanged(index, !isCurrentlySelected);
animationTimer.restart();
} else {
const oldIndex = currentIndex
currentIndex = index
selectionChanged(index, true)
const oldIndex = currentIndex;
currentIndex = index;
selectionChanged(index, true);
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 isFirst: index === 0
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 nextSelected: index < repeater.count - 1 ? root.isSelected(index + 1) : false
@@ -92,10 +94,10 @@ Flow {
border.color: "transparent"
border.width: 0
topLeftRadius: (isFirst || selected) ? Theme.cornerRadius : 4
bottomLeftRadius: (isFirst || selected) ? Theme.cornerRadius : 4
topRightRadius: (isLast || selected) ? Theme.cornerRadius : 4
bottomRightRadius: (isLast || selected) ? Theme.cornerRadius : 4
topLeftRadius: (visualFirst || selected) ? Theme.cornerRadius : 4
bottomLeftRadius: (visualFirst || selected) ? Theme.cornerRadius : 4
topRightRadius: (visualLast || selected) ? Theme.cornerRadius : 4
bottomRightRadius: (visualLast || selected) ? Theme.cornerRadius : 4
Behavior on width {
enabled: root.userInteracted
@@ -153,9 +155,11 @@ Flow {
topRightRadius: parent.topRightRadius
bottomRightRadius: parent.bottomRightRadius
color: {
if (pressed) return selected ? Theme.primaryPressed : Theme.surfaceTextHover
if (hovered) return selected ? Theme.primaryHover : Theme.surfaceTextHover
return "transparent"
if (pressed)
return selected ? Theme.primaryPressed : Theme.surfaceTextHover;
if (hovered)
return selected ? Theme.primaryHover : Theme.surfaceTextHover;
return "transparent";
}
Behavior on color {

View File

@@ -9,6 +9,9 @@ import qs.Widgets
Item {
id: root
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
property string text: ""
property string description: ""
property string currentValue: ""
@@ -63,6 +66,8 @@ Item {
font.pixelSize: Theme.fontSizeMedium
color: Theme.surfaceText
font.weight: Font.Medium
width: parent.width
anchors.left: parent.left
}
StyledText {
@@ -72,6 +77,7 @@ Item {
visible: description.length > 0
wrapMode: Text.WordWrap
width: parent.width
anchors.left: parent.left
}
}

View File

@@ -5,6 +5,9 @@ import qs.Widgets
StyledRect {
id: root
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
activeFocusOnTab: true
KeyNavigation.tab: keyNavigationTab
@@ -92,13 +95,17 @@ StyledRect {
TextInput {
id: textInput
anchors.fill: parent
anchors.leftMargin: root.leftPadding
anchors.rightMargin: root.rightPadding
anchors.left: leftIcon.visible ? leftIcon.right : parent.left
anchors.leftMargin: Theme.spacingM
anchors.right: clearButton.visible ? clearButton.left : parent.right
anchors.rightMargin: Theme.spacingM
anchors.top: parent.top
anchors.topMargin: root.topPadding
anchors.bottom: parent.bottom
anchors.bottomMargin: root.bottomPadding
font.pixelSize: Theme.fontSizeMedium
color: Theme.surfaceText
horizontalAlignment: I18n.isRtl ? TextInput.AlignRight : TextInput.AlignLeft
verticalAlignment: TextInput.AlignVCenter
selectByMouse: !root.ignoreLeftRightKeys
clip: true
@@ -182,9 +189,10 @@ StyledRect {
text: root.placeholderText
font: textInput.font
color: placeholderColor
horizontalAlignment: textInput.horizontalAlignment
verticalAlignment: textInput.verticalAlignment
visible: textInput.text.length === 0 && !textInput.activeFocus
elide: Text.ElideRight
elide: I18n.isRtl ? Text.ElideLeft : Text.ElideRight
}
Behavior on border.color {

View File

@@ -5,6 +5,9 @@ import qs.Widgets
Item {
id: toggle
LayoutMirroring.enabled: I18n.isRtl
LayoutMirroring.childrenInherit: true
// API
property bool checked: false
property bool enabled: true
@@ -27,9 +30,10 @@ Item {
height: showText ? (description.length > 0 ? 60 : 44) : trackHeight
function handleClick() {
if (!enabled) return
clicked()
toggled(!checked)
if (!enabled)
return;
clicked();
toggled(!checked);
}
StyledRect {
@@ -58,6 +62,7 @@ Item {
visible: showText
Column {
width: parent.width
anchors.verticalCenter: parent.verticalCenter
spacing: Theme.spacingXS
@@ -66,6 +71,8 @@ Item {
font.pixelSize: Appearance.fontSize.normal
font.weight: Font.Medium
opacity: toggle.enabled ? 1 : 0.4
width: parent.width
anchors.left: parent.left
}
StyledText {
@@ -75,6 +82,7 @@ Item {
wrapMode: Text.WordWrap
width: Math.min(implicitWidth, toggle.width - 120)
visible: toggle.description.length > 0
anchors.left: parent.left
}
}
}
@@ -121,7 +129,7 @@ Item {
}
ScriptAction {
script: {
toggle.toggleCompleted(toggle.checked)
toggle.toggleCompleted(toggle.checked);
}
}
}

File diff suppressed because it is too large Load Diff

View File

@@ -50,12 +50,18 @@
"10 seconds": {
"10 seconds": "10 segundos"
},
"10-bit Color": {
"10-bit Color": ""
},
"14 days": {
"14 days": ""
},
"15 seconds": {
"15 seconds": "15 segundos"
},
"180°": {
"180°": ""
},
"2 minutes": {
"2 minutes": "2 minutos"
},
@@ -65,6 +71,9 @@
"24-hour format": {
"24-hour format": "Formato de 24 horas"
},
"270°": {
"270°": ""
},
"3 days": {
"3 days": ""
},
@@ -95,6 +104,9 @@
"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?": "Un archivo con este nombre ya existe. ¿Quieres reemplazarlo?"
},
@@ -200,6 +212,9 @@
"Amount": {
"Amount": ""
},
"Analog": {
"Analog": ""
},
"Animation Speed": {
"Animation Speed": "Velocidad de animación"
},
@@ -218,6 +233,9 @@
"Applications": {
"Applications": "Aplicaciones"
},
"Apply Changes": {
"Apply Changes": ""
},
"Apply GTK Colors": {
"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.": "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"
},
@@ -284,6 +305,9 @@
"Auto": {
"Auto": "Auto"
},
"Auto (Wide)": {
"Auto (Wide)": ""
},
"Auto Location": {
"Auto Location": "Localización automática"
},
@@ -365,6 +389,9 @@
"Backend": {
"Backend": "Backend"
},
"Background Opacity": {
"Background Opacity": ""
},
"Balanced palette with focused accents (default).": {
"Balanced palette with focused accents (default).": "Colores armonizados con acentos definidos (base)."
},
@@ -392,6 +419,9 @@
"Binds include added": {
"Binds include added": ""
},
"Bit Depth": {
"Bit Depth": ""
},
"Bluetooth": {
"Bluetooth": "Bluetooth"
},
@@ -422,6 +452,12 @@
"Bottom": {
"Bottom": "Abajo"
},
"Bottom Left": {
"Bottom Left": ""
},
"Bottom Right": {
"Bottom Right": ""
},
"Bottom Section": {
"Bottom Section": "Sección inferior"
},
@@ -443,6 +479,9 @@
"CPU": {
"CPU": "CPU"
},
"CPU Graph": {
"CPU Graph": ""
},
"CPU Temperature": {
"CPU Temperature": "Temperatura de CPU"
},
@@ -491,6 +530,9 @@
"Center Section": {
"Center Section": "Sección central"
},
"Center Single Column": {
"Center Single Column": ""
},
"Center Tiling": {
"Center Tiling": "Mosaico centrado"
},
@@ -536,6 +578,9 @@
"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 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.": ""
},
@@ -587,6 +632,9 @@
"Clock": {
"Clock": "Reloj"
},
"Clock Style": {
"Clock Style": ""
},
"Clock show seconds": {
"Clock show seconds": "Mostrar segundos en el reloj"
},
@@ -599,6 +647,12 @@
"Color": {
"Color": "Color"
},
"Color Gamut": {
"Color Gamut": ""
},
"Color Management": {
"Color Management": ""
},
"Color Mode": {
"Color Mode": "Modo de color"
},
@@ -623,6 +677,9 @@
"Colorful mix of bright contrasting accents.": {
"Colorful mix of bright contrasting accents.": "Colores vivos con contrastes luminosos."
},
"Column": {
"Column": ""
},
"Command": {
"Command": "Comando"
},
@@ -656,12 +713,27 @@
"Compositor": {
"Compositor": "Compositor"
},
"Compositor Settings": {
"Compositor Settings": ""
},
"Config Format": {
"Config Format": ""
},
"Config action: %1": {
"Config action: %1": ""
},
"Config validation failed": {
"Config validation failed": ""
},
"Configuration": {
"Configuration": ""
},
"Configuration activated": {
"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": "Configurar nueva impresora"
},
@@ -710,6 +782,9 @@
"Control currently playing media": {
"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": ""
},
@@ -815,6 +890,9 @@
"Custom Transparency": {
"Custom Transparency": "Transparencia personalizada"
},
"Custom...": {
"Custom...": ""
},
"Custom: ": {
"Custom: ": "Personalizado: "
},
@@ -896,6 +974,9 @@
"Default": {
"Default": "Base"
},
"Default Width (%)": {
"Default Width (%)": ""
},
"Default selected action": {
"Default selected action": "Acción predeterminada"
},
@@ -923,6 +1004,12 @@
"Description": {
"Description": "Descripción"
},
"Desktop Clock": {
"Desktop Clock": ""
},
"Desktop Widgets": {
"Desktop Widgets": ""
},
"Desktop background images": {
"Desktop background images": "Imágenes de fondo de escritorio"
},
@@ -935,6 +1022,9 @@
"Device paired": {
"Device paired": "Dispositivo emparejado"
},
"Digital": {
"Digital": ""
},
"Disable Autoconnect": {
"Disable Autoconnect": "Desactivar conexión automática"
},
@@ -947,12 +1037,18 @@
"Disable History Persistence": {
"Disable History Persistence": ""
},
"Disable Output": {
"Disable Output": ""
},
"Disable clipboard manager entirely (requires restart)": {
"Disable clipboard manager entirely (requires restart)": ""
},
"Disabled": {
"Disabled": "Desactivado"
},
"Discard": {
"Discard": ""
},
"Disconnect": {
"Disconnect": "Desconectar"
},
@@ -977,6 +1073,9 @@
"Display Name Format": {
"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": ""
},
@@ -989,6 +1088,9 @@
"Display application icons in workspace indicators": {
"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": "Mostrar título de la aplicación enfocada"
},
@@ -1079,6 +1181,9 @@
"Empty": {
"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": "Activar conexión automática"
},
@@ -1088,6 +1193,9 @@
"Enable Border": {
"Enable Border": ""
},
"Enable Desktop Clock": {
"Enable Desktop Clock": ""
},
"Enable Do Not Disturb": {
"Enable Do Not Disturb": "Activar \"No Molestar\""
},
@@ -1097,6 +1205,9 @@
"Enable Overview Overlay": {
"Enable Overview Overlay": "Activar el overlay en la vista general"
},
"Enable System Monitor": {
"Enable System Monitor": ""
},
"Enable System Sounds": {
"Enable System Sounds": "Activar sonidos del sistema"
},
@@ -1187,6 +1298,9 @@
"Exclusive Zone Offset": {
"Exclusive Zone Offset": "Zona exclusiva"
},
"Experimental Feature": {
"Experimental Feature": ""
},
"F1/I: Toggle • F10: Help": {
"F1/I: Toggle • F10: Help": "F1/I: Accionar • F10: Ayudar"
},
@@ -1316,6 +1430,9 @@
"Failed to update sharing": {
"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": "Temperatura"
},
@@ -1349,6 +1466,21 @@
"Fixing...": {
"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": "Ventana enfocada"
},
@@ -1367,9 +1499,15 @@
"Font Weight": {
"Font Weight": "Grosor de fuente"
},
"Force HDR": {
"Force HDR": ""
},
"Force Kill Process": {
"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": "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": "Desvanecer gradualmente la pantalla antes de bloquear, con una duración configurable"
},
"Graph Time Range": {
"Graph Time Range": ""
},
"Graphics": {
"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": "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"
},
@@ -1457,6 +1607,9 @@
"Held": {
"Held": "Retenido"
},
"Help": {
"Help": ""
},
"Hex": {
"Hex": "HEX"
},
@@ -1496,6 +1649,9 @@
"Hold to confirm (%1s)": {
"Hold to confirm (%1s)": "Mantener pulsado para confirmar (%1s)"
},
"Hot Corners": {
"Hot Corners": ""
},
"Hotkey overlay title (optional)": {
"Hotkey overlay title (optional)": ""
},
@@ -1565,6 +1721,9 @@
"Include Transitions": {
"Include Transitions": "Incluir transiciones"
},
"Incompatible Plugins Loaded": {
"Incompatible Plugins Loaded": ""
},
"Incorrect password": {
"Incorrect password": "Contraseña incorrecta"
},
@@ -1577,6 +1736,9 @@
"Individual bar configuration": {
"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": "Mantener activo mientras se reproduce audio o video"
},
@@ -1598,6 +1760,9 @@
"Interval": {
"Interval": "Intervalo"
},
"Invalid configuration": {
"Invalid configuration": ""
},
"Invert on mode change": {
"Invert on mode change": "Invertir al cambiar de modo"
},
@@ -1670,6 +1835,9 @@
"Layout": {
"Layout": "Diseño"
},
"Layout Overrides": {
"Layout Overrides": ""
},
"Left": {
"Left": "Izquierda"
},
@@ -1682,6 +1850,9 @@
"Lines: %1": {
"Lines: %1": "Líneas: %1"
},
"List": {
"List": ""
},
"Lively palette with saturated accents.": {
"Lively palette with saturated accents.": "Paleta vibrante con acentos saturados."
},
@@ -1847,6 +2018,9 @@
"Memory": {
"Memory": "Memoria"
},
"Memory Graph": {
"Memory Graph": ""
},
"Memory Usage": {
"Memory Usage": "Uso de memoria"
},
@@ -1883,6 +2057,12 @@
"Model": {
"Model": "Modelo"
},
"Modified": {
"Modified": ""
},
"Monitor Configuration": {
"Monitor Configuration": ""
},
"Monitor whose wallpaper drives dynamic theming colors": {
"Monitor whose wallpaper drives dynamic theming colors": "Seleccionar monitor que define los colores dinámicos"
},
@@ -1898,6 +2078,9 @@
"Mount": {
"Mount": "Montar"
},
"Move Widget": {
"Move Widget": ""
},
"Moving to Paused": {
"Moving to Paused": "Pausando"
},
@@ -1919,6 +2102,9 @@
"Network": {
"Network": "Red"
},
"Network Graph": {
"Network Graph": ""
},
"Network Info": {
"Network Info": "Información de red"
},
@@ -2015,6 +2201,9 @@
"No drivers found": {
"No drivers found": "No se encontraron controladores"
},
"No features enabled": {
"No features enabled": ""
},
"No files found": {
"No files found": "Archivos no encontrados"
},
@@ -2042,9 +2231,15 @@
"No printers found": {
"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": "Ninguna"
},
"Normal": {
"Normal": ""
},
"Normal Font": {
"Normal Font": "Fuente normal"
},
@@ -2096,6 +2291,9 @@
"OSD Position": {
"OSD Position": "Posición OSD"
},
"Off": {
"Off": ""
},
"Office": {
"Office": "Oficina"
},
@@ -2159,12 +2357,18 @@
"Output Tray Missing": {
"Output Tray Missing": "Bandeja de salida no encontrada"
},
"Outputs Include Missing": {
"Outputs Include Missing": ""
},
"Overridden by config": {
"Overridden by config": ""
},
"Override": {
"Override": "Sobrescribir"
},
"Override global layout settings for this output": {
"Override global layout settings for this output": ""
},
"Overrides": {
"Overrides": ""
},
@@ -2324,6 +2528,9 @@
"Preference": {
"Preference": "Preferencia"
},
"Preset Widths (%)": {
"Preset Widths (%)": ""
},
"Press key...": {
"Press key...": "Presiona la tecla deseada..."
},
@@ -2372,6 +2579,9 @@
"Process": {
"Process": "Proceso"
},
"Process Count": {
"Process Count": ""
},
"Processing": {
"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": "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": "Requiere un compositor DWL"
},
"Reset": {
"Reset": "Reiniciar"
},
"Reset Position": {
"Reset Position": ""
},
"Reset Size": {
"Reset Size": ""
},
"Resize Widget": {
"Resize Widget": ""
},
"Resolution & Refresh": {
"Resolution & Refresh": ""
},
"Resources": {
"Resources": "Recursos"
},
@@ -2483,6 +2708,12 @@
"Right Tiling": {
"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": "Clic derecho en la barra para cambiar"
},
@@ -2507,6 +2738,12 @@
"Running Apps Settings": {
"Running Apps Settings": "Ajustes de aplicaciones activas"
},
"SDR Brightness": {
"SDR Brightness": ""
},
"SDR Saturation": {
"SDR Saturation": ""
},
"Save": {
"Save": "Guardar"
},
@@ -2522,6 +2759,9 @@
"Saved Configurations": {
"Saved Configurations": "Configuraciones guardadas"
},
"Scale": {
"Scale": ""
},
"Scale DankBar font sizes independently": {
"Scale DankBar font sizes independently": "Escalar fuentes de la barra independientemente"
},
@@ -2540,6 +2780,9 @@
"Screen sharing": {
"Screen sharing": "Compartir pantalla"
},
"Scroll Wheel": {
"Scroll Wheel": ""
},
"Scroll song title": {
"Scroll song title": ""
},
@@ -2570,6 +2813,9 @@
"Searching...": {
"Searching...": "Buscando..."
},
"Secondary": {
"Secondary": ""
},
"Secured": {
"Secured": "Seguro"
},
@@ -2666,15 +2912,39 @@
"Show All Tags": {
"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": "Mostrar una confirmación en las opciones de energía y apagado"
},
"Show Date": {
"Show Date": ""
},
"Show Disk": {
"Show Disk": ""
},
"Show Dock": {
"Show Dock": "Mostrar dock"
},
"Show GPU Temperature": {
"Show GPU Temperature": ""
},
"Show Header": {
"Show Header": ""
},
"Show Hibernate": {
"Show Hibernate": "Mostrar Hibernar"
},
"Show Hour Numbers": {
"Show Hour Numbers": ""
},
"Show Line Numbers": {
"Show Line Numbers": "Mostrar números de líneas"
},
@@ -2684,6 +2954,18 @@
"Show Log Out": {
"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": "Mostrar solo espacios de trabajo ocupados"
},
@@ -2705,6 +2987,9 @@
"Show Suspend": {
"Show Suspend": "Mostrar Suspender"
},
"Show Top Processes": {
"Show Top Processes": ""
},
"Show Workspace Apps": {
"Show Workspace Apps": "Mostrar aplicaciones en el espacio de trabajo"
},
@@ -2807,9 +3092,15 @@
"Sizing": {
"Sizing": ""
},
"Some plugins require a newer version of DMS:": {
"Some plugins require a newer version of DMS:": ""
},
"Sort Alphabetically": {
"Sort Alphabetically": "Ordenar alfabéticamente"
},
"Sort By": {
"Sort By": ""
},
"Sorting & Layout": {
"Sorting & Layout": ""
},
@@ -2834,6 +3125,9 @@
"Square Corners": {
"Square Corners": "Esquinas cuadradas"
},
"Stacked": {
"Stacked": ""
},
"Start": {
"Start": "Empezar"
},
@@ -3053,12 +3347,24 @@
"Top Bar Format": {
"Top Bar Format": "Formato en la barra superior"
},
"Top Left": {
"Top Left": ""
},
"Top Processes": {
"Top Processes": ""
},
"Top Right": {
"Top Right": ""
},
"Top Section": {
"Top Section": "Sección superior"
},
"Total Jobs": {
"Total Jobs": "Trabajos totales"
},
"Transform": {
"Transform": ""
},
"Transition Effect": {
"Transition Effect": "Efecto de transición"
},
@@ -3182,9 +3488,27 @@
"VPN status and quick connect": {
"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: "
},
"Variable Refresh Rate": {
"Variable Refresh Rate": ""
},
"Variant created - expand to configure": {
"Variant created - expand to configure": ""
},
"Variant removed": {
"Variant removed": ""
},
"Version": {
"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.": "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": "Contraseña Wi-Fi"
},
@@ -3278,6 +3606,9 @@
"WiFi is off": {
"WiFi is off": "WiFi apagado"
},
"Wide (BT2020)": {
"Wide (BT2020)": ""
},
"Widget Background Color": {
"Widget Background Color": "Color de fondo del Widget"
},
@@ -3296,6 +3627,9 @@
"Widget Transparency": {
"Widget Transparency": "Transparencia de widget"
},
"Widget Variants": {
"Widget Variants": ""
},
"Widgets": {
"Widgets": "Widgets"
},
@@ -3305,6 +3639,9 @@
"Wind Speed": {
"Wind Speed": "Velocidad del viento"
},
"Window Gaps (px)": {
"Window Gaps (px)": ""
},
"Workspace": {
"Workspace": "Espacio de trabajo"
},
@@ -3326,6 +3663,12 @@
"Workspaces & Widgets": {
"Workspaces & Widgets": ""
},
"X Axis": {
"X Axis": ""
},
"Y Axis": {
"Y Axis": ""
},
"Yes": {
"Yes": "Si"
},
@@ -3398,6 +3741,9 @@
"settings window title": {
"Settings": "Ajustes"
},
"settings_displays": {
"Widgets": ""
},
"sysmon window title": {
"System Monitor": "Monitor del sistema"
},

View File

@@ -50,12 +50,18 @@
"10 seconds": {
"10 seconds": "10 שניות"
},
"10-bit Color": {
"10-bit Color": ""
},
"14 days": {
"14 days": ""
},
"15 seconds": {
"15 seconds": "15 שניות"
},
"180°": {
"180°": ""
},
"2 minutes": {
"2 minutes": "2 דקות"
},
@@ -65,6 +71,9 @@
"24-hour format": {
"24-hour format": "תבנית 24 שעות"
},
"270°": {
"270°": ""
},
"3 days": {
"3 days": ""
},
@@ -95,6 +104,9 @@
"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?": "קיים כבר קובץ עם השם זה. האם ברצונך לדרוס אותו?"
},
@@ -200,6 +212,9 @@
"Amount": {
"Amount": ""
},
"Analog": {
"Analog": ""
},
"Animation Speed": {
"Animation Speed": "מהירות אנימציה"
},
@@ -218,6 +233,9 @@
"Applications": {
"Applications": "אפליקציות"
},
"Apply Changes": {
"Apply Changes": ""
},
"Apply GTK Colors": {
"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.": "האפליקציות ממוינות לפי תדירות השימוש, אחר כך לפי שימוש אחרון ולבסוף לפי סדר אלפביתי."
},
"Arrange displays and configure resolution, refresh rate, and VRR": {
"Arrange displays and configure resolution, refresh rate, and VRR": ""
},
"Audio": {
"Audio": "אודיו"
},
@@ -284,6 +305,9 @@
"Auto": {
"Auto": "אוטומטי"
},
"Auto (Wide)": {
"Auto (Wide)": ""
},
"Auto Location": {
"Auto Location": "מיקום אוטומטי"
},
@@ -365,6 +389,9 @@
"Backend": {
"Backend": "Backend"
},
"Background Opacity": {
"Background Opacity": ""
},
"Balanced palette with focused accents (default).": {
"Balanced palette with focused accents (default).": "פלטה מאוזנת עם דגשים ממוקדים (ברירת מחדל)."
},
@@ -392,6 +419,9 @@
"Binds include added": {
"Binds include added": "קובץ includes של קיצורי מקלדת נוסף"
},
"Bit Depth": {
"Bit Depth": ""
},
"Bluetooth": {
"Bluetooth": "Bluetooth"
},
@@ -422,6 +452,12 @@
"Bottom": {
"Bottom": "למטה"
},
"Bottom Left": {
"Bottom Left": ""
},
"Bottom Right": {
"Bottom Right": ""
},
"Bottom Section": {
"Bottom Section": "קטע תחתון"
},
@@ -443,6 +479,9 @@
"CPU": {
"CPU": "CPU"
},
"CPU Graph": {
"CPU Graph": ""
},
"CPU Temperature": {
"CPU Temperature": "טמפרטורת CPU"
},
@@ -491,6 +530,9 @@
"Center Section": {
"Center Section": "קטע אמצעי"
},
"Center Single Column": {
"Center Single Column": ""
},
"Center Tiling": {
"Center Tiling": "ריצוף מרכזי"
},
@@ -536,6 +578,9 @@
"Choose where on-screen displays appear on screen": {
"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.": "בחר/י איזה מסך מציג את ממשק מסך הנעילה. מסכים אחרים יציגו צבע אחיד להגנה מפני צריבת OLED."
},
@@ -587,6 +632,9 @@
"Clock": {
"Clock": "שעון"
},
"Clock Style": {
"Clock Style": ""
},
"Clock show seconds": {
"Clock show seconds": "הצגת שניות בשעון"
},
@@ -599,6 +647,12 @@
"Color": {
"Color": "צבע"
},
"Color Gamut": {
"Color Gamut": ""
},
"Color Management": {
"Color Management": ""
},
"Color Mode": {
"Color Mode": "מצב צבע"
},
@@ -623,6 +677,9 @@
"Colorful mix of bright contrasting accents.": {
"Colorful mix of bright contrasting accents.": "שילוב צבעוני של דגשים מנוגדים ובהירים."
},
"Column": {
"Column": ""
},
"Command": {
"Command": "פקודה"
},
@@ -656,12 +713,27 @@
"Compositor": {
"Compositor": "קומפוזיטור"
},
"Compositor Settings": {
"Compositor Settings": ""
},
"Config Format": {
"Config Format": ""
},
"Config action: %1": {
"Config action: %1": "פעולת config: %1"
},
"Config validation failed": {
"Config validation failed": ""
},
"Configuration": {
"Configuration": ""
},
"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": "הגדר/י מדפסת חדשה"
},
@@ -710,6 +782,9 @@
"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": "שולט בשקיפות של כל החלונות הקופצים, המודלים ושכבות התוכן שלהם"
},
@@ -815,6 +890,9 @@
"Custom Transparency": {
"Custom Transparency": "שקיפות מותאמת אישית"
},
"Custom...": {
"Custom...": ""
},
"Custom: ": {
"Custom: ": "מותאם אישית: "
},
@@ -896,6 +974,9 @@
"Default": {
"Default": "ברירת מחדל"
},
"Default Width (%)": {
"Default Width (%)": ""
},
"Default selected action": {
"Default selected action": "פעולת ברירת המחדל שנבחרה"
},
@@ -923,6 +1004,12 @@
"Description": {
"Description": "תיאור"
},
"Desktop Clock": {
"Desktop Clock": ""
},
"Desktop Widgets": {
"Desktop Widgets": ""
},
"Desktop background images": {
"Desktop background images": "תמונות רקע לשולחן העבודה"
},
@@ -935,6 +1022,9 @@
"Device paired": {
"Device paired": "ההתקן צומד"
},
"Digital": {
"Digital": ""
},
"Disable Autoconnect": {
"Disable Autoconnect": "השבת/י התחברות אוטומטית"
},
@@ -947,12 +1037,18 @@
"Disable History Persistence": {
"Disable History Persistence": ""
},
"Disable Output": {
"Disable Output": ""
},
"Disable clipboard manager entirely (requires restart)": {
"Disable clipboard manager entirely (requires restart)": ""
},
"Disabled": {
"Disabled": "מושבת"
},
"Discard": {
"Discard": ""
},
"Disconnect": {
"Disconnect": "ניתוק"
},
@@ -977,6 +1073,9 @@
"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": "הצג/י Dock עם יישומים מוצמדים ופעילים"
},
@@ -989,6 +1088,9 @@
"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": "הצג/י את כותרת האפליקציה שנמצאת כרגע במוקד"
},
@@ -1079,6 +1181,9 @@
"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": "הפעל/י התחברות אוטומטית"
},
@@ -1088,6 +1193,9 @@
"Enable Border": {
"Enable Border": "הפעל/י מסגרת"
},
"Enable Desktop Clock": {
"Enable Desktop Clock": ""
},
"Enable Do Not Disturb": {
"Enable Do Not Disturb": "הפעל/י את מצב ״נא לא להפריע״"
},
@@ -1097,6 +1205,9 @@
"Enable Overview Overlay": {
"Enable Overview Overlay": "הפעל/י שכבת כיסוי לסקירה"
},
"Enable System Monitor": {
"Enable System Monitor": ""
},
"Enable System Sounds": {
"Enable System Sounds": "הפעלת צלילי מערכת"
},
@@ -1187,6 +1298,9 @@
"Exclusive Zone Offset": {
"Exclusive Zone Offset": "היסט האזור הבלעדי"
},
"Experimental Feature": {
"Experimental Feature": ""
},
"F1/I: Toggle • F10: Help": {
"F1/I: Toggle • F10: Help": "F1/I: החלפה • F10: עזרה"
},
@@ -1316,6 +1430,9 @@
"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": "מרגיש כמו"
},
@@ -1349,6 +1466,21 @@
"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": "חלון ממוקד"
},
@@ -1367,9 +1499,15 @@
"Font Weight": {
"Font Weight": "משקל הגופן"
},
"Force HDR": {
"Force HDR": ""
},
"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": "אלץ/י יישומי מסוף להשתמש תמיד בערכות צבעים כהות"
},
@@ -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": "הפעל/י דהייה הדרגתית של המסך לפני הנעילה עם תקופת חסד הניתנת להגדרה"
},
"Graph Time Range": {
"Graph Time Range": ""
},
"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": "קבץ/י מספר חלונות של אותה אפליקציה יחד עם מונה חלונות"
},
"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"
},
@@ -1457,6 +1607,9 @@
"Held": {
"Held": "מושהה"
},
"Help": {
"Help": ""
},
"Hex": {
"Hex": "Hex"
},
@@ -1496,6 +1649,9 @@
"Hold to confirm (%1s)": {
"Hold to confirm (%1s)": "החזק/י לחוץ כדי לאשר (%1 שניות)"
},
"Hot Corners": {
"Hot Corners": ""
},
"Hotkey overlay title (optional)": {
"Hotkey overlay title (optional)": "כותרת קיצור דרך שתופיע בשכבה עליונה (אופציונלי)"
},
@@ -1565,6 +1721,9 @@
"Include Transitions": {
"Include Transitions": "כלול/כללי מעברים"
},
"Incompatible Plugins Loaded": {
"Incompatible Plugins Loaded": ""
},
"Incorrect password": {
"Incorrect password": "סיסמה שגויה"
},
@@ -1577,6 +1736,9 @@
"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": "מנע/י כיבוי מסך אוטומטי בעת ניגון שמע או וידאו"
},
@@ -1598,6 +1760,9 @@
"Interval": {
"Interval": "מרווח זמן"
},
"Invalid configuration": {
"Invalid configuration": ""
},
"Invert on mode change": {
"Invert on mode change": "הפוך/הפכי בעת שינוי מצב"
},
@@ -1670,6 +1835,9 @@
"Layout": {
"Layout": "פריסה"
},
"Layout Overrides": {
"Layout Overrides": ""
},
"Left": {
"Left": "שמאל"
},
@@ -1682,6 +1850,9 @@
"Lines: %1": {
"Lines: %1": "שורות: %1"
},
"List": {
"List": ""
},
"Lively palette with saturated accents.": {
"Lively palette with saturated accents.": "פלטת צבעים תוססת עם דגשים רוויים."
},
@@ -1847,6 +2018,9 @@
"Memory": {
"Memory": "זיכרון"
},
"Memory Graph": {
"Memory Graph": ""
},
"Memory Usage": {
"Memory Usage": "שימוש בזיכרון"
},
@@ -1883,6 +2057,12 @@
"Model": {
"Model": "דגם"
},
"Modified": {
"Modified": ""
},
"Monitor Configuration": {
"Monitor Configuration": ""
},
"Monitor whose wallpaper drives dynamic theming colors": {
"Monitor whose wallpaper drives dynamic theming colors": "המסך שהרקע שלו קובע את צבעי ערכת הנושא הדינמית"
},
@@ -1898,6 +2078,9 @@
"Mount": {
"Mount": "טעינה"
},
"Move Widget": {
"Move Widget": ""
},
"Moving to Paused": {
"Moving to Paused": "עובר להשהיה"
},
@@ -1919,6 +2102,9 @@
"Network": {
"Network": "רשת"
},
"Network Graph": {
"Network Graph": ""
},
"Network Info": {
"Network Info": "מידע רשת"
},
@@ -2015,6 +2201,9 @@
"No drivers found": {
"No drivers found": "לא נמצאו מנהלי התקן"
},
"No features enabled": {
"No features enabled": ""
},
"No files found": {
"No files found": "לא נמצאו קבצים"
},
@@ -2042,9 +2231,15 @@
"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": "ללא"
},
"Normal": {
"Normal": ""
},
"Normal Font": {
"Normal Font": "גופן רגיל"
},
@@ -2096,6 +2291,9 @@
"OSD Position": {
"OSD Position": "מיקום OSD"
},
"Off": {
"Off": ""
},
"Office": {
"Office": "משרד"
},
@@ -2159,12 +2357,18 @@
"Output Tray Missing": {
"Output Tray Missing": "מגש הפלט חסר"
},
"Outputs Include Missing": {
"Outputs Include Missing": ""
},
"Overridden by config": {
"Overridden by config": "נדרס על ידי config"
},
"Override": {
"Override": "דריסה"
},
"Override global layout settings for this output": {
"Override global layout settings for this output": ""
},
"Overrides": {
"Overrides": "דריסות"
},
@@ -2324,6 +2528,9 @@
"Preference": {
"Preference": "העדפה"
},
"Preset Widths (%)": {
"Preset Widths (%)": ""
},
"Press key...": {
"Press key...": "לחץ/י על מקש..."
},
@@ -2372,6 +2579,9 @@
"Process": {
"Process": "תהליך"
},
"Process Count": {
"Process Count": ""
},
"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": "דרוש/דרשי החזקה של הכפתור לאישור כיבוי, הפעלה מחדש, השהיה, שינה עמוקה והתנתקות"
},
"Requires DMS": {
"Requires DMS": ""
},
"Requires DWL compositor": {
"Requires DWL compositor": "דורש קומפוזיטור DWL"
},
"Reset": {
"Reset": "איפוס"
},
"Reset Position": {
"Reset Position": ""
},
"Reset Size": {
"Reset Size": ""
},
"Resize Widget": {
"Resize Widget": ""
},
"Resolution & Refresh": {
"Resolution & Refresh": ""
},
"Resources": {
"Resources": "משאבים"
},
@@ -2483,6 +2708,12 @@
"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": "לחץ/י קליק ימני על הווידג׳ט כדי לעבור במעגל"
},
@@ -2507,6 +2738,12 @@
"Running Apps Settings": {
"Running Apps Settings": "הגדרות אפליקציות פעילות"
},
"SDR Brightness": {
"SDR Brightness": ""
},
"SDR Saturation": {
"SDR Saturation": ""
},
"Save": {
"Save": "שמירה"
},
@@ -2522,6 +2759,9 @@
"Saved Configurations": {
"Saved Configurations": "תצורות שמורות"
},
"Scale": {
"Scale": ""
},
"Scale DankBar font sizes independently": {
"Scale DankBar font sizes independently": "שנה/י את גודל הגופנים של DankBar באופן עצמאי"
},
@@ -2540,6 +2780,9 @@
"Screen sharing": {
"Screen sharing": "שיתוף מסך"
},
"Scroll Wheel": {
"Scroll Wheel": ""
},
"Scroll song title": {
"Scroll song title": "גלילה של שם השיר"
},
@@ -2570,6 +2813,9 @@
"Searching...": {
"Searching...": "מחפש..."
},
"Secondary": {
"Secondary": ""
},
"Secured": {
"Secured": "מאובטח"
},
@@ -2666,15 +2912,39 @@
"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 Date": {
"Show Date": ""
},
"Show Disk": {
"Show Disk": ""
},
"Show Dock": {
"Show Dock": "הצג/י Dock"
},
"Show GPU Temperature": {
"Show GPU Temperature": ""
},
"Show Header": {
"Show Header": ""
},
"Show Hibernate": {
"Show Hibernate": "הצג/י שינה עמוקה"
},
"Show Hour Numbers": {
"Show Hour Numbers": ""
},
"Show Line Numbers": {
"Show Line Numbers": "הצג/י מספרי שורות"
},
@@ -2684,6 +2954,18 @@
"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": "הצג/י רק סביבות עבודה שתפוסות"
},
@@ -2705,6 +2987,9 @@
"Show Suspend": {
"Show Suspend": "הצג/י השהיה"
},
"Show Top Processes": {
"Show Top Processes": ""
},
"Show Workspace Apps": {
"Show Workspace Apps": "הצג/י אפליקציות בסביבת העבודה"
},
@@ -2807,9 +3092,15 @@
"Sizing": {
"Sizing": "גודל"
},
"Some plugins require a newer version of DMS:": {
"Some plugins require a newer version of DMS:": ""
},
"Sort Alphabetically": {
"Sort Alphabetically": "מיון לפי סדר אלפביתי"
},
"Sort By": {
"Sort By": ""
},
"Sorting & Layout": {
"Sorting & Layout": "מיון ופריסה"
},
@@ -2834,6 +3125,9 @@
"Square Corners": {
"Square Corners": "פינות ישרות"
},
"Stacked": {
"Stacked": ""
},
"Start": {
"Start": "התחל/י"
},
@@ -3053,12 +3347,24 @@
"Top Bar Format": {
"Top Bar Format": "תבנית הסרגל העליון"
},
"Top Left": {
"Top Left": ""
},
"Top Processes": {
"Top Processes": ""
},
"Top Right": {
"Top Right": ""
},
"Top Section": {
"Top Section": "מקטע עליון"
},
"Total Jobs": {
"Total Jobs": "סה״כ עבודות"
},
"Transform": {
"Transform": ""
},
"Transition Effect": {
"Transition Effect": "אפקט מעבר"
},
@@ -3182,9 +3488,27 @@
"VPN status and quick connect": {
"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: "
},
"Variable Refresh Rate": {
"Variable Refresh Rate": ""
},
"Variant created - expand to configure": {
"Variant created - expand to configure": ""
},
"Variant removed": {
"Variant removed": ""
},
"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.": "כאשר אפשרות זו מופעלת, שכבת המשגר תוצג מעל הסקירה של 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"
},
@@ -3278,6 +3606,9 @@
"WiFi is off": {
"WiFi is off": "הWi-Fi כבוי"
},
"Wide (BT2020)": {
"Wide (BT2020)": ""
},
"Widget Background Color": {
"Widget Background Color": "צבע רקע לווידג׳טים"
},
@@ -3296,6 +3627,9 @@
"Widget Transparency": {
"Widget Transparency": "שקיפות לווידג׳טים"
},
"Widget Variants": {
"Widget Variants": ""
},
"Widgets": {
"Widgets": "ווידג׳טים"
},
@@ -3305,6 +3639,9 @@
"Wind Speed": {
"Wind Speed": "מהירות הרוח"
},
"Window Gaps (px)": {
"Window Gaps (px)": ""
},
"Workspace": {
"Workspace": "סביבת עבודה"
},
@@ -3326,6 +3663,12 @@
"Workspaces & Widgets": {
"Workspaces & Widgets": "סביבות עבודה וווידג׳טים"
},
"X Axis": {
"X Axis": ""
},
"Y Axis": {
"Y Axis": ""
},
"Yes": {
"Yes": "כן"
},
@@ -3398,6 +3741,9 @@
"settings window title": {
"Settings": "הגדרות"
},
"settings_displays": {
"Widgets": ""
},
"sysmon window title": {
"System Monitor": "מנטר המערכת"
},

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -50,12 +50,18 @@
"10 seconds": {
"10 seconds": ""
},
"10-bit Color": {
"10-bit Color": ""
},
"14 days": {
"14 days": ""
},
"15 seconds": {
"15 seconds": ""
},
"180°": {
"180°": ""
},
"2 minutes": {
"2 minutes": ""
},
@@ -65,6 +71,9 @@
"24-hour format": {
"24-hour format": "24時間形式"
},
"270°": {
"270°": ""
},
"3 days": {
"3 days": ""
},
@@ -95,6 +104,9 @@
"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?": "この名前のファイルは既に存在します。上書きしてもよろしいですか?"
},
@@ -200,6 +212,9 @@
"Amount": {
"Amount": ""
},
"Analog": {
"Analog": ""
},
"Animation Speed": {
"Animation Speed": "アニメーション速度"
},
@@ -218,6 +233,9 @@
"Applications": {
"Applications": "アプリ"
},
"Apply Changes": {
"Apply Changes": ""
},
"Apply GTK Colors": {
"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.": "アプリは使用頻度、最終使用日、アルファベット順の優先順位で並べられています。"
},
"Arrange displays and configure resolution, refresh rate, and VRR": {
"Arrange displays and configure resolution, refresh rate, and VRR": ""
},
"Audio": {
"Audio": ""
},
@@ -284,6 +305,9 @@
"Auto": {
"Auto": ""
},
"Auto (Wide)": {
"Auto (Wide)": ""
},
"Auto Location": {
"Auto Location": "自動位置検出"
},
@@ -365,6 +389,9 @@
"Backend": {
"Backend": ""
},
"Background Opacity": {
"Background Opacity": ""
},
"Balanced palette with focused accents (default).": {
"Balanced palette with focused accents (default).": "アクセントに焦点を絞ったバランスの取れたパレット(デフォルト)。"
},
@@ -392,6 +419,9 @@
"Binds include added": {
"Binds include added": ""
},
"Bit Depth": {
"Bit Depth": ""
},
"Bluetooth": {
"Bluetooth": ""
},
@@ -422,6 +452,12 @@
"Bottom": {
"Bottom": "ボトム"
},
"Bottom Left": {
"Bottom Left": ""
},
"Bottom Right": {
"Bottom Right": ""
},
"Bottom Section": {
"Bottom Section": "ボトムセクション"
},
@@ -443,6 +479,9 @@
"CPU": {
"CPU": "CPU"
},
"CPU Graph": {
"CPU Graph": ""
},
"CPU Temperature": {
"CPU Temperature": "CPU温度"
},
@@ -491,6 +530,9 @@
"Center Section": {
"Center Section": "センターセクション"
},
"Center Single Column": {
"Center Single Column": ""
},
"Center Tiling": {
"Center Tiling": "中央タイルリング"
},
@@ -536,6 +578,9 @@
"Choose where on-screen displays appear on screen": {
"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.": ""
},
@@ -587,6 +632,9 @@
"Clock": {
"Clock": "時計"
},
"Clock Style": {
"Clock Style": ""
},
"Clock show seconds": {
"Clock show seconds": "時計に秒数を表示"
},
@@ -599,6 +647,12 @@
"Color": {
"Color": ""
},
"Color Gamut": {
"Color Gamut": ""
},
"Color Management": {
"Color Management": ""
},
"Color Mode": {
"Color Mode": ""
},
@@ -623,6 +677,9 @@
"Colorful mix of bright contrasting accents.": {
"Colorful mix of bright contrasting accents.": "明るいコントラストのアクセントのカラフルなミックス。"
},
"Column": {
"Column": ""
},
"Command": {
"Command": ""
},
@@ -656,12 +713,27 @@
"Compositor": {
"Compositor": "コンポジター"
},
"Compositor Settings": {
"Compositor Settings": ""
},
"Config Format": {
"Config Format": ""
},
"Config action: %1": {
"Config action: %1": ""
},
"Config validation failed": {
"Config validation failed": ""
},
"Configuration": {
"Configuration": ""
},
"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": ""
},
@@ -710,6 +782,9 @@
"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": ""
},
@@ -815,6 +890,9 @@
"Custom Transparency": {
"Custom Transparency": "カスタム透明度"
},
"Custom...": {
"Custom...": ""
},
"Custom: ": {
"Custom: ": "カスタム: "
},
@@ -896,6 +974,9 @@
"Default": {
"Default": "デフォルト"
},
"Default Width (%)": {
"Default Width (%)": ""
},
"Default selected action": {
"Default selected action": "デフォルトで選択されるアクション"
},
@@ -923,6 +1004,12 @@
"Description": {
"Description": ""
},
"Desktop Clock": {
"Desktop Clock": ""
},
"Desktop Widgets": {
"Desktop Widgets": ""
},
"Desktop background images": {
"Desktop background images": "デスクトップの背景画像"
},
@@ -935,6 +1022,9 @@
"Device paired": {
"Device paired": "デバイスがペアリングされました"
},
"Digital": {
"Digital": ""
},
"Disable Autoconnect": {
"Disable Autoconnect": "自動接続を無効"
},
@@ -947,12 +1037,18 @@
"Disable History Persistence": {
"Disable History Persistence": ""
},
"Disable Output": {
"Disable Output": ""
},
"Disable clipboard manager entirely (requires restart)": {
"Disable clipboard manager entirely (requires restart)": ""
},
"Disabled": {
"Disabled": "無効化されました"
},
"Discard": {
"Discard": ""
},
"Disconnect": {
"Disconnect": "切断"
},
@@ -977,6 +1073,9 @@
"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": ""
},
@@ -989,6 +1088,9 @@
"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": "現在フォーカスされているアプリケーションのタイトルを表示"
},
@@ -1079,6 +1181,9 @@
"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": "自動接続を有効"
},
@@ -1088,6 +1193,9 @@
"Enable Border": {
"Enable Border": ""
},
"Enable Desktop Clock": {
"Enable Desktop Clock": ""
},
"Enable Do Not Disturb": {
"Enable Do Not Disturb": ""
},
@@ -1097,6 +1205,9 @@
"Enable Overview Overlay": {
"Enable Overview Overlay": ""
},
"Enable System Monitor": {
"Enable System Monitor": ""
},
"Enable System Sounds": {
"Enable System Sounds": "システムサウンドを有効に"
},
@@ -1187,6 +1298,9 @@
"Exclusive Zone Offset": {
"Exclusive Zone Offset": "排他ゾーンオフセット"
},
"Experimental Feature": {
"Experimental Feature": ""
},
"F1/I: Toggle • F10: Help": {
"F1/I: Toggle • F10: Help": "F1/I: 切り替え • F10: ヘルプ"
},
@@ -1316,6 +1430,9 @@
"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": "どうやら"
},
@@ -1349,6 +1466,21 @@
"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": "フォーカスされたウィンドウ"
},
@@ -1367,9 +1499,15 @@
"Font Weight": {
"Font Weight": "フォントの太さ"
},
"Force HDR": {
"Force HDR": ""
},
"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": "端末アプリで常に暗い配色を強制使用"
},
@@ -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": ""
},
"Graph Time Range": {
"Graph Time Range": ""
},
"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": "同じアプリの複数のウィンドウをウィンドウ数インジケーターでグループ化します"
},
"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": "色相/彩度/輝度"
},
@@ -1457,6 +1607,9 @@
"Held": {
"Held": ""
},
"Help": {
"Help": ""
},
"Hex": {
"Hex": "16進数"
},
@@ -1496,6 +1649,9 @@
"Hold to confirm (%1s)": {
"Hold to confirm (%1s)": ""
},
"Hot Corners": {
"Hot Corners": ""
},
"Hotkey overlay title (optional)": {
"Hotkey overlay title (optional)": ""
},
@@ -1565,6 +1721,9 @@
"Include Transitions": {
"Include Transitions": "トランジションを含める"
},
"Incompatible Plugins Loaded": {
"Incompatible Plugins Loaded": ""
},
"Incorrect password": {
"Incorrect password": "パスワードが間違っています"
},
@@ -1577,6 +1736,9 @@
"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": "オーディオまたはビデオの再生中のアイドルタイムアウトを禁止"
},
@@ -1598,6 +1760,9 @@
"Interval": {
"Interval": "間隔"
},
"Invalid configuration": {
"Invalid configuration": ""
},
"Invert on mode change": {
"Invert on mode change": "モード変更時に反転"
},
@@ -1670,6 +1835,9 @@
"Layout": {
"Layout": "レイアウト"
},
"Layout Overrides": {
"Layout Overrides": ""
},
"Left": {
"Left": "左"
},
@@ -1682,6 +1850,9 @@
"Lines: %1": {
"Lines: %1": "行数: %1"
},
"List": {
"List": ""
},
"Lively palette with saturated accents.": {
"Lively palette with saturated accents.": "彩度の高いアクセントを備えた生き生きとしたパレット。"
},
@@ -1847,6 +2018,9 @@
"Memory": {
"Memory": "メモリ"
},
"Memory Graph": {
"Memory Graph": ""
},
"Memory Usage": {
"Memory Usage": "メモリ使用率"
},
@@ -1883,6 +2057,12 @@
"Model": {
"Model": "モデル"
},
"Modified": {
"Modified": ""
},
"Monitor Configuration": {
"Monitor Configuration": ""
},
"Monitor whose wallpaper drives dynamic theming colors": {
"Monitor whose wallpaper drives dynamic theming colors": "ダイナミックテーマの色を駆動する壁紙をモニター"
},
@@ -1898,6 +2078,9 @@
"Mount": {
"Mount": "マウント"
},
"Move Widget": {
"Move Widget": ""
},
"Moving to Paused": {
"Moving to Paused": "一時停止への移行"
},
@@ -1919,6 +2102,9 @@
"Network": {
"Network": "ネットワーク"
},
"Network Graph": {
"Network Graph": ""
},
"Network Info": {
"Network Info": "ネットワーク情報"
},
@@ -2015,6 +2201,9 @@
"No drivers found": {
"No drivers found": ""
},
"No features enabled": {
"No features enabled": ""
},
"No files found": {
"No files found": "ファイルが見つかりませんでした"
},
@@ -2042,9 +2231,15 @@
"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": "ない"
},
"Normal": {
"Normal": ""
},
"Normal Font": {
"Normal Font": ""
},
@@ -2096,6 +2291,9 @@
"OSD Position": {
"OSD Position": "OSD位置"
},
"Off": {
"Off": ""
},
"Office": {
"Office": "オフィス"
},
@@ -2159,12 +2357,18 @@
"Output Tray Missing": {
"Output Tray Missing": "アウトプットトレイが見つかりませんでした"
},
"Outputs Include Missing": {
"Outputs Include Missing": ""
},
"Overridden by config": {
"Overridden by config": ""
},
"Override": {
"Override": ""
},
"Override global layout settings for this output": {
"Override global layout settings for this output": ""
},
"Overrides": {
"Overrides": ""
},
@@ -2324,6 +2528,9 @@
"Preference": {
"Preference": ""
},
"Preset Widths (%)": {
"Preset Widths (%)": ""
},
"Press key...": {
"Press key...": ""
},
@@ -2372,6 +2579,9 @@
"Process": {
"Process": "プロセス"
},
"Process Count": {
"Process Count": ""
},
"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": ""
},
"Requires DMS": {
"Requires DMS": ""
},
"Requires DWL compositor": {
"Requires DWL compositor": "DWLコンポジターが必要"
},
"Reset": {
"Reset": "リセット"
},
"Reset Position": {
"Reset Position": ""
},
"Reset Size": {
"Reset Size": ""
},
"Resize Widget": {
"Resize Widget": ""
},
"Resolution & Refresh": {
"Resolution & Refresh": ""
},
"Resources": {
"Resources": "リソース"
},
@@ -2483,6 +2708,12 @@
"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": "バーウィジェットを右クリックして循環"
},
@@ -2507,6 +2738,12 @@
"Running Apps Settings": {
"Running Apps Settings": "実行中のアプリの設定"
},
"SDR Brightness": {
"SDR Brightness": ""
},
"SDR Saturation": {
"SDR Saturation": ""
},
"Save": {
"Save": "保存"
},
@@ -2522,6 +2759,9 @@
"Saved Configurations": {
"Saved Configurations": ""
},
"Scale": {
"Scale": ""
},
"Scale DankBar font sizes independently": {
"Scale DankBar font sizes independently": "Dank Barのフォントサイズを個別に調整"
},
@@ -2540,6 +2780,9 @@
"Screen sharing": {
"Screen sharing": "画面共有"
},
"Scroll Wheel": {
"Scroll Wheel": ""
},
"Scroll song title": {
"Scroll song title": ""
},
@@ -2570,6 +2813,9 @@
"Searching...": {
"Searching...": "検索中..."
},
"Secondary": {
"Secondary": ""
},
"Secured": {
"Secured": ""
},
@@ -2666,15 +2912,39 @@
"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 Date": {
"Show Date": ""
},
"Show Disk": {
"Show Disk": ""
},
"Show Dock": {
"Show Dock": "ドックを表示"
},
"Show GPU Temperature": {
"Show GPU Temperature": ""
},
"Show Header": {
"Show Header": ""
},
"Show Hibernate": {
"Show Hibernate": "休止状態を表示"
},
"Show Hour Numbers": {
"Show Hour Numbers": ""
},
"Show Line Numbers": {
"Show Line Numbers": "行番号を表示"
},
@@ -2684,6 +2954,18 @@
"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": ""
},
@@ -2705,6 +2987,9 @@
"Show Suspend": {
"Show Suspend": "一時停止を表示"
},
"Show Top Processes": {
"Show Top Processes": ""
},
"Show Workspace Apps": {
"Show Workspace Apps": "ワークスペースアプリを表示"
},
@@ -2807,9 +3092,15 @@
"Sizing": {
"Sizing": ""
},
"Some plugins require a newer version of DMS:": {
"Some plugins require a newer version of DMS:": ""
},
"Sort Alphabetically": {
"Sort Alphabetically": "アルファベット順に並べ替える"
},
"Sort By": {
"Sort By": ""
},
"Sorting & Layout": {
"Sorting & Layout": ""
},
@@ -2834,6 +3125,9 @@
"Square Corners": {
"Square Corners": "四角コーナー"
},
"Stacked": {
"Stacked": ""
},
"Start": {
"Start": "始める"
},
@@ -3053,12 +3347,24 @@
"Top Bar Format": {
"Top Bar Format": "トップバー形式"
},
"Top Left": {
"Top Left": ""
},
"Top Processes": {
"Top Processes": ""
},
"Top Right": {
"Top Right": ""
},
"Top Section": {
"Top Section": "トップセクション"
},
"Total Jobs": {
"Total Jobs": ""
},
"Transform": {
"Transform": ""
},
"Transition Effect": {
"Transition Effect": "トランジション効果"
},
@@ -3182,9 +3488,27 @@
"VPN status and quick connect": {
"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: "
},
"Variable Refresh Rate": {
"Variable Refresh Rate": ""
},
"Variant created - expand to configure": {
"Variant created - expand to configure": ""
},
"Variant removed": {
"Variant removed": ""
},
"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 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": ""
},
@@ -3278,6 +3606,9 @@
"WiFi is off": {
"WiFi is off": "Wi-Fiはオフ中"
},
"Wide (BT2020)": {
"Wide (BT2020)": ""
},
"Widget Background Color": {
"Widget Background Color": "ウィジェットの背景色"
},
@@ -3296,6 +3627,9 @@
"Widget Transparency": {
"Widget Transparency": "ウィジェットの透明度"
},
"Widget Variants": {
"Widget Variants": ""
},
"Widgets": {
"Widgets": "ウィジェット"
},
@@ -3305,6 +3639,9 @@
"Wind Speed": {
"Wind Speed": ""
},
"Window Gaps (px)": {
"Window Gaps (px)": ""
},
"Workspace": {
"Workspace": "ワークスペース"
},
@@ -3326,6 +3663,12 @@
"Workspaces & Widgets": {
"Workspaces & Widgets": ""
},
"X Axis": {
"X Axis": ""
},
"Y Axis": {
"Y Axis": ""
},
"Yes": {
"Yes": ""
},
@@ -3398,6 +3741,9 @@
"settings window title": {
"Settings": "設定"
},
"settings_displays": {
"Widgets": ""
},
"sysmon window title": {
"System Monitor": "システムモニタ"
},

View File

@@ -50,12 +50,18 @@
"10 seconds": {
"10 seconds": "10 sekund"
},
"10-bit Color": {
"10-bit Color": ""
},
"14 days": {
"14 days": ""
},
"15 seconds": {
"15 seconds": "15 sekund"
},
"180°": {
"180°": ""
},
"2 minutes": {
"2 minutes": "2 minuty"
},
@@ -65,6 +71,9 @@
"24-hour format": {
"24-hour format": "format 24-godzinny"
},
"270°": {
"270°": ""
},
"3 days": {
"3 days": ""
},
@@ -95,6 +104,9 @@
"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?": "Plik o takiej nazwie już istnieje. Czy chcesz go nadpisać?"
},
@@ -200,6 +212,9 @@
"Amount": {
"Amount": ""
},
"Analog": {
"Analog": ""
},
"Animation Speed": {
"Animation Speed": "Szybkość animacji"
},
@@ -218,6 +233,9 @@
"Applications": {
"Applications": "Aplikacje"
},
"Apply Changes": {
"Apply Changes": ""
},
"Apply GTK Colors": {
"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.": "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": "Dźwięk"
},
@@ -284,6 +305,9 @@
"Auto": {
"Auto": "Automatycznie"
},
"Auto (Wide)": {
"Auto (Wide)": ""
},
"Auto Location": {
"Auto Location": "Automatyczna lokalizacja"
},
@@ -365,6 +389,9 @@
"Backend": {
"Backend": "Backend"
},
"Background Opacity": {
"Background Opacity": ""
},
"Balanced palette with focused accents (default).": {
"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": "Dodano powiązania"
},
"Bit Depth": {
"Bit Depth": ""
},
"Bluetooth": {
"Bluetooth": "Bluetooth"
},
@@ -422,6 +452,12 @@
"Bottom": {
"Bottom": "Dół"
},
"Bottom Left": {
"Bottom Left": ""
},
"Bottom Right": {
"Bottom Right": ""
},
"Bottom Section": {
"Bottom Section": "Sekcja dolna"
},
@@ -443,6 +479,9 @@
"CPU": {
"CPU": "CPU"
},
"CPU Graph": {
"CPU Graph": ""
},
"CPU Temperature": {
"CPU Temperature": "Temperatura CPU"
},
@@ -491,6 +530,9 @@
"Center Section": {
"Center Section": "Sekcja środkowa"
},
"Center Single Column": {
"Center Single Column": ""
},
"Center Tiling": {
"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": "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.": "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": "Zegar"
},
"Clock Style": {
"Clock Style": ""
},
"Clock show seconds": {
"Clock show seconds": "Pokazuj sekundy"
},
@@ -599,6 +647,12 @@
"Color": {
"Color": "Kolor"
},
"Color Gamut": {
"Color Gamut": ""
},
"Color Management": {
"Color Management": ""
},
"Color Mode": {
"Color Mode": "Tryb kolorów"
},
@@ -623,6 +677,9 @@
"Colorful mix of bright contrasting accents.": {
"Colorful mix of bright contrasting accents.": "Kolorowa mieszanka jasnych kontrastujących akcentów."
},
"Column": {
"Column": ""
},
"Command": {
"Command": "Rozkaz"
},
@@ -656,12 +713,27 @@
"Compositor": {
"Compositor": "Kompozytor"
},
"Compositor Settings": {
"Compositor Settings": ""
},
"Config Format": {
"Config Format": ""
},
"Config action: %1": {
"Config action: %1": "Akcja konfiguracji: %1"
},
"Config validation failed": {
"Config validation failed": ""
},
"Configuration": {
"Configuration": ""
},
"Configuration activated": {
"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": "Skonfiguruj nową drukarkę"
},
@@ -710,6 +782,9 @@
"Control currently playing media": {
"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": "Steruje kryciem wszystkich okien pop-up, modów i ich warstw zawartości"
},
@@ -815,6 +890,9 @@
"Custom Transparency": {
"Custom Transparency": "Niestandardowa przezroczystość"
},
"Custom...": {
"Custom...": ""
},
"Custom: ": {
"Custom: ": "Niestandardowy: "
},
@@ -896,6 +974,9 @@
"Default": {
"Default": "Domyślne"
},
"Default Width (%)": {
"Default Width (%)": ""
},
"Default selected action": {
"Default selected action": "Domyślnie wybrana akcja"
},
@@ -923,6 +1004,12 @@
"Description": {
"Description": "Opis"
},
"Desktop Clock": {
"Desktop Clock": ""
},
"Desktop Widgets": {
"Desktop Widgets": ""
},
"Desktop background images": {
"Desktop background images": "Obrazy tła pulpitu"
},
@@ -935,6 +1022,9 @@
"Device paired": {
"Device paired": "Urządzenie sparowane"
},
"Digital": {
"Digital": ""
},
"Disable Autoconnect": {
"Disable Autoconnect": "Wyłącz automatyczne łączenie"
},
@@ -947,12 +1037,18 @@
"Disable History Persistence": {
"Disable History Persistence": ""
},
"Disable Output": {
"Disable Output": ""
},
"Disable clipboard manager entirely (requires restart)": {
"Disable clipboard manager entirely (requires restart)": ""
},
"Disabled": {
"Disabled": "Wyłączony"
},
"Discard": {
"Discard": ""
},
"Disconnect": {
"Disconnect": "Rozłącz"
},
@@ -977,6 +1073,9 @@
"Display Name Format": {
"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": "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": "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": "Wyświetlaj tytuł aktywnej aplikacji"
},
@@ -1079,6 +1181,9 @@
"Empty": {
"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": "Włącz automatyczne łączenie"
},
@@ -1088,6 +1193,9 @@
"Enable Border": {
"Enable Border": "Włącz obramowanie"
},
"Enable Desktop Clock": {
"Enable Desktop Clock": ""
},
"Enable Do Not Disturb": {
"Enable Do Not Disturb": "Włącz opcję Nie przeszkadzać"
},
@@ -1097,6 +1205,9 @@
"Enable Overview Overlay": {
"Enable Overview Overlay": "Włącz nakładkę przeglądu"
},
"Enable System Monitor": {
"Enable System Monitor": ""
},
"Enable System Sounds": {
"Enable System Sounds": "Włącz dźwięki systemowe"
},
@@ -1187,6 +1298,9 @@
"Exclusive Zone Offset": {
"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: Przełącz • F10: Pomoc"
},
@@ -1316,6 +1430,9 @@
"Failed to update sharing": {
"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": "Odczuwalna"
},
@@ -1349,6 +1466,21 @@
"Fixing...": {
"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": "Aktywne okno"
},
@@ -1367,9 +1499,15 @@
"Font Weight": {
"Font Weight": "Grubość czcionki"
},
"Force HDR": {
"Force HDR": ""
},
"Force Kill Process": {
"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": "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": "Stopniowe wygaszanie ekranu przed zablokowaniem z konfigurowalnym czasem opóźnienia"
},
"Graph Time Range": {
"Graph Time Range": ""
},
"Graphics": {
"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": "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"
},
@@ -1457,6 +1607,9 @@
"Held": {
"Held": "Wstrzymane"
},
"Help": {
"Help": ""
},
"Hex": {
"Hex": "Klątwa"
},
@@ -1496,6 +1649,9 @@
"Hold to confirm (%1s)": {
"Hold to confirm (%1s)": "Przytrzymaj, aby potwierdzić (%1s)"
},
"Hot Corners": {
"Hot Corners": ""
},
"Hotkey overlay title (optional)": {
"Hotkey overlay title (optional)": "Tytuł nakładki skrótu klawiszowego (opcjonalnie)"
},
@@ -1565,6 +1721,9 @@
"Include Transitions": {
"Include Transitions": "Uwzględnij przejścia"
},
"Incompatible Plugins Loaded": {
"Incompatible Plugins Loaded": ""
},
"Incorrect password": {
"Incorrect password": "Niepoprawne hasło"
},
@@ -1577,6 +1736,9 @@
"Individual bar configuration": {
"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": "Blokuj limit czasu bezczynności podczas odtwarzania dźwięku lub obrazu"
},
@@ -1598,6 +1760,9 @@
"Interval": {
"Interval": "Interwał"
},
"Invalid configuration": {
"Invalid configuration": ""
},
"Invert on mode change": {
"Invert on mode change": "Odwróć przy zmianie trybu"
},
@@ -1670,6 +1835,9 @@
"Layout": {
"Layout": "Układ"
},
"Layout Overrides": {
"Layout Overrides": ""
},
"Left": {
"Left": "Lewa"
},
@@ -1682,6 +1850,9 @@
"Lines: %1": {
"Lines: %1": "Linie: %1"
},
"List": {
"List": ""
},
"Lively palette with saturated accents.": {
"Lively palette with saturated accents.": "Żywa paleta z nasyconymi akcentami."
},
@@ -1847,6 +2018,9 @@
"Memory": {
"Memory": "Pamięć"
},
"Memory Graph": {
"Memory Graph": ""
},
"Memory Usage": {
"Memory Usage": "Użycie pamięci"
},
@@ -1883,6 +2057,12 @@
"Model": {
"Model": "Model"
},
"Modified": {
"Modified": ""
},
"Monitor Configuration": {
"Monitor Configuration": ""
},
"Monitor whose wallpaper drives dynamic theming colors": {
"Monitor whose wallpaper drives dynamic theming colors": "Monitor, którego tapeta steruje dynamicznymi kolorami motywu"
},
@@ -1898,6 +2078,9 @@
"Mount": {
"Mount": "Zamontuj"
},
"Move Widget": {
"Move Widget": ""
},
"Moving to Paused": {
"Moving to Paused": "Przechodzenie w stan wstrzymania"
},
@@ -1919,6 +2102,9 @@
"Network": {
"Network": "Sieć"
},
"Network Graph": {
"Network Graph": ""
},
"Network Info": {
"Network Info": "Informacje o sieci"
},
@@ -2015,6 +2201,9 @@
"No drivers found": {
"No drivers found": "Nie znaleziono sterowników"
},
"No features enabled": {
"No features enabled": ""
},
"No files found": {
"No files found": "Nie znaleziono plików"
},
@@ -2042,9 +2231,15 @@
"No printers found": {
"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": "Brak"
},
"Normal": {
"Normal": ""
},
"Normal Font": {
"Normal Font": "Czcionka normalna"
},
@@ -2096,6 +2291,9 @@
"OSD Position": {
"OSD Position": "Pozycja OSD"
},
"Off": {
"Off": ""
},
"Office": {
"Office": "Biuro"
},
@@ -2159,12 +2357,18 @@
"Output Tray Missing": {
"Output Tray Missing": "Brak tacy wyjściowej"
},
"Outputs Include Missing": {
"Outputs Include Missing": ""
},
"Overridden by config": {
"Overridden by config": "Nadpisane przez konfigurację"
},
"Override": {
"Override": "Prześcigać"
},
"Override global layout settings for this output": {
"Override global layout settings for this output": ""
},
"Overrides": {
"Overrides": "Nadpisuje"
},
@@ -2324,6 +2528,9 @@
"Preference": {
"Preference": "Ustawienie"
},
"Preset Widths (%)": {
"Preset Widths (%)": ""
},
"Press key...": {
"Press key...": "Naciśnij klawisz..."
},
@@ -2372,6 +2579,9 @@
"Process": {
"Process": "Proces"
},
"Process Count": {
"Process Count": ""
},
"Processing": {
"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": "Wymagaj przytrzymania przycisku/klawisza, aby potwierdzić wyłączenie, ponowne uruchomienie, wstrzymanie, hibernację i wylogowanie"
},
"Requires DMS": {
"Requires DMS": ""
},
"Requires DWL compositor": {
"Requires DWL compositor": "Wymaga kompozytora DWL"
},
"Reset": {
"Reset": "Resetuj"
},
"Reset Position": {
"Reset Position": ""
},
"Reset Size": {
"Reset Size": ""
},
"Resize Widget": {
"Resize Widget": ""
},
"Resolution & Refresh": {
"Resolution & Refresh": ""
},
"Resources": {
"Resources": "Źródła"
},
@@ -2483,6 +2708,12 @@
"Right Tiling": {
"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": "Kliknij prawym przyciskiem myszy pasek widżetu, aby przejść do następnego"
},
@@ -2507,6 +2738,12 @@
"Running Apps Settings": {
"Running Apps Settings": "Ustawienia uruchomionych aplikacji"
},
"SDR Brightness": {
"SDR Brightness": ""
},
"SDR Saturation": {
"SDR Saturation": ""
},
"Save": {
"Save": "Zapisz"
},
@@ -2522,6 +2759,9 @@
"Saved Configurations": {
"Saved Configurations": "Zapisane konfiguracje"
},
"Scale": {
"Scale": ""
},
"Scale DankBar font sizes independently": {
"Scale DankBar font sizes independently": "Skaluj rozmiary czcionek DankBar niezależnie"
},
@@ -2540,6 +2780,9 @@
"Screen sharing": {
"Screen sharing": "Udostępnianie ekranu"
},
"Scroll Wheel": {
"Scroll Wheel": ""
},
"Scroll song title": {
"Scroll song title": "Przewiń tytuł piosenki"
},
@@ -2570,6 +2813,9 @@
"Searching...": {
"Searching...": "Wyszukiwanie..."
},
"Secondary": {
"Secondary": ""
},
"Secured": {
"Secured": "Zabezpieczona"
},
@@ -2666,15 +2912,39 @@
"Show All Tags": {
"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": "Pokaż potwierdzenie dla akcji zasilania"
},
"Show Date": {
"Show Date": ""
},
"Show Disk": {
"Show Disk": ""
},
"Show Dock": {
"Show Dock": "Pokaż dok"
},
"Show GPU Temperature": {
"Show GPU Temperature": ""
},
"Show Header": {
"Show Header": ""
},
"Show Hibernate": {
"Show Hibernate": "Pokaż hibernację"
},
"Show Hour Numbers": {
"Show Hour Numbers": ""
},
"Show Line Numbers": {
"Show Line Numbers": "Pokaż numery wierszy"
},
@@ -2684,6 +2954,18 @@
"Show Log Out": {
"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": "Pokaż tylko zajęte obszary robocze"
},
@@ -2705,6 +2987,9 @@
"Show Suspend": {
"Show Suspend": "Pokaż wstrzymanie"
},
"Show Top Processes": {
"Show Top Processes": ""
},
"Show Workspace Apps": {
"Show Workspace Apps": "Pokaż aplikacje z obszaru roboczego"
},
@@ -2807,9 +3092,15 @@
"Sizing": {
"Sizing": "Rozmiarowanie"
},
"Some plugins require a newer version of DMS:": {
"Some plugins require a newer version of DMS:": ""
},
"Sort Alphabetically": {
"Sort Alphabetically": "Sortuj alfabetycznie"
},
"Sort By": {
"Sort By": ""
},
"Sorting & Layout": {
"Sorting & Layout": "Sortowanie i układ"
},
@@ -2834,6 +3125,9 @@
"Square Corners": {
"Square Corners": "Kwadratowe rogi"
},
"Stacked": {
"Stacked": ""
},
"Start": {
"Start": "Start"
},
@@ -3053,12 +3347,24 @@
"Top Bar Format": {
"Top Bar Format": "Format górnego paska"
},
"Top Left": {
"Top Left": ""
},
"Top Processes": {
"Top Processes": ""
},
"Top Right": {
"Top Right": ""
},
"Top Section": {
"Top Section": "Górna sekcja"
},
"Total Jobs": {
"Total Jobs": "Suma zadań"
},
"Transform": {
"Transform": ""
},
"Transition Effect": {
"Transition Effect": "Efekt przejścia"
},
@@ -3075,7 +3381,7 @@
"Typography": "Typografia"
},
"Typography & Motion": {
"Typography & Motion": "Typografia i ruch"
"Typography & Motion": "Czcionki i Animacje"
},
"Unavailable": {
"Unavailable": "Niedostępny"
@@ -3182,9 +3488,27 @@
"VPN status and quick connect": {
"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: "
},
"Variable Refresh Rate": {
"Variable Refresh Rate": ""
},
"Variant created - expand to configure": {
"Variant created - expand to configure": ""
},
"Variant removed": {
"Variant removed": ""
},
"Version": {
"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.": "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": "Hasło Wi-Fi"
},
@@ -3278,6 +3606,9 @@
"WiFi is off": {
"WiFi is off": "WiFi jest wyłączone"
},
"Wide (BT2020)": {
"Wide (BT2020)": ""
},
"Widget Background Color": {
"Widget Background Color": "Kolor tła widżetu"
},
@@ -3296,6 +3627,9 @@
"Widget Transparency": {
"Widget Transparency": "Przezroczystość widżetu"
},
"Widget Variants": {
"Widget Variants": ""
},
"Widgets": {
"Widgets": "Widżety"
},
@@ -3305,6 +3639,9 @@
"Wind Speed": {
"Wind Speed": "Prędkość wiatru"
},
"Window Gaps (px)": {
"Window Gaps (px)": ""
},
"Workspace": {
"Workspace": "Obszar roboczy"
},
@@ -3326,6 +3663,12 @@
"Workspaces & Widgets": {
"Workspaces & Widgets": "Obszary robocze i widżety"
},
"X Axis": {
"X Axis": ""
},
"Y Axis": {
"Y Axis": ""
},
"Yes": {
"Yes": "Tak"
},
@@ -3398,6 +3741,9 @@
"settings window title": {
"Settings": "Ustawienia"
},
"settings_displays": {
"Widgets": ""
},
"sysmon window title": {
"System Monitor": "Monitor systemu"
},

View File

@@ -50,12 +50,18 @@
"10 seconds": {
"10 seconds": ""
},
"10-bit Color": {
"10-bit Color": ""
},
"14 days": {
"14 days": ""
},
"15 seconds": {
"15 seconds": ""
},
"180°": {
"180°": ""
},
"2 minutes": {
"2 minutes": ""
},
@@ -65,6 +71,9 @@
"24-hour format": {
"24-hour format": "formato de 24 horas"
},
"270°": {
"270°": ""
},
"3 days": {
"3 days": ""
},
@@ -95,6 +104,9 @@
"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?": "Um arquivo com esse nome já existe. Você quer sobrescrevê-lo?"
},
@@ -200,6 +212,9 @@
"Amount": {
"Amount": ""
},
"Analog": {
"Analog": ""
},
"Animation Speed": {
"Animation Speed": "Velocidade de Animação"
},
@@ -218,6 +233,9 @@
"Applications": {
"Applications": "Aplicativos"
},
"Apply Changes": {
"Apply Changes": ""
},
"Apply GTK Colors": {
"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.": "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": ""
},
@@ -284,6 +305,9 @@
"Auto": {
"Auto": ""
},
"Auto (Wide)": {
"Auto (Wide)": ""
},
"Auto Location": {
"Auto Location": "Localização Automática"
},
@@ -365,6 +389,9 @@
"Backend": {
"Backend": ""
},
"Background Opacity": {
"Background Opacity": ""
},
"Balanced palette with focused accents (default).": {
"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": ""
},
"Bit Depth": {
"Bit Depth": ""
},
"Bluetooth": {
"Bluetooth": ""
},
@@ -422,6 +452,12 @@
"Bottom": {
"Bottom": "Inferior"
},
"Bottom Left": {
"Bottom Left": ""
},
"Bottom Right": {
"Bottom Right": ""
},
"Bottom Section": {
"Bottom Section": "Seção Inferior"
},
@@ -443,6 +479,9 @@
"CPU": {
"CPU": "CPU"
},
"CPU Graph": {
"CPU Graph": ""
},
"CPU Temperature": {
"CPU Temperature": "Temperatura da CPU"
},
@@ -491,6 +530,9 @@
"Center Section": {
"Center Section": "Seção Central"
},
"Center Single Column": {
"Center Single Column": ""
},
"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 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.": ""
},
@@ -587,6 +632,9 @@
"Clock": {
"Clock": "Relógio"
},
"Clock Style": {
"Clock Style": ""
},
"Clock show seconds": {
"Clock show seconds": "Relógio mostra segundos"
},
@@ -599,6 +647,12 @@
"Color": {
"Color": ""
},
"Color Gamut": {
"Color Gamut": ""
},
"Color Management": {
"Color Management": ""
},
"Color Mode": {
"Color Mode": ""
},
@@ -623,6 +677,9 @@
"Colorful mix of bright contrasting accents.": {
"Colorful mix of bright contrasting accents.": "Mistura colorida de destaques de cor brilhantes e contrastantes."
},
"Column": {
"Column": ""
},
"Command": {
"Command": ""
},
@@ -656,12 +713,27 @@
"Compositor": {
"Compositor": "Compositor"
},
"Compositor Settings": {
"Compositor Settings": ""
},
"Config Format": {
"Config Format": ""
},
"Config action: %1": {
"Config action: %1": ""
},
"Config validation failed": {
"Config validation failed": ""
},
"Configuration": {
"Configuration": ""
},
"Configuration activated": {
"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": ""
},
@@ -710,6 +782,9 @@
"Control currently playing media": {
"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": ""
},
@@ -815,6 +890,9 @@
"Custom Transparency": {
"Custom Transparency": "Transparência Customizada"
},
"Custom...": {
"Custom...": ""
},
"Custom: ": {
"Custom: ": "Customizar: "
},
@@ -896,6 +974,9 @@
"Default": {
"Default": "Padrão"
},
"Default Width (%)": {
"Default Width (%)": ""
},
"Default selected action": {
"Default selected action": ""
},
@@ -923,6 +1004,12 @@
"Description": {
"Description": ""
},
"Desktop Clock": {
"Desktop Clock": ""
},
"Desktop Widgets": {
"Desktop Widgets": ""
},
"Desktop background images": {
"Desktop background images": "Imagens de fundo da área de trabalho"
},
@@ -935,6 +1022,9 @@
"Device paired": {
"Device paired": "Dispositivo pareado"
},
"Digital": {
"Digital": ""
},
"Disable Autoconnect": {
"Disable Autoconnect": ""
},
@@ -947,12 +1037,18 @@
"Disable History Persistence": {
"Disable History Persistence": ""
},
"Disable Output": {
"Disable Output": ""
},
"Disable clipboard manager entirely (requires restart)": {
"Disable clipboard manager entirely (requires restart)": ""
},
"Disabled": {
"Disabled": ""
},
"Discard": {
"Discard": ""
},
"Disconnect": {
"Disconnect": "Desconectar"
},
@@ -977,6 +1073,9 @@
"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": ""
},
@@ -989,6 +1088,9 @@
"Display application icons in workspace indicators": {
"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": "Mostrar título do app em foco"
},
@@ -1079,6 +1181,9 @@
"Empty": {
"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": ""
},
@@ -1088,6 +1193,9 @@
"Enable Border": {
"Enable Border": ""
},
"Enable Desktop Clock": {
"Enable Desktop Clock": ""
},
"Enable Do Not Disturb": {
"Enable Do Not Disturb": ""
},
@@ -1097,6 +1205,9 @@
"Enable Overview Overlay": {
"Enable Overview Overlay": ""
},
"Enable System Monitor": {
"Enable System Monitor": ""
},
"Enable System Sounds": {
"Enable System Sounds": "Ativar Sons do Sistema"
},
@@ -1187,6 +1298,9 @@
"Exclusive Zone Offset": {
"Exclusive Zone Offset": "Ajuste da Zona Exclusiva"
},
"Experimental Feature": {
"Experimental Feature": ""
},
"F1/I: Toggle • F10: Help": {
"F1/I: Toggle • F10: Help": "F1/I: Ativar • F10: Ajuda"
},
@@ -1316,6 +1430,9 @@
"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": "Sensação Térmica"
},
@@ -1349,6 +1466,21 @@
"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": "Janela Focada"
},
@@ -1367,9 +1499,15 @@
"Font Weight": {
"Font Weight": "Peso da Fonte"
},
"Force HDR": {
"Force HDR": ""
},
"Force Kill Process": {
"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": ""
},
@@ -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": ""
},
"Graph Time Range": {
"Graph Time Range": ""
},
"Graphics": {
"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": "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": ""
},
@@ -1457,6 +1607,9 @@
"Held": {
"Held": ""
},
"Help": {
"Help": ""
},
"Hex": {
"Hex": ""
},
@@ -1496,6 +1649,9 @@
"Hold to confirm (%1s)": {
"Hold to confirm (%1s)": ""
},
"Hot Corners": {
"Hot Corners": ""
},
"Hotkey overlay title (optional)": {
"Hotkey overlay title (optional)": ""
},
@@ -1565,6 +1721,9 @@
"Include Transitions": {
"Include Transitions": "Incluir Transições"
},
"Incompatible Plugins Loaded": {
"Incompatible Plugins Loaded": ""
},
"Incorrect password": {
"Incorrect password": "Senha incorreta"
},
@@ -1577,6 +1736,9 @@
"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": ""
},
@@ -1598,6 +1760,9 @@
"Interval": {
"Interval": "Intervalo"
},
"Invalid configuration": {
"Invalid configuration": ""
},
"Invert on mode change": {
"Invert on mode change": "Inverter na mudança de modo"
},
@@ -1670,6 +1835,9 @@
"Layout": {
"Layout": ""
},
"Layout Overrides": {
"Layout Overrides": ""
},
"Left": {
"Left": "Esquerda"
},
@@ -1682,6 +1850,9 @@
"Lines: %1": {
"Lines: %1": "Linhas: %1"
},
"List": {
"List": ""
},
"Lively palette with saturated accents.": {
"Lively palette with saturated accents.": "Paleta vívida com destaques de cor saturados."
},
@@ -1847,6 +2018,9 @@
"Memory": {
"Memory": "Memória"
},
"Memory Graph": {
"Memory Graph": ""
},
"Memory Usage": {
"Memory Usage": "Uso de Memória"
},
@@ -1883,6 +2057,12 @@
"Model": {
"Model": ""
},
"Modified": {
"Modified": ""
},
"Monitor Configuration": {
"Monitor Configuration": ""
},
"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"
},
@@ -1898,6 +2078,9 @@
"Mount": {
"Mount": "Ponto de montagem"
},
"Move Widget": {
"Move Widget": ""
},
"Moving to Paused": {
"Moving to Paused": ""
},
@@ -1919,6 +2102,9 @@
"Network": {
"Network": "Rede"
},
"Network Graph": {
"Network Graph": ""
},
"Network Info": {
"Network Info": "Informação de Rede"
},
@@ -2015,6 +2201,9 @@
"No drivers found": {
"No drivers found": ""
},
"No features enabled": {
"No features enabled": ""
},
"No files found": {
"No files found": "Nenhum arquivo encontrado"
},
@@ -2042,9 +2231,15 @@
"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": ""
},
"Normal": {
"Normal": ""
},
"Normal Font": {
"Normal Font": ""
},
@@ -2096,6 +2291,9 @@
"OSD Position": {
"OSD Position": ""
},
"Off": {
"Off": ""
},
"Office": {
"Office": "Escritório"
},
@@ -2159,12 +2357,18 @@
"Output Tray Missing": {
"Output Tray Missing": ""
},
"Outputs Include Missing": {
"Outputs Include Missing": ""
},
"Overridden by config": {
"Overridden by config": ""
},
"Override": {
"Override": ""
},
"Override global layout settings for this output": {
"Override global layout settings for this output": ""
},
"Overrides": {
"Overrides": ""
},
@@ -2324,6 +2528,9 @@
"Preference": {
"Preference": ""
},
"Preset Widths (%)": {
"Preset Widths (%)": ""
},
"Press key...": {
"Press key...": ""
},
@@ -2372,6 +2579,9 @@
"Process": {
"Process": "Processo"
},
"Process Count": {
"Process Count": ""
},
"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": ""
},
"Requires DMS": {
"Requires DMS": ""
},
"Requires DWL compositor": {
"Requires DWL compositor": ""
},
"Reset": {
"Reset": "Resetar"
},
"Reset Position": {
"Reset Position": ""
},
"Reset Size": {
"Reset Size": ""
},
"Resize Widget": {
"Resize Widget": ""
},
"Resolution & Refresh": {
"Resolution & Refresh": ""
},
"Resources": {
"Resources": "Recursos"
},
@@ -2483,6 +2708,12 @@
"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": ""
},
@@ -2507,6 +2738,12 @@
"Running Apps Settings": {
"Running Apps Settings": "Configurações de Apps em Execução"
},
"SDR Brightness": {
"SDR Brightness": ""
},
"SDR Saturation": {
"SDR Saturation": ""
},
"Save": {
"Save": "Salvar"
},
@@ -2522,6 +2759,9 @@
"Saved Configurations": {
"Saved Configurations": ""
},
"Scale": {
"Scale": ""
},
"Scale DankBar font sizes independently": {
"Scale DankBar font sizes independently": "Ajustar tamanho da fonte da DankBar de forma independente"
},
@@ -2540,6 +2780,9 @@
"Screen sharing": {
"Screen sharing": ""
},
"Scroll Wheel": {
"Scroll Wheel": ""
},
"Scroll song title": {
"Scroll song title": ""
},
@@ -2570,6 +2813,9 @@
"Searching...": {
"Searching...": "Pesquisando..."
},
"Secondary": {
"Secondary": ""
},
"Secured": {
"Secured": ""
},
@@ -2666,15 +2912,39 @@
"Show All 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": "Mostrar Confirmação em Ações de Energia"
},
"Show Date": {
"Show Date": ""
},
"Show Disk": {
"Show Disk": ""
},
"Show Dock": {
"Show Dock": "Mostrar Dock"
},
"Show GPU Temperature": {
"Show GPU Temperature": ""
},
"Show Header": {
"Show Header": ""
},
"Show Hibernate": {
"Show Hibernate": ""
},
"Show Hour Numbers": {
"Show Hour Numbers": ""
},
"Show Line Numbers": {
"Show Line Numbers": "Mostrar Numeração de Linha"
},
@@ -2684,6 +2954,18 @@
"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": ""
},
@@ -2705,6 +2987,9 @@
"Show Suspend": {
"Show Suspend": ""
},
"Show Top Processes": {
"Show Top Processes": ""
},
"Show Workspace Apps": {
"Show Workspace Apps": "Mostrar Aplicativos da Área de Trabalho Virtual"
},
@@ -2807,9 +3092,15 @@
"Sizing": {
"Sizing": ""
},
"Some plugins require a newer version of DMS:": {
"Some plugins require a newer version of DMS:": ""
},
"Sort Alphabetically": {
"Sort Alphabetically": "Ordenar Alfabeticamente"
},
"Sort By": {
"Sort By": ""
},
"Sorting & Layout": {
"Sorting & Layout": ""
},
@@ -2834,6 +3125,9 @@
"Square Corners": {
"Square Corners": "Cantos Retos"
},
"Stacked": {
"Stacked": ""
},
"Start": {
"Start": "Iniciar"
},
@@ -3053,12 +3347,24 @@
"Top Bar Format": {
"Top Bar Format": "Formato da Barra Superior"
},
"Top Left": {
"Top Left": ""
},
"Top Processes": {
"Top Processes": ""
},
"Top Right": {
"Top Right": ""
},
"Top Section": {
"Top Section": "Seção do topo"
},
"Total Jobs": {
"Total Jobs": ""
},
"Transform": {
"Transform": ""
},
"Transition Effect": {
"Transition Effect": "Efeito de Transição"
},
@@ -3182,9 +3488,27 @@
"VPN status and quick connect": {
"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: ": ""
},
"Variable Refresh Rate": {
"Variable Refresh Rate": ""
},
"Variant created - expand to configure": {
"Variant created - expand to configure": ""
},
"Variant removed": {
"Variant removed": ""
},
"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 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": ""
},
@@ -3278,6 +3606,9 @@
"WiFi is off": {
"WiFi is off": "WiFi desligado"
},
"Wide (BT2020)": {
"Wide (BT2020)": ""
},
"Widget Background Color": {
"Widget Background Color": ""
},
@@ -3296,6 +3627,9 @@
"Widget Transparency": {
"Widget Transparency": ""
},
"Widget Variants": {
"Widget Variants": ""
},
"Widgets": {
"Widgets": "Widgets"
},
@@ -3305,6 +3639,9 @@
"Wind Speed": {
"Wind Speed": ""
},
"Window Gaps (px)": {
"Window Gaps (px)": ""
},
"Workspace": {
"Workspace": "Área de Trabalho"
},
@@ -3326,6 +3663,12 @@
"Workspaces & Widgets": {
"Workspaces & Widgets": ""
},
"X Axis": {
"X Axis": ""
},
"Y Axis": {
"Y Axis": ""
},
"Yes": {
"Yes": ""
},
@@ -3398,6 +3741,9 @@
"settings window title": {
"Settings": ""
},
"settings_displays": {
"Widgets": ""
},
"sysmon window title": {
"System Monitor": ""
},

View File

@@ -50,12 +50,18 @@
"10 seconds": {
"10 seconds": "10 saniye"
},
"10-bit Color": {
"10-bit Color": ""
},
"14 days": {
"14 days": ""
},
"15 seconds": {
"15 seconds": "15 saniye"
},
"180°": {
"180°": ""
},
"2 minutes": {
"2 minutes": "2 dakika"
},
@@ -65,6 +71,9 @@
"24-hour format": {
"24-hour format": "24-saat biçimi"
},
"270°": {
"270°": ""
},
"3 days": {
"3 days": ""
},
@@ -95,6 +104,9 @@
"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?": "Bu isimde bir dosya zaten var. Üzerine yazmak istiyor musunuz?"
},
@@ -200,6 +212,9 @@
"Amount": {
"Amount": "Miktar"
},
"Analog": {
"Analog": ""
},
"Animation Speed": {
"Animation Speed": "Animasyon Hızı"
},
@@ -218,6 +233,9 @@
"Applications": {
"Applications": "Uygulamalar"
},
"Apply Changes": {
"Apply Changes": ""
},
"Apply GTK Colors": {
"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.": "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": "Ses"
},
@@ -284,6 +305,9 @@
"Auto": {
"Auto": "Oto"
},
"Auto (Wide)": {
"Auto (Wide)": ""
},
"Auto Location": {
"Auto Location": "Otomatik Konum"
},
@@ -365,6 +389,9 @@
"Backend": {
"Backend": "Arka Uç"
},
"Background Opacity": {
"Background Opacity": ""
},
"Balanced palette with focused accents (default).": {
"Balanced palette with focused accents (default).": "Odaklanmış vurgularla dengeli palet (varsayılan)."
},
@@ -392,6 +419,9 @@
"Binds include added": {
"Binds include added": "Bağlantı dahili eklendi"
},
"Bit Depth": {
"Bit Depth": ""
},
"Bluetooth": {
"Bluetooth": "Bluetooth"
},
@@ -422,6 +452,12 @@
"Bottom": {
"Bottom": "Alt"
},
"Bottom Left": {
"Bottom Left": ""
},
"Bottom Right": {
"Bottom Right": ""
},
"Bottom Section": {
"Bottom Section": "Alt Bölüm"
},
@@ -443,6 +479,9 @@
"CPU": {
"CPU": "CPU"
},
"CPU Graph": {
"CPU Graph": ""
},
"CPU Temperature": {
"CPU Temperature": "CPU Sıcaklığı"
},
@@ -491,6 +530,9 @@
"Center Section": {
"Center Section": "Orta Bölüm"
},
"Center Single Column": {
"Center Single Column": ""
},
"Center Tiling": {
"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": "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.": "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": "Saat"
},
"Clock Style": {
"Clock Style": ""
},
"Clock show seconds": {
"Clock show seconds": "Saat saniyeleri gösterir"
},
@@ -599,6 +647,12 @@
"Color": {
"Color": "Renk"
},
"Color Gamut": {
"Color Gamut": ""
},
"Color Management": {
"Color Management": ""
},
"Color Mode": {
"Color Mode": "Renk Modu"
},
@@ -623,6 +677,9 @@
"Colorful mix of bright contrasting accents.": {
"Colorful mix of bright contrasting accents.": "Parlak kontrastlı vurguların renkli karışımı."
},
"Column": {
"Column": ""
},
"Command": {
"Command": "Komut"
},
@@ -656,12 +713,27 @@
"Compositor": {
"Compositor": "Kompozitör"
},
"Compositor Settings": {
"Compositor Settings": ""
},
"Config Format": {
"Config Format": ""
},
"Config action: %1": {
"Config action: %1": "Yapılandırma eylemi: %1"
},
"Config validation failed": {
"Config validation failed": ""
},
"Configuration": {
"Configuration": ""
},
"Configuration activated": {
"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": "Yeni bir yazıcı yapılandır"
},
@@ -710,6 +782,9 @@
"Control currently playing media": {
"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": "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": "Özel Şeffaflık"
},
"Custom...": {
"Custom...": ""
},
"Custom: ": {
"Custom: ": "Özel: "
},
@@ -896,6 +974,9 @@
"Default": {
"Default": "Varsayılan"
},
"Default Width (%)": {
"Default Width (%)": ""
},
"Default selected action": {
"Default selected action": "Ön tanımlı seçili eylem"
},
@@ -923,6 +1004,12 @@
"Description": {
"Description": "Tanım"
},
"Desktop Clock": {
"Desktop Clock": ""
},
"Desktop Widgets": {
"Desktop Widgets": ""
},
"Desktop background images": {
"Desktop background images": "Masaüstü arkaplan resimleri"
},
@@ -935,6 +1022,9 @@
"Device paired": {
"Device paired": "Cihaz eşleştirildi"
},
"Digital": {
"Digital": ""
},
"Disable Autoconnect": {
"Disable Autoconnect": "Otomatik Bağlanmayı Devre Dışı Bırak"
},
@@ -947,12 +1037,18 @@
"Disable History Persistence": {
"Disable History Persistence": ""
},
"Disable Output": {
"Disable Output": ""
},
"Disable clipboard manager entirely (requires restart)": {
"Disable clipboard manager entirely (requires restart)": ""
},
"Disabled": {
"Disabled": "Devre Dışı"
},
"Discard": {
"Discard": ""
},
"Disconnect": {
"Disconnect": "Bağlantıyı Kes"
},
@@ -977,6 +1073,9 @@
"Display Name 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": "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": "Ç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": "Şu anda odaklanmış uygulamanın başlığını göster"
},
@@ -1079,6 +1181,9 @@
"Empty": {
"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": "Otomatik Bağlanmayı Etkinleştir"
},
@@ -1088,6 +1193,9 @@
"Enable Border": {
"Enable Border": "Kenarlığı Etkinleştir"
},
"Enable Desktop Clock": {
"Enable Desktop Clock": ""
},
"Enable Do Not Disturb": {
"Enable Do Not Disturb": "Rahatsız Etmeyi Etkinleştir"
},
@@ -1097,6 +1205,9 @@
"Enable Overview Overlay": {
"Enable Overview Overlay": "Genel Görünüm Katmanını Etkinleştir"
},
"Enable System Monitor": {
"Enable System Monitor": ""
},
"Enable System Sounds": {
"Enable System Sounds": "Sistem Seslerini Etkinleştir"
},
@@ -1187,6 +1298,9 @@
"Exclusive Zone Offset": {
"Exclusive Zone Offset": "Özel Bölge Ofseti"
},
"Experimental Feature": {
"Experimental Feature": ""
},
"F1/I: Toggle • F10: Help": {
"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": "Paylaşım güncellenemedi"
},
"Failed to write temp file for validation": {
"Failed to write temp file for validation": ""
},
"Feels Like": {
"Feels Like": "Hissedilen"
},
@@ -1349,6 +1466,21 @@
"Fixing...": {
"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": "Odaklanılmış Pencere"
},
@@ -1367,9 +1499,15 @@
"Font Weight": {
"Font Weight": "Yazı Tipi Ağırlığı"
},
"Force HDR": {
"Force HDR": ""
},
"Force Kill Process": {
"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": "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": "Yapılandırılabilir bir bekleme süresi ile kilitlemeden önce ekranı kademeli olarak karartın"
},
"Graph Time Range": {
"Graph Time Range": ""
},
"Graphics": {
"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": "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"
},
@@ -1457,6 +1607,9 @@
"Held": {
"Held": "Bekletildi"
},
"Help": {
"Help": ""
},
"Hex": {
"Hex": "Hex"
},
@@ -1496,6 +1649,9 @@
"Hold to confirm (%1s)": {
"Hold to confirm (%1s)": "Onaylamak için basılı tutun (%1s)"
},
"Hot Corners": {
"Hot Corners": ""
},
"Hotkey overlay title (optional)": {
"Hotkey overlay title (optional)": "Kısayol katmanı başlığı (opsiyonel)"
},
@@ -1565,6 +1721,9 @@
"Include Transitions": {
"Include Transitions": "Geçişleri Dahil Et"
},
"Incompatible Plugins Loaded": {
"Incompatible Plugins Loaded": ""
},
"Incorrect password": {
"Incorrect password": "Hatalı parola"
},
@@ -1577,6 +1736,9 @@
"Individual bar configuration": {
"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": "Ses veya video oynatılırken boşta kalma süresini engelle"
},
@@ -1598,6 +1760,9 @@
"Interval": {
"Interval": "Aralık"
},
"Invalid configuration": {
"Invalid configuration": ""
},
"Invert on mode change": {
"Invert on mode change": "Mod değişikliğinde ters çevir"
},
@@ -1670,6 +1835,9 @@
"Layout": {
"Layout": "Düzen"
},
"Layout Overrides": {
"Layout Overrides": ""
},
"Left": {
"Left": "Sol"
},
@@ -1682,6 +1850,9 @@
"Lines: %1": {
"Lines: %1": "Satırlar: %1"
},
"List": {
"List": ""
},
"Lively palette with saturated accents.": {
"Lively palette with saturated accents.": "Doygun vurgularla canlı renk paleti."
},
@@ -1847,6 +2018,9 @@
"Memory": {
"Memory": "Bellek"
},
"Memory Graph": {
"Memory Graph": ""
},
"Memory Usage": {
"Memory Usage": "Bellek Kullanımı"
},
@@ -1883,6 +2057,12 @@
"Model": {
"Model": "Model"
},
"Modified": {
"Modified": ""
},
"Monitor Configuration": {
"Monitor Configuration": ""
},
"Monitor whose wallpaper drives dynamic theming colors": {
"Monitor whose wallpaper drives dynamic theming colors": "Duvar kağıdı dinamik tema renklerini yönlendiren monitör"
},
@@ -1898,6 +2078,9 @@
"Mount": {
"Mount": "Bağlı"
},
"Move Widget": {
"Move Widget": ""
},
"Moving to Paused": {
"Moving to Paused": "Duraklatılıyor"
},
@@ -1919,6 +2102,9 @@
"Network": {
"Network": "Ağ"
},
"Network Graph": {
"Network Graph": ""
},
"Network Info": {
"Network Info": "Ağ Bilgisi"
},
@@ -2015,6 +2201,9 @@
"No drivers found": {
"No drivers found": "Sürücü bulunamadı"
},
"No features enabled": {
"No features enabled": ""
},
"No files found": {
"No files found": "Dosya bulunamadı"
},
@@ -2042,9 +2231,15 @@
"No printers found": {
"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": "Hiçbiri"
},
"Normal": {
"Normal": ""
},
"Normal Font": {
"Normal Font": "Normal Yazı Tipi"
},
@@ -2096,6 +2291,9 @@
"OSD Position": {
"OSD Position": "OSD Pozisyonu"
},
"Off": {
"Off": ""
},
"Office": {
"Office": "Ofis"
},
@@ -2159,12 +2357,18 @@
"Output Tray Missing": {
"Output Tray Missing": ıktı Tepsisi Yok"
},
"Outputs Include Missing": {
"Outputs Include Missing": ""
},
"Overridden by config": {
"Overridden by config": "Yapılandırma tarafından geçersiz kılınmıştır"
},
"Override": {
"Override": "Geçersiz Kıl"
},
"Override global layout settings for this output": {
"Override global layout settings for this output": ""
},
"Overrides": {
"Overrides": "Geçersiz Kılınanlar"
},
@@ -2324,6 +2528,9 @@
"Preference": {
"Preference": "Tercih"
},
"Preset Widths (%)": {
"Preset Widths (%)": ""
},
"Press key...": {
"Press key...": "Tuşa bas..."
},
@@ -2372,6 +2579,9 @@
"Process": {
"Process": "Süreç"
},
"Process Count": {
"Process Count": ""
},
"Processing": {
"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": "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": "DWL kompozitör gerektirir"
},
"Reset": {
"Reset": "Sıfırla"
},
"Reset Position": {
"Reset Position": ""
},
"Reset Size": {
"Reset Size": ""
},
"Resize Widget": {
"Resize Widget": ""
},
"Resolution & Refresh": {
"Resolution & Refresh": ""
},
"Resources": {
"Resources": "Kaynaklar"
},
@@ -2483,6 +2708,12 @@
"Right Tiling": {
"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": "Çubuk widget'ını sağ tıklayarak döngüye değiştir"
},
@@ -2507,6 +2738,12 @@
"Running Apps Settings": {
"Running Apps Settings": "Çalışan Uygulamalar Ayarları"
},
"SDR Brightness": {
"SDR Brightness": ""
},
"SDR Saturation": {
"SDR Saturation": ""
},
"Save": {
"Save": "Kaydet"
},
@@ -2522,6 +2759,9 @@
"Saved Configurations": {
"Saved Configurations": "Kaydedilen Yapılandırmalar"
},
"Scale": {
"Scale": ""
},
"Scale DankBar font sizes independently": {
"Scale DankBar font sizes independently": "DankBar yazı tipi boyutlarını bağımsız olarak ölçeklendir"
},
@@ -2540,6 +2780,9 @@
"Screen sharing": {
"Screen sharing": "Ekran paylaşımı"
},
"Scroll Wheel": {
"Scroll Wheel": ""
},
"Scroll song title": {
"Scroll song title": "Şarkı başlığını kaydır"
},
@@ -2570,6 +2813,9 @@
"Searching...": {
"Searching...": "Arıyor..."
},
"Secondary": {
"Secondary": ""
},
"Secured": {
"Secured": "Güvenli"
},
@@ -2666,15 +2912,39 @@
"Show All Tags": {
"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": "Güç Eylemlerinde Onay Göster"
},
"Show Date": {
"Show Date": ""
},
"Show Disk": {
"Show Disk": ""
},
"Show Dock": {
"Show Dock": "Dock'u Göster"
},
"Show GPU Temperature": {
"Show GPU Temperature": ""
},
"Show Header": {
"Show Header": ""
},
"Show Hibernate": {
"Show Hibernate": "Hazırda Bekleti Göster"
},
"Show Hour Numbers": {
"Show Hour Numbers": ""
},
"Show Line Numbers": {
"Show Line Numbers": "Satır Numaralarını Göster"
},
@@ -2684,6 +2954,18 @@
"Show Log Out": {
"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": "Sadece Dolu Çalışma Alanlarını Göster"
},
@@ -2705,6 +2987,9 @@
"Show Suspend": {
"Show Suspend": "Askıya Alı Göster"
},
"Show Top Processes": {
"Show Top Processes": ""
},
"Show Workspace Apps": {
"Show Workspace Apps": "Çalışma Alanı Uygulamalarını Göster"
},
@@ -2807,9 +3092,15 @@
"Sizing": {
"Sizing": "Boyutlandırma"
},
"Some plugins require a newer version of DMS:": {
"Some plugins require a newer version of DMS:": ""
},
"Sort Alphabetically": {
"Sort Alphabetically": "Alfabetik Olarak Sırala"
},
"Sort By": {
"Sort By": ""
},
"Sorting & Layout": {
"Sorting & Layout": "Sıralama & Düzen"
},
@@ -2834,6 +3125,9 @@
"Square Corners": {
"Square Corners": "Kare Köşeler"
},
"Stacked": {
"Stacked": ""
},
"Start": {
"Start": "Başlat"
},
@@ -3053,12 +3347,24 @@
"Top Bar Format": {
"Top Bar Format": "Üst Çubuk Biçimi"
},
"Top Left": {
"Top Left": ""
},
"Top Processes": {
"Top Processes": ""
},
"Top Right": {
"Top Right": ""
},
"Top Section": {
"Top Section": "Üst Bölüm"
},
"Total Jobs": {
"Total Jobs": "Toplam İşler"
},
"Transform": {
"Transform": ""
},
"Transition Effect": {
"Transition Effect": "Geçiş Efekti"
},
@@ -3182,9 +3488,27 @@
"VPN status and quick connect": {
"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: "
},
"Variable Refresh Rate": {
"Variable Refresh Rate": ""
},
"Variant created - expand to configure": {
"Variant created - expand to configure": ""
},
"Variant removed": {
"Variant removed": ""
},
"Version": {
"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.": "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 Parolası"
},
@@ -3278,6 +3606,9 @@
"WiFi is off": {
"WiFi is off": "WiFi kapalı"
},
"Wide (BT2020)": {
"Wide (BT2020)": ""
},
"Widget Background Color": {
"Widget Background Color": "Widget Arkaplan Rengi"
},
@@ -3296,6 +3627,9 @@
"Widget Transparency": {
"Widget Transparency": "Widget Opaklığı"
},
"Widget Variants": {
"Widget Variants": ""
},
"Widgets": {
"Widgets": "Widgetlar"
},
@@ -3305,6 +3639,9 @@
"Wind Speed": {
"Wind Speed": "Rüzgar hızı"
},
"Window Gaps (px)": {
"Window Gaps (px)": ""
},
"Workspace": {
"Workspace": "Çalışma Alanı"
},
@@ -3326,6 +3663,12 @@
"Workspaces & Widgets": {
"Workspaces & Widgets": "Çalışma Alanları & Widgetlar"
},
"X Axis": {
"X Axis": ""
},
"Y Axis": {
"Y Axis": ""
},
"Yes": {
"Yes": "Evet"
},
@@ -3398,6 +3741,9 @@
"settings window title": {
"Settings": "Ayarlar"
},
"settings_displays": {
"Widgets": ""
},
"sysmon window title": {
"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