Refact/plugin removal leftovers (#15864)

* fix(flutter): dispose the settings PageController and order dispose() correctly

`dispose()` began with `super.dispose()`, so the mixin chain marked the State
defunct before the WidgetsBindingObserver registration and the periodic timer
were released. The `PageController` was never disposed at all: `Get.delete`
only runs `onDelete()` for a `GetLifeCycleBase`, and a plain `ChangeNotifier`
is not one, so every open/close of the Settings tab leaked one controller with
its listener still attached.

Also guard `switch2page` on the `Rx<SettingsTabKey>` registration it actually
reads rather than only the `PageController` — now that both are really
deleted, a partial teardown would throw into the catch and silently open the
wrong tab — and re-check `mounted` after the await in the `_videoConnTimer`
tick, which `Timer::cancel` cannot stop once the body has started.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>

* refact: finish the plugin-framework removal sweep

#15854 removed the feature but stopped short of its leftovers:

- `Uninstall`, `Enable`, `Disable`, `Options` and `Please install plugins`
  were consumed only by the deleted `flutter/lib/plugin/**`; drop them from
  template.rs and the 50 locale files (250 dead entries). `Update` and
  `Install` stay, still used by desktop_home_page.dart.
- The server no longer sends `PrvOnFailedPlugin`, and the client no longer
  offers to install plugins when privacy mode fails to turn on.
- Drop the MSI `F_Client_Plugins` / `F_Server_Plugins` localization strings;
  no `.wxs` references them.
- `_DisplayMenu`'s constructor became a pure pass-through once `pluginItem`
  was removed, and the cfg inside `handle_input` repeats the one on the
  function itself.
- Normalize `src/lang/sl.rs` to 0644, the only executable file under src/.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>

* fix(client): handle legacy privacy mode plugin failures

Signed-off-by: fufesou <linlong1266@gmail.com>

---------

Signed-off-by: fufesou <linlong1266@gmail.com>
Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
Co-authored-by: fufesou <linlong1266@gmail.com>
This commit is contained in:
RustDesk
2026-08-14 18:52:03 +08:00
committed by GitHub
co-authored by Claude Opus 5 fufesou
parent d1da05c4db
commit 7aa98d43cf
55 changed files with 18 additions and 272 deletions
@@ -90,7 +90,8 @@ class DesktopSettingPage extends StatefulWidget {
if (index == -1) {
return;
}
if (Get.isRegistered<PageController>(tag: _kSettingPageControllerTag)) {
if (Get.isRegistered<PageController>(tag: _kSettingPageControllerTag) &&
Get.isRegistered<Rx<SettingsTabKey>>(tag: _kSettingPageTabKeyTag)) {
DesktopTabPage.onAddSetting(initialPage: page);
PageController controller =
Get.find<PageController>(tag: _kSettingPageControllerTag);
@@ -158,17 +159,23 @@ class _DesktopSettingPageState extends State<DesktopSettingPage>
if (!mounted) {
return;
}
_canBeBlocked.value = await canBeBlocked();
final blocked = await canBeBlocked();
if (!mounted) {
return;
}
_canBeBlocked.value = blocked;
});
}
@override
void dispose() {
super.dispose();
_videoConnTimer?.cancel();
WidgetsBinding.instance.removeObserver(this);
Get.delete<PageController>(tag: _kSettingPageControllerTag);
Get.delete<Rx<SettingsTabKey>>(tag: _kSettingPageTabKeyTag);
WidgetsBinding.instance.removeObserver(this);
_videoConnTimer?.cancel();
// Get.delete does not dispose a plain ChangeNotifier.
controller.dispose();
super.dispose();
}
List<_TabInfo> _settingTabs() {
@@ -1476,13 +1476,11 @@ class _DisplayMenu extends StatefulWidget {
final FFI ffi;
final ToolbarState state;
final Function(bool) setFullscreen;
_DisplayMenu(
{Key? key,
required this.id,
const _DisplayMenu(
{required this.id,
required this.ffi,
required this.state,
required this.setFullscreen})
: super(key: key);
required this.setFullscreen});
@override
State<_DisplayMenu> createState() => _DisplayMenuState();
@@ -21,8 +21,6 @@ This file contains the declaration of all the localizable strings.
<!-- Client related strings -->
<String Id="F_Client" Value="Client" />
<String Id="F_Client_Desc" Value="The user interface. Plays media files." />
<String Id="F_Client_Plugins" Value="Plugins" />
<String Id="F_Client_Plugins_Desc" Value="Plugins for the client." />
<String Id="F_LAVFilters" Value="LAV Filters" />
<String Id="F_LAVFilters_Desc" Value="Recommended directshow filters for best audio and video playback experience." />
@@ -35,8 +33,6 @@ This file contains the declaration of all the localizable strings.
<!-- Server related strings -->
<String Id="F_Server" Value="Server" />
<String Id="F_Server_Desc" Value="The server part of RustDesk. Provides the MediaLibrary and other services." />
<String Id="F_Server_Plugins" Value="Plugins" />
<String Id="F_Server_Plugins_Desc" Value="Plugins for the server." />
<String Id="Service_DisplayName" Value="RustDesk Service" />
<String Id="Service_Description" Value="This service runs the RustDesk Server." />
+2 -6
View File
@@ -2260,12 +2260,8 @@ impl<T: InvokeUiSession> Remote<T> {
.msgbox("custom-error", "Privacy mode", "Peer denied", "");
self.update_privacy_mode(impl_key, false);
}
back_notification::PrivacyModeState::PrvOnFailedPlugin => {
self.handler
.msgbox("custom-error", "Privacy mode", "Please install plugins", "");
self.update_privacy_mode(impl_key, false);
}
back_notification::PrivacyModeState::PrvOnFailed => {
back_notification::PrivacyModeState::PrvOnFailedPlugin
| back_notification::PrivacyModeState::PrvOnFailed => {
self.handler.msgbox(
"custom-error",
"Privacy mode",
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "شخص ما فعل وضع الخصوصية, خروج"),
("Unsupported", "غير مدعوم"),
("Peer denied", "القرين رفض"),
("Please install plugins", "الرجاء تثبيت الاضافات"),
("Peer exit", "خروج القرين"),
("Failed to turn off", "فشل ايقاف التشغيل"),
("Turned off", "مطفئ"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "البصمة"),
("Copy Fingerprint", "نسخ البصمة"),
("no fingerprints", "لا توجد بصمات اصابع"),
("Uninstall", "الغاء التثبيت"),
("Update", "تحديث"),
("Enable", "تفعيل"),
("Disable", "تعطيل"),
("Options", "الخيارات"),
("resolution_original_tip", "الدقة الأصلية"),
("resolution_fit_local_tip", "تناسب الدقة المحلية"),
("resolution_custom_tip", "دقة مخصصة"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "Хтосьці ўключыў рэжым канфідэнцыйнасці, выхад"),
("Unsupported", "Не падтрымліваецца"),
("Peer denied", "Забаронена абанентам"),
("Please install plugins", "Усталюйце ўбудовы"),
("Peer exit", "Абанент выйшаў"),
("Failed to turn off", "Немагчыма выключыць"),
("Turned off", "Выключаны"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "Адбітак"),
("Copy Fingerprint", "Капіяваць адбітак"),
("no fingerprints", "адбіткі адсутнічаюць"),
("Uninstall", "Выдаліць"),
("Update", "Абнавіць"),
("Enable", "Уключыць"),
("Disable", "Адключыць"),
("Options", "Параметры"),
("resolution_original_tip", "Арыгінальная раздзяляльнасць"),
("resolution_fit_local_tip", "Супадзенне з лакальнай раздзяляльнасцю"),
("resolution_custom_tip", "Карыстацкая раздзяляльнасць"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "Някой включва режим на поверителност, изход"),
("Unsupported", "Неподдържан"),
("Peer denied", "Отказ от другата страна"),
("Please install plugins", "Моля поставете плъгини"),
("Peer exit", "Изход от другата страна"),
("Failed to turn off", "Неуспешен опит за изключване"),
("Turned off", "Изкключен"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "Пръстов отпечатък"),
("Copy Fingerprint", "Копиране на пръстов отпечатък"),
("no fingerprints", "Няма пръстови отпечатъци"),
("Uninstall", "Премахни"),
("Update", "Обновяване"),
("Enable", "Позволяване"),
("Disable", "Забрана"),
("Options", "Настроики"),
("resolution_original_tip", "Оригинална разделителна способност"),
("resolution_fit_local_tip", "Приспособяване към тукашната разделителна способност"),
("resolution_custom_tip", "Разделителна способност по свой избор"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "S'ha activat el Mode privat; surt"),
("Unsupported", "No suportat"),
("Peer denied", "Client denegat"),
("Please install plugins", "Instal·leu els complements"),
("Peer exit", "Finalitzat pel client"),
("Failed to turn off", "Ha fallat en desactivar"),
("Turned off", "Desactivat"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "Empremta"),
("Copy Fingerprint", "Copia l'empremta"),
("no fingerprints", "Cap empremta"),
("Uninstall", "Desinstal·la"),
("Update", "Actualitza"),
("Enable", "Activa"),
("Disable", "Desactiva"),
("Options", "Opcions"),
("resolution_original_tip", "Resolució original"),
("resolution_fit_local_tip", "Ajusta la resolució local"),
("resolution_custom_tip", "Resolució personalitzada"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "其他用户使用隐私模式,退出"),
("Unsupported", "不支持"),
("Peer denied", "被控端拒绝"),
("Please install plugins", "请安装插件"),
("Peer exit", "被控端退出"),
("Failed to turn off", "退出失败"),
("Turned off", "退出"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "指纹"),
("Copy Fingerprint", "复制指纹"),
("no fingerprints", "没有指纹"),
("Uninstall", "卸载"),
("Update", "更新"),
("Enable", "启用"),
("Disable", "禁用"),
("Options", "选项"),
("resolution_original_tip", "原始分辨率"),
("resolution_fit_local_tip", "适应本地分辨率"),
("resolution_custom_tip", "自定义分辨率"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "Někdo zapne režim ochrany soukromí, ukončete ho"),
("Unsupported", "Nepodporováno"),
("Peer denied", "Protistrana odmítla"),
("Please install plugins", "Nainstalujte si prosím pluginy"),
("Peer exit", "Ukončení protistrany"),
("Failed to turn off", "Nepodařilo se vypnout"),
("Turned off", "Vypnutý"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "Otisk"),
("Copy Fingerprint", "Kopírovat otisk"),
("no fingerprints", "žádný otisk"),
("Uninstall", "Odinstalovat"),
("Update", "Aktualizovat"),
("Enable", "Povolit"),
("Disable", "Zakázat"),
("Options", "Možnosti"),
("resolution_original_tip", "Původní rozlišení"),
("resolution_fit_local_tip", "Přizpůsobit místní rozlišení"),
("resolution_custom_tip", "Vlastní rozlišení"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "Nogen aktiverede privatlivstilstand, afslut"),
("Unsupported", "Ikke understøttet"),
("Peer denied", "Modpart nægtet"),
("Please install plugins", "Installer venligst plugins"),
("Peer exit", "Modpart-Afslut"),
("Failed to turn off", "Mislykkedes i at lukke ned"),
("Turned off", "Slukket"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "Fingeraftryk"),
("Copy Fingerprint", "Kopiér fingeraftryk"),
("no fingerprints", "Ingen fingeraftryk"),
("Uninstall", "Afinstallér"),
("Update", "Opdatér"),
("Enable", "Aktivér"),
("Disable", "Deaktivér"),
("Options", "Valgmuligheder"),
("resolution_original_tip", "Original skærmopløsning"),
("resolution_fit_local_tip", "Tilpas lokal skærmopløsning"),
("resolution_custom_tip", "Bruger-tilpasset skærmopløsning"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "Jemand hat den Datenschutzmodus aktiviert, wird beendet …"),
("Unsupported", "Nicht unterstützt"),
("Peer denied", "Die Gegenstelle hat die Verbindung abgelehnt."),
("Please install plugins", "Bitte installieren Sie Plugins"),
("Peer exit", "Die Gegenstelle hat die Verbindung getrennt."),
("Failed to turn off", "Ausschalten fehlgeschlagen"),
("Turned off", "Ausgeschaltet"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "Fingerabdruck"),
("Copy Fingerprint", "Fingerabdruck kopieren"),
("no fingerprints", "Keine Fingerabdrücke"),
("Uninstall", "Deinstallieren"),
("Update", "Update"),
("Enable", "Aktivieren"),
("Disable", "Deaktivieren"),
("Options", "Einstellungen"),
("resolution_original_tip", "Originale Auflösung"),
("resolution_fit_local_tip", "Lokale Auflösung anpassen"),
("resolution_custom_tip", "Benutzerdefinierte Auflösung"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "Κάποιος ενεργοποιεί τη λειτουργία απορρήτου, έξοδος"),
("Unsupported", "Δεν υποστηρίζεται"),
("Peer denied", "Ο απομακρυσμένος σταθμός έχει απορριφθεί"),
("Please install plugins", "Παρακαλώ εγκαταστήστε τα πρόσθετα"),
("Peer exit", "Ο απομακρυσμένος σταθμός έχει αποσυνδεθεί"),
("Failed to turn off", "Αποτυχία απενεργοποίησης"),
("Turned off", "Απενεργοποιημένο"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "Δακτυλικό αποτύπωμα"),
("Copy Fingerprint", "Αντιγραφή δακτυλικού αποτυπώματος"),
("no fingerprints", "χωρίς δακτυλικά αποτυπώματα"),
("Uninstall", "Κατάργηση εγκατάστασης"),
("Update", "Ενημέρωση"),
("Enable", "Ενεργοποίηση"),
("Disable", "Απενεργοποίηση"),
("Options", "Επιλογές"),
("resolution_original_tip", "Αρχική ανάλυση"),
("resolution_fit_local_tip", "Προσαρμογή στην τοπική ανάλυση"),
("resolution_custom_tip", "Προσαρμοσμένη ανάλυση"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "Iu ŝaltas modon privata, Eliro"),
("Unsupported", "Nesubtenata"),
("Peer denied", "Samulo rifuzita"),
("Please install plugins", "Bonvolu instali kromprogramojn"),
("Peer exit", "Samulo eliras"),
("Failed to turn off", "Malsukcesis malŝalti"),
("Turned off", "Malŝaltita"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "Fingrospuro"),
("Copy Fingerprint", "Kopii fingrospuron"),
("no fingerprints", "Neniuj fingrospuroj"),
("Uninstall", "Malinstali"),
("Update", "Ĝisdatigi"),
("Enable", "Ebligi"),
("Disable", "Malebligi"),
("Options", "Opcioj"),
("resolution_original_tip", "Originala distingivo"),
("resolution_fit_local_tip", "Adapti al loka distingivo"),
("resolution_custom_tip", "Propra distingivo"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "Alguien active el modo privacidad, salga"),
("Unsupported", "No soportado"),
("Peer denied", "Par denegado"),
("Please install plugins", "Instale complementos"),
("Peer exit", "Par salio"),
("Failed to turn off", "Error al apagar"),
("Turned off", "Apagado"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "Huella digital"),
("Copy Fingerprint", "Copiar huella digital"),
("no fingerprints", "sin huellas digitales"),
("Uninstall", "Desinstalar"),
("Update", "Actualizar"),
("Enable", "Habilitar"),
("Disable", "Inhabilitar"),
("Options", "Opciones"),
("resolution_original_tip", "Resolución original"),
("resolution_fit_local_tip", "Ajustar resolución local"),
("resolution_custom_tip", "Resolución personalizada"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "Keegi lülitab sisse privaatsusrežiimi, välju"),
("Unsupported", "Mittetoetatud"),
("Peer denied", "Partner keeldus"),
("Please install plugins", "Palun paigalda pluginad"),
("Peer exit", "Partner väljub"),
("Failed to turn off", "Väljalülitamine ebaõnnestus"),
("Turned off", "Väljalülitatud"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "Sõrmejälg"),
("Copy Fingerprint", "Kopeeri sõrmejälg"),
("no fingerprints", "Sõrmejäljed puuduvad"),
("Uninstall", "Desinstalli"),
("Update", "Uuenda"),
("Enable", "Luba"),
("Disable", "Keela"),
("Options", "Valikud"),
("resolution_original_tip", "Originaalne eraldusvõime"),
("resolution_fit_local_tip", "Ühita kohaliku eraldusvõimega"),
("resolution_custom_tip", "Kohandatud eraldusvõime"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "Norbaitek pribatutasun modua hasten du, irten"),
("Unsupported", "Ez da onartzen"),
("Peer denied", "Parekidea ukatuta"),
("Please install plugins", "Mesedez, instalatu plugin hauek"),
("Peer exit", "Parekidea irten da"),
("Failed to turn off", "Itzaltzeak huts egin du"),
("Turned off", "Itzalita"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "Hatz-marka"),
("Copy Fingerprint", "Kopiatu hatz-marka"),
("no fingerprints", "hatz-markarik ez"),
("Uninstall", "Desinstalatu"),
("Update", "Eguneratu"),
("Enable", "Gaitu"),
("Disable", "Desgaitu"),
("Options", "Aukerak"),
("resolution_original_tip", "Jatorrizko bereizmena"),
("resolution_fit_local_tip", "Bereizmen lokala egokitu"),
("resolution_custom_tip", "Bereizmen pertsonalizatua"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "اگر شخصی حالت حریم خصوصی را روشن کرد، خارج شوید"),
("Unsupported", "پشتیبانی نشده"),
("Peer denied", "توسط میزبان راه دور رد شد"),
("Please install plugins", "لطفا افزونه ها را نصب کنید"),
("Peer exit", "میزبان خارج شد"),
("Failed to turn off", "خاموش کردن انجام نشد"),
("Turned off", "خاموش شد"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "\n اثر انگشت"),
("Copy Fingerprint", "کپی کردن اثر انگشت"),
("no fingerprints", "بدون اثر انگشت"),
("Uninstall", "حذف نصب"),
("Update", "به روز رسانی"),
("Enable", "فعال کردن"),
("Disable", "غیر فعال کردن"),
("Options", "گزینه ها"),
("resolution_original_tip", "وضوح اصلی"),
("resolution_fit_local_tip", "متناسب با وضوح محلی"),
("resolution_custom_tip", "وضوح سفارشی"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "Yksityisyystila otettu käyttöön, poistutaan"),
("Unsupported", "Ei tuettu"),
("Peer denied", "Vastapuoli hylkäsi pyynnön"),
("Please install plugins", "Asenna tarvittavat lisäosat"),
("Peer exit", "Vastapuoli sulki yhteyden"),
("Failed to turn off", "Sammutus epäonnistui"),
("Turned off", "Sammutettu"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "Sormenjälki"),
("Copy Fingerprint", "Kopioi sormenjälki"),
("no fingerprints", "Ei sormenjälkiä"),
("Uninstall", "Poista asennus"),
("Update", "Päivitä"),
("Enable", "Ota käyttöön"),
("Disable", "Poista käytöstä"),
("Options", "Asetukset"),
("resolution_original_tip", "Näytä alkuperäisessä resoluutiossa ilman skaalausta"),
("resolution_fit_local_tip", "Sovita etänäyttö paikalliseen näkymään"),
("resolution_custom_tip", "Käytä mukautettua resoluutiota"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "Quelquun active le mode de confidentialité, désactiver"),
("Unsupported", "Non pris en charge"),
("Peer denied", "Refusé par lappareil distant"),
("Please install plugins", "Veuillez installer les plugins"),
("Peer exit", "Désactivé par lappareil distant"),
("Failed to turn off", "Échec de la désactivation"),
("Turned off", "Désactivé"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "Empreinte numérique"),
("Copy Fingerprint", "Copier lempreinte numérique"),
("no fingerprints", "Aucune empreinte numérique"),
("Uninstall", "Désinstaller"),
("Update", "Mettre à jour"),
("Enable", "Activer"),
("Disable", "Désactiver"),
("Options", "Options"),
("resolution_original_tip", "Résolution dorigine"),
("resolution_fit_local_tip", "Adapter à la résolution locale"),
("resolution_custom_tip", "Résolution personnalisée"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "ვიღაცამ ჩართო კონფიდენციალურობის რეჟიმი, გასვლა"),
("Unsupported", "არ არის მხარდაჭერილი"),
("Peer denied", "უარყოფილია დაშორებული კვანძის მიერ"),
("Please install plugins", "დააინსტალირეთ პლაგინები"),
("Peer exit", "გათიშულია მომხმარებლის მიერ"),
("Failed to turn off", "გამორთვა შეუძლებელია"),
("Turned off", "გამორთული"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "ანაბეჭდი"),
("Copy Fingerprint", "ანაბეჭდის კოპირება"),
("no fingerprints", "ანაბეჭდები არ არის"),
("Uninstall", "წაშლა"),
("Update", "განახლება"),
("Enable", "ჩართვა"),
("Disable", "გამორთვა"),
("Options", "პარამეტრები"),
("resolution_original_tip", "საწყისი გარჩევადობა"),
("resolution_fit_local_tip", "ლოკალური გარჩევადობის შესაბამისი"),
("resolution_custom_tip", "მორგებული გარჩევადობა"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "કોઈએ પ્રાઇવસી મોડ ચાલુ કર્યો છે, બહાર નીકળો"),
("Unsupported", "અસમર્થિત"),
("Peer denied", "સામેથી નકારવામાં આવ્યું"),
("Please install plugins", "કૃપા કરીને પ્લગઇન્સ ઇન્સ્ટોલ કરો"),
("Peer exit", "સામેથી કોઈ બહાર નીકળી ગયું"),
("Failed to turn off", "બંધ કરવામાં નિષ્ફળ"),
("Turned off", "બંધ કરવામાં આવ્યું"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "ફિંગરપ્રિન્ટ"),
("Copy Fingerprint", "ફિંગરપ્રિન્ટ કોપી કરો"),
("no fingerprints", "કોઈ ફિંગરપ્રિન્ટ નથી"),
("Uninstall", "અનઇન્સ્ટોલ કરો"),
("Update", "અપડેટ કરો"),
("Enable", "સક્ષમ કરો"),
("Disable", "અક્ષમ કરો"),
("Options", "વિકલ્પો"),
("resolution_original_tip", "મૂળ રિઝોલ્યુશન"),
("resolution_fit_local_tip", "સ્ક્રીન મુજબ ફીટ કરો"),
("resolution_custom_tip", "કસ્ટમ રિઝોલ્યુશન"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "מישהו הפעיל מצב פרטיות, מתבצעת יציאה"),
("Unsupported", "לא נתמך"),
("Peer denied", "הצד השני סירב"),
("Please install plugins", "אנא התקן תוספים"),
("Peer exit", "הצד השני התנתק"),
("Failed to turn off", "הכיבוי נכשל"),
("Turned off", "מכובה"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "טביעת אצבע"),
("Copy Fingerprint", "העתק טביעת אצבע"),
("no fingerprints", "אין טביעות אצבע"),
("Uninstall", "הסר"),
("Update", "עדכן"),
("Enable", "פועל"),
("Disable", "כבוי"),
("Options", "אפשרויות"),
("resolution_original_tip", "רזולוציה מקורית"),
("resolution_fit_local_tip", "התאם לרזולוציה מקומית"),
("resolution_custom_tip", "רזולוציה מותאמת אישית"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "किसी ने गोपनीयता मोड चालू किया है, बाहर निकल रहे हैं"),
("Unsupported", "असमर्थित"),
("Peer denied", "दूसरे सिस्टम ने मना कर दिया"),
("Please install plugins", "कृपया प्लगइन्स इंस्टॉल करें"),
("Peer exit", "दूसरा सिस्टम बाहर निकल गया"),
("Failed to turn off", "बंद करने में विफल"),
("Turned off", "बंद कर दिया गया"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "फिंगरप्रिंट"),
("Copy Fingerprint", "फिंगरप्रिंट कॉपी करें"),
("no fingerprints", "कोई फिंगरप्रिंट नहीं"),
("Uninstall", "अनइंस्टॉल करें"),
("Update", "अपडेट करें"),
("Enable", "सक्षम करें"),
("Disable", "अक्षम करें"),
("Options", "विकल्प"),
("resolution_original_tip", "मूल रिज़ॉल्यूशन"),
("resolution_fit_local_tip", "स्थानीय स्क्रीन में फिट करें"),
("resolution_custom_tip", "कस्टम रिज़ॉल्यूशन"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "Netko je uključio način privatnosti, izlaz."),
("Unsupported", "Nepodržano"),
("Peer denied", "Klijent zabranjen"),
("Please install plugins", "Molimo instalirajte dodatke"),
("Peer exit", "Klijent je izašao"),
("Failed to turn off", "Greška kod isključenja"),
("Turned off", "Isključeno"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "Otisak"),
("Copy Fingerprint", "Kopirat otisak"),
("no fingerprints", "nema otiska"),
("Uninstall", "Deinstaliraj"),
("Update", "Ažuriraj"),
("Enable", "Dopustiti"),
("Disable", "Zabraniti"),
("Options", "Mogućnosti"),
("resolution_original_tip", "Izvorna rezolucija"),
("resolution_fit_local_tip", "Podesite lokalnu rezoluciju"),
("resolution_custom_tip", "Prilagođena rezolucija"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "Valaki bekacsolta az inkognitó módot, lépjen ki"),
("Unsupported", "Nem támogatott"),
("Peer denied", "Elutasítva a távoli fél által"),
("Please install plugins", "Telepítse a bővítményeket"),
("Peer exit", "A távoli fél kilépett"),
("Failed to turn off", "Nem sikerült kikapcsolni"),
("Turned off", "Kikapcsolva"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "Ujjlenyomat"),
("Copy Fingerprint", "Ujjlenyomat másolása"),
("no fingerprints", "nincsenek ujjlenyomatok"),
("Uninstall", "Eltávolítás"),
("Update", "Frissítés"),
("Enable", "Engedélyezés"),
("Disable", "Letiltás"),
("Options", "Opciók"),
("resolution_original_tip", "Eredeti felbontás"),
("resolution_fit_local_tip", "Helyi felbontás beállítása"),
("resolution_custom_tip", "Testre szabható felbontás"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "Seseorang mengaktifkan mode privasi, keluar"),
("Unsupported", "Tidak didukung"),
("Peer denied", "Rekan menolak"),
("Please install plugins", "Silakan instal plugin"),
("Peer exit", "Rekan keluar"),
("Failed to turn off", "Gagal mematikan"),
("Turned off", "Dimatikan"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "Sidik jari"),
("Copy Fingerprint", "Salin sidik jari"),
("no fingerprints", "Tidak ada sidik jari"),
("Uninstall", "Hapus instalasi"),
("Update", "Perbarui"),
("Enable", "Aktifkan"),
("Disable", "Nonaktifkan"),
("Options", "Opsi"),
("resolution_original_tip", "Resolusi original"),
("resolution_fit_local_tip", "Sesuaikan resolusi lokal"),
("resolution_custom_tip", "Resolusi kustom"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "Qualcuno ha attivato la modalità privacy, uscita"),
("Unsupported", "Non supportato"),
("Peer denied", "Accesso negato al dispositivo remoto"),
("Please install plugins", "Installa i plugin"),
("Peer exit", "Uscita dal dispostivo remoto"),
("Failed to turn off", "Impossibile spegnere"),
("Turned off", "Spegni"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "Firma digitale"),
("Copy Fingerprint", "Copia firma digitale"),
("no fingerprints", "Nessuna firma digitale"),
("Uninstall", "Disinstalla"),
("Update", "Aggiorna"),
("Enable", "Abilita"),
("Disable", "Disabilita"),
("Options", "Opzioni"),
("resolution_original_tip", "Risoluzione originale"),
("resolution_fit_local_tip", "Adatta risoluzione locale"),
("resolution_custom_tip", "Risoluzione personalizzata"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "プライバシーモードがオンになりました。終了します。"),
("Unsupported", "対応していません"),
("Peer denied", "リモートホストに拒否されました"),
("Please install plugins", "プラグインをインストールしてください"),
("Peer exit", "リモートホストが退出しました"),
("Failed to turn off", "オフにできませんでした"),
("Turned off", "オフになりました"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "フィンガープリント"),
("Copy Fingerprint", "フィンガープリントをコピー"),
("no fingerprints", "フィンガープリントがありません"),
("Uninstall", "アンインストール"),
("Update", "更新"),
("Enable", "有効"),
("Disable", "無効"),
("Options", "設定"),
("resolution_original_tip", "オリジナルの解像度"),
("resolution_fit_local_tip", "ローカル解像度に合わせる"),
("resolution_custom_tip", "カスタム解像度"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "누군가 개인정보 보호 모드를 켰습니다, 연결을 종료합니다"),
("Unsupported", "지원되지 않음"),
("Peer denied", "연결 거부됨"),
("Please install plugins", "플러그인을 설치해주세요"),
("Peer exit", "피어 종료"),
("Failed to turn off", "끄기 실패"),
("Turned off", "꺼짐"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "지문"),
("Copy Fingerprint", "지문 복사"),
("no fingerprints", "지문이 없습니다"),
("Uninstall", "설치 제거"),
("Update", "업데이트"),
("Enable", "허용"),
("Disable", "사용 안 함"),
("Options", "옵션"),
("resolution_original_tip", "원본 해상도"),
("resolution_fit_local_tip", "로컬 화면에 맞춤"),
("resolution_custom_tip", "사용자 지정 해상도"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "Біреу құпиялылық модасын қосты, шығу"),
("Unsupported", "Қолдаусыз"),
("Peer denied", "Пир қабылдамады"),
("Please install plugins", "Плагиндерді орнатуды өтінеміз"),
("Peer exit", "Пирдің шығуы"),
("Failed to turn off", "Сөндіру сәтсіз болды"),
("Turned off", "Өшірілген"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "Саусақ ізі"),
("Copy Fingerprint", "Саусақ ізін көшіру"),
("no fingerprints", "Саусақ іздері жоқ"),
("Uninstall", "Жою"),
("Update", "Жаңарту"),
("Enable", "Қосу"),
("Disable", "Өшіру"),
("Options", "Опциялар"),
("resolution_original_tip", "Түпнұсқа ажыратымдылық"),
("resolution_fit_local_tip", "Лақал ажыратымдылыққа сыйғызу"),
("resolution_custom_tip", "Теңшеулі ажыратымдылық"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "Kažkas įjungė privatumo režimą, išeiti"),
("Unsupported", "Nepalaikomas"),
("Peer denied", "Atšaukė"),
("Please install plugins", "Įdiekite papildinius"),
("Peer exit", "Nuotolinis mazgas neveikia"),
("Failed to turn off", "Nepavyko išjungti"),
("Turned off", "Išjungti"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "Kontrolinis kodas"),
("Copy Fingerprint", "Kopijuoti kontrolinį kodą"),
("no fingerprints", "Nėra kontrolinių kodų"),
("Uninstall", "Pašalinti"),
("Update", "Atnaujinti"),
("Enable", "Įgalinti"),
("Disable", "Išjungti"),
("Options", "Parinktys"),
("resolution_original_tip", "Originali skiriamoji geba"),
("resolution_fit_local_tip", "Pritaikyti prie vietinės skiriamosios gebos"),
("resolution_custom_tip", "Tinkinta skiriamoji geba"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "Kāds ieslēdza privātuma režīmu, iziet"),
("Unsupported", "Neatbalstīts"),
("Peer denied", "Sesija noraidīta"),
("Please install plugins", "Lūdzu, instalējiet spraudņus"),
("Peer exit", "Iziet no attālās ierīces"),
("Failed to turn off", "Neizdevās izslēgt"),
("Turned off", "Izslēgts"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "Pirkstu nospiedums"),
("Copy Fingerprint", "Kopēt pirkstu nospiedumu"),
("no fingerprints", "nav pirkstu nospiedumu"),
("Uninstall", "Atinstalēt"),
("Update", "Atjaunināt"),
("Enable", "Iespējot"),
("Disable", "Atspējot"),
("Options", "Opcijas"),
("resolution_original_tip", "Sākotnējā izšķirtspēja"),
("resolution_fit_local_tip", "Atbilst vietējai izšķirtspējai"),
("resolution_custom_tip", "Pielāgota izšķirtspēja"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "ആരോ പ്രൈവസി മോഡ് ഓൺ ചെയ്തു, പുറത്തുകടക്കുന്നു"),
("Unsupported", "പിന്തുണയ്ക്കുന്നില്ല"),
("Peer denied", "മറുഭാഗത്തുനിന്ന് നിരസിച്ചു"),
("Please install plugins", "ദയവായി പ്ലഗിനുകൾ ഇൻസ്റ്റാൾ ചെയ്യുക"),
("Peer exit", "മറുഭാഗത്തുനിന്ന് പുറത്തുകടന്നു"),
("Failed to turn off", "ഓഫ് ചെയ്യുന്നതിൽ പരാജയപ്പെട്ടു"),
("Turned off", "ഓഫ് ചെയ്തു"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "ഫിംഗർപ്രിന്റ്"),
("Copy Fingerprint", "ഫിംഗർപ്രിന്റ് കോപ്പി ചെയ്യുക"),
("no fingerprints", "ഫിംഗർപ്രിന്റുകൾ ഇല്ല"),
("Uninstall", "അൺഇൻസ്റ്റാൾ ചെയ്യുക"),
("Update", "അപ്ഡേറ്റ് ചെയ്യുക"),
("Enable", "പ്രവർത്തനക്ഷമമാക്കുക"),
("Disable", "പ്രവർത്തനരഹിതമാക്കുക"),
("Options", "ഓപ്ഷനുകൾ"),
("resolution_original_tip", "ഒറിജിനൽ റെസല്യൂഷൻ"),
("resolution_fit_local_tip", "ലോക്കൽ സ്ക്രീനിന് അനുയോജ്യം"),
("resolution_custom_tip", "കസ്റ്റം റെസല്യൂഷൻ"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "Noen aktiverte privatlivsmodus, avslutt"),
("Unsupported", "Ikke støttet"),
("Peer denied", "Motpart nektet"),
("Please install plugins", "Installer plugins"),
("Peer exit", "Motpart-Avslutt"),
("Failed to turn off", "Klarte ikke å skru av"),
("Turned off", "Avslått"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "Fingeravtrykk"),
("Copy Fingerprint", "Kopier fingeravtrykk"),
("no fingerprints", "Ingen fingeravtrykk"),
("Uninstall", "Avinstaller"),
("Update", "Oppdater"),
("Enable", "Aktiver"),
("Disable", "Deaktiver"),
("Options", "Alternativer"),
("resolution_original_tip", "Original oppløsning"),
("resolution_fit_local_tip", "Tilpass til lokal oppløsning"),
("resolution_custom_tip", "Tilpasset oppløsning"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "Iemand schakelt privacymodus in, afsluiten"),
("Unsupported", "Niet ondersteund"),
("Peer denied", "Peer geweigerd"),
("Please install plugins", "Plugins installeren"),
("Peer exit", "Peer afgesloten"),
("Failed to turn off", "Uitschakelen mislukt"),
("Turned off", "Uitgeschakeld"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "Vingerafdruk"),
("Copy Fingerprint", "Vingerafdruk kopiëren"),
("no fingerprints", "geen vingerafdrukken"),
("Uninstall", "Verwijderen"),
("Update", "Bijwerken"),
("Enable", "Activeren"),
("Disable", "Deactiveren"),
("Options", "Opties"),
("resolution_original_tip", "Oorspronkelijke resolutie"),
("resolution_fit_local_tip", "Lokale resolutie aanpassen"),
("resolution_custom_tip", "Aangepaste resolutie"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "Ktoś włącza tryb prywatności, wyjdź"),
("Unsupported", "Niewspierane"),
("Peer denied", "Odmowa dostępu"),
("Please install plugins", "Zainstaluj wtyczkę"),
("Peer exit", "Wyjście ze zdalnego urządzenia"),
("Failed to turn off", "Nie udało się wyłączyć"),
("Turned off", "Wyłączony"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "Sygnatura"),
("Copy Fingerprint", "Skopiuj sygnaturę"),
("no fingerprints", "brak sygnatur"),
("Uninstall", "Odinstaluj"),
("Update", "Aktualizuj"),
("Enable", "Włącz"),
("Disable", "Wyłącz"),
("Options", "Opcje"),
("resolution_original_tip", "Oryginalna rozdzielczość"),
("resolution_fit_local_tip", "Dostosuj rozdzielczość lokalną"),
("resolution_custom_tip", "Rozdzielczość niestandardowa"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "Alguém activou o modo de privacidade, desligue"),
("Unsupported", "Sem suporte"),
("Peer denied", "Remoto negado"),
("Please install plugins", "Por favor instale plugins"),
("Peer exit", "Saída do Remoto"),
("Failed to turn off", "Falha ao desligar"),
("Turned off", "Desligado"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "Impressão digital"),
("Copy Fingerprint", "Copiar impressão digital"),
("no fingerprints", "Sem impressões digitais"),
("Uninstall", "Desinstalar"),
("Update", "Atualizar"),
("Enable", "Ativar"),
("Disable", "Desativar"),
("Options", "Opções"),
("resolution_original_tip", "Resolução original"),
("resolution_fit_local_tip", "Ajustar à resolução local"),
("resolution_custom_tip", "Resolução personalizada"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "Alguém habilitou o modo de privacidade, sair"),
("Unsupported", "Não suportado"),
("Peer denied", "Parceiro negou"),
("Please install plugins", "Por favor instale plugins"),
("Peer exit", "Parceiro saiu"),
("Failed to turn off", "Falha ao desligar"),
("Turned off", "Desligado"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "Impressão Digital"),
("Copy Fingerprint", "Copiar Impressão Digital"),
("no fingerprints", "sem Impressões Digitais"),
("Uninstall", "Desinstalar"),
("Update", "Atualizar"),
("Enable", "Habilitar"),
("Disable", "Desabilitar"),
("Options", "Opções"),
("resolution_original_tip", "Resolução original"),
("resolution_fit_local_tip", "Adequar à resolução local"),
("resolution_custom_tip", "Customizar resolução"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "Cineva activează modul privat, ieși din"),
("Unsupported", "Neacceptat"),
("Peer denied", "Dispozitiv pereche refuzat"),
("Please install plugins", "Instalează pluginuri"),
("Peer exit", "Ieșire dispozitiv pereche"),
("Failed to turn off", "Dezactivare nereușită"),
("Turned off", "Închis"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "Amprentă digitală"),
("Copy Fingerprint", "Copiază amprenta digitală"),
("no fingerprints", "Nicio amprentă digitală"),
("Uninstall", "Dezinstalează"),
("Update", "Actualizează"),
("Enable", "Activează"),
("Disable", "Dezactivează"),
("Options", "Opțiuni"),
("resolution_original_tip", "Rezoluție originală"),
("resolution_fit_local_tip", "Adaptează la rezoluția locală"),
("resolution_custom_tip", "Rezoluție personalizată"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "Кто-то включил режим конфиденциальности, выход"),
("Unsupported", "Не поддерживается"),
("Peer denied", "Отклонено удалённым узлом"),
("Please install plugins", "Установите плагины"),
("Peer exit", "Отключено пользователем"),
("Failed to turn off", "Невозможно отключить"),
("Turned off", "Отключён"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "Отпечаток"),
("Copy Fingerprint", "Копировать отпечаток"),
("no fingerprints", "отпечатки отсутствуют"),
("Uninstall", "Удалить"),
("Update", "Обновить"),
("Enable", "Включить"),
("Disable", "Отключить"),
("Options", "Настройки"),
("resolution_original_tip", "Исходное разрешение"),
("resolution_fit_local_tip", "Соответствие локальному разрешению"),
("resolution_custom_tip", "Произвольное разрешение"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "Calicunu at allutu sa modalidade de riservadesa, essida"),
("Unsupported", "Non suportadu"),
("Peer denied", "Atzessu negadu a su dispositivu remotu"),
("Please install plugins", "Installa sos cumplementos"),
("Peer exit", "Essida dae su dispostivu remotu"),
("Failed to turn off", "Non faghet a istudare"),
("Turned off", "Istuda"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "Firma digitale"),
("Copy Fingerprint", "Còpia firma digitale"),
("no fingerprints", "Peruna firma digitale"),
("Uninstall", "Disinstalla"),
("Update", "Atualiza"),
("Enable", "Abìlita"),
("Disable", "Disabìlita"),
("Options", "Optziones"),
("resolution_original_tip", "Risolutzione originale"),
("resolution_fit_local_tip", "Adata sa risolutzione locale"),
("resolution_custom_tip", "Risolutzione personalizada"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "Niekto zapne režim súkromia, ukončite ho"),
("Unsupported", "Nepodporované"),
("Peer denied", "Peer poprel"),
("Please install plugins", "Nainštalujte si prosím pluginy"),
("Peer exit", "Peer exit"),
("Failed to turn off", "Nepodarilo sa vypnúť"),
("Turned off", "Vypnutý"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "Odtlačok prsta"),
("Copy Fingerprint", "Kopírovať odtlačok prsta"),
("no fingerprints", "žiadne odtlačky prstov"),
("Uninstall", "Odinštalovať"),
("Update", "Aktualizovať"),
("Enable", "Povoliť"),
("Disable", "Zakázať"),
("Options", "Možnosti"),
("resolution_original_tip", "Pôvodné rozlíšenie"),
("resolution_fit_local_tip", "Prispôsobiť miestne rozlíšenie"),
("resolution_custom_tip", "Vlastné rozlíšenie"),
Executable → Regular
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "Vklopljen je zasebni način, izhod"),
("Unsupported", "Ni podprto"),
("Peer denied", "Odjemalec zavrnil"),
("Please install plugins", "Namestite vključke"),
("Peer exit", "Odjemalec se je zaprl"),
("Failed to turn off", "Ni bilo mogoče izklopiti"),
("Turned off", "Izklopljeno"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "Prstni odtis"),
("Copy Fingerprint", "Kopiraj prstni odtis"),
("no fingerprints", "ni prstnega odtisa"),
("Uninstall", "Odstrani"),
("Update", "Posodobi"),
("Enable", "Omogoči"),
("Disable", "Onemogoči"),
("Options", "Možnosti"),
("resolution_original_tip", "Izvirna ločljivost"),
("resolution_fit_local_tip", "Prilagodi lokalni ločljivosti"),
("resolution_custom_tip", "Ločljivost po meri"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "Dikush ka ndezur menyrën e privatësisë , largohu"),
("Unsupported", "Nuk mbështetet"),
("Peer denied", "Peer mohohet"),
("Please install plugins", "Ju lutemi instaloni shtojcat"),
("Peer exit", "Dalje peer"),
("Failed to turn off", "Dështoi të fiket"),
("Turned off", "I fikur"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "Gjurma e gishtit"),
("Copy Fingerprint", "Kopjo gjurmën e gishtit"),
("no fingerprints", "Nuk ka gjurmë gishtash"),
("Uninstall", "Çinstalo"),
("Update", "Përditëso"),
("Enable", "Aktivizo"),
("Disable", "Çaktivizo"),
("Options", "Opsionet"),
("resolution_original_tip", "Rezolucioni origjinal"),
("resolution_fit_local_tip", "Përshtat me rezolucionin lokal"),
("resolution_custom_tip", "Rezolucion i personalizuar"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "Neko je uključio mod privatnosti, izlaz."),
("Unsupported", "Nepodržano"),
("Peer denied", "Klijent zabranjen"),
("Please install plugins", "Molimo instalirajte dodatke"),
("Peer exit", "Klijent izašao"),
("Failed to turn off", "Greška kod isključenja"),
("Turned off", "Isključeno"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "Otisak"),
("Copy Fingerprint", "Kopiraj otisak"),
("no fingerprints", "Nema otisaka"),
("Uninstall", "Deinstaliraj"),
("Update", "Ažuriraj"),
("Enable", "Omogući"),
("Disable", "Onemogući"),
("Options", "Opcije"),
("resolution_original_tip", "Originalna rezolucija"),
("resolution_fit_local_tip", "Prilagodi lokalnoj rezoluciji"),
("resolution_custom_tip", "Prilagođena rezolucija"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "Någon sätter på säkerhetesläge, avsluta"),
("Unsupported", "Stöds inte"),
("Peer denied", "Klienten nekade"),
("Please install plugins", "Var god installera plugins"),
("Peer exit", "Avsluta klient"),
("Failed to turn off", "Misslyckades med avstängning"),
("Turned off", "Avstängd"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "Fingeravtryck"),
("Copy Fingerprint", "Kopiera fingeravtryck"),
("no fingerprints", "inga fingeravtryck"),
("Uninstall", "Avinstallera"),
("Update", "Uppdatera"),
("Enable", "Aktivera"),
("Disable", "Inaktivera"),
("Options", "Inställningar"),
("resolution_original_tip", "Ursprunglig upplösning"),
("resolution_fit_local_tip", "Anpassa till lokal upplösning"),
("resolution_custom_tip", "Anpassad upplösning"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "தனியுரிமை முறை இயக்கப்பட்டது, வெளியேறு"),
("Unsupported", "ஆதரவு இல்லை"),
("Peer denied", "இணையாளர் மறுத்தார்"),
("Please install plugins", "இணைப்புகளை நிறுவுங்கள்"),
("Peer exit", "இணையாளர் வெளியேறினார்"),
("Failed to turn off", "அணைக்க முடியவில்லை"),
("Turned off", "அணைக்கப்பட்டது"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "கைரேகை"),
("Copy Fingerprint", "கைரேகை நகல்"),
("no fingerprints", "கைரேகைகள் இல்லை"),
("Uninstall", "நிறுவல் நீக்கு"),
("Update", "புதுப்பி"),
("Enable", "இயக்கு"),
("Disable", "அணை"),
("Options", "விருப்பங்கள்"),
("resolution_original_tip", "அசல் தெளிவுத்திறன்"),
("resolution_fit_local_tip", "உள்ளூர் பொருத்தம்"),
("resolution_custom_tip", "தனிப்பயன் தெளிவுத்திறன்"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", ""),
("Unsupported", ""),
("Peer denied", ""),
("Please install plugins", ""),
("Peer exit", ""),
("Failed to turn off", ""),
("Turned off", ""),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", ""),
("Copy Fingerprint", ""),
("no fingerprints", ""),
("Uninstall", ""),
("Update", ""),
("Enable", ""),
("Disable", ""),
("Options", ""),
("resolution_original_tip", ""),
("resolution_fit_local_tip", ""),
("resolution_custom_tip", ""),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "มีใครบางคนเปิดใช้งานโหมดความเป็นส่วนตัว กำลังออก"),
("Unsupported", "ไม่รองรับ"),
("Peer denied", "ถูกปฏิเสธโดยอีกฝั่ง"),
("Please install plugins", "กรุณาติดตั้งปลั๊กอิน"),
("Peer exit", "อีกฝั่งออก"),
("Failed to turn off", "การปิดล้มเหลว"),
("Turned off", "ปิด"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "ลายนิ้วมือ"),
("Copy Fingerprint", "คัดลอกลายนิ้วมือ"),
("no fingerprints", "ไม่มีลายนิ้วมือ"),
("Uninstall", "ถอนการติดตั้ง"),
("Update", "อัปเดต"),
("Enable", "เปิดใช้งาน"),
("Disable", "ปิดใช้งาน"),
("Options", "ตัวเลือก"),
("resolution_original_tip", "ความละเอียดดั้งเดิม"),
("resolution_fit_local_tip", "ความละเอียดตามต้นทาง"),
("resolution_custom_tip", "ความละเอียดแบบกำหนดเอง"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "Birisi gizlilik modunu açarsa, çık"),
("Unsupported", "desteklenmiyor"),
("Peer denied", "eş reddedildi"),
("Please install plugins", "Lütfen eklentileri yükleyin"),
("Peer exit", "Eş çıkışı"),
("Failed to turn off", "Kapatılamadı"),
("Turned off", "Kapatıldı"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "Parmak İzi"),
("Copy Fingerprint", "Parmak İzini Kopyala"),
("no fingerprints", "parmak izi yok"),
("Uninstall", "Kaldır"),
("Update", "Güncelle"),
("Enable", "Etkinleştir"),
("Disable", "Devre Dışı Bırak"),
("Options", "Seçenekler"),
("resolution_original_tip", "Orijinal çözünürlük"),
("resolution_fit_local_tip", "Yerel çözünürlüğe sığdır"),
("resolution_custom_tip", "Özel çözünürlük"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "有人開啟了隱私模式,退出"),
("Unsupported", "不支援"),
("Peer denied", "對方拒絕"),
("Please install plugins", "請安裝外掛程式"),
("Peer exit", "對方退出"),
("Failed to turn off", "關閉失敗"),
("Turned off", "已關閉"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "指紋"),
("Copy Fingerprint", "複製指紋"),
("no fingerprints", "沒有指紋"),
("Uninstall", "解除安裝"),
("Update", "更新"),
("Enable", "啟用"),
("Disable", "停用"),
("Options", "選項"),
("resolution_original_tip", "原始解析度"),
("resolution_fit_local_tip", "調整成本機解析度"),
("resolution_custom_tip", "自訂解析度"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "Хтось вмикає режим конфіденційності, вихід"),
("Unsupported", "Не підтримується"),
("Peer denied", "Відхилено віддаленим пристроєм"),
("Please install plugins", "Будь ласка, встановіть плагіни"),
("Peer exit", "Вийти з віддаленого пристрою"),
("Failed to turn off", "Не вдалося вимкнути"),
("Turned off", "Вимкнений"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "Відбитки пальців"),
("Copy Fingerprint", "Копіювати відбитки пальців"),
("no fingerprints", "немає відбитків пальців"),
("Uninstall", "Видалити"),
("Update", "Оновити"),
("Enable", "Увімкнути"),
("Disable", "Вимкнути"),
("Options", "Опції"),
("resolution_original_tip", "Початкова роздільна здатність"),
("resolution_fit_local_tip", "Припасувати поточну роздільну здатність"),
("resolution_custom_tip", "Користувацька роздільна здатність"),
-5
View File
@@ -294,7 +294,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Someone turns on privacy mode, exit", "Chế độ riêng tư đã được bật, thoát"),
("Unsupported", "Không hỗ trợ"),
("Peer denied", "Đối tác từ chối"),
("Please install plugins", "Vui lòng cài đặt plugin"),
("Peer exit", "Đối tác đã thoát"),
("Failed to turn off", "Không thể tắt"),
("Turned off", "Đã tắt"),
@@ -483,11 +482,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Fingerprint", "Dấu vân tay"),
("Copy Fingerprint", "Sao chép fingerprint"),
("no fingerprints", "không có fingerprint"),
("Uninstall", "Gỡ cài đặt"),
("Update", "Cập nhật"),
("Enable", "Bật"),
("Disable", "Tắt"),
("Options", "Tùy chọn"),
("resolution_original_tip", "Độ phân giải gốc"),
("resolution_fit_local_tip", "Vừa với máy cục bộ"),
("resolution_custom_tip", "Độ phân giải tùy chỉnh"),
+1 -2
View File
@@ -1219,7 +1219,6 @@ impl Connection {
}
},
Err(err) => {
#[cfg(not(any(target_os = "android", target_os = "ios")))]
if block_input_mode {
let _ = crate::platform::block_input(true);
}
@@ -5011,7 +5010,7 @@ impl Connection {
}
} else {
crate::common::make_privacy_mode_msg(
back_notification::PrivacyModeState::PrvOnFailedPlugin,
back_notification::PrivacyModeState::PrvOnFailed,
impl_key,
)
}