feat(i18n): migrate settings literals
This commit is contained in:
@@ -117,4 +117,216 @@ class AppLocalizationsEs extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get saveQuickAccessButton => 'Guardar acceso rápido';
|
||||
|
||||
@override
|
||||
String get settingsSafeStatus => 'Seguro';
|
||||
|
||||
@override
|
||||
String get recordingsSectionTitle => 'Grabaciones';
|
||||
|
||||
@override
|
||||
String get recordingsFolderDialogTitle =>
|
||||
'Selecciona la carpeta de grabaciones';
|
||||
|
||||
@override
|
||||
String get recordingsPathUpdated => 'Ruta de grabaci?n actualizada';
|
||||
|
||||
@override
|
||||
String recordingsPathSaveError(Object error) {
|
||||
return 'No se pudo guardar la ruta: $error';
|
||||
}
|
||||
|
||||
@override
|
||||
String get recordingsDefaultFolderRestored =>
|
||||
'Se usar? la carpeta interna por defecto';
|
||||
|
||||
@override
|
||||
String get recordingsFolderTitle => 'Carpeta de grabaci?n';
|
||||
|
||||
@override
|
||||
String get recordingsPathCalculating => 'Calculando ruta...';
|
||||
|
||||
@override
|
||||
String get recordingsChangePath => 'Cambiar ruta';
|
||||
|
||||
@override
|
||||
String get recordingsUseDefaultPath => 'Usar ruta por defecto';
|
||||
|
||||
@override
|
||||
String get recordingsOriginalStreamHint =>
|
||||
'La radio se guarda desde el stream original, sin recomprimir.';
|
||||
|
||||
@override
|
||||
String get equalizerActive => 'Activo';
|
||||
|
||||
@override
|
||||
String get equalizerDisabled => 'Desactivado';
|
||||
|
||||
@override
|
||||
String get equalizerEnable => 'Activar ecualizador';
|
||||
|
||||
@override
|
||||
String get equalizerRealtimeSubtitle =>
|
||||
'Los cambios se aplican en tiempo real a la emisora actual.';
|
||||
|
||||
@override
|
||||
String get equalizerPendingSubtitle =>
|
||||
'Se guardan los cambios y se aplicar?n cuando Android habilite el efecto.';
|
||||
|
||||
@override
|
||||
String get equalizerPerStationTitle => 'Usar EQ propio para esta favorita';
|
||||
|
||||
@override
|
||||
String equalizerPerStationActive(Object stationName) {
|
||||
return 'Activo para $stationName';
|
||||
}
|
||||
|
||||
@override
|
||||
String equalizerPerStationMain(Object stationName) {
|
||||
return 'Usando EQ principal para $stationName';
|
||||
}
|
||||
|
||||
@override
|
||||
String get preferredStationTitle => 'Emisora preferida';
|
||||
|
||||
@override
|
||||
String get preferredStationDescription =>
|
||||
'Se preselecciona al crear alarmas y puede iniciarse como reproducci?n r?pida.';
|
||||
|
||||
@override
|
||||
String get preferredStationNoStationsTitle =>
|
||||
'Todav?a no hay emisoras disponibles';
|
||||
|
||||
@override
|
||||
String get preferredStationNoStationsSubtitle =>
|
||||
'Guard? favoritas o carg? emisoras para elegir una preferida.';
|
||||
|
||||
@override
|
||||
String get preferredStationAutomaticFallback => 'Fallback autom?tico';
|
||||
|
||||
@override
|
||||
String get preferredStationDefaultFavorite => 'Favorita por defecto';
|
||||
|
||||
@override
|
||||
String preferredStationCurrent(Object stationName) {
|
||||
return 'Preferida actual: $stationName';
|
||||
}
|
||||
|
||||
@override
|
||||
String preferredStationAutoUsing(Object stationName) {
|
||||
return 'Sin favoritas: usando autom?ticamente $stationName';
|
||||
}
|
||||
|
||||
@override
|
||||
String get preferredStationPlay => 'Reproducir preferida';
|
||||
|
||||
@override
|
||||
String get customStationsTitle => 'Emisoras personalizadas';
|
||||
|
||||
@override
|
||||
String get customStationsAdd => 'A?adir';
|
||||
|
||||
@override
|
||||
String get customStationsEmpty => 'No hay emisoras personalizadas.';
|
||||
|
||||
@override
|
||||
String get playAction => 'Reproducir';
|
||||
|
||||
@override
|
||||
String get deleteAction => 'Eliminar';
|
||||
|
||||
@override
|
||||
String get addStationTitle => 'A?adir emisora';
|
||||
|
||||
@override
|
||||
String get stationNameLabel => 'Nombre *';
|
||||
|
||||
@override
|
||||
String get requiredField => 'Campo obligatorio';
|
||||
|
||||
@override
|
||||
String get streamUrlLabel => 'URL del stream *';
|
||||
|
||||
@override
|
||||
String get invalidUrl => 'URL no v?lida';
|
||||
|
||||
@override
|
||||
String get countryOptionalLabel => 'Pa?s (opcional)';
|
||||
|
||||
@override
|
||||
String get saveStation => 'Guardar emisora';
|
||||
|
||||
@override
|
||||
String get backupSectionTitle => 'Copia de seguridad';
|
||||
|
||||
@override
|
||||
String get backupExportTitle => 'Exportar configuraci?n';
|
||||
|
||||
@override
|
||||
String get backupExportSubtitle =>
|
||||
'Favoritos, emisoras custom y presets de EQ';
|
||||
|
||||
@override
|
||||
String get backupImportTitle => 'Importar configuraci?n';
|
||||
|
||||
@override
|
||||
String get backupImportSubtitle =>
|
||||
'Restaurar desde un fichero de copia de seguridad';
|
||||
|
||||
@override
|
||||
String get backupShareSubject => 'PluriWave ? copia de seguridad';
|
||||
|
||||
@override
|
||||
String backupShareText(Object date) {
|
||||
return 'Configuraci?n de PluriWave exportada el $date';
|
||||
}
|
||||
|
||||
@override
|
||||
String backupExportError(Object error) {
|
||||
return 'Error al exportar: $error';
|
||||
}
|
||||
|
||||
@override
|
||||
String get backupImportConfirmMessage =>
|
||||
'Esto a?adir? los favoritos, emisoras y presets del fichero. ?Continuar?';
|
||||
|
||||
@override
|
||||
String get backupImportSuccess => 'Configuraci?n importada correctamente';
|
||||
|
||||
@override
|
||||
String backupImportError(Object error) {
|
||||
return 'Error al importar: $error';
|
||||
}
|
||||
|
||||
@override
|
||||
String get appVersionLoading => 'Cargando versi?n...';
|
||||
|
||||
@override
|
||||
String appVersionSubtitle(Object version) {
|
||||
return '$version - Radio mundial';
|
||||
}
|
||||
|
||||
@override
|
||||
String get savedFavoritesTitle => 'Favoritos guardados';
|
||||
|
||||
@override
|
||||
String get stationFilterTitle => 'Filtro de emisoras';
|
||||
|
||||
@override
|
||||
String get stationFilterSubtitle => 'Solo emisoras verificadas como activas';
|
||||
|
||||
@override
|
||||
String get backgroundAudioTitle => 'Audio en background';
|
||||
|
||||
@override
|
||||
String get backgroundAudioSubtitle => 'Contin?a al apagar la pantalla';
|
||||
|
||||
@override
|
||||
String get dash => '?';
|
||||
|
||||
@override
|
||||
String get cancelAction => 'Cancelar';
|
||||
|
||||
@override
|
||||
String get equalizerTitle => 'Ecualizador';
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user