2020-10-25 18:35:16 +00:00
|
|
|
#include <switch.h>
|
|
|
|
|
2022-08-01 16:01:10 +00:00
|
|
|
#include "language.hpp"
|
2020-10-25 18:35:16 +00:00
|
|
|
|
|
|
|
// TODO: Japanese
|
|
|
|
static const char *strings_jp[] {
|
|
|
|
"OK",
|
|
|
|
"Cancel",
|
|
|
|
|
|
|
|
"Options",
|
|
|
|
"Select All",
|
|
|
|
"Clear All",
|
|
|
|
"Properties",
|
|
|
|
"Rename",
|
|
|
|
"New Folder",
|
|
|
|
"New File",
|
|
|
|
"Copy",
|
|
|
|
"Move",
|
|
|
|
"Paste",
|
|
|
|
"Delete",
|
|
|
|
"Set Archive Bit",
|
|
|
|
"Enter name",
|
|
|
|
"Enter folder name",
|
|
|
|
"Enter file name",
|
|
|
|
"Copying:",
|
|
|
|
|
|
|
|
"Name: ",
|
|
|
|
"Size: ",
|
|
|
|
"Created: ",
|
|
|
|
"Modified: ",
|
|
|
|
"Accessed: ",
|
|
|
|
"Width: ",
|
|
|
|
"Height: ",
|
|
|
|
|
|
|
|
"This action cannot be undone.",
|
|
|
|
"Do you wish to delete the following:",
|
|
|
|
"Do you wish to delete ",
|
|
|
|
|
|
|
|
"Extract archive",
|
|
|
|
"This action may take a while.",
|
|
|
|
"Do you wish to extract ",
|
|
|
|
"Extracting:",
|
|
|
|
|
|
|
|
"Settings",
|
|
|
|
"Sort Settings",
|
2020-10-25 21:40:24 +00:00
|
|
|
"Language",
|
2022-08-06 15:33:30 +00:00
|
|
|
"USB",
|
|
|
|
"Unmount USB devices",
|
2020-10-25 18:35:16 +00:00
|
|
|
"Image Viewer",
|
|
|
|
"Developer Options",
|
2022-08-07 03:39:40 +00:00
|
|
|
"Multiple Character Set (Improves boot speed when disabled)",
|
2020-10-25 18:35:16 +00:00
|
|
|
"About",
|
|
|
|
"Check for Updates",
|
|
|
|
" Display filename",
|
|
|
|
" Enable logs",
|
2022-08-07 03:39:40 +00:00
|
|
|
" Enable support for special symbols/characters",
|
2020-10-25 18:35:16 +00:00
|
|
|
"version",
|
|
|
|
"Author",
|
|
|
|
"Banner",
|
|
|
|
|
|
|
|
"Update",
|
|
|
|
"Could not connect to network.",
|
|
|
|
"An update is available.",
|
|
|
|
"Do you wish to download and install NX-Shell version ",
|
|
|
|
"Update was successful.",
|
|
|
|
"Please exit and rerun the application.",
|
2020-10-25 21:49:00 +00:00
|
|
|
"You are on the latest version.",
|
|
|
|
|
2022-08-06 15:33:30 +00:00
|
|
|
"Do you wish to unmount all the connected USB devices?",
|
|
|
|
"The USB device can now be safely removed.",
|
|
|
|
|
2020-10-25 21:49:00 +00:00
|
|
|
"The name cannot be empty."
|
2020-10-25 18:35:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const char *strings_en[] {
|
|
|
|
"OK",
|
|
|
|
"Cancel",
|
|
|
|
|
|
|
|
"Options",
|
|
|
|
"Select All",
|
|
|
|
"Clear All",
|
|
|
|
"Properties",
|
|
|
|
"Rename",
|
|
|
|
"New Folder",
|
|
|
|
"New File",
|
|
|
|
"Copy",
|
|
|
|
"Move",
|
|
|
|
"Paste",
|
|
|
|
"Delete",
|
|
|
|
"Set Archive Bit",
|
|
|
|
"Enter name",
|
|
|
|
"Enter folder name",
|
|
|
|
"Enter file name",
|
|
|
|
"Copying:",
|
|
|
|
|
|
|
|
"Name: ",
|
|
|
|
"Size: ",
|
|
|
|
"Created: ",
|
|
|
|
"Modified: ",
|
|
|
|
"Accessed: ",
|
|
|
|
"Width: ",
|
|
|
|
"Height: ",
|
|
|
|
|
|
|
|
"This action cannot be undone.",
|
|
|
|
"Do you wish to delete the following:",
|
|
|
|
"Do you wish to delete ",
|
|
|
|
|
|
|
|
"Extract archive",
|
|
|
|
"This action may take a while.",
|
|
|
|
"Do you wish to extract ",
|
|
|
|
"Extracting:",
|
|
|
|
|
|
|
|
"Settings",
|
|
|
|
"Sort Settings",
|
2020-10-25 21:40:24 +00:00
|
|
|
"Language",
|
2022-08-06 15:33:30 +00:00
|
|
|
"USB",
|
|
|
|
"Unmount USB devices",
|
2020-10-25 18:35:16 +00:00
|
|
|
"Image Viewer",
|
|
|
|
"Developer Options",
|
2022-08-07 03:39:40 +00:00
|
|
|
"Multiple Character Set (Improves boot speed when disabled)",
|
2020-10-25 18:35:16 +00:00
|
|
|
"About",
|
|
|
|
"Check for Updates",
|
|
|
|
" Display filename",
|
|
|
|
" Enable logs",
|
2022-08-07 03:39:40 +00:00
|
|
|
" Enable support for special symbols/characters",
|
2020-10-25 18:35:16 +00:00
|
|
|
"version",
|
|
|
|
"Author",
|
|
|
|
"Banner",
|
|
|
|
|
|
|
|
"Update",
|
|
|
|
"Could not connect to network.",
|
|
|
|
"An update is available.",
|
|
|
|
"Do you wish to download and install NX-Shell version ",
|
|
|
|
"Update was successful.",
|
|
|
|
"Please exit and rerun the application.",
|
2020-10-25 21:49:00 +00:00
|
|
|
"You are on the latest version.",
|
|
|
|
|
2022-08-06 15:33:30 +00:00
|
|
|
"Do you wish to unmount all the connected USB devices?",
|
|
|
|
"The USB device can now be safely removed.",
|
|
|
|
|
2020-10-25 21:49:00 +00:00
|
|
|
"The name cannot be empty."
|
2020-10-25 18:35:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// TODO: French
|
|
|
|
static const char *strings_fr[] {
|
|
|
|
"OK",
|
|
|
|
"Cancel",
|
|
|
|
|
|
|
|
"Options",
|
|
|
|
"Select All",
|
|
|
|
"Clear All",
|
|
|
|
"Properties",
|
|
|
|
"Rename",
|
|
|
|
"New Folder",
|
|
|
|
"New File",
|
|
|
|
"Copy",
|
|
|
|
"Move",
|
|
|
|
"Paste",
|
|
|
|
"Delete",
|
|
|
|
"Set Archive Bit",
|
|
|
|
"Enter name",
|
|
|
|
"Enter folder name",
|
|
|
|
"Enter file name",
|
|
|
|
"Copying:",
|
|
|
|
|
|
|
|
"Name: ",
|
|
|
|
"Size: ",
|
|
|
|
"Created: ",
|
|
|
|
"Modified: ",
|
|
|
|
"Accessed: ",
|
|
|
|
"Width: ",
|
|
|
|
"Height: ",
|
|
|
|
|
|
|
|
"This action cannot be undone.",
|
|
|
|
"Do you wish to delete the following:",
|
|
|
|
"Do you wish to delete ",
|
|
|
|
|
|
|
|
"Extract archive",
|
|
|
|
"This action may take a while.",
|
|
|
|
"Do you wish to extract ",
|
|
|
|
"Extracting:",
|
|
|
|
|
|
|
|
"Settings",
|
|
|
|
"Sort Settings",
|
2020-10-25 21:40:24 +00:00
|
|
|
"Language",
|
2022-08-06 15:33:30 +00:00
|
|
|
"USB",
|
|
|
|
"Unmount USB devices",
|
2020-10-25 18:35:16 +00:00
|
|
|
"Image Viewer",
|
|
|
|
"Developer Options",
|
2022-08-07 03:39:40 +00:00
|
|
|
"Multiple Character Set (Improves boot speed when disabled)",
|
2020-10-25 18:35:16 +00:00
|
|
|
"About",
|
|
|
|
"Check for Updates",
|
|
|
|
" Display filename",
|
|
|
|
" Enable logs",
|
2022-08-07 03:39:40 +00:00
|
|
|
" Enable support for special symbols/characters",
|
2020-10-25 18:35:16 +00:00
|
|
|
"version",
|
|
|
|
"Author",
|
|
|
|
"Banner",
|
|
|
|
|
|
|
|
"Update",
|
|
|
|
"Could not connect to network.",
|
|
|
|
"An update is available.",
|
|
|
|
"Do you wish to download and install NX-Shell version ",
|
|
|
|
"Update was successful.",
|
|
|
|
"Please exit and rerun the application.",
|
2020-10-25 21:49:00 +00:00
|
|
|
"You are on the latest version.",
|
|
|
|
|
2022-08-06 15:33:30 +00:00
|
|
|
"Do you wish to unmount all the connected USB devices?",
|
|
|
|
"The USB device can now be safely removed.",
|
|
|
|
|
2020-10-25 21:49:00 +00:00
|
|
|
"The name cannot be empty."
|
2020-10-25 18:35:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const char *strings_de[] {
|
|
|
|
"OK",
|
2020-10-26 15:13:38 +00:00
|
|
|
"Abbrechen",
|
|
|
|
|
|
|
|
"Optionen",
|
|
|
|
"Alle auswählen",
|
|
|
|
"Alle entfernen",
|
|
|
|
"Eigenschaften",
|
|
|
|
"Umbenennen",
|
|
|
|
"Neuer Ordner",
|
|
|
|
"Neue Datei",
|
|
|
|
"Kopieren",
|
|
|
|
"Verschieben",
|
|
|
|
"Einfügen",
|
|
|
|
"Löschen",
|
|
|
|
"\"Archive Bit\" setzen",
|
|
|
|
"Name eingeben",
|
|
|
|
"Ordnername eingeben",
|
|
|
|
"Dateiname eingeben",
|
|
|
|
"Kopiere:",
|
2020-10-25 18:35:16 +00:00
|
|
|
|
|
|
|
"Name: ",
|
2020-10-26 15:13:38 +00:00
|
|
|
"Größe: ",
|
|
|
|
"Erstellt: ",
|
|
|
|
"Geändert: ",
|
|
|
|
"Zugegriffen: ",
|
|
|
|
"Breite: ",
|
|
|
|
"Höhe: ",
|
|
|
|
|
|
|
|
"Dies kann nicht rückgängig gemacht werden.",
|
|
|
|
"Möchten Sie Folgendes löschen:",
|
|
|
|
"Möchten Sie Folgendes löschen:",
|
|
|
|
|
|
|
|
"Archiv entpacken",
|
|
|
|
"Dies kann eine Weile dauern.",
|
|
|
|
"Möchten Sie Folgendes extrahieren:",
|
|
|
|
"Extrahiere:",
|
|
|
|
|
|
|
|
"Einstellungen",
|
|
|
|
"Sortiereinstellung",
|
|
|
|
"Sprache",
|
2022-08-06 15:33:30 +00:00
|
|
|
"USB",
|
|
|
|
"Unmount USB devices",
|
2020-10-26 15:13:38 +00:00
|
|
|
"Bildanzeige",
|
|
|
|
"Entwickleroptionen",
|
2022-08-07 03:39:40 +00:00
|
|
|
"Multiple Character Set (Improves boot speed when disabled)",
|
2020-10-26 15:13:38 +00:00
|
|
|
"Über",
|
|
|
|
"Nach Updates suchen",
|
|
|
|
" Dateiname anzeigen",
|
|
|
|
" Log aktivieren",
|
2022-08-07 03:39:40 +00:00
|
|
|
" Enable support for special symbols/characters",
|
2020-10-26 15:13:38 +00:00
|
|
|
"Version",
|
|
|
|
"Autor",
|
2020-10-25 18:35:16 +00:00
|
|
|
"Banner",
|
|
|
|
|
|
|
|
"Update",
|
2020-10-26 15:13:38 +00:00
|
|
|
"Es konnte keine Verbindung zum Netzwerk herstellt werden.",
|
|
|
|
"Ein Update ist verfügbar.",
|
|
|
|
"Möchten Sie die folgende NX-Shell-Version herunterladen und installieren:",
|
|
|
|
"Update war erfolgreich.",
|
|
|
|
"Bitte beenden Sie die Anwendung und starten Sie sie erneut.",
|
|
|
|
"Sie sind bereits auf der neusten Version.",
|
|
|
|
|
2022-08-06 15:33:30 +00:00
|
|
|
"Do you wish to unmount all the connected USB devices?",
|
|
|
|
"The USB device can now be safely removed.",
|
|
|
|
|
2020-10-26 15:13:38 +00:00
|
|
|
"Der Name darf nicht leer sein."
|
2020-10-25 18:35:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// TODO: Italian
|
|
|
|
static const char *strings_it[] {
|
|
|
|
"OK",
|
|
|
|
"Cancel",
|
|
|
|
|
|
|
|
"Options",
|
|
|
|
"Select All",
|
|
|
|
"Clear All",
|
|
|
|
"Properties",
|
|
|
|
"Rename",
|
|
|
|
"New Folder",
|
|
|
|
"New File",
|
|
|
|
"Copy",
|
|
|
|
"Move",
|
|
|
|
"Paste",
|
|
|
|
"Delete",
|
|
|
|
"Set Archive Bit",
|
|
|
|
"Enter name",
|
|
|
|
"Enter folder name",
|
|
|
|
"Enter file name",
|
|
|
|
"Copying:",
|
|
|
|
|
|
|
|
"Name: ",
|
|
|
|
"Size: ",
|
|
|
|
"Created: ",
|
|
|
|
"Modified: ",
|
|
|
|
"Accessed: ",
|
|
|
|
"Width: ",
|
|
|
|
"Height: ",
|
|
|
|
|
|
|
|
"This action cannot be undone.",
|
|
|
|
"Do you wish to delete the following:",
|
|
|
|
"Do you wish to delete ",
|
|
|
|
|
|
|
|
"Extract archive",
|
|
|
|
"This action may take a while.",
|
|
|
|
"Do you wish to extract ",
|
|
|
|
"Extracting:",
|
|
|
|
|
|
|
|
"Settings",
|
|
|
|
"Sort Settings",
|
2020-10-25 21:40:24 +00:00
|
|
|
"Language",
|
2022-08-06 15:33:30 +00:00
|
|
|
"USB",
|
|
|
|
"Unmount USB devices",
|
2020-10-25 18:35:16 +00:00
|
|
|
"Image Viewer",
|
|
|
|
"Developer Options",
|
2022-08-07 03:39:40 +00:00
|
|
|
"Multiple Character Set (Improves boot speed when disabled)",
|
2020-10-25 18:35:16 +00:00
|
|
|
"About",
|
|
|
|
"Check for Updates",
|
|
|
|
" Display filename",
|
|
|
|
" Enable logs",
|
2022-08-07 03:39:40 +00:00
|
|
|
" Enable support for special symbols/characters",
|
2020-10-25 18:35:16 +00:00
|
|
|
"version",
|
|
|
|
"Author",
|
|
|
|
"Banner",
|
|
|
|
|
|
|
|
"Update",
|
|
|
|
"Could not connect to network.",
|
|
|
|
"An update is available.",
|
|
|
|
"Do you wish to download and install NX-Shell version ",
|
|
|
|
"Update was successful.",
|
|
|
|
"Please exit and rerun the application.",
|
2020-10-25 21:49:00 +00:00
|
|
|
"You are on the latest version.",
|
|
|
|
|
2022-08-06 15:33:30 +00:00
|
|
|
"Do you wish to unmount all the connected USB devices?",
|
|
|
|
"The USB device can now be safely removed.",
|
|
|
|
|
2020-10-25 21:49:00 +00:00
|
|
|
"The name cannot be empty."
|
2020-10-25 18:35:16 +00:00
|
|
|
};
|
|
|
|
|
2020-10-26 02:38:08 +00:00
|
|
|
// Spanish
|
2020-10-25 18:35:16 +00:00
|
|
|
static const char *strings_es[] {
|
2020-10-26 02:38:08 +00:00
|
|
|
"Aceptar",
|
|
|
|
"Cancelar",
|
|
|
|
|
|
|
|
"Opciones",
|
|
|
|
"Seleccionar Todo",
|
|
|
|
"Limpiar Todo",
|
|
|
|
"Propiedades",
|
|
|
|
"Renombrar",
|
|
|
|
"Nueva Carpeta",
|
|
|
|
"Nuevo Archivo",
|
|
|
|
"Copiar",
|
|
|
|
"Mover",
|
|
|
|
"Pegar",
|
|
|
|
"Eliminar",
|
|
|
|
"Establecer Bit de Archivo",
|
|
|
|
"Ingresar Nombre",
|
|
|
|
"Ingresar Nombre de Carpeta",
|
|
|
|
"Ingresar Nombre de Archivo",
|
|
|
|
"Copiando:",
|
|
|
|
|
|
|
|
"Nombre: ",
|
|
|
|
"Tamaño: ",
|
|
|
|
"Creado: ",
|
|
|
|
"Modificado: ",
|
|
|
|
"Accedido: ",
|
|
|
|
"Ancho: ",
|
|
|
|
"Alto: ",
|
|
|
|
|
|
|
|
"Esta acción no se puede deshacer.",
|
|
|
|
"Deseas eliminar lo siguiente:",
|
|
|
|
"Deseas eliminar ",
|
|
|
|
|
|
|
|
"Extraer archivo",
|
|
|
|
"Esta acción puede tomar un tiempo.",
|
|
|
|
"Deseas extraer ",
|
|
|
|
"Extrayendo:",
|
|
|
|
|
|
|
|
"Ajustes",
|
2020-10-26 13:21:36 +00:00
|
|
|
"Ajustes de organización",
|
2020-10-26 02:38:08 +00:00
|
|
|
"Idioma",
|
2022-08-06 15:33:30 +00:00
|
|
|
"USB",
|
|
|
|
"Unmount USB devices",
|
2020-10-26 02:38:08 +00:00
|
|
|
"Visualizador de Imagen",
|
|
|
|
"Opciones de Desarrollador",
|
2022-08-07 03:39:40 +00:00
|
|
|
"Multiple Character Set (Improves boot speed when disabled)",
|
2020-10-26 02:38:08 +00:00
|
|
|
"Acerca de",
|
|
|
|
"Buscar Actualizaciones",
|
|
|
|
" Mostrar nombre de archivo",
|
|
|
|
" Habilitar logs",
|
2022-08-07 03:39:40 +00:00
|
|
|
" Enable support for special symbols/characters",
|
2020-10-26 02:38:08 +00:00
|
|
|
"versión",
|
|
|
|
"Autor",
|
2020-10-25 18:35:16 +00:00
|
|
|
"Banner",
|
|
|
|
|
2020-10-26 02:38:08 +00:00
|
|
|
"Actualizar",
|
|
|
|
"No se puede conectar a la red.",
|
|
|
|
"Una actualización está disponible.",
|
|
|
|
"Deseas descargar e instalar la versión de NX-Shell ",
|
|
|
|
"Actualización exitosa.",
|
|
|
|
"Por favor cerrar y reiniciar la aplicación.",
|
|
|
|
"Estás en la última versión.",
|
2020-10-25 21:49:00 +00:00
|
|
|
|
2022-08-06 15:33:30 +00:00
|
|
|
"Do you wish to unmount all the connected USB devices?",
|
|
|
|
"The USB device can now be safely removed.",
|
|
|
|
|
2020-10-26 02:38:08 +00:00
|
|
|
"El nombre no puede estar vacío."
|
2020-10-25 18:35:16 +00:00
|
|
|
};
|
|
|
|
|
2020-10-26 01:17:30 +00:00
|
|
|
// Simplified Chinese ("Chinese")
|
2020-10-25 18:35:16 +00:00
|
|
|
static const char *strings_sc[] {
|
2020-10-26 01:17:30 +00:00
|
|
|
"确定",
|
|
|
|
"取消",
|
|
|
|
|
|
|
|
"选项",
|
|
|
|
"选择全部",
|
|
|
|
"清除全部",
|
|
|
|
"属性",
|
|
|
|
"重命名",
|
|
|
|
"新建文件夹",
|
|
|
|
"新建文件",
|
|
|
|
"复制",
|
|
|
|
"移动",
|
|
|
|
"粘贴",
|
|
|
|
"删除",
|
|
|
|
"设置存档位",
|
|
|
|
"输入名字",
|
|
|
|
"输入文件夹名",
|
|
|
|
"输入文件名",
|
|
|
|
"复制: ",
|
|
|
|
|
|
|
|
"文件名: ",
|
|
|
|
"大小: ",
|
|
|
|
"创建日期: ",
|
|
|
|
"最后修改: ",
|
|
|
|
"最后访问: ",
|
|
|
|
"宽度: ",
|
|
|
|
"高度: ",
|
|
|
|
|
|
|
|
"本操作不可逆.",
|
|
|
|
"确定删除下列文件吗:",
|
|
|
|
"确定删除吗 ",
|
|
|
|
|
|
|
|
"提取归档",
|
|
|
|
"本功能需要花费一点时间.",
|
|
|
|
"确定提取吗 ",
|
|
|
|
"提取中:",
|
|
|
|
|
|
|
|
"设置",
|
|
|
|
"排序方式",
|
|
|
|
"语言",
|
2022-08-06 15:33:30 +00:00
|
|
|
"USB",
|
|
|
|
"Unmount USB devices",
|
2020-10-26 01:17:30 +00:00
|
|
|
"图片查看器",
|
|
|
|
"开发人员选项",
|
2022-08-07 03:39:40 +00:00
|
|
|
"Multiple Character Set (Improves boot speed when disabled)",
|
2020-10-26 01:17:30 +00:00
|
|
|
"关于",
|
|
|
|
"检查更新",
|
|
|
|
" 显示文件名",
|
|
|
|
" 打开日志",
|
2022-08-07 03:39:40 +00:00
|
|
|
" Enable support for special symbols/characters",
|
2020-10-26 01:17:30 +00:00
|
|
|
"版本",
|
|
|
|
"作者",
|
|
|
|
"横幅",
|
|
|
|
|
|
|
|
"更新",
|
|
|
|
"连接网络失败.",
|
|
|
|
"有新版本的更新可用.",
|
|
|
|
"您希望下载并安装NX-Shell版本吗 ",
|
|
|
|
"更新成功.",
|
|
|
|
"请退出并重新运行应用程序.",
|
|
|
|
"你使用的是最新版本.",
|
|
|
|
|
2022-08-06 15:33:30 +00:00
|
|
|
"Do you wish to unmount all the connected USB devices?",
|
|
|
|
"The USB device can now be safely removed.",
|
|
|
|
|
2020-10-26 01:17:30 +00:00
|
|
|
"名称不能为空."
|
2020-10-25 18:35:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// TODO: Korean
|
|
|
|
static const char *strings_ko[] {
|
2022-08-07 14:04:17 +00:00
|
|
|
"확인",
|
|
|
|
"취소",
|
|
|
|
|
|
|
|
"옵션",
|
|
|
|
"모두 선택",
|
|
|
|
"모두 지움",
|
|
|
|
"속성",
|
|
|
|
"이름 바꾸기",
|
|
|
|
"새 폴더",
|
|
|
|
"새 파일",
|
|
|
|
"복사",
|
|
|
|
"이동",
|
|
|
|
"붙여넣기",
|
|
|
|
"삭제",
|
|
|
|
"아카이브 비트 설정",
|
|
|
|
"이름 입력",
|
|
|
|
"폴더 이름 입력",
|
|
|
|
"파일 이름 입력",
|
|
|
|
"복사 중:",
|
|
|
|
|
|
|
|
"이름: ",
|
|
|
|
"크기: ",
|
|
|
|
"제작: ",
|
|
|
|
"수정: ",
|
|
|
|
"접속: ",
|
|
|
|
"너비: ",
|
|
|
|
"높이: ",
|
|
|
|
|
|
|
|
"이 작업은 취소할 수 없습니다.",
|
|
|
|
"다음을 삭제하겠습니까:",
|
|
|
|
"삭제하겠습니까 ",
|
|
|
|
|
|
|
|
"파일 해제",
|
|
|
|
"이 작업은 시간이 걸릴 수 있습니다.",
|
|
|
|
"해제하겠습니까? ",
|
|
|
|
"해제 중:",
|
|
|
|
|
|
|
|
"설정",
|
|
|
|
"정렬 설정",
|
|
|
|
"언어",
|
2022-08-06 15:33:30 +00:00
|
|
|
"USB",
|
2022-08-07 14:04:17 +00:00
|
|
|
"USB 장치 마운트 해제",
|
|
|
|
"이미지 뷰어",
|
|
|
|
"개발자 옵션",
|
|
|
|
"다중 문자 세트 (비활성화 시 부팅 속도 향상)",
|
|
|
|
"정보",
|
|
|
|
"업데이트 확인",
|
|
|
|
" 파일 이름 표시",
|
|
|
|
" 로그 활성화",
|
|
|
|
" 특수 기호/문자 지원 활성화",
|
|
|
|
"버전",
|
|
|
|
"제작자",
|
|
|
|
"배너",
|
|
|
|
|
|
|
|
"업데이트",
|
|
|
|
"네트워크에 연결할 수 없습니다.",
|
|
|
|
"업데이트가 가능합니다.",
|
|
|
|
"NX-Shell 버전을 다운로드하여 설치하겠습니까? ",
|
|
|
|
"업데이트에 성공했습니다.",
|
|
|
|
"응용 프로그램을 종료하고 다시 실행하십시오.",
|
|
|
|
"최신 버전을 사용 중입니다.",
|
|
|
|
|
|
|
|
"연결된 모든 USB 장치를 마운트 해제하겠습니까?",
|
|
|
|
"이제 USB 장치를 안전하게 제거할 수 있습니다.",
|
|
|
|
|
|
|
|
"이름은 공백이 될 수 없습니다."
|
2020-10-25 18:35:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// TODO: Dutch
|
|
|
|
static const char *strings_nl[] {
|
|
|
|
"OK",
|
|
|
|
"Cancel",
|
|
|
|
|
|
|
|
"Options",
|
|
|
|
"Select All",
|
|
|
|
"Clear All",
|
|
|
|
"Properties",
|
|
|
|
"Rename",
|
|
|
|
"New Folder",
|
|
|
|
"New File",
|
|
|
|
"Copy",
|
|
|
|
"Move",
|
|
|
|
"Paste",
|
|
|
|
"Delete",
|
|
|
|
"Set Archive Bit",
|
|
|
|
"Enter name",
|
|
|
|
"Enter folder name",
|
|
|
|
"Enter file name",
|
|
|
|
"Copying:",
|
|
|
|
|
|
|
|
"Name: ",
|
|
|
|
"Size: ",
|
|
|
|
"Created: ",
|
|
|
|
"Modified: ",
|
|
|
|
"Accessed: ",
|
|
|
|
"Width: ",
|
|
|
|
"Height: ",
|
|
|
|
|
|
|
|
"This action cannot be undone.",
|
|
|
|
"Do you wish to delete the following:",
|
|
|
|
"Do you wish to delete ",
|
|
|
|
|
|
|
|
"Extract archive",
|
|
|
|
"This action may take a while.",
|
|
|
|
"Do you wish to extract ",
|
|
|
|
"Extracting:",
|
|
|
|
|
|
|
|
"Settings",
|
|
|
|
"Sort Settings",
|
2020-10-25 21:40:24 +00:00
|
|
|
"Language",
|
2022-08-06 15:33:30 +00:00
|
|
|
"USB",
|
|
|
|
"Unmount USB devices",
|
2020-10-25 18:35:16 +00:00
|
|
|
"Image Viewer",
|
|
|
|
"Developer Options",
|
2022-08-07 03:39:40 +00:00
|
|
|
"Multiple Character Set (Improves boot speed when disabled)",
|
2020-10-25 18:35:16 +00:00
|
|
|
"About",
|
|
|
|
"Check for Updates",
|
|
|
|
" Display filename",
|
|
|
|
" Enable logs",
|
2022-08-07 03:39:40 +00:00
|
|
|
" Enable support for special symbols/characters",
|
2020-10-25 18:35:16 +00:00
|
|
|
"version",
|
|
|
|
"Author",
|
|
|
|
"Banner",
|
|
|
|
|
|
|
|
"Update",
|
|
|
|
"Could not connect to network.",
|
|
|
|
"An update is available.",
|
|
|
|
"Do you wish to download and install NX-Shell version ",
|
|
|
|
"Update was successful.",
|
|
|
|
"Please exit and rerun the application.",
|
2020-10-25 21:49:00 +00:00
|
|
|
"You are on the latest version.",
|
|
|
|
|
2022-08-06 15:33:30 +00:00
|
|
|
"Do you wish to unmount all the connected USB devices?",
|
|
|
|
"The USB device can now be safely removed.",
|
|
|
|
|
2020-10-25 21:49:00 +00:00
|
|
|
"The name cannot be empty."
|
2020-10-25 18:35:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// TODO: Portuguese
|
|
|
|
static const char *strings_pt[] {
|
|
|
|
"OK",
|
|
|
|
"Cancel",
|
|
|
|
|
|
|
|
"Options",
|
|
|
|
"Select All",
|
|
|
|
"Clear All",
|
|
|
|
"Properties",
|
|
|
|
"Rename",
|
|
|
|
"New Folder",
|
|
|
|
"New File",
|
|
|
|
"Copy",
|
|
|
|
"Move",
|
|
|
|
"Paste",
|
|
|
|
"Delete",
|
|
|
|
"Set Archive Bit",
|
|
|
|
"Enter name",
|
|
|
|
"Enter folder name",
|
|
|
|
"Enter file name",
|
|
|
|
"Copying:",
|
|
|
|
|
|
|
|
"Name: ",
|
|
|
|
"Size: ",
|
|
|
|
"Created: ",
|
|
|
|
"Modified: ",
|
|
|
|
"Accessed: ",
|
|
|
|
"Width: ",
|
|
|
|
"Height: ",
|
|
|
|
|
|
|
|
"This action cannot be undone.",
|
|
|
|
"Do you wish to delete the following:",
|
|
|
|
"Do you wish to delete ",
|
|
|
|
|
|
|
|
"Extract archive",
|
|
|
|
"This action may take a while.",
|
|
|
|
"Do you wish to extract ",
|
|
|
|
"Extracting:",
|
|
|
|
|
|
|
|
"Settings",
|
|
|
|
"Sort Settings",
|
2020-10-25 21:40:24 +00:00
|
|
|
"Language",
|
2022-08-06 15:33:30 +00:00
|
|
|
"USB",
|
|
|
|
"Unmount USB devices",
|
2020-10-25 18:35:16 +00:00
|
|
|
"Image Viewer",
|
|
|
|
"Developer Options",
|
2022-08-07 03:39:40 +00:00
|
|
|
"Multiple Character Set (Improves boot speed when disabled)",
|
2020-10-25 18:35:16 +00:00
|
|
|
"About",
|
|
|
|
"Check for Updates",
|
|
|
|
" Display filename",
|
|
|
|
" Enable logs",
|
2022-08-07 03:39:40 +00:00
|
|
|
" Enable support for special symbols/characters",
|
2020-10-25 18:35:16 +00:00
|
|
|
"version",
|
|
|
|
"Author",
|
|
|
|
"Banner",
|
|
|
|
|
|
|
|
"Update",
|
|
|
|
"Could not connect to network.",
|
|
|
|
"An update is available.",
|
|
|
|
"Do you wish to download and install NX-Shell version ",
|
|
|
|
"Update was successful.",
|
|
|
|
"Please exit and rerun the application.",
|
2020-10-25 21:49:00 +00:00
|
|
|
"You are on the latest version.",
|
|
|
|
|
2022-08-06 15:33:30 +00:00
|
|
|
"Do you wish to unmount all the connected USB devices?",
|
|
|
|
"The USB device can now be safely removed.",
|
|
|
|
|
2020-10-25 21:49:00 +00:00
|
|
|
"The name cannot be empty."
|
2020-10-25 18:35:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// TODO: Russian
|
|
|
|
static const char *strings_ru[] {
|
|
|
|
"OK",
|
|
|
|
"Cancel",
|
|
|
|
|
|
|
|
"Options",
|
|
|
|
"Select All",
|
|
|
|
"Clear All",
|
|
|
|
"Properties",
|
|
|
|
"Rename",
|
|
|
|
"New Folder",
|
|
|
|
"New File",
|
|
|
|
"Copy",
|
|
|
|
"Move",
|
|
|
|
"Paste",
|
|
|
|
"Delete",
|
|
|
|
"Set Archive Bit",
|
|
|
|
"Enter name",
|
|
|
|
"Enter folder name",
|
|
|
|
"Enter file name",
|
|
|
|
"Copying:",
|
|
|
|
|
|
|
|
"Name: ",
|
|
|
|
"Size: ",
|
|
|
|
"Created: ",
|
|
|
|
"Modified: ",
|
|
|
|
"Accessed: ",
|
|
|
|
"Width: ",
|
|
|
|
"Height: ",
|
|
|
|
|
|
|
|
"This action cannot be undone.",
|
|
|
|
"Do you wish to delete the following:",
|
|
|
|
"Do you wish to delete ",
|
|
|
|
|
|
|
|
"Extract archive",
|
|
|
|
"This action may take a while.",
|
|
|
|
"Do you wish to extract ",
|
|
|
|
"Extracting:",
|
|
|
|
|
|
|
|
"Settings",
|
|
|
|
"Sort Settings",
|
2020-10-25 21:40:24 +00:00
|
|
|
"Language",
|
2022-08-06 15:33:30 +00:00
|
|
|
"USB",
|
|
|
|
"Unmount USB devices",
|
2020-10-25 18:35:16 +00:00
|
|
|
"Image Viewer",
|
|
|
|
"Developer Options",
|
2022-08-07 03:39:40 +00:00
|
|
|
"Multiple Character Set (Improves boot speed when disabled)",
|
2020-10-25 18:35:16 +00:00
|
|
|
"About",
|
|
|
|
"Check for Updates",
|
|
|
|
" Display filename",
|
|
|
|
" Enable logs",
|
2022-08-07 03:39:40 +00:00
|
|
|
" Enable support for special symbols/characters",
|
2020-10-25 18:35:16 +00:00
|
|
|
"version",
|
|
|
|
"Author",
|
|
|
|
"Banner",
|
|
|
|
|
|
|
|
"Update",
|
|
|
|
"Could not connect to network.",
|
|
|
|
"An update is available.",
|
|
|
|
"Do you wish to download and install NX-Shell version ",
|
|
|
|
"Update was successful.",
|
|
|
|
"Please exit and rerun the application.",
|
2020-10-25 21:49:00 +00:00
|
|
|
"You are on the latest version.",
|
|
|
|
|
2022-08-06 15:33:30 +00:00
|
|
|
"Do you wish to unmount all the connected USB devices?",
|
|
|
|
"The USB device can now be safely removed.",
|
|
|
|
|
2020-10-25 21:49:00 +00:00
|
|
|
"The name cannot be empty."
|
2020-10-25 18:35:16 +00:00
|
|
|
};
|
|
|
|
|
2020-10-26 02:05:37 +00:00
|
|
|
// Traditional Chinese ("Taiwanese")
|
2020-10-25 18:35:16 +00:00
|
|
|
static const char *strings_tw[] {
|
2020-10-26 02:05:37 +00:00
|
|
|
"確定",
|
|
|
|
"取消",
|
2020-10-25 18:35:16 +00:00
|
|
|
|
2020-10-26 02:05:37 +00:00
|
|
|
"選項",
|
|
|
|
"選擇全部",
|
|
|
|
"清除全部",
|
|
|
|
"屬性",
|
|
|
|
"重命名",
|
|
|
|
"新建文件夾",
|
|
|
|
"新建文件",
|
|
|
|
"復制",
|
|
|
|
"移動",
|
|
|
|
"粘貼",
|
|
|
|
"刪除",
|
|
|
|
"設置存檔位",
|
|
|
|
"輸入名字",
|
|
|
|
"輸入文件夾名",
|
|
|
|
"輸入文件名",
|
|
|
|
"復制:",
|
2020-10-25 18:35:16 +00:00
|
|
|
|
2020-10-26 02:05:37 +00:00
|
|
|
"文件名: ",
|
|
|
|
"大小: ",
|
|
|
|
"創建日期: ",
|
|
|
|
"最後修改: ",
|
|
|
|
"最後訪問: ",
|
|
|
|
"寬度: ",
|
|
|
|
"高度: ",
|
2020-10-25 18:35:16 +00:00
|
|
|
|
2020-10-26 02:05:37 +00:00
|
|
|
"本操作不可逆.",
|
|
|
|
"確定刪除下列文件嗎:",
|
|
|
|
"確定刪除嗎 ",
|
2020-10-25 18:35:16 +00:00
|
|
|
|
2020-10-26 02:05:37 +00:00
|
|
|
"提取歸檔",
|
|
|
|
"本功能需要花費壹點時間.",
|
|
|
|
"確定提取嗎 ",
|
|
|
|
"提取中:",
|
2020-10-25 18:35:16 +00:00
|
|
|
|
2020-10-26 02:05:37 +00:00
|
|
|
"設置",
|
|
|
|
"排序方式",
|
|
|
|
"語言",
|
2022-08-06 15:33:30 +00:00
|
|
|
"USB",
|
|
|
|
"Unmount USB devices",
|
2020-10-26 02:05:37 +00:00
|
|
|
"圖片查看器",
|
|
|
|
"開發人員選項",
|
2022-08-07 03:39:40 +00:00
|
|
|
"Multiple Character Set (Improves boot speed when disabled)",
|
2020-10-26 02:05:37 +00:00
|
|
|
"關於",
|
|
|
|
"檢查更新",
|
|
|
|
" 顯示文件名",
|
|
|
|
" 打開日誌",
|
2022-08-07 03:39:40 +00:00
|
|
|
" Enable support for special symbols/characters",
|
2020-10-26 02:05:37 +00:00
|
|
|
"版本",
|
|
|
|
"作者",
|
|
|
|
"橫幅",
|
2020-10-25 18:35:16 +00:00
|
|
|
|
2020-10-26 02:05:37 +00:00
|
|
|
"更新",
|
|
|
|
"連接網絡失敗.",
|
|
|
|
"有新版本的更新可用.",
|
|
|
|
"您希望下載並安裝NX-Shell版本嗎 ",
|
|
|
|
"更新成功.",
|
|
|
|
"請退出並重新運行應用程序.",
|
|
|
|
"妳使用的是最新版本.",
|
2020-10-25 21:49:00 +00:00
|
|
|
|
2022-08-06 15:33:30 +00:00
|
|
|
"Do you wish to unmount all the connected USB devices?",
|
|
|
|
"The USB device can now be safely removed.",
|
|
|
|
|
2020-10-26 02:05:37 +00:00
|
|
|
"名稱不能為空."
|
2020-10-25 18:35:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const char **strings[Lang::Max] = {
|
|
|
|
strings_jp,
|
|
|
|
strings_en,
|
|
|
|
strings_fr,
|
|
|
|
strings_de,
|
|
|
|
strings_it,
|
|
|
|
strings_es,
|
|
|
|
strings_sc,
|
|
|
|
strings_ko,
|
|
|
|
strings_nl,
|
|
|
|
strings_pt,
|
|
|
|
strings_ru,
|
|
|
|
strings_tw
|
|
|
|
};
|