Skip to content

Commit 3754ce0

Browse files
committed
FIX FINAL: SentScreen limpia y traducida. Listo para Release v3.9.3
1 parent 926fe05 commit 3754ce0

19 files changed

Lines changed: 192 additions & 123 deletions

lib/l10n/app_de.arb

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,5 +114,8 @@
114114
"permGoSettings": "Zu den Einstellungen",
115115
"gpsHelpTitle": "Über das GPS",
116116
"gpsHelpBody": "Die Genauigkeit hängt vom physischen Chip Ihres Handys und der direkten Sicht zum Himmel ab.\n\nIn Innenräumen, Garagen oder Tunneln wird das Satellitensignal blockiert und der Standort kann ungenau oder gar nicht verfügbar sein.\n\nOksigenia wird immer versuchen, die bestmögliche Position zu triangulieren.",
117-
"holdToCancel": "Gedrückt halten zum Abbrechen"
117+
"holdToCancel": "Gedrückt halten zum Abbrechen",
118+
"statusMonitorStopped": "Überwachung gestoppt.",
119+
"statusScreenSleep": "Bildschirm schaltet ab...",
120+
"btnRestartSystem": "SYSTEM NEUSTARTEN"
118121
}

lib/l10n/app_en.arb

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,5 +114,8 @@
114114
"permGoSettings": "Go to Settings",
115115
"gpsHelpTitle": "About GPS",
116116
"gpsHelpBody": "Accuracy depends on your phone's physical chip and direct sky visibility.\n\nIndoors, in garages, or tunnels, satellite signal is blocked, and location may be approximate or null.\n\nOksigenia will always try to triangulate the best possible position.",
117-
"holdToCancel": "Hold to cancel"
117+
"holdToCancel": "Hold to cancel",
118+
"statusMonitorStopped": "Monitor stopped.",
119+
"statusScreenSleep": "Screen sleeping soon.",
120+
"btnRestartSystem": "RESTART SYSTEM"
118121
}

lib/l10n/app_es.arb

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,5 +114,8 @@
114114
"permGoSettings": "Ir a Ajustes",
115115
"gpsHelpTitle": "Sobre el GPS",
116116
"gpsHelpBody": "La precisión depende del chip físico de tu móvil y de tener visión directa del cielo.\n\nEn interiores, garajes o túneles, la señal de los satélites no entra y la ubicación puede ser aproximada o nula.\n\nOksigenia siempre intentará triangular la mejor posición posible.",
117-
"holdToCancel": "Mantén pulsado para cancelar"
117+
"holdToCancel": "Mantén pulsado para cancelar",
118+
"statusMonitorStopped": "Monitor detenido.",
119+
"statusScreenSleep": "Apagando pantalla...",
120+
"btnRestartSystem": "REINICIAR SISTEMA"
118121
}

lib/l10n/app_fr.arb

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,5 +114,8 @@
114114
"permGoSettings": "Aller aux Paramètres",
115115
"gpsHelpTitle": "À propos du GPS",
116116
"gpsHelpBody": "La précision dépend de la puce physique de votre téléphone et d'une vue directe sur le ciel.\n\nÀ l'intérieur, dans les garages ou les tunnels, le signal satellite ne passe pas et la localisation peut être approximative ou nulle.\n\nOksigenia essaiera toujours de trianguler la meilleure position possible.",
117-
"holdToCancel": "Maintenir pour annuler"
117+
"holdToCancel": "Maintenir pour annuler",
118+
"statusMonitorStopped": "Surveillance arrêtée.",
119+
"statusScreenSleep": "Extinction de l'écran...",
120+
"btnRestartSystem": "REDÉMARRER SYSTÈME"
118121
}

lib/l10n/app_it.arb

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,5 +114,8 @@
114114
"permGoSettings": "Vai alle Impostaciones",
115115
"gpsHelpTitle": "Info sul GPS",
116116
"gpsHelpBody": "La precisione dipende dal chip fisico del telefono e dalla visuale diretta del cielo.\n\nAl chiuso, in garage o in galleria, il segnale satellitare non arriva e la posizione può essere approssimativa o nulla.\n\nOksigenia cercherà sempre di triangolare la migliore posizione possibile.",
117-
"holdToCancel": "Tieni premuto per annullare"
117+
"holdToCancel": "Tieni premuto per annullare",
118+
"statusMonitorStopped": "Monitoraggio fermato.",
119+
"statusScreenSleep": "Spegnimento schermo...",
120+
"btnRestartSystem": "RIAVVIA SISTEMA"
118121
}

lib/l10n/app_localizations.dart

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -805,6 +805,24 @@ abstract class AppLocalizations {
805805
/// In en, this message translates to:
806806
/// **'Hold to cancel'**
807807
String get holdToCancel;
808+
809+
/// No description provided for @statusMonitorStopped.
810+
///
811+
/// In en, this message translates to:
812+
/// **'Monitor stopped.'**
813+
String get statusMonitorStopped;
814+
815+
/// No description provided for @statusScreenSleep.
816+
///
817+
/// In en, this message translates to:
818+
/// **'Screen sleeping soon.'**
819+
String get statusScreenSleep;
820+
821+
/// No description provided for @btnRestartSystem.
822+
///
823+
/// In en, this message translates to:
824+
/// **'RESTART SYSTEM'**
825+
String get btnRestartSystem;
808826
}
809827

810828
class _AppLocalizationsDelegate

lib/l10n/app_localizations_de.dart

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -368,4 +368,13 @@ class AppLocalizationsDe extends AppLocalizations {
368368

369369
@override
370370
String get holdToCancel => 'Gedrückt halten zum Abbrechen';
371+
372+
@override
373+
String get statusMonitorStopped => 'Überwachung gestoppt.';
374+
375+
@override
376+
String get statusScreenSleep => 'Bildschirm schaltet ab...';
377+
378+
@override
379+
String get btnRestartSystem => 'SYSTEM NEUSTARTEN';
371380
}

lib/l10n/app_localizations_en.dart

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -372,4 +372,13 @@ class AppLocalizationsEn extends AppLocalizations {
372372

373373
@override
374374
String get holdToCancel => 'Hold to cancel';
375+
376+
@override
377+
String get statusMonitorStopped => 'Monitor stopped.';
378+
379+
@override
380+
String get statusScreenSleep => 'Screen sleeping soon.';
381+
382+
@override
383+
String get btnRestartSystem => 'RESTART SYSTEM';
375384
}

lib/l10n/app_localizations_es.dart

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -374,4 +374,13 @@ class AppLocalizationsEs extends AppLocalizations {
374374

375375
@override
376376
String get holdToCancel => 'Mantén pulsado para cancelar';
377+
378+
@override
379+
String get statusMonitorStopped => 'Monitor detenido.';
380+
381+
@override
382+
String get statusScreenSleep => 'Apagando pantalla...';
383+
384+
@override
385+
String get btnRestartSystem => 'REINICIAR SISTEMA';
377386
}

lib/l10n/app_localizations_fr.dart

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -371,4 +371,13 @@ class AppLocalizationsFr extends AppLocalizations {
371371

372372
@override
373373
String get holdToCancel => 'Maintenir pour annuler';
374+
375+
@override
376+
String get statusMonitorStopped => 'Surveillance arrêtée.';
377+
378+
@override
379+
String get statusScreenSleep => 'Extinction de l\'écran...';
380+
381+
@override
382+
String get btnRestartSystem => 'REDÉMARRER SYSTÈME';
374383
}

0 commit comments

Comments
 (0)