From cd1615e0f47e75d5678cac28c491d65facaaf345 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8C=83=E6=9C=8B=E7=A8=8B?= Date: Thu, 4 Jun 2020 13:05:44 +0800 Subject: [PATCH] =?UTF-8?q?docs:=E6=9B=B4=E6=96=B0=E7=BF=BB=E8=AF=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 更新任务栏上的电池图标的提示文本的翻译 Log: 更新翻译 Task: https://pms.uniontech.com/zentao/bug-view-29099.html --- plugins/power/powerplugin.cpp | 17 +++-- translations/dde-dock.ts | 40 ++++++------ translations/dde-dock_ar.ts | 106 ++++++++++++++++--------------- translations/dde-dock_ca.ts | 106 ++++++++++++++++--------------- translations/dde-dock_cs.ts | 104 +++++++++++++++++-------------- translations/dde-dock_da.ts | 106 ++++++++++++++++--------------- translations/dde-dock_de.ts | 106 ++++++++++++++++--------------- translations/dde-dock_es.ts | 106 ++++++++++++++++--------------- translations/dde-dock_fi.ts | 110 ++++++++++++++++++--------------- translations/dde-dock_fr.ts | 106 ++++++++++++++++--------------- translations/dde-dock_hr.ts | 106 ++++++++++++++++--------------- translations/dde-dock_it.ts | 106 ++++++++++++++++--------------- translations/dde-dock_ko.ts | 106 ++++++++++++++++--------------- translations/dde-dock_lt.ts | 106 ++++++++++++++++--------------- translations/dde-dock_ms.ts | 104 +++++++++++++++++-------------- translations/dde-dock_pl.ts | 110 ++++++++++++++++++--------------- translations/dde-dock_pt.ts | 106 ++++++++++++++++--------------- translations/dde-dock_pt_BR.ts | 106 ++++++++++++++++--------------- translations/dde-dock_ro.ts | 106 ++++++++++++++++--------------- translations/dde-dock_ru.ts | 106 ++++++++++++++++--------------- translations/dde-dock_si.ts | 108 +++++++++++++++++--------------- translations/dde-dock_sk.ts | 106 ++++++++++++++++--------------- translations/dde-dock_sq.ts | 104 +++++++++++++++++-------------- translations/dde-dock_sr.ts | 106 ++++++++++++++++--------------- translations/dde-dock_tr.ts | 106 ++++++++++++++++--------------- translations/dde-dock_uk.ts | 106 ++++++++++++++++--------------- translations/dde-dock_vi.ts | 106 ++++++++++++++++--------------- translations/dde-dock_zh_CN.ts | 32 +++++----- translations/dde-dock_zh_HK.ts | 32 +++++----- translations/dde-dock_zh_TW.ts | 32 +++++----- 30 files changed, 1510 insertions(+), 1297 deletions(-) diff --git a/plugins/power/powerplugin.cpp b/plugins/power/powerplugin.cpp index 4dc4a4b68..7b817aa3b 100644 --- a/plugins/power/powerplugin.cpp +++ b/plugins/power/powerplugin.cpp @@ -243,16 +243,15 @@ void PowerPlugin::refreshTipsData() if (hour == 0) { if (min == 0) tips = tr("Charged"); - else - { - if(m_showTimeToFull) + else { + if (m_showTimeToFull) tips = tr("Capacity %1, %2 min remaining").arg(value).arg(min); else { tips = tr("Capacity %1").arg(value); } } } else { - if(m_showTimeToFull) + if (m_showTimeToFull) tips = tr("Capacity %1, %2 hr %3 min remaining").arg(value).arg(hour).arg(min); else { tips = tr("Capacity %1").arg(value); @@ -261,23 +260,23 @@ void PowerPlugin::refreshTipsData() m_tipsLabel->setText(tips); } else if (batteryState == BatteryState::FULLY_CHARGED || percentage == 100.) { - m_tipsLabel->setText(tr("Charged")); + m_tipsLabel->setText(tr("Capacity 1%, fully charged").arg(percentage)); } else { qulonglong timeToFull = m_systemPowerInter->batteryTimeToFull(); QDateTime time = QDateTime::fromTime_t(timeToFull).toUTC(); uint hour = time.toString("hh").toUInt(); uint min = time.toString("mm").toUInt(); QString tips; - if(timeToFull == 0) { // 电量已充満或电量计算中,剩余充满时间会返回0 - tips = tr("Capacity %1 ....").arg(value); + if (timeToFull == 0) { // 电量已充満或电量计算中,剩余充满时间会返回0 + tips = tr("Capacity %1 ...").arg(value); } else if (hour == 0) { - if(m_showTimeToFull) + if (m_showTimeToFull) tips = tr("Charging %1, %2 min until full").arg(value).arg(min); else { tips = tr("Charging %1").arg(value); } } else { - if(m_showTimeToFull) + if (m_showTimeToFull) tips = tr("Charging %1, %2 hr %3 min until full").arg(value).arg(hour).arg(min); else { tips = tr("Charging %1").arg(value); diff --git a/translations/dde-dock.ts b/translations/dde-dock.ts index 79f3a7346..3344b14b6 100644 --- a/translations/dde-dock.ts +++ b/translations/dde-dock.ts @@ -1,6 +1,4 @@ - - - + AbstractPluginsController @@ -57,7 +55,7 @@ Turned off - + Turned off @@ -355,12 +353,12 @@ Network - + Wired Network Wired Network - + Wired Network %1 Wired Network %1 @@ -393,44 +391,48 @@ - Charged Charged - + Capacity %1, %2 min remaining Capacity %1, %2 min remaining - - + + Capacity %1 Capacity %1 - + Capacity %1, %2 hr %3 min remaining Capacity %1, %2 hr %3 min remaining - - Capacity %1 .... - Capacity %1 .... + + Capacity 1%, fully charged + Capacity 1%, fully charged - + + Capacity %1 ... + Capacity %1 ... + + + Charging %1, %2 min until full Charging %1, %2 min until full - - + + Charging %1 Charging %1 - + Charging %1, %2 hr %3 min until full Charging %1, %2 hr %3 min until full @@ -594,4 +596,4 @@ Wireless Network %1 - + \ No newline at end of file diff --git a/translations/dde-dock_ar.ts b/translations/dde-dock_ar.ts index d7fde5419..7dc1f70d5 100644 --- a/translations/dde-dock_ar.ts +++ b/translations/dde-dock_ar.ts @@ -49,10 +49,14 @@ - Bluetooth البلوتوث + + + Turned off + + BluetoothPlugin @@ -168,67 +172,67 @@ DockSettings - + Fashion Mode النمط الحداثي - + Efficient Mode النمط الفعال - + Top أعلى - + Bottom أسفل - + Left يسار - + Right يمين - + Keep Shown اﻹبقاء ظاهراً - + Keep Hidden الإبقاء مخفياً - + Smart Hide إخفاء ذكي - + Mode النمط - + Location الموقع - + Status الحالة - + Plugins الإضافات @@ -258,85 +262,85 @@ NetworkItem - + Wireless connection اتصال لاسلكي - + Wired connection اتصال سلكي - + Disable wired connection تعطيل الاتصال السلكي - + Enable wired connection تفعيل الاتصال السلكي - + Disable wireless connection تعطيل الاتصال اللاسلكي - + Enable wireless connection تفعيل الاتصال اللاسلكي - + Disable network تعطيل الشبكة - + Enable network تمكين الشبكة - + Network settings إعدادات الشبكة - + Device disabled جهاز ملغى - - + + Wireless connection: %1 الاتصال اللاسلكي: 1% - - + + Wired connection: %1 اتصال سلكي بـ : %1 - + Not connected غير متصل - + Connecting يتصل - + Connected but no Internet access متصل لكن لا يوجد اتصال بالإنترنت - - + + Network cable unplugged سلك الشبكة غير موصول @@ -349,12 +353,12 @@ الشبكة - + Wired Network شبكة سلكية - + Wired Network %1 شبكة سلكية 1% @@ -387,44 +391,48 @@ - Charged مشحون - + Capacity %1, %2 min remaining السعة 1%, 2% دقيقة متبقية - - + + Capacity %1 - + Capacity %1, %2 hr %3 min remaining السعة 1% ,2% ساعة 3% دقيقة متبقية - - Capacity %1 .... - السعة %1 ... + + Capacity 1%, fully charged + - + + Capacity %1 ... + + + + Charging %1, %2 min until full جاري الشحن 1%, 2% دقيقة للاكتمال - - + + Charging %1 قيد الشحن %1 - + Charging %1, %2 hr %3 min until full جاري الشحن 1%, 2% ساعة 3% دقيقة للاكتمال @@ -578,12 +586,12 @@ WirelessList - + Wireless Network شبكة لاسلكية - + Wireless Network %1 الشبكة اللاسلكية : %1 diff --git a/translations/dde-dock_ca.ts b/translations/dde-dock_ca.ts index 47473e315..1d6cf836f 100644 --- a/translations/dde-dock_ca.ts +++ b/translations/dde-dock_ca.ts @@ -49,10 +49,14 @@ - Bluetooth Bluetooth + + + Turned off + Apagat + BluetoothPlugin @@ -168,67 +172,67 @@ DockSettings - + Fashion Mode Mode de moda - + Efficient Mode Mode eficient - + Top A dalt - + Bottom A baix - + Left A l'esquerra - + Right A la dreta - + Keep Shown Mantén visible - + Keep Hidden Mantén ocult - + Smart Hide Ocultació intel·ligent - + Mode Mode - + Location Ubicació - + Status Estat - + Plugins Connectors @@ -258,85 +262,85 @@ NetworkItem - + Wireless connection Connexió sense fil - + Wired connection Connexió amb fil - + Disable wired connection Inhabilita la connexió amb fil - + Enable wired connection Habilita la connexió amb fil - + Disable wireless connection Inhabilita la connexió sense fil - + Enable wireless connection Habilita la connexió sense fil - + Disable network Inhabilita la xarxa - + Enable network Habilita la xarxa - + Network settings Configuració de la xarxa - + Device disabled Dispositiu inhabilitat - - + + Wireless connection: %1 Connexió sense fil: %1 - - + + Wired connection: %1 Connexió amb fil: %1 - + Not connected No connectat - + Connecting Es connecta - + Connected but no Internet access Connectat però sense accés a Internet - - + + Network cable unplugged El cable de xarxa està desendollat. @@ -349,12 +353,12 @@ Xarxa - + Wired Network Xarxa amb fil - + Wired Network %1 Xarxa amb fil: %1 @@ -387,44 +391,48 @@ - Charged Carregada - + Capacity %1, %2 min remaining Capacitat: %1, %2 min restants - - + + Capacity %1 Capacitat %1 - + Capacity %1, %2 hr %3 min remaining Capacitat: %1, %2 h %3 min restants - - Capacity %1 .... - Capacitat %1.... + + Capacity 1%, fully charged + Capacitat 1%, completament carregada - + + Capacity %1 ... + Capacitat %1 ... + + + Charging %1, %2 min until full Es carrega %1, %2 min per completar-la. - - + + Charging %1 Carregant: %1 - + Charging %1, %2 hr %3 min until full Es carrega %1, %2 h %3 min per completar-la. @@ -578,12 +586,12 @@ WirelessList - + Wireless Network Xarxa sense fil - + Wireless Network %1 Xarxa sense fil: %1 diff --git a/translations/dde-dock_cs.ts b/translations/dde-dock_cs.ts index 693220621..2495af9fc 100644 --- a/translations/dde-dock_cs.ts +++ b/translations/dde-dock_cs.ts @@ -49,10 +49,14 @@ - Bluetooth Bluetooth + + + Turned off + Vypnuto + BluetoothPlugin @@ -168,67 +172,67 @@ DockSettings - + Fashion Mode Módní režim - + Efficient Mode Účelný režim - + Top Nahoře - + Bottom Dole - + Left Vlevo - + Right Vpravo - + Keep Shown Vždy zobrazeno - + Keep Hidden Vždy skryto - + Smart Hide Chytré skrývání - + Mode Režim - + Location Umístění - + Status Stav - + Plugins Zásuvné moduly @@ -258,85 +262,85 @@ NetworkItem - + Wireless connection Bezdrátové připojení - + Wired connection Drátové připojení - + Disable wired connection Vypnout drátové připojení - + Enable wired connection Zapnout drátové připojení - + Disable wireless connection Vypnout bezdrátové připojení - + Enable wireless connection Zapnout bezdrátové připojení - + Disable network Zakázat síť - + Enable network Povolit síť - + Network settings Nastavení sítě - + Device disabled Zařízení zakázáno - - + + Wireless connection: %1 Bezdrátové připojení: %1 - - + + Wired connection: %1 Drátové připojení: %1 - + Not connected Nepřipojeno - + Connecting Připojuje se - + Connected but no Internet access Připojeno, ale bez přístupu k Internetu - - + + Network cable unplugged Síťový kabel odpojen @@ -349,12 +353,12 @@ Síť - + Wired Network Drátová síť - + Wired Network %1 Drátová síť %1 @@ -387,44 +391,48 @@ - Charged Nabito - + Capacity %1, %2 min remaining Stav %1, %2 min zbývá - - + + Capacity %1 Kapacita %1 - + Capacity %1, %2 hr %3 min remaining Stav %1, %2 h %3 min zbývá - - Capacity %1 .... + + Capacity 1%, fully charged + Kapacita %1, plně nabito + + + + Capacity %1 ... Kapacita %1… - + Charging %1, %2 min until full Nabíjení %1, %2 min do úplného nabití - - + + Charging %1 Nabíjení: %1 - + Charging %1, %2 hr %3 min until full Nabíjení %1, %2 h %3 min do úplného nabití @@ -578,12 +586,12 @@ WirelessList - + Wireless Network Bezdrátová síť - + Wireless Network %1 Bezdrátová síť %1 diff --git a/translations/dde-dock_da.ts b/translations/dde-dock_da.ts index 674b52850..fcaa75cc3 100644 --- a/translations/dde-dock_da.ts +++ b/translations/dde-dock_da.ts @@ -49,10 +49,14 @@ - Bluetooth Bluetooth + + + Turned off + + BluetoothPlugin @@ -168,67 +172,67 @@ DockSettings - + Fashion Mode Fashion-tilstand - + Efficient Mode Effektiv tilstand - + Top Øverst - + Bottom Nederst - + Left Venstre - + Right Højre - + Keep Shown Hold vist - + Keep Hidden Hold skjult - + Smart Hide Smart skjul - + Mode Tilstand - + Location Placering - + Status Status - + Plugins Plugins @@ -258,85 +262,85 @@ NetworkItem - + Wireless connection Trådløs forbindelse - + Wired connection Kablet forbindelse - + Disable wired connection Deaktivér kablet forbindelse - + Enable wired connection Aktivér kablet forbindelse - + Disable wireless connection Deaktivér trådløs forbindelse - + Enable wireless connection Aktivér trådløs forbindelse - + Disable network Deaktivér netværk - + Enable network Aktivér netværk - + Network settings Netværksindstillinger - + Device disabled Enhed deaktiveret - - + + Wireless connection: %1 Trådløs forbindelse: %1 - - + + Wired connection: %1 Kablet forbindelse: %1 - + Not connected Ikke tilsluttet - + Connecting Opretter forbindelse - + Connected but no Internet access Tilsluttet men ingen internetadgang - - + + Network cable unplugged Netværkskablet er frakoblet @@ -349,12 +353,12 @@ Netværk - + Wired Network Kablet netværk - + Wired Network %1 Kablet netværk %1 @@ -387,44 +391,48 @@ - Charged Opladet - + Capacity %1, %2 min remaining Kapacitet %1, %2 minutter tilbage - - + + Capacity %1 - + Capacity %1, %2 hr %3 min remaining Kapacitet %1, %2 timer %3 minutter tilbage - - Capacity %1 .... - Kapacitet %1 .... + + Capacity 1%, fully charged + - + + Capacity %1 ... + + + + Charging %1, %2 min until full Oplader %1, %2 minutter til fuldt - - + + Charging %1 Oplader %1 - + Charging %1, %2 hr %3 min until full Oplader %1, %2 timer %3 minutter til fuldt @@ -578,12 +586,12 @@ WirelessList - + Wireless Network Trådløst netværk - + Wireless Network %1 Trådløst netværk %1 diff --git a/translations/dde-dock_de.ts b/translations/dde-dock_de.ts index d99ef8f50..c64bfc1af 100644 --- a/translations/dde-dock_de.ts +++ b/translations/dde-dock_de.ts @@ -49,10 +49,14 @@ - Bluetooth Bluetooth + + + Turned off + + BluetoothPlugin @@ -168,67 +172,67 @@ DockSettings - + Fashion Mode Design-Modus - + Efficient Mode Leistungs-Modus - + Top Oben - + Bottom Unten - + Left Links - + Right Rechts - + Keep Shown Angezeigt lassen - + Keep Hidden Ausgeblendet lassen - + Smart Hide Intelligentes Ausblenden - + Mode Modus - + Location Ort - + Status Status - + Plugins Plugins @@ -258,85 +262,85 @@ NetworkItem - + Wireless connection Drahtlosverbindung - + Wired connection Kabelgebundene Verbindung - + Disable wired connection Kabelgebundene Verbindung deaktivieren - + Enable wired connection Kabelgebundene Verbindung aktivieren - + Disable wireless connection Drahtlosverbindung deaktivieren - + Enable wireless connection Drahtlosverbindung aktivieren - + Disable network Netzwerk deaktivieren - + Enable network Netzwerk aktivieren - + Network settings Netzwerkeinstellungen - + Device disabled Gerät deaktiviert - - + + Wireless connection: %1 Drahtlosverbindung: %1 - - + + Wired connection: %1 Kabelgebundene Verbindung: %1 - + Not connected Nicht verbunden - + Connecting Verbindungsaufbau - + Connected but no Internet access Verbunden, aber kein Internetzugang - - + + Network cable unplugged Netzwerkkabel abgezogen @@ -349,12 +353,12 @@ Netzwerk - + Wired Network Kabelgebundenes Netzwerk - + Wired Network %1 Kabelgebundenes Netzwerk %1 @@ -387,44 +391,48 @@ - Charged Aufgeladen - + Capacity %1, %2 min remaining Kapazität %1, %2 Min. verbleibend - - + + Capacity %1 Kapazität %1 - + Capacity %1, %2 hr %3 min remaining Kapazität %1, %2 Std. %3 Min. verbleibend - - Capacity %1 .... - Kapazität %1 .... + + Capacity 1%, fully charged + - + + Capacity %1 ... + + + + Charging %1, %2 min until full %1 wird aufgeladen, %2 Min. bis vollständig geladen - - + + Charging %1 %1 wird aufgeladen - + Charging %1, %2 hr %3 min until full %1 wird aufgeladen, %2 Std. %3 Min. bis vollständig geladen @@ -578,12 +586,12 @@ WirelessList - + Wireless Network Drahtlosnetzwerk - + Wireless Network %1 Drahtlosnetzwerk %1 diff --git a/translations/dde-dock_es.ts b/translations/dde-dock_es.ts index 39a52dd0d..9bf3b0cfc 100644 --- a/translations/dde-dock_es.ts +++ b/translations/dde-dock_es.ts @@ -49,10 +49,14 @@ - Bluetooth Bluetooth + + + Turned off + Apagado + BluetoothPlugin @@ -168,67 +172,67 @@ DockSettings - + Fashion Mode Modo elegante - + Efficient Mode Modo eficiente - + Top Arriba - + Bottom Abajo - + Left Izquierda - + Right Derecha - + Keep Shown Mantener visible - + Keep Hidden Mantener oculto - + Smart Hide Ocultado inteligente - + Mode Modo - + Location Ubicación - + Status Estado - + Plugins Complementos @@ -258,85 +262,85 @@ NetworkItem - + Wireless connection Conexión inalámbrica - + Wired connection Conexión cableada - + Disable wired connection Deshabilitar conexión cableada - + Enable wired connection Habilitar conexión cableada - + Disable wireless connection Deshabilitar conexión inalámbrica - + Enable wireless connection Habilitar conexión inalámbrica - + Disable network Deshabilitar red - + Enable network Habilitar red - + Network settings Ajustes de red - + Device disabled Dispositivo deshabilitado - - + + Wireless connection: %1 Conexión inalámbrica: %1 - - + + Wired connection: %1 Conexión cableada: %1 - + Not connected No conectado - + Connecting Conectando - + Connected but no Internet access Conectado pero sin acceso a internet - - + + Network cable unplugged Cable de red desconectado @@ -349,12 +353,12 @@ Red - + Wired Network Red cableada - + Wired Network %1 Red cableada %1 @@ -387,44 +391,48 @@ - Charged Cargada - + Capacity %1, %2 min remaining Capacidad %1, %2 min restante - - + + Capacity %1 Capacidad %1 - + Capacity %1, %2 hr %3 min remaining Capacidad %1, %2 h %3 min restante - - Capacity %1 .... - Capacidad %1 .... + + Capacity 1%, fully charged + - + + Capacity %1 ... + + + + Charging %1, %2 min until full Cargando %1, %2 min para completarse - - + + Charging %1 Cargando %1 - + Charging %1, %2 hr %3 min until full Cargando %1, %2 h %3 min para completarse @@ -578,12 +586,12 @@ WirelessList - + Wireless Network Red inalámbrica - + Wireless Network %1 Red inalámbrica %1 diff --git a/translations/dde-dock_fi.ts b/translations/dde-dock_fi.ts index 7339ca865..dfcb05159 100644 --- a/translations/dde-dock_fi.ts +++ b/translations/dde-dock_fi.ts @@ -25,12 +25,12 @@ Turn off - Virta poikki + Poista käytöstä Turn on - Virta päälle + Kytke käyttöön @@ -49,10 +49,14 @@ - Bluetooth Bluetooth + + + Turned off + Pois päältä + BluetoothPlugin @@ -168,67 +172,67 @@ DockSettings - + Fashion Mode Keskitetty - + Efficient Mode Alavalikko - + Top Ylös - + Bottom Alas - + Left Vasen - + Right Oikea - + Keep Shown Näytä aina - + Keep Hidden Piilotta paneeli - + Smart Hide Piilota automaattisesti - + Mode Tila - + Location Sijainti - + Status Näytä - + Plugins Lisäosat @@ -258,85 +262,85 @@ NetworkItem - + Wireless connection Langaton yhteys - + Wired connection Yhteys kaapelilla - + Disable wired connection Poista kiinteä yhteys - + Enable wired connection Kytke kiinteä yhteys - + Disable wireless connection Poista langaton käytöstä - + Enable wireless connection Kytke langaton käyttöön - + Disable network Poista verkko käytöstä - + Enable network Kytke verkko käyttöön - + Network settings Verkon asetukset - + Device disabled Laite suljettu - - + + Wireless connection: %1 Langaton yhteys: %1 - - + + Wired connection: %1 Kaapeli kytketty: %1 - + Not connected Ei yhteyttä - + Connecting Yhdistää - + Connected but no Internet access Yhdistetty, mutta ei internet osoitetta - - + + Network cable unplugged Verkkokaapeli irrotettu @@ -349,12 +353,12 @@ Verkko - + Wired Network Kaapeli - + Wired Network %1 Kaapeli %1 @@ -387,44 +391,48 @@ - Charged Ladattu - + Capacity %1, %2 min remaining Akku %1, %2 min jäljellä - - + + Capacity %1 Varaus %1 - + Capacity %1, %2 hr %3 min remaining Akku %1, %2 t %3 min jäljellä - - Capacity %1 .... - Jäljellä %1 .... + + Capacity 1%, fully charged + Varaus 1%, täyteen ladattu - + + Capacity %1 ... + Varaus %1 ... + + + Charging %1, %2 min until full Lataa %1, %2 min täyteen - - + + Charging %1 Ladataan: %1 - + Charging %1, %2 hr %3 min until full Lataa %1, %2 t %3 min täyteen @@ -578,12 +586,12 @@ WirelessList - + Wireless Network Langaton verkko - + Wireless Network %1 Langaton verkko: %1 diff --git a/translations/dde-dock_fr.ts b/translations/dde-dock_fr.ts index a80209059..65125312b 100644 --- a/translations/dde-dock_fr.ts +++ b/translations/dde-dock_fr.ts @@ -49,10 +49,14 @@ - Bluetooth Bluetooth + + + Turned off + + BluetoothPlugin @@ -168,67 +172,67 @@ DockSettings - + Fashion Mode Mode dock - + Efficient Mode Mode étendu - + Top Haut - + Bottom Bas - + Left Gauche - + Right Droite - + Keep Shown Maintenir affiché - + Keep Hidden Maintenir caché - + Smart Hide Masquage intelligemment - + Mode Mode - + Location Emplacement - + Status Statut - + Plugins Extensions @@ -258,85 +262,85 @@ NetworkItem - + Wireless connection Connexion sans fil - + Wired connection Connexion filaire - + Disable wired connection Désactiver la connexion filaire - + Enable wired connection Activer la connexion filaire - + Disable wireless connection Désactiver la connexion sans fil - + Enable wireless connection Activer la connexion sans fil - + Disable network Désactiver le réseau - + Enable network Activer le réseau - + Network settings Paramètres réseau - + Device disabled Périphérique désactivé - - + + Wireless connection: %1 Connexion sans fil: %1 - - + + Wired connection: %1 Connexion filaire: %1 - + Not connected Non connecté - + Connecting Connexion - + Connected but no Internet access Connecté mais pas d’accès internet - - + + Network cable unplugged Câble réseau débranché @@ -349,12 +353,12 @@ Réseau - + Wired Network Réseau filaire - + Wired Network %1 Réseau filaire %1 @@ -387,44 +391,48 @@ - Charged Chargé - + Capacity %1, %2 min remaining Capacité: %1, %2 minutes restantes - - + + Capacity %1 Capacité %1 - + Capacity %1, %2 hr %3 min remaining Capacité: %1, %2 heures et %3 minutes restantes - - Capacity %1 .... - Capacité %1.... + + Capacity 1%, fully charged + - + + Capacity %1 ... + + + + Charging %1, %2 min until full En charge %1, %2 minutes avant la charge complète - - + + Charging %1 En charge %1 - + Charging %1, %2 hr %3 min until full En charge %1, %2 heures et %3 minutes avant la charge complète @@ -578,12 +586,12 @@ WirelessList - + Wireless Network Réseau sans fil - + Wireless Network %1 Réseau sans fil %1 diff --git a/translations/dde-dock_hr.ts b/translations/dde-dock_hr.ts index e6dd7f434..214a2d798 100644 --- a/translations/dde-dock_hr.ts +++ b/translations/dde-dock_hr.ts @@ -49,10 +49,14 @@ - Bluetooth Bluetooth + + + Turned off + + BluetoothPlugin @@ -168,67 +172,67 @@ DockSettings - + Fashion Mode Popularan način - + Efficient Mode Efikasan način - + Top Gore - + Bottom Dolje - + Left Lijevo - + Right Desno - + Keep Shown Drži prikazano - + Keep Hidden Drži skriveno - + Smart Hide Pametno skrivanje - + Mode Način - + Location Lokacija - + Status Status - + Plugins Priključci @@ -258,85 +262,85 @@ NetworkItem - + Wireless connection Bežično povezivanje - + Wired connection Žično povezivanje - + Disable wired connection Onemogući žično povezivanje - + Enable wired connection Omogući žično povezivanje - + Disable wireless connection Onemogući bežično povezivaqnje - + Enable wireless connection Omogući bežično povezivanje - + Disable network Onemogući mrežu - + Enable network Omogući mrežu - + Network settings Mrežne postavke - + Device disabled Uređaj je onemogućen - - + + Wireless connection: %1 Bežična veza: %1 - - + + Wired connection: %1 Žična veza: %1 - + Not connected Nije spojeno - + Connecting Povezujem se - + Connected but no Internet access Spojen ali nema pristupa internetu - - + + Network cable unplugged Mrežni kabel je isključen @@ -349,12 +353,12 @@ Mreža - + Wired Network Žična mreža - + Wired Network %1 Žična mreža %1 @@ -387,44 +391,48 @@ - Charged Napunjeno - + Capacity %1, %2 min remaining Kapacitet %1, %2 min preostalo - - + + Capacity %1 Kapacitet %1 - + Capacity %1, %2 hr %3 min remaining Kapacitet %1, %2 hr %3 min preostalo - - Capacity %1 .... - Kapacitet %1... + + Capacity 1%, fully charged + - + + Capacity %1 ... + + + + Charging %1, %2 min until full Punim %1, %2 min dok ne bude potpuno pun - - + + Charging %1 Punjenje %1 - + Charging %1, %2 hr %3 min until full Punim %1, %2 hr %3 min dok ne bude potpuno pun @@ -578,12 +586,12 @@ WirelessList - + Wireless Network Bežična mreža - + Wireless Network %1 Bežična mreža %1 diff --git a/translations/dde-dock_it.ts b/translations/dde-dock_it.ts index 8ddb4a953..65d56ed8b 100644 --- a/translations/dde-dock_it.ts +++ b/translations/dde-dock_it.ts @@ -49,10 +49,14 @@ - Bluetooth Bluetooth + + + Turned off + Disattivato + BluetoothPlugin @@ -168,67 +172,67 @@ DockSettings - + Fashion Mode Fashion - + Efficient Mode Efficient - + Top Sopra - + Bottom Sotto - + Left Sinistra - + Right Destra - + Keep Shown Mostra sempre - + Keep Hidden Lascia nascosta - + Smart Hide Nascondi automaticamente - + Mode Modalità - + Location Posizione - + Status Comportamento - + Plugins Plugin @@ -258,85 +262,85 @@ NetworkItem - + Wireless connection Connessione WiFi - + Wired connection Connessione cablata - + Disable wired connection Disattiva connessione cablata - + Enable wired connection Attiva connessione cablata - + Disable wireless connection Disattiva connessione WiFi - + Enable wireless connection Attiva connessione WiFi - + Disable network Disabilita Rete - + Enable network Abilita Rete - + Network settings Impostazioni Rete - + Device disabled Dispositivo disattivato - - + + Wireless connection: %1 Connessione WiFi: %1 - - + + Wired connection: %1 Connessione cablata: %1 - + Not connected Non connesso - + Connecting Connessione in corso - + Connected but no Internet access Connesso senza accesso ad internet - - + + Network cable unplugged Cavo di rete scollegato @@ -349,12 +353,12 @@ Rete - + Wired Network Connessione cablata - + Wired Network %1 Connessione cablata %1 @@ -387,44 +391,48 @@ - Charged Carico - + Capacity %1, %2 min remaining Carica %1, %2 min. rimanenti - - + + Capacity %1 Carica %1 - + Capacity %1, %2 hr %3 min remaining Carica %1, %2 ore e %3 min. rimanenti - - Capacity %1 .... - Carica %1 ... + + Capacity 1%, fully charged + - + + Capacity %1 ... + + + + Charging %1, %2 min until full Carica %1, %2 min. per la carica completa - - + + Charging %1 In carica %1 - + Charging %1, %2 hr %3 min until full Carica %1, %2 ore e %3 min. per la carica completa @@ -578,12 +586,12 @@ WirelessList - + Wireless Network Rete wireless - + Wireless Network %1 Rete wireless %1 diff --git a/translations/dde-dock_ko.ts b/translations/dde-dock_ko.ts index 624ec3925..088bc4271 100644 --- a/translations/dde-dock_ko.ts +++ b/translations/dde-dock_ko.ts @@ -49,10 +49,14 @@ - Bluetooth 블루투스 + + + Turned off + + BluetoothPlugin @@ -168,67 +172,67 @@ DockSettings - + Fashion Mode 유행 모드 - + Efficient Mode 능률 모드 - + Top 상단 - + Bottom 하단 - + Left 왼쪽 - + Right 오른쪽 - + Keep Shown 표시된 상태로 유지 - + Keep Hidden 숨겨진 상태로 유지 - + Smart Hide 스마트 숨기기 - + Mode 모드 - + Location 위치 - + Status 상태 - + Plugins 플러그인 @@ -258,85 +262,85 @@ NetworkItem - + Wireless connection 무선 연결 - + Wired connection 유선 연결 - + Disable wired connection 유선 연결 사용안함 - + Enable wired connection 유선 연결 사용가능 - + Disable wireless connection 무선 연결 사용안함 - + Enable wireless connection 무선 연결 사용가능 - + Disable network 네트워크 사용안함 - + Enable network 네트워크 사용 - + Network settings 네트워크 설정 - + Device disabled 디바이스 사용해제됨 - - + + Wireless connection: %1 무선 연결: %1 - - + + Wired connection: %1 유선 연결: %1 - + Not connected 연결되지 않음 - + Connecting 연결 중 - + Connected but no Internet access 연결됨, 인터넷 없음 - - + + Network cable unplugged 네트워크 케이블 제거됨 @@ -349,12 +353,12 @@ 네트워크 - + Wired Network 유선 네트워크 - + Wired Network %1 유선 네트워크 %1 @@ -387,44 +391,48 @@ - Charged 충전됨 - + Capacity %1, %2 min remaining 용량 %1, %2분 남음 - - + + Capacity %1 - + Capacity %1, %2 hr %3 min remaining 용량 %1, %2시간 %3분 남음 - - Capacity %1 .... - 용량 %1 .... + + Capacity 1%, fully charged + - + + Capacity %1 ... + + + + Charging %1, %2 min until full %1 충전중, 완전 충전까지 %2분 남음 - - + + Charging %1 %1 충전중 - + Charging %1, %2 hr %3 min until full %1 충전중, 완전 충전까지 %2시간 %3분 남음 @@ -578,12 +586,12 @@ WirelessList - + Wireless Network 무선 네트워크 - + Wireless Network %1 무선 네트워크 %1 diff --git a/translations/dde-dock_lt.ts b/translations/dde-dock_lt.ts index e802c17dc..520e6213f 100644 --- a/translations/dde-dock_lt.ts +++ b/translations/dde-dock_lt.ts @@ -49,10 +49,14 @@ - Bluetooth Bluetooth + + + Turned off + + BluetoothPlugin @@ -168,67 +172,67 @@ DockSettings - + Fashion Mode Madinga veiksena - + Efficient Mode Efektyvi veiksena - + Top Viršus - + Bottom Apačia - + Left Kairė - + Right Dešinė - + Keep Shown Laikyti rodomą - + Keep Hidden Laikyti paslėptą - + Smart Hide Išmaniai slėpti - + Mode Veiksena - + Location Vieta - + Status Būsena - + Plugins Įskiepiai @@ -258,85 +262,85 @@ NetworkItem - + Wireless connection Belaidis ryšys - + Wired connection Laidinis ryšys - + Disable wired connection Išjungti laidinį ryšį - + Enable wired connection Įjungti laidinį ryšį - + Disable wireless connection Išjungti belaidį ryšį - + Enable wireless connection Įjungti belaidį ryšį - + Disable network Išjungti tinklą - + Enable network Įjungti tinklą - + Network settings Tinklo nustatymai - + Device disabled Įrenginys išjungtas - - + + Wireless connection: %1 Belaidis ryšys: %1 - - + + Wired connection: %1 Laidinis ryšys: %1 - + Not connected Neprijungta - + Connecting Jungiamasi - + Connected but no Internet access Prisijungta, bet nėra prieigos prie interneto - - + + Network cable unplugged Atjungtas tinklo laidas @@ -349,12 +353,12 @@ Tinklas - + Wired Network Laidinis tinklas - + Wired Network %1 Laidinis tinklas %1 @@ -387,44 +391,48 @@ - Charged Įkrauta - + Capacity %1, %2 min remaining Talpa %1, liko %2 min. - - + + Capacity %1 - + Capacity %1, %2 hr %3 min remaining Talpa %1, liko %2 val. %3 min. - - Capacity %1 .... - Talpa %1 .... + + Capacity 1%, fully charged + - + + Capacity %1 ... + + + + Charging %1, %2 min until full Įkraunama %1, iki pilnos liko %2 min. - - + + Charging %1 Įkraunama %1 - + Charging %1, %2 hr %3 min until full Įkraunama %1, iki pilnos liko %2 val. %3 min. @@ -578,12 +586,12 @@ WirelessList - + Wireless Network Belaidis tinklas - + Wireless Network %1 Belaidis tinklas %1 diff --git a/translations/dde-dock_ms.ts b/translations/dde-dock_ms.ts index c397cfdab..11d0839aa 100644 --- a/translations/dde-dock_ms.ts +++ b/translations/dde-dock_ms.ts @@ -49,10 +49,14 @@ - Bluetooth Bluetooth + + + Turned off + + BluetoothPlugin @@ -168,67 +172,67 @@ DockSettings - + Fashion Mode Mod Berfesyen - + Efficient Mode Mod Efisyen - + Top Teratas - + Bottom Bawah - + Left Kiri - + Right Kanan - + Keep Shown Kekal Ditunjukkan - + Keep Hidden Kekal Tersembunyi - + Smart Hide Sembunyi Pintar - + Mode Mod - + Location Lokasi - + Status Status - + Plugins Pemalam @@ -258,85 +262,85 @@ NetworkItem - + Wireless connection - + Wired connection - + Disable wired connection - + Enable wired connection - + Disable wireless connection - + Enable wireless connection - + Disable network Lumpuhkan rangkaian - + Enable network Benarkan rangkaian - + Network settings Tetapan rangkaian - + Device disabled Peranti dilumpuhkan - - + + Wireless connection: %1 Sambungan tanpa wayar: %1 - - + + Wired connection: %1 Sambungan berwayar: %1 - + Not connected Tidak bersambung - + Connecting Menyambung - + Connected but no Internet access Bersambung tetapi tiada capaian Internet - - + + Network cable unplugged Kabel rangkaian telah dicabut @@ -349,12 +353,12 @@ Rangkaian - + Wired Network Rangkaian Berwayar - + Wired Network %1 Rangkaian Berwayar %1 @@ -387,44 +391,48 @@ - Charged Dicas - + Capacity %1, %2 min remaining Kapasiti %1, %2 min berbaki - - + + Capacity %1 - + Capacity %1, %2 hr %3 min remaining Kapasiti %1, %2 j %3 min berbaki - - Capacity %1 .... + + Capacity 1%, fully charged - + + Capacity %1 ... + + + + Charging %1, %2 min until full Mengecas %1, %2 min sehingga penuh - - + + Charging %1 Mengecas %1 - + Charging %1, %2 hr %3 min until full Mengecas %1, %2 j %3 min sehingga penuh @@ -578,12 +586,12 @@ WirelessList - + Wireless Network Rangkaian Tanpa Wayar - + Wireless Network %1 Sambungan Tanpa Wayar %1 diff --git a/translations/dde-dock_pl.ts b/translations/dde-dock_pl.ts index 314c5bc58..56682f945 100644 --- a/translations/dde-dock_pl.ts +++ b/translations/dde-dock_pl.ts @@ -40,19 +40,23 @@ %1 connected - + Podłączono %1 Connecting... - + Łączenie... - Bluetooth Bluetooth + + + Turned off + Wyłączony + BluetoothPlugin @@ -168,67 +172,67 @@ DockSettings - + Fashion Mode Tryb modny - + Efficient Mode Tryb wydajny - + Top Góra - + Bottom Dół - + Left Do lewej - + Right Do prawej - + Keep Shown Zawsze wyświetlaj - + Keep Hidden Zawsze ukrywaj - + Smart Hide Mądre ukrywanie - + Mode Tryb - + Location Położenie - + Status Stan - + Plugins Wtyczki @@ -258,85 +262,85 @@ NetworkItem - + Wireless connection Połączenie bezprzewodowe - + Wired connection Połączenie przewodowe - + Disable wired connection Wyłącz połączenie przewodowe - + Enable wired connection Włącz połączenie przewodowe - + Disable wireless connection Wyłącz połączenie bezprzewodowe - + Enable wireless connection Włącz połączenie bezprzewodowe - + Disable network Wyłącz sieć - + Enable network Włącz sieć - + Network settings Ustawienia sieci - + Device disabled Urządzenie jest wyłączone - - + + Wireless connection: %1 Połączenie bezprzewodowe: %1 - - + + Wired connection: %1 Połączenie przewodowe: %1 - + Not connected Brak połączenia - + Connecting Łączenie - + Connected but no Internet access Połączono, ale brak dostępu do Internetu - - + + Network cable unplugged Kabel sieciowy jest odłączony @@ -349,12 +353,12 @@ Sieć - + Wired Network Sieć przewodowa - + Wired Network %1 Sieć przewodowa %1 @@ -387,44 +391,48 @@ - Charged Naładowana - + Capacity %1, %2 min remaining Poziom: %1, pozostało: %2min - - + + Capacity %1 Pojemność %1 - + Capacity %1, %2 hr %3 min remaining Poziom: %1, pozostało: %2:%3 - - Capacity %1 .... - Pojemność %1 .... + + Capacity 1%, fully charged + - + + Capacity %1 ... + + + + Charging %1, %2 min until full Ładowanie %1, %2min do końca - - + + Charging %1 Ładowanie %1 - + Charging %1, %2 hr %3 min until full Ładowanie %1, %2:%3 do końca @@ -578,12 +586,12 @@ WirelessList - + Wireless Network Sieć bezprzewodowa - + Wireless Network %1 Sieć bezprzewodowa %1 diff --git a/translations/dde-dock_pt.ts b/translations/dde-dock_pt.ts index 4047f6691..3e3a36d4b 100644 --- a/translations/dde-dock_pt.ts +++ b/translations/dde-dock_pt.ts @@ -49,10 +49,14 @@ - Bluetooth Bluetooth + + + Turned off + Desligado + BluetoothPlugin @@ -168,67 +172,67 @@ DockSettings - + Fashion Mode Modo Elegante - + Efficient Mode Modo Eficiente - + Top Superior - + Bottom Inferior - + Left Esquerda - + Right Direita - + Keep Shown Manter visível - + Keep Hidden Manter oculta - + Smart Hide Ocultar inteligente - + Mode Modo - + Location Localização - + Status Estado - + Plugins Plugins @@ -258,85 +262,85 @@ NetworkItem - + Wireless connection Ligação sem fios - + Wired connection Ligação por cabo - + Disable wired connection Desativar ligação por cabo - + Enable wired connection Ativar ligação por cabo - + Disable wireless connection Desativar ligação sem fios - + Enable wireless connection Ativar ligação sem fios - + Disable network Desativar rede - + Enable network Ativar rede - + Network settings Definições de rede - + Device disabled Dispositivo desativado - - + + Wireless connection: %1 Ligação sem fios: %1 - - + + Wired connection: %1 Ligação por cabo: %1 - + Not connected Desligado - + Connecting A ligar - + Connected but no Internet access Ligado mas sem acesso à Internet - - + + Network cable unplugged Cabo de rede desligado @@ -349,12 +353,12 @@ Rede - + Wired Network Rede por cabo - + Wired Network %1 Rede por cabo %1 @@ -387,44 +391,48 @@ - Charged Carregado - + Capacity %1, %2 min remaining Capacidade %1, %2 min restantes - - + + Capacity %1 Capacidade %1 - + Capacity %1, %2 hr %3 min remaining Capacidade %1, %2 hr %3 min restantes - - Capacity %1 .... - Capacidade %1 .... + + Capacity 1%, fully charged + Capacidade 1%, totalmente carregada - + + Capacity %1 ... + Capacidade %1 ... + + + Charging %1, %2 min until full A carregar %1, %2 min até ficar carregada - - + + Charging %1 A carregar %1 - + Charging %1, %2 hr %3 min until full A carregar %1, %2 hr %3 min até ficar carregada @@ -578,12 +586,12 @@ WirelessList - + Wireless Network Rede sem fios - + Wireless Network %1 Rede sem fios %1 diff --git a/translations/dde-dock_pt_BR.ts b/translations/dde-dock_pt_BR.ts index 194bc967b..66371ec1e 100644 --- a/translations/dde-dock_pt_BR.ts +++ b/translations/dde-dock_pt_BR.ts @@ -49,10 +49,14 @@ - Bluetooth Bluetooth + + + Turned off + Desativado + BluetoothPlugin @@ -168,67 +172,67 @@ DockSettings - + Fashion Mode Modo Fashion - + Efficient Mode Modo Eficiente - + Top Superior - + Bottom Inferior - + Left Esquerda - + Right Direita - + Keep Shown Sempre Exibir - + Keep Hidden Sempre Ocultar - + Smart Hide Ocultar Inteligente - + Mode Modo - + Location Posição - + Status Estado - + Plugins Complementos @@ -258,85 +262,85 @@ NetworkItem - + Wireless connection Conexão Wi-Fi - + Wired connection Conexão Cabeada - + Disable wired connection Desativar a conexão cabeada - + Enable wired connection Ativar a conexão cabeada - + Disable wireless connection Desativar a conexão Wi-Fi - + Enable wireless connection Ativar a conexão Wi-Fi - + Disable network Desativar rede - + Enable network Ativar rede - + Network settings Configurações de rede - + Device disabled Dispositivo desativado - - + + Wireless connection: %1 Conexão Wi-Fi: %1 - - + + Wired connection: %1 Conexão Cabeada: %1 - + Not connected Não conectado - + Connecting Conectando - + Connected but no Internet access Conectado, sem Internet - - + + Network cable unplugged Cabo de rede desconectado @@ -349,12 +353,12 @@ Rede - + Wired Network Rede Cabeada - + Wired Network %1 Rede Cabeada %1 @@ -387,44 +391,48 @@ - Charged Carregado - + Capacity %1, %2 min remaining %1 Carregado - %2m restantes - - + + Capacity %1 %1 Carregado - + Capacity %1, %2 hr %3 min remaining %1 Carregado - %2h%3 restantes - - Capacity %1 .... - %1 Carregado + + Capacity 1%, fully charged + Capacidade %1, totalmente carregada - + + Capacity %1 ... + Capacidade %1 ... + + + Charging %1, %2 min until full Carregando %1 - %2m até completar - - + + Charging %1 Carregando %1 - + Charging %1, %2 hr %3 min until full Carregando %1 - %2h%3 até completar @@ -578,12 +586,12 @@ WirelessList - + Wireless Network Rede Wi-Fi - + Wireless Network %1 Rede Wi-Fi %1 diff --git a/translations/dde-dock_ro.ts b/translations/dde-dock_ro.ts index b97448854..06789f0f2 100644 --- a/translations/dde-dock_ro.ts +++ b/translations/dde-dock_ro.ts @@ -49,10 +49,14 @@ - Bluetooth Bluetooth + + + Turned off + + BluetoothPlugin @@ -168,67 +172,67 @@ DockSettings - + Fashion Mode Mod aspectuos - + Efficient Mode Mod eficient - + Top Sus - + Bottom Jos - + Left Stânga - + Right Dreapta - + Keep Shown Păstrați docul afișat - + Keep Hidden Păstrați docul ascuns - + Smart Hide Ascundere inteligentă - + Mode Mod - + Location Locație - + Status Stare - + Plugins Extensii @@ -258,85 +262,85 @@ NetworkItem - + Wireless connection Conexiune fără fir - + Wired connection Conexiune prin cablu - + Disable wired connection Dezactivați conexiunea prin cablu - + Enable wired connection Activați conexiunea prin cablu - + Disable wireless connection Dezactivați conexiunea fără fir - + Enable wireless connection Activați conexiunea fără fir - + Disable network Dezactivați conexiunea la rețea - + Enable network Activați rețeaua - + Network settings Configurări de rețea - + Device disabled Dispozitiv Dezactivat - - + + Wireless connection: %1 Conexiune fără fir: %1 - - + + Wired connection: %1 Conexiune prin cablu: %1 - + Not connected Neconectat - + Connecting Conectare - + Connected but no Internet access Conectat dar fară acces Internet - - + + Network cable unplugged Cablu Reţea Deconectat @@ -349,12 +353,12 @@ Reţea - + Wired Network Rețea conectată - + Wired Network %1 Rețea Cablu %1 @@ -387,44 +391,48 @@ - Charged - + Capacity %1, %2 min remaining Capacitate %1, %2 Min rămase - - + + Capacity %1 - + Capacity %1, %2 hr %3 min remaining Capacitate %1, %2 Ore %3 Min rămase - - Capacity %1 .... - Capactitate %1 .... + + Capacity 1%, fully charged + - + + Capacity %1 ... + + + + Charging %1, %2 min until full Încărcare %1, %2 Min până la plin - - + + Charging %1 Se încarcă %1 - + Charging %1, %2 hr %3 min until full Încărcare %1, %2 Ore %3 Min rămase până la plin @@ -578,12 +586,12 @@ WirelessList - + Wireless Network Rețea fără fir - + Wireless Network %1 Rețea fără fir %1 diff --git a/translations/dde-dock_ru.ts b/translations/dde-dock_ru.ts index c20b8bd30..153e54ed4 100644 --- a/translations/dde-dock_ru.ts +++ b/translations/dde-dock_ru.ts @@ -49,10 +49,14 @@ - Bluetooth Bluetooth + + + Turned off + Выключен + BluetoothPlugin @@ -168,67 +172,67 @@ DockSettings - + Fashion Mode Современный Режим - + Efficient Mode Эффективный Режим - + Top Сверху - + Bottom Снизу - + Left Слева - + Right Справа - + Keep Shown Отображать Всегда - + Keep Hidden Держать Скрытым - + Smart Hide Умное Скрытие - + Mode Режим - + Location Местонахождение - + Status Статус - + Plugins Плагины @@ -258,85 +262,85 @@ NetworkItem - + Wireless connection Беспроводное соединение - + Wired connection Проводное соединение - + Disable wired connection Отключить проводное соединение - + Enable wired connection Включить проводное соединение - + Disable wireless connection Отключить проводное соединение - + Enable wireless connection Включить проводное соединение - + Disable network Отключить сеть - + Enable network Включить сеть - + Network settings Настройки сети - + Device disabled Устройство отключено - - + + Wireless connection: %1 Беспроводное соединение: %1 - - + + Wired connection: %1 Проводное подключение к: %1 - + Not connected Не подключено - + Connecting Соединение - + Connected but no Internet access Подключено, без доступа к Интернету - - + + Network cable unplugged Сетевой кабель отключен @@ -349,12 +353,12 @@ Сеть - + Wired Network Проводная Сеть - + Wired Network %1 Проводная Сеть %1 @@ -387,44 +391,48 @@ - Charged Заряжен - + Capacity %1, %2 min remaining Емкость %1, %2 мин. осталось - - + + Capacity %1 Объем %1 - + Capacity %1, %2 hr %3 min remaining Емкость %1, %2 час. %3 мин. осталось - - Capacity %1 .... - Вместимость %1 .... + + Capacity 1%, fully charged + - + + Capacity %1 ... + + + + Charging %1, %2 min until full Зарядка %1, %2 мин. до полной зарядки - - + + Charging %1 Заряжается %1 - + Charging %1, %2 hr %3 min until full Зарядка %1, %2 час. %3 мин. до полной зарядки @@ -578,12 +586,12 @@ WirelessList - + Wireless Network Беспроводная Сеть - + Wireless Network %1 Беспроводная Сеть %1 diff --git a/translations/dde-dock_si.ts b/translations/dde-dock_si.ts index 4708f2ed0..8617ab3f9 100644 --- a/translations/dde-dock_si.ts +++ b/translations/dde-dock_si.ts @@ -49,10 +49,14 @@ - Bluetooth බ්ලූටූත් + + + Turned off + වසා දමා ඇත + BluetoothPlugin @@ -168,67 +172,67 @@ DockSettings - + Fashion Mode විචිත්‍ර ආකාරය - + Efficient Mode කාර්යක්ෂම ආකාරය - + Top ඉහළ - + Bottom පහළ - + Left වම - + Right දකුණ - + Keep Shown පෙනීමට සලස්වා තබන්න - + Keep Hidden සඟවා තබන්න - + Smart Hide ගැලපෙන ආකාරයට සඟවන්න - + Mode ආකාරය - + Location පිහිටුම - + Status තත්ත්වය - + Plugins ආධාරක යෙදවුම් @@ -258,85 +262,85 @@ NetworkItem - + Wireless connection රැහැන් රහිත සම්බන්ධතාවය - + Wired connection රැහැන් සම්බන්ධතාවය - + Disable wired connection රැහැන් සම්බන්ධතාවය අක්‍රීය කරන්න - + Enable wired connection රැහැන් සම්බන්ධතාවය සක්‍රීය කරන්න - + Disable wireless connection රැහැන් රහිත සම්බන්ධතාවය අක්‍රීය කරන්න - + Enable wireless connection රැහැන් රහිත සම්බන්ධතාවය සක්‍රීය කරන්න - + Disable network ජාලය අක්‍රීය කරන්න - + Enable network ජාලය සක්‍රීය කරන්න - + Network settings ජාල සැකසුම් - + Device disabled උපාංගය අක්‍රීය කර ඇත - - + + Wireless connection: %1 රැහැන් රහිත සම්බන්ධතාවය: %1 - - + + Wired connection: %1 රැහැන් සම්බන්ධතාවය: %1 - + Not connected සම්බන්ධතා නොමැත - + Connecting සම්බන්ධ වෙමින් පවතී - + Connected but no Internet access ජාලගතව ඇතත් අන්තර්ජාල ප්‍රවේශය නොමැත - - + + Network cable unplugged ජාල කේබලය විසන්ධි කර ඇත @@ -349,12 +353,12 @@ ජාලය - + Wired Network රැහැන්ගත ජාලය - + Wired Network %1 රැහැන්ගත ජාලය %1 @@ -387,44 +391,48 @@ - Charged ආරෝපිතයි - + Capacity %1, %2 min remaining ධාරිතාව %1, මිනිත්තු %2 ක් ඉතිරි වී ඇත - - + + Capacity %1 ධාරිතාවය %1 - + Capacity %1, %2 hr %3 min remaining ධාරිතාව %1, පැය %2 මිනිත්තු %3 ක් ඉතිරි වී ඇත - - Capacity %1 .... - ධාරිතාවය %1 .... + + Capacity 1%, fully charged + - + + Capacity %1 ... + + + + Charging %1, %2 min until full %1 ආරෝපණය වෙමින්, සම්පූර්ණ විමට මිනිත්තු %2 - - + + Charging %1 %1 ආරෝපණය වෙමින් - + Charging %1, %2 hr %3 min until full %1 ආරෝපණය වෙමින්, සම්පූර්ණ විමට පැය %2 මිනිත්තු %3 @@ -578,14 +586,14 @@ WirelessList - + Wireless Network රැහැන් රහිත සම්බන්ධතාවය - + Wireless Network %1 - රැහැන් රහිත සම්බන්ධතාවය %1 + රැහැන් රහිත ජාලය %1 \ No newline at end of file diff --git a/translations/dde-dock_sk.ts b/translations/dde-dock_sk.ts index 6e65dd845..6f1171889 100644 --- a/translations/dde-dock_sk.ts +++ b/translations/dde-dock_sk.ts @@ -49,10 +49,14 @@ - Bluetooth Bluetooth + + + Turned off + + BluetoothPlugin @@ -168,67 +172,67 @@ DockSettings - + Fashion Mode Módny režim - + Efficient Mode Efektívny režim - + Top Hore - + Bottom Dolu - + Left Vľavo - + Right Vpravo - + Keep Shown Ponechať zobrazené - + Keep Hidden Ponechať skryté - + Smart Hide Inteligentné skrývanie - + Mode Režim - + Location Umiestnenie - + Status Stav - + Plugins Pluginy @@ -258,85 +262,85 @@ NetworkItem - + Wireless connection Bezdrôtové pripojenie - + Wired connection Káblové pripojenie - + Disable wired connection Vypnúť káblové pripojenie - + Enable wired connection Zapnúť káblové pripojenie - + Disable wireless connection Vypnúť bezdrôtové pripojenie - + Enable wireless connection Zapnúť bezdrôtové pripojenie - + Disable network Zakázať sieť - + Enable network Povoliť sieť - + Network settings Nastavenia siete - + Device disabled Zariadenie zakázané - - + + Wireless connection: %1 Bezdrôtové pripojenie: %1 - - + + Wired connection: %1 Káblové pripojenie: %1 - + Not connected Nepripojené - + Connecting Pripájanie - + Connected but no Internet access Pripojené, ale bez prístupu na internet - - + + Network cable unplugged Sieťový kábel odpojený @@ -349,12 +353,12 @@ Sieť - + Wired Network Drôtová sieť - + Wired Network %1 @@ -387,44 +391,48 @@ - Charged Nabitý - + Capacity %1, %2 min remaining Nabíjanie %1, zostávajú %2 min - - + + Capacity %1 Kapacita %1 - + Capacity %1, %2 hr %3 min remaining Nabíjanie %1, zostáva %2 hod %3 min - - Capacity %1 .... - Kapacita %1 .... + + Capacity 1%, fully charged + - + + Capacity %1 ... + + + + Charging %1, %2 min until full Nabíjanie %1, %2 min do plnej kapacity - - + + Charging %1 Nabíjanie %1 - + Charging %1, %2 hr %3 min until full Nabíjanie %1, %2 hod %3 min do plnej kapacity @@ -578,12 +586,12 @@ WirelessList - + Wireless Network Bezdrôtová sieť - + Wireless Network %1 Bezdrôtová sieť %1 diff --git a/translations/dde-dock_sq.ts b/translations/dde-dock_sq.ts index bdefbdd5c..66e37b64d 100644 --- a/translations/dde-dock_sq.ts +++ b/translations/dde-dock_sq.ts @@ -49,10 +49,14 @@ - Bluetooth Bluetooth + + + Turned off + I aktivizuar + BluetoothPlugin @@ -168,67 +172,67 @@ DockSettings - + Fashion Mode Mënyrë Moda - + Efficient Mode Mënyrë Efikase - + Top Sipër - + Bottom Në Fund - + Left Majtas - + Right Djathtas - + Keep Shown Mbaje të Shfaqur - + Keep Hidden Mbaje të Fshehur - + Smart Hide Fshehje e Mençur - + Mode Mënyrë - + Location Vendndodhje - + Status Gjendje - + Plugins Shtojca @@ -258,85 +262,85 @@ NetworkItem - + Wireless connection Lidhje pa fill - + Wired connection Lidhje me fill - + Disable wired connection Çaktivizo lidhje me fill - + Enable wired connection Aktivizo lidhje me fill - + Disable wireless connection Çaktivizo lidhje pa fill - + Enable wireless connection Aktivizo lidhje pa fill - + Disable network Çaktivizo rrjetin - + Enable network Aktivizo rrjetin - + Network settings Rregullime rrjeti - + Device disabled Pajisje e çaktivizuar - - + + Wireless connection: %1 Lidhje pa fill: %1 - - + + Wired connection: %1 Lidhje me fill: %1 - + Not connected Jo e lidhur - + Connecting Po bëhet lidhja - + Connected but no Internet access I lidhur, por pa hyrje Internet - - + + Network cable unplugged Kablloja e rrjetit është e hequr @@ -349,12 +353,12 @@ Rrjet - + Wired Network Rrjet Me Fill - + Wired Network %1 Rrjet Me Fill %1 @@ -387,44 +391,48 @@ - Charged E ngarkuar - + Capacity %1, %2 min remaining Kapacitet %1, edhe %2 min - - + + Capacity %1 Kapacitet %1 - + Capacity %1, %2 hr %3 min remaining Kapacitet %1, edhe %2 hr %3 min - - Capacity %1 .... + + Capacity 1%, fully charged + Kapacitet 1%, plotësisht e ngarkuar + + + + Capacity %1 ... Kapacitet %1 … - + Charging %1, %2 min until full Po ngarkohet %1, edhe %2 min deri sa të jetë plot - - + + Charging %1 Po ngarkohet %1 - + Charging %1, %2 hr %3 min until full Po ngarkohet %1, edhe %2 hr e %3 min deri sa të jetë plot @@ -578,12 +586,12 @@ WirelessList - + Wireless Network Rrjet Pa Fill - + Wireless Network %1 Rrjet Pa Fill %1 diff --git a/translations/dde-dock_sr.ts b/translations/dde-dock_sr.ts index c84c17f99..eb4ec7d60 100644 --- a/translations/dde-dock_sr.ts +++ b/translations/dde-dock_sr.ts @@ -49,10 +49,14 @@ - Bluetooth Блутут + + + Turned off + Искључен + BluetoothPlugin @@ -168,67 +172,67 @@ DockSettings - + Fashion Mode Модеран режим - + Efficient Mode Ефикасан режим - + Top Врх - + Bottom Дно - + Left Лево - + Right Десно - + Keep Shown Остави приказано - + Keep Hidden Остави скривено - + Smart Hide Паметно скривање - + Mode Режим - + Location Позиција - + Status Стање - + Plugins Додаци @@ -258,85 +262,85 @@ NetworkItem - + Wireless connection Бежична веза - + Wired connection Жичана веза - + Disable wired connection Искључи жичану везу - + Enable wired connection Укључи жичану везу - + Disable wireless connection Искључи бежичану везу - + Enable wireless connection Укључи бежичану везу - + Disable network Искључи мрежу - + Enable network Укључи мрежу - + Network settings Подешавање мреже - + Device disabled Уређај је онемогућен - - + + Wireless connection: %1 Бежична веза: %1 - - + + Wired connection: %1 Жичана веза: %1 - + Not connected Нисте повезани - + Connecting Повезивање - + Connected but no Internet access Повезани сте, али нема интернета - - + + Network cable unplugged Мрежни кабл је ископчан @@ -349,12 +353,12 @@ Мрежа - + Wired Network Жичана мрежа - + Wired Network %1 Жичана мрежа %1 @@ -387,44 +391,48 @@ - Charged Напуњено - + Capacity %1, %2 min remaining Ниво %1, %2 мин преостало - - + + Capacity %1 Ниво %1 - + Capacity %1, %2 hr %3 min remaining Ниво %1, %2 ч %3 мин преостало - - Capacity %1 .... - Ниво %1 .... + + Capacity 1%, fully charged + - + + Capacity %1 ... + Капацитет %1 ... + + + Charging %1, %2 min until full Пуни се %1, %2 мин преостало - - + + Charging %1 Пуни се %1 - + Charging %1, %2 hr %3 min until full Пуни се %1, %2 ч %3 мин преостало @@ -578,12 +586,12 @@ WirelessList - + Wireless Network Бежична мрежа - + Wireless Network %1 Бежична мрежа %1 diff --git a/translations/dde-dock_tr.ts b/translations/dde-dock_tr.ts index df78be967..e52cc384a 100644 --- a/translations/dde-dock_tr.ts +++ b/translations/dde-dock_tr.ts @@ -49,10 +49,14 @@ - Bluetooth Bluetooth + + + Turned off + Kapat + BluetoothPlugin @@ -168,67 +172,67 @@ DockSettings - + Fashion Mode Moda Kipi - + Efficient Mode Verimli Kip - + Top Üst - + Bottom Alt - + Left Sol - + Right Sağ - + Keep Shown Sürekli Göster - + Keep Hidden Sürekli Gizle - + Smart Hide Akıllı Gizle - + Mode Kip - + Location Konum - + Status Durum - + Plugins Eklentiler @@ -258,85 +262,85 @@ NetworkItem - + Wireless connection Kablosuz bağlantı - + Wired connection Kablolu bağlantı - + Disable wired connection Kablolu bağlantıyı devre dışı bırak - + Enable wired connection Kablolu bağlantıyı etkinleştir - + Disable wireless connection Kablosuz bağlantıyı devre dışı bırak - + Enable wireless connection Kablosuz bağlantıyı etkinleştir - + Disable network Ağı devre dışı bırak - + Enable network Ağı etkinleştir - + Network settings Ay ayarları - + Device disabled Aygıt devre dışı - - + + Wireless connection: %1 Kablosuz bağlantı: %1 - - + + Wired connection: %1 Kablolu bağlantı: %1 - + Not connected Bağlı değil - + Connecting Bağlanıyor - + Connected but no Internet access Bağlı ancak İnternet erişimi yok - - + + Network cable unplugged Ağ kablosu takılı değil @@ -349,12 +353,12 @@ - + Wired Network Kablolu Ağ - + Wired Network %1 Kablolu Ağ %1 @@ -387,44 +391,48 @@ - Charged Şarj edildi - + Capacity %1, %2 min remaining %1 ve azalıyor, %2 dakika kaldı - - + + Capacity %1 Kapasite %1 - + Capacity %1, %2 hr %3 min remaining %1 ve azalıyor, %2 saat %3 dakika kaldı - - Capacity %1 .... - Kapasite %1 .... + + Capacity 1%, fully charged + Kapasite %1, tam şarjlı - + + Capacity %1 ... + Kapasite %1 ... + + + Charging %1, %2 min until full %1 ve doluyor, tam dolmaya %2 dakika kaldı - - + + Charging %1 %1 Şarj Oluyor - + Charging %1, %2 hr %3 min until full %1 ve doluyor, tam dolmaya %2 saat %3 dakika kaldı @@ -578,12 +586,12 @@ WirelessList - + Wireless Network Kablosuz Ağ - + Wireless Network %1 Kablosuz Ağ %1 diff --git a/translations/dde-dock_uk.ts b/translations/dde-dock_uk.ts index 65625b1e7..f7fd4991e 100644 --- a/translations/dde-dock_uk.ts +++ b/translations/dde-dock_uk.ts @@ -49,10 +49,14 @@ - Bluetooth Bluetooth + + + Turned off + Вимкнено + BluetoothPlugin @@ -168,67 +172,67 @@ DockSettings - + Fashion Mode Модний режим - + Efficient Mode Режим ефективності - + Top Верх - + Bottom Вниз - + Left Ліворуч - + Right Праворуч - + Keep Shown Показувати постійно - + Keep Hidden Приховувати - + Smart Hide Розумне приховування - + Mode Режим - + Location Місце знаходження - + Status Статус - + Plugins Плагіни @@ -258,85 +262,85 @@ NetworkItem - + Wireless connection Бездротове підключення - + Wired connection Дротове підключення - + Disable wired connection Вимкнути дротове з'єднання - + Enable wired connection Увімкнути дротове з'єднання - + Disable wireless connection Вимкнути бездротове з'єднання - + Enable wireless connection Увімкнути бездротове з'єднання - + Disable network Вимкнути мережу - + Enable network Увімкнути мережу - + Network settings Налаштування Інтернет-мережі - + Device disabled Пристрій вимкнено - - + + Wireless connection: %1 Бездротове з'єднання: %1 - - + + Wired connection: %1 Дротове з'єднання %1 - + Not connected Не підключено - + Connecting З'єднання - + Connected but no Internet access З'єднано, але доступу до інтернету немає - - + + Network cable unplugged Вийнято інтернет-кабель @@ -349,12 +353,12 @@ Мережа - + Wired Network Провідна мережа - + Wired Network %1 Дротова мережа %1 @@ -387,44 +391,48 @@ - Charged Заряджено - + Capacity %1, %2 min remaining Батарея %1, %2 хв залишилося - - + + Capacity %1 Ємність %1 - + Capacity %1, %2 hr %3 min remaining Батарея %1, %2 год %3 хв залишилося - - Capacity %1 .... - Ємність %1 .... + + Capacity 1%, fully charged + Ємність 1%, повністю заряджено - + + Capacity %1 ... + Ємність %1 ... + + + Charging %1, %2 min until full Зарядка %1, %2 хв до повної - - + + Charging %1 Заряджається %1 - + Charging %1, %2 hr %3 min until full Зарядка %1, %2 год %3 хв до повної @@ -578,12 +586,12 @@ WirelessList - + Wireless Network Бездротова мережа - + Wireless Network %1 Бездротова мережа %1 diff --git a/translations/dde-dock_vi.ts b/translations/dde-dock_vi.ts index a16f33cfd..0f0db2b15 100644 --- a/translations/dde-dock_vi.ts +++ b/translations/dde-dock_vi.ts @@ -49,10 +49,14 @@ - Bluetooth Bluetooth + + + Turned off + Đã tắt + BluetoothPlugin @@ -168,67 +172,67 @@ DockSettings - + Fashion Mode Chế độ Thời trang - + Efficient Mode Chế độ Hiệu quả - + Top Trên đỉnh - + Bottom Dưới đáy - + Left Trái - + Right Phải - + Keep Shown Tiếp tục Hiển thị - + Keep Hidden Tiếp tục Ẩn - + Smart Hide Ẩn Thông minh - + Mode Chế độ - + Location Nơi chốn - + Status Tình trạng - + Plugins Các phần bổ sung @@ -258,85 +262,85 @@ NetworkItem - + Wireless connection Kết nội wifi - + Wired connection Kết nối có dây - + Disable wired connection Tắt kết nối mạng dây - + Enable wired connection Mở kết nối mạng dây - + Disable wireless connection Tắt kết nối wifi - + Enable wireless connection Bật kết nối wifi - + Disable network Vô hiệu hóa mạng - + Enable network Cho phép mạng - + Network settings Thiết lập mạng - + Device disabled Thiết bị bị vô hiệu hóa - - + + Wireless connection: %1 Kết nối không dây: %1 - - + + Wired connection: %1 Kết nối Có dây: %1 - + Not connected Không được kết nối - + Connecting Đang kết nối - + Connected but no Internet access Đã kết nối nhưng không có truy cập Internet - - + + Network cable unplugged Mạng dây đã ngắt @@ -349,12 +353,12 @@ Mạng - + Wired Network Mạng kết nối dây - + Wired Network %1 Mạng kết nối dây %1 @@ -387,44 +391,48 @@ - Charged Được sạt - + Capacity %1, %2 min remaining Năng lượng %1, %2 còn lại - - + + Capacity %1 Phù hợp %1 - + Capacity %1, %2 hr %3 min remaining Năng lượng %1, %2 giờ %3 phút còn lại - - Capacity %1 .... - Công suất %1 ... + + Capacity 1%, fully charged + Công suất 1%, sạc đã đầy - + + Capacity %1 ... + Công suất 1%... + + + Charging %1, %2 min until full Đang sạc %1, %2 phút sẽ đầy - - + + Charging %1 Đang nạp %1 - + Charging %1, %2 hr %3 min until full Đang sạc %1, %2 giờ %3 phút sẽ đầy @@ -578,12 +586,12 @@ WirelessList - + Wireless Network Mạng không dây - + Wireless Network %1 Mạng Không dây %1 diff --git a/translations/dde-dock_zh_CN.ts b/translations/dde-dock_zh_CN.ts index ec18a600b..8d7bf7802 100644 --- a/translations/dde-dock_zh_CN.ts +++ b/translations/dde-dock_zh_CN.ts @@ -353,12 +353,12 @@ 网络 - + Wired Network 有线网络 - + Wired Network %1 有线网络 %1 @@ -391,44 +391,48 @@ - Charged 已充满 - + Capacity %1, %2 min remaining 电量%1,剩余%2分钟 - - + + Capacity %1 电量%1 - + Capacity %1, %2 hr %3 min remaining 电量%1,剩余%2小时%3分钟 - - Capacity %1 .... - 电量 %1 ... + + Capacity 1%, fully charged + 电量%1,已充满 - + + Capacity %1 ... + 电量%1 ... + + + Charging %1, %2 min until full 正在充电%1,还需%2分钟 - - + + Charging %1 正在充电%1 - + Charging %1, %2 hr %3 min until full 正在充电%1,还需%2小时%3分钟 diff --git a/translations/dde-dock_zh_HK.ts b/translations/dde-dock_zh_HK.ts index deec1b7fe..70aadf086 100644 --- a/translations/dde-dock_zh_HK.ts +++ b/translations/dde-dock_zh_HK.ts @@ -353,12 +353,12 @@ 网络 - + Wired Network 有线网络 - + Wired Network %1 有線網絡 %1 @@ -391,44 +391,48 @@ - Charged 已充滿 - + Capacity %1, %2 min remaining 電量%1,剩餘%2分鐘 - - + + Capacity %1 電量 %1 - + Capacity %1, %2 hr %3 min remaining 電量%1,剩餘%2小時%3分鐘 - - Capacity %1 .... - 電量 %1 ... + + Capacity 1%, fully charged + 電量%1,已充滿 - + + Capacity %1 ... + 電量%1 ... + + + Charging %1, %2 min until full 正在充電%1,還需%2分鐘 - - + + Charging %1 正在充電%1 - + Charging %1, %2 hr %3 min until full 正在充電%1,還需%2小時%3分鐘 diff --git a/translations/dde-dock_zh_TW.ts b/translations/dde-dock_zh_TW.ts index 141a6cb41..6e3cbf04e 100644 --- a/translations/dde-dock_zh_TW.ts +++ b/translations/dde-dock_zh_TW.ts @@ -353,12 +353,12 @@ 網路 - + Wired Network 有線網路 - + Wired Network %1 有線網路 %1 @@ -391,44 +391,48 @@ - Charged 充電完成 - + Capacity %1, %2 min remaining 電量 %1,剩餘 %2 分鐘 - - + + Capacity %1 電量 %1 - + Capacity %1, %2 hr %3 min remaining 電量 %1,剩餘 %2 小時 %3 分鐘 - - Capacity %1 .... - 電量 %1 .... + + Capacity 1%, fully charged + 電量%1,已充滿 - + + Capacity %1 ... + 電量%1 ... + + + Charging %1, %2 min until full 正在充電 %1,距離完成尚餘 %2 分鐘 - - + + Charging %1 %1 正在充電 - + Charging %1, %2 hr %3 min until full 正在充電 %1,距離完成尚餘 %2 小時 %3 分鐘