add missing translations to BluetoothPanel actions

This commit is contained in:
notiant
2025-11-06 03:41:03 +01:00
committed by GitHub
parent c26784e215
commit 9430690aac
10 changed files with 49 additions and 13 deletions

View File

@@ -330,7 +330,11 @@
"known-devices": "Bekannte Geräte",
"pairing-mode": "Stellen Sie sicher, dass sich Ihr Gerät im Kopplungsmodus befindet.",
"scanning": "Scannen nach Geräten...",
"title": "Bluetooth"
"title": "Bluetooth",
"pairing": "Koppeln...",
"blocked": "Blockiert",
"disconnect": "Trennen",
"connect": "Verbinden"
}
},
"calendar": {

View File

@@ -330,7 +330,11 @@
"known-devices": "Known devices",
"pairing-mode": "Make sure your device is in pairing mode.",
"scanning": "Scanning for devices...",
"title": "Bluetooth"
"title": "Bluetooth",
"pairing": "Pairing...",
"blocked": "Blocked",
"disconnect": "Disconnect",
"connect": "Connect"
}
},
"calendar": {

View File

@@ -330,7 +330,11 @@
"known-devices": "Dispositivos conocidos",
"pairing-mode": "Asegúrate de que tu dispositivo esté en modo de emparejamiento.",
"scanning": "Buscando dispositivos...",
"title": "Bluetooth"
"title": "Bluetooth",
"pairing": "Emparejamiento...",
"blocked": "Bloqueado",
"disconnect": "Desconectar",
"connect": "Conectar"
}
},
"calendar": {

View File

@@ -330,7 +330,11 @@
"known-devices": "Appareils connus",
"pairing-mode": "Assurez-vous que votre appareil est en mode d'appairage.",
"scanning": "Recherche d'appareils en cours...",
"title": "Bluetooth"
"title": "Bluetooth",
"pairing": "Appairage...",
"blocked": "Bloqué",
"disconnect": "Déconnecter",
"connect": "Connecter"
}
},
"calendar": {

View File

@@ -330,7 +330,11 @@
"known-devices": "Dispositivos conhecidos",
"pairing-mode": "Certifique-se de que seu dispositivo está em modo de pareamento.",
"scanning": "Procurando por dispositivos...",
"title": "Bluetooth"
"title": "Bluetooth",
"pairing": "Emparelhamento...",
"blocked": "Bloqueado",
"disconnect": "Desconectar",
"connect": "Conectar"
}
},
"calendar": {

View File

@@ -330,7 +330,12 @@
"known-devices": "Bilinen cihazlar",
"pairing-mode": "Cihazınızın eşleştirme modunda olduğundan emin olun.",
"scanning": "Cihazlar tarınıyor...",
"title": "Bluetooth"
"title": "Bluetooth",
"title": "Bluetooth",
"pairing": "Eşleştiriliyor...",
"blocked": "Engellendi",
"disconnect": "Bağlantıyı Kes",
"connect": "Bağlan"
}
},
"calendar": {

View File

@@ -330,7 +330,12 @@
"known-devices": "Відомі пристрої",
"pairing-mode": "Переконайтеся, що ваш пристрій у режимі з'єднання.",
"scanning": "Сканування пристроїв...",
"title": "Bluetooth"
"title": "Bluetooth",
"title": "Bluetooth",
"pairing": "Спарювання...",
"blocked": "Заблоковано",
"disconnect": "Відключити",
"connect": "Підключити"
}
},
"calendar": {

View File

@@ -330,7 +330,11 @@
"known-devices": "已知设备",
"pairing-mode": "确保您的设备处于配对模式。",
"scanning": "正在扫描设备...",
"title": "蓝牙"
"title": "蓝牙",
"pairing": "配对...",
"blocked": "已阻止",
"disconnect": "断开",
"connect": "连接"
}
},
"calendar": {

View File

@@ -161,15 +161,15 @@ NBox {
tooltipText: root.tooltipText
text: {
if (modelData.pairing) {
return "Pairing..."
return I18n.tr("bluetooth.panel.pairing")
}
if (modelData.blocked) {
return "Blocked"
return I18n.tr("bluetooth.panel.blocked")
}
if (modelData.connected) {
return "Disconnect"
return I18n.tr("bluetooth.panel.disconnect")
}
return "Connect"
return I18n.tr("bluetooth.panel.connect")
}
icon: (isBusy ? "busy" : null)
onClicked: {

View File

@@ -348,7 +348,9 @@ Loader {
"es": "dddd, d 'de' MMMM",
"fr": "dddd d MMMM",
"pt": "dddd, d 'de' MMMM",
"zh": "yyyy年M月d日 dddd"
"zh": "yyyy年M月d日 dddd",
"uk": "dddd, d MMMM",
"tr": "dddd, d MMMM"
}
return I18n.locale.toString(Time.now, formats[lang] || "dddd, MMMM d")
}