fix typo
Some checks failed
Flutter analyze & test / flutter_analyze_and_test (push) Has been cancelled

This commit is contained in:
otsmr 2026-01-10 14:51:04 +01:00
parent 585f577f89
commit d2b881e281
4 changed files with 4 additions and 4 deletions

View file

@ -364,7 +364,7 @@
"appOutdated": "Your version of twonly is out of date.",
"appOutdatedBtn": "Update Now",
"doubleClickToReopen": "Double-click\nto open again",
"uploadLimitReached": "The upload limit has\been reached. Upgrade to Pro\nor wait until tomorrow.",
"uploadLimitReached": "The upload limit has\nbeen reached. Upgrade to Pro\nor wait until tomorrow.",
"retransmissionRequested": "Retransmission requested",
"testPaymentMethod": "Thanks for the interest in a paid plan. Currently the paid plans are still deactivated. But they will be activated soon!",
"openChangeLog": "Open changelog automatically",

View file

@ -2105,7 +2105,7 @@ abstract class AppLocalizations {
/// No description provided for @uploadLimitReached.
///
/// In en, this message translates to:
/// **'The upload limit has\been reached. Upgrade to Pro\nor wait until tomorrow.'**
/// **'The upload limit has\nbeen reached. Upgrade to Pro\nor wait until tomorrow.'**
String get uploadLimitReached;
/// No description provided for @retransmissionRequested.

View file

@ -1111,7 +1111,7 @@ class AppLocalizationsEn extends AppLocalizations {
@override
String get uploadLimitReached =>
'The upload limit has\been reached. Upgrade to Pro\nor wait until tomorrow.';
'The upload limit has\nbeen reached. Upgrade to Pro\nor wait until tomorrow.';
@override
String get retransmissionRequested => 'Retransmission requested';

View file

@ -51,7 +51,7 @@ final lockRetransStore = Mutex();
/// errors or network changes.
class ApiService {
ApiService();
final String apiHost = kReleaseMode ? 'api.twonly.eu' : '192.168.2.178:3030';
final String apiHost = kReleaseMode ? 'api.twonly.eu' : '10.99.0.140:3030';
// final String apiHost = kReleaseMode ? 'api.twonly.eu' : 'dev.twonly.eu';
final String apiSecure = kReleaseMode ? 's' : '';