mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-01-15 10:38:41 +00:00
fix typo
Some checks failed
Flutter analyze & test / flutter_analyze_and_test (push) Has been cancelled
Some checks failed
Flutter analyze & test / flutter_analyze_and_test (push) Has been cancelled
This commit is contained in:
parent
585f577f89
commit
d2b881e281
4 changed files with 4 additions and 4 deletions
|
|
@ -364,7 +364,7 @@
|
||||||
"appOutdated": "Your version of twonly is out of date.",
|
"appOutdated": "Your version of twonly is out of date.",
|
||||||
"appOutdatedBtn": "Update Now",
|
"appOutdatedBtn": "Update Now",
|
||||||
"doubleClickToReopen": "Double-click\nto open again",
|
"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",
|
"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!",
|
"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",
|
"openChangeLog": "Open changelog automatically",
|
||||||
|
|
|
||||||
|
|
@ -2105,7 +2105,7 @@ abstract class AppLocalizations {
|
||||||
/// No description provided for @uploadLimitReached.
|
/// No description provided for @uploadLimitReached.
|
||||||
///
|
///
|
||||||
/// In en, this message translates to:
|
/// 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;
|
String get uploadLimitReached;
|
||||||
|
|
||||||
/// No description provided for @retransmissionRequested.
|
/// No description provided for @retransmissionRequested.
|
||||||
|
|
|
||||||
|
|
@ -1111,7 +1111,7 @@ class AppLocalizationsEn extends AppLocalizations {
|
||||||
|
|
||||||
@override
|
@override
|
||||||
String get uploadLimitReached =>
|
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
|
@override
|
||||||
String get retransmissionRequested => 'Retransmission requested';
|
String get retransmissionRequested => 'Retransmission requested';
|
||||||
|
|
|
||||||
|
|
@ -51,7 +51,7 @@ final lockRetransStore = Mutex();
|
||||||
/// errors or network changes.
|
/// errors or network changes.
|
||||||
class ApiService {
|
class ApiService {
|
||||||
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 apiHost = kReleaseMode ? 'api.twonly.eu' : 'dev.twonly.eu';
|
||||||
final String apiSecure = kReleaseMode ? 's' : '';
|
final String apiSecure = kReleaseMode ? 's' : '';
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue