file transfer - fix C: cannot be opened bug & update windows root style (This PC)
This commit is contained in:
parent
b8f73f7f00
commit
519b5fb555
@ -824,12 +824,12 @@ class _FileManagerPageState extends State<FileManagerPage>
|
|||||||
final x = offset.dx;
|
final x = offset.dx;
|
||||||
final y = offset.dy + size.height + 1;
|
final y = offset.dy + size.height + 1;
|
||||||
|
|
||||||
final peerPlatform = (await bind.sessionGetPlatform(
|
final isPeerWindows = isWindows(isLocal);
|
||||||
id: _ffi.id, isRemote: !isLocal))
|
|
||||||
.toLowerCase();
|
|
||||||
final List<MenuEntryBase> menuItems = [
|
final List<MenuEntryBase> menuItems = [
|
||||||
MenuEntryButton(
|
MenuEntryButton(
|
||||||
childBuilder: (TextStyle? style) => Text(
|
childBuilder: (TextStyle? style) => isPeerWindows
|
||||||
|
? buildWindowsThisPC(style)
|
||||||
|
: Text(
|
||||||
'/',
|
'/',
|
||||||
style: style,
|
style: style,
|
||||||
),
|
),
|
||||||
@ -839,7 +839,7 @@ class _FileManagerPageState extends State<FileManagerPage>
|
|||||||
dismissOnClicked: true),
|
dismissOnClicked: true),
|
||||||
MenuEntryDivider()
|
MenuEntryDivider()
|
||||||
];
|
];
|
||||||
if (peerPlatform == "windows") {
|
if (isPeerWindows) {
|
||||||
var loadingTag = "";
|
var loadingTag = "";
|
||||||
if (!isLocal) {
|
if (!isLocal) {
|
||||||
loadingTag = _ffi.dialogManager.showLoading("Waiting");
|
loadingTag = _ffi.dialogManager.showLoading("Waiting");
|
||||||
@ -865,7 +865,8 @@ class _FileManagerPageState extends State<FileManagerPage>
|
|||||||
)
|
)
|
||||||
]),
|
]),
|
||||||
proc: () {
|
proc: () {
|
||||||
openDirectory(entry.name, isLocal: isLocal);
|
openDirectory('${entry.name}\\',
|
||||||
|
isLocal: isLocal);
|
||||||
},
|
},
|
||||||
dismissOnClicked: true));
|
dismissOnClicked: true));
|
||||||
}
|
}
|
||||||
@ -898,11 +899,29 @@ class _FileManagerPageState extends State<FileManagerPage>
|
|||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Widget buildWindowsThisPC([TextStyle? textStyle]) {
|
||||||
|
final color = Theme.of(context).iconTheme.color?.withOpacity(0.7);
|
||||||
|
return Row(children: [
|
||||||
|
Icon(Icons.computer, size: 20, color: color),
|
||||||
|
SizedBox(width: 10),
|
||||||
|
Text(translate('This PC'), style: textStyle)
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
List<BreadCrumbItem> getPathBreadCrumbItems(
|
List<BreadCrumbItem> getPathBreadCrumbItems(
|
||||||
bool isLocal, void Function(List<String>) onPressed) {
|
bool isLocal, void Function(List<String>) onPressed) {
|
||||||
final path = model.getCurrentDir(isLocal).path;
|
final path = model.getCurrentDir(isLocal).path;
|
||||||
final list = PathUtil.split(path, model.getCurrentIsWindows(isLocal));
|
|
||||||
final breadCrumbList = List<BreadCrumbItem>.empty(growable: true);
|
final breadCrumbList = List<BreadCrumbItem>.empty(growable: true);
|
||||||
|
if (isWindows(isLocal) && path == '/') {
|
||||||
|
breadCrumbList.add(BreadCrumbItem(
|
||||||
|
content: TextButton(
|
||||||
|
child: buildWindowsThisPC(),
|
||||||
|
style: ButtonStyle(
|
||||||
|
minimumSize: MaterialStateProperty.all(Size(0, 0))),
|
||||||
|
onPressed: () => onPressed(['/']))
|
||||||
|
.marginSymmetric(horizontal: 4)));
|
||||||
|
} else {
|
||||||
|
final list = PathUtil.split(path, model.getCurrentIsWindows(isLocal));
|
||||||
breadCrumbList.addAll(list.asMap().entries.map((e) => BreadCrumbItem(
|
breadCrumbList.addAll(list.asMap().entries.map((e) => BreadCrumbItem(
|
||||||
content: TextButton(
|
content: TextButton(
|
||||||
child: Text(e.value),
|
child: Text(e.value),
|
||||||
@ -910,9 +929,18 @@ class _FileManagerPageState extends State<FileManagerPage>
|
|||||||
minimumSize: MaterialStateProperty.all(Size(0, 0))),
|
minimumSize: MaterialStateProperty.all(Size(0, 0))),
|
||||||
onPressed: () => onPressed(list.sublist(0, e.key + 1)))
|
onPressed: () => onPressed(list.sublist(0, e.key + 1)))
|
||||||
.marginSymmetric(horizontal: 4))));
|
.marginSymmetric(horizontal: 4))));
|
||||||
|
}
|
||||||
return breadCrumbList;
|
return breadCrumbList;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool isWindows(bool isLocal) {
|
||||||
|
if (isLocal) {
|
||||||
|
return Platform.isWindows;
|
||||||
|
} else {
|
||||||
|
return _ffi.ffiModel.pi.platform.toLowerCase() == "windows";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
breadCrumbScrollToEnd(bool isLocal) {
|
breadCrumbScrollToEnd(bool isLocal) {
|
||||||
Future.delayed(Duration(milliseconds: 200), () {
|
Future.delayed(Duration(milliseconds: 200), () {
|
||||||
final breadCrumbScroller = getBreadCrumbScrollController(isLocal);
|
final breadCrumbScroller = getBreadCrumbScrollController(isLocal);
|
||||||
|
@ -386,5 +386,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
|||||||
("JumpLink", "查看"),
|
("JumpLink", "查看"),
|
||||||
("Please Select the screen to be shared(Operate on the peer side).", "请选择要分享的画面(对端操作)。"),
|
("Please Select the screen to be shared(Operate on the peer side).", "请选择要分享的画面(对端操作)。"),
|
||||||
("Show RustDesk", "显示rustdesk"),
|
("Show RustDesk", "显示rustdesk"),
|
||||||
|
("This PC", "此电脑"),
|
||||||
].iter().cloned().collect();
|
].iter().cloned().collect();
|
||||||
}
|
}
|
||||||
|
@ -385,5 +385,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
|||||||
("Wayland requires higher version of linux distro. Please try X11 desktop or change your OS.", "Wayland vyžaduje vyšší verzi linuxové distribuce. Zkuste prosím X11 desktop nebo změňte OS."),
|
("Wayland requires higher version of linux distro. Please try X11 desktop or change your OS.", "Wayland vyžaduje vyšší verzi linuxové distribuce. Zkuste prosím X11 desktop nebo změňte OS."),
|
||||||
("JumpLink", "View"),
|
("JumpLink", "View"),
|
||||||
("Please Select the screen to be shared(Operate on the peer side).", "Vyberte prosím obrazovku, kterou chcete sdílet (Ovládejte na straně protějšku)."),
|
("Please Select the screen to be shared(Operate on the peer side).", "Vyberte prosím obrazovku, kterou chcete sdílet (Ovládejte na straně protějšku)."),
|
||||||
|
("Show RustDesk", ""),
|
||||||
|
("This PC", ""),
|
||||||
].iter().cloned().collect();
|
].iter().cloned().collect();
|
||||||
}
|
}
|
||||||
|
@ -385,5 +385,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
|||||||
("Wayland requires higher version of linux distro. Please try X11 desktop or change your OS.", "Wayland kræver en højere version af linux distro. Prøv venligst X11 desktop eller skift dit OS."),
|
("Wayland requires higher version of linux distro. Please try X11 desktop or change your OS.", "Wayland kræver en højere version af linux distro. Prøv venligst X11 desktop eller skift dit OS."),
|
||||||
("JumpLink", "View"),
|
("JumpLink", "View"),
|
||||||
("Please Select the screen to be shared(Operate on the peer side).", "Vælg venligst den skærm, der skal deles (Betjen på peer-siden)."),
|
("Please Select the screen to be shared(Operate on the peer side).", "Vælg venligst den skærm, der skal deles (Betjen på peer-siden)."),
|
||||||
|
("Show RustDesk", ""),
|
||||||
|
("This PC", ""),
|
||||||
].iter().cloned().collect();
|
].iter().cloned().collect();
|
||||||
}
|
}
|
||||||
|
@ -385,5 +385,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
|||||||
("Wayland requires higher version of linux distro. Please try X11 desktop or change your OS.", "Wayland erfordert eine höhere Version der Linux-Distribution. Bitte versuchen Sie den X11-Desktop oder ändern Sie Ihr Betriebssystem."),
|
("Wayland requires higher version of linux distro. Please try X11 desktop or change your OS.", "Wayland erfordert eine höhere Version der Linux-Distribution. Bitte versuchen Sie den X11-Desktop oder ändern Sie Ihr Betriebssystem."),
|
||||||
("JumpLink", "View"),
|
("JumpLink", "View"),
|
||||||
("Please Select the screen to be shared(Operate on the peer side).", "Bitte wählen Sie den Bildschirm aus, der freigegeben werden soll (auf der Peer-Seite arbeiten)."),
|
("Please Select the screen to be shared(Operate on the peer side).", "Bitte wählen Sie den Bildschirm aus, der freigegeben werden soll (auf der Peer-Seite arbeiten)."),
|
||||||
|
("Show RustDesk", ""),
|
||||||
|
("This PC", ""),
|
||||||
].iter().cloned().collect();
|
].iter().cloned().collect();
|
||||||
}
|
}
|
||||||
|
@ -385,5 +385,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
|||||||
("Wayland requires higher version of linux distro. Please try X11 desktop or change your OS.", "Wayland postulas pli altan version de linuksa distro. Bonvolu provi X11-labortablon aŭ ŝanĝi vian OS."),
|
("Wayland requires higher version of linux distro. Please try X11 desktop or change your OS.", "Wayland postulas pli altan version de linuksa distro. Bonvolu provi X11-labortablon aŭ ŝanĝi vian OS."),
|
||||||
("JumpLink", "View"),
|
("JumpLink", "View"),
|
||||||
("Please Select the screen to be shared(Operate on the peer side).", "Bonvolu Elekti la ekranon por esti dividita (Funkciu ĉe la sama flanko)."),
|
("Please Select the screen to be shared(Operate on the peer side).", "Bonvolu Elekti la ekranon por esti dividita (Funkciu ĉe la sama flanko)."),
|
||||||
|
("Show RustDesk", ""),
|
||||||
|
("This PC", ""),
|
||||||
].iter().cloned().collect();
|
].iter().cloned().collect();
|
||||||
}
|
}
|
||||||
|
@ -278,7 +278,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
|||||||
("android_stop_service_tip", "Cerrar el servicio cerrará automáticamente todas las conexiones establecidas."),
|
("android_stop_service_tip", "Cerrar el servicio cerrará automáticamente todas las conexiones establecidas."),
|
||||||
("android_version_audio_tip", "La versión actual de Android no admite la captura de audio, actualice a Android 10 o posterior."),
|
("android_version_audio_tip", "La versión actual de Android no admite la captura de audio, actualice a Android 10 o posterior."),
|
||||||
("android_start_service_tip", "Toque el permiso [Iniciar servicio] o ABRIR [Captura de pantalla] para iniciar el servicio de uso compartido de pantalla."),
|
("android_start_service_tip", "Toque el permiso [Iniciar servicio] o ABRIR [Captura de pantalla] para iniciar el servicio de uso compartido de pantalla."),
|
||||||
("Account", ""),
|
("Account", "Cuenta"),
|
||||||
("Overwrite", "Sobrescribir"),
|
("Overwrite", "Sobrescribir"),
|
||||||
("This file exists, skip or overwrite this file?", "Este archivo existe, ¿omitir o sobrescribir este archivo?"),
|
("This file exists, skip or overwrite this file?", "Este archivo existe, ¿omitir o sobrescribir este archivo?"),
|
||||||
("Quit", "Salir"),
|
("Quit", "Salir"),
|
||||||
@ -385,5 +385,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
|||||||
("Wayland requires higher version of linux distro. Please try X11 desktop or change your OS.", "Wayland requiere una versión superior de la distribución de Linux. Pruebe el escritorio X11 o cambie su sistema operativo."),
|
("Wayland requires higher version of linux distro. Please try X11 desktop or change your OS.", "Wayland requiere una versión superior de la distribución de Linux. Pruebe el escritorio X11 o cambie su sistema operativo."),
|
||||||
("JumpLink", "Ver"),
|
("JumpLink", "Ver"),
|
||||||
("Please Select the screen to be shared(Operate on the peer side).", "Seleccione la pantalla que se compartirá (Operar en el lado del par)."),
|
("Please Select the screen to be shared(Operate on the peer side).", "Seleccione la pantalla que se compartirá (Operar en el lado del par)."),
|
||||||
|
("Show RustDesk", ""),
|
||||||
|
("This PC", ""),
|
||||||
].iter().cloned().collect();
|
].iter().cloned().collect();
|
||||||
}
|
}
|
||||||
|
@ -385,5 +385,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
|||||||
("Wayland requires higher version of linux distro. Please try X11 desktop or change your OS.", "Wayland nécessite une version supérieure de la distribution Linux. Veuillez essayer le bureau X11 ou changer votre système d'exploitation."),
|
("Wayland requires higher version of linux distro. Please try X11 desktop or change your OS.", "Wayland nécessite une version supérieure de la distribution Linux. Veuillez essayer le bureau X11 ou changer votre système d'exploitation."),
|
||||||
("JumpLink", "View"),
|
("JumpLink", "View"),
|
||||||
("Please Select the screen to be shared(Operate on the peer side).", "Veuillez sélectionner l'écran à partager (opérer du côté pair)."),
|
("Please Select the screen to be shared(Operate on the peer side).", "Veuillez sélectionner l'écran à partager (opérer du côté pair)."),
|
||||||
|
("Show RustDesk", ""),
|
||||||
|
("This PC", ""),
|
||||||
].iter().cloned().collect();
|
].iter().cloned().collect();
|
||||||
}
|
}
|
||||||
|
@ -385,5 +385,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
|||||||
("Wayland requires higher version of linux distro. Please try X11 desktop or change your OS.", "A Wayland a Linux disztró magasabb verzióját igényli. Próbálja ki az X11 desktopot, vagy változtassa meg az operációs rendszert."),
|
("Wayland requires higher version of linux distro. Please try X11 desktop or change your OS.", "A Wayland a Linux disztró magasabb verzióját igényli. Próbálja ki az X11 desktopot, vagy változtassa meg az operációs rendszert."),
|
||||||
("JumpLink", "View"),
|
("JumpLink", "View"),
|
||||||
("Please Select the screen to be shared(Operate on the peer side).", "Kérjük, válassza ki a megosztani kívánt képernyőt (a társoldalon működjön)."),
|
("Please Select the screen to be shared(Operate on the peer side).", "Kérjük, válassza ki a megosztani kívánt képernyőt (a társoldalon működjön)."),
|
||||||
|
("Show RustDesk", ""),
|
||||||
|
("This PC", ""),
|
||||||
].iter().cloned().collect();
|
].iter().cloned().collect();
|
||||||
}
|
}
|
||||||
|
@ -385,5 +385,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
|||||||
("Wayland requires higher version of linux distro. Please try X11 desktop or change your OS.", "Wayland membutuhkan versi distro linux yang lebih tinggi. Silakan coba desktop X11 atau ubah OS Anda."),
|
("Wayland requires higher version of linux distro. Please try X11 desktop or change your OS.", "Wayland membutuhkan versi distro linux yang lebih tinggi. Silakan coba desktop X11 atau ubah OS Anda."),
|
||||||
("JumpLink", "View"),
|
("JumpLink", "View"),
|
||||||
("Please Select the screen to be shared(Operate on the peer side).", "Silakan Pilih layar yang akan dibagikan (Operasi di sisi rekan)."),
|
("Please Select the screen to be shared(Operate on the peer side).", "Silakan Pilih layar yang akan dibagikan (Operasi di sisi rekan)."),
|
||||||
|
("Show RustDesk", ""),
|
||||||
|
("This PC", ""),
|
||||||
].iter().cloned().collect();
|
].iter().cloned().collect();
|
||||||
}
|
}
|
||||||
|
@ -385,5 +385,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
|||||||
("Wayland requires higher version of linux distro. Please try X11 desktop or change your OS.", "Wayland richiede una versione superiore della distribuzione Linux. Prova X11 desktop o cambia il tuo sistema operativo."),
|
("Wayland requires higher version of linux distro. Please try X11 desktop or change your OS.", "Wayland richiede una versione superiore della distribuzione Linux. Prova X11 desktop o cambia il tuo sistema operativo."),
|
||||||
("JumpLink", "View"),
|
("JumpLink", "View"),
|
||||||
("Please Select the screen to be shared(Operate on the peer side).", "Seleziona lo schermo da condividere (opera sul lato peer)."),
|
("Please Select the screen to be shared(Operate on the peer side).", "Seleziona lo schermo da condividere (opera sul lato peer)."),
|
||||||
|
("Show RustDesk", ""),
|
||||||
|
("This PC", ""),
|
||||||
].iter().cloned().collect();
|
].iter().cloned().collect();
|
||||||
}
|
}
|
||||||
|
@ -385,5 +385,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
|||||||
("Wayland requires higher version of linux distro. Please try X11 desktop or change your OS.", "Wayland には、より高いバージョンの Linux ディストリビューションが必要です。 X11 デスクトップを試すか、OS を変更してください。"),
|
("Wayland requires higher version of linux distro. Please try X11 desktop or change your OS.", "Wayland には、より高いバージョンの Linux ディストリビューションが必要です。 X11 デスクトップを試すか、OS を変更してください。"),
|
||||||
("JumpLink", "View"),
|
("JumpLink", "View"),
|
||||||
("Please Select the screen to be shared(Operate on the peer side).", "共有する画面を選択してください(ピア側で操作)。"),
|
("Please Select the screen to be shared(Operate on the peer side).", "共有する画面を選択してください(ピア側で操作)。"),
|
||||||
|
("Show RustDesk", ""),
|
||||||
|
("This PC", ""),
|
||||||
].iter().cloned().collect();
|
].iter().cloned().collect();
|
||||||
}
|
}
|
||||||
|
@ -385,5 +385,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
|||||||
("Wayland requires higher version of linux distro. Please try X11 desktop or change your OS.", "Wayland에는 더 높은 버전의 Linux 배포판이 필요합니다. X11 데스크탑을 시도하거나 OS를 변경하십시오."),
|
("Wayland requires higher version of linux distro. Please try X11 desktop or change your OS.", "Wayland에는 더 높은 버전의 Linux 배포판이 필요합니다. X11 데스크탑을 시도하거나 OS를 변경하십시오."),
|
||||||
("JumpLink", "View"),
|
("JumpLink", "View"),
|
||||||
("Please Select the screen to be shared(Operate on the peer side).", "공유할 화면을 선택하십시오(피어 측에서 작동)."),
|
("Please Select the screen to be shared(Operate on the peer side).", "공유할 화면을 선택하십시오(피어 측에서 작동)."),
|
||||||
|
("Show RustDesk", ""),
|
||||||
|
("This PC", ""),
|
||||||
].iter().cloned().collect();
|
].iter().cloned().collect();
|
||||||
}
|
}
|
||||||
|
@ -385,5 +385,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
|||||||
("Wayland requires higher version of linux distro. Please try X11 desktop or change your OS.", "Wayland linux дистрибутивінің жоғарырақ нұсқасын қажет етеді. X11 жұмыс үстелін қолданып көріңіз немесе операциялық жүйеңізді өзгертіңіз."),
|
("Wayland requires higher version of linux distro. Please try X11 desktop or change your OS.", "Wayland linux дистрибутивінің жоғарырақ нұсқасын қажет етеді. X11 жұмыс үстелін қолданып көріңіз немесе операциялық жүйеңізді өзгертіңіз."),
|
||||||
("JumpLink", "View"),
|
("JumpLink", "View"),
|
||||||
("Please Select the screen to be shared(Operate on the peer side).", "Бөлісетін экранды таңдаңыз (бірдей жағынан жұмыс жасаңыз)."),
|
("Please Select the screen to be shared(Operate on the peer side).", "Бөлісетін экранды таңдаңыз (бірдей жағынан жұмыс жасаңыз)."),
|
||||||
|
("Show RustDesk", ""),
|
||||||
|
("This PC", ""),
|
||||||
].iter().cloned().collect();
|
].iter().cloned().collect();
|
||||||
}
|
}
|
||||||
|
@ -116,7 +116,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
|||||||
("Good image quality", "Dobra jakość obrazu"),
|
("Good image quality", "Dobra jakość obrazu"),
|
||||||
("Balanced", "Zrównoważony"),
|
("Balanced", "Zrównoważony"),
|
||||||
("Optimize reaction time", "Zoptymalizuj czas reakcji"),
|
("Optimize reaction time", "Zoptymalizuj czas reakcji"),
|
||||||
("Custom", ""),
|
("Custom", "Własne"),
|
||||||
("Show remote cursor", "Pokazuj zdalny kursor"),
|
("Show remote cursor", "Pokazuj zdalny kursor"),
|
||||||
("Show quality monitor", "Pokazuj jakość monitora"),
|
("Show quality monitor", "Pokazuj jakość monitora"),
|
||||||
("Disable clipboard", "Wyłącz schowek"),
|
("Disable clipboard", "Wyłącz schowek"),
|
||||||
@ -385,5 +385,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
|||||||
("Wayland requires higher version of linux distro. Please try X11 desktop or change your OS.", "Wayland wymaga wyższej wersji dystrybucji Linuksa. Wypróbuj pulpit X11 lub zmień system operacyjny."),
|
("Wayland requires higher version of linux distro. Please try X11 desktop or change your OS.", "Wayland wymaga wyższej wersji dystrybucji Linuksa. Wypróbuj pulpit X11 lub zmień system operacyjny."),
|
||||||
("JumpLink", "View"),
|
("JumpLink", "View"),
|
||||||
("Please Select the screen to be shared(Operate on the peer side).", "Wybierz ekran do udostępnienia (działaj po stronie równorzędnej)."),
|
("Please Select the screen to be shared(Operate on the peer side).", "Wybierz ekran do udostępnienia (działaj po stronie równorzędnej)."),
|
||||||
|
("Show RustDesk", ""),
|
||||||
|
("This PC", ""),
|
||||||
].iter().cloned().collect();
|
].iter().cloned().collect();
|
||||||
}
|
}
|
||||||
|
@ -385,5 +385,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
|||||||
("Wayland requires higher version of linux distro. Please try X11 desktop or change your OS.", "Wayland requer uma versão superior da distribuição linux. Por favor, tente o desktop X11 ou mude seu sistema operacional."),
|
("Wayland requires higher version of linux distro. Please try X11 desktop or change your OS.", "Wayland requer uma versão superior da distribuição linux. Por favor, tente o desktop X11 ou mude seu sistema operacional."),
|
||||||
("JumpLink", "View"),
|
("JumpLink", "View"),
|
||||||
("Please Select the screen to be shared(Operate on the peer side).", "Por favor, selecione a tela a ser compartilhada (operar no lado do peer)."),
|
("Please Select the screen to be shared(Operate on the peer side).", "Por favor, selecione a tela a ser compartilhada (operar no lado do peer)."),
|
||||||
|
("Show RustDesk", ""),
|
||||||
|
("This PC", ""),
|
||||||
].iter().cloned().collect();
|
].iter().cloned().collect();
|
||||||
}
|
}
|
||||||
|
@ -385,5 +385,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
|||||||
("Wayland requires higher version of linux distro. Please try X11 desktop or change your OS.", ""),
|
("Wayland requires higher version of linux distro. Please try X11 desktop or change your OS.", ""),
|
||||||
("JumpLink", "View"),
|
("JumpLink", "View"),
|
||||||
("Please Select the screen to be shared(Operate on the peer side).", ""),
|
("Please Select the screen to be shared(Operate on the peer side).", ""),
|
||||||
|
("Show RustDesk", ""),
|
||||||
|
("This PC", ""),
|
||||||
].iter().cloned().collect();
|
].iter().cloned().collect();
|
||||||
}
|
}
|
||||||
|
@ -385,5 +385,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
|||||||
("Wayland requires higher version of linux distro. Please try X11 desktop or change your OS.", "Для Wayland требуется более поздняя версия дистрибутива Linux. Пожалуйста, попробуйте рабочий стол X11 или смените ОС."),
|
("Wayland requires higher version of linux distro. Please try X11 desktop or change your OS.", "Для Wayland требуется более поздняя версия дистрибутива Linux. Пожалуйста, попробуйте рабочий стол X11 или смените ОС."),
|
||||||
("JumpLink", "Просмотр"),
|
("JumpLink", "Просмотр"),
|
||||||
("Please Select the screen to be shared(Operate on the peer side).", "Пожалуйста, выберите экран для совместного использования (работайте на одноранговой стороне)."),
|
("Please Select the screen to be shared(Operate on the peer side).", "Пожалуйста, выберите экран для совместного использования (работайте на одноранговой стороне)."),
|
||||||
|
("Show RustDesk", ""),
|
||||||
|
("This PC", ""),
|
||||||
].iter().cloned().collect();
|
].iter().cloned().collect();
|
||||||
}
|
}
|
||||||
|
@ -385,5 +385,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
|||||||
("Wayland requires higher version of linux distro. Please try X11 desktop or change your OS.", "Wayland vyžaduje vyššiu verziu linuxovej distribúcie. Skúste X11 desktop alebo zmeňte OS."),
|
("Wayland requires higher version of linux distro. Please try X11 desktop or change your OS.", "Wayland vyžaduje vyššiu verziu linuxovej distribúcie. Skúste X11 desktop alebo zmeňte OS."),
|
||||||
("JumpLink", "View"),
|
("JumpLink", "View"),
|
||||||
("Please Select the screen to be shared(Operate on the peer side).", "Vyberte obrazovku, ktorú chcete zdieľať (Ovládajte na strane partnera)."),
|
("Please Select the screen to be shared(Operate on the peer side).", "Vyberte obrazovku, ktorú chcete zdieľať (Ovládajte na strane partnera)."),
|
||||||
|
("Show RustDesk", ""),
|
||||||
|
("This PC", ""),
|
||||||
].iter().cloned().collect();
|
].iter().cloned().collect();
|
||||||
}
|
}
|
||||||
|
@ -385,5 +385,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
|||||||
("Wayland requires higher version of linux distro. Please try X11 desktop or change your OS.", ""),
|
("Wayland requires higher version of linux distro. Please try X11 desktop or change your OS.", ""),
|
||||||
("JumpLink", ""),
|
("JumpLink", ""),
|
||||||
("Please Select the screen to be shared(Operate on the peer side).", ""),
|
("Please Select the screen to be shared(Operate on the peer side).", ""),
|
||||||
|
("Show RustDesk", ""),
|
||||||
|
("This PC", ""),
|
||||||
].iter().cloned().collect();
|
].iter().cloned().collect();
|
||||||
}
|
}
|
||||||
|
@ -385,5 +385,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
|||||||
("Wayland requires higher version of linux distro. Please try X11 desktop or change your OS.", "Wayland, linux dağıtımının daha yüksek bir sürümünü gerektirir. Lütfen X11 masaüstünü deneyin veya işletim sisteminizi değiştirin."),
|
("Wayland requires higher version of linux distro. Please try X11 desktop or change your OS.", "Wayland, linux dağıtımının daha yüksek bir sürümünü gerektirir. Lütfen X11 masaüstünü deneyin veya işletim sisteminizi değiştirin."),
|
||||||
("JumpLink", "View"),
|
("JumpLink", "View"),
|
||||||
("Please Select the screen to be shared(Operate on the peer side).", "Lütfen paylaşılacak ekranı seçiniz (Ekran tarafında çalıştırın)."),
|
("Please Select the screen to be shared(Operate on the peer side).", "Lütfen paylaşılacak ekranı seçiniz (Ekran tarafında çalıştırın)."),
|
||||||
|
("Show RustDesk", ""),
|
||||||
|
("This PC", ""),
|
||||||
].iter().cloned().collect();
|
].iter().cloned().collect();
|
||||||
}
|
}
|
||||||
|
@ -32,7 +32,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
|||||||
("Import Server Config", "匯入伺服器設定"),
|
("Import Server Config", "匯入伺服器設定"),
|
||||||
("Export Server Config", "導出服務器配置"),
|
("Export Server Config", "導出服務器配置"),
|
||||||
("Import server configuration successfully", "匯入伺服器設定成功"),
|
("Import server configuration successfully", "匯入伺服器設定成功"),
|
||||||
("Export server configuration successfully", ""),
|
|
||||||
("Export server configuration successfully", "導出服務器配置信息成功"),
|
("Export server configuration successfully", "導出服務器配置信息成功"),
|
||||||
("Invalid server configuration", "無效的伺服器設定"),
|
("Invalid server configuration", "無效的伺服器設定"),
|
||||||
("Clipboard is empty", "剪貼簿是空的"),
|
("Clipboard is empty", "剪貼簿是空的"),
|
||||||
@ -386,5 +385,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
|||||||
("Wayland requires higher version of linux distro. Please try X11 desktop or change your OS.", "Wayland 需要更高版本的 linux 發行版。 請嘗試 X11 桌面或更改您的操作系統。"),
|
("Wayland requires higher version of linux distro. Please try X11 desktop or change your OS.", "Wayland 需要更高版本的 linux 發行版。 請嘗試 X11 桌面或更改您的操作系統。"),
|
||||||
("JumpLink", "查看"),
|
("JumpLink", "查看"),
|
||||||
("Please Select the screen to be shared(Operate on the peer side).", "請選擇要分享的畫面(在對端操作)。"),
|
("Please Select the screen to be shared(Operate on the peer side).", "請選擇要分享的畫面(在對端操作)。"),
|
||||||
|
("Show RustDesk", ""),
|
||||||
|
("This PC", ""),
|
||||||
].iter().cloned().collect();
|
].iter().cloned().collect();
|
||||||
}
|
}
|
||||||
|
@ -385,5 +385,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
|||||||
("Wayland requires higher version of linux distro. Please try X11 desktop or change your OS.", "Для Wayland потрібна новіша версія дистрибутива Linux. Будь ласка, спробуйте робочий стіл X11 або змініть свою ОС."),
|
("Wayland requires higher version of linux distro. Please try X11 desktop or change your OS.", "Для Wayland потрібна новіша версія дистрибутива Linux. Будь ласка, спробуйте робочий стіл X11 або змініть свою ОС."),
|
||||||
("JumpLink", "View"),
|
("JumpLink", "View"),
|
||||||
("Please Select the screen to be shared(Operate on the peer side).", "Будь ласка, виберіть екран, до якого потрібно надати доступ (працюйте на стороні однорангового пристрою)."),
|
("Please Select the screen to be shared(Operate on the peer side).", "Будь ласка, виберіть екран, до якого потрібно надати доступ (працюйте на стороні однорангового пристрою)."),
|
||||||
|
("Show RustDesk", ""),
|
||||||
|
("This PC", ""),
|
||||||
].iter().cloned().collect();
|
].iter().cloned().collect();
|
||||||
}
|
}
|
||||||
|
@ -385,5 +385,7 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
|
|||||||
("Wayland requires higher version of linux distro. Please try X11 desktop or change your OS.", "Wayland yêu cầu phiên bản distro linux cao hơn. Vui lòng thử máy tính để bàn X11 hoặc thay đổi hệ điều hành của bạn."),
|
("Wayland requires higher version of linux distro. Please try X11 desktop or change your OS.", "Wayland yêu cầu phiên bản distro linux cao hơn. Vui lòng thử máy tính để bàn X11 hoặc thay đổi hệ điều hành của bạn."),
|
||||||
("JumpLink", "View"),
|
("JumpLink", "View"),
|
||||||
("Please Select the screen to be shared(Operate on the peer side).", "Vui lòng Chọn màn hình để chia sẻ (Hoạt động ở phía ngang hàng)."),
|
("Please Select the screen to be shared(Operate on the peer side).", "Vui lòng Chọn màn hình để chia sẻ (Hoạt động ở phía ngang hàng)."),
|
||||||
|
("Show RustDesk", ""),
|
||||||
|
("This PC", ""),
|
||||||
].iter().cloned().collect();
|
].iter().cloned().collect();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user