mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-01-25 14:02:53 -05:00
meta: replace rectangles with DankRectangle shapes
This commit is contained in:
@@ -4,6 +4,7 @@ import Quickshell.Hyprland
|
||||
import Quickshell.Wayland
|
||||
import qs.Common
|
||||
import qs.Services
|
||||
import qs.Widgets
|
||||
|
||||
PanelWindow {
|
||||
id: root
|
||||
@@ -213,16 +214,12 @@ PanelWindow {
|
||||
}
|
||||
}
|
||||
|
||||
Rectangle {
|
||||
Item {
|
||||
id: contentContainer
|
||||
|
||||
anchors.centerIn: parent
|
||||
width: parent.width
|
||||
height: parent.height
|
||||
color: root.backgroundColor
|
||||
radius: root.cornerRadius
|
||||
border.color: root.borderColor
|
||||
border.width: root.borderWidth
|
||||
clip: false
|
||||
layer.enabled: true
|
||||
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 {
|
||||
anchors.fill: parent
|
||||
focus: root.shouldBeVisible
|
||||
|
||||
@@ -339,7 +339,7 @@ Variants {
|
||||
}
|
||||
}
|
||||
|
||||
Rectangle {
|
||||
Item {
|
||||
id: dockBackground
|
||||
objectName: "dockBackground"
|
||||
anchors {
|
||||
@@ -360,16 +360,13 @@ Variants {
|
||||
width: implicitWidth
|
||||
height: implicitHeight
|
||||
|
||||
color: Qt.rgba(Theme.surfaceContainer.r, Theme.surfaceContainer.g, Theme.surfaceContainer.b, backgroundTransparency)
|
||||
radius: Theme.cornerRadius
|
||||
border.width: 1
|
||||
border.color: Theme.outlineMedium
|
||||
layer.enabled: true
|
||||
clip: false
|
||||
|
||||
Rectangle {
|
||||
DankRectangle {
|
||||
anchors.fill: parent
|
||||
color: Qt.rgba(Theme.surfaceTint.r, Theme.surfaceTint.g, Theme.surfaceTint.b, 0.04)
|
||||
radius: parent.radius
|
||||
color: Qt.rgba(Theme.surfaceContainer.r, Theme.surfaceContainer.g, Theme.surfaceContainer.b, backgroundTransparency)
|
||||
overlayColor: Qt.rgba(Theme.surfaceTint.r, Theme.surfaceTint.g, Theme.surfaceTint.b, 0.04)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -5,6 +5,7 @@ import Quickshell.Hyprland
|
||||
import Quickshell.Wayland
|
||||
import qs.Common
|
||||
import qs.Services
|
||||
import qs.Widgets
|
||||
|
||||
PanelWindow {
|
||||
id: root
|
||||
@@ -171,28 +172,26 @@ PanelWindow {
|
||||
|
||||
RectangularShadow {
|
||||
id: shadowEffect
|
||||
width: contentLoader.width
|
||||
height: contentLoader.height
|
||||
x: contentLoader.x
|
||||
y: contentLoader.y
|
||||
scale: contentLoader.scale
|
||||
width: contentLoaderWrapper.width
|
||||
height: contentLoaderWrapper.height
|
||||
x: contentLoaderWrapper.x
|
||||
y: contentLoaderWrapper.y
|
||||
scale: contentLoaderWrapper.scale
|
||||
transformOrigin: Item.Center
|
||||
|
||||
radius: Theme.cornerRadius
|
||||
blur: 10
|
||||
spread: 0
|
||||
color: Qt.rgba(0, 0, 0, 0.6)
|
||||
visible: contentLoader.visible && shouldBeVisible
|
||||
opacity: contentLoader.opacity * 0.6
|
||||
visible: contentLoaderWrapper.visible && shouldBeVisible
|
||||
opacity: contentLoaderWrapper.opacity * 0.6
|
||||
}
|
||||
|
||||
Loader {
|
||||
id: contentLoader
|
||||
Item {
|
||||
id: contentLoaderWrapper
|
||||
anchors.centerIn: parent
|
||||
width: parent.width
|
||||
height: parent.height
|
||||
active: root.visible
|
||||
asynchronous: false
|
||||
layer.enabled: Quickshell.env("DMS_DISABLE_LAYER") !== "true" && Quickshell.env("DMS_DISABLE_LAYER") !== "1"
|
||||
layer.smooth: false
|
||||
layer.textureSize: Qt.size(width * root.dpr, height * root.dpr)
|
||||
@@ -210,6 +209,17 @@ PanelWindow {
|
||||
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
54
Widgets/DankRectangle.qml
Normal 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 }
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -110,7 +110,7 @@ PanelWindow {
|
||||
}
|
||||
}
|
||||
|
||||
StyledRect {
|
||||
Item {
|
||||
id: contentRect
|
||||
layer.enabled: Quickshell.env("DMS_DISABLE_LAYER") !== "true" && Quickshell.env("DMS_DISABLE_LAYER") !== "1"
|
||||
layer.smooth: false
|
||||
@@ -121,11 +121,12 @@ PanelWindow {
|
||||
anchors.bottom: parent.bottom
|
||||
width: parent.width
|
||||
x: Theme.snap(slideContainer.slideOffset, root.dpr)
|
||||
color: Qt.rgba(Theme.surfaceContainer.r, Theme.surfaceContainer.g, Theme.surfaceContainer.b,
|
||||
customTransparency >= 0 ? customTransparency : SettingsData.popupTransparency)
|
||||
border.color: Theme.outlineMedium
|
||||
border.width: 1
|
||||
radius: Theme.cornerRadius
|
||||
|
||||
DankRectangle {
|
||||
anchors.fill: parent
|
||||
color: Qt.rgba(Theme.surfaceContainer.r, Theme.surfaceContainer.g, Theme.surfaceContainer.b,
|
||||
customTransparency >= 0 ? customTransparency : SettingsData.popupTransparency)
|
||||
}
|
||||
|
||||
Column {
|
||||
id: headerColumn
|
||||
|
||||
@@ -89,9 +89,6 @@
|
||||
"Applications": {
|
||||
"Applications": "Applicazioni"
|
||||
},
|
||||
"Apply": {
|
||||
"Apply": "Applica"
|
||||
},
|
||||
"Apply GTK Colors": {
|
||||
"Apply GTK Colors": "Applica Colori GTK"
|
||||
},
|
||||
@@ -167,9 +164,6 @@
|
||||
"Auto-hide Dock": {
|
||||
"Auto-hide Dock": "Nascondi automaticamente Dock"
|
||||
},
|
||||
"Auto-location": {
|
||||
"Auto-location": "Localizzazione automatica"
|
||||
},
|
||||
"Auto-saving...": {
|
||||
"Auto-saving...": "Salvataggio automatico..."
|
||||
},
|
||||
@@ -230,9 +224,6 @@
|
||||
"Battery level and power management": {
|
||||
"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": "Collega il blocca schermo ai segnali dbus da loginctl.\nDisabilità se stai usando un blocca schermo esterno"
|
||||
},
|
||||
@@ -398,9 +389,6 @@
|
||||
"Compositor": {
|
||||
"Compositor": "Compositor\n"
|
||||
},
|
||||
"Compositor:": {
|
||||
"Compositor:": "Compositor:"
|
||||
},
|
||||
"Configuration activated": {
|
||||
"Configuration activated": "Configurazione attivata"
|
||||
},
|
||||
@@ -434,9 +422,6 @@
|
||||
"Connecting to Device": {
|
||||
"Connecting to Device": "Connessione al Dispositivo"
|
||||
},
|
||||
"Connection failed. Check password and try again.": {
|
||||
"Connection failed. Check password and try again.": "Connessione fallita. Controlla la password e riprova"
|
||||
},
|
||||
"Contrast": {
|
||||
"Contrast": "Contrasto"
|
||||
},
|
||||
@@ -461,9 +446,6 @@
|
||||
"Copied!": {
|
||||
"Copied!": "Copiato!"
|
||||
},
|
||||
"Copy": {
|
||||
"Copy": "Copia"
|
||||
},
|
||||
"Copy PID": {
|
||||
"Copy PID": "Copia PID"
|
||||
},
|
||||
@@ -542,9 +524,6 @@
|
||||
"Dank Bar Widget Transparency": {
|
||||
"Dank Bar Widget Transparency": "Trasparenza Widget Dank Bar"
|
||||
},
|
||||
"Dank Suite:": {
|
||||
"Dank Suite:": "Dank Suite:"
|
||||
},
|
||||
"DankBar Font Scale": {
|
||||
"DankBar Font Scale": "Scala Font DankBar"
|
||||
},
|
||||
@@ -842,9 +821,6 @@
|
||||
"Format Legend": {
|
||||
"Format Legend": "Legenda Formato"
|
||||
},
|
||||
"Framework:": {
|
||||
"Framework:": "Framework:"
|
||||
},
|
||||
"Fun": {
|
||||
"Fun": "Svago"
|
||||
},
|
||||
@@ -866,9 +842,6 @@
|
||||
"Gamma control not available. Requires DMS API 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:"
|
||||
},
|
||||
@@ -902,15 +875,9 @@
|
||||
"Hex": {
|
||||
"Hex": "Hex"
|
||||
},
|
||||
"Hex:": {
|
||||
"Hex:": "Hex:"
|
||||
},
|
||||
"Hibernate": {
|
||||
"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": "Nascondi la dock quando "
|
||||
},
|
||||
@@ -1001,9 +968,6 @@
|
||||
"Kill Process": {
|
||||
"Kill Process": "Chiusura Processo"
|
||||
},
|
||||
"Language:": {
|
||||
"Language:": "Lingua:"
|
||||
},
|
||||
"Last launched %1": {
|
||||
"Last launched %1": "Ultimo avviato %1"
|
||||
},
|
||||
@@ -1166,9 +1130,6 @@
|
||||
"Mode: ": {
|
||||
"Mode: ": ""
|
||||
},
|
||||
"Monitor": {
|
||||
"Monitor": "Monitor"
|
||||
},
|
||||
"Monitor Selection:": {
|
||||
"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.": "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": "Accesso veloce al launcher applicazioni"
|
||||
},
|
||||
@@ -1604,9 +1562,6 @@
|
||||
"Science": {
|
||||
"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": "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 • ←→↑↓: Griglia Nav • Enter/Spazio: Seleziona"
|
||||
},
|
||||
"Technical Details": {
|
||||
"Technical Details": "Dettagli Tecnici"
|
||||
},
|
||||
"Temperature": {
|
||||
"Temperature": "Temperatura"
|
||||
},
|
||||
"Terminal custom additional parameters": {
|
||||
"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": "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": "Usa comando personalizzato per aggiornare il sistema"
|
||||
},
|
||||
@@ -2105,9 +2051,6 @@
|
||||
"Wind": {
|
||||
"Wind": "Vento"
|
||||
},
|
||||
"Window Scrolling": {
|
||||
"Window Scrolling": "Scorrimento Finestra"
|
||||
},
|
||||
"Workspace": {
|
||||
"Workspace": "Workspace"
|
||||
},
|
||||
|
||||
@@ -89,9 +89,6 @@
|
||||
"Applications": {
|
||||
"Applications": "アプリ"
|
||||
},
|
||||
"Apply": {
|
||||
"Apply": "適用"
|
||||
},
|
||||
"Apply GTK Colors": {
|
||||
"Apply GTK Colors": "GTKカラーを適用"
|
||||
},
|
||||
@@ -167,9 +164,6 @@
|
||||
"Auto-hide Dock": {
|
||||
"Auto-hide Dock": "ドックを自動的に隠す"
|
||||
},
|
||||
"Auto-location": {
|
||||
"Auto-location": "自動位置特定"
|
||||
},
|
||||
"Auto-saving...": {
|
||||
"Auto-saving...": "自動保存中..."
|
||||
},
|
||||
@@ -230,9 +224,6 @@
|
||||
"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": "ロック画面をloginctlからのdbus信号にバインド。外部ロック画面を使用している場合は無効に"
|
||||
},
|
||||
@@ -398,9 +389,6 @@
|
||||
"Compositor": {
|
||||
"Compositor": "コンポジター"
|
||||
},
|
||||
"Compositor:": {
|
||||
"Compositor:": "コンポジター:"
|
||||
},
|
||||
"Configuration activated": {
|
||||
"Configuration activated": "設定が適用されました"
|
||||
},
|
||||
@@ -434,9 +422,6 @@
|
||||
"Connecting to Device": {
|
||||
"Connecting to Device": "デバイスに接続中"
|
||||
},
|
||||
"Connection failed. Check password and try again.": {
|
||||
"Connection failed. Check password and try again.": "接続に失敗しました。パスワードを確認して、もう一度やり直してください。"
|
||||
},
|
||||
"Contrast": {
|
||||
"Contrast": "コントラスト"
|
||||
},
|
||||
@@ -461,9 +446,6 @@
|
||||
"Copied!": {
|
||||
"Copied!": "コピーしました!"
|
||||
},
|
||||
"Copy": {
|
||||
"Copy": "コピー"
|
||||
},
|
||||
"Copy PID": {
|
||||
"Copy PID": "PIDをコピー"
|
||||
},
|
||||
@@ -542,9 +524,6 @@
|
||||
"Dank Bar Widget Transparency": {
|
||||
"Dank Bar Widget Transparency": "Dank Barウィジェットの透明度"
|
||||
},
|
||||
"Dank Suite:": {
|
||||
"Dank Suite:": "Dankスイート:"
|
||||
},
|
||||
"DankBar Font Scale": {
|
||||
"DankBar Font Scale": "Dank Bar フォントスケール"
|
||||
},
|
||||
@@ -842,9 +821,6 @@
|
||||
"Format Legend": {
|
||||
"Format Legend": "フォーマット凡例"
|
||||
},
|
||||
"Framework:": {
|
||||
"Framework:": "フレームワーク:"
|
||||
},
|
||||
"Fun": {
|
||||
"Fun": "娯楽"
|
||||
},
|
||||
@@ -866,9 +842,6 @@
|
||||
"Gamma control not available. Requires 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:"
|
||||
},
|
||||
@@ -902,15 +875,9 @@
|
||||
"Hex": {
|
||||
"Hex": "16進数"
|
||||
},
|
||||
"Hex:": {
|
||||
"Hex:": "16進数:"
|
||||
},
|
||||
"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": "使用していないときはドックを非表示にし、ドックエリアの近くにホバーすると表示されます"
|
||||
},
|
||||
@@ -1001,9 +968,6 @@
|
||||
"Kill Process": {
|
||||
"Kill Process": "プロセスを強制終了"
|
||||
},
|
||||
"Language:": {
|
||||
"Language:": "言語:"
|
||||
},
|
||||
"Last launched %1": {
|
||||
"Last launched %1": "最終起動日 %1"
|
||||
},
|
||||
@@ -1166,9 +1130,6 @@
|
||||
"Mode: ": {
|
||||
"Mode: ": "モード: "
|
||||
},
|
||||
"Monitor": {
|
||||
"Monitor": "モニター"
|
||||
},
|
||||
"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.": "プロフィール画像が大きすぎます。より小さい画像を使用してください。"
|
||||
},
|
||||
"QML, JavaScript, Go": {
|
||||
"QML, JavaScript, Go": "QML, JavaScript, Go"
|
||||
},
|
||||
"Quick access to application launcher": {
|
||||
"Quick access to application launcher": "アプリケーションランチャーへのクイックアクセス"
|
||||
},
|
||||
@@ -1604,9 +1562,6 @@
|
||||
"Science": {
|
||||
"Science": "科学"
|
||||
},
|
||||
"Scroll through windows, rather than workspaces": {
|
||||
"Scroll through windows, rather than workspaces": "ワークスペースではなくウィンドウをスクロール"
|
||||
},
|
||||
"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: ナビゲーション • ←→↑↓: グリッドナビゲーション • Enter/Space: 選択"
|
||||
},
|
||||
"Technical Details": {
|
||||
"Technical Details": "技術的な詳細"
|
||||
},
|
||||
"Temperature": {
|
||||
"Temperature": "温度"
|
||||
},
|
||||
"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 automatic location detection (geoclue2)": {
|
||||
"Use automatic location detection (geoclue2)": "自動位置検出 (geoclue2) を使用"
|
||||
},
|
||||
"Use custom command for update your system": {
|
||||
"Use custom command for update your system": "カスタムコマンドを使用してシステムを更新"
|
||||
},
|
||||
@@ -2105,9 +2051,6 @@
|
||||
"Wind": {
|
||||
"Wind": "風"
|
||||
},
|
||||
"Window Scrolling": {
|
||||
"Window Scrolling": "ウィンドウスクロール"
|
||||
},
|
||||
"Workspace": {
|
||||
"Workspace": "ワークスペース"
|
||||
},
|
||||
|
||||
@@ -89,9 +89,6 @@
|
||||
"Applications": {
|
||||
"Applications": "Aplikacje"
|
||||
},
|
||||
"Apply": {
|
||||
"Apply": "Zastosuj"
|
||||
},
|
||||
"Apply GTK Colors": {
|
||||
"Apply GTK Colors": "Zastosuj kolory GTK"
|
||||
},
|
||||
@@ -167,9 +164,6 @@
|
||||
"Auto-hide Dock": {
|
||||
"Auto-hide Dock": "Automatyczne ukrywanie doku"
|
||||
},
|
||||
"Auto-location": {
|
||||
"Auto-location": "Automatyczna lokalizacja"
|
||||
},
|
||||
"Auto-saving...": {
|
||||
"Auto-saving...": "Automatyczne zapisywanie..."
|
||||
},
|
||||
@@ -230,9 +224,6 @@
|
||||
"Battery level and power management": {
|
||||
"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": "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": "Kompozytor"
|
||||
},
|
||||
"Compositor:": {
|
||||
"Compositor:": "Kompozytor:"
|
||||
},
|
||||
"Configuration activated": {
|
||||
"Configuration activated": "Konfiguracja aktywowana"
|
||||
},
|
||||
@@ -434,9 +422,6 @@
|
||||
"Connecting to Device": {
|
||||
"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": "Kontrast"
|
||||
},
|
||||
@@ -461,9 +446,6 @@
|
||||
"Copied!": {
|
||||
"Copied!": "Skopiowane!"
|
||||
},
|
||||
"Copy": {
|
||||
"Copy": "Kopiuj"
|
||||
},
|
||||
"Copy PID": {
|
||||
"Copy PID": "Kopiuj PID"
|
||||
},
|
||||
@@ -542,9 +524,6 @@
|
||||
"Dank Bar Widget Transparency": {
|
||||
"Dank Bar Widget Transparency": "Przezroczystość widżetu Dank Bar"
|
||||
},
|
||||
"Dank Suite:": {
|
||||
"Dank Suite:": "Dank Suite:"
|
||||
},
|
||||
"DankBar Font Scale": {
|
||||
"DankBar Font Scale": "Skala czcionki DankBar"
|
||||
},
|
||||
@@ -842,9 +821,6 @@
|
||||
"Format Legend": {
|
||||
"Format Legend": "Legenda formatowania"
|
||||
},
|
||||
"Framework:": {
|
||||
"Framework:": "Framework:"
|
||||
},
|
||||
"Fun": {
|
||||
"Fun": "Zabawa"
|
||||
},
|
||||
@@ -866,9 +842,6 @@
|
||||
"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+."
|
||||
},
|
||||
"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:"
|
||||
},
|
||||
@@ -902,15 +875,9 @@
|
||||
"Hex": {
|
||||
"Hex": ""
|
||||
},
|
||||
"Hex:": {
|
||||
"Hex:": "Hex:"
|
||||
},
|
||||
"Hibernate": {
|
||||
"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": "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": "Zabij proces"
|
||||
},
|
||||
"Language:": {
|
||||
"Language:": "Język:"
|
||||
},
|
||||
"Last launched %1": {
|
||||
"Last launched %1": "Ostatnio uruchomiony %1"
|
||||
},
|
||||
@@ -1166,9 +1130,6 @@
|
||||
"Mode: ": {
|
||||
"Mode: ": ""
|
||||
},
|
||||
"Monitor": {
|
||||
"Monitor": "Monitor"
|
||||
},
|
||||
"Monitor Selection:": {
|
||||
"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.": "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": "Szybki dostęp do uruchamiania aplikacji"
|
||||
},
|
||||
@@ -1604,9 +1562,6 @@
|
||||
"Science": {
|
||||
"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": "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: 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": "Niestandardowe dodatkowe parametry terminala"
|
||||
},
|
||||
@@ -1997,9 +1946,6 @@
|
||||
"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 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": "Użyj niestandardowego polecenia do aktualizacji systemu"
|
||||
},
|
||||
@@ -2105,9 +2051,6 @@
|
||||
"Wind": {
|
||||
"Wind": "Wiatr"
|
||||
},
|
||||
"Window Scrolling": {
|
||||
"Window Scrolling": "Przewijanie okna"
|
||||
},
|
||||
"Workspace": {
|
||||
"Workspace": "Obszar roboczy"
|
||||
},
|
||||
|
||||
@@ -89,9 +89,6 @@
|
||||
"Applications": {
|
||||
"Applications": "Aplicativos"
|
||||
},
|
||||
"Apply": {
|
||||
"Apply": "Aplicar"
|
||||
},
|
||||
"Apply GTK Colors": {
|
||||
"Apply GTK Colors": "Aplicar cores no GTK"
|
||||
},
|
||||
@@ -167,9 +164,6 @@
|
||||
"Auto-hide Dock": {
|
||||
"Auto-hide Dock": "Esconder Automaticamente o Dock"
|
||||
},
|
||||
"Auto-location": {
|
||||
"Auto-location": "Localização-Automática"
|
||||
},
|
||||
"Auto-saving...": {
|
||||
"Auto-saving...": "Salvando automáticamente..."
|
||||
},
|
||||
@@ -230,9 +224,6 @@
|
||||
"Battery level and power management": {
|
||||
"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": "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:"
|
||||
},
|
||||
"Configuration activated": {
|
||||
"Configuration activated": "Configuração ativada"
|
||||
},
|
||||
@@ -434,9 +422,6 @@
|
||||
"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": "Contraste"
|
||||
},
|
||||
@@ -461,9 +446,6 @@
|
||||
"Copied!": {
|
||||
"Copied!": "Copiado!"
|
||||
},
|
||||
"Copy": {
|
||||
"Copy": "Copiar"
|
||||
},
|
||||
"Copy PID": {
|
||||
"Copy PID": "Copiar PID"
|
||||
},
|
||||
@@ -542,9 +524,6 @@
|
||||
"Dank Bar Widget Transparency": {
|
||||
"Dank Bar Widget Transparency": "Transparência dos Widgets da Dank Bar"
|
||||
},
|
||||
"Dank Suite:": {
|
||||
"Dank Suite:": "Suíte Dank:"
|
||||
},
|
||||
"DankBar Font Scale": {
|
||||
"DankBar Font Scale": "Escala das fontes no Dank Bar"
|
||||
},
|
||||
@@ -842,9 +821,6 @@
|
||||
"Format Legend": {
|
||||
"Format Legend": "Formatar Legenda"
|
||||
},
|
||||
"Framework:": {
|
||||
"Framework:": "Estrutura:"
|
||||
},
|
||||
"Fun": {
|
||||
"Fun": "Diversão"
|
||||
},
|
||||
@@ -866,9 +842,6 @@
|
||||
"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+."
|
||||
},
|
||||
"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:"
|
||||
},
|
||||
@@ -902,15 +875,9 @@
|
||||
"Hex": {
|
||||
"Hex": ""
|
||||
},
|
||||
"Hex:": {
|
||||
"Hex:": "Hex:"
|
||||
},
|
||||
"Hibernate": {
|
||||
"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": "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": "Matar Processo"
|
||||
},
|
||||
"Language:": {
|
||||
"Language:": "Linguagem:"
|
||||
},
|
||||
"Last launched %1": {
|
||||
"Last launched %1": "Lançado pela última vez em %1"
|
||||
},
|
||||
@@ -1166,9 +1130,6 @@
|
||||
"Mode: ": {
|
||||
"Mode: ": ""
|
||||
},
|
||||
"Monitor": {
|
||||
"Monitor": "Monitor"
|
||||
},
|
||||
"Monitor Selection:": {
|
||||
"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.": "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": "Acesso rápido ao lançador de aplicativos"
|
||||
},
|
||||
@@ -1604,9 +1562,6 @@
|
||||
"Science": {
|
||||
"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": "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: 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": "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": "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": "Usar comando personalizado para atualizar seu sistema"
|
||||
},
|
||||
@@ -2105,9 +2051,6 @@
|
||||
"Wind": {
|
||||
"Wind": "Vento"
|
||||
},
|
||||
"Window Scrolling": {
|
||||
"Window Scrolling": "Rolagem de Janelas"
|
||||
},
|
||||
"Workspace": {
|
||||
"Workspace": "Área de Trabalho"
|
||||
},
|
||||
|
||||
@@ -89,9 +89,6 @@
|
||||
"Applications": {
|
||||
"Applications": "Uygulamalar"
|
||||
},
|
||||
"Apply": {
|
||||
"Apply": "Uygula"
|
||||
},
|
||||
"Apply GTK Colors": {
|
||||
"Apply GTK Colors": "GTK Renklerini Uygula"
|
||||
},
|
||||
@@ -167,9 +164,6 @@
|
||||
"Auto-hide Dock": {
|
||||
"Auto-hide Dock": "Dock'u Otomatik Gizle"
|
||||
},
|
||||
"Auto-location": {
|
||||
"Auto-location": "Otomatik konum"
|
||||
},
|
||||
"Auto-saving...": {
|
||||
"Auto-saving...": "Otomatik kaydetme..."
|
||||
},
|
||||
@@ -230,9 +224,6 @@
|
||||
"Battery level and power management": {
|
||||
"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": "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": "Kompozitör"
|
||||
},
|
||||
"Compositor:": {
|
||||
"Compositor:": "Kompozitör:"
|
||||
},
|
||||
"Configuration activated": {
|
||||
"Configuration activated": "Yapılandırma aktifleştirildi"
|
||||
},
|
||||
@@ -434,9 +422,6 @@
|
||||
"Connecting to Device": {
|
||||
"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": "Kontrast"
|
||||
},
|
||||
@@ -461,9 +446,6 @@
|
||||
"Copied!": {
|
||||
"Copied!": "Kopyalandı!"
|
||||
},
|
||||
"Copy": {
|
||||
"Copy": "Kopyala"
|
||||
},
|
||||
"Copy PID": {
|
||||
"Copy PID": "PID'i Kopyala"
|
||||
},
|
||||
@@ -542,9 +524,6 @@
|
||||
"Dank Bar Widget Transparency": {
|
||||
"Dank Bar Widget Transparency": "Dank Bar Widget Şeffaflığı"
|
||||
},
|
||||
"Dank Suite:": {
|
||||
"Dank Suite:": "Dank Suite:"
|
||||
},
|
||||
"DankBar Font Scale": {
|
||||
"DankBar Font Scale": "DankBar Yazı Tipi Ölçeği"
|
||||
},
|
||||
@@ -842,9 +821,6 @@
|
||||
"Format Legend": {
|
||||
"Format Legend": "Biçim Açıklaması"
|
||||
},
|
||||
"Framework:": {
|
||||
"Framework:": "Framework:"
|
||||
},
|
||||
"Fun": {
|
||||
"Fun": "Eğlence"
|
||||
},
|
||||
@@ -866,9 +842,6 @@
|
||||
"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."
|
||||
},
|
||||
"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:"
|
||||
},
|
||||
@@ -902,15 +875,9 @@
|
||||
"Hex": {
|
||||
"Hex": "Hex"
|
||||
},
|
||||
"Hex:": {
|
||||
"Hex:": "Hex:"
|
||||
},
|
||||
"Hibernate": {
|
||||
"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": "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": "Süreci Öldür"
|
||||
},
|
||||
"Language:": {
|
||||
"Language:": "Dil:"
|
||||
},
|
||||
"Last launched %1": {
|
||||
"Last launched %1": "Son başlatma %1"
|
||||
},
|
||||
@@ -1166,9 +1130,6 @@
|
||||
"Mode: ": {
|
||||
"Mode: ": "Mod: "
|
||||
},
|
||||
"Monitor": {
|
||||
"Monitor": "Monitör"
|
||||
},
|
||||
"Monitor Selection:": {
|
||||
"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.": "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": "Uygulama başlatıcısına hızlı erişim"
|
||||
},
|
||||
@@ -1604,9 +1562,6 @@
|
||||
"Science": {
|
||||
"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": "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: 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 özel ek parametreleri"
|
||||
},
|
||||
@@ -1997,9 +1946,6 @@
|
||||
"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 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": "Sistemi güncellemek için özel komut kullan"
|
||||
},
|
||||
@@ -2105,9 +2051,6 @@
|
||||
"Wind": {
|
||||
"Wind": "Rüzgar"
|
||||
},
|
||||
"Window Scrolling": {
|
||||
"Window Scrolling": "Pencere Kaydırma"
|
||||
},
|
||||
"Workspace": {
|
||||
"Workspace": "Çalışma Alanı"
|
||||
},
|
||||
|
||||
@@ -89,9 +89,6 @@
|
||||
"Applications": {
|
||||
"Applications": "应用程序"
|
||||
},
|
||||
"Apply": {
|
||||
"Apply": "应用"
|
||||
},
|
||||
"Apply GTK Colors": {
|
||||
"Apply GTK Colors": "应用 GTK 配色"
|
||||
},
|
||||
@@ -167,9 +164,6 @@
|
||||
"Auto-hide Dock": {
|
||||
"Auto-hide Dock": "自动隐藏程序坞"
|
||||
},
|
||||
"Auto-location": {
|
||||
"Auto-location": "自动定位"
|
||||
},
|
||||
"Auto-saving...": {
|
||||
"Auto-saving...": "自动保存中..."
|
||||
},
|
||||
@@ -230,9 +224,6 @@
|
||||
"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": "将锁屏绑定到来自 loginctl 的 dbus 信号。如使用外部锁屏程序,请禁用此项"
|
||||
},
|
||||
@@ -398,9 +389,6 @@
|
||||
"Compositor": {
|
||||
"Compositor": "合成器"
|
||||
},
|
||||
"Compositor:": {
|
||||
"Compositor:": "合成器:"
|
||||
},
|
||||
"Configuration activated": {
|
||||
"Configuration activated": "已应用配置"
|
||||
},
|
||||
@@ -434,9 +422,6 @@
|
||||
"Connecting to Device": {
|
||||
"Connecting to Device": "连接设备中"
|
||||
},
|
||||
"Connection failed. Check password and try again.": {
|
||||
"Connection failed. Check password and try again.": "连接失败,请检查密码后重试。"
|
||||
},
|
||||
"Contrast": {
|
||||
"Contrast": "对比度"
|
||||
},
|
||||
@@ -461,9 +446,6 @@
|
||||
"Copied!": {
|
||||
"Copied!": "复制成功!"
|
||||
},
|
||||
"Copy": {
|
||||
"Copy": "复制"
|
||||
},
|
||||
"Copy PID": {
|
||||
"Copy PID": "复制进程ID"
|
||||
},
|
||||
@@ -542,9 +524,6 @@
|
||||
"Dank Bar Widget Transparency": {
|
||||
"Dank Bar Widget Transparency": "Dank Bar 小组件透明度"
|
||||
},
|
||||
"Dank Suite:": {
|
||||
"Dank Suite:": "Dank 套件:"
|
||||
},
|
||||
"DankBar Font Scale": {
|
||||
"DankBar Font Scale": "Dank Bar 字体缩放"
|
||||
},
|
||||
@@ -842,9 +821,6 @@
|
||||
"Format Legend": {
|
||||
"Format Legend": "参考格式"
|
||||
},
|
||||
"Framework:": {
|
||||
"Framework:": "框架:"
|
||||
},
|
||||
"Fun": {
|
||||
"Fun": "娱乐"
|
||||
},
|
||||
@@ -866,9 +842,6 @@
|
||||
"Gamma control not available. Requires 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:"
|
||||
},
|
||||
@@ -902,15 +875,9 @@
|
||||
"Hex": {
|
||||
"Hex": "十六进制"
|
||||
},
|
||||
"Hex:": {
|
||||
"Hex:": "十六进制颜色码:"
|
||||
},
|
||||
"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": "在未使用时隐藏程序坞,鼠标悬停到程序坞区域时显示"
|
||||
},
|
||||
@@ -1001,9 +968,6 @@
|
||||
"Kill Process": {
|
||||
"Kill Process": "结束进程"
|
||||
},
|
||||
"Language:": {
|
||||
"Language:": "开发语言:"
|
||||
},
|
||||
"Last launched %1": {
|
||||
"Last launched %1": "上次启动于 %1"
|
||||
},
|
||||
@@ -1166,9 +1130,6 @@
|
||||
"Mode: ": {
|
||||
"Mode: ": "模式: "
|
||||
},
|
||||
"Monitor": {
|
||||
"Monitor": "显示器"
|
||||
},
|
||||
"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.": "个人资料图片过大,请选择更小的图片。"
|
||||
},
|
||||
"QML, JavaScript, Go": {
|
||||
"QML, JavaScript, Go": "QML, JavaScript, Go"
|
||||
},
|
||||
"Quick access to application launcher": {
|
||||
"Quick access to application launcher": "快捷访问应用启动器"
|
||||
},
|
||||
@@ -1604,9 +1562,6 @@
|
||||
"Science": {
|
||||
"Science": "科学"
|
||||
},
|
||||
"Scroll through windows, rather than workspaces": {
|
||||
"Scroll through windows, rather than workspaces": "滚动窗口,而非工作区"
|
||||
},
|
||||
"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: 导航 • ←→↑↓: 网格导航 • 回车/空格: 选中"
|
||||
},
|
||||
"Technical Details": {
|
||||
"Technical Details": "技术细节"
|
||||
},
|
||||
"Temperature": {
|
||||
"Temperature": "色温"
|
||||
},
|
||||
"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 automatic location detection (geoclue2)": {
|
||||
"Use automatic location detection (geoclue2)": "使用自动位置检测 (geoclue2)"
|
||||
},
|
||||
"Use custom command for update your system": {
|
||||
"Use custom command for update your system": "使用自定义命令来更新系统"
|
||||
},
|
||||
@@ -2105,9 +2051,6 @@
|
||||
"Wind": {
|
||||
"Wind": "风速"
|
||||
},
|
||||
"Window Scrolling": {
|
||||
"Window Scrolling": "窗口滚动"
|
||||
},
|
||||
"Workspace": {
|
||||
"Workspace": "工作区"
|
||||
},
|
||||
|
||||
@@ -89,9 +89,6 @@
|
||||
"Applications": {
|
||||
"Applications": "應用程式"
|
||||
},
|
||||
"Apply": {
|
||||
"Apply": "套用"
|
||||
},
|
||||
"Apply GTK Colors": {
|
||||
"Apply GTK Colors": "套用 GTK 顏色"
|
||||
},
|
||||
@@ -167,9 +164,6 @@
|
||||
"Auto-hide Dock": {
|
||||
"Auto-hide Dock": "自動隱藏 Dock"
|
||||
},
|
||||
"Auto-location": {
|
||||
"Auto-location": "自動定位"
|
||||
},
|
||||
"Auto-saving...": {
|
||||
"Auto-saving...": "自動保存..."
|
||||
},
|
||||
@@ -230,9 +224,6 @@
|
||||
"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": "將鎖定畫面綁定到 loginctl 的 dbus 訊號。如果使用外部鎖屏,請停用"
|
||||
},
|
||||
@@ -398,9 +389,6 @@
|
||||
"Compositor": {
|
||||
"Compositor": "合成器"
|
||||
},
|
||||
"Compositor:": {
|
||||
"Compositor:": "合成器:"
|
||||
},
|
||||
"Configuration activated": {
|
||||
"Configuration activated": "配置已啟動"
|
||||
},
|
||||
@@ -434,9 +422,6 @@
|
||||
"Connecting to Device": {
|
||||
"Connecting to Device": ""
|
||||
},
|
||||
"Connection failed. Check password and try again.": {
|
||||
"Connection failed. Check password and try again.": "連線失敗。請檢查密碼並重試。"
|
||||
},
|
||||
"Contrast": {
|
||||
"Contrast": "對比"
|
||||
},
|
||||
@@ -461,9 +446,6 @@
|
||||
"Copied!": {
|
||||
"Copied!": "已複製!"
|
||||
},
|
||||
"Copy": {
|
||||
"Copy": "複製"
|
||||
},
|
||||
"Copy PID": {
|
||||
"Copy PID": "複製 PID"
|
||||
},
|
||||
@@ -542,9 +524,6 @@
|
||||
"Dank Bar Widget Transparency": {
|
||||
"Dank Bar Widget Transparency": "Dank Bar 部件透明度"
|
||||
},
|
||||
"Dank Suite:": {
|
||||
"Dank Suite:": "Dank 套件:"
|
||||
},
|
||||
"DankBar Font Scale": {
|
||||
"DankBar Font Scale": "Dank Bar 字體縮放"
|
||||
},
|
||||
@@ -842,9 +821,6 @@
|
||||
"Format Legend": {
|
||||
"Format Legend": "格式說明"
|
||||
},
|
||||
"Framework:": {
|
||||
"Framework:": "框架:"
|
||||
},
|
||||
"Fun": {
|
||||
"Fun": "有趣的"
|
||||
},
|
||||
@@ -866,9 +842,6 @@
|
||||
"Gamma control not available. Requires 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:"
|
||||
},
|
||||
@@ -902,15 +875,9 @@
|
||||
"Hex": {
|
||||
"Hex": ""
|
||||
},
|
||||
"Hex:": {
|
||||
"Hex:": "色碼:"
|
||||
},
|
||||
"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": "不使用時隱藏 Dock,並在 Dock 區域附近懸停時顯示 Dock"
|
||||
},
|
||||
@@ -1001,9 +968,6 @@
|
||||
"Kill Process": {
|
||||
"Kill Process": "結束程序"
|
||||
},
|
||||
"Language:": {
|
||||
"Language:": "語言:"
|
||||
},
|
||||
"Last launched %1": {
|
||||
"Last launched %1": "上次啟動於 %1"
|
||||
},
|
||||
@@ -1166,9 +1130,6 @@
|
||||
"Mode: ": {
|
||||
"Mode: ": ""
|
||||
},
|
||||
"Monitor": {
|
||||
"Monitor": "螢幕"
|
||||
},
|
||||
"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.": "個人資料圖片太大。請使用較小的圖片。"
|
||||
},
|
||||
"QML, JavaScript, Go": {
|
||||
"QML, JavaScript, Go": "QML, JavaScript, Go"
|
||||
},
|
||||
"Quick access to application launcher": {
|
||||
"Quick access to application launcher": "快速存取應用程式啟動器"
|
||||
},
|
||||
@@ -1604,9 +1562,6 @@
|
||||
"Science": {
|
||||
"Science": "科學"
|
||||
},
|
||||
"Scroll through windows, rather than workspaces": {
|
||||
"Scroll through windows, rather than workspaces": "滾動窗口,而不是工作區"
|
||||
},
|
||||
"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: 切換焦點 • ←→↑↓: 切換焦點 • Enter/Space: 選擇"
|
||||
},
|
||||
"Technical Details": {
|
||||
"Technical Details": "技術細節"
|
||||
},
|
||||
"Temperature": {
|
||||
"Temperature": "溫度"
|
||||
},
|
||||
"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 automatic location detection (geoclue2)": {
|
||||
"Use automatic location detection (geoclue2)": "使用自動位置偵測(geoclue2)"
|
||||
},
|
||||
"Use custom command for update your system": {
|
||||
"Use custom command for update your system": "使用自訂指令更新您的系統"
|
||||
},
|
||||
@@ -2105,9 +2051,6 @@
|
||||
"Wind": {
|
||||
"Wind": "風速"
|
||||
},
|
||||
"Window Scrolling": {
|
||||
"Window Scrolling": "視窗滾動"
|
||||
},
|
||||
"Workspace": {
|
||||
"Workspace": "工作區"
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user