1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-31 08:52:49 -05:00

meta: replace rectangles with DankRectangle shapes

This commit is contained in:
bbedward
2025-11-10 16:16:25 -05:00
parent 201a7e3b34
commit 471938adb6
12 changed files with 97 additions and 429 deletions

View File

@@ -4,6 +4,7 @@ import Quickshell.Hyprland
import Quickshell.Wayland import Quickshell.Wayland
import qs.Common import qs.Common
import qs.Services import qs.Services
import qs.Widgets
PanelWindow { PanelWindow {
id: root id: root
@@ -213,16 +214,12 @@ PanelWindow {
} }
} }
Rectangle { Item {
id: contentContainer id: contentContainer
anchors.centerIn: parent anchors.centerIn: parent
width: parent.width width: parent.width
height: parent.height height: parent.height
color: root.backgroundColor
radius: root.cornerRadius
border.color: root.borderColor
border.width: root.borderWidth
clip: false clip: false
layer.enabled: true layer.enabled: true
layer.smooth: false layer.smooth: false
@@ -241,6 +238,14 @@ PanelWindow {
} }
} }
DankRectangle {
anchors.fill: parent
color: root.backgroundColor
borderColor: root.borderColor
borderWidth: root.borderWidth
radius: root.cornerRadius
}
FocusScope { FocusScope {
anchors.fill: parent anchors.fill: parent
focus: root.shouldBeVisible focus: root.shouldBeVisible

View File

@@ -339,7 +339,7 @@ Variants {
} }
} }
Rectangle { Item {
id: dockBackground id: dockBackground
objectName: "dockBackground" objectName: "dockBackground"
anchors { anchors {
@@ -360,16 +360,13 @@ Variants {
width: implicitWidth width: implicitWidth
height: implicitHeight height: implicitHeight
color: Qt.rgba(Theme.surfaceContainer.r, Theme.surfaceContainer.g, Theme.surfaceContainer.b, backgroundTransparency) layer.enabled: true
radius: Theme.cornerRadius
border.width: 1
border.color: Theme.outlineMedium
clip: false clip: false
Rectangle { DankRectangle {
anchors.fill: parent anchors.fill: parent
color: Qt.rgba(Theme.surfaceTint.r, Theme.surfaceTint.g, Theme.surfaceTint.b, 0.04) color: Qt.rgba(Theme.surfaceContainer.r, Theme.surfaceContainer.g, Theme.surfaceContainer.b, backgroundTransparency)
radius: parent.radius overlayColor: Qt.rgba(Theme.surfaceTint.r, Theme.surfaceTint.g, Theme.surfaceTint.b, 0.04)
} }
} }

View File

@@ -5,6 +5,7 @@ import Quickshell.Hyprland
import Quickshell.Wayland import Quickshell.Wayland
import qs.Common import qs.Common
import qs.Services import qs.Services
import qs.Widgets
PanelWindow { PanelWindow {
id: root id: root
@@ -171,28 +172,26 @@ PanelWindow {
RectangularShadow { RectangularShadow {
id: shadowEffect id: shadowEffect
width: contentLoader.width width: contentLoaderWrapper.width
height: contentLoader.height height: contentLoaderWrapper.height
x: contentLoader.x x: contentLoaderWrapper.x
y: contentLoader.y y: contentLoaderWrapper.y
scale: contentLoader.scale scale: contentLoaderWrapper.scale
transformOrigin: Item.Center transformOrigin: Item.Center
radius: Theme.cornerRadius radius: Theme.cornerRadius
blur: 10 blur: 10
spread: 0 spread: 0
color: Qt.rgba(0, 0, 0, 0.6) color: Qt.rgba(0, 0, 0, 0.6)
visible: contentLoader.visible && shouldBeVisible visible: contentLoaderWrapper.visible && shouldBeVisible
opacity: contentLoader.opacity * 0.6 opacity: contentLoaderWrapper.opacity * 0.6
} }
Loader { Item {
id: contentLoader id: contentLoaderWrapper
anchors.centerIn: parent anchors.centerIn: parent
width: parent.width width: parent.width
height: parent.height height: parent.height
active: root.visible
asynchronous: false
layer.enabled: Quickshell.env("DMS_DISABLE_LAYER") !== "true" && Quickshell.env("DMS_DISABLE_LAYER") !== "1" layer.enabled: Quickshell.env("DMS_DISABLE_LAYER") !== "true" && Quickshell.env("DMS_DISABLE_LAYER") !== "1"
layer.smooth: false layer.smooth: false
layer.textureSize: Qt.size(width * root.dpr, height * root.dpr) layer.textureSize: Qt.size(width * root.dpr, height * root.dpr)
@@ -210,6 +209,17 @@ PanelWindow {
easing.bezierCurve: root.shouldBeVisible ? root.animationEnterCurve : root.animationExitCurve easing.bezierCurve: root.shouldBeVisible ? root.animationEnterCurve : root.animationExitCurve
} }
} }
DankRectangle {
anchors.fill: parent
}
Loader {
id: contentLoader
anchors.fill: parent
active: root.visible
asynchronous: false
}
} }
} }

54
Widgets/DankRectangle.qml Normal file
View File

@@ -0,0 +1,54 @@
import QtQuick
import QtQuick.Shapes
import qs.Common
Item {
id: root
property color color: Theme.surfaceContainer
property color borderColor: Theme.outlineMedium
property real borderWidth: 1
property real radius: Theme.cornerRadius
property color overlayColor: "transparent"
Shape {
anchors.fill: parent
preferredRendererType: Shape.CurveRenderer
ShapePath {
fillColor: root.color
strokeColor: root.borderColor
strokeWidth: root.borderWidth
startX: root.radius
startY: 0
PathLine { x: root.width - root.radius; y: 0 }
PathQuad { x: root.width; y: root.radius; controlX: root.width; controlY: 0 }
PathLine { x: root.width; y: root.height - root.radius }
PathQuad { x: root.width - root.radius; y: root.height; controlX: root.width; controlY: root.height }
PathLine { x: root.radius; y: root.height }
PathQuad { x: 0; y: root.height - root.radius; controlX: 0; controlY: root.height }
PathLine { x: 0; y: root.radius }
PathQuad { x: root.radius; y: 0; controlX: 0; controlY: 0 }
}
ShapePath {
fillColor: root.overlayColor
strokeColor: "transparent"
strokeWidth: 0
startX: root.radius
startY: 0
PathLine { x: root.width - root.radius; y: 0 }
PathQuad { x: root.width; y: root.radius; controlX: root.width; controlY: 0 }
PathLine { x: root.width; y: root.height - root.radius }
PathQuad { x: root.width - root.radius; y: root.height; controlX: root.width; controlY: root.height }
PathLine { x: root.radius; y: root.height }
PathQuad { x: 0; y: root.height - root.radius; controlX: 0; controlY: root.height }
PathLine { x: 0; y: root.radius }
PathQuad { x: root.radius; y: 0; controlX: 0; controlY: 0 }
}
}
}

View File

@@ -110,7 +110,7 @@ PanelWindow {
} }
} }
StyledRect { Item {
id: contentRect id: contentRect
layer.enabled: Quickshell.env("DMS_DISABLE_LAYER") !== "true" && Quickshell.env("DMS_DISABLE_LAYER") !== "1" layer.enabled: Quickshell.env("DMS_DISABLE_LAYER") !== "true" && Quickshell.env("DMS_DISABLE_LAYER") !== "1"
layer.smooth: false layer.smooth: false
@@ -121,11 +121,12 @@ PanelWindow {
anchors.bottom: parent.bottom anchors.bottom: parent.bottom
width: parent.width width: parent.width
x: Theme.snap(slideContainer.slideOffset, root.dpr) x: Theme.snap(slideContainer.slideOffset, root.dpr)
DankRectangle {
anchors.fill: parent
color: Qt.rgba(Theme.surfaceContainer.r, Theme.surfaceContainer.g, Theme.surfaceContainer.b, color: Qt.rgba(Theme.surfaceContainer.r, Theme.surfaceContainer.g, Theme.surfaceContainer.b,
customTransparency >= 0 ? customTransparency : SettingsData.popupTransparency) customTransparency >= 0 ? customTransparency : SettingsData.popupTransparency)
border.color: Theme.outlineMedium }
border.width: 1
radius: Theme.cornerRadius
Column { Column {
id: headerColumn id: headerColumn

View File

@@ -89,9 +89,6 @@
"Applications": { "Applications": {
"Applications": "Applicazioni" "Applications": "Applicazioni"
}, },
"Apply": {
"Apply": "Applica"
},
"Apply GTK Colors": { "Apply GTK Colors": {
"Apply GTK Colors": "Applica Colori GTK" "Apply GTK Colors": "Applica Colori GTK"
}, },
@@ -167,9 +164,6 @@
"Auto-hide Dock": { "Auto-hide Dock": {
"Auto-hide Dock": "Nascondi automaticamente Dock" "Auto-hide Dock": "Nascondi automaticamente Dock"
}, },
"Auto-location": {
"Auto-location": "Localizzazione automatica"
},
"Auto-saving...": { "Auto-saving...": {
"Auto-saving...": "Salvataggio automatico..." "Auto-saving...": "Salvataggio automatico..."
}, },
@@ -230,9 +224,6 @@
"Battery level and power management": { "Battery level and power management": {
"Battery level and power management": "Livello batteria e gestione energetica" "Battery level and power management": "Livello batteria e gestione energetica"
}, },
"Battery not detected - only AC power settings available": {
"Battery not detected - only AC power settings available": "Batteria non rilevata - disponibili solo impostazioni di alimentazione di rete"
},
"Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": { "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": {
"Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": "Collega il blocca schermo ai segnali dbus da loginctl.\nDisabilità se stai usando un blocca schermo esterno" "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": "Collega il blocca schermo ai segnali dbus da loginctl.\nDisabilità se stai usando un blocca schermo esterno"
}, },
@@ -398,9 +389,6 @@
"Compositor": { "Compositor": {
"Compositor": "Compositor\n" "Compositor": "Compositor\n"
}, },
"Compositor:": {
"Compositor:": "Compositor:"
},
"Configuration activated": { "Configuration activated": {
"Configuration activated": "Configurazione attivata" "Configuration activated": "Configurazione attivata"
}, },
@@ -434,9 +422,6 @@
"Connecting to Device": { "Connecting to Device": {
"Connecting to Device": "Connessione al Dispositivo" "Connecting to Device": "Connessione al Dispositivo"
}, },
"Connection failed. Check password and try again.": {
"Connection failed. Check password and try again.": "Connessione fallita. Controlla la password e riprova"
},
"Contrast": { "Contrast": {
"Contrast": "Contrasto" "Contrast": "Contrasto"
}, },
@@ -461,9 +446,6 @@
"Copied!": { "Copied!": {
"Copied!": "Copiato!" "Copied!": "Copiato!"
}, },
"Copy": {
"Copy": "Copia"
},
"Copy PID": { "Copy PID": {
"Copy PID": "Copia PID" "Copy PID": "Copia PID"
}, },
@@ -542,9 +524,6 @@
"Dank Bar Widget Transparency": { "Dank Bar Widget Transparency": {
"Dank Bar Widget Transparency": "Trasparenza Widget Dank Bar" "Dank Bar Widget Transparency": "Trasparenza Widget Dank Bar"
}, },
"Dank Suite:": {
"Dank Suite:": "Dank Suite:"
},
"DankBar Font Scale": { "DankBar Font Scale": {
"DankBar Font Scale": "Scala Font DankBar" "DankBar Font Scale": "Scala Font DankBar"
}, },
@@ -842,9 +821,6 @@
"Format Legend": { "Format Legend": {
"Format Legend": "Legenda Formato" "Format Legend": "Legenda Formato"
}, },
"Framework:": {
"Framework:": "Framework:"
},
"Fun": { "Fun": {
"Fun": "Svago" "Fun": "Svago"
}, },
@@ -866,9 +842,6 @@
"Gamma control not available. Requires DMS API v6+.": { "Gamma control not available. Requires DMS API v6+.": {
"Gamma control not available. Requires DMS API v6+.": "Gamma control non disponibile. Richiede API DMS v6+." "Gamma control not available. Requires DMS API v6+.": "Gamma control non disponibile. Richiede API DMS v6+."
}, },
"Geoclue service not running - cannot auto-detect location": {
"Geoclue service not running - cannot auto-detect location": "Il servizio Geoclue non è in esecuzione - non può determinare la posizione automaticamente"
},
"Github:": { "Github:": {
"Github:": "Github:" "Github:": "Github:"
}, },
@@ -902,15 +875,9 @@
"Hex": { "Hex": {
"Hex": "Hex" "Hex": "Hex"
}, },
"Hex:": {
"Hex:": "Hex:"
},
"Hibernate": { "Hibernate": {
"Hibernate": "Iberna" "Hibernate": "Iberna"
}, },
"Hibernate system after": {
"Hibernate system after": "Iberna sistema dopo"
},
"Hide the dock when not in use and reveal it when hovering near the dock area": { "Hide the dock when not in use and reveal it when hovering near the dock area": {
"Hide the dock when not in use and reveal it when hovering near the dock area": "Nascondi la dock quando " "Hide the dock when not in use and reveal it when hovering near the dock area": "Nascondi la dock quando "
}, },
@@ -1001,9 +968,6 @@
"Kill Process": { "Kill Process": {
"Kill Process": "Chiusura Processo" "Kill Process": "Chiusura Processo"
}, },
"Language:": {
"Language:": "Lingua:"
},
"Last launched %1": { "Last launched %1": {
"Last launched %1": "Ultimo avviato %1" "Last launched %1": "Ultimo avviato %1"
}, },
@@ -1166,9 +1130,6 @@
"Mode: ": { "Mode: ": {
"Mode: ": "" "Mode: ": ""
}, },
"Monitor": {
"Monitor": "Monitor"
},
"Monitor Selection:": { "Monitor Selection:": {
"Monitor Selection:": "Selezione Monitor:" "Monitor Selection:": "Selezione Monitor:"
}, },
@@ -1502,9 +1463,6 @@
"Profile image is too large. Please use a smaller image.": { "Profile image is too large. Please use a smaller image.": {
"Profile image is too large. Please use a smaller image.": "Immagine profilo troppo grande. Per favore usa un'immagine più piccola" "Profile image is too large. Please use a smaller image.": "Immagine profilo troppo grande. Per favore usa un'immagine più piccola"
}, },
"QML, JavaScript, Go": {
"QML, JavaScript, Go": "\nQML, JavaScript, Go"
},
"Quick access to application launcher": { "Quick access to application launcher": {
"Quick access to application launcher": "Accesso veloce al launcher applicazioni" "Quick access to application launcher": "Accesso veloce al launcher applicazioni"
}, },
@@ -1604,9 +1562,6 @@
"Science": { "Science": {
"Science": "Scienza" "Science": "Scienza"
}, },
"Scroll through windows, rather than workspaces": {
"Scroll through windows, rather than workspaces": "Scorri tra le finestre, piuttosto che i workspaces"
},
"Search file contents": { "Search file contents": {
"Search file contents": "Cerca il contenuto dei files" "Search file contents": "Cerca il contenuto dei files"
}, },
@@ -1865,12 +1820,6 @@
"Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": { "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": {
"Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": "Tab/Shift+Tab: Nav • ←→↑↓: Griglia Nav • Enter/Spazio: Seleziona" "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": "Tab/Shift+Tab: Nav • ←→↑↓: Griglia Nav • Enter/Spazio: Seleziona"
}, },
"Technical Details": {
"Technical Details": "Dettagli Tecnici"
},
"Temperature": {
"Temperature": "Temperatura"
},
"Terminal custom additional parameters": { "Terminal custom additional parameters": {
"Terminal custom additional parameters": "Parametri aggiuntivi personalizzati terminale" "Terminal custom additional parameters": "Parametri aggiuntivi personalizzati terminale"
}, },
@@ -1997,9 +1946,6 @@
"Use animated wave progress bars for media playback": { "Use animated wave progress bars for media playback": {
"Use animated wave progress bars for media playback": "Usa barre ad onde animate per la riproduzione media" "Use animated wave progress bars for media playback": "Usa barre ad onde animate per la riproduzione media"
}, },
"Use automatic location detection (geoclue2)": {
"Use automatic location detection (geoclue2)": "Usa il rilevamento automatico della posizione (geoclue2)"
},
"Use custom command for update your system": { "Use custom command for update your system": {
"Use custom command for update your system": "Usa comando personalizzato per aggiornare il sistema" "Use custom command for update your system": "Usa comando personalizzato per aggiornare il sistema"
}, },
@@ -2105,9 +2051,6 @@
"Wind": { "Wind": {
"Wind": "Vento" "Wind": "Vento"
}, },
"Window Scrolling": {
"Window Scrolling": "Scorrimento Finestra"
},
"Workspace": { "Workspace": {
"Workspace": "Workspace" "Workspace": "Workspace"
}, },

View File

@@ -89,9 +89,6 @@
"Applications": { "Applications": {
"Applications": "アプリ" "Applications": "アプリ"
}, },
"Apply": {
"Apply": "適用"
},
"Apply GTK Colors": { "Apply GTK Colors": {
"Apply GTK Colors": "GTKカラーを適用" "Apply GTK Colors": "GTKカラーを適用"
}, },
@@ -167,9 +164,6 @@
"Auto-hide Dock": { "Auto-hide Dock": {
"Auto-hide Dock": "ドックを自動的に隠す" "Auto-hide Dock": "ドックを自動的に隠す"
}, },
"Auto-location": {
"Auto-location": "自動位置特定"
},
"Auto-saving...": { "Auto-saving...": {
"Auto-saving...": "自動保存中..." "Auto-saving...": "自動保存中..."
}, },
@@ -230,9 +224,6 @@
"Battery level and power management": { "Battery level and power management": {
"Battery level and power management": "バッテリーレベルおよび電源管理" "Battery level and power management": "バッテリーレベルおよび電源管理"
}, },
"Battery not detected - only AC power settings available": {
"Battery not detected - only AC power settings available": "バッテリーが検出されません - AC電源設定のみ利用可能です"
},
"Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": { "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": {
"Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": "ロック画面をloginctlからのdbus信号にバインド。外部ロック画面を使用している場合は無効に" "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": "ロック画面をloginctlからのdbus信号にバインド。外部ロック画面を使用している場合は無効に"
}, },
@@ -398,9 +389,6 @@
"Compositor": { "Compositor": {
"Compositor": "コンポジター" "Compositor": "コンポジター"
}, },
"Compositor:": {
"Compositor:": "コンポジター:"
},
"Configuration activated": { "Configuration activated": {
"Configuration activated": "設定が適用されました" "Configuration activated": "設定が適用されました"
}, },
@@ -434,9 +422,6 @@
"Connecting to Device": { "Connecting to Device": {
"Connecting to Device": "デバイスに接続中" "Connecting to Device": "デバイスに接続中"
}, },
"Connection failed. Check password and try again.": {
"Connection failed. Check password and try again.": "接続に失敗しました。パスワードを確認して、もう一度やり直してください。"
},
"Contrast": { "Contrast": {
"Contrast": "コントラスト" "Contrast": "コントラスト"
}, },
@@ -461,9 +446,6 @@
"Copied!": { "Copied!": {
"Copied!": "コピーしました!" "Copied!": "コピーしました!"
}, },
"Copy": {
"Copy": "コピー"
},
"Copy PID": { "Copy PID": {
"Copy PID": "PIDをコピー" "Copy PID": "PIDをコピー"
}, },
@@ -542,9 +524,6 @@
"Dank Bar Widget Transparency": { "Dank Bar Widget Transparency": {
"Dank Bar Widget Transparency": "Dank Barウィジェットの透明度" "Dank Bar Widget Transparency": "Dank Barウィジェットの透明度"
}, },
"Dank Suite:": {
"Dank Suite:": "Dankスイート"
},
"DankBar Font Scale": { "DankBar Font Scale": {
"DankBar Font Scale": "Dank Bar フォントスケール" "DankBar Font Scale": "Dank Bar フォントスケール"
}, },
@@ -842,9 +821,6 @@
"Format Legend": { "Format Legend": {
"Format Legend": "フォーマット凡例" "Format Legend": "フォーマット凡例"
}, },
"Framework:": {
"Framework:": "フレームワーク:"
},
"Fun": { "Fun": {
"Fun": "娯楽" "Fun": "娯楽"
}, },
@@ -866,9 +842,6 @@
"Gamma control not available. Requires DMS API v6+.": { "Gamma control not available. Requires DMS API v6+.": {
"Gamma control not available. Requires DMS API v6+.": "ガンマ制御は使用できません。DMS API v6+ が必要です。" "Gamma control not available. Requires DMS API v6+.": "ガンマ制御は使用できません。DMS API v6+ が必要です。"
}, },
"Geoclue service not running - cannot auto-detect location": {
"Geoclue service not running - cannot auto-detect location": "ジオクルー サービスが実行されていない - 位置を自動検出できません"
},
"Github:": { "Github:": {
"Github:": "GitHub:" "Github:": "GitHub:"
}, },
@@ -902,15 +875,9 @@
"Hex": { "Hex": {
"Hex": "16進数" "Hex": "16進数"
}, },
"Hex:": {
"Hex:": "16進数:"
},
"Hibernate": { "Hibernate": {
"Hibernate": "休止状態" "Hibernate": "休止状態"
}, },
"Hibernate system after": {
"Hibernate system after": "後にシステムを休止状態"
},
"Hide the dock when not in use and reveal it when hovering near the dock area": { "Hide the dock when not in use and reveal it when hovering near the dock area": {
"Hide the dock when not in use and reveal it when hovering near the dock area": "使用していないときはドックを非表示にし、ドックエリアの近くにホバーすると表示されます" "Hide the dock when not in use and reveal it when hovering near the dock area": "使用していないときはドックを非表示にし、ドックエリアの近くにホバーすると表示されます"
}, },
@@ -1001,9 +968,6 @@
"Kill Process": { "Kill Process": {
"Kill Process": "プロセスを強制終了" "Kill Process": "プロセスを強制終了"
}, },
"Language:": {
"Language:": "言語:"
},
"Last launched %1": { "Last launched %1": {
"Last launched %1": "最終起動日 %1" "Last launched %1": "最終起動日 %1"
}, },
@@ -1166,9 +1130,6 @@
"Mode: ": { "Mode: ": {
"Mode: ": "モード: " "Mode: ": "モード: "
}, },
"Monitor": {
"Monitor": "モニター"
},
"Monitor Selection:": { "Monitor Selection:": {
"Monitor Selection:": "モニターの選択:" "Monitor Selection:": "モニターの選択:"
}, },
@@ -1502,9 +1463,6 @@
"Profile image is too large. Please use a smaller image.": { "Profile image is too large. Please use a smaller image.": {
"Profile image is too large. Please use a smaller image.": "プロフィール画像が大きすぎます。より小さい画像を使用してください。" "Profile image is too large. Please use a smaller image.": "プロフィール画像が大きすぎます。より小さい画像を使用してください。"
}, },
"QML, JavaScript, Go": {
"QML, JavaScript, Go": "QML, JavaScript, Go"
},
"Quick access to application launcher": { "Quick access to application launcher": {
"Quick access to application launcher": "アプリケーションランチャーへのクイックアクセス" "Quick access to application launcher": "アプリケーションランチャーへのクイックアクセス"
}, },
@@ -1604,9 +1562,6 @@
"Science": { "Science": {
"Science": "科学" "Science": "科学"
}, },
"Scroll through windows, rather than workspaces": {
"Scroll through windows, rather than workspaces": "ワークスペースではなくウィンドウをスクロール"
},
"Search file contents": { "Search file contents": {
"Search file contents": "ファイルの内容を検索" "Search file contents": "ファイルの内容を検索"
}, },
@@ -1865,12 +1820,6 @@
"Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": { "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": {
"Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": "Tab/Shift+Tab: ナビゲーション • ←→↑↓: グリッドナビゲーション • Enter/Space: 選択" "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": "Tab/Shift+Tab: ナビゲーション • ←→↑↓: グリッドナビゲーション • Enter/Space: 選択"
}, },
"Technical Details": {
"Technical Details": "技術的な詳細"
},
"Temperature": {
"Temperature": "温度"
},
"Terminal custom additional parameters": { "Terminal custom additional parameters": {
"Terminal custom additional parameters": "端末のカスタム追加パラメーター" "Terminal custom additional parameters": "端末のカスタム追加パラメーター"
}, },
@@ -1997,9 +1946,6 @@
"Use animated wave progress bars for media playback": { "Use animated wave progress bars for media playback": {
"Use animated wave progress bars for media playback": "アニメーション化されたウェーブの進行状況バーをメディア再生に使用" "Use animated wave progress bars for media playback": "アニメーション化されたウェーブの進行状況バーをメディア再生に使用"
}, },
"Use automatic location detection (geoclue2)": {
"Use automatic location detection (geoclue2)": "自動位置検出 (geoclue2) を使用"
},
"Use custom command for update your system": { "Use custom command for update your system": {
"Use custom command for update your system": "カスタムコマンドを使用してシステムを更新" "Use custom command for update your system": "カスタムコマンドを使用してシステムを更新"
}, },
@@ -2105,9 +2051,6 @@
"Wind": { "Wind": {
"Wind": "風" "Wind": "風"
}, },
"Window Scrolling": {
"Window Scrolling": "ウィンドウスクロール"
},
"Workspace": { "Workspace": {
"Workspace": "ワークスペース" "Workspace": "ワークスペース"
}, },

View File

@@ -89,9 +89,6 @@
"Applications": { "Applications": {
"Applications": "Aplikacje" "Applications": "Aplikacje"
}, },
"Apply": {
"Apply": "Zastosuj"
},
"Apply GTK Colors": { "Apply GTK Colors": {
"Apply GTK Colors": "Zastosuj kolory GTK" "Apply GTK Colors": "Zastosuj kolory GTK"
}, },
@@ -167,9 +164,6 @@
"Auto-hide Dock": { "Auto-hide Dock": {
"Auto-hide Dock": "Automatyczne ukrywanie doku" "Auto-hide Dock": "Automatyczne ukrywanie doku"
}, },
"Auto-location": {
"Auto-location": "Automatyczna lokalizacja"
},
"Auto-saving...": { "Auto-saving...": {
"Auto-saving...": "Automatyczne zapisywanie..." "Auto-saving...": "Automatyczne zapisywanie..."
}, },
@@ -230,9 +224,6 @@
"Battery level and power management": { "Battery level and power management": {
"Battery level and power management": "Poziom baterii i zarządzanie zasilaniem" "Battery level and power management": "Poziom baterii i zarządzanie zasilaniem"
}, },
"Battery not detected - only AC power settings available": {
"Battery not detected - only AC power settings available": "Nie wykryto baterii - dostępne tylko ustawienia po podłączeniu do zasilacza"
},
"Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": { "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": {
"Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": "Powiąż ekran blokady z sygnałami dbus z loginctl. Wyłącz, jeśli używasz zewnętrznego ekranu blokady" "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": "Powiąż ekran blokady z sygnałami dbus z loginctl. Wyłącz, jeśli używasz zewnętrznego ekranu blokady"
}, },
@@ -398,9 +389,6 @@
"Compositor": { "Compositor": {
"Compositor": "Kompozytor" "Compositor": "Kompozytor"
}, },
"Compositor:": {
"Compositor:": "Kompozytor:"
},
"Configuration activated": { "Configuration activated": {
"Configuration activated": "Konfiguracja aktywowana" "Configuration activated": "Konfiguracja aktywowana"
}, },
@@ -434,9 +422,6 @@
"Connecting to Device": { "Connecting to Device": {
"Connecting to Device": "Łączenie z urządzeniem" "Connecting to Device": "Łączenie z urządzeniem"
}, },
"Connection failed. Check password and try again.": {
"Connection failed. Check password and try again.": "Połączenie nieudane. Sprawdź hasło i spróbuj ponownie."
},
"Contrast": { "Contrast": {
"Contrast": "Kontrast" "Contrast": "Kontrast"
}, },
@@ -461,9 +446,6 @@
"Copied!": { "Copied!": {
"Copied!": "Skopiowane!" "Copied!": "Skopiowane!"
}, },
"Copy": {
"Copy": "Kopiuj"
},
"Copy PID": { "Copy PID": {
"Copy PID": "Kopiuj PID" "Copy PID": "Kopiuj PID"
}, },
@@ -542,9 +524,6 @@
"Dank Bar Widget Transparency": { "Dank Bar Widget Transparency": {
"Dank Bar Widget Transparency": "Przezroczystość widżetu Dank Bar" "Dank Bar Widget Transparency": "Przezroczystość widżetu Dank Bar"
}, },
"Dank Suite:": {
"Dank Suite:": "Dank Suite:"
},
"DankBar Font Scale": { "DankBar Font Scale": {
"DankBar Font Scale": "Skala czcionki DankBar" "DankBar Font Scale": "Skala czcionki DankBar"
}, },
@@ -842,9 +821,6 @@
"Format Legend": { "Format Legend": {
"Format Legend": "Legenda formatowania" "Format Legend": "Legenda formatowania"
}, },
"Framework:": {
"Framework:": "Framework:"
},
"Fun": { "Fun": {
"Fun": "Zabawa" "Fun": "Zabawa"
}, },
@@ -866,9 +842,6 @@
"Gamma control not available. Requires DMS API v6+.": { "Gamma control not available. Requires DMS API v6+.": {
"Gamma control not available. Requires DMS API v6+.": "Kontrola gamma niedostępna. Wymaga DMS API w wersji 6+." "Gamma control not available. Requires DMS API v6+.": "Kontrola gamma niedostępna. Wymaga DMS API w wersji 6+."
}, },
"Geoclue service not running - cannot auto-detect location": {
"Geoclue service not running - cannot auto-detect location": "Usługa Geoclue nie działa - nie można automatycznie wykryć lokalizacji"
},
"Github:": { "Github:": {
"Github:": "Github:" "Github:": "Github:"
}, },
@@ -902,15 +875,9 @@
"Hex": { "Hex": {
"Hex": "" "Hex": ""
}, },
"Hex:": {
"Hex:": "Hex:"
},
"Hibernate": { "Hibernate": {
"Hibernate": "Hibernacja" "Hibernate": "Hibernacja"
}, },
"Hibernate system after": {
"Hibernate system after": "Hibernuj komputer po"
},
"Hide the dock when not in use and reveal it when hovering near the dock area": { "Hide the dock when not in use and reveal it when hovering near the dock area": {
"Hide the dock when not in use and reveal it when hovering near the dock area": "Ukryj dok, gdy nie jest używany, i odkryj go po najechaniu kursorem w jego pobliże" "Hide the dock when not in use and reveal it when hovering near the dock area": "Ukryj dok, gdy nie jest używany, i odkryj go po najechaniu kursorem w jego pobliże"
}, },
@@ -1001,9 +968,6 @@
"Kill Process": { "Kill Process": {
"Kill Process": "Zabij proces" "Kill Process": "Zabij proces"
}, },
"Language:": {
"Language:": "Język:"
},
"Last launched %1": { "Last launched %1": {
"Last launched %1": "Ostatnio uruchomiony %1" "Last launched %1": "Ostatnio uruchomiony %1"
}, },
@@ -1166,9 +1130,6 @@
"Mode: ": { "Mode: ": {
"Mode: ": "" "Mode: ": ""
}, },
"Monitor": {
"Monitor": "Monitor"
},
"Monitor Selection:": { "Monitor Selection:": {
"Monitor Selection:": "Wybór monitora:" "Monitor Selection:": "Wybór monitora:"
}, },
@@ -1502,9 +1463,6 @@
"Profile image is too large. Please use a smaller image.": { "Profile image is too large. Please use a smaller image.": {
"Profile image is too large. Please use a smaller image.": "Zdjęcie profilowe jest za duże. Użyj mniejszego zdjęcia." "Profile image is too large. Please use a smaller image.": "Zdjęcie profilowe jest za duże. Użyj mniejszego zdjęcia."
}, },
"QML, JavaScript, Go": {
"QML, JavaScript, Go": "QML, JavaScript, Go"
},
"Quick access to application launcher": { "Quick access to application launcher": {
"Quick access to application launcher": "Szybki dostęp do uruchamiania aplikacji" "Quick access to application launcher": "Szybki dostęp do uruchamiania aplikacji"
}, },
@@ -1604,9 +1562,6 @@
"Science": { "Science": {
"Science": "Nauka" "Science": "Nauka"
}, },
"Scroll through windows, rather than workspaces": {
"Scroll through windows, rather than workspaces": "Przewijaj okna zamiast obszarów roboczych"
},
"Search file contents": { "Search file contents": {
"Search file contents": "Przeszukaj zawartość plików" "Search file contents": "Przeszukaj zawartość plików"
}, },
@@ -1865,12 +1820,6 @@
"Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": { "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": {
"Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": "Tab/Shift+Tab: Nawigacja • ←→↑↓: Nawigacja po siatce • Enter/Spacja: Wybierz" "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": "Tab/Shift+Tab: Nawigacja • ←→↑↓: Nawigacja po siatce • Enter/Spacja: Wybierz"
}, },
"Technical Details": {
"Technical Details": "Szczegóły techniczne"
},
"Temperature": {
"Temperature": "Temperatura"
},
"Terminal custom additional parameters": { "Terminal custom additional parameters": {
"Terminal custom additional parameters": "Niestandardowe dodatkowe parametry terminala" "Terminal custom additional parameters": "Niestandardowe dodatkowe parametry terminala"
}, },
@@ -1997,9 +1946,6 @@
"Use animated wave progress bars for media playback": { "Use animated wave progress bars for media playback": {
"Use animated wave progress bars for media playback": "Używaj animowanych pasków postępu fali do odtwarzania multimediów" "Use animated wave progress bars for media playback": "Używaj animowanych pasków postępu fali do odtwarzania multimediów"
}, },
"Use automatic location detection (geoclue2)": {
"Use automatic location detection (geoclue2)": "Użyj automatycznego wykrywania lokalizacji (geoclue2)"
},
"Use custom command for update your system": { "Use custom command for update your system": {
"Use custom command for update your system": "Użyj niestandardowego polecenia do aktualizacji systemu" "Use custom command for update your system": "Użyj niestandardowego polecenia do aktualizacji systemu"
}, },
@@ -2105,9 +2051,6 @@
"Wind": { "Wind": {
"Wind": "Wiatr" "Wind": "Wiatr"
}, },
"Window Scrolling": {
"Window Scrolling": "Przewijanie okna"
},
"Workspace": { "Workspace": {
"Workspace": "Obszar roboczy" "Workspace": "Obszar roboczy"
}, },

View File

@@ -89,9 +89,6 @@
"Applications": { "Applications": {
"Applications": "Aplicativos" "Applications": "Aplicativos"
}, },
"Apply": {
"Apply": "Aplicar"
},
"Apply GTK Colors": { "Apply GTK Colors": {
"Apply GTK Colors": "Aplicar cores no GTK" "Apply GTK Colors": "Aplicar cores no GTK"
}, },
@@ -167,9 +164,6 @@
"Auto-hide Dock": { "Auto-hide Dock": {
"Auto-hide Dock": "Esconder Automaticamente o Dock" "Auto-hide Dock": "Esconder Automaticamente o Dock"
}, },
"Auto-location": {
"Auto-location": "Localização-Automática"
},
"Auto-saving...": { "Auto-saving...": {
"Auto-saving...": "Salvando automáticamente..." "Auto-saving...": "Salvando automáticamente..."
}, },
@@ -230,9 +224,6 @@
"Battery level and power management": { "Battery level and power management": {
"Battery level and power management": "Nível de bateria e manejamento de energia" "Battery level and power management": "Nível de bateria e manejamento de energia"
}, },
"Battery not detected - only AC power settings available": {
"Battery not detected - only AC power settings available": "Bateria não detectada - apenas configurações de tomada disponíveis"
},
"Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": { "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": {
"Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": "Vincular o bloqueio de tela aos sinais do DBus do loginctl. Desative se estiver usando um bloqueio de tela externo" "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": "Vincular o bloqueio de tela aos sinais do DBus do loginctl. Desative se estiver usando um bloqueio de tela externo"
}, },
@@ -398,9 +389,6 @@
"Compositor": { "Compositor": {
"Compositor": "Compositor" "Compositor": "Compositor"
}, },
"Compositor:": {
"Compositor:": "Compositor:"
},
"Configuration activated": { "Configuration activated": {
"Configuration activated": "Configuração ativada" "Configuration activated": "Configuração ativada"
}, },
@@ -434,9 +422,6 @@
"Connecting to Device": { "Connecting to Device": {
"Connecting to Device": "" "Connecting to Device": ""
}, },
"Connection failed. Check password and try again.": {
"Connection failed. Check password and try again.": "Erro ao conectar. Cheque a senha e tente novamente."
},
"Contrast": { "Contrast": {
"Contrast": "Contraste" "Contrast": "Contraste"
}, },
@@ -461,9 +446,6 @@
"Copied!": { "Copied!": {
"Copied!": "Copiado!" "Copied!": "Copiado!"
}, },
"Copy": {
"Copy": "Copiar"
},
"Copy PID": { "Copy PID": {
"Copy PID": "Copiar PID" "Copy PID": "Copiar PID"
}, },
@@ -542,9 +524,6 @@
"Dank Bar Widget Transparency": { "Dank Bar Widget Transparency": {
"Dank Bar Widget Transparency": "Transparência dos Widgets da Dank Bar" "Dank Bar Widget Transparency": "Transparência dos Widgets da Dank Bar"
}, },
"Dank Suite:": {
"Dank Suite:": "Suíte Dank:"
},
"DankBar Font Scale": { "DankBar Font Scale": {
"DankBar Font Scale": "Escala das fontes no Dank Bar" "DankBar Font Scale": "Escala das fontes no Dank Bar"
}, },
@@ -842,9 +821,6 @@
"Format Legend": { "Format Legend": {
"Format Legend": "Formatar Legenda" "Format Legend": "Formatar Legenda"
}, },
"Framework:": {
"Framework:": "Estrutura:"
},
"Fun": { "Fun": {
"Fun": "Diversão" "Fun": "Diversão"
}, },
@@ -866,9 +842,6 @@
"Gamma control not available. Requires DMS API v6+.": { "Gamma control not available. Requires DMS API v6+.": {
"Gamma control not available. Requires DMS API v6+.": "Controle de gama não disponível. Necessário DMS API v6+." "Gamma control not available. Requires DMS API v6+.": "Controle de gama não disponível. Necessário DMS API v6+."
}, },
"Geoclue service not running - cannot auto-detect location": {
"Geoclue service not running - cannot auto-detect location": "Serviço do Geoclue não está rodando - não foi possível detectar a localização automaticamente"
},
"Github:": { "Github:": {
"Github:": "Github:" "Github:": "Github:"
}, },
@@ -902,15 +875,9 @@
"Hex": { "Hex": {
"Hex": "" "Hex": ""
}, },
"Hex:": {
"Hex:": "Hex:"
},
"Hibernate": { "Hibernate": {
"Hibernate": "Hibernar" "Hibernate": "Hibernar"
}, },
"Hibernate system after": {
"Hibernate system after": "Hibernar sistema após"
},
"Hide the dock when not in use and reveal it when hovering near the dock area": { "Hide the dock when not in use and reveal it when hovering near the dock area": {
"Hide the dock when not in use and reveal it when hovering near the dock area": "Esconder a dock quando não usada e mostrar ao passar o mouse próximo da área" "Hide the dock when not in use and reveal it when hovering near the dock area": "Esconder a dock quando não usada e mostrar ao passar o mouse próximo da área"
}, },
@@ -1001,9 +968,6 @@
"Kill Process": { "Kill Process": {
"Kill Process": "Matar Processo" "Kill Process": "Matar Processo"
}, },
"Language:": {
"Language:": "Linguagem:"
},
"Last launched %1": { "Last launched %1": {
"Last launched %1": "Lançado pela última vez em %1" "Last launched %1": "Lançado pela última vez em %1"
}, },
@@ -1166,9 +1130,6 @@
"Mode: ": { "Mode: ": {
"Mode: ": "" "Mode: ": ""
}, },
"Monitor": {
"Monitor": "Monitor"
},
"Monitor Selection:": { "Monitor Selection:": {
"Monitor Selection:": "Seleção de Monitor:" "Monitor Selection:": "Seleção de Monitor:"
}, },
@@ -1502,9 +1463,6 @@
"Profile image is too large. Please use a smaller image.": { "Profile image is too large. Please use a smaller image.": {
"Profile image is too large. Please use a smaller image.": "A imagem de perfil é muito grande. Por favor use uma imagem menor." "Profile image is too large. Please use a smaller image.": "A imagem de perfil é muito grande. Por favor use uma imagem menor."
}, },
"QML, JavaScript, Go": {
"QML, JavaScript, Go": "QML, JavaScript, Go"
},
"Quick access to application launcher": { "Quick access to application launcher": {
"Quick access to application launcher": "Acesso rápido ao lançador de aplicativos" "Quick access to application launcher": "Acesso rápido ao lançador de aplicativos"
}, },
@@ -1604,9 +1562,6 @@
"Science": { "Science": {
"Science": "Ciência" "Science": "Ciência"
}, },
"Scroll through windows, rather than workspaces": {
"Scroll through windows, rather than workspaces": "Role pelas janelas, ao invés de áreas de trabalho"
},
"Search file contents": { "Search file contents": {
"Search file contents": "Pesquisar conteúdos de arquivos" "Search file contents": "Pesquisar conteúdos de arquivos"
}, },
@@ -1865,12 +1820,6 @@
"Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": { "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": {
"Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": "Tab/Shift+Tab: Navegação • ←→↑↓: Navegação em Grade • Enter/Espaço: Selecionar" "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": "Tab/Shift+Tab: Navegação • ←→↑↓: Navegação em Grade • Enter/Espaço: Selecionar"
}, },
"Technical Details": {
"Technical Details": "Detalhes Técnicos"
},
"Temperature": {
"Temperature": "Temperatura"
},
"Terminal custom additional parameters": { "Terminal custom additional parameters": {
"Terminal custom additional parameters": "Parâmetros adicionais para o terminal" "Terminal custom additional parameters": "Parâmetros adicionais para o terminal"
}, },
@@ -1997,9 +1946,6 @@
"Use animated wave progress bars for media playback": { "Use animated wave progress bars for media playback": {
"Use animated wave progress bars for media playback": "Usar barras de progresso de ondas animadas para reprodução de mídia" "Use animated wave progress bars for media playback": "Usar barras de progresso de ondas animadas para reprodução de mídia"
}, },
"Use automatic location detection (geoclue2)": {
"Use automatic location detection (geoclue2)": "Usar detecção automática de localização (geoclue2)"
},
"Use custom command for update your system": { "Use custom command for update your system": {
"Use custom command for update your system": "Usar comando personalizado para atualizar seu sistema" "Use custom command for update your system": "Usar comando personalizado para atualizar seu sistema"
}, },
@@ -2105,9 +2051,6 @@
"Wind": { "Wind": {
"Wind": "Vento" "Wind": "Vento"
}, },
"Window Scrolling": {
"Window Scrolling": "Rolagem de Janelas"
},
"Workspace": { "Workspace": {
"Workspace": "Área de Trabalho" "Workspace": "Área de Trabalho"
}, },

View File

@@ -89,9 +89,6 @@
"Applications": { "Applications": {
"Applications": "Uygulamalar" "Applications": "Uygulamalar"
}, },
"Apply": {
"Apply": "Uygula"
},
"Apply GTK Colors": { "Apply GTK Colors": {
"Apply GTK Colors": "GTK Renklerini Uygula" "Apply GTK Colors": "GTK Renklerini Uygula"
}, },
@@ -167,9 +164,6 @@
"Auto-hide Dock": { "Auto-hide Dock": {
"Auto-hide Dock": "Dock'u Otomatik Gizle" "Auto-hide Dock": "Dock'u Otomatik Gizle"
}, },
"Auto-location": {
"Auto-location": "Otomatik konum"
},
"Auto-saving...": { "Auto-saving...": {
"Auto-saving...": "Otomatik kaydetme..." "Auto-saving...": "Otomatik kaydetme..."
}, },
@@ -230,9 +224,6 @@
"Battery level and power management": { "Battery level and power management": {
"Battery level and power management": "Batarya seviyesi ve güç yönetimi" "Battery level and power management": "Batarya seviyesi ve güç yönetimi"
}, },
"Battery not detected - only AC power settings available": {
"Battery not detected - only AC power settings available": "Batarya tespit edilmedi - sadece AC güç ayarları kullanılabilir"
},
"Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": { "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": {
"Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": "Kilit ekranını loginctl'den gelen dbus sinyallerine bağlayın. Harici bir kilit ekranı kullanıyorsanız devre dışı bırakın" "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": "Kilit ekranını loginctl'den gelen dbus sinyallerine bağlayın. Harici bir kilit ekranı kullanıyorsanız devre dışı bırakın"
}, },
@@ -398,9 +389,6 @@
"Compositor": { "Compositor": {
"Compositor": "Kompozitör" "Compositor": "Kompozitör"
}, },
"Compositor:": {
"Compositor:": "Kompozitör:"
},
"Configuration activated": { "Configuration activated": {
"Configuration activated": "Yapılandırma aktifleştirildi" "Configuration activated": "Yapılandırma aktifleştirildi"
}, },
@@ -434,9 +422,6 @@
"Connecting to Device": { "Connecting to Device": {
"Connecting to Device": "Cihaza Bağlanma" "Connecting to Device": "Cihaza Bağlanma"
}, },
"Connection failed. Check password and try again.": {
"Connection failed. Check password and try again.": "Bağlantı başarısız. Parolayı kontrol edin ve tekrar deneyin."
},
"Contrast": { "Contrast": {
"Contrast": "Kontrast" "Contrast": "Kontrast"
}, },
@@ -461,9 +446,6 @@
"Copied!": { "Copied!": {
"Copied!": "Kopyalandı!" "Copied!": "Kopyalandı!"
}, },
"Copy": {
"Copy": "Kopyala"
},
"Copy PID": { "Copy PID": {
"Copy PID": "PID'i Kopyala" "Copy PID": "PID'i Kopyala"
}, },
@@ -542,9 +524,6 @@
"Dank Bar Widget Transparency": { "Dank Bar Widget Transparency": {
"Dank Bar Widget Transparency": "Dank Bar Widget Şeffaflığı" "Dank Bar Widget Transparency": "Dank Bar Widget Şeffaflığı"
}, },
"Dank Suite:": {
"Dank Suite:": "Dank Suite:"
},
"DankBar Font Scale": { "DankBar Font Scale": {
"DankBar Font Scale": "DankBar Yazı Tipi Ölçeği" "DankBar Font Scale": "DankBar Yazı Tipi Ölçeği"
}, },
@@ -842,9 +821,6 @@
"Format Legend": { "Format Legend": {
"Format Legend": "Biçim Açıklaması" "Format Legend": "Biçim Açıklaması"
}, },
"Framework:": {
"Framework:": "Framework:"
},
"Fun": { "Fun": {
"Fun": "Eğlence" "Fun": "Eğlence"
}, },
@@ -866,9 +842,6 @@
"Gamma control not available. Requires DMS API v6+.": { "Gamma control not available. Requires DMS API v6+.": {
"Gamma control not available. Requires DMS API v6+.": "Gama kontrolü mevcut değil. DMS API V6+ gerekir." "Gamma control not available. Requires DMS API v6+.": "Gama kontrolü mevcut değil. DMS API V6+ gerekir."
}, },
"Geoclue service not running - cannot auto-detect location": {
"Geoclue service not running - cannot auto-detect location": "Geoclue hizmeti çalışmıyor - konum otomatik olarak algılanamıyor"
},
"Github:": { "Github:": {
"Github:": "Github:" "Github:": "Github:"
}, },
@@ -902,15 +875,9 @@
"Hex": { "Hex": {
"Hex": "Hex" "Hex": "Hex"
}, },
"Hex:": {
"Hex:": "Hex:"
},
"Hibernate": { "Hibernate": {
"Hibernate": "Hazırda Beklet" "Hibernate": "Hazırda Beklet"
}, },
"Hibernate system after": {
"Hibernate system after": "Şu zaman sonra sistemi hazırda beklet"
},
"Hide the dock when not in use and reveal it when hovering near the dock area": { "Hide the dock when not in use and reveal it when hovering near the dock area": {
"Hide the dock when not in use and reveal it when hovering near the dock area": "Kullanılmadığında dock'u gizle ve dock alanının yakınına geldiğinizde göster" "Hide the dock when not in use and reveal it when hovering near the dock area": "Kullanılmadığında dock'u gizle ve dock alanının yakınına geldiğinizde göster"
}, },
@@ -1001,9 +968,6 @@
"Kill Process": { "Kill Process": {
"Kill Process": "Süreci Öldür" "Kill Process": "Süreci Öldür"
}, },
"Language:": {
"Language:": "Dil:"
},
"Last launched %1": { "Last launched %1": {
"Last launched %1": "Son başlatma %1" "Last launched %1": "Son başlatma %1"
}, },
@@ -1166,9 +1130,6 @@
"Mode: ": { "Mode: ": {
"Mode: ": "Mod: " "Mode: ": "Mod: "
}, },
"Monitor": {
"Monitor": "Monitör"
},
"Monitor Selection:": { "Monitor Selection:": {
"Monitor Selection:": "Monitör Seçimi:" "Monitor Selection:": "Monitör Seçimi:"
}, },
@@ -1502,9 +1463,6 @@
"Profile image is too large. Please use a smaller image.": { "Profile image is too large. Please use a smaller image.": {
"Profile image is too large. Please use a smaller image.": "Profil resmi çok büyük. Lütfen daha küçük bir resim kullanın." "Profile image is too large. Please use a smaller image.": "Profil resmi çok büyük. Lütfen daha küçük bir resim kullanın."
}, },
"QML, JavaScript, Go": {
"QML, JavaScript, Go": "QML, Javascript, Go"
},
"Quick access to application launcher": { "Quick access to application launcher": {
"Quick access to application launcher": "Uygulama başlatıcısına hızlı erişim" "Quick access to application launcher": "Uygulama başlatıcısına hızlı erişim"
}, },
@@ -1604,9 +1562,6 @@
"Science": { "Science": {
"Science": "Bilim" "Science": "Bilim"
}, },
"Scroll through windows, rather than workspaces": {
"Scroll through windows, rather than workspaces": "Çalışma alanları yerine pencereler arasında gezin"
},
"Search file contents": { "Search file contents": {
"Search file contents": "Dosya içeriklerini ara" "Search file contents": "Dosya içeriklerini ara"
}, },
@@ -1865,12 +1820,6 @@
"Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": { "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": {
"Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": "Tab/Shift+Tab: Yön • ←→↑↓: Izgara Yönü • Enter/Space: Seç" "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": "Tab/Shift+Tab: Yön • ←→↑↓: Izgara Yönü • Enter/Space: Seç"
}, },
"Technical Details": {
"Technical Details": "Teknik Detaylar"
},
"Temperature": {
"Temperature": "Sıcaklık"
},
"Terminal custom additional parameters": { "Terminal custom additional parameters": {
"Terminal custom additional parameters": "Terminal özel ek parametreleri" "Terminal custom additional parameters": "Terminal özel ek parametreleri"
}, },
@@ -1997,9 +1946,6 @@
"Use animated wave progress bars for media playback": { "Use animated wave progress bars for media playback": {
"Use animated wave progress bars for media playback": "Medya oynatımı için animasyonlu dalga ilerleme çubukları kullanın" "Use animated wave progress bars for media playback": "Medya oynatımı için animasyonlu dalga ilerleme çubukları kullanın"
}, },
"Use automatic location detection (geoclue2)": {
"Use automatic location detection (geoclue2)": "Otomatik konum algılama özelliğini kullan (geoclue2)"
},
"Use custom command for update your system": { "Use custom command for update your system": {
"Use custom command for update your system": "Sistemi güncellemek için özel komut kullan" "Use custom command for update your system": "Sistemi güncellemek için özel komut kullan"
}, },
@@ -2105,9 +2051,6 @@
"Wind": { "Wind": {
"Wind": "Rüzgar" "Wind": "Rüzgar"
}, },
"Window Scrolling": {
"Window Scrolling": "Pencere Kaydırma"
},
"Workspace": { "Workspace": {
"Workspace": "Çalışma Alanı" "Workspace": "Çalışma Alanı"
}, },

View File

@@ -89,9 +89,6 @@
"Applications": { "Applications": {
"Applications": "应用程序" "Applications": "应用程序"
}, },
"Apply": {
"Apply": "应用"
},
"Apply GTK Colors": { "Apply GTK Colors": {
"Apply GTK Colors": "应用 GTK 配色" "Apply GTK Colors": "应用 GTK 配色"
}, },
@@ -167,9 +164,6 @@
"Auto-hide Dock": { "Auto-hide Dock": {
"Auto-hide Dock": "自动隐藏程序坞" "Auto-hide Dock": "自动隐藏程序坞"
}, },
"Auto-location": {
"Auto-location": "自动定位"
},
"Auto-saving...": { "Auto-saving...": {
"Auto-saving...": "自动保存中..." "Auto-saving...": "自动保存中..."
}, },
@@ -230,9 +224,6 @@
"Battery level and power management": { "Battery level and power management": {
"Battery level and power management": "电池电量与电源管理" "Battery level and power management": "电池电量与电源管理"
}, },
"Battery not detected - only AC power settings available": {
"Battery not detected - only AC power settings available": "未检测到电池,仅电源设置可用"
},
"Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": { "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": {
"Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": "将锁屏绑定到来自 loginctl 的 dbus 信号。如使用外部锁屏程序,请禁用此项" "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": "将锁屏绑定到来自 loginctl 的 dbus 信号。如使用外部锁屏程序,请禁用此项"
}, },
@@ -398,9 +389,6 @@
"Compositor": { "Compositor": {
"Compositor": "合成器" "Compositor": "合成器"
}, },
"Compositor:": {
"Compositor:": "合成器:"
},
"Configuration activated": { "Configuration activated": {
"Configuration activated": "已应用配置" "Configuration activated": "已应用配置"
}, },
@@ -434,9 +422,6 @@
"Connecting to Device": { "Connecting to Device": {
"Connecting to Device": "连接设备中" "Connecting to Device": "连接设备中"
}, },
"Connection failed. Check password and try again.": {
"Connection failed. Check password and try again.": "连接失败,请检查密码后重试。"
},
"Contrast": { "Contrast": {
"Contrast": "对比度" "Contrast": "对比度"
}, },
@@ -461,9 +446,6 @@
"Copied!": { "Copied!": {
"Copied!": "复制成功!" "Copied!": "复制成功!"
}, },
"Copy": {
"Copy": "复制"
},
"Copy PID": { "Copy PID": {
"Copy PID": "复制进程ID" "Copy PID": "复制进程ID"
}, },
@@ -542,9 +524,6 @@
"Dank Bar Widget Transparency": { "Dank Bar Widget Transparency": {
"Dank Bar Widget Transparency": "Dank Bar 小组件透明度" "Dank Bar Widget Transparency": "Dank Bar 小组件透明度"
}, },
"Dank Suite:": {
"Dank Suite:": "Dank 套件:"
},
"DankBar Font Scale": { "DankBar Font Scale": {
"DankBar Font Scale": "Dank Bar 字体缩放" "DankBar Font Scale": "Dank Bar 字体缩放"
}, },
@@ -842,9 +821,6 @@
"Format Legend": { "Format Legend": {
"Format Legend": "参考格式" "Format Legend": "参考格式"
}, },
"Framework:": {
"Framework:": "框架:"
},
"Fun": { "Fun": {
"Fun": "娱乐" "Fun": "娱乐"
}, },
@@ -866,9 +842,6 @@
"Gamma control not available. Requires DMS API v6+.": { "Gamma control not available. Requires DMS API v6+.": {
"Gamma control not available. Requires DMS API v6+.": "伽玛控制不可用,需要 DMS API v6+。" "Gamma control not available. Requires DMS API v6+.": "伽玛控制不可用,需要 DMS API v6+。"
}, },
"Geoclue service not running - cannot auto-detect location": {
"Geoclue service not running - cannot auto-detect location": "Geoclue 服务未运行 - 无法自动检测位置"
},
"Github:": { "Github:": {
"Github:": "Github:" "Github:": "Github:"
}, },
@@ -902,15 +875,9 @@
"Hex": { "Hex": {
"Hex": "十六进制" "Hex": "十六进制"
}, },
"Hex:": {
"Hex:": "十六进制颜色码:"
},
"Hibernate": { "Hibernate": {
"Hibernate": "休眠" "Hibernate": "休眠"
}, },
"Hibernate system after": {
"Hibernate system after": "在此时间后休眠系统"
},
"Hide the dock when not in use and reveal it when hovering near the dock area": { "Hide the dock when not in use and reveal it when hovering near the dock area": {
"Hide the dock when not in use and reveal it when hovering near the dock area": "在未使用时隐藏程序坞,鼠标悬停到程序坞区域时显示" "Hide the dock when not in use and reveal it when hovering near the dock area": "在未使用时隐藏程序坞,鼠标悬停到程序坞区域时显示"
}, },
@@ -1001,9 +968,6 @@
"Kill Process": { "Kill Process": {
"Kill Process": "结束进程" "Kill Process": "结束进程"
}, },
"Language:": {
"Language:": "开发语言:"
},
"Last launched %1": { "Last launched %1": {
"Last launched %1": "上次启动于 %1" "Last launched %1": "上次启动于 %1"
}, },
@@ -1166,9 +1130,6 @@
"Mode: ": { "Mode: ": {
"Mode: ": "模式: " "Mode: ": "模式: "
}, },
"Monitor": {
"Monitor": "显示器"
},
"Monitor Selection:": { "Monitor Selection:": {
"Monitor Selection:": "选择显示器:" "Monitor Selection:": "选择显示器:"
}, },
@@ -1502,9 +1463,6 @@
"Profile image is too large. Please use a smaller image.": { "Profile image is too large. Please use a smaller image.": {
"Profile image is too large. Please use a smaller image.": "个人资料图片过大,请选择更小的图片。" "Profile image is too large. Please use a smaller image.": "个人资料图片过大,请选择更小的图片。"
}, },
"QML, JavaScript, Go": {
"QML, JavaScript, Go": "QML, JavaScript, Go"
},
"Quick access to application launcher": { "Quick access to application launcher": {
"Quick access to application launcher": "快捷访问应用启动器" "Quick access to application launcher": "快捷访问应用启动器"
}, },
@@ -1604,9 +1562,6 @@
"Science": { "Science": {
"Science": "科学" "Science": "科学"
}, },
"Scroll through windows, rather than workspaces": {
"Scroll through windows, rather than workspaces": "滚动窗口,而非工作区"
},
"Search file contents": { "Search file contents": {
"Search file contents": "检索文件内容" "Search file contents": "检索文件内容"
}, },
@@ -1865,12 +1820,6 @@
"Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": { "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": {
"Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": "Tab/Shift+Tab: 导航 • ←→↑↓: 网格导航 • 回车/空格: 选中" "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": "Tab/Shift+Tab: 导航 • ←→↑↓: 网格导航 • 回车/空格: 选中"
}, },
"Technical Details": {
"Technical Details": "技术细节"
},
"Temperature": {
"Temperature": "色温"
},
"Terminal custom additional parameters": { "Terminal custom additional parameters": {
"Terminal custom additional parameters": "终端自定义附加参数" "Terminal custom additional parameters": "终端自定义附加参数"
}, },
@@ -1997,9 +1946,6 @@
"Use animated wave progress bars for media playback": { "Use animated wave progress bars for media playback": {
"Use animated wave progress bars for media playback": "进行媒体播放时显示动画波形进度条" "Use animated wave progress bars for media playback": "进行媒体播放时显示动画波形进度条"
}, },
"Use automatic location detection (geoclue2)": {
"Use automatic location detection (geoclue2)": "使用自动位置检测 geoclue2"
},
"Use custom command for update your system": { "Use custom command for update your system": {
"Use custom command for update your system": "使用自定义命令来更新系统" "Use custom command for update your system": "使用自定义命令来更新系统"
}, },
@@ -2105,9 +2051,6 @@
"Wind": { "Wind": {
"Wind": "风速" "Wind": "风速"
}, },
"Window Scrolling": {
"Window Scrolling": "窗口滚动"
},
"Workspace": { "Workspace": {
"Workspace": "工作区" "Workspace": "工作区"
}, },

View File

@@ -89,9 +89,6 @@
"Applications": { "Applications": {
"Applications": "應用程式" "Applications": "應用程式"
}, },
"Apply": {
"Apply": "套用"
},
"Apply GTK Colors": { "Apply GTK Colors": {
"Apply GTK Colors": "套用 GTK 顏色" "Apply GTK Colors": "套用 GTK 顏色"
}, },
@@ -167,9 +164,6 @@
"Auto-hide Dock": { "Auto-hide Dock": {
"Auto-hide Dock": "自動隱藏 Dock" "Auto-hide Dock": "自動隱藏 Dock"
}, },
"Auto-location": {
"Auto-location": "自動定位"
},
"Auto-saving...": { "Auto-saving...": {
"Auto-saving...": "自動保存..." "Auto-saving...": "自動保存..."
}, },
@@ -230,9 +224,6 @@
"Battery level and power management": { "Battery level and power management": {
"Battery level and power management": "電量與電源管理" "Battery level and power management": "電量與電源管理"
}, },
"Battery not detected - only AC power settings available": {
"Battery not detected - only AC power settings available": "未偵測到電池 - 僅提供交流電源設定"
},
"Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": { "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": {
"Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": "將鎖定畫面綁定到 loginctl 的 dbus 訊號。如果使用外部鎖屏,請停用" "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": "將鎖定畫面綁定到 loginctl 的 dbus 訊號。如果使用外部鎖屏,請停用"
}, },
@@ -398,9 +389,6 @@
"Compositor": { "Compositor": {
"Compositor": "合成器" "Compositor": "合成器"
}, },
"Compositor:": {
"Compositor:": "合成器:"
},
"Configuration activated": { "Configuration activated": {
"Configuration activated": "配置已啟動" "Configuration activated": "配置已啟動"
}, },
@@ -434,9 +422,6 @@
"Connecting to Device": { "Connecting to Device": {
"Connecting to Device": "" "Connecting to Device": ""
}, },
"Connection failed. Check password and try again.": {
"Connection failed. Check password and try again.": "連線失敗。請檢查密碼並重試。"
},
"Contrast": { "Contrast": {
"Contrast": "對比" "Contrast": "對比"
}, },
@@ -461,9 +446,6 @@
"Copied!": { "Copied!": {
"Copied!": "已複製!" "Copied!": "已複製!"
}, },
"Copy": {
"Copy": "複製"
},
"Copy PID": { "Copy PID": {
"Copy PID": "複製 PID" "Copy PID": "複製 PID"
}, },
@@ -542,9 +524,6 @@
"Dank Bar Widget Transparency": { "Dank Bar Widget Transparency": {
"Dank Bar Widget Transparency": "Dank Bar 部件透明度" "Dank Bar Widget Transparency": "Dank Bar 部件透明度"
}, },
"Dank Suite:": {
"Dank Suite:": "Dank 套件:"
},
"DankBar Font Scale": { "DankBar Font Scale": {
"DankBar Font Scale": "Dank Bar 字體縮放" "DankBar Font Scale": "Dank Bar 字體縮放"
}, },
@@ -842,9 +821,6 @@
"Format Legend": { "Format Legend": {
"Format Legend": "格式說明" "Format Legend": "格式說明"
}, },
"Framework:": {
"Framework:": "框架:"
},
"Fun": { "Fun": {
"Fun": "有趣的" "Fun": "有趣的"
}, },
@@ -866,9 +842,6 @@
"Gamma control not available. Requires DMS API v6+.": { "Gamma control not available. Requires DMS API v6+.": {
"Gamma control not available. Requires DMS API v6+.": "Gamma 控制不可用。需要 DMS API v6+。" "Gamma control not available. Requires DMS API v6+.": "Gamma 控制不可用。需要 DMS API v6+。"
}, },
"Geoclue service not running - cannot auto-detect location": {
"Geoclue service not running - cannot auto-detect location": "Geoclue 服務未運作 - 無法自動偵測位置"
},
"Github:": { "Github:": {
"Github:": "Github:" "Github:": "Github:"
}, },
@@ -902,15 +875,9 @@
"Hex": { "Hex": {
"Hex": "" "Hex": ""
}, },
"Hex:": {
"Hex:": "色碼:"
},
"Hibernate": { "Hibernate": {
"Hibernate": "休眠" "Hibernate": "休眠"
}, },
"Hibernate system after": {
"Hibernate system after": "系統休眠之後"
},
"Hide the dock when not in use and reveal it when hovering near the dock area": { "Hide the dock when not in use and reveal it when hovering near the dock area": {
"Hide the dock when not in use and reveal it when hovering near the dock area": "不使用時隱藏 Dock並在 Dock 區域附近懸停時顯示 Dock" "Hide the dock when not in use and reveal it when hovering near the dock area": "不使用時隱藏 Dock並在 Dock 區域附近懸停時顯示 Dock"
}, },
@@ -1001,9 +968,6 @@
"Kill Process": { "Kill Process": {
"Kill Process": "結束程序" "Kill Process": "結束程序"
}, },
"Language:": {
"Language:": "語言:"
},
"Last launched %1": { "Last launched %1": {
"Last launched %1": "上次啟動於 %1" "Last launched %1": "上次啟動於 %1"
}, },
@@ -1166,9 +1130,6 @@
"Mode: ": { "Mode: ": {
"Mode: ": "" "Mode: ": ""
}, },
"Monitor": {
"Monitor": "螢幕"
},
"Monitor Selection:": { "Monitor Selection:": {
"Monitor Selection:": "螢幕選擇:" "Monitor Selection:": "螢幕選擇:"
}, },
@@ -1502,9 +1463,6 @@
"Profile image is too large. Please use a smaller image.": { "Profile image is too large. Please use a smaller image.": {
"Profile image is too large. Please use a smaller image.": "個人資料圖片太大。請使用較小的圖片。" "Profile image is too large. Please use a smaller image.": "個人資料圖片太大。請使用較小的圖片。"
}, },
"QML, JavaScript, Go": {
"QML, JavaScript, Go": "QML, JavaScript, Go"
},
"Quick access to application launcher": { "Quick access to application launcher": {
"Quick access to application launcher": "快速存取應用程式啟動器" "Quick access to application launcher": "快速存取應用程式啟動器"
}, },
@@ -1604,9 +1562,6 @@
"Science": { "Science": {
"Science": "科學" "Science": "科學"
}, },
"Scroll through windows, rather than workspaces": {
"Scroll through windows, rather than workspaces": "滾動窗口,而不是工作區"
},
"Search file contents": { "Search file contents": {
"Search file contents": "搜尋檔案內容" "Search file contents": "搜尋檔案內容"
}, },
@@ -1865,12 +1820,6 @@
"Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": { "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": {
"Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": "Tab/Shift+Tab: 切換焦點 • ←→↑↓: 切換焦點 • Enter/Space: 選擇" "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": "Tab/Shift+Tab: 切換焦點 • ←→↑↓: 切換焦點 • Enter/Space: 選擇"
}, },
"Technical Details": {
"Technical Details": "技術細節"
},
"Temperature": {
"Temperature": "溫度"
},
"Terminal custom additional parameters": { "Terminal custom additional parameters": {
"Terminal custom additional parameters": "自訂終端附加參數" "Terminal custom additional parameters": "自訂終端附加參數"
}, },
@@ -1997,9 +1946,6 @@
"Use animated wave progress bars for media playback": { "Use animated wave progress bars for media playback": {
"Use animated wave progress bars for media playback": "在媒體播放使用動畫波浪進度條" "Use animated wave progress bars for media playback": "在媒體播放使用動畫波浪進度條"
}, },
"Use automatic location detection (geoclue2)": {
"Use automatic location detection (geoclue2)": "使用自動位置偵測geoclue2"
},
"Use custom command for update your system": { "Use custom command for update your system": {
"Use custom command for update your system": "使用自訂指令更新您的系統" "Use custom command for update your system": "使用自訂指令更新您的系統"
}, },
@@ -2105,9 +2051,6 @@
"Wind": { "Wind": {
"Wind": "風速" "Wind": "風速"
}, },
"Window Scrolling": {
"Window Scrolling": "視窗滾動"
},
"Workspace": { "Workspace": {
"Workspace": "工作區" "Workspace": "工作區"
}, },