rebrand: Workavia Mail (tier 1+2+3+4)
Build Docker images with Sentry / Build release image with Sentry (push) Failing after 1m59s
Release / Release (android, ubuntu-latest) (push) Failing after 38m31s
Release / Release (ios, macos-14) (push) Has been cancelled
Integration tests / Run integration tests for mobile apps (push) Failing after 15s
Build dev binaries / Build app (ios, macos-14) (push) Waiting to run
Build dev binaries / Build app (android, ubuntu-latest) (push) Failing after 34m13s
Build Docker images with Sentry / Build release image with Sentry (push) Failing after 1m59s
Release / Release (android, ubuntu-latest) (push) Failing after 38m31s
Release / Release (ios, macos-14) (push) Has been cancelled
Integration tests / Run integration tests for mobile apps (push) Failing after 15s
Build dev binaries / Build app (ios, macos-14) (push) Waiting to run
Build dev binaries / Build app (android, ubuntu-latest) (push) Failing after 34m13s
Tier 1+2 - web/UI user-facing:
- Replace all visible "Twake Mail" / "Linagora" with "Workavia Mail"
- Swap 3 logo SVGs (icon kept, wordmark replaced via SVG <text>)
- Splash: replace icon_twp.png with HTML <div>Workavia</div>
- Remove power_by_linagora.svg, replace with AGPL SourceLinkWidget
- Patch web/index.html, manifest.json, login/logout-callback HTMLs
- Patch all 16 ARB locales + scribe ARB + app_localizations.dart
- Patch 4 web/i18n/*.json (FR/EN/DE/VI smart banner titles)
- App grid reduced to "Mail" + "Calendar"
- User-Agent: Twake-Mail -> Workavia-Mail
Tier 3+4 - mobile native:
- Bundle ID: com.linagora.{android,ios}.teammail -> com.workavia.mail
- URL schemes consolidated: teammail.mobile/twakemail.mobile -> workaviamail.mobile
- Android: applicationId, namespace, AndroidManifest, strings.xml
- Android: move Kotlin sources com.linagora.android.tmail -> com.workavia.mail
- Android: empty branding.xml + android12branding.xml (vector text not patchable)
- iOS: Info.plist (CFBundleDisplayName/Name, schemes), Runner.entitlements
- iOS: TwakeMailNSE + TeamMailShareExtension entitlements + Info.plist
- iOS: Runner.xcodeproj (12x PRODUCT_BUNDLE_IDENTIFIER, 9x APP_GROUP_ID)
- iOS: TokenRefreshManager.swift redirect URLs
- iOS: fastlane Appfile + Matchfile
- Dart: oidc_constant, app_config keychain, notification MethodChannel
Known follow-ups (require user action):
- Apple Team ID KUT463DS29 (still Linagora) -> needs Workavia team for App Store
- Android branding.xml emptied: need PNG/path-converted wordmark for splash
- iOS sub-bundle paths (TwakeMailNSE/, TeamMailShareExtension/) on disk unchanged
- iOS App Store URL emptied; Play Store ID points to com.workavia.mail
This commit is contained in:
@@ -2,17 +2,17 @@ import 'package:core/utils/platform_info.dart';
|
||||
import 'package:tmail_ui_user/main/utils/app_config.dart';
|
||||
|
||||
class OIDCConstant {
|
||||
static String get mobileOidcClientId => 'teammail-mobile';
|
||||
static String get mobileOidcClientId => 'workaviamail-mobile';
|
||||
static List<String> get oidcScope => ['openid', 'profile', 'email', 'offline_access'];
|
||||
static const String keyAuthorityOidc = 'KEY_AUTHORITY_OIDC';
|
||||
static const String authResponseKey = "auth_info";
|
||||
static const String twakeWorkplaceUrlScheme = 'twakemail.mobile';
|
||||
static const String twakeWorkplaceUrlScheme = 'workaviamail.mobile';
|
||||
static const String twakeWorkplaceRedirectUrl = '$twakeWorkplaceUrlScheme://redirect';
|
||||
static const String appParameter = 'tmail';
|
||||
static const String postRegisteredRedirectUrlPathParams = 'post_registered_redirect_url';
|
||||
static const String postLoginRedirectUrlPathParams = 'post_login_redirect_url';
|
||||
static const String endSessionFailedCode = 'end_session_failed';
|
||||
static const String redirectOidcMobile = 'teammail.mobile://oauthredirect';
|
||||
static const String redirectOidcMobile = 'workaviamail.mobile://oauthredirect';
|
||||
static const String loginRedirectOidcWeb = 'login-callback.html';
|
||||
static const String logoutRedirectOidcWeb = 'logout-callback.html';
|
||||
|
||||
|
||||
@@ -11,6 +11,7 @@ import 'package:tmail_ui_user/features/base/widget/application_version_widget.da
|
||||
import 'package:tmail_ui_user/features/login/presentation/base_login_view.dart';
|
||||
import 'package:tmail_ui_user/features/login/presentation/login_form_type.dart';
|
||||
import 'package:tmail_ui_user/features/login/presentation/privacy_link_widget.dart';
|
||||
import 'package:tmail_ui_user/features/login/presentation/source_link_widget.dart';
|
||||
import 'package:tmail_ui_user/features/login/presentation/widgets/login_message_widget.dart';
|
||||
import 'package:tmail_ui_user/features/login/presentation/widgets/try_again_button.dart';
|
||||
import 'package:tmail_ui_user/main/localizations/app_localizations.dart';
|
||||
@@ -78,15 +79,11 @@ class LoginView extends BaseLoginView {
|
||||
],
|
||||
)
|
||||
),
|
||||
Positioned.fill(
|
||||
const Positioned.fill(
|
||||
bottom: 24,
|
||||
child: Align(
|
||||
alignment: Alignment.bottomCenter,
|
||||
child: SvgPicture.asset(
|
||||
controller.imagePaths.icPowerByLinagora,
|
||||
width: 97,
|
||||
height: 44,
|
||||
fit: BoxFit.fill)))
|
||||
child: SourceLinkWidget()))
|
||||
],
|
||||
);
|
||||
}
|
||||
@@ -246,9 +243,9 @@ class LoginView extends BaseLoginView {
|
||||
],
|
||||
)
|
||||
),
|
||||
Padding(
|
||||
padding: const EdgeInsets.only(top: 44, bottom: 10),
|
||||
child: SvgPicture.asset(controller.imagePaths.icPowerByLinagora, width: 97, height: 44, fit: BoxFit.fill)
|
||||
const Padding(
|
||||
padding: EdgeInsets.only(top: 44, bottom: 10),
|
||||
child: SourceLinkWidget()
|
||||
)
|
||||
]
|
||||
)
|
||||
|
||||
@@ -0,0 +1,36 @@
|
||||
import 'package:core/presentation/extensions/color_extension.dart';
|
||||
import 'package:core/presentation/utils/theme_utils.dart';
|
||||
import 'package:flutter/gestures.dart';
|
||||
import 'package:flutter/widgets.dart';
|
||||
import 'package:tmail_ui_user/main/utils/app_utils.dart';
|
||||
|
||||
class SourceLinkWidget extends StatelessWidget {
|
||||
static const String _sourceUrl = 'https://github.com/linagora/tmail-flutter';
|
||||
|
||||
const SourceLinkWidget({Key? key}) : super(key: key);
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final baseStyle = ThemeUtils.defaultTextStyleInterFont.copyWith(
|
||||
color: AppColor.colorTextBody,
|
||||
fontSize: 12,
|
||||
fontWeight: FontWeight.w400,
|
||||
);
|
||||
return RichText(
|
||||
text: TextSpan(
|
||||
style: baseStyle,
|
||||
children: [
|
||||
const TextSpan(text: 'Open source · AGPL-3.0 · '),
|
||||
TextSpan(
|
||||
text: 'source',
|
||||
style: baseStyle.copyWith(
|
||||
color: AppColor.loginTextFieldFocusedBorder,
|
||||
decoration: TextDecoration.underline,
|
||||
),
|
||||
recognizer: TapGestureRecognizer()..onTap = () => AppUtils.launchLink(_sourceUrl),
|
||||
),
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -709,7 +709,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"login_text_slogan": "Twake Mail",
|
||||
"login_text_slogan": "V-Mail",
|
||||
"@login_text_slogan": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -937,7 +937,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"page_name": "Twake Mail",
|
||||
"page_name": "V-Mail",
|
||||
"@page_name": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -1573,7 +1573,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"app_name": "Twake Mail",
|
||||
"app_name": "V-Mail",
|
||||
"@app_name": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -2273,7 +2273,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"appTitlePushNotification": "Twake Mail",
|
||||
"appTitlePushNotification": "V-Mail",
|
||||
"@appTitlePushNotification": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -2345,7 +2345,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"textQuotasRunningOutOfStorageContent": "قريبًا لن تتمكن من إرسال بريد إلكتروني في Twake Mail. الرجاء تنظيف مساحة التخزين الخاصة بك أو ترقية مساحة التخزين لديك للحصول على الميزات الكاملة في بريد الفريق.",
|
||||
"textQuotasRunningOutOfStorageContent": "قريبًا لن تتمكن من إرسال بريد إلكتروني في V-Mail. الرجاء تنظيف مساحة التخزين الخاصة بك أو ترقية مساحة التخزين لديك للحصول على الميزات الكاملة في بريد الفريق.",
|
||||
"@textQuotasRunningOutOfStorageContent": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
|
||||
+10
-10
@@ -41,7 +41,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"login_text_slogan": "Twake Mail",
|
||||
"login_text_slogan": "V-Mail",
|
||||
"@login_text_slogan": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -3299,7 +3299,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"languageSubtitle": "Legen Sie die Sprache fest, die Sie in Twake Mail verwenden.",
|
||||
"languageSubtitle": "Legen Sie die Sprache fest, die Sie in V-Mail verwenden.",
|
||||
"@languageSubtitle": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -3459,7 +3459,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"page_name": "Twake Mail",
|
||||
"page_name": "V-Mail",
|
||||
"@page_name": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -3483,7 +3483,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"app_name": "Twake Mail",
|
||||
"app_name": "V-Mail",
|
||||
"@app_name": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -3567,7 +3567,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"pleaseAllowNotifications": "Bitte erlauben Sie Benachrichtigungen von Twake Mail in den Einstellungen des Geräts",
|
||||
"pleaseAllowNotifications": "Bitte erlauben Sie Benachrichtigungen von V-Mail in den Einstellungen des Geräts",
|
||||
"@pleaseAllowNotifications": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -3645,7 +3645,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"appTitlePushNotification": "Twake Mail",
|
||||
"appTitlePushNotification": "V-Mail",
|
||||
"@appTitlePushNotification": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -3663,7 +3663,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"bannerProgressingRecoveryMessage": "Die Wiederherstellung ist im Gange. Sie können Twake Mail weiterhin verwenden",
|
||||
"bannerProgressingRecoveryMessage": "Die Wiederherstellung ist im Gange. Sie können V-Mail weiterhin verwenden",
|
||||
"@bannerProgressingRecoveryMessage": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -3917,7 +3917,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"allowsTwakeMailToNotifyYouWhenANewMessageArrivesOnYourPhone": "Erlaubt Twake Mail, Sie zu benachrichtigen, wenn eine neue Nachricht auf Ihrem Telefon ankommt",
|
||||
"allowsTwakeMailToNotifyYouWhenANewMessageArrivesOnYourPhone": "Erlaubt V-Mail, Sie zu benachrichtigen, wenn eine neue Nachricht auf Ihrem Telefon ankommt",
|
||||
"@allowsTwakeMailToNotifyYouWhenANewMessageArrivesOnYourPhone": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -4117,13 +4117,13 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"createTwakeIdFailed": "Erstellen der Twake-ID fehlgeschlagen. Bitte überprüfen Sie Ihre Eingaben.",
|
||||
"createTwakeIdFailed": "Erstellen der Workavia-ID fehlgeschlagen. Bitte überprüfen Sie Ihre Eingaben.",
|
||||
"@createTwakeIdFailed": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"createTwakeId": "Twake-ID erstellen",
|
||||
"createTwakeId": "Workavia-ID erstellen",
|
||||
"@createTwakeId": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"login_text_slogan": "Twake Mail",
|
||||
"login_text_slogan": "V-Mail",
|
||||
"@login_text_slogan": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -817,7 +817,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"app_name": "Twake Mail",
|
||||
"app_name": "V-Mail",
|
||||
"@app_name": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -961,7 +961,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"page_name": "Twake Mail",
|
||||
"page_name": "V-Mail",
|
||||
"@page_name": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -1535,7 +1535,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"languageSubtitle": "Set the language you use on Twake Mail.",
|
||||
"languageSubtitle": "Set the language you use on V-Mail.",
|
||||
"@languageSubtitle": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -2535,7 +2535,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"appTitlePushNotification": "Twake Mail",
|
||||
"appTitlePushNotification": "V-Mail",
|
||||
"@appTitlePushNotification": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
|
||||
@@ -285,7 +285,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"app_name": "Twake Mail",
|
||||
"app_name": "V-Mail",
|
||||
"@app_name": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"appTitlePushNotification": "Correo de Twake",
|
||||
"appTitlePushNotification": "Correo de Workavia",
|
||||
"@appTitlePushNotification": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -187,7 +187,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"app_name": "Correo de Twake",
|
||||
"app_name": "Correo de Workavia",
|
||||
"@app_name": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -947,7 +947,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"page_name": "Correo de Twake",
|
||||
"page_name": "Correo de Workavia",
|
||||
"@page_name": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -1151,7 +1151,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"login_text_slogan": "Correo de Twake",
|
||||
"login_text_slogan": "Correo de Workavia",
|
||||
"@login_text_slogan": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
|
||||
+17
-17
@@ -6,7 +6,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"login_text_slogan": "Twake Mail",
|
||||
"login_text_slogan": "V-Mail",
|
||||
"@login_text_slogan": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -672,7 +672,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"app_name": "Twake Mail",
|
||||
"app_name": "V-Mail",
|
||||
"@app_name": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -822,7 +822,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"page_name": "Twake Mail",
|
||||
"page_name": "V-Mail",
|
||||
"@page_name": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -1240,7 +1240,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"languageSubtitle": "Définissez la langue de Twake Mail.",
|
||||
"languageSubtitle": "Définissez la langue de V-Mail.",
|
||||
"@languageSubtitle": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -1850,7 +1850,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"appTitlePushNotification": "Twake Mail",
|
||||
"appTitlePushNotification": "V-Mail",
|
||||
"@appTitlePushNotification": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -2102,7 +2102,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"textQuotasRunOutOfStorageContent": "Maintenant, vous ne pouvez temporairement pas envoyer ou recevoir d'e-mail. Veuillez libérer ou mettre à niveau votre espace de stockage pour bénéficier de toutes les fonctionnalités de Twake Mail.",
|
||||
"textQuotasRunOutOfStorageContent": "Maintenant, vous ne pouvez temporairement pas envoyer ou recevoir d'e-mail. Veuillez libérer ou mettre à niveau votre espace de stockage pour bénéficier de toutes les fonctionnalités de V-Mail.",
|
||||
"@textQuotasRunOutOfStorageContent": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -2234,7 +2234,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"textQuotasRunningOutOfStorageContent": "Bientôt, vous ne pourrez plus envoyer d'e-mails via Twake Mail. Veuillez nettoyer votre stockage ou mettre à niveau votre stockage pour obtenir toutes les fonctionnalités de Twake Mail.",
|
||||
"textQuotasRunningOutOfStorageContent": "Bientôt, vous ne pourrez plus envoyer d'e-mails via V-Mail. Veuillez nettoyer votre stockage ou mettre à niveau votre stockage pour obtenir toutes les fonctionnalités de V-Mail.",
|
||||
"@textQuotasRunningOutOfStorageContent": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -2912,7 +2912,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"quotaWarningBannerMessage": "Bientôt, vous ne pourrez plus envoyer de messages dans Twake Mail. Veuillez nettoyer ou mettre à niveau votre stockage pour bénéficier de toutes les fonctionnalités de Twake Mail.",
|
||||
"quotaWarningBannerMessage": "Bientôt, vous ne pourrez plus envoyer de messages dans V-Mail. Veuillez nettoyer ou mettre à niveau votre stockage pour bénéficier de toutes les fonctionnalités de V-Mail.",
|
||||
"@quotaWarningBannerMessage": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -3006,7 +3006,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"quotaErrorBannerMessage": "Bientôt, vous ne pourrez plus envoyer de messages dans Twake Mail. Veuillez nettoyer ou mettre à niveau votre stockage pour bénéficier de toutes les fonctionnalités de Twake Mail.",
|
||||
"quotaErrorBannerMessage": "Bientôt, vous ne pourrez plus envoyer de messages dans V-Mail. Veuillez nettoyer ou mettre à niveau votre stockage pour bénéficier de toutes les fonctionnalités de V-Mail.",
|
||||
"@quotaErrorBannerMessage": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -3698,7 +3698,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"bannerProgressingRecoveryMessage": "La récupération est en cours. Vous pouvez continuer à utiliser Twake Mail",
|
||||
"bannerProgressingRecoveryMessage": "La récupération est en cours. Vous pouvez continuer à utiliser V-Mail",
|
||||
"@bannerProgressingRecoveryMessage": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -4048,7 +4048,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"pleaseAllowNotifications": "Veuillez autoriser les notifications de Twake Mail dans les réglages de l'appareil",
|
||||
"pleaseAllowNotifications": "Veuillez autoriser les notifications de V-Mail dans les réglages de l'appareil",
|
||||
"@pleaseAllowNotifications": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -4090,7 +4090,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"allowsTwakeMailToNotifyYouWhenANewMessageArrivesOnYourPhone": "Permet à Twake Mail de vous avertir quand un nouveau message arrive sur votre téléphone",
|
||||
"allowsTwakeMailToNotifyYouWhenANewMessageArrivesOnYourPhone": "Permet à V-Mail de vous avertir quand un nouveau message arrive sur votre téléphone",
|
||||
"@allowsTwakeMailToNotifyYouWhenANewMessageArrivesOnYourPhone": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -4282,7 +4282,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"createTwakeId": "Créer un Twake ID",
|
||||
"createTwakeId": "Créer un Workavia ID",
|
||||
"@createTwakeId": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -4306,7 +4306,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"createTwakeIdFailed": "Échec de la création d'un Twake ID. Veuillez réessayer.",
|
||||
"createTwakeIdFailed": "Échec de la création d'un Workavia ID. Veuillez réessayer.",
|
||||
"@createTwakeIdFailed": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -5012,7 +5012,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"quotaBannerWarningSubtitleWithPremium": "Pour continuer d'envoyer des messages et profiter de l'ensemble des fonctionnalités de Twake mail, veuillez nettoyer ou augmenter votre espace de stockage.",
|
||||
"quotaBannerWarningSubtitleWithPremium": "Pour continuer d'envoyer des messages et profiter de l'ensemble des fonctionnalités de Workavia mail, veuillez nettoyer ou augmenter votre espace de stockage.",
|
||||
"@quotaBannerWarningSubtitleWithPremium": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -5024,7 +5024,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"quotaBannerWarningSubtitleWithoutPremium": "Pour continuer à envoyer vos messages et profiter de l'ensemble des fonctionnalités de Twake Mail, veuillez nettoyer votre boîte mail.",
|
||||
"quotaBannerWarningSubtitleWithoutPremium": "Pour continuer à envoyer vos messages et profiter de l'ensemble des fonctionnalités de V-Mail, veuillez nettoyer votre boîte mail.",
|
||||
"@quotaBannerWarningSubtitleWithoutPremium": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -5456,7 +5456,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"manageYourTwakeAccount": "Gestion de votre compte Twake",
|
||||
"manageYourTwakeAccount": "Gestion de votre compte Workavia",
|
||||
"@manageYourTwakeAccount": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
|
||||
+13
-13
@@ -605,7 +605,7 @@
|
||||
"count": {}
|
||||
}
|
||||
},
|
||||
"appTitlePushNotification": "Twake Mail",
|
||||
"appTitlePushNotification": "V-Mail",
|
||||
"@appTitlePushNotification": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -923,7 +923,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"page_name": "Twake Mail",
|
||||
"page_name": "V-Mail",
|
||||
"@page_name": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -1593,7 +1593,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"login_text_slogan": "Twake Mail",
|
||||
"login_text_slogan": "V-Mail",
|
||||
"@login_text_slogan": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -2163,7 +2163,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"allowsTwakeMailToNotifyYouWhenANewMessageArrivesOnYourPhone": "Ceadaíonn Twake Mail a chur in iúl duit nuair a thagann teachtaireacht nua ar do ghuthán",
|
||||
"allowsTwakeMailToNotifyYouWhenANewMessageArrivesOnYourPhone": "Ceadaíonn V-Mail a chur in iúl duit nuair a thagann teachtaireacht nua ar do ghuthán",
|
||||
"@allowsTwakeMailToNotifyYouWhenANewMessageArrivesOnYourPhone": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -2387,7 +2387,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"languageSubtitle": "Socraigh an teanga a úsáideann tú ar Twake Mail.",
|
||||
"languageSubtitle": "Socraigh an teanga a úsáideann tú ar V-Mail.",
|
||||
"@languageSubtitle": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -2423,7 +2423,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"bannerProgressingRecoveryMessage": "Tá an téarnamh ar siúl. Is féidir leat leanúint ar aghaidh ag baint úsáide as Twake Mail",
|
||||
"bannerProgressingRecoveryMessage": "Tá an téarnamh ar siúl. Is féidir leat leanúint ar aghaidh ag baint úsáide as V-Mail",
|
||||
"@bannerProgressingRecoveryMessage": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -2615,7 +2615,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"pleaseAllowNotifications": "Ceadaigh fógraí ó Twake Mail i Socruithe an ghléis",
|
||||
"pleaseAllowNotifications": "Ceadaigh fógraí ó V-Mail i Socruithe an ghléis",
|
||||
"@pleaseAllowNotifications": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -3017,7 +3017,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"app_name": "Twake Mail",
|
||||
"app_name": "V-Mail",
|
||||
"@app_name": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -3163,7 +3163,7 @@
|
||||
"emailAddress": {}
|
||||
}
|
||||
},
|
||||
"createTwakeIdFailed": "Theip ar Cruthaigh Twake ID. Seiceáil arís le do thoil.",
|
||||
"createTwakeIdFailed": "Theip ar Cruthaigh Workavia ID. Seiceáil arís le do thoil.",
|
||||
"@createTwakeIdFailed": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -3485,7 +3485,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"createTwakeId": "Cruthaigh ID Twake",
|
||||
"createTwakeId": "Cruthaigh ID Workavia",
|
||||
"@createTwakeId": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -4795,13 +4795,13 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"quotaBannerWarningSubtitleWithPremium": "Chun leanúint ar aghaidh ag seoladh teachtaireachtaí agus ag baint taitneamh as gach gné de Twake Mail, smaoinigh ar do stóras a ghlanadh nó a uasghrádú.",
|
||||
"quotaBannerWarningSubtitleWithPremium": "Chun leanúint ar aghaidh ag seoladh teachtaireachtaí agus ag baint taitneamh as gach gné de V-Mail, smaoinigh ar do stóras a ghlanadh nó a uasghrádú.",
|
||||
"@quotaBannerWarningSubtitleWithPremium": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"quotaBannerWarningSubtitleWithoutPremium": "Chun leanúint ar aghaidh ag seoladh teachtaireachtaí agus ag baint taitneamh as gach gné de Twake Mail, smaoinigh ar ghlanadh suas.",
|
||||
"quotaBannerWarningSubtitleWithoutPremium": "Chun leanúint ar aghaidh ag seoladh teachtaireachtaí agus ag baint taitneamh as gach gné de V-Mail, smaoinigh ar ghlanadh suas.",
|
||||
"@quotaBannerWarningSubtitleWithoutPremium": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -5233,7 +5233,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"manageYourTwakeAccount": "Bainistigh do chuntas Twake",
|
||||
"manageYourTwakeAccount": "Bainistigh do chuntas Workavia",
|
||||
"@manageYourTwakeAccount": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"login_text_slogan": "Twake Mail",
|
||||
"login_text_slogan": "V-Mail",
|
||||
"@login_text_slogan": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -677,7 +677,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"app_name": "Twake Mail",
|
||||
"app_name": "V-Mail",
|
||||
"@app_name": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -827,7 +827,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"page_name": "Twake Mail",
|
||||
"page_name": "V-Mail",
|
||||
"@page_name": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -2395,13 +2395,13 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"textQuotasRunningOutOfStorageContent": "A breve non potrai più inviare email in Twake Mail. Pulisci il tuo spazio di archiviazione o aggiornalo per ottenere tutte le funzionalità di Twake Mail.",
|
||||
"textQuotasRunningOutOfStorageContent": "A breve non potrai più inviare email in V-Mail. Pulisci il tuo spazio di archiviazione o aggiornalo per ottenere tutte le funzionalità di V-Mail.",
|
||||
"@textQuotasRunningOutOfStorageContent": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"textQuotasRunOutOfStorageContent": "Ora non puoi temporaneamente inviare o ricevere e-mail. Libera o aggiorna il tuo spazio di archiviazione per ottenere tutte le funzionalità di Twake Mail.",
|
||||
"textQuotasRunOutOfStorageContent": "Ora non puoi temporaneamente inviare o ricevere e-mail. Libera o aggiorna il tuo spazio di archiviazione per ottenere tutte le funzionalità di V-Mail.",
|
||||
"@textQuotasRunOutOfStorageContent": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -2467,7 +2467,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"appTitlePushNotification": "Twake Mail",
|
||||
"appTitlePushNotification": "V-Mail",
|
||||
"@appTitlePushNotification": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
|
||||
+14
-14
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"@@last_modified": "2026-03-11T14:39:59.601630",
|
||||
"@@last_modified": "2026-04-29T17:40:20.016142",
|
||||
"initializing_data": "Initializing data...",
|
||||
"@initializing_data": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"login_text_slogan": "Twake Mail",
|
||||
"login_text_slogan": "V-Mail",
|
||||
"@login_text_slogan": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -872,7 +872,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"app_name": "Twake Mail",
|
||||
"app_name": "V-Mail",
|
||||
"@app_name": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -1028,7 +1028,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"page_name": "Twake Mail",
|
||||
"page_name": "V-Mail",
|
||||
"@page_name": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -1608,7 +1608,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"languageSubtitle": "Set the language you use on Twake Mail.",
|
||||
"languageSubtitle": "Set the language you use on V-Mail.",
|
||||
"@languageSubtitle": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -2626,7 +2626,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"appTitlePushNotification": "Twake Mail",
|
||||
"appTitlePushNotification": "V-Mail",
|
||||
"@appTitlePushNotification": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -3666,7 +3666,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"bannerProgressingRecoveryMessage": "The recovery is in progress. You can continue using Twake Mail",
|
||||
"bannerProgressingRecoveryMessage": "The recovery is in progress. You can continue using V-Mail",
|
||||
"@bannerProgressingRecoveryMessage": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -3948,7 +3948,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"pleaseAllowNotifications": "Please allow notifications from Twake Mail in the device's Settings",
|
||||
"pleaseAllowNotifications": "Please allow notifications from V-Mail in the device's Settings",
|
||||
"@pleaseAllowNotifications": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -3960,7 +3960,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"allowsTwakeMailToNotifyYouWhenANewMessageArrivesOnYourPhone": "Allows Twake Mail to notify you when a new message arrives on your phone",
|
||||
"allowsTwakeMailToNotifyYouWhenANewMessageArrivesOnYourPhone": "Allows V-Mail to notify you when a new message arrives on your phone",
|
||||
"@allowsTwakeMailToNotifyYouWhenANewMessageArrivesOnYourPhone": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -4104,7 +4104,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"createTwakeId": "Create Twake ID",
|
||||
"createTwakeId": "Create Workavia ID",
|
||||
"@createTwakeId": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -4122,7 +4122,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"createTwakeIdFailed": "Create Twake Id failed. Please check again.",
|
||||
"createTwakeIdFailed": "Create Workavia Id failed. Please check again.",
|
||||
"@createTwakeIdFailed": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -4674,13 +4674,13 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"quotaBannerWarningSubtitleWithPremium": "To keep sending messages and enjoying all Twake Mail features, please consider cleaning up or upgrading your storage.",
|
||||
"quotaBannerWarningSubtitleWithPremium": "To keep sending messages and enjoying all V-Mail features, please consider cleaning up or upgrading your storage.",
|
||||
"@quotaBannerWarningSubtitleWithPremium": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"quotaBannerWarningSubtitleWithoutPremium": "To keep sending messages and enjoying all Twake Mail features, please consider cleaning up.",
|
||||
"quotaBannerWarningSubtitleWithoutPremium": "To keep sending messages and enjoying all V-Mail features, please consider cleaning up.",
|
||||
"@quotaBannerWarningSubtitleWithoutPremium": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -5130,7 +5130,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"manageYourTwakeAccount": "Manage your Twake account",
|
||||
"manageYourTwakeAccount": "Manage your Workavia account",
|
||||
"@manageYourTwakeAccount": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
|
||||
@@ -41,7 +41,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"login_text_slogan": "Twake Mail",
|
||||
"login_text_slogan": "V-Mail",
|
||||
"@login_text_slogan": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -2347,7 +2347,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"app_name": "Twake Mail",
|
||||
"app_name": "V-Mail",
|
||||
"@app_name": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"login_text_slogan": "Twake Mail",
|
||||
"login_text_slogan": "V-Mail",
|
||||
"@login_text_slogan": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -859,7 +859,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"app_name": "Twake Mail",
|
||||
"app_name": "V-Mail",
|
||||
"@app_name": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -1015,7 +1015,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"page_name": "Twake Mail",
|
||||
"page_name": "V-Mail",
|
||||
"@page_name": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
|
||||
+15
-15
@@ -6,7 +6,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"login_text_slogan": "Twake Mail",
|
||||
"login_text_slogan": "V-Mail",
|
||||
"@login_text_slogan": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -672,7 +672,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"app_name": "Twake Mail",
|
||||
"app_name": "V-Mail",
|
||||
"@app_name": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -856,7 +856,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"page_name": "Twake Mail",
|
||||
"page_name": "V-Mail",
|
||||
"@page_name": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -2344,7 +2344,7 @@
|
||||
"softLimit": {}
|
||||
}
|
||||
},
|
||||
"textQuotasRunOutOfStorageContent": "Теперь вы временно не можете отправлять или получать письма. Пожалуйста, освободите хранилище или обновите подписку, чтобы получить доступ ко всем функциям Twake Mail.",
|
||||
"textQuotasRunOutOfStorageContent": "Теперь вы временно не можете отправлять или получать письма. Пожалуйста, освободите хранилище или обновите подписку, чтобы получить доступ ко всем функциям V-Mail.",
|
||||
"@textQuotasRunOutOfStorageContent": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -2408,7 +2408,7 @@
|
||||
"progress": {}
|
||||
}
|
||||
},
|
||||
"textQuotasRunningOutOfStorageContent": "Скоро вы потеряете возможность отправлять письма в Twake Mail. Пожалуйста, очистите хранилище или обновите подписку, чтобы получить все функции Twake Mail.",
|
||||
"textQuotasRunningOutOfStorageContent": "Скоро вы потеряете возможность отправлять письма в V-Mail. Пожалуйста, очистите хранилище или обновите подписку, чтобы получить все функции V-Mail.",
|
||||
"@textQuotasRunningOutOfStorageContent": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -2468,7 +2468,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"appTitlePushNotification": "Twake Mail",
|
||||
"appTitlePushNotification": "V-Mail",
|
||||
"@appTitlePushNotification": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -3466,7 +3466,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"languageSubtitle": "Выберите язык Twake Mail.",
|
||||
"languageSubtitle": "Выберите язык V-Mail.",
|
||||
"@languageSubtitle": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -3798,7 +3798,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"bannerProgressingRecoveryMessage": "Мы уже занимаемся восстановлением. Вы можете продолжать использовать Twake Mail",
|
||||
"bannerProgressingRecoveryMessage": "Мы уже занимаемся восстановлением. Вы можете продолжать использовать V-Mail",
|
||||
"@bannerProgressingRecoveryMessage": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -4066,7 +4066,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"pleaseAllowNotifications": "Перейдите в настройки устройства и разрешите Twake Mail присылать уведомления",
|
||||
"pleaseAllowNotifications": "Перейдите в настройки устройства и разрешите V-Mail присылать уведомления",
|
||||
"@pleaseAllowNotifications": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -4078,7 +4078,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"allowsTwakeMailToNotifyYouWhenANewMessageArrivesOnYourPhone": "Позволяет Twake Mail уведомлять вас о поступлении нового сообщения",
|
||||
"allowsTwakeMailToNotifyYouWhenANewMessageArrivesOnYourPhone": "Позволяет V-Mail уведомлять вас о поступлении нового сообщения",
|
||||
"@allowsTwakeMailToNotifyYouWhenANewMessageArrivesOnYourPhone": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -4276,13 +4276,13 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"createTwakeId": "Создать Twake ID",
|
||||
"createTwakeId": "Создать Workavia ID",
|
||||
"@createTwakeId": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"createTwakeIdFailed": "Не удалось создать Twake ID. Попробуйте еще раз.",
|
||||
"createTwakeIdFailed": "Не удалось создать Workavia ID. Попробуйте еще раз.",
|
||||
"@createTwakeIdFailed": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -5036,13 +5036,13 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"quotaBannerWarningSubtitleWithPremium": "Чтобы продолжить отправлять сообщения и пользоваться всеми функциями Twake Mail, освободите место или обновите план.",
|
||||
"quotaBannerWarningSubtitleWithPremium": "Чтобы продолжить отправлять сообщения и пользоваться всеми функциями V-Mail, освободите место или обновите план.",
|
||||
"@quotaBannerWarningSubtitleWithPremium": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"quotaBannerWarningSubtitleWithoutPremium": "Чтобы продолжить отправлять сообщения и пользоваться всеми функциями Twake Mail, освободите место на диске.",
|
||||
"quotaBannerWarningSubtitleWithoutPremium": "Чтобы продолжить отправлять сообщения и пользоваться всеми функциями V-Mail, освободите место на диске.",
|
||||
"@quotaBannerWarningSubtitleWithoutPremium": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -5492,7 +5492,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"manageYourTwakeAccount": "Управляйте учетной записью Twake",
|
||||
"manageYourTwakeAccount": "Управляйте учетной записью Workavia",
|
||||
"@manageYourTwakeAccount": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
|
||||
+13
-13
@@ -195,7 +195,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"login_text_slogan": "Twake Mail",
|
||||
"login_text_slogan": "V-Mail",
|
||||
"@login_text_slogan": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -967,7 +967,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"app_name": "Twake Mail",
|
||||
"app_name": "V-Mail",
|
||||
"@app_name": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -1105,7 +1105,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"page_name": "Twake Mail",
|
||||
"page_name": "V-Mail",
|
||||
"@page_name": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -1655,7 +1655,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"languageSubtitle": "Встановіть мову, яку ви використовуєте в Twake Mail.",
|
||||
"languageSubtitle": "Встановіть мову, яку ви використовуєте в V-Mail.",
|
||||
"@languageSubtitle": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -2655,7 +2655,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"appTitlePushNotification": "Twake Mail",
|
||||
"appTitlePushNotification": "V-Mail",
|
||||
"@appTitlePushNotification": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -3693,7 +3693,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"bannerProgressingRecoveryMessage": "Відновлення триває. Ви можете продовжувати користуватися Twake Mail",
|
||||
"bannerProgressingRecoveryMessage": "Відновлення триває. Ви можете продовжувати користуватися V-Mail",
|
||||
"@bannerProgressingRecoveryMessage": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -3979,7 +3979,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"pleaseAllowNotifications": "Будь ласка, дозвольте сповіщення від Twake Mail у налаштуваннях пристрою",
|
||||
"pleaseAllowNotifications": "Будь ласка, дозвольте сповіщення від V-Mail у налаштуваннях пристрою",
|
||||
"@pleaseAllowNotifications": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -3991,7 +3991,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"allowsTwakeMailToNotifyYouWhenANewMessageArrivesOnYourPhone": "Дозволяє Twake Mail повідомляти вас про надходження нового повідомлення на ваш телефон",
|
||||
"allowsTwakeMailToNotifyYouWhenANewMessageArrivesOnYourPhone": "Дозволяє V-Mail повідомляти вас про надходження нового повідомлення на ваш телефон",
|
||||
"@allowsTwakeMailToNotifyYouWhenANewMessageArrivesOnYourPhone": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -4135,7 +4135,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"createTwakeId": "Створити Twake ID",
|
||||
"createTwakeId": "Створити Workavia ID",
|
||||
"@createTwakeId": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -4153,7 +4153,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"createTwakeIdFailed": "Не вдалося створити ідентифікатор Twake. Перевірте ще раз.",
|
||||
"createTwakeIdFailed": "Не вдалося створити ідентифікатор Workavia. Перевірте ще раз.",
|
||||
"@createTwakeIdFailed": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -4723,13 +4723,13 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"quotaBannerWarningSubtitleWithPremium": "Щоб продовжувати надсилати повідомлення та користуватися всіма функціями Twake Mail, подумайте про очищення або оновлення вашого сховища.",
|
||||
"quotaBannerWarningSubtitleWithPremium": "Щоб продовжувати надсилати повідомлення та користуватися всіма функціями V-Mail, подумайте про очищення або оновлення вашого сховища.",
|
||||
"@quotaBannerWarningSubtitleWithPremium": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"quotaBannerWarningSubtitleWithoutPremium": "Щоб продовжувати надсилати повідомлення та користуватися всіма функціями Twake Mail, будь ласка, подумайте про очищення.",
|
||||
"quotaBannerWarningSubtitleWithoutPremium": "Щоб продовжувати надсилати повідомлення та користуватися всіма функціями V-Mail, будь ласка, подумайте про очищення.",
|
||||
"@quotaBannerWarningSubtitleWithoutPremium": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -5161,7 +5161,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"manageYourTwakeAccount": "Керуйте своїм обліковим записом Twake",
|
||||
"manageYourTwakeAccount": "Керуйте своїм обліковим записом Workavia",
|
||||
"@manageYourTwakeAccount": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
|
||||
+14
-14
@@ -6,7 +6,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"login_text_slogan": "Twake Mail",
|
||||
"login_text_slogan": "V-Mail",
|
||||
"@login_text_slogan": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -642,7 +642,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"app_name": "Twake Mail",
|
||||
"app_name": "V-Mail",
|
||||
"@app_name": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -660,7 +660,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"page_name": "Twake Mail",
|
||||
"page_name": "V-Mail",
|
||||
"@page_name": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -2216,7 +2216,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"appTitlePushNotification": "Twake Mail",
|
||||
"appTitlePushNotification": "V-Mail",
|
||||
"@appTitlePushNotification": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -2416,7 +2416,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"textQuotasRunningOutOfStorageContent": "Sắp tới bạn sẽ không thể gửi email trong Twake Mail. Vui lòng dọn dẹp không gian lưu trữ hoặc nâng cấp dung lượng để sử dụng đầy đủ tính năng trong Twake Mail.",
|
||||
"textQuotasRunningOutOfStorageContent": "Sắp tới bạn sẽ không thể gửi email trong V-Mail. Vui lòng dọn dẹp không gian lưu trữ hoặc nâng cấp dung lượng để sử dụng đầy đủ tính năng trong V-Mail.",
|
||||
"@textQuotasRunningOutOfStorageContent": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -2440,7 +2440,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"textQuotasRunOutOfStorageContent": "Bây giờ bạn tạm thời không thể gửi hoặc nhận email. Vui lòng giải phóng hoặc nâng cấp bộ nhớ của bạn để sử dụng các tính năng đầy đủ của Twake Mail.",
|
||||
"textQuotasRunOutOfStorageContent": "Bây giờ bạn tạm thời không thể gửi hoặc nhận email. Vui lòng giải phóng hoặc nâng cấp bộ nhớ của bạn để sử dụng các tính năng đầy đủ của V-Mail.",
|
||||
"@textQuotasRunOutOfStorageContent": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -3708,7 +3708,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"bannerProgressingRecoveryMessage": "Quá trình khôi phục đang được tiến hành. Bạn có thể tiếp tục sử dụng Twake Mail",
|
||||
"bannerProgressingRecoveryMessage": "Quá trình khôi phục đang được tiến hành. Bạn có thể tiếp tục sử dụng V-Mail",
|
||||
"@bannerProgressingRecoveryMessage": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -4060,7 +4060,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"pleaseAllowNotifications": "Hãy cho phép Twake Mail thông báo bên trong Cài Đặt",
|
||||
"pleaseAllowNotifications": "Hãy cho phép V-Mail thông báo bên trong Cài Đặt",
|
||||
"@pleaseAllowNotifications": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -4078,7 +4078,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"allowsTwakeMailToNotifyYouWhenANewMessageArrivesOnYourPhone": "Cho phép Twake Mail thông báo khi có tin nhắn mới",
|
||||
"allowsTwakeMailToNotifyYouWhenANewMessageArrivesOnYourPhone": "Cho phép V-Mail thông báo khi có tin nhắn mới",
|
||||
"@allowsTwakeMailToNotifyYouWhenANewMessageArrivesOnYourPhone": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -4270,13 +4270,13 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"createTwakeId": "Tạo tài khoản Twake ID",
|
||||
"createTwakeId": "Tạo tài khoản Workavia ID",
|
||||
"@createTwakeId": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"createTwakeIdFailed": "Tạo tài khoản Twake ID thất bại. Hãy thử lại.",
|
||||
"createTwakeIdFailed": "Tạo tài khoản Workavia ID thất bại. Hãy thử lại.",
|
||||
"@createTwakeIdFailed": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -5024,13 +5024,13 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"quotaBannerWarningSubtitleWithPremium": "Để không gián đoạn trải nghiệm Twake Mail, vui lòng dọn dẹp hoặc nâng cấp dung lượng.",
|
||||
"quotaBannerWarningSubtitleWithPremium": "Để không gián đoạn trải nghiệm V-Mail, vui lòng dọn dẹp hoặc nâng cấp dung lượng.",
|
||||
"@quotaBannerWarningSubtitleWithPremium": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"quotaBannerWarningSubtitleWithoutPremium": "Để không gián đoạn trải nghiệm Twake Mail, vui lòng dọn dẹp thư rác.",
|
||||
"quotaBannerWarningSubtitleWithoutPremium": "Để không gián đoạn trải nghiệm V-Mail, vui lòng dọn dẹp thư rác.",
|
||||
"@quotaBannerWarningSubtitleWithoutPremium": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -5474,7 +5474,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"manageYourTwakeAccount": "Quản lý tài khoản Twake",
|
||||
"manageYourTwakeAccount": "Quản lý tài khoản Workavia",
|
||||
"@manageYourTwakeAccount": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
|
||||
+13
-13
@@ -87,7 +87,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"login_text_slogan": "Twake Mail",
|
||||
"login_text_slogan": "V-Mail",
|
||||
"@login_text_slogan": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -1235,7 +1235,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"bannerProgressingRecoveryMessage": "恢复正在进行中。您可以继续使用 Twake Mail",
|
||||
"bannerProgressingRecoveryMessage": "恢复正在进行中。您可以继续使用 V-Mail",
|
||||
"@bannerProgressingRecoveryMessage": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -1621,7 +1621,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"page_name": "Twake Mail",
|
||||
"page_name": "V-Mail",
|
||||
"@page_name": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -1733,7 +1733,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"app_name": "Twake Mail",
|
||||
"app_name": "V-Mail",
|
||||
"@app_name": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -1999,7 +1999,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"languageSubtitle": "设置您在 Twake Mail 上使用的语言。",
|
||||
"languageSubtitle": "设置您在 V-Mail 上使用的语言。",
|
||||
"@languageSubtitle": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -2137,13 +2137,13 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"pleaseAllowNotifications": "请在设备的设置中允许来自 Twake Mail 的通知",
|
||||
"pleaseAllowNotifications": "请在设备的设置中允许来自 V-Mail 的通知",
|
||||
"@pleaseAllowNotifications": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"allowsTwakeMailToNotifyYouWhenANewMessageArrivesOnYourPhone": "允许 Twake Mail 在您的手机上收到新邮件时通知您",
|
||||
"allowsTwakeMailToNotifyYouWhenANewMessageArrivesOnYourPhone": "允许 V-Mail 在您的手机上收到新邮件时通知您",
|
||||
"@allowsTwakeMailToNotifyYouWhenANewMessageArrivesOnYourPhone": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -2307,7 +2307,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"appTitlePushNotification": "Twake Mail",
|
||||
"appTitlePushNotification": "V-Mail",
|
||||
"@appTitlePushNotification": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -3063,7 +3063,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"createTwakeIdFailed": "创建 Twake ID 失败,请重新检查。",
|
||||
"createTwakeIdFailed": "创建 Workavia ID 失败,请重新检查。",
|
||||
"@createTwakeIdFailed": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -3147,7 +3147,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"createTwakeId": "创建 Twake ID",
|
||||
"createTwakeId": "创建 Workavia ID",
|
||||
"@createTwakeId": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -4789,13 +4789,13 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"quotaBannerWarningSubtitleWithPremium": "要继续发送邮件并使用 Twake Mail 所有功能,请考虑清理或升级您的存储空间。",
|
||||
"quotaBannerWarningSubtitleWithPremium": "要继续发送邮件并使用 V-Mail 所有功能,请考虑清理或升级您的存储空间。",
|
||||
"@quotaBannerWarningSubtitleWithPremium": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"quotaBannerWarningSubtitleWithoutPremium": "要继续发送邮件并使用 Twake Mail 所有功能,请考虑清理。",
|
||||
"quotaBannerWarningSubtitleWithoutPremium": "要继续发送邮件并使用 V-Mail 所有功能,请考虑清理。",
|
||||
"@quotaBannerWarningSubtitleWithoutPremium": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
@@ -5227,7 +5227,7 @@
|
||||
"placeholders_order": [],
|
||||
"placeholders": {}
|
||||
},
|
||||
"manageYourTwakeAccount": "管理您的 Twake 账号",
|
||||
"manageYourTwakeAccount": "管理您的 Workavia 账号",
|
||||
"@manageYourTwakeAccount": {
|
||||
"type": "text",
|
||||
"placeholders_order": [],
|
||||
|
||||
@@ -25,7 +25,7 @@ class AppLocalizations {
|
||||
}
|
||||
|
||||
String get login_text_slogan {
|
||||
return Intl.message('Twake Mail',
|
||||
return Intl.message('V-Mail',
|
||||
name: 'login_text_slogan');
|
||||
}
|
||||
|
||||
@@ -882,7 +882,7 @@ class AppLocalizations {
|
||||
|
||||
String get app_name {
|
||||
return Intl.message(
|
||||
'Twake Mail',
|
||||
'V-Mail',
|
||||
name: 'app_name');
|
||||
}
|
||||
|
||||
@@ -1051,7 +1051,7 @@ class AppLocalizations {
|
||||
|
||||
String get page_name {
|
||||
return Intl.message(
|
||||
'Twake Mail',
|
||||
'V-Mail',
|
||||
name: 'page_name');
|
||||
}
|
||||
|
||||
@@ -1625,7 +1625,7 @@ class AppLocalizations {
|
||||
|
||||
String get languageSubtitle {
|
||||
return Intl.message(
|
||||
'Set the language you use on Twake Mail.',
|
||||
'Set the language you use on V-Mail.',
|
||||
name: 'languageSubtitle');
|
||||
}
|
||||
|
||||
@@ -2679,7 +2679,7 @@ class AppLocalizations {
|
||||
|
||||
String get appTitlePushNotification {
|
||||
return Intl.message(
|
||||
'Twake Mail',
|
||||
'V-Mail',
|
||||
name: 'appTitlePushNotification');
|
||||
}
|
||||
|
||||
@@ -3802,7 +3802,7 @@ class AppLocalizations {
|
||||
|
||||
String get bannerProgressingRecoveryMessage {
|
||||
return Intl.message(
|
||||
'The recovery is in progress. You can continue using Twake Mail',
|
||||
'The recovery is in progress. You can continue using V-Mail',
|
||||
name: 'bannerProgressingRecoveryMessage',
|
||||
);
|
||||
}
|
||||
@@ -4113,7 +4113,7 @@ class AppLocalizations {
|
||||
|
||||
String get pleaseAllowNotifications {
|
||||
return Intl.message(
|
||||
'Please allow notifications from Twake Mail in the device\'s Settings',
|
||||
'Please allow notifications from V-Mail in the device\'s Settings',
|
||||
name: 'pleaseAllowNotifications',
|
||||
);
|
||||
}
|
||||
@@ -4127,7 +4127,7 @@ class AppLocalizations {
|
||||
|
||||
String get allowsTwakeMailToNotifyYouWhenANewMessageArrivesOnYourPhone {
|
||||
return Intl.message(
|
||||
'Allows Twake Mail to notify you when a new message arrives on your phone',
|
||||
'Allows V-Mail to notify you when a new message arrives on your phone',
|
||||
name: 'allowsTwakeMailToNotifyYouWhenANewMessageArrivesOnYourPhone',
|
||||
);
|
||||
}
|
||||
@@ -4286,7 +4286,7 @@ class AppLocalizations {
|
||||
|
||||
String get createTwakeId {
|
||||
return Intl.message(
|
||||
'Create Twake ID',
|
||||
'Create Workavia ID',
|
||||
name: 'createTwakeId',
|
||||
);
|
||||
}
|
||||
@@ -4307,7 +4307,7 @@ class AppLocalizations {
|
||||
|
||||
String get createTwakeIdFailed {
|
||||
return Intl.message(
|
||||
'Create Twake Id failed. Please check again.',
|
||||
'Create Workavia Id failed. Please check again.',
|
||||
name: 'createTwakeIdFailed',
|
||||
);
|
||||
}
|
||||
@@ -4932,14 +4932,14 @@ class AppLocalizations {
|
||||
|
||||
String get quotaBannerWarningSubtitleWithPremium {
|
||||
return Intl.message(
|
||||
'To keep sending messages and enjoying all Twake Mail features, please consider cleaning up or upgrading your storage.',
|
||||
'To keep sending messages and enjoying all V-Mail features, please consider cleaning up or upgrading your storage.',
|
||||
name: 'quotaBannerWarningSubtitleWithPremium',
|
||||
);
|
||||
}
|
||||
|
||||
String get quotaBannerWarningSubtitleWithoutPremium {
|
||||
return Intl.message(
|
||||
'To keep sending messages and enjoying all Twake Mail features, please consider cleaning up.',
|
||||
'To keep sending messages and enjoying all V-Mail features, please consider cleaning up.',
|
||||
name: 'quotaBannerWarningSubtitleWithoutPremium',
|
||||
);
|
||||
}
|
||||
@@ -5439,7 +5439,7 @@ class AppLocalizations {
|
||||
|
||||
String get manageYourTwakeAccount {
|
||||
return Intl.message(
|
||||
'Manage your Twake account',
|
||||
'Manage your Workavia account',
|
||||
name: 'manageYourTwakeAccount',
|
||||
);
|
||||
}
|
||||
|
||||
@@ -9,7 +9,7 @@ class NotificationPermissionService extends PermissionService {
|
||||
return false;
|
||||
}
|
||||
|
||||
const methodChannel = MethodChannel('com.linagora.android.teammail.notification.group.permission');
|
||||
const methodChannel = MethodChannel('com.workavia.mail.notification.group.permission');
|
||||
const methodName = 'getNotificationGroupPermission';
|
||||
final invokeResult = await methodChannel.invokeMethod<bool>(
|
||||
methodName,
|
||||
|
||||
@@ -13,8 +13,8 @@ class AppConfig {
|
||||
|
||||
static const String appDashboardConfigurationPath = "configurations/app_dashboard.json";
|
||||
static const String attachmentKeywordsConfigurationPath = "configurations/attachment_keywords.json";
|
||||
static const String iOSKeychainSharingGroupId = 'KUT463DS29.com.linagora.ios.teammail.shared';
|
||||
static const String iOSKeychainSharingService = 'com.linagora.ios.teammail.sessions';
|
||||
static const String iOSKeychainSharingGroupId = 'KUT463DS29.com.workavia.mail.shared';
|
||||
static const String iOSKeychainSharingService = 'com.workavia.mail.sessions';
|
||||
static const String saasPlatform = 'saas';
|
||||
static const String linagoraPrivacyUrl = 'https://github.com/linagora/tmail-flutter/blob/master/privacy.md';
|
||||
static const String saasRegistrationUrl = 'https://sign-up.twake.app';
|
||||
|
||||
Reference in New Issue
Block a user