mirror of
https://github.com/localsend/localsend.git
synced 2026-08-07 07:14:52 +00:00
i18n: missing regenerate
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
/// To regenerate, run: `dart run slang`
|
||||
///
|
||||
/// Locales: 43
|
||||
/// Strings: 13357 (310 per locale)
|
||||
/// Strings: 13383 (311 per locale)
|
||||
|
||||
// coverage:ignore-file
|
||||
// ignore_for_file: type=lint
|
||||
|
||||
@@ -46,6 +46,7 @@ class _StringsEsEs extends Translations {
|
||||
@override late final _StringsChangelogPageEsEs changelogPage = _StringsChangelogPageEsEs._(_root);
|
||||
@override late final _StringsAliasGeneratorEsEs aliasGenerator = _StringsAliasGeneratorEsEs._(_root);
|
||||
@override late final _StringsDialogsEsEs dialogs = _StringsDialogsEsEs._(_root);
|
||||
@override late final _StringsSanitizationEsEs sanitization = _StringsSanitizationEsEs._(_root);
|
||||
@override late final _StringsTrayEsEs tray = _StringsTrayEsEs._(_root);
|
||||
@override late final _StringsWebEsEs web = _StringsWebEsEs._(_root);
|
||||
@override late final _StringsAssetPickerEsEs assetPicker = _StringsAssetPickerEsEs._(_root);
|
||||
@@ -122,6 +123,7 @@ class _StringsSendTabEsEs extends _StringsSendTabEn {
|
||||
@override String get nearbyDevices => 'Dispositivos Cercanos';
|
||||
@override String get thisDevice => 'Este dispositivo';
|
||||
@override String get scan => 'Buscar dispositivos';
|
||||
@override String get manualSending => 'Envío manual';
|
||||
@override String get sendMode => 'Modo de envío';
|
||||
@override late final _StringsSendTabSendModesEsEs sendModes = _StringsSendTabSendModesEsEs._(_root);
|
||||
@override String get sendModeHelp => 'Explicación';
|
||||
@@ -157,6 +159,7 @@ class _StringsTroubleshootPageEsEs extends _StringsTroubleshootPageEn {
|
||||
@override String get solution => 'Solución:';
|
||||
@override String get fixButton => 'Corregir automáticamente';
|
||||
@override late final _StringsTroubleshootPageFirewallEsEs firewall = _StringsTroubleshootPageFirewallEsEs._(_root);
|
||||
@override late final _StringsTroubleshootPageNoDiscoveryEsEs noDiscovery = _StringsTroubleshootPageNoDiscoveryEsEs._(_root);
|
||||
@override late final _StringsTroubleshootPageNoConnectionEsEs noConnection = _StringsTroubleshootPageNoConnectionEsEs._(_root);
|
||||
}
|
||||
|
||||
@@ -236,6 +239,7 @@ class _StringsSendPageEsEs extends _StringsSendPageEn {
|
||||
// Translations
|
||||
@override String get waiting => 'Esperando respuesta...';
|
||||
@override String get rejected => 'El destino ha rechazado la petición.';
|
||||
@override String get tooManyAttempts => _root.web.tooManyAttempts;
|
||||
@override String get busy => 'El destino está ocupado con otra petición.';
|
||||
}
|
||||
|
||||
@@ -271,6 +275,8 @@ class _StringsWebSharePageEsEs extends _StringsWebSharePageEn {
|
||||
@override String get noRequests => 'Aún no hay solicitudes.';
|
||||
@override String get encryption => _root.settingsTab.network.encryption;
|
||||
@override String get autoAccept => 'Aceptar solicitudes automáticamente';
|
||||
@override String get requirePin => 'Requerir PIN';
|
||||
@override String pinHint({required Object pin}) => 'El PIN es "${pin}"';
|
||||
@override String get encryptionHint => 'LocalSend utiliza un certificado autofirmado. Necesitas aceptarlo en el navegador.';
|
||||
@override String pendingRequests({required Object n}) => 'Solicitudes pendientes: ${n}';
|
||||
}
|
||||
@@ -289,6 +295,7 @@ class _StringsAboutPageEsEs extends _StringsAboutPageEn {
|
||||
];
|
||||
@override String get author => 'Autor';
|
||||
@override String get contributors => 'Colaboradores';
|
||||
@override String get packagers => 'Empaquetadores';
|
||||
@override String get translators => 'Traductores';
|
||||
}
|
||||
|
||||
@@ -352,7 +359,20 @@ class _StringsDialogsEsEs extends _StringsDialogsEn {
|
||||
@override late final _StringsDialogsQrEsEs qr = _StringsDialogsQrEsEs._(_root);
|
||||
@override late final _StringsDialogsQuickActionsEsEs quickActions = _StringsDialogsQuickActionsEsEs._(_root);
|
||||
@override late final _StringsDialogsQuickSaveNoticeEsEs quickSaveNotice = _StringsDialogsQuickSaveNoticeEsEs._(_root);
|
||||
@override late final _StringsDialogsPinEsEs pin = _StringsDialogsPinEsEs._(_root);
|
||||
@override late final _StringsDialogsSendModeHelpEsEs sendModeHelp = _StringsDialogsSendModeHelpEsEs._(_root);
|
||||
@override late final _StringsDialogsZoomEsEs zoom = _StringsDialogsZoomEsEs._(_root);
|
||||
}
|
||||
|
||||
// Path: sanitization
|
||||
class _StringsSanitizationEsEs extends _StringsSanitizationEn {
|
||||
_StringsSanitizationEsEs._(_StringsEsEs root) : this._root = root, super._(root);
|
||||
|
||||
@override final _StringsEsEs _root; // ignore: unused_field
|
||||
|
||||
// Translations
|
||||
@override String get empty => 'El nombre del archivo no puede estar vacío';
|
||||
@override String get invalid => 'El nombre del archivo contiene caracteres no válidos';
|
||||
}
|
||||
|
||||
// Path: tray
|
||||
@@ -364,6 +384,7 @@ class _StringsTrayEsEs extends _StringsTrayEn {
|
||||
// Translations
|
||||
@override String get open => _root.general.open;
|
||||
@override String get close => 'Cerrar LocalSend';
|
||||
@override String get closeWindows => 'Cerrar';
|
||||
}
|
||||
|
||||
// Path: web
|
||||
@@ -374,6 +395,9 @@ class _StringsWebEsEs extends _StringsWebEn {
|
||||
|
||||
// Translations
|
||||
@override String get waiting => _root.sendPage.waiting;
|
||||
@override String get enterPin => 'Ingresar PIN';
|
||||
@override String get invalidPin => 'PIN Inválido';
|
||||
@override String get tooManyAttempts => 'Demasiados intentos';
|
||||
@override String get rejected => 'Rechazado';
|
||||
@override String get files => 'Archivos';
|
||||
@override String get fileName => 'Nombre del archivo';
|
||||
@@ -483,9 +507,11 @@ class _StringsSettingsTabGeneralEsEs extends _StringsSettingsTabGeneralEn {
|
||||
@override String get language => 'Idioma';
|
||||
@override late final _StringsSettingsTabGeneralLanguageOptionsEsEs languageOptions = _StringsSettingsTabGeneralLanguageOptionsEsEs._(_root);
|
||||
@override String get saveWindowPlacement => 'Al salir guardar la ubicación de la ventana';
|
||||
@override String get saveWindowPlacementWindows => 'Guardar la posición de la ventana después de salir';
|
||||
@override String get minimizeToTray => 'Cerrar: Minimizar ventana';
|
||||
@override String get launchAtStartup => 'Inicio automático';
|
||||
@override String get launchMinimized => 'Inicio automático: Iniciar minimizado';
|
||||
@override String get showInContextMenu => 'Mostrar LocalSend en el menú contextual';
|
||||
@override String get animations => 'Animaciones';
|
||||
}
|
||||
|
||||
@@ -498,6 +524,7 @@ class _StringsSettingsTabReceiveEsEs extends _StringsSettingsTabReceiveEn {
|
||||
// Translations
|
||||
@override String get title => 'Recibir';
|
||||
@override String get quickSave => _root.general.quickSave;
|
||||
@override String get requirePin => _root.webSharePage.requirePin;
|
||||
@override String get autoFinish => 'Auto finalizar';
|
||||
@override String get destination => 'Destino';
|
||||
@override String get downloads => '(Descargas)';
|
||||
@@ -530,6 +557,7 @@ class _StringsSettingsTabNetworkEsEs extends _StringsSettingsTabNetworkEn {
|
||||
@override String get deviceType => 'Tipo de dispositivo';
|
||||
@override String get deviceModel => 'Modelo de dispositivo';
|
||||
@override String get port => 'Puerto';
|
||||
@override String get discoveryTimeout => 'Tiempo de espera para Detección';
|
||||
@override String portWarning({required Object defaultPort}) => 'Es posible que no seas visible para otros dispositivos porque estás utilizando un puerto personalizado. (Puerto por defecto: ${defaultPort})';
|
||||
@override String get encryption => 'Encriptación';
|
||||
@override String get multicastGroup => 'Multicast';
|
||||
@@ -562,6 +590,17 @@ class _StringsTroubleshootPageFirewallEsEs extends _StringsTroubleshootPageFirew
|
||||
@override String get openFirewall => 'Abrir Firewall';
|
||||
}
|
||||
|
||||
// Path: troubleshootPage.noDiscovery
|
||||
class _StringsTroubleshootPageNoDiscoveryEsEs extends _StringsTroubleshootPageNoDiscoveryEn {
|
||||
_StringsTroubleshootPageNoDiscoveryEsEs._(_StringsEsEs root) : this._root = root, super._(root);
|
||||
|
||||
@override final _StringsEsEs _root; // ignore: unused_field
|
||||
|
||||
// Translations
|
||||
@override String get symptom => 'Este dispositivo no puede descubrir otros dispositivos.';
|
||||
@override String get solution => 'Asegúrese de que todos los dispositivos estén en la misma red Wi-Fi y compartan la misma configuración (puerto, dirección de multidifusión, cifrado). Puede intentar escribir la dirección IP del dispositivo de destino manualmente. Si esto funciona, considere agregar este dispositivo a los favoritos para que pueda detectarse automáticamente en el futuro.';
|
||||
}
|
||||
|
||||
// Path: troubleshootPage.noConnection
|
||||
class _StringsTroubleshootPageNoConnectionEsEs extends _StringsTroubleshootPageNoConnectionEn {
|
||||
_StringsTroubleshootPageNoConnectionEsEs._(_StringsEsEs root) : this._root = root, super._(root);
|
||||
@@ -581,6 +620,7 @@ class _StringsReceiveHistoryPageEntryActionsEsEs extends _StringsReceiveHistoryP
|
||||
|
||||
// Translations
|
||||
@override String get open => 'Abrir archivo';
|
||||
@override String get showInFolder => 'Mostrar en carpeta';
|
||||
@override String get info => 'Información';
|
||||
@override String get deleteFromHistory => 'Borrar del historial';
|
||||
}
|
||||
@@ -832,6 +872,16 @@ class _StringsDialogsQuickSaveNoticeEsEs extends _StringsDialogsQuickSaveNoticeE
|
||||
@override String get content => 'Las solicitudes de archivos se aceptan automáticamente. Ten en cuenta que cualquiera en la red local podrá enviarte archivos.';
|
||||
}
|
||||
|
||||
// Path: dialogs.pin
|
||||
class _StringsDialogsPinEsEs extends _StringsDialogsPinEn {
|
||||
_StringsDialogsPinEsEs._(_StringsEsEs root) : this._root = root, super._(root);
|
||||
|
||||
@override final _StringsEsEs _root; // ignore: unused_field
|
||||
|
||||
// Translations
|
||||
@override String get title => 'Ingresar PIN';
|
||||
}
|
||||
|
||||
// Path: dialogs.sendModeHelp
|
||||
class _StringsDialogsSendModeHelpEsEs extends _StringsDialogsSendModeHelpEn {
|
||||
_StringsDialogsSendModeHelpEsEs._(_StringsEsEs root) : this._root = root, super._(root);
|
||||
@@ -845,6 +895,16 @@ class _StringsDialogsSendModeHelpEsEs extends _StringsDialogsSendModeHelpEn {
|
||||
@override String get link => 'Los destinatarios que no tengan LocalSend instalado pueden descargar los archivos seleccionados abriendo el enlace en su navegador.';
|
||||
}
|
||||
|
||||
// Path: dialogs.zoom
|
||||
class _StringsDialogsZoomEsEs extends _StringsDialogsZoomEn {
|
||||
_StringsDialogsZoomEsEs._(_StringsEsEs root) : this._root = root, super._(root);
|
||||
|
||||
@override final _StringsEsEs _root; // ignore: unused_field
|
||||
|
||||
// Translations
|
||||
@override String get title => 'URL';
|
||||
}
|
||||
|
||||
// Path: settingsTab.general.brightnessOptions
|
||||
class _StringsSettingsTabGeneralBrightnessOptionsEsEs extends _StringsSettingsTabGeneralBrightnessOptionsEn {
|
||||
_StringsSettingsTabGeneralBrightnessOptionsEsEs._(_StringsEsEs root) : this._root = root, super._(root);
|
||||
|
||||
@@ -123,6 +123,7 @@ class _StringsSendTabHe extends _StringsSendTabEn {
|
||||
@override String get nearbyDevices => 'מכשירים בקרבת מקום';
|
||||
@override String get thisDevice => 'המכשיר הזה';
|
||||
@override String get scan => 'חפש מכשירים';
|
||||
@override String get manualSending => 'שליחה ידנית';
|
||||
@override String get sendMode => 'מצב שליחה';
|
||||
@override late final _StringsSendTabSendModesHe sendModes = _StringsSendTabSendModesHe._(_root);
|
||||
@override String get sendModeHelp => 'עזרה';
|
||||
@@ -158,6 +159,7 @@ class _StringsTroubleshootPageHe extends _StringsTroubleshootPageEn {
|
||||
@override String get solution => 'פתרון:';
|
||||
@override String get fixButton => 'תקן אוטומטית';
|
||||
@override late final _StringsTroubleshootPageFirewallHe firewall = _StringsTroubleshootPageFirewallHe._(_root);
|
||||
@override late final _StringsTroubleshootPageNoDiscoveryHe noDiscovery = _StringsTroubleshootPageNoDiscoveryHe._(_root);
|
||||
@override late final _StringsTroubleshootPageNoConnectionHe noConnection = _StringsTroubleshootPageNoConnectionHe._(_root);
|
||||
}
|
||||
|
||||
@@ -293,6 +295,7 @@ class _StringsAboutPageHe extends _StringsAboutPageEn {
|
||||
];
|
||||
@override String get author => 'יוצר';
|
||||
@override String get contributors => 'תורמים';
|
||||
@override String get packagers => 'אורזים';
|
||||
@override String get translators => 'מתרגמים';
|
||||
}
|
||||
|
||||
@@ -381,6 +384,7 @@ class _StringsTrayHe extends _StringsTrayEn {
|
||||
// Translations
|
||||
@override String get open => _root.general.open;
|
||||
@override String get close => 'צא מ-LocalSend';
|
||||
@override String get closeWindows => 'יציאה';
|
||||
}
|
||||
|
||||
// Path: web
|
||||
@@ -503,6 +507,7 @@ class _StringsSettingsTabGeneralHe extends _StringsSettingsTabGeneralEn {
|
||||
@override String get language => 'שפה';
|
||||
@override late final _StringsSettingsTabGeneralLanguageOptionsHe languageOptions = _StringsSettingsTabGeneralLanguageOptionsHe._(_root);
|
||||
@override String get saveWindowPlacement => 'יציאה: שמירת מיקום החלון';
|
||||
@override String get saveWindowPlacementWindows => 'שמור את מיקום החלון בעת יציאה';
|
||||
@override String get minimizeToTray => 'יציאה: מזעור למגש';
|
||||
@override String get launchAtStartup => 'הפעלה אוטומטית לאחר הכניסה';
|
||||
@override String get launchMinimized => 'הפעלה אוטומטית: התחל מוסתר';
|
||||
@@ -585,6 +590,17 @@ class _StringsTroubleshootPageFirewallHe extends _StringsTroubleshootPageFirewal
|
||||
@override String get openFirewall => 'פתח את חומת האש';
|
||||
}
|
||||
|
||||
// Path: troubleshootPage.noDiscovery
|
||||
class _StringsTroubleshootPageNoDiscoveryHe extends _StringsTroubleshootPageNoDiscoveryEn {
|
||||
_StringsTroubleshootPageNoDiscoveryHe._(_StringsHe root) : this._root = root, super._(root);
|
||||
|
||||
@override final _StringsHe _root; // ignore: unused_field
|
||||
|
||||
// Translations
|
||||
@override String get symptom => 'המכשיר הזה לא מצליח לגלות מכשירים אחרים.';
|
||||
@override String get solution => 'אנא ודא שכל המכשירים נמצאים באותה רשת Wi-Fi וחולקים את אותה תצורה (יציאה, כתובת ריבוי שידור, הצפנה). אתה יכול לנסות להקליד את כתובת ה-IP של מכשיר היעד באופן ידני. אם זה יעבוד, שקול להוסיף את המכשיר למועדפים כדי שניתן יהיה לגלות אותו אוטומטית בעתיד.';
|
||||
}
|
||||
|
||||
// Path: troubleshootPage.noConnection
|
||||
class _StringsTroubleshootPageNoConnectionHe extends _StringsTroubleshootPageNoConnectionEn {
|
||||
_StringsTroubleshootPageNoConnectionHe._(_StringsHe root) : this._root = root, super._(root);
|
||||
|
||||
Reference in New Issue
Block a user