mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-01-15 07:48:40 +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.",
|
||||
"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",
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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';
|
||||
|
|
|
|||
|
|
@ -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' : '';
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue