diff --git a/l10n.yaml b/l10n.yaml index 6f72a55d..315c2632 100644 --- a/l10n.yaml +++ b/l10n.yaml @@ -1,4 +1,4 @@ -arb-dir: lib/l10n/arb -template-arb-file: app_en.arb +arb-dir: lib/l10n/ +template-arb-file: intl_en.arb output-localization-file: app_localizations.dart nullable-getter: false diff --git a/lib/app/routes/routes.dart b/lib/app/routes/routes.dart index b85da471..9f3d9ced 100644 --- a/lib/app/routes/routes.dart +++ b/lib/app/routes/routes.dart @@ -4,8 +4,8 @@ import 'package:dairy_app/core/pages/settings_page.dart'; import 'package:dairy_app/features/auth/presentation/pages/auth_page.dart'; import 'package:dairy_app/features/notes/presentation/pages/note_create_page.dart'; import 'package:dairy_app/features/notes/presentation/pages/note_read_only_page.dart'; +import 'package:dairy_app/generated/l10n.dart'; import 'package:flutter/material.dart'; -import 'package:flutter_gen/gen_l10n/app_localizations.dart'; class RouteGenerator { static Route generateRoute(RouteSettings settings) { @@ -35,7 +35,7 @@ class RouteGenerator { return MaterialPageRoute( builder: (context) => Center( - child: Text(AppLocalizations.of(context).pageNotFound), + child: Text(S.current.pageNotFound), ), ); } diff --git a/lib/app/view/app.dart b/lib/app/view/app.dart index 9cfc3915..be9fd39b 100644 --- a/lib/app/view/app.dart +++ b/lib/app/view/app.dart @@ -14,9 +14,9 @@ import 'package:dairy_app/features/notes/presentation/bloc/notes/notes_bloc.dart import 'package:dairy_app/features/notes/presentation/bloc/notes_fetch/notes_fetch_cubit.dart'; import 'package:dairy_app/features/notes/presentation/bloc/selectable_list/selectable_list_cubit.dart'; import 'package:dairy_app/features/sync/presentation/bloc/notes_sync/notesync_cubit.dart'; +import 'package:dairy_app/generated/l10n.dart'; import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; -import 'package:flutter_gen/gen_l10n/app_localizations.dart'; import 'package:flutter_localizations/flutter_localizations.dart'; final log = printer("App"); @@ -107,20 +107,9 @@ class _AppViewState extends State { navigatorKey: _navigatorKey, debugShowCheckedModeBanner: false, title: "My Dairy", - supportedLocales: const [ - Locale('en'), - Locale('hi'), - Locale('pa'), - Locale('he'), - Locale('kn'), - Locale('pt', "BR"), - Locale('sw'), - Locale('ar'), - Locale('de'), - Locale('fi') - ], + supportedLocales: S.delegate.supportedLocales, localizationsDelegates: const [ - AppLocalizations.delegate, + S.delegate, GlobalMaterialLocalizations.delegate, GlobalCupertinoLocalizations.delegate, GlobalWidgetsLocalizations.delegate diff --git a/lib/core/pages/settings_page.dart b/lib/core/pages/settings_page.dart index 9e5c2bd6..24ca2079 100644 --- a/lib/core/pages/settings_page.dart +++ b/lib/core/pages/settings_page.dart @@ -12,9 +12,9 @@ import 'package:dairy_app/features/auth/presentation/widgets/security_settings.d import 'package:dairy_app/features/auth/presentation/widgets/setup_account.dart'; import 'package:dairy_app/features/notes/presentation/widgets/daily_reminders.dart'; import 'package:dairy_app/features/sync/presentation/widgets/sync_settings.dart'; +import 'package:dairy_app/generated/l10n.dart'; import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; -import 'package:flutter_gen/gen_l10n/app_localizations.dart'; import '../widgets/auto_save_enable.dart'; class SettingsPage extends StatefulWidget { @@ -73,7 +73,7 @@ class _SettingsPageState extends State { onPressed: () => Navigator.of(context).pop(), icon: const Icon(Icons.arrow_back), ), - title: Text(AppLocalizations.of(context).settings), + title: Text(S.current.settings), actions: [LogoutButton(authSessionBloc: authSessionBloc)], ), body: Container( diff --git a/lib/core/widgets/auto_save_enable.dart b/lib/core/widgets/auto_save_enable.dart index 9c4713e1..cd6c6791 100644 --- a/lib/core/widgets/auto_save_enable.dart +++ b/lib/core/widgets/auto_save_enable.dart @@ -1,11 +1,11 @@ import 'package:dairy_app/app/themes/theme_extensions/note_create_page_theme_extensions.dart'; +import 'package:dairy_app/generated/l10n.dart'; import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; -import 'package:flutter_gen/gen_l10n/app_localizations.dart'; -import '../../app/themes/theme_extensions/settings_page_theme_extensions.dart'; -import '../../features/auth/core/constants.dart'; -import '../../features/auth/presentation/bloc/user_config/user_config_cubit.dart'; -import '../utils/utils.dart'; +import 'package:dairy_app/app/themes/theme_extensions/settings_page_theme_extensions.dart'; +import 'package:dairy_app/features/auth/core/constants.dart'; +import 'package:dairy_app/features/auth/presentation/bloc/user_config/user_config_cubit.dart'; +import 'package:dairy_app/core/utils/utils.dart'; class AutoSaveToggleButton extends StatelessWidget { const AutoSaveToggleButton({Key? key}) : super(key: key); @@ -32,7 +32,7 @@ class AutoSaveToggleButton extends StatelessWidget { activeColor: activeColor, contentPadding: const EdgeInsets.all(0.0), title: Text( - AppLocalizations.of(context).enableAutoSave, + S.current.enableAutoSave, style: TextStyle(color: mainTextColor), ), subtitle: Text( diff --git a/lib/core/widgets/home_page_app_bar.dart b/lib/core/widgets/home_page_app_bar.dart index 443371df..87c059f4 100644 --- a/lib/core/widgets/home_page_app_bar.dart +++ b/lib/core/widgets/home_page_app_bar.dart @@ -10,9 +10,9 @@ import 'package:dairy_app/core/widgets/submit_button.dart'; import 'package:dairy_app/features/notes/presentation/bloc/notes/notes_bloc.dart'; import 'package:dairy_app/features/notes/presentation/bloc/notes_fetch/notes_fetch_cubit.dart'; import 'package:dairy_app/features/notes/presentation/bloc/selectable_list/selectable_list_cubit.dart'; +import 'package:dairy_app/generated/l10n.dart'; import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; -import 'package:flutter_gen/gen_l10n/app_localizations.dart'; class HomePageAppBar extends StatefulWidget implements PreferredSizeWidget { const HomePageAppBar({ @@ -296,7 +296,7 @@ class Title extends StatelessWidget { mainAxisSize: MainAxisSize.min, children: [ Text( - AppLocalizations.of(context).dateFilter, + S.current.dateFilter, textAlign: TextAlign.center, style: TextStyle( fontSize: 20.0, @@ -310,7 +310,7 @@ class Title extends StatelessWidget { Flexible( flex: 2, child: Text( - AppLocalizations.of(context).from, + S.current.from, textAlign: TextAlign.center, style: TextStyle( fontSize: 16.0, @@ -334,7 +334,7 @@ class Title extends StatelessWidget { Flexible( flex: 2, child: Text( - AppLocalizations.of(context).to, + S.current.to, textAlign: TextAlign.center, style: TextStyle( fontSize: 16.0, @@ -355,7 +355,7 @@ class Title extends StatelessWidget { SubmitButton( isLoading: false, onSubmitted: () => Navigator.of(context).pop(), - buttonText: AppLocalizations.of(context).done, + buttonText: S.current.done, ) ], ), @@ -407,7 +407,7 @@ class _DeleteButton extends StatelessWidget { noteList: selectableListCubit.state.selectedItems)); } }, - buttonText: AppLocalizations.of(context).delete); + buttonText: S.current.delete); }, ); } @@ -423,7 +423,7 @@ class _CancelButton extends StatelessWidget { return BlocBuilder( builder: (context, state) { return CancelButton( - buttonText: AppLocalizations.of(context).cancel, + buttonText: S.current.cancel, onPressed: () { if (state is NoteDeleteLoading) { return; @@ -509,7 +509,7 @@ class DeleteIcon extends StatelessWidget { showToast( "$deletionCount item${deletionCount > 1 ? "s" : ""} deleted"); } else { - showToast(AppLocalizations.of(context).deletionFailed); + showToast(S.current.deletionFailed); } } }, diff --git a/lib/core/widgets/logout_button.dart b/lib/core/widgets/logout_button.dart index a1f5307f..201bd02d 100644 --- a/lib/core/widgets/logout_button.dart +++ b/lib/core/widgets/logout_button.dart @@ -3,8 +3,8 @@ import 'package:dairy_app/core/widgets/cancel_button.dart'; import 'package:dairy_app/core/widgets/glass_dialog.dart'; import 'package:dairy_app/core/widgets/submit_button.dart'; import 'package:dairy_app/features/auth/presentation/bloc/auth_session/auth_session_bloc.dart'; +import 'package:dairy_app/generated/l10n.dart'; import 'package:flutter/material.dart'; -import 'package:flutter_gen/gen_l10n/app_localizations.dart'; class LogoutButton extends StatelessWidget { const LogoutButton({ @@ -34,7 +34,7 @@ class LogoutButton extends StatelessWidget { crossAxisAlignment: CrossAxisAlignment.end, children: [ Text( - AppLocalizations.of(context).areYouSureAboutLoggingOut, + S.current.areYouSureAboutLoggingOut, style: TextStyle(fontSize: 16.0, color: mainTextColor), ), const SizedBox(height: 15), diff --git a/lib/core/widgets/send_feedback.dart b/lib/core/widgets/send_feedback.dart index 89f08eeb..186abbc3 100644 --- a/lib/core/widgets/send_feedback.dart +++ b/lib/core/widgets/send_feedback.dart @@ -1,6 +1,6 @@ import 'package:dairy_app/app/themes/theme_extensions/note_create_page_theme_extensions.dart'; import 'package:dairy_app/core/widgets/settings_tile.dart'; -import 'package:flutter_gen/gen_l10n/app_localizations.dart'; +import 'package:dairy_app/generated/l10n.dart'; import 'package:flutter/material.dart'; import 'package:url_launcher/url_launcher.dart'; @@ -14,7 +14,7 @@ class SendFeedBack extends StatelessWidget { Widget build(BuildContext context) => SettingsTile( onTap: _launchEmailApp, child: Text( - AppLocalizations.of(context).sendFeedback, + S.current.sendFeedback, style: TextStyle( fontSize: 16.0, color: Theme.of(context) diff --git a/lib/core/widgets/share_with_friends.dart b/lib/core/widgets/share_with_friends.dart index efdec649..ec2b1844 100644 --- a/lib/core/widgets/share_with_friends.dart +++ b/lib/core/widgets/share_with_friends.dart @@ -1,8 +1,8 @@ import 'package:dairy_app/app/themes/theme_extensions/note_create_page_theme_extensions.dart'; import 'package:dairy_app/core/widgets/settings_tile.dart'; +import 'package:dairy_app/generated/l10n.dart'; import 'package:flutter/material.dart'; import 'package:share_plus/share_plus.dart'; -import 'package:flutter_gen/gen_l10n/app_localizations.dart'; class ShareWithFriends extends StatelessWidget { const ShareWithFriends({Key? key}) : super(key: key); @@ -31,7 +31,7 @@ class ShareWithFriends extends StatelessWidget { } }), child: Text( - AppLocalizations.of(context).shareWithFriends, + S.current.shareWithFriends, style: mainTextStyle, ), ); diff --git a/lib/core/widgets/theme_dropdown.dart b/lib/core/widgets/theme_dropdown.dart index 8efabdbd..14a61f1d 100644 --- a/lib/core/widgets/theme_dropdown.dart +++ b/lib/core/widgets/theme_dropdown.dart @@ -1,9 +1,9 @@ import 'package:dairy_app/app/themes/theme_extensions/note_create_page_theme_extensions.dart'; import 'package:dairy_app/app/themes/theme_extensions/settings_page_theme_extensions.dart'; import 'package:dairy_app/features/auth/presentation/bloc/cubit/theme_cubit.dart'; +import 'package:dairy_app/generated/l10n.dart'; import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; -import 'package:flutter_gen/gen_l10n/app_localizations.dart'; class ThemeDropdown extends StatelessWidget { const ThemeDropdown({Key? key}) : super(key: key); @@ -23,7 +23,7 @@ class ThemeDropdown extends StatelessWidget { return Row( children: [ Text( - AppLocalizations.of(context).chooseTheme, + S.current.chooseTheme, style: TextStyle( fontSize: 16.0, color: mainTextColor, diff --git a/lib/core/widgets/version_number.dart b/lib/core/widgets/version_number.dart index df2fafc4..e3f51edd 100644 --- a/lib/core/widgets/version_number.dart +++ b/lib/core/widgets/version_number.dart @@ -1,8 +1,8 @@ import 'package:dairy_app/app/themes/theme_extensions/note_create_page_theme_extensions.dart'; import 'package:dairy_app/core/widgets/settings_tile.dart'; +import 'package:dairy_app/generated/l10n.dart'; import 'package:flutter/material.dart'; import 'package:package_info_plus/package_info_plus.dart'; -import 'package:flutter_gen/gen_l10n/app_localizations.dart'; class VersionNumber extends StatelessWidget { const VersionNumber({Key? key}) : super(key: key); @@ -25,7 +25,7 @@ class VersionNumber extends StatelessWidget { child: Row( children: [ Text( - AppLocalizations.of(context).appVersion, + S.current.appVersion, style: mainTextStyle, ), const Spacer(), diff --git a/lib/features/auth/data/repositories/fingerprint_auth_repo.dart b/lib/features/auth/data/repositories/fingerprint_auth_repo.dart index f4b8f644..0237d4da 100644 --- a/lib/features/auth/data/repositories/fingerprint_auth_repo.dart +++ b/lib/features/auth/data/repositories/fingerprint_auth_repo.dart @@ -8,8 +8,8 @@ import 'package:dairy_app/features/auth/data/models/user_config_model.dart'; import 'package:dairy_app/features/auth/domain/repositories/authentication_repository.dart'; import 'package:dairy_app/features/auth/presentation/bloc/auth_session/auth_session_bloc.dart'; import 'package:dairy_app/features/sync/data/datasources/temeplates/key_value_data_source_template.dart'; +import 'package:dairy_app/generated/l10n.dart'; import 'package:flutter/widgets.dart'; -import 'package:flutter_gen/gen_l10n/app_localizations.dart'; final log = printer("FingerPrintAuthRepo"); @@ -88,7 +88,7 @@ class FingerPrintAuthRepository { result.fold((e) { log.e(e); - showToast(AppLocalizations.of(context).fingerprintLoginFailed); + showToast(S.current.fingerprintLoginFailed); }, (user) { // for fingerprint login, it's never fresh login //! since a feature is removed, freshlogin is true to avoid breaking changes @@ -98,7 +98,7 @@ class FingerPrintAuthRepository { }); } else { log.e("lastLoginUser not found"); - showToast(AppLocalizations.of(context).fingerprintLoginFailed); + showToast(S.current.fingerprintLoginFailed); } } else if (value == FingerPrintAuthState.platformError) { fingerPrintAuthStreamSubscription?.cancel(); @@ -107,7 +107,7 @@ class FingerPrintAuthRepository { fingerPrintAuthStreamSubscription?.cancel(); isFingerPrintAuthActivated = false; - showToast(AppLocalizations.of(context).tooManyWrongAttempts); + showToast(S.current.tooManyWrongAttempts); } else if (value == FingerPrintAuthState.fail) { // showToast("fingerprint not recognized"); } diff --git a/lib/features/auth/presentation/widgets/email_change_popup.dart b/lib/features/auth/presentation/widgets/email_change_popup.dart index b74a8b4f..3cc49a25 100644 --- a/lib/features/auth/presentation/widgets/email_change_popup.dart +++ b/lib/features/auth/presentation/widgets/email_change_popup.dart @@ -4,8 +4,8 @@ import 'package:dairy_app/core/widgets/glass_dialog.dart'; import 'package:dairy_app/core/widgets/submit_button.dart'; import 'package:dairy_app/features/auth/core/failures/failures.dart'; import 'package:dairy_app/features/auth/presentation/widgets/email_input_field.dart'; +import 'package:dairy_app/generated/l10n.dart'; import 'package:flutter/material.dart'; -import 'package:flutter_gen/gen_l10n/app_localizations.dart'; Future emailChangePopup( BuildContext context, Function(String) submitEmailChange) { @@ -24,7 +24,7 @@ Future emailChangePopup( child: Column( mainAxisSize: MainAxisSize.min, children: [ - Text(AppLocalizations.of(context).enterNewEmail, + Text(S.current.enterNewEmail, style: TextStyle( fontSize: 18.0, fontWeight: FontWeight.bold, @@ -58,13 +58,12 @@ Future emailChangePopup( setState(() { isLoading = false; }); - showToast( - AppLocalizations.of(context).emailUpdatedSuccessfully); + showToast(S.current.emailUpdatedSuccessfully); await Future.delayed(const Duration(milliseconds: 500)); Navigator.of(context).pop(true); }); }, - buttonText: AppLocalizations.of(context).submit, + buttonText: S.current.submit, ); }) ], diff --git a/lib/features/auth/presentation/widgets/forgot_password_popup.dart b/lib/features/auth/presentation/widgets/forgot_password_popup.dart index 073de436..d2c661f4 100644 --- a/lib/features/auth/presentation/widgets/forgot_password_popup.dart +++ b/lib/features/auth/presentation/widgets/forgot_password_popup.dart @@ -4,8 +4,8 @@ import 'package:dairy_app/core/widgets/glass_dialog.dart'; import 'package:dairy_app/core/widgets/submit_button.dart'; import 'package:dairy_app/features/auth/core/failures/failures.dart'; import 'package:dairy_app/features/auth/presentation/widgets/email_input_field.dart'; +import 'package:dairy_app/generated/l10n.dart'; import 'package:flutter/material.dart'; -import 'package:flutter_gen/gen_l10n/app_localizations.dart'; Future forgotPasswordPopup( BuildContext context, Function(String) submitForgotPassword) { @@ -24,7 +24,7 @@ Future forgotPasswordPopup( child: Column( mainAxisSize: MainAxisSize.min, children: [ - Text(AppLocalizations.of(context).enterRegisteredEmail, + Text(S.current.enterRegisteredEmail, style: TextStyle( fontSize: 18.0, fontWeight: FontWeight.bold, @@ -58,11 +58,11 @@ Future forgotPasswordPopup( setState(() { isLoading = false; }); - showToast(AppLocalizations.of(context).passwordResetMailSent); + showToast(S.current.passwordResetMailSent); Navigator.of(context).pop(); }); }, - buttonText: AppLocalizations.of(context).submit, + buttonText: S.current.submit, ); }) ], diff --git a/lib/features/auth/presentation/widgets/guest_sign_up.dart b/lib/features/auth/presentation/widgets/guest_sign_up.dart index 08d3860a..8c625b37 100644 --- a/lib/features/auth/presentation/widgets/guest_sign_up.dart +++ b/lib/features/auth/presentation/widgets/guest_sign_up.dart @@ -2,9 +2,9 @@ import 'package:dairy_app/app/themes/theme_extensions/auth_page_theme_extensions import 'package:dairy_app/features/auth/core/constants.dart'; import 'package:dairy_app/features/auth/presentation/bloc/auth_form/auth_form_bloc.dart'; import 'package:dairy_app/features/auth/presentation/bloc/auth_session/auth_session_bloc.dart'; +import 'package:dairy_app/generated/l10n.dart'; import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; -import 'package:flutter_gen/gen_l10n/app_localizations.dart'; class GuestSignUp extends StatelessWidget { const GuestSignUp({Key? key}) : super(key: key); @@ -28,7 +28,7 @@ class GuestSignUp extends StatelessWidget { authFormbloc.add(AuthFormGuestSignIn()); }, child: Text( - AppLocalizations.of(context).continueAsGues, + S.current.continueAsGues, style: TextStyle( color: linkColor, fontWeight: FontWeight.bold, diff --git a/lib/features/auth/presentation/widgets/password_enter_popup.dart b/lib/features/auth/presentation/widgets/password_enter_popup.dart index 77103077..e7678742 100644 --- a/lib/features/auth/presentation/widgets/password_enter_popup.dart +++ b/lib/features/auth/presentation/widgets/password_enter_popup.dart @@ -3,8 +3,8 @@ import 'package:dairy_app/core/utils/utils.dart'; import 'package:dairy_app/core/widgets/glass_dialog.dart'; import 'package:dairy_app/core/widgets/submit_button.dart'; import 'package:dairy_app/features/auth/presentation/widgets/password_input_field.dart'; +import 'package:dairy_app/generated/l10n.dart'; import 'package:flutter/material.dart'; -import 'package:flutter_gen/gen_l10n/app_localizations.dart'; Future passwordLoginPopup( {required BuildContext context, required Function submitPassword}) { @@ -27,7 +27,7 @@ Future passwordLoginPopup( child: Column( mainAxisSize: MainAxisSize.min, children: [ - Text(AppLocalizations.of(context).enterCurrentPassword, + Text(S.current.enterCurrentPassword, style: TextStyle( fontSize: 18.0, fontWeight: FontWeight.bold, @@ -52,17 +52,17 @@ Future passwordLoginPopup( setState(() { isLoading = false; }); - showToast(AppLocalizations.of(context).incorrectPassword); + showToast(S.current.incorrectPassword); } else { setState(() { isLoading = false; }); - showToast(AppLocalizations.of(context).passwordVerified); + showToast(S.current.passwordVerified); await Future.delayed(const Duration(milliseconds: 300)); Navigator.of(context).pop(password); } }, - buttonText: AppLocalizations.of(context).submit, + buttonText: S.current.submit, ); }) ], diff --git a/lib/features/auth/presentation/widgets/password_reset_popup.dart b/lib/features/auth/presentation/widgets/password_reset_popup.dart index 0b39aeca..eda7e993 100644 --- a/lib/features/auth/presentation/widgets/password_reset_popup.dart +++ b/lib/features/auth/presentation/widgets/password_reset_popup.dart @@ -3,8 +3,8 @@ import 'package:dairy_app/core/utils/utils.dart'; import 'package:dairy_app/core/widgets/glass_dialog.dart'; import 'package:dairy_app/core/widgets/submit_button.dart'; import 'package:dairy_app/features/auth/core/failures/failures.dart'; +import 'package:dairy_app/generated/l10n.dart'; import 'package:flutter/material.dart'; -import 'package:flutter_gen/gen_l10n/app_localizations.dart'; import 'password_input_field.dart'; Future passwordResetPopup( @@ -33,7 +33,7 @@ Future passwordResetPopup( child: Column( mainAxisSize: MainAxisSize.min, children: [ - Text(AppLocalizations.of(context).resetPassword, + Text(S.current.resetPassword, style: TextStyle( fontSize: 18.0, fontWeight: FontWeight.bold, @@ -43,13 +43,13 @@ Future passwordResetPopup( getPasswordErrors: () => null, onPasswordChanged: assignNewPassword, autoFocus: true, - hintText: AppLocalizations.of(context).newPassword, + hintText: S.current.newPassword, ), const SizedBox(height: 15), AuthPasswordInput( getPasswordErrors: () => null, onPasswordChanged: assignConfirmNewPassword, - hintText: AppLocalizations.of(context).confirmNewPassword, + hintText: S.current.confirmNewPassword, ), const SizedBox(height: 25), StatefulBuilder(builder: (context, setState) { @@ -60,7 +60,7 @@ Future passwordResetPopup( isLoading = true; }); if (newPassword != confirmNewPassword) { - showToast(AppLocalizations.of(context).passwordsDontMatch); + showToast(S.current.passwordsDontMatch); return; } @@ -75,12 +75,11 @@ Future passwordResetPopup( setState(() { isLoading = false; }); - showToast( - AppLocalizations.of(context).passwordResetSuccessful); + showToast(S.current.passwordResetSuccessful); Navigator.pop(context); }); }, - buttonText: AppLocalizations.of(context).submit); + buttonText: S.current.submit); }) ], ), diff --git a/lib/features/auth/presentation/widgets/privacy_policy.dart b/lib/features/auth/presentation/widgets/privacy_policy.dart index 8990ff5f..ea43e102 100644 --- a/lib/features/auth/presentation/widgets/privacy_policy.dart +++ b/lib/features/auth/presentation/widgets/privacy_policy.dart @@ -1,9 +1,9 @@ import 'package:dairy_app/core/widgets/glassmorphism_cover.dart'; import 'package:dairy_app/features/auth/presentation/bloc/auth_session/auth_session_bloc.dart'; +import 'package:dairy_app/generated/l10n.dart'; import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; import 'package:url_launcher/url_launcher.dart'; -import 'package:flutter_gen/gen_l10n/app_localizations.dart'; class PrivacyPolicy extends StatelessWidget { const PrivacyPolicy({ @@ -39,7 +39,7 @@ class PrivacyPolicy extends StatelessWidget { child: Column( children: [ Text( - AppLocalizations.of(context).byContinuingYouAgree, + S.current.byContinuingYouAgree, style: TextStyle( // fontSize: 16, // fontWeight: FontWeight.bold, @@ -48,7 +48,7 @@ class PrivacyPolicy extends StatelessWidget { ), InkWell( child: Text( - AppLocalizations.of(context).privacyPolicy, + S.current.privacyPolicy, style: TextStyle( // fontSize: 16, fontWeight: FontWeight.bold, diff --git a/lib/features/auth/presentation/widgets/quit_app_dialog.dart b/lib/features/auth/presentation/widgets/quit_app_dialog.dart index f7307c54..ece526f8 100644 --- a/lib/features/auth/presentation/widgets/quit_app_dialog.dart +++ b/lib/features/auth/presentation/widgets/quit_app_dialog.dart @@ -2,8 +2,8 @@ import 'package:dairy_app/app/themes/theme_extensions/popup_theme_extensions.dar import 'package:dairy_app/core/widgets/cancel_button.dart'; import 'package:dairy_app/core/widgets/glass_dialog.dart'; import 'package:dairy_app/core/widgets/submit_button.dart'; +import 'package:dairy_app/generated/l10n.dart'; import 'package:flutter/material.dart'; -import 'package:flutter_gen/gen_l10n/app_localizations.dart'; Future quitAppDialog(BuildContext context) async { final mainTextColor = @@ -18,7 +18,7 @@ Future quitAppDialog(BuildContext context) async { crossAxisAlignment: CrossAxisAlignment.end, children: [ Text( - AppLocalizations.of(context).closeTheApp, + S.current.closeTheApp, style: TextStyle( fontSize: 18.0, color: mainTextColor, diff --git a/lib/features/auth/presentation/widgets/security_settings.dart b/lib/features/auth/presentation/widgets/security_settings.dart index 123e17f2..ec5872f1 100644 --- a/lib/features/auth/presentation/widgets/security_settings.dart +++ b/lib/features/auth/presentation/widgets/security_settings.dart @@ -10,10 +10,9 @@ import 'package:dairy_app/features/auth/presentation/bloc/user_config/user_confi import 'package:dairy_app/features/auth/presentation/widgets/email_change_popup.dart'; import 'package:dairy_app/features/auth/presentation/widgets/password_enter_popup.dart'; import 'package:dairy_app/features/auth/presentation/widgets/password_reset_popup.dart'; +import 'package:dairy_app/generated/l10n.dart'; import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; - -import 'package:flutter_gen/gen_l10n/app_localizations.dart'; import 'package:simple_accordion/widgets/AccordionHeaderItem.dart'; import 'package:simple_accordion/widgets/AccordionItem.dart'; import 'package:simple_accordion/widgets/AccordionWidget.dart'; @@ -69,7 +68,7 @@ class SecuritySettings extends StatelessWidget { color: Colors.transparent, child: SettingsTile( child: Text( - AppLocalizations.of(context).changePassword, + S.current.changePassword, style: TextStyle( fontSize: 16.0, color: mainTextColor, @@ -77,13 +76,12 @@ class SecuritySettings extends StatelessWidget { ), onTap: () async { if (userId == null) { - showToast(AppLocalizations.of(context) - .unexpectedErrorOccured); + showToast(S.current.unexpectedErrorOccured); return; } if (userId == GuestUserDetails.guestUserId) { - showToast(AppLocalizations.of(context) + showToast(S.current .pleaseSetupYourAccountToUseThisFeature); return; } @@ -114,7 +112,7 @@ class SecuritySettings extends StatelessWidget { color: Colors.transparent, child: SettingsTile( child: Text( - AppLocalizations.of(context).changeEmail, + S.current.changeEmail, style: TextStyle( fontSize: 16.0, color: mainTextColor, @@ -122,12 +120,11 @@ class SecuritySettings extends StatelessWidget { ), onTap: () async { if (userId == null) { - showToast(AppLocalizations.of(context) - .unexpectedErrorOccured); + showToast(S.current.unexpectedErrorOccured); } if (userId == GuestUserDetails.guestUserId) { - showToast(AppLocalizations.of(context) + showToast(S.current .pleaseSetupYourAccountToUseThisFeature); } @@ -165,24 +162,23 @@ class SecuritySettings extends StatelessWidget { activeColor: activeColor, contentPadding: const EdgeInsets.all(0.0), title: Text( - AppLocalizations.of(context).enableFingerPrintLogin, + S.current.enableFingerPrintLogin, style: TextStyle(color: mainTextColor), ), subtitle: Text( - AppLocalizations.of(context) + S.current .fingerPrintAthShouldBeEnabledInDeviceSettings, style: TextStyle(color: mainTextColor), ), value: isFingerPrintLoginEnabledValue ?? false, onChanged: (value) async { if (userId == null) { - showToast(AppLocalizations.of(context) - .unexpectedErrorOccured); + showToast(S.current.unexpectedErrorOccured); return; } if (userId == GuestUserDetails.guestUserId) { - showToast(AppLocalizations.of(context) + showToast(S.current .pleaseSetupYourAccountToUseThisFeature); return; } diff --git a/lib/features/auth/presentation/widgets/setup_account.dart b/lib/features/auth/presentation/widgets/setup_account.dart index e9bbf31f..7693bb9c 100644 --- a/lib/features/auth/presentation/widgets/setup_account.dart +++ b/lib/features/auth/presentation/widgets/setup_account.dart @@ -8,9 +8,9 @@ import 'package:dairy_app/features/auth/presentation/bloc/auth_form/auth_form_bl import 'package:dairy_app/features/auth/presentation/bloc/user_config/user_config_cubit.dart'; import 'package:dairy_app/features/auth/presentation/widgets/email_input_field.dart'; import 'package:dairy_app/features/auth/presentation/widgets/password_input_field.dart'; +import 'package:dairy_app/generated/l10n.dart'; import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; -import 'package:flutter_gen/gen_l10n/app_localizations.dart'; class SetupAccount extends StatefulWidget { const SetupAccount({Key? key}) : super(key: key); @@ -59,8 +59,7 @@ class _SetupAccountState extends State { } if (state is AuthFormSubmissionSuccessful) { - showToast(AppLocalizations.of(context) - .accountSetupSuccessful); + showToast(S.current.accountSetupSuccessful); Navigator.pop(context); } }, @@ -97,7 +96,7 @@ class _SetupAccountState extends State { mainAxisSize: MainAxisSize.min, children: [ Text( - AppLocalizations.of(context).setupYourAccount, + S.current.setupYourAccount, style: TextStyle( fontSize: 18, fontWeight: FontWeight.w600, @@ -128,8 +127,7 @@ class _SetupAccountState extends State { isLoading: (state is AuthFormSubmissionLoading), onSubmitted: _onSubmitted, - buttonText: - AppLocalizations.of(context).submit, + buttonText: S.current.submit, ) ], ), @@ -141,7 +139,7 @@ class _SetupAccountState extends State { ); }, child: Text( - AppLocalizations.of(context).setupYourAccount, + S.current.setupYourAccount, style: TextStyle( fontSize: 16.0, color: mainTextColor, diff --git a/lib/features/auth/presentation/widgets/sign_in_form.dart b/lib/features/auth/presentation/widgets/sign_in_form.dart index 303afda5..0d62fa50 100644 --- a/lib/features/auth/presentation/widgets/sign_in_form.dart +++ b/lib/features/auth/presentation/widgets/sign_in_form.dart @@ -6,10 +6,10 @@ import 'package:dairy_app/features/auth/core/failures/failures.dart'; import 'package:dairy_app/features/auth/presentation/bloc/auth_form/auth_form_bloc.dart'; import 'package:dairy_app/features/auth/presentation/widgets/email_input_field.dart'; import 'package:dairy_app/features/auth/presentation/widgets/form_dimensions.dart'; +import 'package:dairy_app/generated/l10n.dart'; import 'package:dartz/dartz.dart' as dz; import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; -import 'package:flutter_gen/gen_l10n/app_localizations.dart'; import 'auth_change.dart'; import 'forgot_password_popup.dart'; import 'password_input_field.dart'; @@ -100,7 +100,7 @@ class _SignInFormState extends State { mainAxisAlignment: MainAxisAlignment.spaceAround, children: [ Text( - AppLocalizations.of(context).logIn, + S.current.logIn, style: const TextStyle( fontSize: 25, color: Colors.white, @@ -138,7 +138,7 @@ class _SignInFormState extends State { context, submitForgotPasswordEmail); }, child: Text( - AppLocalizations.of(context).forgotPassword, + S.current.forgotPassword, style: TextStyle( color: linkColor, fontWeight: FontWeight.bold, @@ -146,8 +146,8 @@ class _SignInFormState extends State { ), ), AuthChangePage( - infoText: AppLocalizations.of(context).dontHaveAccount, - flipPageText: AppLocalizations.of(context).signUp, + infoText: S.current.dontHaveAccount, + flipPageText: S.current.signUp, flipCard: widget.flipCard, ), ], diff --git a/lib/features/auth/presentation/widgets/sign_up_form.dart b/lib/features/auth/presentation/widgets/sign_up_form.dart index 93095164..8ef30cd1 100644 --- a/lib/features/auth/presentation/widgets/sign_up_form.dart +++ b/lib/features/auth/presentation/widgets/sign_up_form.dart @@ -5,9 +5,9 @@ import 'package:dairy_app/features/auth/presentation/bloc/auth_form/auth_form_bl import 'package:dairy_app/features/auth/presentation/widgets/form_dimensions.dart'; import 'package:dairy_app/features/auth/presentation/widgets/guest_sign_up.dart'; import 'package:dairy_app/features/auth/presentation/widgets/password_input_field.dart'; +import 'package:dairy_app/generated/l10n.dart'; import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; -import 'package:flutter_gen/gen_l10n/app_localizations.dart'; import 'auth_change.dart'; import 'email_input_field.dart'; @@ -86,7 +86,7 @@ class _SignUpFormState extends State { mainAxisAlignment: MainAxisAlignment.spaceAround, children: [ Text( - AppLocalizations.of(context).signUp, + S.current.signUp, style: const TextStyle( fontSize: 25, color: Colors.white, @@ -112,7 +112,7 @@ class _SignUpFormState extends State { SubmitButton( isLoading: (state is AuthFormSubmissionLoading), onSubmitted: _onSubmitted, - buttonText: AppLocalizations.of(context).submit, + buttonText: S.current.submit, ) ], ), @@ -120,9 +120,8 @@ class _SignUpFormState extends State { children: [ const GuestSignUp(), AuthChangePage( - infoText: - AppLocalizations.of(context).alreadyHaveAnAccount, - flipPageText: AppLocalizations.of(context).logIn, + infoText: S.current.alreadyHaveAnAccount, + flipPageText: S.current.logIn, flipCard: widget.flipCard, ), ], diff --git a/lib/features/notes/data/repositories/notifications_repository.dart b/lib/features/notes/data/repositories/notifications_repository.dart index 253a9047..81f0baa7 100644 --- a/lib/features/notes/data/repositories/notifications_repository.dart +++ b/lib/features/notes/data/repositories/notifications_repository.dart @@ -1,5 +1,6 @@ import 'package:dairy_app/core/logger/logger.dart'; import 'package:dairy_app/features/notes/domain/repositories/notifications_repository.dart'; +import 'package:dairy_app/generated/l10n.dart'; import 'package:flutter/material.dart'; import 'package:flutter_local_notifications/flutter_local_notifications.dart'; import 'package:flutter_timezone/flutter_timezone.dart'; @@ -53,8 +54,8 @@ class NotificationsRepository implements INotificationsRepository { await flutterLocalNotificationsPlugin.zonedSchedule( 0, - 'Time to Journal!', - 'Take a few minutes to reflect on your day in your diary', + S.current.notificationTitle1, + S.current.notificationDescription1, nextInstanceOfTime(time, tz.local), const NotificationDetails( android: AndroidNotificationDetails( diff --git a/lib/features/notes/presentation/pages/note_create_page.dart b/lib/features/notes/presentation/pages/note_create_page.dart index d360e98c..038824ef 100644 --- a/lib/features/notes/presentation/pages/note_create_page.dart +++ b/lib/features/notes/presentation/pages/note_create_page.dart @@ -11,7 +11,7 @@ import 'package:dairy_app/features/notes/presentation/widgets/show_notes_close_d import 'package:dairy_app/features/notes/presentation/widgets/toggle_read_write_button.dart'; import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; -import 'package:flutter_gen/gen_l10n/app_localizations.dart'; +import 'package:dairy_app/generated/l10n.dart'; import '../../../auth/presentation/bloc/user_config/user_config_cubit.dart'; import '../widgets/note_date_time_picker.dart'; import '../widgets/note_save_button.dart'; @@ -133,13 +133,13 @@ class _NoteCreatePageState extends State { bloc: notesBloc, listener: (context, state) { if (state is NoteFetchFailed) { - showToast(AppLocalizations.of(context).failedToFetchNote); + showToast(S.current.failedToFetchNote); } else if (state is NotesSavingFailed) { - showToast(AppLocalizations.of(context).failedToSaveNote); + showToast(S.current.failedToSaveNote); } else if (state is NoteSavedSuccesfully) { showToast(state.newNote! - ? AppLocalizations.of(context).noteSavedSuccessfully - : AppLocalizations.of(context).noteUpdatedSuccessfully); + ? S.current.noteSavedSuccessfully + : S.current.noteUpdatedSuccessfully); _routeToHome(); } }, diff --git a/lib/features/notes/presentation/pages/note_read_only_page.dart b/lib/features/notes/presentation/pages/note_read_only_page.dart index 2c2d14f1..b166049b 100644 --- a/lib/features/notes/presentation/pages/note_read_only_page.dart +++ b/lib/features/notes/presentation/pages/note_read_only_page.dart @@ -13,7 +13,7 @@ import 'package:dairy_app/features/notes/presentation/widgets/toggle_read_write_ import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; import 'package:intl/intl.dart'; -import 'package:flutter_gen/gen_l10n/app_localizations.dart'; +import 'package:dairy_app/generated/l10n.dart'; import '../widgets/notes_close_button.dart'; class NotesReadOnlyPage extends StatefulWidget { @@ -126,13 +126,13 @@ class _NotesReadOnlyPageState extends State { bloc: notesBloc, listener: (context, state) { if (state is NoteFetchFailed) { - showToast(AppLocalizations.of(context).failedToFetchNote); + showToast(S.current.failedToFetchNote); } else if (state is NotesSavingFailed) { - showToast(AppLocalizations.of(context).failedToSaveNote); + showToast(S.current.failedToSaveNote); } else if (state is NoteSavedSuccesfully) { showToast(state.newNote! - ? AppLocalizations.of(context).noteSavedSuccessfully - : AppLocalizations.of(context).noteUpdatedSuccessfully); + ? S.current.noteSavedSuccessfully + : S.current.noteUpdatedSuccessfully); _routeToHome(); } }, diff --git a/lib/features/notes/presentation/widgets/daily_reminders.dart b/lib/features/notes/presentation/widgets/daily_reminders.dart index 3903c597..d45a606e 100644 --- a/lib/features/notes/presentation/widgets/daily_reminders.dart +++ b/lib/features/notes/presentation/widgets/daily_reminders.dart @@ -6,12 +6,12 @@ import 'package:dairy_app/features/auth/core/constants.dart'; import 'package:dairy_app/features/auth/data/models/user_config_model.dart'; import 'package:dairy_app/features/auth/presentation/bloc/user_config/user_config_cubit.dart'; import 'package:dairy_app/features/notes/domain/repositories/notifications_repository.dart'; +import 'package:dairy_app/generated/l10n.dart'; import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; import 'package:simple_accordion/widgets/AccordionHeaderItem.dart'; import 'package:simple_accordion/widgets/AccordionItem.dart'; import 'package:simple_accordion/widgets/AccordionWidget.dart'; -import 'package:flutter_gen/gen_l10n/app_localizations.dart'; class DailyReminders extends StatelessWidget { const DailyReminders({Key? key}) : super(key: key); @@ -19,14 +19,14 @@ class DailyReminders extends StatelessWidget { String getSubtitle(bool? isDailyReminderEnabled, TimeOfDay? reminderTime, BuildContext context) { if (isDailyReminderEnabled == null || isDailyReminderEnabled == false) { - return AppLocalizations.of(context).notificationsNotEnabled; + return S.current.notificationsNotEnabled; } if (reminderTime == null) { - return AppLocalizations.of(context).notificationTimeNotEnabled; + return S.current.notificationTimeNotEnabled; } - return AppLocalizations.of(context).youWillBeNotifiedAt( + return S.current.youWillBeNotifiedAt( UserConfigModel.getTimeOfDayToString(reminderTime)!); } @@ -63,7 +63,7 @@ class DailyReminders extends StatelessWidget { ), children: [ AccordionHeaderItem( - title: AppLocalizations.of(context).dailyReminders, + title: S.current.dailyReminders, children: [ AccordionItem( child: Padding( @@ -77,11 +77,11 @@ class DailyReminders extends StatelessWidget { activeColor: activeColor, contentPadding: const EdgeInsets.all(0.0), title: Text( - AppLocalizations.of(context).enableDailyReminders, + S.current.enableDailyReminders, style: TextStyle(color: mainTextColor), ), subtitle: Text( - AppLocalizations.of(context).getDailyReminders, + S.current.getDailyReminders, style: TextStyle(color: mainTextColor), ), value: isDailyReminderEnabled ?? false, @@ -110,7 +110,7 @@ class DailyReminders extends StatelessWidget { ListTile( contentPadding: const EdgeInsets.only(right: 10.0), title: Text( - AppLocalizations.of(context).chooseTime, + S.current.chooseTime, style: TextStyle(color: mainTextColor), ), subtitle: Text( diff --git a/lib/features/notes/presentation/widgets/note_title_input_field.dart b/lib/features/notes/presentation/widgets/note_title_input_field.dart index dc9276b3..0101d577 100644 --- a/lib/features/notes/presentation/widgets/note_title_input_field.dart +++ b/lib/features/notes/presentation/widgets/note_title_input_field.dart @@ -1,8 +1,8 @@ import 'package:dairy_app/app/themes/theme_extensions/note_create_page_theme_extensions.dart'; import 'package:dairy_app/core/widgets/glassmorphism_cover.dart'; +import 'package:dairy_app/generated/l10n.dart'; import 'package:flutter/material.dart'; import 'package:google_fonts/google_fonts.dart'; -import 'package:flutter_gen/gen_l10n/app_localizations.dart'; class NoteTitleInputField extends StatefulWidget { // final String? Function() getEmailErrors; @@ -131,7 +131,7 @@ class _NoteTitleInputFieldState extends State { ), const SizedBox(width: 6), Text( - AppLocalizations.of(context).tapToExpandTitle, + S.current.tapToExpandTitle, style: GoogleFonts.lato( textStyle: TextStyle( color: Colors.white.withOpacity(0.8), diff --git a/lib/features/notes/presentation/widgets/rich_text_editor.dart b/lib/features/notes/presentation/widgets/rich_text_editor.dart index 915bbd16..87b37629 100644 --- a/lib/features/notes/presentation/widgets/rich_text_editor.dart +++ b/lib/features/notes/presentation/widgets/rich_text_editor.dart @@ -1,11 +1,11 @@ import 'dart:async'; import 'dart:io'; -import 'package:flutter_gen/gen_l10n/app_localizations.dart'; import 'package:dairy_app/app/themes/theme_extensions/note_create_page_theme_extensions.dart'; import 'package:dairy_app/core/widgets/glass_dialog.dart'; import 'package:dairy_app/core/widgets/glassmorphism_cover.dart'; import 'package:dairy_app/features/notes/data/models/notes_model.dart'; import 'package:dairy_app/features/notes/presentation/bloc/notes/notes_bloc.dart'; +import 'package:dairy_app/generated/l10n.dart'; import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; import 'package:flutter_quill/flutter_quill.dart' hide Text; @@ -197,7 +197,7 @@ class Toolbar extends StatelessWidget { color: quillPopupTextColor, ), label: Text( - AppLocalizations.of(context).gallery, + S.current.gallery, style: TextStyle(color: quillPopupTextColor), ), onPressed: () => Navigator.pop(context, MediaPickSetting.Gallery), @@ -208,7 +208,7 @@ class Toolbar extends StatelessWidget { color: quillPopupTextColor, ), label: Text( - AppLocalizations.of(context).link, + S.current.link, style: TextStyle(color: quillPopupTextColor), ), onPressed: () => Navigator.pop(context, MediaPickSetting.Link), @@ -240,7 +240,7 @@ class Toolbar extends StatelessWidget { color: quillPopupTextColor, ), label: Text( - AppLocalizations.of(context).camera, + S.current.camera, style: TextStyle(color: quillPopupTextColor), ), onPressed: () => Navigator.pop(context, MediaPickSetting.Camera), @@ -251,7 +251,7 @@ class Toolbar extends StatelessWidget { color: quillPopupTextColor, ), label: Text( - AppLocalizations.of(context).video, + S.current.video, style: TextStyle(color: quillPopupTextColor), ), onPressed: () => Navigator.pop(context, MediaPickSetting.Video), diff --git a/lib/features/notes/presentation/widgets/show_notes_close_dialog.dart b/lib/features/notes/presentation/widgets/show_notes_close_dialog.dart index 9de4e79a..cda87d00 100644 --- a/lib/features/notes/presentation/widgets/show_notes_close_dialog.dart +++ b/lib/features/notes/presentation/widgets/show_notes_close_dialog.dart @@ -2,8 +2,8 @@ import 'package:dairy_app/app/themes/theme_extensions/popup_theme_extensions.dar import 'package:dairy_app/core/widgets/cancel_button.dart'; import 'package:dairy_app/core/widgets/glass_dialog.dart'; import 'package:dairy_app/core/widgets/submit_button.dart'; +import 'package:dairy_app/generated/l10n.dart'; import 'package:flutter/material.dart'; -import 'package:flutter_gen/gen_l10n/app_localizations.dart'; Future showCloseDialog(BuildContext context) { final mainTextColor = @@ -18,7 +18,7 @@ Future showCloseDialog(BuildContext context) { crossAxisAlignment: CrossAxisAlignment.end, children: [ Text( - AppLocalizations.of(context).youHaveUnsavedChanges, + S.current.youHaveUnsavedChanges, style: TextStyle( fontSize: 18.0, color: mainTextColor, diff --git a/lib/features/sync/presentation/widgets/dropbox_user_info.dart b/lib/features/sync/presentation/widgets/dropbox_user_info.dart index 313fcbe2..e4c82611 100644 --- a/lib/features/sync/presentation/widgets/dropbox_user_info.dart +++ b/lib/features/sync/presentation/widgets/dropbox_user_info.dart @@ -7,7 +7,7 @@ import 'package:dairy_app/features/sync/data/datasources/temeplates/sync_client_ import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; import 'package:intl/intl.dart'; -import 'package:flutter_gen/gen_l10n/app_localizations.dart'; +import 'package:dairy_app/generated/l10n.dart'; class DropboxUserInfo extends StatefulWidget { const DropboxUserInfo({ @@ -71,7 +71,7 @@ class _DropboxUserInfoState extends State ), const SizedBox(width: 10), Text( - AppLocalizations.of(context).dropbox, + S.current.dropbox, style: TextStyle( fontSize: 18, fontWeight: FontWeight.w600, @@ -85,7 +85,7 @@ class _DropboxUserInfoState extends State Column( children: [ Text( - AppLocalizations.of(context).signedInAs, + S.current.signedInAs, style: TextStyle(fontSize: 14, color: mainTextColor), ), @@ -106,7 +106,7 @@ class _DropboxUserInfoState extends State mainAxisAlignment: MainAxisAlignment.center, children: [ Text( - AppLocalizations.of(context).lastSynced, + S.current.lastSynced, style: TextStyle(color: mainTextColor), ), const SizedBox(width: 5), @@ -122,12 +122,12 @@ class _DropboxUserInfoState extends State mainAxisAlignment: MainAxisAlignment.center, children: [ Text( - AppLocalizations.of(context).lastSynced, + S.current.lastSynced, style: TextStyle(color: mainTextColor), ), const SizedBox(width: 5), Text( - AppLocalizations.of(context).notAvailable, + S.current.notAvailable, style: TextStyle(color: mainTextColor), ) ], @@ -139,14 +139,14 @@ class _DropboxUserInfoState extends State onSubmitted: () async { await oAuthClient.signOut(); }, - buttonText: AppLocalizations.of(context).logOut, + buttonText: S.current.logOut, ) : SubmitButton( isLoading: false, onSubmitted: () async { await oAuthClient.signIn(); }, - buttonText: AppLocalizations.of(context).signIn, + buttonText: S.current.signIn, )), const SizedBox(height: 10), ], diff --git a/lib/features/sync/presentation/widgets/google_drive_user_info.dart b/lib/features/sync/presentation/widgets/google_drive_user_info.dart index 702a98b8..15096451 100644 --- a/lib/features/sync/presentation/widgets/google_drive_user_info.dart +++ b/lib/features/sync/presentation/widgets/google_drive_user_info.dart @@ -7,7 +7,7 @@ import 'package:dairy_app/features/sync/data/datasources/temeplates/sync_client_ import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; import 'package:intl/intl.dart'; -import 'package:flutter_gen/gen_l10n/app_localizations.dart'; +import 'package:dairy_app/generated/l10n.dart'; class GoogleDriveUserInfo extends StatefulWidget { const GoogleDriveUserInfo({ @@ -70,7 +70,7 @@ class _GoogleDriveUserInfoState extends State { ), const SizedBox(width: 10), Text( - AppLocalizations.of(context).googleDrive, + S.current.googleDrive, style: TextStyle( fontSize: 18, fontWeight: FontWeight.w600, @@ -84,7 +84,7 @@ class _GoogleDriveUserInfoState extends State { Column( children: [ Text( - AppLocalizations.of(context).signedInAs, + S.current.signedInAs, style: TextStyle(fontSize: 14, color: mainTextColor), ), @@ -105,7 +105,7 @@ class _GoogleDriveUserInfoState extends State { mainAxisAlignment: MainAxisAlignment.center, children: [ Text( - AppLocalizations.of(context).lastSynced, + S.current.lastSynced, style: TextStyle(color: mainTextColor), ), const SizedBox(width: 5), @@ -121,12 +121,12 @@ class _GoogleDriveUserInfoState extends State { mainAxisAlignment: MainAxisAlignment.center, children: [ Text( - AppLocalizations.of(context).lastSynced, + S.current.lastSynced, style: TextStyle(color: mainTextColor), ), const SizedBox(width: 5), Text( - AppLocalizations.of(context).notAvailable, + S.current.notAvailable, style: TextStyle(color: mainTextColor), ) ], @@ -138,14 +138,14 @@ class _GoogleDriveUserInfoState extends State { onSubmitted: () async { await oAuthClient.signOut(); }, - buttonText: AppLocalizations.of(context).logOut, + buttonText: S.current.logOut, ) : SubmitButton( isLoading: false, onSubmitted: () async { await oAuthClient.signIn(); }, - buttonText: AppLocalizations.of(context).signIn, + buttonText: S.current.signIn, )), const SizedBox(height: 10), ], diff --git a/lib/features/sync/presentation/widgets/sync_now_button.dart b/lib/features/sync/presentation/widgets/sync_now_button.dart index 5f78a1d2..f418f682 100644 --- a/lib/features/sync/presentation/widgets/sync_now_button.dart +++ b/lib/features/sync/presentation/widgets/sync_now_button.dart @@ -3,7 +3,7 @@ import 'package:dairy_app/core/utils/utils.dart'; import 'package:dairy_app/features/sync/presentation/bloc/notes_sync/notesync_cubit.dart'; import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; -import 'package:flutter_gen/gen_l10n/app_localizations.dart'; +import 'package:dairy_app/generated/l10n.dart'; class SyncNowButton extends StatefulWidget { const SyncNowButton({Key? key}) : super(key: key); @@ -43,7 +43,7 @@ class _SyncNowButtonState extends State return BlocBuilder( builder: (contextn, state) { if (state is NoteSyncSuccessful) { - showToast(AppLocalizations.of(context).notesSyncSuccessfull); + showToast(S.current.notesSyncSuccessfull); _rotationAnimationController.reset(); } else if (state is NoteSyncFailed) { showToast(state.errorMessage); diff --git a/lib/features/sync/presentation/widgets/sync_settings.dart b/lib/features/sync/presentation/widgets/sync_settings.dart index 2110c74f..ad6d14a4 100644 --- a/lib/features/sync/presentation/widgets/sync_settings.dart +++ b/lib/features/sync/presentation/widgets/sync_settings.dart @@ -10,7 +10,7 @@ import 'package:dairy_app/features/sync/presentation/widgets/sync_now_button.dar import 'package:dairy_app/features/sync/presentation/widgets/sync_source_dropdown.dart'; import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; -import 'package:flutter_gen/gen_l10n/app_localizations.dart'; +import 'package:dairy_app/generated/l10n.dart'; class SyncSettings extends StatelessWidget { const SyncSettings({Key? key}) : super(key: key); @@ -43,20 +43,19 @@ class SyncSettings extends StatelessWidget { inactiveTrackColor: inactiveTrackColor, activeColor: activeColor, contentPadding: const EdgeInsets.all(0), - title: Text(AppLocalizations.of(context).autoSync, + title: Text(S.current.autoSync, style: TextStyle( fontSize: 16.0, color: mainTextColor, )), subtitle: Text( - AppLocalizations.of(context).automaticallySyncNotesWithCloud, + S.current.automaticallySyncNotesWithCloud, style: TextStyle(color: mainTextColor), ), value: state.userConfigModel?.isAutoSyncEnabled == true, onChanged: (bool val) { if (!isSignedIn) { - showToast( - AppLocalizations.of(context).loginToEnableAutoSync); + showToast(S.current.loginToEnableAutoSync); return; } final userConfigCubit = @@ -70,7 +69,7 @@ class SyncSettings extends StatelessWidget { const SizedBox(height: 10), Row( children: [ - Text(AppLocalizations.of(context).syncNow, + Text(S.current.syncNow, style: TextStyle( fontSize: 16.0, color: mainTextColor, @@ -83,7 +82,7 @@ class SyncSettings extends StatelessWidget { const SizedBox(height: 12), const SyncSourceDropdown(), const SizedBox(height: 12), - Text(AppLocalizations.of(context).availablePlatformsForSync, + Text(S.current.availablePlatformsForSync, style: TextStyle( fontSize: 16.0, color: mainTextColor, diff --git a/lib/features/sync/presentation/widgets/sync_source_dropdown.dart b/lib/features/sync/presentation/widgets/sync_source_dropdown.dart index 16fab71f..60c4cf6e 100644 --- a/lib/features/sync/presentation/widgets/sync_source_dropdown.dart +++ b/lib/features/sync/presentation/widgets/sync_source_dropdown.dart @@ -4,7 +4,7 @@ import 'package:dairy_app/features/auth/core/constants.dart'; import 'package:dairy_app/features/auth/presentation/bloc/user_config/user_config_cubit.dart'; import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; -import 'package:flutter_gen/gen_l10n/app_localizations.dart'; +import 'package:dairy_app/generated/l10n.dart'; class SyncSourceDropdown extends StatelessWidget { const SyncSourceDropdown({Key? key}) : super(key: key); @@ -25,7 +25,7 @@ class SyncSourceDropdown extends StatelessWidget { children: [ Expanded( child: Text( - AppLocalizations.of(context).chooseTheSyncSource, + S.current.chooseTheSyncSource, style: TextStyle( fontSize: 16.0, color: mainTextColor, diff --git a/lib/generated/intl/messages_all.dart b/lib/generated/intl/messages_all.dart new file mode 100644 index 00000000..e6170070 --- /dev/null +++ b/lib/generated/intl/messages_all.dart @@ -0,0 +1,99 @@ +// DO NOT EDIT. This is code generated via package:intl/generate_localized.dart +// This is a library that looks up messages for specific locales by +// delegating to the appropriate library. + +// Ignore issues from commonly used lints in this file. +// ignore_for_file:implementation_imports, file_names, unnecessary_new +// ignore_for_file:unnecessary_brace_in_string_interps, directives_ordering +// ignore_for_file:argument_type_not_assignable, invalid_assignment +// ignore_for_file:prefer_single_quotes, prefer_generic_function_type_aliases +// ignore_for_file:comment_references + +import 'dart:async'; + +import 'package:flutter/foundation.dart'; +import 'package:intl/intl.dart'; +import 'package:intl/message_lookup_by_library.dart'; +import 'package:intl/src/intl_helpers.dart'; + +import 'messages_ar.dart' as messages_ar; +import 'messages_de.dart' as messages_de; +import 'messages_en.dart' as messages_en; +import 'messages_fi.dart' as messages_fi; +import 'messages_he.dart' as messages_he; +import 'messages_hi.dart' as messages_hi; +import 'messages_kn.dart' as messages_kn; +import 'messages_pa.dart' as messages_pa; +import 'messages_pt.dart' as messages_pt; +import 'messages_sw.dart' as messages_sw; + +typedef Future LibraryLoader(); +Map _deferredLibraries = { + 'ar': () => new SynchronousFuture(null), + 'de': () => new SynchronousFuture(null), + 'en': () => new SynchronousFuture(null), + 'fi': () => new SynchronousFuture(null), + 'he': () => new SynchronousFuture(null), + 'hi': () => new SynchronousFuture(null), + 'kn': () => new SynchronousFuture(null), + 'pa': () => new SynchronousFuture(null), + 'pt': () => new SynchronousFuture(null), + 'sw': () => new SynchronousFuture(null), +}; + +MessageLookupByLibrary? _findExact(String localeName) { + switch (localeName) { + case 'ar': + return messages_ar.messages; + case 'de': + return messages_de.messages; + case 'en': + return messages_en.messages; + case 'fi': + return messages_fi.messages; + case 'he': + return messages_he.messages; + case 'hi': + return messages_hi.messages; + case 'kn': + return messages_kn.messages; + case 'pa': + return messages_pa.messages; + case 'pt': + return messages_pt.messages; + case 'sw': + return messages_sw.messages; + default: + return null; + } +} + +/// User programs should call this before using [localeName] for messages. +Future initializeMessages(String localeName) { + var availableLocale = Intl.verifiedLocale( + localeName, (locale) => _deferredLibraries[locale] != null, + onFailure: (_) => null); + if (availableLocale == null) { + return new SynchronousFuture(false); + } + var lib = _deferredLibraries[availableLocale]; + lib == null ? new SynchronousFuture(false) : lib(); + initializeInternalMessageLookup(() => new CompositeMessageLookup()); + messageLookup.addLocale(availableLocale, _findGeneratedMessagesFor); + return new SynchronousFuture(true); +} + +bool _messagesExistFor(String locale) { + try { + return _findExact(locale) != null; + } catch (e) { + return false; + } +} + +MessageLookupByLibrary? _findGeneratedMessagesFor(String locale) { + var actualLocale = + Intl.verifiedLocale(locale, _messagesExistFor, onFailure: (_) => null); + if (actualLocale == null) return null; + return _findExact(actualLocale); +} diff --git a/lib/generated/intl/messages_ar.dart b/lib/generated/intl/messages_ar.dart new file mode 100644 index 00000000..71f98768 --- /dev/null +++ b/lib/generated/intl/messages_ar.dart @@ -0,0 +1,143 @@ +// DO NOT EDIT. This is code generated via package:intl/generate_localized.dart +// This is a library that provides messages for a ar locale. All the +// messages from the main program should be duplicated here with the same +// function name. + +// Ignore issues from commonly used lints in this file. +// ignore_for_file:unnecessary_brace_in_string_interps, unnecessary_new +// ignore_for_file:prefer_single_quotes,comment_references, directives_ordering +// ignore_for_file:annotate_overrides,prefer_generic_function_type_aliases +// ignore_for_file:unused_import, file_names, avoid_escaping_inner_quotes +// ignore_for_file:unnecessary_string_interpolations, unnecessary_string_escapes + +import 'package:intl/intl.dart'; +import 'package:intl/message_lookup_by_library.dart'; + +final messages = new MessageLookup(); + +typedef String MessageIfAbsent(String messageStr, List args); + +class MessageLookup extends MessageLookupByLibrary { + String get localeName => 'ar'; + + final messages = _notInlinedMessages(_notInlinedMessages); + static Map _notInlinedMessages(_) => { + "accountSetupSuccessful": + MessageLookupByLibrary.simpleMessage("تم إعداد الحساب بنجاح"), + "alreadyHaveAnAccount": + MessageLookupByLibrary.simpleMessage("هل لديك حساب بالفعل؟"), + "appDescription": MessageLookupByLibrary.simpleMessage( + "اكتشف diaryVault - تطبيق مذكرات مصمم لمساعدتك في التقاط أفكارك وذكرياتك ولحظاتك بسهولة. متوفر الآن على متجر Google Play!"), + "appVersion": MessageLookupByLibrary.simpleMessage("إصدار التطبيق"), + "areYouSureAboutLoggingOut": MessageLookupByLibrary.simpleMessage( + "هل أنت متأكد من تسجيل الخروج؟"), + "autoSync": MessageLookupByLibrary.simpleMessage("مزامنة تلقائية"), + "automaticallySyncNotesWithCloud": MessageLookupByLibrary.simpleMessage( + "مزامنة الملاحظات تلقائيًا مع السحابة"), + "availablePlatformsForSync": + MessageLookupByLibrary.simpleMessage("المنصات المتاحة للمزامنة"), + "byContinuingYouAgree": MessageLookupByLibrary.simpleMessage( + "من خلال المتابعة، أنت توافق على"), + "camera": MessageLookupByLibrary.simpleMessage("الكاميرا"), + "cancel": MessageLookupByLibrary.simpleMessage("إلغاء"), + "changeEmail": + MessageLookupByLibrary.simpleMessage("تغيير البريد الإلكتروني"), + "changePassword": + MessageLookupByLibrary.simpleMessage("تغيير كلمة المرور"), + "chooseTheSyncSource": + MessageLookupByLibrary.simpleMessage("اختر مصدر المزامنة"), + "chooseTheme": MessageLookupByLibrary.simpleMessage("اختر السمة"), + "closeTheApp": + MessageLookupByLibrary.simpleMessage("هل تريد إغلاق التطبيق؟"), + "confirmNewPassword": + MessageLookupByLibrary.simpleMessage("تأكيد كلمة المرور الجديدة"), + "continueAsGues": MessageLookupByLibrary.simpleMessage("المتابعة كضيف"), + "dateFilter": MessageLookupByLibrary.simpleMessage("تصفية التاريخ"), + "delete": MessageLookupByLibrary.simpleMessage("حذف"), + "deletionFailed": MessageLookupByLibrary.simpleMessage("فشل الحذف"), + "done": MessageLookupByLibrary.simpleMessage("تم"), + "dontHaveAccount": + MessageLookupByLibrary.simpleMessage("ليس لديك حساب؟"), + "dropbox": MessageLookupByLibrary.simpleMessage("دروب بوكس"), + "emailUpdatedSuccessfully": MessageLookupByLibrary.simpleMessage( + "تم تحديث البريد الإلكتروني بنجاح، يرجى تسجيل الدخول مرة أخرى"), + "enableAutoSave": + MessageLookupByLibrary.simpleMessage("تمكين الحفظ التلقائي"), + "enableFingerPrintLogin": MessageLookupByLibrary.simpleMessage( + "تمكين تسجيل الدخول ببصمة الإصبع"), + "enterCurrentPassword": + MessageLookupByLibrary.simpleMessage("أدخل كلمة المرور الحالية"), + "enterNewEmail": + MessageLookupByLibrary.simpleMessage("أدخل بريد إلكتروني جديد"), + "enterRegisteredEmail": MessageLookupByLibrary.simpleMessage( + "أدخل البريد الإلكتروني المسجل"), + "failedToFetchNote": + MessageLookupByLibrary.simpleMessage("فشل جلب المذكرة"), + "failedToSaveNote": + MessageLookupByLibrary.simpleMessage("فشل حفظ المذكرة"), + "fingerPrintAthShouldBeEnabledInDeviceSettings": + MessageLookupByLibrary.simpleMessage( + "يجب تمكين تسجيل الدخول ببصمة الإصبع في إعدادات الجهاز"), + "fingerprintLoginFailed": MessageLookupByLibrary.simpleMessage( + "فشل تسجيل الدخول ببصمة الإصبع"), + "forgotPassword": + MessageLookupByLibrary.simpleMessage("نسيت كلمة المرور"), + "from": MessageLookupByLibrary.simpleMessage("من"), + "gallery": MessageLookupByLibrary.simpleMessage("المعرض"), + "googleDrive": MessageLookupByLibrary.simpleMessage("جوجل درايف"), + "incorrectPassword": + MessageLookupByLibrary.simpleMessage("كلمة المرور غير صحيحة"), + "language": MessageLookupByLibrary.simpleMessage("العربية"), + "lastSynced": MessageLookupByLibrary.simpleMessage("آخر مزامنة: "), + "link": MessageLookupByLibrary.simpleMessage("رابط"), + "logIn": MessageLookupByLibrary.simpleMessage("تسجيل الدخول"), + "logOut": MessageLookupByLibrary.simpleMessage("تسجيل الخروج"), + "loginToEnableAutoSync": MessageLookupByLibrary.simpleMessage( + "الرجاء تسجيل الدخول لتمكين المزامنة التلقائية"), + "newPassword": MessageLookupByLibrary.simpleMessage("كلمة مرور جديدة"), + "notAvailable": MessageLookupByLibrary.simpleMessage("غير متاح"), + "noteSavedSuccessfully": + MessageLookupByLibrary.simpleMessage("تم حفظ المذكرة بنجاح"), + "noteUpdatedSuccessfully": + MessageLookupByLibrary.simpleMessage("تم تحديث المذكرة بنجاح"), + "notesSyncSuccessfull": + MessageLookupByLibrary.simpleMessage("مزامنة الملاحظات ناجحة"), + "pageNotFound": + MessageLookupByLibrary.simpleMessage("الصفحة غير موجودة"), + "passwordResetMailSent": MessageLookupByLibrary.simpleMessage( + "تم إرسال بريد إعادة تعيين كلمة المرور"), + "passwordResetSuccessful": MessageLookupByLibrary.simpleMessage( + "إعادة تعيين كلمة المرور بنجاح"), + "passwordVerified": + MessageLookupByLibrary.simpleMessage("تم التحقق من كلمة المرور"), + "passwordsDontMatch": + MessageLookupByLibrary.simpleMessage("كلمات المرور غير متطابقة"), + "pleaseSetupYourAccountToUseThisFeature": + MessageLookupByLibrary.simpleMessage( + "يرجى إعداد حسابك لاستخدام هذه الميزة"), + "privacyPolicy": MessageLookupByLibrary.simpleMessage("سياسة الخصوصية"), + "resetPassword": + MessageLookupByLibrary.simpleMessage("إعادة تعيين كلمة المرور"), + "sendFeedback": MessageLookupByLibrary.simpleMessage("إرسال ملاحظات"), + "settings": MessageLookupByLibrary.simpleMessage("الإعدادات"), + "setupYourAccount": MessageLookupByLibrary.simpleMessage("إعداد حسابك"), + "shareWithFriends": + MessageLookupByLibrary.simpleMessage("مشاركة مع الأصدقاء"), + "signIn": MessageLookupByLibrary.simpleMessage("تسجيل الدخول"), + "signUp": MessageLookupByLibrary.simpleMessage("التسجيل"), + "signedInAs": + MessageLookupByLibrary.simpleMessage("تم تسجيل الدخول باسم"), + "submit": MessageLookupByLibrary.simpleMessage("إرسال"), + "syncNow": MessageLookupByLibrary.simpleMessage("مزامنة الآن"), + "tapToExpandTitle": + MessageLookupByLibrary.simpleMessage("اضغط هنا لتوسيع العنوان"), + "to": MessageLookupByLibrary.simpleMessage("إلى"), + "tooManyWrongAttempts": MessageLookupByLibrary.simpleMessage( + "عدد كبير من المحاولات الخاطئة، يرجى تسجيل الدخول بكلمة المرور"), + "unexpectedErrorOccured": + MessageLookupByLibrary.simpleMessage("حدث خطأ غير متوقع"), + "video": MessageLookupByLibrary.simpleMessage("فيديو"), + "youHaveUnsavedChanges": + MessageLookupByLibrary.simpleMessage("لديك تغييرات غير محفوظة") + }; +} diff --git a/lib/generated/intl/messages_de.dart b/lib/generated/intl/messages_de.dart new file mode 100644 index 00000000..fa2f6e8f --- /dev/null +++ b/lib/generated/intl/messages_de.dart @@ -0,0 +1,149 @@ +// DO NOT EDIT. This is code generated via package:intl/generate_localized.dart +// This is a library that provides messages for a de locale. All the +// messages from the main program should be duplicated here with the same +// function name. + +// Ignore issues from commonly used lints in this file. +// ignore_for_file:unnecessary_brace_in_string_interps, unnecessary_new +// ignore_for_file:prefer_single_quotes,comment_references, directives_ordering +// ignore_for_file:annotate_overrides,prefer_generic_function_type_aliases +// ignore_for_file:unused_import, file_names, avoid_escaping_inner_quotes +// ignore_for_file:unnecessary_string_interpolations, unnecessary_string_escapes + +import 'package:intl/intl.dart'; +import 'package:intl/message_lookup_by_library.dart'; + +final messages = new MessageLookup(); + +typedef String MessageIfAbsent(String messageStr, List args); + +class MessageLookup extends MessageLookupByLibrary { + String get localeName => 'de'; + + final messages = _notInlinedMessages(_notInlinedMessages); + static Map _notInlinedMessages(_) => { + "accountSetupSuccessful": MessageLookupByLibrary.simpleMessage( + "Kontoeinrichtung erfolgreich"), + "alreadyHaveAnAccount": MessageLookupByLibrary.simpleMessage( + "Sie haben bereits ein Konto?"), + "appDescription": MessageLookupByLibrary.simpleMessage( + "Entdecken Sie diaryVault – eine Tagebuch-App, mit der Sie Ihre Gedanken, Erinnerungen und Momente mühelos festhalten können. Jetzt im Play Store erhältlich!"), + "appVersion": MessageLookupByLibrary.simpleMessage("App Version"), + "areYouSureAboutLoggingOut": MessageLookupByLibrary.simpleMessage( + "Sind Sie sicher, dass Sie sich abmelden möchten?"), + "autoSync": MessageLookupByLibrary.simpleMessage( + "Automatische Synchronisation"), + "automaticallySyncNotesWithCloud": MessageLookupByLibrary.simpleMessage( + "Notizen automatisch mit der Cloud synchronisieren"), + "availablePlatformsForSync": MessageLookupByLibrary.simpleMessage( + "Verfügbare Plattformen für die Synchronisierung"), + "byContinuingYouAgree": MessageLookupByLibrary.simpleMessage( + "Indem Sie fortfahren, stimmen Sie unseren zu"), + "camera": MessageLookupByLibrary.simpleMessage("Kamera"), + "cancel": MessageLookupByLibrary.simpleMessage("Stornieren"), + "changeEmail": + MessageLookupByLibrary.simpleMessage("Ändern Sie die E-Mail"), + "changePassword": + MessageLookupByLibrary.simpleMessage("Kennwort ändern"), + "chooseTheSyncSource": MessageLookupByLibrary.simpleMessage( + "Wählen Sie die Synchronisierungsquelle"), + "chooseTheme": MessageLookupByLibrary.simpleMessage("Thema wählen"), + "closeTheApp": MessageLookupByLibrary.simpleMessage("App schließen?"), + "confirmNewPassword": MessageLookupByLibrary.simpleMessage( + "Bestätige neues PasswortBestätige neues Passwort"), + "continueAsGues": + MessageLookupByLibrary.simpleMessage("Als Gast fortfahren"), + "dateFilter": MessageLookupByLibrary.simpleMessage("Datumsfilter"), + "delete": MessageLookupByLibrary.simpleMessage("Löschen"), + "deletionFailed": MessageLookupByLibrary.simpleMessage( + "Das Löschen ist fehlgeschlagen"), + "done": MessageLookupByLibrary.simpleMessage("Erledigt"), + "dontHaveAccount": + MessageLookupByLibrary.simpleMessage("Sie haben noch kein Konto?"), + "dropbox": MessageLookupByLibrary.simpleMessage("Dropbox"), + "emailUpdatedSuccessfully": MessageLookupByLibrary.simpleMessage( + "E-Mail erfolgreich aktualisiert, bitte melden Sie sich erneut an"), + "enableAutoSave": MessageLookupByLibrary.simpleMessage( + "Aktivieren Sie die automatische Speicherung"), + "enableFingerPrintLogin": MessageLookupByLibrary.simpleMessage( + "Aktivieren Sie die Anmeldung per Fingerabdruck"), + "enterCurrentPassword": + MessageLookupByLibrary.simpleMessage("Aktuelles Passwort eingeben"), + "enterNewEmail": MessageLookupByLibrary.simpleMessage( + "Geben Sie eine neue E-Mail-Adresse ein"), + "enterRegisteredEmail": MessageLookupByLibrary.simpleMessage( + "Geben Sie die registrierte E-Mail-Adresse ein"), + "failedToFetchNote": MessageLookupByLibrary.simpleMessage( + "Notiz konnte nicht abgerufen werden"), + "failedToSaveNote": MessageLookupByLibrary.simpleMessage( + "Notiz konnte nicht gespeichert werden"), + "fingerPrintAthShouldBeEnabledInDeviceSettings": + MessageLookupByLibrary.simpleMessage( + "Die Fingerabdruck authentifizierung sollte in den Geräteeinstellungen aktiviert sein"), + "fingerprintLoginFailed": MessageLookupByLibrary.simpleMessage( + "Die Anmeldung per Fingerabdruck ist fehlgeschlagen"), + "forgotPassword": + MessageLookupByLibrary.simpleMessage("Passwort vergessen"), + "from": MessageLookupByLibrary.simpleMessage("Aus"), + "gallery": MessageLookupByLibrary.simpleMessage("Galerie"), + "googleDrive": MessageLookupByLibrary.simpleMessage("Google Drive"), + "incorrectPassword": + MessageLookupByLibrary.simpleMessage("Falsches Passwort"), + "language": MessageLookupByLibrary.simpleMessage("German"), + "lastSynced": + MessageLookupByLibrary.simpleMessage("Zuletzt synchronisiert: "), + "link": MessageLookupByLibrary.simpleMessage("Verknüpfung"), + "logIn": MessageLookupByLibrary.simpleMessage("Anmeldung"), + "logOut": MessageLookupByLibrary.simpleMessage("Ausloggen"), + "loginToEnableAutoSync": MessageLookupByLibrary.simpleMessage( + "Bitte melden Sie sich an, um die automatische Synchronisierung zu aktivieren"), + "newPassword": MessageLookupByLibrary.simpleMessage("Neues Kennwort"), + "notAvailable": MessageLookupByLibrary.simpleMessage("Nicht verfügbar"), + "noteSavedSuccessfully": MessageLookupByLibrary.simpleMessage( + "Notiz erfolgreich gespeichert"), + "noteUpdatedSuccessfully": MessageLookupByLibrary.simpleMessage( + "Hinweis erfolgreich aktualisiert"), + "notesSyncSuccessfull": MessageLookupByLibrary.simpleMessage( + "Synchronisierung der Notizen erfolgreich"), + "pageNotFound": + MessageLookupByLibrary.simpleMessage("Seite nicht gefunden"), + "passwordResetMailSent": MessageLookupByLibrary.simpleMessage( + "E-Mail zum Zurücksetzen des Passworts gesendet"), + "passwordResetSuccessful": + MessageLookupByLibrary.simpleMessage("Passwort-Reset erfolgreich"), + "passwordVerified": + MessageLookupByLibrary.simpleMessage("Passwort überprüft"), + "passwordsDontMatch": MessageLookupByLibrary.simpleMessage( + "Passwörter stimmen nicht überein"), + "pleaseSetupYourAccountToUseThisFeature": + MessageLookupByLibrary.simpleMessage( + "Bitte richten Sie Ihr Konto ein, um diese Funktion nutzen zu können"), + "privacyPolicy": + MessageLookupByLibrary.simpleMessage("Datenschutzrichtlinie"), + "resetPassword": + MessageLookupByLibrary.simpleMessage("Passwort zurücksetzen"), + "sendFeedback": + MessageLookupByLibrary.simpleMessage("Feedback abschicken"), + "settings": MessageLookupByLibrary.simpleMessage("Einstellungen"), + "setupYourAccount": + MessageLookupByLibrary.simpleMessage("Richten Sie Ihr Konto ein"), + "shareWithFriends": + MessageLookupByLibrary.simpleMessage("Mit Freunden teilen"), + "signIn": MessageLookupByLibrary.simpleMessage("Anmelden"), + "signUp": MessageLookupByLibrary.simpleMessage("Melden Sie sich an"), + "signedInAs": MessageLookupByLibrary.simpleMessage("Eingeloggt als"), + "submit": MessageLookupByLibrary.simpleMessage("Einreichen"), + "syncNow": + MessageLookupByLibrary.simpleMessage("Jetzt synchronisieren"), + "tapToExpandTitle": MessageLookupByLibrary.simpleMessage( + "Hier tippen, um den Titel zu erweitern. Hier tippen, um den Titel zu erweitern"), + "to": MessageLookupByLibrary.simpleMessage("Zu"), + "tooManyWrongAttempts": MessageLookupByLibrary.simpleMessage( + "Zu viele Fehlversuche, bitte melden Sie sich mit Passwort an"), + "unexpectedErrorOccured": MessageLookupByLibrary.simpleMessage( + "Es ist ein unerwarteter Fehler aufgetreten"), + "video": MessageLookupByLibrary.simpleMessage("Video"), + "youHaveUnsavedChanges": MessageLookupByLibrary.simpleMessage( + "Du hast nicht gespeicherte Änderungen") + }; +} diff --git a/lib/generated/intl/messages_en.dart b/lib/generated/intl/messages_en.dart new file mode 100644 index 00000000..c0debad9 --- /dev/null +++ b/lib/generated/intl/messages_en.dart @@ -0,0 +1,159 @@ +// DO NOT EDIT. This is code generated via package:intl/generate_localized.dart +// This is a library that provides messages for a en locale. All the +// messages from the main program should be duplicated here with the same +// function name. + +// Ignore issues from commonly used lints in this file. +// ignore_for_file:unnecessary_brace_in_string_interps, unnecessary_new +// ignore_for_file:prefer_single_quotes,comment_references, directives_ordering +// ignore_for_file:annotate_overrides,prefer_generic_function_type_aliases +// ignore_for_file:unused_import, file_names, avoid_escaping_inner_quotes +// ignore_for_file:unnecessary_string_interpolations, unnecessary_string_escapes + +import 'package:intl/intl.dart'; +import 'package:intl/message_lookup_by_library.dart'; + +final messages = new MessageLookup(); + +typedef String MessageIfAbsent(String messageStr, List args); + +class MessageLookup extends MessageLookupByLibrary { + String get localeName => 'en'; + + static String m0(time) => "You will be notified at ${time}"; + + final messages = _notInlinedMessages(_notInlinedMessages); + static Map _notInlinedMessages(_) => { + "accountSetupSuccessful": + MessageLookupByLibrary.simpleMessage("Account setup successful"), + "alreadyHaveAnAccount": + MessageLookupByLibrary.simpleMessage("Already have an account?"), + "appDescription": MessageLookupByLibrary.simpleMessage( + "Discover diaryVault - a diary app designed to help you capture your thoughts, memories, and moments effortlessly. Available now on the Play Store!"), + "appVersion": MessageLookupByLibrary.simpleMessage("App version"), + "areYouSureAboutLoggingOut": MessageLookupByLibrary.simpleMessage( + "Are you sure about logging out?"), + "autoSync": MessageLookupByLibrary.simpleMessage("Auto sync"), + "automaticallySyncNotesWithCloud": MessageLookupByLibrary.simpleMessage( + "Automatically sync notes with cloud"), + "availablePlatformsForSync": MessageLookupByLibrary.simpleMessage( + "Available platforms for sync"), + "byContinuingYouAgree": MessageLookupByLibrary.simpleMessage( + "By continuing, you agree to our"), + "camera": MessageLookupByLibrary.simpleMessage("Camera"), + "cancel": MessageLookupByLibrary.simpleMessage("Cancel"), + "changeEmail": MessageLookupByLibrary.simpleMessage("Change Email"), + "changePassword": + MessageLookupByLibrary.simpleMessage("Change password"), + "chooseTheSyncSource": + MessageLookupByLibrary.simpleMessage("Choose the Sync Source"), + "chooseTheme": MessageLookupByLibrary.simpleMessage("Choose Theme"), + "chooseTime": MessageLookupByLibrary.simpleMessage("Choose Time"), + "closeTheApp": MessageLookupByLibrary.simpleMessage("Close the App?"), + "confirmNewPassword": + MessageLookupByLibrary.simpleMessage("Confirm new password"), + "continueAsGues": + MessageLookupByLibrary.simpleMessage("Continue as guest"), + "dailyReminders": + MessageLookupByLibrary.simpleMessage("Daily Reminders"), + "dateFilter": MessageLookupByLibrary.simpleMessage("Date Filter"), + "delete": MessageLookupByLibrary.simpleMessage("Delete"), + "deletionFailed": + MessageLookupByLibrary.simpleMessage("Deletion failed"), + "done": MessageLookupByLibrary.simpleMessage("Done"), + "dontHaveAccount": + MessageLookupByLibrary.simpleMessage("Don\'t have an account?"), + "dropbox": MessageLookupByLibrary.simpleMessage("Dropbox"), + "emailUpdatedSuccessfully": MessageLookupByLibrary.simpleMessage( + "Email updated successfully, please login again"), + "enableAutoSave": + MessageLookupByLibrary.simpleMessage("Enable auto save"), + "enableDailyReminders": + MessageLookupByLibrary.simpleMessage("Enable Daily Reminders"), + "enableFingerPrintLogin": + MessageLookupByLibrary.simpleMessage("Enable fingerprint login"), + "enterCurrentPassword": + MessageLookupByLibrary.simpleMessage("Enter current password"), + "enterNewEmail": + MessageLookupByLibrary.simpleMessage("Enter new email"), + "enterRegisteredEmail": + MessageLookupByLibrary.simpleMessage("Enter Registered Email"), + "failedToFetchNote": + MessageLookupByLibrary.simpleMessage("Failed to fetch note"), + "failedToSaveNote": + MessageLookupByLibrary.simpleMessage("Failed to save note"), + "fingerPrintAthShouldBeEnabledInDeviceSettings": + MessageLookupByLibrary.simpleMessage( + "Fingerprint auth should be enabled in device settings"), + "fingerprintLoginFailed": + MessageLookupByLibrary.simpleMessage("Fingerprint login failed"), + "forgotPassword": + MessageLookupByLibrary.simpleMessage("Forgot password"), + "from": MessageLookupByLibrary.simpleMessage("From"), + "gallery": MessageLookupByLibrary.simpleMessage("Gallery"), + "getDailyReminders": MessageLookupByLibrary.simpleMessage( + "Get daily reminders at your chosen time to keep your journal up to date."), + "googleDrive": MessageLookupByLibrary.simpleMessage("Google Drive"), + "incorrectPassword": + MessageLookupByLibrary.simpleMessage("Incorrect password"), + "language": MessageLookupByLibrary.simpleMessage("English"), + "lastSynced": MessageLookupByLibrary.simpleMessage("Last synced: "), + "link": MessageLookupByLibrary.simpleMessage("Link"), + "logIn": MessageLookupByLibrary.simpleMessage("Log In"), + "logOut": MessageLookupByLibrary.simpleMessage("Log out"), + "loginToEnableAutoSync": MessageLookupByLibrary.simpleMessage( + "Please login to enable auto-sync"), + "newPassword": MessageLookupByLibrary.simpleMessage("New Password"), + "notAvailable": MessageLookupByLibrary.simpleMessage("Not available"), + "noteSavedSuccessfully": + MessageLookupByLibrary.simpleMessage("Note saved successfully"), + "noteUpdatedSuccessfully": + MessageLookupByLibrary.simpleMessage("Note updated successfully"), + "notesSyncSuccessfull": + MessageLookupByLibrary.simpleMessage("Notes sync successful"), + "notificationDescription1": MessageLookupByLibrary.simpleMessage( + "Take a few minutes to reflect on your day in your diary"), + "notificationTimeNotEnabled": MessageLookupByLibrary.simpleMessage( + "You haven\'t selected a notification time"), + "notificationTitle1": + MessageLookupByLibrary.simpleMessage("Time to Journal!"), + "notificationsNotEnabled": MessageLookupByLibrary.simpleMessage( + "Notifications are not enabled"), + "pageNotFound": MessageLookupByLibrary.simpleMessage("Page not found"), + "passwordResetMailSent": + MessageLookupByLibrary.simpleMessage("Password reset email sent"), + "passwordResetSuccessful": + MessageLookupByLibrary.simpleMessage("Password reset successful"), + "passwordVerified": + MessageLookupByLibrary.simpleMessage("Password verified"), + "passwordsDontMatch": + MessageLookupByLibrary.simpleMessage("Passwords don\'t match"), + "pleaseSetupYourAccountToUseThisFeature": + MessageLookupByLibrary.simpleMessage( + "Please setup your account to use this feature"), + "privacyPolicy": MessageLookupByLibrary.simpleMessage("Privacy Policy"), + "resetPassword": MessageLookupByLibrary.simpleMessage("Reset password"), + "sendFeedback": MessageLookupByLibrary.simpleMessage("Send feedback"), + "settings": MessageLookupByLibrary.simpleMessage("Settings"), + "setupYourAccount": + MessageLookupByLibrary.simpleMessage("Setup your Account"), + "shareWithFriends": + MessageLookupByLibrary.simpleMessage("Share with Friends"), + "signIn": MessageLookupByLibrary.simpleMessage("Sign In"), + "signUp": MessageLookupByLibrary.simpleMessage("Sign Up"), + "signedInAs": MessageLookupByLibrary.simpleMessage("Signed in as"), + "submit": MessageLookupByLibrary.simpleMessage("Submit"), + "syncNow": MessageLookupByLibrary.simpleMessage("Sync now"), + "tapToExpandTitle": + MessageLookupByLibrary.simpleMessage("Tap here to expand title"), + "to": MessageLookupByLibrary.simpleMessage("To"), + "tooManyWrongAttempts": MessageLookupByLibrary.simpleMessage( + "Too many wrong attempts, please login with password"), + "unexpectedErrorOccured": + MessageLookupByLibrary.simpleMessage("Unexpected error occured"), + "video": MessageLookupByLibrary.simpleMessage("Video"), + "youHaveUnsavedChanges": + MessageLookupByLibrary.simpleMessage("You have unsaved changes"), + "youWillBeNotifiedAt": m0 + }; +} diff --git a/lib/generated/intl/messages_fi.dart b/lib/generated/intl/messages_fi.dart new file mode 100644 index 00000000..6706860c --- /dev/null +++ b/lib/generated/intl/messages_fi.dart @@ -0,0 +1,169 @@ +// DO NOT EDIT. This is code generated via package:intl/generate_localized.dart +// This is a library that provides messages for a fi locale. All the +// messages from the main program should be duplicated here with the same +// function name. + +// Ignore issues from commonly used lints in this file. +// ignore_for_file:unnecessary_brace_in_string_interps, unnecessary_new +// ignore_for_file:prefer_single_quotes,comment_references, directives_ordering +// ignore_for_file:annotate_overrides,prefer_generic_function_type_aliases +// ignore_for_file:unused_import, file_names, avoid_escaping_inner_quotes +// ignore_for_file:unnecessary_string_interpolations, unnecessary_string_escapes + +import 'package:intl/intl.dart'; +import 'package:intl/message_lookup_by_library.dart'; + +final messages = new MessageLookup(); + +typedef String MessageIfAbsent(String messageStr, List args); + +class MessageLookup extends MessageLookupByLibrary { + String get localeName => 'fi'; + + static String m0(time) => "Ilmoitusajankohta: ${time}"; + + final messages = _notInlinedMessages(_notInlinedMessages); + static Map _notInlinedMessages(_) => { + "accountSetupSuccessful": + MessageLookupByLibrary.simpleMessage("Tilin määritys onnistui"), + "alreadyHaveAnAccount": + MessageLookupByLibrary.simpleMessage("Oletko jo rekisteröitynyt?"), + "appDescription": MessageLookupByLibrary.simpleMessage( + "Tutustu diaryVaultiin – muistikirjasovellukseen, joka auttaa säilömään ajatukset, muistot ja hetket vaivattomasti. Saatavilla nyt Play Store -kaupasta!"), + "appVersion": + MessageLookupByLibrary.simpleMessage("Sovelluksen versio"), + "areYouSureAboutLoggingOut": MessageLookupByLibrary.simpleMessage( + "Haluatko varmasti kirjautua ulos?"), + "autoSync": + MessageLookupByLibrary.simpleMessage("Automaattinen synkronointi"), + "automaticallySyncNotesWithCloud": MessageLookupByLibrary.simpleMessage( + "Synkronoi muistiinpanot pilvipalveluun automaattisesti"), + "availablePlatformsForSync": MessageLookupByLibrary.simpleMessage( + "Synkronointia tukevat alustat"), + "byContinuingYouAgree": + MessageLookupByLibrary.simpleMessage("Jos jatkat, hyväksyt"), + "camera": MessageLookupByLibrary.simpleMessage("Kamera"), + "cancel": MessageLookupByLibrary.simpleMessage("Peruuta"), + "changeEmail": + MessageLookupByLibrary.simpleMessage("Vaihda sähköpostiosoite"), + "changePassword": + MessageLookupByLibrary.simpleMessage("Vaihda salasana"), + "chooseTheSyncSource": + MessageLookupByLibrary.simpleMessage("Valitse synkronointilähde"), + "chooseTheme": MessageLookupByLibrary.simpleMessage("Valitse teema"), + "chooseTime": MessageLookupByLibrary.simpleMessage("Valitse ajankohta"), + "closeTheApp": + MessageLookupByLibrary.simpleMessage("Suljetaanko sovellus?"), + "confirmNewPassword": + MessageLookupByLibrary.simpleMessage("Vahvista uusi salasana"), + "continueAsGues": + MessageLookupByLibrary.simpleMessage("Jatka vieraskäyttäjänä"), + "dailyReminders": + MessageLookupByLibrary.simpleMessage("Päivittäiset muistutukset"), + "dateFilter": + MessageLookupByLibrary.simpleMessage("Päivämääräsuodatin"), + "delete": MessageLookupByLibrary.simpleMessage("Poista"), + "deletionFailed": + MessageLookupByLibrary.simpleMessage("Poisto ei onnistunut"), + "done": MessageLookupByLibrary.simpleMessage("Valmis"), + "dontHaveAccount": + MessageLookupByLibrary.simpleMessage("Eikö sinulla ole tiliä?"), + "dropbox": MessageLookupByLibrary.simpleMessage("Dropbox"), + "emailUpdatedSuccessfully": MessageLookupByLibrary.simpleMessage( + "Sähköpostiosoite on päivitetty. Kirjaudu uudelleen sisään."), + "enableAutoSave": MessageLookupByLibrary.simpleMessage( + "Ota automaattinen tallennus käyttöön"), + "enableDailyReminders": MessageLookupByLibrary.simpleMessage( + "Ota päivittäiset muistutukset käyttöön"), + "enableFingerPrintLogin": MessageLookupByLibrary.simpleMessage( + "Ota sormenjälkitunnistus käyttöön"), + "enterCurrentPassword": + MessageLookupByLibrary.simpleMessage("Anna nykyinen salasana"), + "enterNewEmail": + MessageLookupByLibrary.simpleMessage("Anna uusi sähköpostiosoite"), + "enterRegisteredEmail": MessageLookupByLibrary.simpleMessage( + "Anna rekisteröity sähköpostiosoite"), + "failedToFetchNote": MessageLookupByLibrary.simpleMessage( + "Muistiinpanon haku ei onnistunut"), + "failedToSaveNote": MessageLookupByLibrary.simpleMessage( + "Muistiinpanon tallennus ei onnistunut"), + "fingerPrintAthShouldBeEnabledInDeviceSettings": + MessageLookupByLibrary.simpleMessage( + "Sormenjälkitunnistus on otettava käyttöön laitteen asetuksissa"), + "fingerprintLoginFailed": MessageLookupByLibrary.simpleMessage( + "Sormenjälkitunnistus ei onnistunut"), + "forgotPassword": + MessageLookupByLibrary.simpleMessage("Unohtuiko salasana?"), + "from": MessageLookupByLibrary.simpleMessage("Alku"), + "gallery": MessageLookupByLibrary.simpleMessage("Galleria"), + "getDailyReminders": MessageLookupByLibrary.simpleMessage( + "Saat päivittäisen muistutuksen kirjoittaa muistikirjaan haluamanasi ajankohtana."), + "googleDrive": MessageLookupByLibrary.simpleMessage("Google Drive"), + "incorrectPassword": + MessageLookupByLibrary.simpleMessage("Salasana on väärä"), + "language": MessageLookupByLibrary.simpleMessage("Finnish"), + "lastSynced": + MessageLookupByLibrary.simpleMessage("Viimeksi synkronoitu: "), + "link": MessageLookupByLibrary.simpleMessage("Linkki"), + "logIn": MessageLookupByLibrary.simpleMessage("Kirjaudu sisään"), + "logOut": MessageLookupByLibrary.simpleMessage("Kirjaudu ulos"), + "loginToEnableAutoSync": MessageLookupByLibrary.simpleMessage( + "Ota automaattinen synkronointi käyttöön kirjautumalla sisään"), + "newPassword": MessageLookupByLibrary.simpleMessage("Uusi salasana"), + "notAvailable": + MessageLookupByLibrary.simpleMessage("Ei käytettävissä"), + "noteSavedSuccessfully": + MessageLookupByLibrary.simpleMessage("Muistiinpano on tallennettu"), + "noteUpdatedSuccessfully": + MessageLookupByLibrary.simpleMessage("Muistiinpano on päivitetty"), + "notesSyncSuccessfull": MessageLookupByLibrary.simpleMessage( + "Muistiinpanot on synkronoitu"), + "notificationDescription1": MessageLookupByLibrary.simpleMessage( + "Pysähdy hetkeksi tallentamaan päivän ajatuksiasi muistikirjaan"), + "notificationTimeNotEnabled": MessageLookupByLibrary.simpleMessage( + "Ilmoitusajankohtaa ei ole valittu"), + "notificationTitle1": MessageLookupByLibrary.simpleMessage( + "Aika kirjoittaa muistikirjaan!"), + "notificationsNotEnabled": MessageLookupByLibrary.simpleMessage( + "Ilmoituksia ei ole otettu käyttöön"), + "pageNotFound": MessageLookupByLibrary.simpleMessage("Sivua ei löydy"), + "passwordResetMailSent": MessageLookupByLibrary.simpleMessage( + "Salasanan palautusviesti on lähetetty"), + "passwordResetSuccessful": + MessageLookupByLibrary.simpleMessage("Salasanan palautus onnistui"), + "passwordVerified": + MessageLookupByLibrary.simpleMessage("Salasana on vahvistettu"), + "passwordsDontMatch": + MessageLookupByLibrary.simpleMessage("Salasanat eivät täsmää"), + "pleaseSetupYourAccountToUseThisFeature": + MessageLookupByLibrary.simpleMessage( + "Ominaisuus edellyttää, että tili on määritetty"), + "privacyPolicy": MessageLookupByLibrary.simpleMessage( + "sovelluksen tietosuojakäytännön"), + "resetPassword": + MessageLookupByLibrary.simpleMessage("Nollaa salasana"), + "sendFeedback": + MessageLookupByLibrary.simpleMessage("Lähetä palautetta"), + "settings": MessageLookupByLibrary.simpleMessage("Asetukset"), + "setupYourAccount": + MessageLookupByLibrary.simpleMessage("Määritä tilisi"), + "shareWithFriends": MessageLookupByLibrary.simpleMessage( + "Kerro sovelluksesta ystäville"), + "signIn": MessageLookupByLibrary.simpleMessage("Rekisteröidy"), + "signUp": MessageLookupByLibrary.simpleMessage("Rekisteröidy"), + "signedInAs": MessageLookupByLibrary.simpleMessage("Kirjautuneena:"), + "submit": MessageLookupByLibrary.simpleMessage("Lähetä"), + "syncNow": MessageLookupByLibrary.simpleMessage("Synkronoi nyt"), + "tapToExpandTitle": MessageLookupByLibrary.simpleMessage( + "Laajenna otsikko napauttamalla tätä"), + "to": MessageLookupByLibrary.simpleMessage("Loppu"), + "tooManyWrongAttempts": MessageLookupByLibrary.simpleMessage( + "Tunnistus epäonnistui liian monta kertaa. Anna salasana."), + "unexpectedErrorOccured": MessageLookupByLibrary.simpleMessage( + "On ilmennyt odottamaton virhe"), + "video": MessageLookupByLibrary.simpleMessage("Video"), + "youHaveUnsavedChanges": MessageLookupByLibrary.simpleMessage( + "Muutoksia ei ole tallennettu"), + "youWillBeNotifiedAt": m0 + }; +} diff --git a/lib/generated/intl/messages_he.dart b/lib/generated/intl/messages_he.dart new file mode 100644 index 00000000..afeb888c --- /dev/null +++ b/lib/generated/intl/messages_he.dart @@ -0,0 +1,137 @@ +// DO NOT EDIT. This is code generated via package:intl/generate_localized.dart +// This is a library that provides messages for a he locale. All the +// messages from the main program should be duplicated here with the same +// function name. + +// Ignore issues from commonly used lints in this file. +// ignore_for_file:unnecessary_brace_in_string_interps, unnecessary_new +// ignore_for_file:prefer_single_quotes,comment_references, directives_ordering +// ignore_for_file:annotate_overrides,prefer_generic_function_type_aliases +// ignore_for_file:unused_import, file_names, avoid_escaping_inner_quotes +// ignore_for_file:unnecessary_string_interpolations, unnecessary_string_escapes + +import 'package:intl/intl.dart'; +import 'package:intl/message_lookup_by_library.dart'; + +final messages = new MessageLookup(); + +typedef String MessageIfAbsent(String messageStr, List args); + +class MessageLookup extends MessageLookupByLibrary { + String get localeName => 'he'; + + final messages = _notInlinedMessages(_notInlinedMessages); + static Map _notInlinedMessages(_) => { + "accountSetupSuccessful": + MessageLookupByLibrary.simpleMessage("הקמת חשבון נעשתה בהצלחה"), + "alreadyHaveAnAccount": + MessageLookupByLibrary.simpleMessage("האם יש לך כבר חשבון?"), + "appDescription": MessageLookupByLibrary.simpleMessage( + "גלה את diaryVault - יישומון יומן שעוצב לעזור לך לתפוס את מחשבותיך, זכרונותיך, ורגעים ללא מאמץ. עכשיו זמין בחנות Play!"), + "appVersion": MessageLookupByLibrary.simpleMessage("גרסת ישומון"), + "areYouSureAboutLoggingOut": MessageLookupByLibrary.simpleMessage( + "האם אתה בטוח שאתה רוצה להתנתק?"), + "autoSync": MessageLookupByLibrary.simpleMessage("סנכרון אוטומטי"), + "automaticallySyncNotesWithCloud": + MessageLookupByLibrary.simpleMessage("סנכרן פתקים אוטמטית עם הענן"), + "availablePlatformsForSync": + MessageLookupByLibrary.simpleMessage("פלטפורמות אפשריות לסנכרון"), + "byContinuingYouAgree": + MessageLookupByLibrary.simpleMessage("על ידי המשך, אתה מסכים ל"), + "camera": MessageLookupByLibrary.simpleMessage("מצלמה"), + "cancel": MessageLookupByLibrary.simpleMessage("בטל"), + "changeEmail": MessageLookupByLibrary.simpleMessage("לשנות אימייל"), + "changePassword": MessageLookupByLibrary.simpleMessage("לשנות סיסמה"), + "chooseTheSyncSource": + MessageLookupByLibrary.simpleMessage("בחר מקור סנכרון"), + "chooseTheme": MessageLookupByLibrary.simpleMessage("בחר נושא"), + "closeTheApp": + MessageLookupByLibrary.simpleMessage("לסגור את היישומון?"), + "confirmNewPassword": + MessageLookupByLibrary.simpleMessage("אשר סיסמה חדשה"), + "continueAsGues": MessageLookupByLibrary.simpleMessage("המשך כאורח"), + "dateFilter": MessageLookupByLibrary.simpleMessage("סינון תאריך"), + "delete": MessageLookupByLibrary.simpleMessage("מחק"), + "deletionFailed": MessageLookupByLibrary.simpleMessage("מחיקה נכשלה"), + "done": MessageLookupByLibrary.simpleMessage("בוצע"), + "dontHaveAccount": + MessageLookupByLibrary.simpleMessage("אין לך חשבון?"), + "dropbox": MessageLookupByLibrary.simpleMessage("דרופבוקס"), + "emailUpdatedSuccessfully": MessageLookupByLibrary.simpleMessage( + "אימייל עודכן בהצלחה, אנא התחבר שוב"), + "enableAutoSave": + MessageLookupByLibrary.simpleMessage("הפעל שמירה אוטומטית"), + "enableFingerPrintLogin": + MessageLookupByLibrary.simpleMessage("אפשר התחברות דרך טביעת אצבע"), + "enterCurrentPassword": + MessageLookupByLibrary.simpleMessage("הכנס סיסמה עכשווית"), + "enterNewEmail": + MessageLookupByLibrary.simpleMessage("הכנס אימייל חדש"), + "enterRegisteredEmail": + MessageLookupByLibrary.simpleMessage("הכנס אימייל רשום"), + "failedToFetchNote": + MessageLookupByLibrary.simpleMessage("נכשל בלהביא פתק"), + "failedToSaveNote": + MessageLookupByLibrary.simpleMessage("נכשל בלשמור על פתק"), + "fingerPrintAthShouldBeEnabledInDeviceSettings": + MessageLookupByLibrary.simpleMessage( + "אימות על ידי טביעת אצבע צריך להיות מופעל בהגדרות המכשיר"), + "fingerprintLoginFailed": + MessageLookupByLibrary.simpleMessage("התחברות עם טביעת אצבע נכשלה"), + "forgotPassword": MessageLookupByLibrary.simpleMessage("שכחתי סיסמה"), + "from": MessageLookupByLibrary.simpleMessage("מאת"), + "gallery": MessageLookupByLibrary.simpleMessage("גלריה"), + "googleDrive": MessageLookupByLibrary.simpleMessage("גוגל דרייב"), + "incorrectPassword": + MessageLookupByLibrary.simpleMessage("סיסמה לא נכונה"), + "language": MessageLookupByLibrary.simpleMessage("Hebrew"), + "lastSynced": + MessageLookupByLibrary.simpleMessage("סונכרן בפעם האחרונה ב: "), + "link": MessageLookupByLibrary.simpleMessage("קישור"), + "logIn": MessageLookupByLibrary.simpleMessage("התחברות"), + "logOut": MessageLookupByLibrary.simpleMessage("התנתק"), + "loginToEnableAutoSync": MessageLookupByLibrary.simpleMessage( + "אנא התחבר כדי לאפשר סנכרון אוטומטי"), + "newPassword": MessageLookupByLibrary.simpleMessage("סיסמה חדשה"), + "notAvailable": MessageLookupByLibrary.simpleMessage("לא זמין"), + "noteSavedSuccessfully": + MessageLookupByLibrary.simpleMessage("פתק נשמר בהצלחה"), + "noteUpdatedSuccessfully": + MessageLookupByLibrary.simpleMessage("פתק עודכן בהצלחה"), + "notesSyncSuccessfull": + MessageLookupByLibrary.simpleMessage("סנכרון פתקים התבצע בהצלחה"), + "pageNotFound": MessageLookupByLibrary.simpleMessage("דף לא נמצא"), + "passwordResetMailSent": + MessageLookupByLibrary.simpleMessage("אימייל איפוס סיסמה נשלח"), + "passwordResetSuccessful": + MessageLookupByLibrary.simpleMessage("איפוס סיסמה עבר בהצלחה"), + "passwordVerified": MessageLookupByLibrary.simpleMessage("סיסמה אומתה"), + "passwordsDontMatch": + MessageLookupByLibrary.simpleMessage("הסיסמאות לא תואמות"), + "pleaseSetupYourAccountToUseThisFeature": + MessageLookupByLibrary.simpleMessage( + "אנא הקם את חשבונך כדי להשתמש באפשרות הזאת"), + "privacyPolicy": MessageLookupByLibrary.simpleMessage("מדיניות פרטיות"), + "resetPassword": MessageLookupByLibrary.simpleMessage("אפס סיסמה"), + "sendFeedback": MessageLookupByLibrary.simpleMessage("שלח משוב"), + "settings": MessageLookupByLibrary.simpleMessage("הגדרות"), + "setupYourAccount": MessageLookupByLibrary.simpleMessage("הקמת חשבון"), + "shareWithFriends": + MessageLookupByLibrary.simpleMessage("שתף עם חברים"), + "signIn": MessageLookupByLibrary.simpleMessage("התחבר"), + "signUp": MessageLookupByLibrary.simpleMessage("הירשם"), + "signedInAs": MessageLookupByLibrary.simpleMessage("מחובר כ-"), + "submit": MessageLookupByLibrary.simpleMessage("שלח"), + "syncNow": MessageLookupByLibrary.simpleMessage("סנכרן עכשיו"), + "tapToExpandTitle": MessageLookupByLibrary.simpleMessage( + "הקש כאן כדי להרחיב את הכותרת"), + "to": MessageLookupByLibrary.simpleMessage("ל"), + "tooManyWrongAttempts": MessageLookupByLibrary.simpleMessage( + "יותר מדי התחברויות כושלות, אנא התחבר עם סיסמה"), + "unexpectedErrorOccured": + MessageLookupByLibrary.simpleMessage("בעיה לא צפויה קרתה"), + "video": MessageLookupByLibrary.simpleMessage("וידאו"), + "youHaveUnsavedChanges": + MessageLookupByLibrary.simpleMessage("יש לך שינויים שלא נשמרו") + }; +} diff --git a/lib/generated/intl/messages_hi.dart b/lib/generated/intl/messages_hi.dart new file mode 100644 index 00000000..0f7b9538 --- /dev/null +++ b/lib/generated/intl/messages_hi.dart @@ -0,0 +1,143 @@ +// DO NOT EDIT. This is code generated via package:intl/generate_localized.dart +// This is a library that provides messages for a hi locale. All the +// messages from the main program should be duplicated here with the same +// function name. + +// Ignore issues from commonly used lints in this file. +// ignore_for_file:unnecessary_brace_in_string_interps, unnecessary_new +// ignore_for_file:prefer_single_quotes,comment_references, directives_ordering +// ignore_for_file:annotate_overrides,prefer_generic_function_type_aliases +// ignore_for_file:unused_import, file_names, avoid_escaping_inner_quotes +// ignore_for_file:unnecessary_string_interpolations, unnecessary_string_escapes + +import 'package:intl/intl.dart'; +import 'package:intl/message_lookup_by_library.dart'; + +final messages = new MessageLookup(); + +typedef String MessageIfAbsent(String messageStr, List args); + +class MessageLookup extends MessageLookupByLibrary { + String get localeName => 'hi'; + + final messages = _notInlinedMessages(_notInlinedMessages); + static Map _notInlinedMessages(_) => { + "accountSetupSuccessful": + MessageLookupByLibrary.simpleMessage("खाता सेटअप सफल"), + "alreadyHaveAnAccount": + MessageLookupByLibrary.simpleMessage("पहले से खाता मौजूद है?"), + "appDescription": MessageLookupByLibrary.simpleMessage( + "डायरीवॉल्ट - एक डायरी ऐप जिसे आपके विचारों, यादों और क्षणों को सहजता से समेटने में मदद करने के लिए डिज़ाइन किया गया है। अब प्ले स्टोर पर उपलब्ध है!"), + "appVersion": MessageLookupByLibrary.simpleMessage("एप्लिकेशन वरज़न"), + "areYouSureAboutLoggingOut": MessageLookupByLibrary.simpleMessage( + "क्या आप लॉग आउट करने के बारे में निश्चित हैं?"), + "autoSync": MessageLookupByLibrary.simpleMessage("स्वतः सिंक"), + "automaticallySyncNotesWithCloud": MessageLookupByLibrary.simpleMessage( + "क्लाउड के साथ नोट्स को स्वचालित रूप से सिंक करें"), + "availablePlatformsForSync": MessageLookupByLibrary.simpleMessage( + "सिंक के लिए उपलब्ध प्लेटफ़ॉर्म"), + "byContinuingYouAgree": MessageLookupByLibrary.simpleMessage( + "जारी रखकर, आप सहमत हैं हमारी "), + "camera": MessageLookupByLibrary.simpleMessage("कैमरा"), + "cancel": MessageLookupByLibrary.simpleMessage("रद्द करें"), + "changeEmail": MessageLookupByLibrary.simpleMessage("ई-मेल बदले"), + "changePassword": MessageLookupByLibrary.simpleMessage("पासवर्ड बदलें"), + "chooseTheSyncSource": + MessageLookupByLibrary.simpleMessage("सिंक स्रोत चुनें"), + "chooseTheme": MessageLookupByLibrary.simpleMessage("थीम चुनें"), + "closeTheApp": MessageLookupByLibrary.simpleMessage("ऐप बंद करें?"), + "confirmNewPassword": + MessageLookupByLibrary.simpleMessage("नए पासवर्ड की पुष्टि करें"), + "continueAsGues": + MessageLookupByLibrary.simpleMessage("अतिथि के रूप में जारी रखें"), + "dateFilter": MessageLookupByLibrary.simpleMessage("दिनांक फ़िल्टर"), + "delete": MessageLookupByLibrary.simpleMessage("मिटायें"), + "deletionFailed": + MessageLookupByLibrary.simpleMessage("हटाना विफल रहा"), + "done": MessageLookupByLibrary.simpleMessage("हो गया"), + "dontHaveAccount": + MessageLookupByLibrary.simpleMessage("कोई खाता नहीं है?"), + "dropbox": MessageLookupByLibrary.simpleMessage("ड्रॉपबॉक्स"), + "emailUpdatedSuccessfully": MessageLookupByLibrary.simpleMessage( + "ईमेल सफलतापूर्वक अपडेट किया गया, कृपया पुनः लॉगिन करें"), + "enableAutoSave": + MessageLookupByLibrary.simpleMessage("ऑटो सेव सक्षम करें"), + "enableFingerPrintLogin": MessageLookupByLibrary.simpleMessage( + "फ़िंगरप्रिंट लॉगिन सक्षम करें"), + "enterCurrentPassword": + MessageLookupByLibrary.simpleMessage("वर्तमान पासवर्ड दर्ज करें"), + "enterNewEmail": + MessageLookupByLibrary.simpleMessage("नया ईमेल दर्ज करें"), + "enterRegisteredEmail": + MessageLookupByLibrary.simpleMessage("पंजीकृत ईमेल दर्ज करें"), + "failedToFetchNote": + MessageLookupByLibrary.simpleMessage("नोट लाने में विफल"), + "failedToSaveNote": + MessageLookupByLibrary.simpleMessage("नोट सहेजने में विफल"), + "fingerPrintAthShouldBeEnabledInDeviceSettings": + MessageLookupByLibrary.simpleMessage( + "डिवाइस सेटिंग्स में फ़िंगरप्रिंट प्रमाणीकरण सक्षम होना चाहिए"), + "fingerprintLoginFailed": + MessageLookupByLibrary.simpleMessage("फ़िंगरप्रिंट लॉगिन विफल रहा"), + "forgotPassword": + MessageLookupByLibrary.simpleMessage("पासवर्ड भूल गए"), + "from": MessageLookupByLibrary.simpleMessage("से"), + "gallery": MessageLookupByLibrary.simpleMessage("गैलरी"), + "googleDrive": MessageLookupByLibrary.simpleMessage("गूगल ड्राइव"), + "incorrectPassword": + MessageLookupByLibrary.simpleMessage("गलत पासवर्ड"), + "language": MessageLookupByLibrary.simpleMessage("Hindi"), + "lastSynced": + MessageLookupByLibrary.simpleMessage("अंतिम बार समन्वयित:"), + "link": MessageLookupByLibrary.simpleMessage("लिंक"), + "logIn": MessageLookupByLibrary.simpleMessage("लॉग इन करें"), + "logOut": MessageLookupByLibrary.simpleMessage("लॉग आउट करें"), + "loginToEnableAutoSync": MessageLookupByLibrary.simpleMessage( + "कृपया ऑटो-सिंक सक्षम करने के लिए लॉगिन करें"), + "newPassword": MessageLookupByLibrary.simpleMessage("नया पासवर्ड"), + "notAvailable": MessageLookupByLibrary.simpleMessage("उपलब्ध नहीं है"), + "noteSavedSuccessfully": + MessageLookupByLibrary.simpleMessage("नोट सफलतापूर्वक सहेजा गया"), + "noteUpdatedSuccessfully": MessageLookupByLibrary.simpleMessage( + "नोट सफलतापूर्वक अपडेट किया गया"), + "notesSyncSuccessfull": + MessageLookupByLibrary.simpleMessage("नोट्स सिंक सफल"), + "pageNotFound": MessageLookupByLibrary.simpleMessage("पृष्ठ नहीं मिला"), + "passwordResetMailSent": + MessageLookupByLibrary.simpleMessage("पासवर्ड रीसेट ईमेल भेजा गया"), + "passwordResetSuccessful": + MessageLookupByLibrary.simpleMessage("पासवर्ड रीसेट सफल"), + "passwordVerified": + MessageLookupByLibrary.simpleMessage("पासवर्ड सत्यापित"), + "passwordsDontMatch": + MessageLookupByLibrary.simpleMessage("पासवर्ड मेल नहीं खाते"), + "pleaseSetupYourAccountToUseThisFeature": + MessageLookupByLibrary.simpleMessage( + "कृपया इस सुविधा का उपयोग करने के लिए अपना खाता सेटअप करें"), + "privacyPolicy": MessageLookupByLibrary.simpleMessage("गोपनीयता नीति"), + "resetPassword": MessageLookupByLibrary.simpleMessage("पासवर्ड रीसेट"), + "sendFeedback": + MessageLookupByLibrary.simpleMessage("प्रतिक्रिया भेजें"), + "settings": MessageLookupByLibrary.simpleMessage("समायोजन"), + "setupYourAccount": + MessageLookupByLibrary.simpleMessage("अपना खाता स्थापित करें"), + "shareWithFriends": + MessageLookupByLibrary.simpleMessage("दोस्तों के साथ बांटें"), + "signIn": MessageLookupByLibrary.simpleMessage("साइन इन करें"), + "signUp": MessageLookupByLibrary.simpleMessage("साइन अप करें"), + "signedInAs": + MessageLookupByLibrary.simpleMessage("इस रूप में साइन इन किया"), + "submit": MessageLookupByLibrary.simpleMessage("सबमिट करें"), + "syncNow": MessageLookupByLibrary.simpleMessage("सिंक करें"), + "tapToExpandTitle": MessageLookupByLibrary.simpleMessage( + "शीर्षक का विस्तार करने के लिए यहां टैप करें"), + "to": MessageLookupByLibrary.simpleMessage("को"), + "tooManyWrongAttempts": MessageLookupByLibrary.simpleMessage( + "बहुत सारे गलत प्रयास, कृपया पासवर्ड से लॉगिन करें"), + "unexpectedErrorOccured": MessageLookupByLibrary.simpleMessage( + "अनपेक्षित त्रुटि उत्पन्न हुई"), + "video": MessageLookupByLibrary.simpleMessage("वीडियो"), + "youHaveUnsavedChanges": + MessageLookupByLibrary.simpleMessage("सहेजे न गए परिवर्तन") + }; +} diff --git a/lib/generated/intl/messages_kn.dart b/lib/generated/intl/messages_kn.dart new file mode 100644 index 00000000..f3d69cfa --- /dev/null +++ b/lib/generated/intl/messages_kn.dart @@ -0,0 +1,146 @@ +// DO NOT EDIT. This is code generated via package:intl/generate_localized.dart +// This is a library that provides messages for a kn locale. All the +// messages from the main program should be duplicated here with the same +// function name. + +// Ignore issues from commonly used lints in this file. +// ignore_for_file:unnecessary_brace_in_string_interps, unnecessary_new +// ignore_for_file:prefer_single_quotes,comment_references, directives_ordering +// ignore_for_file:annotate_overrides,prefer_generic_function_type_aliases +// ignore_for_file:unused_import, file_names, avoid_escaping_inner_quotes +// ignore_for_file:unnecessary_string_interpolations, unnecessary_string_escapes + +import 'package:intl/intl.dart'; +import 'package:intl/message_lookup_by_library.dart'; + +final messages = new MessageLookup(); + +typedef String MessageIfAbsent(String messageStr, List args); + +class MessageLookup extends MessageLookupByLibrary { + String get localeName => 'kn'; + + final messages = _notInlinedMessages(_notInlinedMessages); + static Map _notInlinedMessages(_) => { + "accountSetupSuccessful": + MessageLookupByLibrary.simpleMessage("ಖಾತೆ ಸೆಟಪ್ ಯಶಸ್ವಿಯಾಗಿದೆ"), + "alreadyHaveAnAccount": + MessageLookupByLibrary.simpleMessage("ಈಗಾಗಲೇ ಖಾತೆ ಹೊಂದಿದ್ದೀರ?"), + "appDescription": MessageLookupByLibrary.simpleMessage( + "ಡೈರಿವಾಲ್ಟ್ ಅನ್ನು ಅನ್ವೇಷಿಸಿ - ನಿಮ್ಮ ಆಲೋಚನೆಗಳು, ನೆನಪುಗಳು ಮತ್ತು ಕ್ಷಣಗಳನ್ನು ಸಲೀಸಾಗಿ ಸೆರೆಹಿಡಿಯಲು ಸಹಾಯ ಮಾಡಲು ವಿನ್ಯಾಸಗೊಳಿಸಲಾದ ಡೈರಿ ಅಪ್ಲಿಕೇಶನ್. ಪ್ಲೇ ಸ್ಟೋರ್‌ನಲ್ಲಿ ಈಗ ಲಭ್ಯವಿದೆ!"), + "appVersion": + MessageLookupByLibrary.simpleMessage("ಅಪ್ಲಿಕೇಶನ್ ಆವೃತ್ತಿ"), + "areYouSureAboutLoggingOut": MessageLookupByLibrary.simpleMessage( + "ಲಾಗ್ ಔಟ್ ಮಾಡುವ ಕುರಿತು ನೀವು ಖಚಿತವಾಗಿರುವಿರಾ?"), + "autoSync": MessageLookupByLibrary.simpleMessage("ಸ್ವಯಂ ಸಿಂಕ್ರೊನೈಸ್"), + "automaticallySyncNotesWithCloud": MessageLookupByLibrary.simpleMessage( + "ಟಿಪ್ಪಣಿಗಳನ್ನು ಕ್ಲೌಡ್‌ನೊಂದಿಗೆ ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಸಿಂಕ್ ಮಾಡಿ"), + "availablePlatformsForSync": MessageLookupByLibrary.simpleMessage( + "ಸಿಂಕ್‌ಗಾಗಿ ಲಭ್ಯವಿರುವ ಪ್ಲಾಟ್‌ಫಾರ್ಮ್‌ಗಳು"), + "byContinuingYouAgree": MessageLookupByLibrary.simpleMessage( + "ಮುಂದುವರಿಸುವ ಮೂಲಕ, ನೀವು ನಮ್ಮ ಸಮ್ಮತಿಸುತ್ತೀರಿ"), + "camera": MessageLookupByLibrary.simpleMessage("ಕ್ಯಾಮೆರಾ"), + "cancel": MessageLookupByLibrary.simpleMessage("ರದ್ದುಮಾಡು"), + "changeEmail": MessageLookupByLibrary.simpleMessage("ಇಮೇಲ್ ಬದಲಾಯಿಸಿ"), + "changePassword": + MessageLookupByLibrary.simpleMessage("ಗುಪ್ತಪದವನ್ನು ಬದಲಿಸಿ"), + "chooseTheSyncSource": + MessageLookupByLibrary.simpleMessage("ಸಿಂಕ್ ಮೂಲವನ್ನು ಆಯ್ಕೆಮಾಡಿ"), + "chooseTheme": MessageLookupByLibrary.simpleMessage("ಥೀಮ್ ಆಯ್ಕೆಮಾಡಿ"), + "closeTheApp": + MessageLookupByLibrary.simpleMessage("ಅಪ್ಲಿಕೇಶನ್ ಮುಚ್ಚುವುದೇ?"), + "confirmNewPassword": + MessageLookupByLibrary.simpleMessage("ಹೊಸ ಗುಪ್ತಪದವನ್ನು ಖಚಿತಪಡಿಸಿ"), + "continueAsGues": + MessageLookupByLibrary.simpleMessage("ಅತಿಥಿಯಾಗಿ ಮುಂದುವರಿಯಿರಿ"), + "dateFilter": MessageLookupByLibrary.simpleMessage("ದಿನಾಂಕ ಫಿಲ್ಟರ್"), + "delete": MessageLookupByLibrary.simpleMessage("ಅಳಿಸಿ"), + "deletionFailed": + MessageLookupByLibrary.simpleMessage("ಅಳಿಸುವಿಕೆ ವಿಫಲವಾಗಿದೆ"), + "done": MessageLookupByLibrary.simpleMessage("ಮುಗಿದಿದೆ"), + "dontHaveAccount": MessageLookupByLibrary.simpleMessage("ಖಾತೆ ಇಲ್ಲವೇ?"), + "dropbox": MessageLookupByLibrary.simpleMessage("ಡ್ರಾಪ್ಬಾಕ್ಸ್"), + "emailUpdatedSuccessfully": MessageLookupByLibrary.simpleMessage( + "ಇಮೇಲ್ ಯಶಸ್ವಿಯಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ"), + "enableAutoSave": MessageLookupByLibrary.simpleMessage( + "ಸ್ವಯಂ ಉಳಿಸುವಿಕೆಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ"), + "enableFingerPrintLogin": MessageLookupByLibrary.simpleMessage( + "ಫಿಂಗರ್‌ಪ್ರಿಂಟ್ ಲಾಗಿನ್ ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ"), + "enterCurrentPassword": + MessageLookupByLibrary.simpleMessage("ಪ್ರಸ್ತುತ ಪಾಸ್ವರ್ಡ್ ನಮೂದಿಸಿ"), + "enterNewEmail": + MessageLookupByLibrary.simpleMessage("ಹೊಸ ಇಮೇಲ್ ನಮೂದಿಸಿ"), + "enterRegisteredEmail": MessageLookupByLibrary.simpleMessage( + "ನೋಂದಾಯಿತ ಇಮೇಲ್ ಅನ್ನು ನಮೂದಿಸಿ"), + "failedToFetchNote": MessageLookupByLibrary.simpleMessage( + "ಟಿಪ್ಪಣಿಯನ್ನು ತರಲು ವಿಫಲವಾಗಿದೆ"), + "failedToSaveNote": MessageLookupByLibrary.simpleMessage( + "ಟಿಪ್ಪಣಿಯನ್ನು ಉಳಿಸಲು ವಿಫಲವಾಗಿದೆ"), + "fingerPrintAthShouldBeEnabledInDeviceSettings": + MessageLookupByLibrary.simpleMessage( + "ಸಾಧನ ಸೆಟ್ಟಿಂಗ್‌ಗಳಲ್ಲಿ ಫಿಂಗರ್‌ಪ್ರಿಂಟ್ ದೃಢೀಕರಣವನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಬೇಕು"), + "fingerprintLoginFailed": MessageLookupByLibrary.simpleMessage( + "ಫಿಂಗರ್‌ಪ್ರಿಂಟ್ ಲಾಗಿನ್ ವಿಫಲವಾಗಿದೆ"), + "forgotPassword": + MessageLookupByLibrary.simpleMessage("ಪಾಸ್ವರ್ಡ್ ಮರೆತಿರಾ"), + "from": MessageLookupByLibrary.simpleMessage("ಇಂದ"), + "gallery": MessageLookupByLibrary.simpleMessage("ಗ್ಯಾಲರಿ"), + "googleDrive": MessageLookupByLibrary.simpleMessage("ಗೂಗಲ್ ಡ್ರೈವ್"), + "incorrectPassword": + MessageLookupByLibrary.simpleMessage("ತಪ್ಪಾದ ಪಾಸ್ವರ್ಡ್"), + "language": MessageLookupByLibrary.simpleMessage("Kannada"), + "lastSynced": + MessageLookupByLibrary.simpleMessage("ಕೊನೆಯದಾಗಿ ಸಿಂಕ್ ಮಾಡಿರುವುದು:"), + "link": MessageLookupByLibrary.simpleMessage("ಲಿಂಕ್"), + "logIn": MessageLookupByLibrary.simpleMessage("ಲಾಗಿನ್ ಮಾಡಿ"), + "logOut": MessageLookupByLibrary.simpleMessage("ಲಾಗ್ ಔಟ್"), + "loginToEnableAutoSync": MessageLookupByLibrary.simpleMessage( + "ಸ್ವಯಂ ಸಿಂಕ್ ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಲು ದಯವಿಟ್ಟು ಲಾಗಿನ್ ಮಾಡಿ"), + "newPassword": MessageLookupByLibrary.simpleMessage("ಹೊಸ ಪಾಸ್ವರ್ಡ್"), + "notAvailable": MessageLookupByLibrary.simpleMessage("ಲಭ್ಯವಿಲ್ಲ"), + "noteSavedSuccessfully": MessageLookupByLibrary.simpleMessage( + "ಟಿಪ್ಪಣಿಯನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಉಳಿಸಲಾಗಿದೆ"), + "noteUpdatedSuccessfully": MessageLookupByLibrary.simpleMessage( + "ಟಿಪ್ಪಣಿಯನ್ನು ಯಶಸ್ವಿಯಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ"), + "notesSyncSuccessfull": MessageLookupByLibrary.simpleMessage( + "ಟಿಪ್ಪಣಿಗಳ ಸಿಂಕ್ ಯಶಸ್ವಿಯಾಗಿದೆ"), + "pageNotFound": MessageLookupByLibrary.simpleMessage("ಪುಟ ಕಂಡುಬಂದಿಲ್ಲ"), + "passwordResetMailSent": MessageLookupByLibrary.simpleMessage( + "ಪಾಸ್ವರ್ಡ್ ಮರುಹೊಂದಿಸಿ ಮೇಲ್ ಕಳುಹಿಸಲಾಗಿದೆ"), + "passwordResetSuccessful": MessageLookupByLibrary.simpleMessage( + "ಪಾಸ್ವರ್ಡ್ ರೀಸೆಟ್ ಯಶಸ್ವಿಯಾಗಿದೆ"), + "passwordVerified": + MessageLookupByLibrary.simpleMessage("ಪಾಸ್ವರ್ಡ್ ಪರಿಶೀಲಿಸಲಾಗಿದೆ"), + "passwordsDontMatch": MessageLookupByLibrary.simpleMessage( + "ಪಾಸ್ವರ್ಡ್ಗಳು ಹೊಂದಿಕೆಯಾಗುವುದಿಲ್ಲ"), + "pleaseSetupYourAccountToUseThisFeature": + MessageLookupByLibrary.simpleMessage( + "ಈ ವೈಶಿಷ್ಟ್ಯವನ್ನು ಬಳಸಲು ದಯವಿಟ್ಟು ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಹೊಂದಿಸಿ"), + "privacyPolicy": MessageLookupByLibrary.simpleMessage("ಗೌಪ್ಯತಾ ನೀತಿ"), + "resetPassword": + MessageLookupByLibrary.simpleMessage("ಪಾಸ್ವರ್ಡ್ ಮರುಹೊಂದಿಸಿ"), + "sendFeedback": + MessageLookupByLibrary.simpleMessage("ಪ್ರತಿಕ್ರಿಯೆ ಕಳುಹಿಸಿ"), + "settings": MessageLookupByLibrary.simpleMessage("ಸಂಯೋಜನೆಗಳು"), + "setupYourAccount": + MessageLookupByLibrary.simpleMessage("ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಹೊಂದಿಸಿ"), + "shareWithFriends": + MessageLookupByLibrary.simpleMessage("ಸ್ನೇಹಿತರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ"), + "signIn": MessageLookupByLibrary.simpleMessage("ಸೈನ್ ಇನ್ ಮಾಡಿ"), + "signUp": MessageLookupByLibrary.simpleMessage("ಸೈನ್ ಅಪ್ ಮಾಡಿ"), + "signedInAs": + MessageLookupByLibrary.simpleMessage("ನಂತೆ ಸೈನ್ ಇನ್ ಮಾಡಲಾಗಿದೆ"), + "submit": MessageLookupByLibrary.simpleMessage("ಸಲ್ಲಿಸು"), + "syncNow": MessageLookupByLibrary.simpleMessage("ಈಗ ಸಿಂಕ್ ಮಾಡಿ"), + "tapToExpandTitle": MessageLookupByLibrary.simpleMessage( + "ಶೀರ್ಷಿಕೆಯನ್ನು ವಿಸ್ತರಿಸಲು ಇಲ್ಲಿ ಟ್ಯಾಪ್ ಮಾಡಿ"), + "to": MessageLookupByLibrary.simpleMessage("ಗೆ"), + "tooManyWrongAttempts": + MessageLookupByLibrary.simpleMessage("ತುಂಬಾ ತಪ್ಪು ಪ್ರಯತ್ನಗಳು"), + "unexpectedErrorOccured": + MessageLookupByLibrary.simpleMessage("ಅನಿರೀಕ್ಷಿತ ದೋಷ ಸಂಭವಿಸಿದೆ"), + "video": MessageLookupByLibrary.simpleMessage("ವೀಡಿಯೊ"), + "youHaveUnsavedChanges": MessageLookupByLibrary.simpleMessage( + "ನೀವು ಉಳಿಸದ ಬದಲಾವಣೆಗಳನ್ನು ಹೊಂದಿರುವಿರಿ") + }; +} diff --git a/lib/generated/intl/messages_pa.dart b/lib/generated/intl/messages_pa.dart new file mode 100644 index 00000000..bf44ab7d --- /dev/null +++ b/lib/generated/intl/messages_pa.dart @@ -0,0 +1,142 @@ +// DO NOT EDIT. This is code generated via package:intl/generate_localized.dart +// This is a library that provides messages for a pa locale. All the +// messages from the main program should be duplicated here with the same +// function name. + +// Ignore issues from commonly used lints in this file. +// ignore_for_file:unnecessary_brace_in_string_interps, unnecessary_new +// ignore_for_file:prefer_single_quotes,comment_references, directives_ordering +// ignore_for_file:annotate_overrides,prefer_generic_function_type_aliases +// ignore_for_file:unused_import, file_names, avoid_escaping_inner_quotes +// ignore_for_file:unnecessary_string_interpolations, unnecessary_string_escapes + +import 'package:intl/intl.dart'; +import 'package:intl/message_lookup_by_library.dart'; + +final messages = new MessageLookup(); + +typedef String MessageIfAbsent(String messageStr, List args); + +class MessageLookup extends MessageLookupByLibrary { + String get localeName => 'pa'; + + final messages = _notInlinedMessages(_notInlinedMessages); + static Map _notInlinedMessages(_) => { + "accountSetupSuccessful": + MessageLookupByLibrary.simpleMessage("ਖਾਤਾ ਸੈੱਟਅੱਪ ਸਫਲ ਰਿਹਾ"), + "alreadyHaveAnAccount": + MessageLookupByLibrary.simpleMessage("ਕੀ ਪਹਿਲਾਂ ਤੋਂ ਹੀ ਖਾਤਾ ਹੈ?"), + "appDescription": MessageLookupByLibrary.simpleMessage( + "ਡਾਇਰੀਵਾਲਟ - ਇੱਕ ਡਾਇਰੀ ਐਪ ਤੁਹਾਡੇ ਵਿਚਾਰਾਂ, ਯਾਦਾਂ ਅਤੇ ਪਲਾਂ ਨੂੰ ਆਸਾਨੀ ਨਾਲ ਕੈਪਚਰ ਕਰਨ ਵਿੱਚ ਤੁਹਾਡੀ ਮਦਦ ਕਰਨ ਲਈ ਤਿਆਰ ਕੀਤਾ ਗਿਆ ਹੈ। ਹੁਣ ਪਲੇ ਸਟੋਰ \'ਤੇ ਉਪਲਬਧ ਹੈ!"), + "appVersion": MessageLookupByLibrary.simpleMessage("ਐਪਲੀਕੇਸ਼ਨ ਵਰਜਨ"), + "areYouSureAboutLoggingOut": MessageLookupByLibrary.simpleMessage( + "ਕੀ ਤੁਸੀਂ ਯਕੀਨੀ ਤੌਰ \'ਤੇ ਲੌਗ ਆਊਟ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?"), + "autoSync": MessageLookupByLibrary.simpleMessage("ਆਟੋ ਸਿੰਕ"), + "automaticallySyncNotesWithCloud": + MessageLookupByLibrary.simpleMessage("ਕਲਾਉਡ ਨਾਲ ਆਟੋਮੈਟਿਕਲੀ ਸਿੰਕ"), + "availablePlatformsForSync": + MessageLookupByLibrary.simpleMessage("ਸਿੰਕ ਲਈ ਉਪਲਬਧ ਪਲੇਟਫਾਰਮ"), + "byContinuingYouAgree": MessageLookupByLibrary.simpleMessage( + "ਜਾਰੀ ਰੱਖ ਕੇ, ਤੁਸੀਂ ਸਾਡੇ ਨਾਲ ਸਹਿਮਤ ਹੁੰਦੇ ਹੋ "), + "camera": MessageLookupByLibrary.simpleMessage("ਕੈਮਰਾ"), + "cancel": MessageLookupByLibrary.simpleMessage("ਰੱਦ ਕਰੋ"), + "changeEmail": MessageLookupByLibrary.simpleMessage("ਈਮੇਲ ਬਦਲੋ"), + "changePassword": MessageLookupByLibrary.simpleMessage("ਪਾਸਵਰਡ ਬਦਲੋ"), + "chooseTheSyncSource": + MessageLookupByLibrary.simpleMessage("ਸਿੰਕ ਸਰੋਤ ਚੁਣੋ"), + "chooseTheme": MessageLookupByLibrary.simpleMessage("ਥੀਮ ਚੁਣੋ"), + "closeTheApp": + MessageLookupByLibrary.simpleMessage("ਐਪ ਨੂੰ ਬੰਦ ਕਰਨਾ ਹੈ?"), + "confirmNewPassword": + MessageLookupByLibrary.simpleMessage("ਨਵੇਂ ਪਾਸਵਰਡ ਦੀ ਪੁਸ਼ਟੀ ਕਰੋ"), + "continueAsGues": + MessageLookupByLibrary.simpleMessage("ਮਹਿਮਾਨ ਵਜੋਂ ਜਾਰੀ ਰੱਖੋ"), + "dateFilter": MessageLookupByLibrary.simpleMessage("ਮਿਤੀ ਫਿਲਟਰ"), + "delete": MessageLookupByLibrary.simpleMessage("ਮਿਟਾਓ"), + "deletionFailed": + MessageLookupByLibrary.simpleMessage("ਮਿਟਾਉਣਾ ਅਸਫਲ ਰਿਹਾ"), + "done": MessageLookupByLibrary.simpleMessage("ਹੋ ਗਿਆ"), + "dontHaveAccount": + MessageLookupByLibrary.simpleMessage("ਕੀ ਕੋਈ ਖਾਤਾ ਨਹੀਂ ਹੈ?"), + "dropbox": MessageLookupByLibrary.simpleMessage("ਡ੍ਰੌਪਬਾਕਸ"), + "emailUpdatedSuccessfully": MessageLookupByLibrary.simpleMessage( + "ਈਮੇਲ ਸਫਲਤਾਪੂਰਵਕ ਅੱਪਡੇਟ ਕੀਤੀ ਗਈ, ਕਿਰਪਾ ਕਰਕੇ ਦੁਬਾਰਾ ਲੌਗਇਨ ਕਰੋ"), + "enableAutoSave": + MessageLookupByLibrary.simpleMessage("ਆਟੋ ਸੇਵ ਨੂੰ ਸਮਰੱਥ ਬਣਾਓ"), + "enableFingerPrintLogin": MessageLookupByLibrary.simpleMessage( + "ਫਿੰਗਰਪ੍ਰਿੰਟ ਲੌਗਇਨ ਨੂੰ ਸਮਰੱਥ ਬਣਾਓ"), + "enterCurrentPassword": + MessageLookupByLibrary.simpleMessage("ਮੌਜੂਦਾ ਪਾਸਵਰਡ ਦਿਓ"), + "enterNewEmail": + MessageLookupByLibrary.simpleMessage("ਨਵੀਂ ਈਮੇਲ ਦਾਖਲ ਕਰੋ"), + "enterRegisteredEmail": + MessageLookupByLibrary.simpleMessage("ਰਜਿਸਟਰਡ ਈਮੇਲ ਦਰਜ ਕਰੋ"), + "failedToFetchNote": + MessageLookupByLibrary.simpleMessage("ਨੋਟ ਪ੍ਰਾਪਤ ਕਰਨ ਵਿੱਚ ਅਸਫਲ"), + "failedToSaveNote": + MessageLookupByLibrary.simpleMessage("ਨੋਟ ਸੰਭਾਲਣ ਵਿੱਚ ਅਸਫਲ"), + "fingerPrintAthShouldBeEnabledInDeviceSettings": + MessageLookupByLibrary.simpleMessage( + "ਡਿਵਾਈਸ ਸੈਟਿੰਗਾਂ ਵਿੱਚ ਫਿੰਗਰਪ੍ਰਿੰਟ ਪ੍ਰਮਾਣੀਕਰਨ ਨੂੰ ਸਮਰੱਥ ਬਣਾਇਆ ਜਾਣਾ ਚਾਹੀਦਾ ਹੈ"), + "fingerprintLoginFailed": + MessageLookupByLibrary.simpleMessage("ਫਿੰਗਰਪ੍ਰਿੰਟ ਲਾਗਇਨ ਅਸਫਲ ਰਿਹਾ"), + "forgotPassword": + MessageLookupByLibrary.simpleMessage("ਪਾਸਵਰਡ ਭੁੱਲ ਗਏ"), + "from": MessageLookupByLibrary.simpleMessage("ਤੋਂ"), + "gallery": MessageLookupByLibrary.simpleMessage("ਗੈਲਰੀ"), + "googleDrive": MessageLookupByLibrary.simpleMessage("ਗੂਗਲ ਡਰਾਈਵ"), + "incorrectPassword": MessageLookupByLibrary.simpleMessage("ਗਲਤ ਪਾਸਵਰਡ"), + "language": MessageLookupByLibrary.simpleMessage("Panjabi"), + "lastSynced": + MessageLookupByLibrary.simpleMessage("ਆਖਰੀ ਵਾਰ ਸਿੰਕ ਕੀਤਾ ਗਿਆ"), + "link": MessageLookupByLibrary.simpleMessage("ਲਿੰਕ"), + "logIn": MessageLookupByLibrary.simpleMessage("ਲਾਗਿਨ"), + "logOut": MessageLookupByLibrary.simpleMessage("ਬਾਹਰ ਆਉਣਾ"), + "loginToEnableAutoSync": MessageLookupByLibrary.simpleMessage( + "ਆਟੋ ਸਿੰਕ ਨੂੰ ਸਮਰੱਥ ਕਰਨ ਲਈ ਲੌਗਇਨ ਕਰੋ"), + "newPassword": MessageLookupByLibrary.simpleMessage("ਨਵਾਂ ਪਾਸਵਰਡ"), + "notAvailable": MessageLookupByLibrary.simpleMessage("ਉਪਲਭਦ ਨਹੀ"), + "noteSavedSuccessfully": MessageLookupByLibrary.simpleMessage( + "ਨੋਟ-ਕਥਨ ਸਫਲਤਾਪੂਰਵਕ ਸੁਰੱਖਿਅਤ ਕੀਤਾ ਗਿਆ"), + "noteUpdatedSuccessfully": MessageLookupByLibrary.simpleMessage( + "ਨੋਟ ਸਫਲਤਾਪੂਰਵਕ ਅੱਪਡੇਟ ਕੀਤਾ ਗਿਆ"), + "notesSyncSuccessfull": + MessageLookupByLibrary.simpleMessage("ਨੋਟਸ ਸਿੰਕ ਸਫਲ"), + "pageNotFound": MessageLookupByLibrary.simpleMessage("ਪੰਨਾ ਮਿਲਿਆ ਨਹੀਂ"), + "passwordResetMailSent": + MessageLookupByLibrary.simpleMessage("ਪਾਸਵਰਡ ਰੀਸੈਟ ਈਮੇਲ ਭੇਜੀ ਗਈ"), + "passwordResetSuccessful": + MessageLookupByLibrary.simpleMessage("ਪਾਸਵਰਡ ਰੀਸੈਟ ਸਫਲ ਰਿਹਾ"), + "passwordVerified": + MessageLookupByLibrary.simpleMessage("ਪਾਸਵਰਡ ਦੀ ਪੁਸ਼ਟੀ ਕੀਤੀ"), + "passwordsDontMatch": + MessageLookupByLibrary.simpleMessage("ਪਾਸਵਰਡ ਮੇਲ ਨਹੀਂ ਖਾਂਦੇ"), + "pleaseSetupYourAccountToUseThisFeature": + MessageLookupByLibrary.simpleMessage( + "ਕਿਰਪਾ ਕਰਕੇ ਇਸ ਵਿਸ਼ੇਸ਼ਤਾ ਦੀ ਵਰਤੋਂ ਕਰਨ ਲਈ ਆਪਣਾ ਖਾਤਾ ਸੈਟ ਅਪ ਕਰੋ"), + "privacyPolicy": MessageLookupByLibrary.simpleMessage("ਪਰਾਈਵੇਟ ਨੀਤੀ"), + "resetPassword": MessageLookupByLibrary.simpleMessage("ਪਾਸਵਰਡ ਰੀਸੈੱਟ"), + "sendFeedback": MessageLookupByLibrary.simpleMessage("ਫੀਡਬੈਕ ਭੇਜੋ"), + "settings": MessageLookupByLibrary.simpleMessage("ਵਿਵਸਥਾ"), + "setupYourAccount": + MessageLookupByLibrary.simpleMessage("ਆਪਣਾ ਖਾਤਾ ਸੈਟ ਅਪ ਕਰੋ"), + "shareWithFriends": + MessageLookupByLibrary.simpleMessage("ਦੋਸਤਾਂ ਨਾਲ ਸਾਂਝਾ ਕਰੋ"), + "signIn": MessageLookupByLibrary.simpleMessage("ਸਾਈਨ - ਇਨ"), + "signUp": MessageLookupByLibrary.simpleMessage("ਸਾਇਨ ਅਪ"), + "signedInAs": + MessageLookupByLibrary.simpleMessage("ਵਜੋਂ ਸਾਈਨ ਇਨ ਕੀਤਾ ਹੈ"), + "submit": MessageLookupByLibrary.simpleMessage("ਜਮ੍ਹਾਂ ਕਰੋ"), + "syncNow": MessageLookupByLibrary.simpleMessage("ਹੁਣ ਸਿੰਕ ਕਰੋ"), + "tapToExpandTitle": MessageLookupByLibrary.simpleMessage( + "ਸਿਰਲੇਖ ਦਾ ਵਿਸਤਾਰ ਕਰਨ ਲਈ ਇੱਥੇ ਟੈਪ ਕਰੋ"), + "to": MessageLookupByLibrary.simpleMessage("ਨੂੰ"), + "tooManyWrongAttempts": MessageLookupByLibrary.simpleMessage( + "ਬਹੁਤ ਸਾਰੀਆਂ ਗਲਤ ਕੋਸ਼ਿਸ਼ਾਂ, ਕਿਰਪਾ ਕਰਕੇ ਪਾਸਵਰਡ ਨਾਲ ਲੌਗਇਨ ਕਰੋ"), + "unexpectedErrorOccured": + MessageLookupByLibrary.simpleMessage("ਅਚਾਨਕ ਗਲਤੀ ਆਈ ਹੈ"), + "video": MessageLookupByLibrary.simpleMessage("ਵੀਡੀਓ"), + "youHaveUnsavedChanges": + MessageLookupByLibrary.simpleMessage("ਅਣਰੱਖਿਅਤ ਤਬਦੀਲੀਆਂ") + }; +} diff --git a/lib/generated/intl/messages_pt.dart b/lib/generated/intl/messages_pt.dart new file mode 100644 index 00000000..efa83ad6 --- /dev/null +++ b/lib/generated/intl/messages_pt.dart @@ -0,0 +1,146 @@ +// DO NOT EDIT. This is code generated via package:intl/generate_localized.dart +// This is a library that provides messages for a pt locale. All the +// messages from the main program should be duplicated here with the same +// function name. + +// Ignore issues from commonly used lints in this file. +// ignore_for_file:unnecessary_brace_in_string_interps, unnecessary_new +// ignore_for_file:prefer_single_quotes,comment_references, directives_ordering +// ignore_for_file:annotate_overrides,prefer_generic_function_type_aliases +// ignore_for_file:unused_import, file_names, avoid_escaping_inner_quotes +// ignore_for_file:unnecessary_string_interpolations, unnecessary_string_escapes + +import 'package:intl/intl.dart'; +import 'package:intl/message_lookup_by_library.dart'; + +final messages = new MessageLookup(); + +typedef String MessageIfAbsent(String messageStr, List args); + +class MessageLookup extends MessageLookupByLibrary { + String get localeName => 'pt'; + + final messages = _notInlinedMessages(_notInlinedMessages); + static Map _notInlinedMessages(_) => { + "accountSetupSuccessful": MessageLookupByLibrary.simpleMessage( + "Conta configurada com sucesso"), + "alreadyHaveAnAccount": + MessageLookupByLibrary.simpleMessage("Já possui uma conta?"), + "appDescription": MessageLookupByLibrary.simpleMessage( + "Discover diaryVault - um aplicativo de diário feito para te ajudar a salvar seus pensamentos, suas memórias e seus momentos sem maiores esforços. Disponível agora na Play Store!"), + "appVersion": MessageLookupByLibrary.simpleMessage("Versão do app"), + "areYouSureAboutLoggingOut": + MessageLookupByLibrary.simpleMessage("Deseja sair do aplicativo?"), + "autoSync": + MessageLookupByLibrary.simpleMessage("Sincronizar automaticamente"), + "automaticallySyncNotesWithCloud": MessageLookupByLibrary.simpleMessage( + "Sincronizar anotações para a nuvem automaticamente"), + "availablePlatformsForSync": MessageLookupByLibrary.simpleMessage( + "Plataformas disponíveis para sincronização"), + "byContinuingYouAgree": MessageLookupByLibrary.simpleMessage( + "Ao clicar em prosseguir você concorda com nossas "), + "camera": MessageLookupByLibrary.simpleMessage("Câmera"), + "cancel": MessageLookupByLibrary.simpleMessage("Cancelar"), + "changeEmail": MessageLookupByLibrary.simpleMessage("Alterar email"), + "changePassword": MessageLookupByLibrary.simpleMessage("Alterar senha"), + "chooseTheSyncSource": MessageLookupByLibrary.simpleMessage( + "Escolha a fonte de sincronização"), + "chooseTheme": MessageLookupByLibrary.simpleMessage("Escolha um tema"), + "closeTheApp": + MessageLookupByLibrary.simpleMessage("Deseja fechar o app?"), + "confirmNewPassword": + MessageLookupByLibrary.simpleMessage("Confirmar nova senha"), + "continueAsGues": + MessageLookupByLibrary.simpleMessage("Continuar como convidado"), + "dateFilter": MessageLookupByLibrary.simpleMessage("Filtro por data"), + "delete": MessageLookupByLibrary.simpleMessage("Excluir"), + "deletionFailed": + MessageLookupByLibrary.simpleMessage("Falha ao deletar"), + "done": MessageLookupByLibrary.simpleMessage("Pronto"), + "dontHaveAccount": + MessageLookupByLibrary.simpleMessage("Não possui uma conta?"), + "dropbox": MessageLookupByLibrary.simpleMessage("Dropbox"), + "emailUpdatedSuccessfully": MessageLookupByLibrary.simpleMessage( + "Email atualizado com sucesso, faça o login novamente"), + "enableAutoSave": MessageLookupByLibrary.simpleMessage( + "Habilitar salvamento automático"), + "enableFingerPrintLogin": MessageLookupByLibrary.simpleMessage( + "Habilitar login por biometria"), + "enterCurrentPassword": + MessageLookupByLibrary.simpleMessage("Insira a senha atual"), + "enterNewEmail": + MessageLookupByLibrary.simpleMessage("Insira um novo email"), + "enterRegisteredEmail": + MessageLookupByLibrary.simpleMessage("Insira o email cadastrado"), + "failedToFetchNote": + MessageLookupByLibrary.simpleMessage("Falha ao buscar anotação"), + "failedToSaveNote": + MessageLookupByLibrary.simpleMessage("Falha ao salvar anotação"), + "fingerPrintAthShouldBeEnabledInDeviceSettings": + MessageLookupByLibrary.simpleMessage( + "O login por biometria deve ser habilitado nas configurações do dispositivo"), + "fingerprintLoginFailed": MessageLookupByLibrary.simpleMessage( + "Falha no login por biometria"), + "forgotPassword": + MessageLookupByLibrary.simpleMessage("Esqueci minha senha"), + "from": MessageLookupByLibrary.simpleMessage("De"), + "gallery": MessageLookupByLibrary.simpleMessage("Galeria"), + "googleDrive": MessageLookupByLibrary.simpleMessage("Google Drive"), + "incorrectPassword": + MessageLookupByLibrary.simpleMessage("Senha incorreta"), + "language": MessageLookupByLibrary.simpleMessage("Português - Brasil"), + "lastSynced": + MessageLookupByLibrary.simpleMessage("Última sincronização: "), + "link": MessageLookupByLibrary.simpleMessage("Link"), + "logIn": MessageLookupByLibrary.simpleMessage("Login"), + "logOut": MessageLookupByLibrary.simpleMessage("Sair"), + "loginToEnableAutoSync": MessageLookupByLibrary.simpleMessage( + "Faça o login para habilitar a sincronização automática"), + "newPassword": MessageLookupByLibrary.simpleMessage("Nova senha"), + "notAvailable": MessageLookupByLibrary.simpleMessage("Indisponível"), + "noteSavedSuccessfully": + MessageLookupByLibrary.simpleMessage("Anotação salva com sucesso"), + "noteUpdatedSuccessfully": MessageLookupByLibrary.simpleMessage( + "Anotação atualizada com sucesso"), + "notesSyncSuccessfull": MessageLookupByLibrary.simpleMessage( + "Anotações sincronizadas com sucesso"), + "pageNotFound": + MessageLookupByLibrary.simpleMessage("Página não encontrada"), + "passwordResetMailSent": MessageLookupByLibrary.simpleMessage( + "Email para recuperação de senha enviado"), + "passwordResetSuccessful": + MessageLookupByLibrary.simpleMessage("Senha alterada com sucesso"), + "passwordVerified": + MessageLookupByLibrary.simpleMessage("Senha verificada"), + "passwordsDontMatch": + MessageLookupByLibrary.simpleMessage("As senhas não são iguais"), + "pleaseSetupYourAccountToUseThisFeature": + MessageLookupByLibrary.simpleMessage( + "Por favor, configure sua conta para usar essa funcionalidade"), + "privacyPolicy": + MessageLookupByLibrary.simpleMessage("Políticas de privacidade"), + "resetPassword": MessageLookupByLibrary.simpleMessage("Resetar senhar"), + "sendFeedback": + MessageLookupByLibrary.simpleMessage("Mande um feedback"), + "settings": MessageLookupByLibrary.simpleMessage("COnfigurações"), + "setupYourAccount": + MessageLookupByLibrary.simpleMessage("Configure sua conta"), + "shareWithFriends": + MessageLookupByLibrary.simpleMessage("Compartilhar com os amigos"), + "signIn": MessageLookupByLibrary.simpleMessage("Entrar"), + "signUp": MessageLookupByLibrary.simpleMessage("Cadastre-se"), + "signedInAs": MessageLookupByLibrary.simpleMessage("Logado como"), + "submit": MessageLookupByLibrary.simpleMessage("Enviar"), + "syncNow": MessageLookupByLibrary.simpleMessage("Sincronizar"), + "tapToExpandTitle": MessageLookupByLibrary.simpleMessage( + "Clique aqui para expandir o título"), + "to": MessageLookupByLibrary.simpleMessage("Para"), + "tooManyWrongAttempts": MessageLookupByLibrary.simpleMessage( + "Muitas tentativas incorretas, tente o login utilizando a senha"), + "unexpectedErrorOccured": + MessageLookupByLibrary.simpleMessage("Ocorreu um erro inesperado"), + "video": MessageLookupByLibrary.simpleMessage("Vídeo"), + "youHaveUnsavedChanges": MessageLookupByLibrary.simpleMessage( + "Você possui alterações não salvas") + }; +} diff --git a/lib/generated/intl/messages_sw.dart b/lib/generated/intl/messages_sw.dart new file mode 100644 index 00000000..bb44b4b3 --- /dev/null +++ b/lib/generated/intl/messages_sw.dart @@ -0,0 +1,147 @@ +// DO NOT EDIT. This is code generated via package:intl/generate_localized.dart +// This is a library that provides messages for a sw locale. All the +// messages from the main program should be duplicated here with the same +// function name. + +// Ignore issues from commonly used lints in this file. +// ignore_for_file:unnecessary_brace_in_string_interps, unnecessary_new +// ignore_for_file:prefer_single_quotes,comment_references, directives_ordering +// ignore_for_file:annotate_overrides,prefer_generic_function_type_aliases +// ignore_for_file:unused_import, file_names, avoid_escaping_inner_quotes +// ignore_for_file:unnecessary_string_interpolations, unnecessary_string_escapes + +import 'package:intl/intl.dart'; +import 'package:intl/message_lookup_by_library.dart'; + +final messages = new MessageLookup(); + +typedef String MessageIfAbsent(String messageStr, List args); + +class MessageLookup extends MessageLookupByLibrary { + String get localeName => 'sw'; + + final messages = _notInlinedMessages(_notInlinedMessages); + static Map _notInlinedMessages(_) => { + "accountSetupSuccessful": MessageLookupByLibrary.simpleMessage( + "Kuanzisha akaunti kumefanikiwa"), + "alreadyHaveAnAccount": + MessageLookupByLibrary.simpleMessage("Tayari una akaunti?"), + "appDescription": MessageLookupByLibrary.simpleMessage( + "Gundua diaryVault - programu ya kumbukumbu iliyoundwa kukusaidia kukamata mawazo, kumbukumbu, na nyakati yako kwa urahisi. Sasa inapatikana kwenye Duka la Kucheza!"), + "appVersion": MessageLookupByLibrary.simpleMessage("Toleo la Programu"), + "areYouSureAboutLoggingOut": + MessageLookupByLibrary.simpleMessage("Una uhakika wa kutoka?"), + "autoSync": + MessageLookupByLibrary.simpleMessage("Sawazisha moja kwa moja"), + "automaticallySyncNotesWithCloud": MessageLookupByLibrary.simpleMessage( + "Kusawazisha kumbukumbu kiotomatiki na wingu"), + "availablePlatformsForSync": MessageLookupByLibrary.simpleMessage( + "Jukwaa zinazopatikana kwa kusawazisha"), + "byContinuingYouAgree": MessageLookupByLibrary.simpleMessage( + "Kwa kuendelea, unakubaliana na"), + "camera": MessageLookupByLibrary.simpleMessage("Kamera"), + "cancel": MessageLookupByLibrary.simpleMessage("Ghairi"), + "changeEmail": + MessageLookupByLibrary.simpleMessage("Badilisha Barua pepe"), + "changePassword": + MessageLookupByLibrary.simpleMessage("Badilisha Nenosiri"), + "chooseTheSyncSource": MessageLookupByLibrary.simpleMessage( + "Chagua Chanzo cha Kusawazisha"), + "chooseTheme": MessageLookupByLibrary.simpleMessage("Chagua Maudhui"), + "closeTheApp": MessageLookupByLibrary.simpleMessage("Funga Programu?"), + "confirmNewPassword": + MessageLookupByLibrary.simpleMessage("Thibitisha Nenosiri Jipya"), + "continueAsGues": + MessageLookupByLibrary.simpleMessage("Endelea kama mgeni"), + "dateFilter": MessageLookupByLibrary.simpleMessage("Chuja tarehe"), + "delete": MessageLookupByLibrary.simpleMessage("Futa"), + "deletionFailed": + MessageLookupByLibrary.simpleMessage("Kufuta kushindikana"), + "done": MessageLookupByLibrary.simpleMessage("Imekamilika"), + "dontHaveAccount": + MessageLookupByLibrary.simpleMessage("Huna akaunti?"), + "dropbox": MessageLookupByLibrary.simpleMessage("Dropbox"), + "emailUpdatedSuccessfully": MessageLookupByLibrary.simpleMessage( + "Barua pepe imeboreshwa kwa mafanikio, tafadhali ingia tena"), + "enableAutoSave": MessageLookupByLibrary.simpleMessage( + "Wezesha kuhifadhi kiotomatiki"), + "enableFingerPrintLogin": MessageLookupByLibrary.simpleMessage( + "Wezesha kuingia kwa alama za vidole"), + "enterCurrentPassword": + MessageLookupByLibrary.simpleMessage("Ingiza nenosiri la sasa"), + "enterNewEmail": + MessageLookupByLibrary.simpleMessage("Ingiza barua pepe mpya"), + "enterRegisteredEmail": MessageLookupByLibrary.simpleMessage( + "Ingiza Barua pepe iliyosajiliwa"), + "failedToFetchNote": + MessageLookupByLibrary.simpleMessage("Kushindwa kupata kumbukumbu"), + "failedToSaveNote": MessageLookupByLibrary.simpleMessage( + "Kushindwa kuhifadhi kumbukumbu"), + "fingerPrintAthShouldBeEnabledInDeviceSettings": + MessageLookupByLibrary.simpleMessage( + "Uthibitisho wa alama za vidole unapaswa kuwezeshwa katika mipangilio ya kifaa"), + "fingerprintLoginFailed": MessageLookupByLibrary.simpleMessage( + "Kuingia kwa alama za vidole kushindikana"), + "forgotPassword": + MessageLookupByLibrary.simpleMessage("Umesahau Nenosiri"), + "from": MessageLookupByLibrary.simpleMessage("Kutoka"), + "gallery": MessageLookupByLibrary.simpleMessage("Galeria"), + "googleDrive": MessageLookupByLibrary.simpleMessage("Google Drive"), + "incorrectPassword": + MessageLookupByLibrary.simpleMessage("Nenosiri sio sahihi"), + "language": MessageLookupByLibrary.simpleMessage("Swahili"), + "lastSynced": + MessageLookupByLibrary.simpleMessage("Iliyosawazishwa mwisho: "), + "link": MessageLookupByLibrary.simpleMessage("Kiungo"), + "logIn": MessageLookupByLibrary.simpleMessage("Ingia"), + "logOut": MessageLookupByLibrary.simpleMessage("Toka"), + "loginToEnableAutoSync": MessageLookupByLibrary.simpleMessage( + "Tafadhali ingia kuanzisha kusawazisha moja kwa moja"), + "newPassword": MessageLookupByLibrary.simpleMessage("Nenosiri Jipya"), + "notAvailable": MessageLookupByLibrary.simpleMessage("Haipatikani"), + "noteSavedSuccessfully": MessageLookupByLibrary.simpleMessage( + "Kumbukumbu imehifadhiwa kwa mafanikio"), + "noteUpdatedSuccessfully": MessageLookupByLibrary.simpleMessage( + "Kumbukumbu imeboreshwa kwa mafanikio"), + "notesSyncSuccessfull": MessageLookupByLibrary.simpleMessage( + "Usawazishaji wa kumbukumbu kwa mafanikio"), + "pageNotFound": + MessageLookupByLibrary.simpleMessage("Ukurasa haujapatikana"), + "passwordResetMailSent": MessageLookupByLibrary.simpleMessage( + "Barua pepe ya kuweka upya nenosiri imepelekwa"), + "passwordResetSuccessful": MessageLookupByLibrary.simpleMessage( + "Kuweka upya nenosiri kumefanikiwa"), + "passwordVerified": + MessageLookupByLibrary.simpleMessage("Nenosiri limethibitishwa"), + "passwordsDontMatch": + MessageLookupByLibrary.simpleMessage("Nenosiri hazilingani"), + "pleaseSetupYourAccountToUseThisFeature": + MessageLookupByLibrary.simpleMessage( + "Tafadhali weka akaunti yako kutumia kipengee hiki"), + "privacyPolicy": + MessageLookupByLibrary.simpleMessage("Sera ya Faragha"), + "resetPassword": + MessageLookupByLibrary.simpleMessage("Weka upya nenosiri"), + "sendFeedback": MessageLookupByLibrary.simpleMessage("Tuma maoni"), + "settings": MessageLookupByLibrary.simpleMessage("Mipangilio"), + "setupYourAccount": + MessageLookupByLibrary.simpleMessage("Sanidi Akaunti yako"), + "shareWithFriends": + MessageLookupByLibrary.simpleMessage("Shiriki na Marafiki"), + "signIn": MessageLookupByLibrary.simpleMessage("Ingia"), + "signUp": MessageLookupByLibrary.simpleMessage("Jisajili"), + "signedInAs": MessageLookupByLibrary.simpleMessage("Kusainiwa kama"), + "submit": MessageLookupByLibrary.simpleMessage("Tuma"), + "syncNow": MessageLookupByLibrary.simpleMessage("Sawazisha sasa"), + "tapToExpandTitle": + MessageLookupByLibrary.simpleMessage("Gusa hapa kufungua kichwa"), + "to": MessageLookupByLibrary.simpleMessage("Hadi"), + "tooManyWrongAttempts": MessageLookupByLibrary.simpleMessage( + "Jaribio nyingi za makosa, tafadhali ingia kwa nenosiri"), + "unexpectedErrorOccured": MessageLookupByLibrary.simpleMessage( + "Hitilafu isiyotarajiwa ilitokea"), + "video": MessageLookupByLibrary.simpleMessage("Video"), + "youHaveUnsavedChanges": MessageLookupByLibrary.simpleMessage( + "Una mabadiliko ambayo hayajahifadhiwa") + }; +} diff --git a/lib/generated/l10n.dart b/lib/generated/l10n.dart new file mode 100644 index 00000000..51af46c7 --- /dev/null +++ b/lib/generated/l10n.dart @@ -0,0 +1,907 @@ +// GENERATED CODE - DO NOT MODIFY BY HAND +import 'package:flutter/material.dart'; +import 'package:intl/intl.dart'; +import 'intl/messages_all.dart'; + +// ************************************************************************** +// Generator: Flutter Intl IDE plugin +// Made by Localizely +// ************************************************************************** + +// ignore_for_file: non_constant_identifier_names, lines_longer_than_80_chars +// ignore_for_file: join_return_with_assignment, prefer_final_in_for_each +// ignore_for_file: avoid_redundant_argument_values, avoid_escaping_inner_quotes + +class S { + S(); + + static S? _current; + + static S get current { + assert(_current != null, + 'No instance of S was loaded. Try to initialize the S delegate before accessing S.current.'); + return _current!; + } + + static const AppLocalizationDelegate delegate = AppLocalizationDelegate(); + + static Future load(Locale locale) { + final name = (locale.countryCode?.isEmpty ?? false) + ? locale.languageCode + : locale.toString(); + final localeName = Intl.canonicalizedLocale(name); + return initializeMessages(localeName).then((_) { + Intl.defaultLocale = localeName; + final instance = S(); + S._current = instance; + + return instance; + }); + } + + static S of(BuildContext context) { + final instance = S.maybeOf(context); + assert(instance != null, + 'No instance of S present in the widget tree. Did you add S.delegate in localizationsDelegates?'); + return instance!; + } + + static S? maybeOf(BuildContext context) { + return Localizations.of(context, S); + } + + /// `English` + String get language { + return Intl.message( + 'English', + name: 'language', + desc: 'The current Language', + args: [], + ); + } + + /// `Page not found` + String get pageNotFound { + return Intl.message( + 'Page not found', + name: 'pageNotFound', + desc: '', + args: [], + ); + } + + /// `Settings` + String get settings { + return Intl.message( + 'Settings', + name: 'settings', + desc: '', + args: [], + ); + } + + /// `Enter new email` + String get enterNewEmail { + return Intl.message( + 'Enter new email', + name: 'enterNewEmail', + desc: '', + args: [], + ); + } + + /// `Enter Registered Email` + String get enterRegisteredEmail { + return Intl.message( + 'Enter Registered Email', + name: 'enterRegisteredEmail', + desc: '', + args: [], + ); + } + + /// `Enter current password` + String get enterCurrentPassword { + return Intl.message( + 'Enter current password', + name: 'enterCurrentPassword', + desc: '', + args: [], + ); + } + + /// `Reset password` + String get resetPassword { + return Intl.message( + 'Reset password', + name: 'resetPassword', + desc: '', + args: [], + ); + } + + /// `Auto sync` + String get autoSync { + return Intl.message( + 'Auto sync', + name: 'autoSync', + desc: '', + args: [], + ); + } + + /// `Already have an account?` + String get alreadyHaveAnAccount { + return Intl.message( + 'Already have an account?', + name: 'alreadyHaveAnAccount', + desc: '', + args: [], + ); + } + + /// `Sync now` + String get syncNow { + return Intl.message( + 'Sync now', + name: 'syncNow', + desc: '', + args: [], + ); + } + + /// `Available platforms for sync` + String get availablePlatformsForSync { + return Intl.message( + 'Available platforms for sync', + name: 'availablePlatformsForSync', + desc: '', + args: [], + ); + } + + /// `Automatically sync notes with cloud` + String get automaticallySyncNotesWithCloud { + return Intl.message( + 'Automatically sync notes with cloud', + name: 'automaticallySyncNotesWithCloud', + desc: '', + args: [], + ); + } + + /// `Deletion failed` + String get deletionFailed { + return Intl.message( + 'Deletion failed', + name: 'deletionFailed', + desc: '', + args: [], + ); + } + + /// `Enable fingerprint login` + String get enableFingerPrintLogin { + return Intl.message( + 'Enable fingerprint login', + name: 'enableFingerPrintLogin', + desc: '', + args: [], + ); + } + + /// `Fingerprint auth should be enabled in device settings` + String get fingerPrintAthShouldBeEnabledInDeviceSettings { + return Intl.message( + 'Fingerprint auth should be enabled in device settings', + name: 'fingerPrintAthShouldBeEnabledInDeviceSettings', + desc: '', + args: [], + ); + } + + /// `Fingerprint login failed` + String get fingerprintLoginFailed { + return Intl.message( + 'Fingerprint login failed', + name: 'fingerprintLoginFailed', + desc: '', + args: [], + ); + } + + /// `Too many wrong attempts, please login with password` + String get tooManyWrongAttempts { + return Intl.message( + 'Too many wrong attempts, please login with password', + name: 'tooManyWrongAttempts', + desc: '', + args: [], + ); + } + + /// `Email updated successfully, please login again` + String get emailUpdatedSuccessfully { + return Intl.message( + 'Email updated successfully, please login again', + name: 'emailUpdatedSuccessfully', + desc: '', + args: [], + ); + } + + /// `Password reset email sent` + String get passwordResetMailSent { + return Intl.message( + 'Password reset email sent', + name: 'passwordResetMailSent', + desc: '', + args: [], + ); + } + + /// `Incorrect password` + String get incorrectPassword { + return Intl.message( + 'Incorrect password', + name: 'incorrectPassword', + desc: '', + args: [], + ); + } + + /// `Password verified` + String get passwordVerified { + return Intl.message( + 'Password verified', + name: 'passwordVerified', + desc: '', + args: [], + ); + } + + /// `Passwords don't match` + String get passwordsDontMatch { + return Intl.message( + 'Passwords don\'t match', + name: 'passwordsDontMatch', + desc: '', + args: [], + ); + } + + /// `Password reset successful` + String get passwordResetSuccessful { + return Intl.message( + 'Password reset successful', + name: 'passwordResetSuccessful', + desc: '', + args: [], + ); + } + + /// `Unexpected error occured` + String get unexpectedErrorOccured { + return Intl.message( + 'Unexpected error occured', + name: 'unexpectedErrorOccured', + desc: '', + args: [], + ); + } + + /// `Please setup your account to use this feature` + String get pleaseSetupYourAccountToUseThisFeature { + return Intl.message( + 'Please setup your account to use this feature', + name: 'pleaseSetupYourAccountToUseThisFeature', + desc: '', + args: [], + ); + } + + /// `Account setup successful` + String get accountSetupSuccessful { + return Intl.message( + 'Account setup successful', + name: 'accountSetupSuccessful', + desc: '', + args: [], + ); + } + + /// `Failed to fetch note` + String get failedToFetchNote { + return Intl.message( + 'Failed to fetch note', + name: 'failedToFetchNote', + desc: '', + args: [], + ); + } + + /// `Failed to save note` + String get failedToSaveNote { + return Intl.message( + 'Failed to save note', + name: 'failedToSaveNote', + desc: '', + args: [], + ); + } + + /// `Note saved successfully` + String get noteSavedSuccessfully { + return Intl.message( + 'Note saved successfully', + name: 'noteSavedSuccessfully', + desc: '', + args: [], + ); + } + + /// `Note updated successfully` + String get noteUpdatedSuccessfully { + return Intl.message( + 'Note updated successfully', + name: 'noteUpdatedSuccessfully', + desc: '', + args: [], + ); + } + + /// `Notes sync successful` + String get notesSyncSuccessfull { + return Intl.message( + 'Notes sync successful', + name: 'notesSyncSuccessfull', + desc: '', + args: [], + ); + } + + /// `Please login to enable auto-sync` + String get loginToEnableAutoSync { + return Intl.message( + 'Please login to enable auto-sync', + name: 'loginToEnableAutoSync', + desc: '', + args: [], + ); + } + + /// `Enable auto save` + String get enableAutoSave { + return Intl.message( + 'Enable auto save', + name: 'enableAutoSave', + desc: '', + args: [], + ); + } + + /// `Date Filter` + String get dateFilter { + return Intl.message( + 'Date Filter', + name: 'dateFilter', + desc: '', + args: [], + ); + } + + /// `From` + String get from { + return Intl.message( + 'From', + name: 'from', + desc: '', + args: [], + ); + } + + /// `To` + String get to { + return Intl.message( + 'To', + name: 'to', + desc: '', + args: [], + ); + } + + /// `Are you sure about logging out?` + String get areYouSureAboutLoggingOut { + return Intl.message( + 'Are you sure about logging out?', + name: 'areYouSureAboutLoggingOut', + desc: '', + args: [], + ); + } + + /// `Send feedback` + String get sendFeedback { + return Intl.message( + 'Send feedback', + name: 'sendFeedback', + desc: '', + args: [], + ); + } + + /// `Share with Friends` + String get shareWithFriends { + return Intl.message( + 'Share with Friends', + name: 'shareWithFriends', + desc: '', + args: [], + ); + } + + /// `Choose Theme` + String get chooseTheme { + return Intl.message( + 'Choose Theme', + name: 'chooseTheme', + desc: '', + args: [], + ); + } + + /// `App version` + String get appVersion { + return Intl.message( + 'App version', + name: 'appVersion', + desc: '', + args: [], + ); + } + + /// `Continue as guest` + String get continueAsGues { + return Intl.message( + 'Continue as guest', + name: 'continueAsGues', + desc: '', + args: [], + ); + } + + /// `By continuing, you agree to our` + String get byContinuingYouAgree { + return Intl.message( + 'By continuing, you agree to our', + name: 'byContinuingYouAgree', + desc: '', + args: [], + ); + } + + /// `Privacy Policy` + String get privacyPolicy { + return Intl.message( + 'Privacy Policy', + name: 'privacyPolicy', + desc: '', + args: [], + ); + } + + /// `Close the App?` + String get closeTheApp { + return Intl.message( + 'Close the App?', + name: 'closeTheApp', + desc: '', + args: [], + ); + } + + /// `Change password` + String get changePassword { + return Intl.message( + 'Change password', + name: 'changePassword', + desc: '', + args: [], + ); + } + + /// `Change Email` + String get changeEmail { + return Intl.message( + 'Change Email', + name: 'changeEmail', + desc: '', + args: [], + ); + } + + /// `Setup your Account` + String get setupYourAccount { + return Intl.message( + 'Setup your Account', + name: 'setupYourAccount', + desc: '', + args: [], + ); + } + + /// `Log In` + String get logIn { + return Intl.message( + 'Log In', + name: 'logIn', + desc: '', + args: [], + ); + } + + /// `Log out` + String get logOut { + return Intl.message( + 'Log out', + name: 'logOut', + desc: '', + args: [], + ); + } + + /// `Sign In` + String get signIn { + return Intl.message( + 'Sign In', + name: 'signIn', + desc: '', + args: [], + ); + } + + /// `Forgot password` + String get forgotPassword { + return Intl.message( + 'Forgot password', + name: 'forgotPassword', + desc: '', + args: [], + ); + } + + /// `New Password` + String get newPassword { + return Intl.message( + 'New Password', + name: 'newPassword', + desc: '', + args: [], + ); + } + + /// `Confirm new password` + String get confirmNewPassword { + return Intl.message( + 'Confirm new password', + name: 'confirmNewPassword', + desc: '', + args: [], + ); + } + + /// `Don't have an account?` + String get dontHaveAccount { + return Intl.message( + 'Don\'t have an account?', + name: 'dontHaveAccount', + desc: '', + args: [], + ); + } + + /// `Sign Up` + String get signUp { + return Intl.message( + 'Sign Up', + name: 'signUp', + desc: '', + args: [], + ); + } + + /// `Tap here to expand title` + String get tapToExpandTitle { + return Intl.message( + 'Tap here to expand title', + name: 'tapToExpandTitle', + desc: '', + args: [], + ); + } + + /// `Gallery` + String get gallery { + return Intl.message( + 'Gallery', + name: 'gallery', + desc: '', + args: [], + ); + } + + /// `Link` + String get link { + return Intl.message( + 'Link', + name: 'link', + desc: '', + args: [], + ); + } + + /// `Camera` + String get camera { + return Intl.message( + 'Camera', + name: 'camera', + desc: '', + args: [], + ); + } + + /// `Video` + String get video { + return Intl.message( + 'Video', + name: 'video', + desc: '', + args: [], + ); + } + + /// `You have unsaved changes` + String get youHaveUnsavedChanges { + return Intl.message( + 'You have unsaved changes', + name: 'youHaveUnsavedChanges', + desc: '', + args: [], + ); + } + + /// `Dropbox` + String get dropbox { + return Intl.message( + 'Dropbox', + name: 'dropbox', + desc: '', + args: [], + ); + } + + /// `Signed in as` + String get signedInAs { + return Intl.message( + 'Signed in as', + name: 'signedInAs', + desc: '', + args: [], + ); + } + + /// `Last synced: ` + String get lastSynced { + return Intl.message( + 'Last synced: ', + name: 'lastSynced', + desc: '', + args: [], + ); + } + + /// `Not available` + String get notAvailable { + return Intl.message( + 'Not available', + name: 'notAvailable', + desc: '', + args: [], + ); + } + + /// `Google Drive` + String get googleDrive { + return Intl.message( + 'Google Drive', + name: 'googleDrive', + desc: '', + args: [], + ); + } + + /// `Choose the Sync Source` + String get chooseTheSyncSource { + return Intl.message( + 'Choose the Sync Source', + name: 'chooseTheSyncSource', + desc: '', + args: [], + ); + } + + /// `Done` + String get done { + return Intl.message( + 'Done', + name: 'done', + desc: '', + args: [], + ); + } + + /// `Delete` + String get delete { + return Intl.message( + 'Delete', + name: 'delete', + desc: '', + args: [], + ); + } + + /// `Cancel` + String get cancel { + return Intl.message( + 'Cancel', + name: 'cancel', + desc: '', + args: [], + ); + } + + /// `Submit` + String get submit { + return Intl.message( + 'Submit', + name: 'submit', + desc: '', + args: [], + ); + } + + /// `Discover diaryVault - a diary app designed to help you capture your thoughts, memories, and moments effortlessly. Available now on the Play Store!` + String get appDescription { + return Intl.message( + 'Discover diaryVault - a diary app designed to help you capture your thoughts, memories, and moments effortlessly. Available now on the Play Store!', + name: 'appDescription', + desc: '', + args: [], + ); + } + + /// `Notifications are not enabled` + String get notificationsNotEnabled { + return Intl.message( + 'Notifications are not enabled', + name: 'notificationsNotEnabled', + desc: '', + args: [], + ); + } + + /// `You haven't selected a notification time` + String get notificationTimeNotEnabled { + return Intl.message( + 'You haven\'t selected a notification time', + name: 'notificationTimeNotEnabled', + desc: '', + args: [], + ); + } + + /// `You will be notified at {time}` + String youWillBeNotifiedAt(String time) { + return Intl.message( + 'You will be notified at $time', + name: 'youWillBeNotifiedAt', + desc: '', + args: [time], + ); + } + + /// `Enable Daily Reminders` + String get enableDailyReminders { + return Intl.message( + 'Enable Daily Reminders', + name: 'enableDailyReminders', + desc: '', + args: [], + ); + } + + /// `Daily Reminders` + String get dailyReminders { + return Intl.message( + 'Daily Reminders', + name: 'dailyReminders', + desc: '', + args: [], + ); + } + + /// `Get daily reminders at your chosen time to keep your journal up to date.` + String get getDailyReminders { + return Intl.message( + 'Get daily reminders at your chosen time to keep your journal up to date.', + name: 'getDailyReminders', + desc: '', + args: [], + ); + } + + /// `Choose Time` + String get chooseTime { + return Intl.message( + 'Choose Time', + name: 'chooseTime', + desc: '', + args: [], + ); + } + + /// `Time to Journal!` + String get notificationTitle1 { + return Intl.message( + 'Time to Journal!', + name: 'notificationTitle1', + desc: '', + args: [], + ); + } + + /// `Take a few minutes to reflect on your day in your diary` + String get notificationDescription1 { + return Intl.message( + 'Take a few minutes to reflect on your day in your diary', + name: 'notificationDescription1', + desc: '', + args: [], + ); + } +} + +class AppLocalizationDelegate extends LocalizationsDelegate { + const AppLocalizationDelegate(); + + List get supportedLocales { + return const [ + Locale.fromSubtags(languageCode: 'en'), + Locale.fromSubtags(languageCode: 'ar'), + Locale.fromSubtags(languageCode: 'de'), + Locale.fromSubtags(languageCode: 'fi'), + Locale.fromSubtags(languageCode: 'he'), + Locale.fromSubtags(languageCode: 'hi'), + Locale.fromSubtags(languageCode: 'kn'), + Locale.fromSubtags(languageCode: 'pa'), + Locale.fromSubtags(languageCode: 'pt'), + Locale.fromSubtags(languageCode: 'sw'), + ]; + } + + @override + bool isSupported(Locale locale) => _isSupported(locale); + @override + Future load(Locale locale) => S.load(locale); + @override + bool shouldReload(AppLocalizationDelegate old) => false; + + bool _isSupported(Locale locale) { + for (var supportedLocale in supportedLocales) { + if (supportedLocale.languageCode == locale.languageCode) { + return true; + } + } + return false; + } +} diff --git a/lib/l10n/arb/app_fi.arb b/lib/l10n/app_fi.arb similarity index 100% rename from lib/l10n/arb/app_fi.arb rename to lib/l10n/app_fi.arb diff --git a/lib/l10n/arb/app_de.arb b/lib/l10n/arb/app_de.arb deleted file mode 100644 index 49f3e29a..00000000 --- a/lib/l10n/arb/app_de.arb +++ /dev/null @@ -1,81 +0,0 @@ -{ - "language":"German", - "@language":{ - "description":"die aktuelle Sprache" - }, - - - "pageNotFound":"Seite nicht gefunden", - "settings":"Einstellungen", - "enterNewEmail":"Geben Sie eine neue E-Mail-Adresse ein", - "enterRegisteredEmail":"Geben Sie die registrierte E-Mail-Adresse ein", - "enterCurrentPassword":"Aktuelles Passwort eingeben", - "resetPassword":"Passwort zurücksetzen", - "autoSync":"Automatische Synchronisation", - "alreadyHaveAnAccount":"Sie haben bereits ein Konto?", - "syncNow":"Jetzt synchronisieren", - "availablePlatformsForSync":"Verfügbare Plattformen für die Synchronisierung", - "automaticallySyncNotesWithCloud":"Notizen automatisch mit der Cloud synchronisieren", - "deletionFailed":"Das Löschen ist fehlgeschlagen", - "enableFingerPrintLogin":"Aktivieren Sie die Anmeldung per Fingerabdruck", - "fingerPrintAthShouldBeEnabledInDeviceSettings":"Die Fingerabdruck authentifizierung sollte in den Geräteeinstellungen aktiviert sein", - "fingerprintLoginFailed":"Die Anmeldung per Fingerabdruck ist fehlgeschlagen", - "tooManyWrongAttempts":"Zu viele Fehlversuche, bitte melden Sie sich mit Passwort an", - "emailUpdatedSuccessfully":"E-Mail erfolgreich aktualisiert, bitte melden Sie sich erneut an", - "passwordResetMailSent":"E-Mail zum Zurücksetzen des Passworts gesendet", - "incorrectPassword":"Falsches Passwort", - "passwordVerified":"Passwort überprüft", - "passwordsDontMatch":"Passwörter stimmen nicht überein", - "passwordResetSuccessful":"Passwort-Reset erfolgreich", - "unexpectedErrorOccured":"Es ist ein unerwarteter Fehler aufgetreten", - "pleaseSetupYourAccountToUseThisFeature":"Bitte richten Sie Ihr Konto ein, um diese Funktion nutzen zu können", - "accountSetupSuccessful":"Kontoeinrichtung erfolgreich", - "failedToFetchNote":"Notiz konnte nicht abgerufen werden", - "failedToSaveNote":"Notiz konnte nicht gespeichert werden", - "noteSavedSuccessfully":"Notiz erfolgreich gespeichert", - "noteUpdatedSuccessfully":"Hinweis erfolgreich aktualisiert", - "notesSyncSuccessfull":"Synchronisierung der Notizen erfolgreich", - "loginToEnableAutoSync":"Bitte melden Sie sich an, um die automatische Synchronisierung zu aktivieren", - "enableAutoSave":"Aktivieren Sie die automatische Speicherung", - "dateFilter":"Datumsfilter", - "from":"Aus", - "to":"Zu", - "areYouSureAboutLoggingOut":"Sind Sie sicher, dass Sie sich abmelden möchten?", - "sendFeedback":"Feedback abschicken", - "shareWithFriends":"Mit Freunden teilen", - "chooseTheme":"Thema wählen", - "appVersion":"App Version", - "continueAsGues":"Als Gast fortfahren", - "byContinuingYouAgree":"Indem Sie fortfahren, stimmen Sie unseren zu", - "privacyPolicy":"Datenschutzrichtlinie", - "closeTheApp":"App schließen?", - "changePassword":"Kennwort ändern", - "changeEmail":"Ändern Sie die E-Mail", - "setupYourAccount":"Richten Sie Ihr Konto ein", - "logIn":"Anmeldung", - "logOut":"Ausloggen", - "signIn":"Anmelden", - "forgotPassword":"Passwort vergessen", - "newPassword":"Neues Kennwort", - "confirmNewPassword":"Bestätige neues PasswortBestätige neues Passwort", - "dontHaveAccount":"Sie haben noch kein Konto?", - "signUp":"Melden Sie sich an", - "tapToExpandTitle":"Hier tippen, um den Titel zu erweitern. Hier tippen, um den Titel zu erweitern", - "gallery":"Galerie", - "link":"Verknüpfung", - "camera":"Kamera", - "video":"Video", - "youHaveUnsavedChanges":"Du hast nicht gespeicherte Änderungen", - "dropbox":"Dropbox", - "signedInAs":"Eingeloggt als", - "lastSynced":"Zuletzt synchronisiert: ", - "notAvailable":"Nicht verfügbar", - "googleDrive":"Google Drive", - "chooseTheSyncSource":"Wählen Sie die Synchronisierungsquelle", - "done":"Erledigt", - "delete":"Löschen", - "cancel":"Stornieren", - "submit":"Einreichen", - "appDescription":"Entdecken Sie diaryVault – eine Tagebuch-App, mit der Sie Ihre Gedanken, Erinnerungen und Momente mühelos festhalten können. Jetzt im Play Store erhältlich!" - -} diff --git a/lib/l10n/arb/app_en.arb b/lib/l10n/arb/app_en.arb deleted file mode 100644 index d0c7531f..00000000 --- a/lib/l10n/arb/app_en.arb +++ /dev/null @@ -1,97 +0,0 @@ -{ - "language":"English", - "@language":{ - "description":"The current Language" - }, - - - "pageNotFound":"Page not found", - "settings":"Settings", - "enterNewEmail":"Enter new email", - "enterRegisteredEmail":"Enter Registered Email", - "enterCurrentPassword":"Enter current password", - "resetPassword":"Reset password", - "autoSync":"Auto sync", - "alreadyHaveAnAccount":"Already have an account?", - "syncNow":"Sync now", - "availablePlatformsForSync":"Available platforms for sync", - "automaticallySyncNotesWithCloud":"Automatically sync notes with cloud", - "deletionFailed":"Deletion failed", - "enableFingerPrintLogin":"Enable fingerprint login", - "fingerPrintAthShouldBeEnabledInDeviceSettings":"Fingerprint auth should be enabled in device settings", - "fingerprintLoginFailed":"Fingerprint login failed", - "tooManyWrongAttempts":"Too many wrong attempts, please login with password", - "emailUpdatedSuccessfully":"Email updated successfully, please login again", - "passwordResetMailSent":"Password reset email sent", - "incorrectPassword":"Incorrect password", - "passwordVerified":"Password verified", - "passwordsDontMatch":"Passwords don't match", - "passwordResetSuccessful":"Password reset successful", - "unexpectedErrorOccured":"Unexpected error occured", - "pleaseSetupYourAccountToUseThisFeature":"Please setup your account to use this feature", - "accountSetupSuccessful":"Account setup successful", - "failedToFetchNote":"Failed to fetch note", - "failedToSaveNote":"Failed to save note", - "noteSavedSuccessfully":"Note saved successfully", - "noteUpdatedSuccessfully":"Note updated successfully", - "notesSyncSuccessfull":"Notes sync successful", - "loginToEnableAutoSync":"Please login to enable auto-sync", - "enableAutoSave":"Enable auto save", - "dateFilter":"Date Filter", - "from":"From", - "to":"To", - "areYouSureAboutLoggingOut":"Are you sure about logging out?", - "sendFeedback":"Send feedback", - "shareWithFriends":"Share with Friends", - "chooseTheme":"Choose Theme", - "appVersion":"App version", - "continueAsGues":"Continue as guest", - "byContinuingYouAgree":"By continuing, you agree to our", - "privacyPolicy":"Privacy Policy", - "closeTheApp":"Close the App?", - "changePassword":"Change password", - "changeEmail":"Change Email", - "setupYourAccount":"Setup your Account", - "logIn":"Log In", - "logOut":"Log out", - "signIn":"Sign In", - "forgotPassword":"Forgot password", - "newPassword":"New Password", - "confirmNewPassword":"Confirm new password", - "dontHaveAccount":"Don't have an account?", - "signUp":"Sign Up", - "tapToExpandTitle":"Tap here to expand title", - "gallery":"Gallery", - "link":"Link", - "camera":"Camera", - "video":"Video", - "youHaveUnsavedChanges":"You have unsaved changes", - "dropbox":"Dropbox", - "signedInAs":"Signed in as", - "lastSynced":"Last synced: ", - "notAvailable":"Not available", - "googleDrive":"Google Drive", - "chooseTheSyncSource":"Choose the Sync Source", - "done":"Done", - "delete":"Delete", - "cancel":"Cancel", - "submit":"Submit", - "appDescription":"Discover diaryVault - a diary app designed to help you capture your thoughts, memories, and moments effortlessly. Available now on the Play Store!", - "notificationsNotEnabled":"Notifications are not enabled", - "notificationTimeNotEnabled":"You haven't selected a notification time", - "youWillBeNotifiedAt":"You will be notified at {time}", - "@youWillBeNotifiedAt":{ - "placeholders":{ - "time": { - "type": "String", - "example":"in sometime" - } - } - }, - "enableDailyReminders":"Enable Daily Reminders", - "dailyReminders":"Daily Reminders", - "getDailyReminders":"Get daily reminders at your chosen time to keep your journal up to date.", - "chooseTime":"Choose Time", - "notificationTitle1":"Time to Journal!", - "notificationDescription1":"Take a few minutes to reflect on your day in your diary" -} diff --git a/lib/l10n/arb/app_he.arb b/lib/l10n/arb/app_he.arb deleted file mode 100644 index 3fb89b47..00000000 --- a/lib/l10n/arb/app_he.arb +++ /dev/null @@ -1,80 +0,0 @@ -{ - "language":"Hebrew", - "@language":{ - "description":"השפה הנוכחית" - }, - - - "pageNotFound":"דף לא נמצא", - "settings":"הגדרות", - "enterNewEmail":"הכנס אימייל חדש", - "enterRegisteredEmail":"הכנס אימייל רשום", - "enterCurrentPassword":"הכנס סיסמה עכשווית", - "resetPassword":"אפס סיסמה", - "autoSync":"סנכרון אוטומטי", - "alreadyHaveAnAccount":"האם יש לך כבר חשבון?", - "syncNow":"סנכרן עכשיו", - "availablePlatformsForSync":"פלטפורמות אפשריות לסנכרון", - "automaticallySyncNotesWithCloud":"סנכרן פתקים אוטמטית עם הענן", - "deletionFailed":"מחיקה נכשלה", - "enableFingerPrintLogin":"אפשר התחברות דרך טביעת אצבע", - "fingerPrintAthShouldBeEnabledInDeviceSettings":"אימות על ידי טביעת אצבע צריך להיות מופעל בהגדרות המכשיר", - "fingerprintLoginFailed":"התחברות עם טביעת אצבע נכשלה", - "tooManyWrongAttempts":"יותר מדי התחברויות כושלות, אנא התחבר עם סיסמה", - "emailUpdatedSuccessfully":"אימייל עודכן בהצלחה, אנא התחבר שוב", - "passwordResetMailSent":"אימייל איפוס סיסמה נשלח", - "incorrectPassword":"סיסמה לא נכונה", - "passwordVerified":"סיסמה אומתה", - "passwordsDontMatch":"הסיסמאות לא תואמות", - "passwordResetSuccessful":"איפוס סיסמה עבר בהצלחה", - "unexpectedErrorOccured":"בעיה לא צפויה קרתה", - "pleaseSetupYourAccountToUseThisFeature":"אנא הקם את חשבונך כדי להשתמש באפשרות הזאת", - "accountSetupSuccessful":"הקמת חשבון נעשתה בהצלחה", - "failedToFetchNote":"נכשל בלהביא פתק", - "failedToSaveNote":"נכשל בלשמור על פתק", - "noteSavedSuccessfully":"פתק נשמר בהצלחה", - "noteUpdatedSuccessfully":"פתק עודכן בהצלחה", - "notesSyncSuccessfull":"סנכרון פתקים התבצע בהצלחה", - "loginToEnableAutoSync":"אנא התחבר כדי לאפשר סנכרון אוטומטי", - "enableAutoSave":"הפעל שמירה אוטומטית", - "dateFilter":"סינון תאריך", - "from":"מאת", - "to":"ל", - "areYouSureAboutLoggingOut":"האם אתה בטוח שאתה רוצה להתנתק?", - "sendFeedback":"שלח משוב", - "shareWithFriends":"שתף עם חברים", - "chooseTheme":"בחר נושא", - "appVersion":"גרסת ישומון", - "continueAsGues":"המשך כאורח", - "byContinuingYouAgree":"על ידי המשך, אתה מסכים ל", - "privacyPolicy":"מדיניות פרטיות", - "closeTheApp":"לסגור את היישומון?", - "changePassword":"לשנות סיסמה", - "changeEmail":"לשנות אימייל", - "setupYourAccount":"הקמת חשבון", - "logIn":"התחברות", - "logOut":"התנתק", - "signIn":"התחבר", - "forgotPassword":"שכחתי סיסמה", - "newPassword":"סיסמה חדשה", - "confirmNewPassword":"אשר סיסמה חדשה", - "dontHaveAccount":"אין לך חשבון?", - "signUp":"הירשם", - "tapToExpandTitle":"הקש כאן כדי להרחיב את הכותרת", - "gallery":"גלריה", - "link":"קישור", - "camera":"מצלמה", - "video":"וידאו", - "youHaveUnsavedChanges":"יש לך שינויים שלא נשמרו", - "dropbox":"דרופבוקס", - "signedInAs":"מחובר כ-", - "lastSynced":"סונכרן בפעם האחרונה ב: ", - "notAvailable":"לא זמין", - "googleDrive":"גוגל דרייב", - "chooseTheSyncSource":"בחר מקור סנכרון", - "done":"בוצע", - "delete":"מחק", - "cancel":"בטל", - "submit":"שלח", - "appDescription":"גלה את diaryVault - יישומון יומן שעוצב לעזור לך לתפוס את מחשבותיך, זכרונותיך, ורגעים ללא מאמץ. עכשיו זמין בחנות Play!" -} diff --git a/lib/l10n/arb/app_hi.arb b/lib/l10n/arb/app_hi.arb deleted file mode 100644 index c645c629..00000000 --- a/lib/l10n/arb/app_hi.arb +++ /dev/null @@ -1,81 +0,0 @@ -{ - "language":"Hindi", - "@language":{ - "description":"वर्तमान भाषा" - }, - - - "pageNotFound":"पृष्ठ नहीं मिला", - "settings":"समायोजन", - "enterNewEmail":"नया ईमेल दर्ज करें", - "enterRegisteredEmail":"पंजीकृत ईमेल दर्ज करें", - "enterCurrentPassword":"वर्तमान पासवर्ड दर्ज करें", - "resetPassword":"पासवर्ड रीसेट", - "autoSync":"स्वतः सिंक", - "alreadyHaveAnAccount":"पहले से खाता मौजूद है?", - "syncNow":"सिंक करें", - "availablePlatformsForSync":"सिंक के लिए उपलब्ध प्लेटफ़ॉर्म", - "automaticallySyncNotesWithCloud":"क्लाउड के साथ नोट्स को स्वचालित रूप से सिंक करें", - "deletionFailed":"हटाना विफल रहा", - "enableFingerPrintLogin":"फ़िंगरप्रिंट लॉगिन सक्षम करें", - "fingerPrintAthShouldBeEnabledInDeviceSettings":"डिवाइस सेटिंग्स में फ़िंगरप्रिंट प्रमाणीकरण सक्षम होना चाहिए", - "fingerprintLoginFailed":"फ़िंगरप्रिंट लॉगिन विफल रहा", - "tooManyWrongAttempts":"बहुत सारे गलत प्रयास, कृपया पासवर्ड से लॉगिन करें", - "emailUpdatedSuccessfully":"ईमेल सफलतापूर्वक अपडेट किया गया, कृपया पुनः लॉगिन करें", - "passwordResetMailSent":"पासवर्ड रीसेट ईमेल भेजा गया", - "incorrectPassword":"गलत पासवर्ड", - "passwordVerified":"पासवर्ड सत्यापित", - "passwordsDontMatch":"पासवर्ड मेल नहीं खाते", - "passwordResetSuccessful":"पासवर्ड रीसेट सफल", - "unexpectedErrorOccured":"अनपेक्षित त्रुटि उत्पन्न हुई", - "pleaseSetupYourAccountToUseThisFeature":"कृपया इस सुविधा का उपयोग करने के लिए अपना खाता सेटअप करें", - "accountSetupSuccessful":"खाता सेटअप सफल", - "failedToFetchNote":"नोट लाने में विफल", - "failedToSaveNote":"नोट सहेजने में विफल", - "noteSavedSuccessfully":"नोट सफलतापूर्वक सहेजा गया", - "noteUpdatedSuccessfully":"नोट सफलतापूर्वक अपडेट किया गया", - "notesSyncSuccessfull":"नोट्स सिंक सफल", - "loginToEnableAutoSync":"कृपया ऑटो-सिंक सक्षम करने के लिए लॉगिन करें", - "enableAutoSave":"ऑटो सेव सक्षम करें", - "dateFilter":"दिनांक फ़िल्टर", - "from":"से", - "to":"को", - "areYouSureAboutLoggingOut":"क्या आप लॉग आउट करने के बारे में निश्चित हैं?", - "sendFeedback":"प्रतिक्रिया भेजें", - "shareWithFriends":"दोस्तों के साथ बांटें", - "chooseTheme":"थीम चुनें", - "appVersion":"एप्लिकेशन वरज़न", - "continueAsGues":"अतिथि के रूप में जारी रखें", - "byContinuingYouAgree":"जारी रखकर, आप सहमत हैं हमारी ", - "privacyPolicy":"गोपनीयता नीति", - "closeTheApp":"ऐप बंद करें?", - "changePassword":"पासवर्ड बदलें", - "changeEmail":"ई-मेल बदले", - "setupYourAccount":"अपना खाता स्थापित करें", - "logIn":"लॉग इन करें", - "logOut":"लॉग आउट करें", - "signIn":"साइन इन करें", - "forgotPassword":"पासवर्ड भूल गए", - "newPassword":"नया पासवर्ड", - "confirmNewPassword":"नए पासवर्ड की पुष्टि करें", - "dontHaveAccount":"कोई खाता नहीं है?", - "signUp":"साइन अप करें", - "tapToExpandTitle":"शीर्षक का विस्तार करने के लिए यहां टैप करें", - "gallery":"गैलरी", - "link":"लिंक", - "camera":"कैमरा", - "video":"वीडियो", - "youHaveUnsavedChanges":"सहेजे न गए परिवर्तन", - "dropbox":"ड्रॉपबॉक्स", - "signedInAs":"इस रूप में साइन इन किया", - "lastSynced":"अंतिम बार समन्वयित:", - "notAvailable":"उपलब्ध नहीं है", - "googleDrive":"गूगल ड्राइव", - "chooseTheSyncSource":"सिंक स्रोत चुनें", - "done":"हो गया", - "delete":"मिटायें", - "cancel":"रद्द करें", - "submit":"सबमिट करें", - "appDescription":"डायरीवॉल्ट - एक डायरी ऐप जिसे आपके विचारों, यादों और क्षणों को सहजता से समेटने में मदद करने के लिए डिज़ाइन किया गया है। अब प्ले स्टोर पर उपलब्ध है!" - -} diff --git a/lib/l10n/arb/app_kn.arb b/lib/l10n/arb/app_kn.arb deleted file mode 100644 index bf378f35..00000000 --- a/lib/l10n/arb/app_kn.arb +++ /dev/null @@ -1,79 +0,0 @@ -{ - "language":"Kannada", - "@language":{ - "description":"ಪ್ರಸ್ತುತ ಭಾಷೆ" - }, - - "pageNotFound":"ಪುಟ ಕಂಡುಬಂದಿಲ್ಲ", - "settings":"ಸಂಯೋಜನೆಗಳು", - "enterNewEmail":"ಹೊಸ ಇಮೇಲ್ ನಮೂದಿಸಿ", - "enterRegisteredEmail":"ನೋಂದಾಯಿತ ಇಮೇಲ್ ಅನ್ನು ನಮೂದಿಸಿ", - "enterCurrentPassword":"ಪ್ರಸ್ತುತ ಪಾಸ್ವರ್ಡ್ ನಮೂದಿಸಿ", - "resetPassword":"ಪಾಸ್ವರ್ಡ್ ಮರುಹೊಂದಿಸಿ", - "autoSync":"ಸ್ವಯಂ ಸಿಂಕ್ರೊನೈಸ್", - "alreadyHaveAnAccount":"ಈಗಾಗಲೇ ಖಾತೆ ಹೊಂದಿದ್ದೀರ?", - "syncNow":"ಈಗ ಸಿಂಕ್ ಮಾಡಿ", - "availablePlatformsForSync":"ಸಿಂಕ್‌ಗಾಗಿ ಲಭ್ಯವಿರುವ ಪ್ಲಾಟ್‌ಫಾರ್ಮ್‌ಗಳು", - "automaticallySyncNotesWithCloud":"ಟಿಪ್ಪಣಿಗಳನ್ನು ಕ್ಲೌಡ್‌ನೊಂದಿಗೆ ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಸಿಂಕ್ ಮಾಡಿ", - "deletionFailed":"ಅಳಿಸುವಿಕೆ ವಿಫಲವಾಗಿದೆ", - "enableFingerPrintLogin":"ಫಿಂಗರ್‌ಪ್ರಿಂಟ್ ಲಾಗಿನ್ ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ", - "fingerPrintAthShouldBeEnabledInDeviceSettings":"ಸಾಧನ ಸೆಟ್ಟಿಂಗ್‌ಗಳಲ್ಲಿ ಫಿಂಗರ್‌ಪ್ರಿಂಟ್ ದೃಢೀಕರಣವನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಬೇಕು", - "fingerprintLoginFailed":"ಫಿಂಗರ್‌ಪ್ರಿಂಟ್ ಲಾಗಿನ್ ವಿಫಲವಾಗಿದೆ", - "tooManyWrongAttempts":"ತುಂಬಾ ತಪ್ಪು ಪ್ರಯತ್ನಗಳು", - "emailUpdatedSuccessfully":"ಇಮೇಲ್ ಯಶಸ್ವಿಯಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ", - "passwordResetMailSent":"ಪಾಸ್ವರ್ಡ್ ಮರುಹೊಂದಿಸಿ ಮೇಲ್ ಕಳುಹಿಸಲಾಗಿದೆ", - "incorrectPassword":"ತಪ್ಪಾದ ಪಾಸ್ವರ್ಡ್", - "passwordVerified":"ಪಾಸ್ವರ್ಡ್ ಪರಿಶೀಲಿಸಲಾಗಿದೆ", - "passwordsDontMatch":"ಪಾಸ್ವರ್ಡ್ಗಳು ಹೊಂದಿಕೆಯಾಗುವುದಿಲ್ಲ", - "passwordResetSuccessful":"ಪಾಸ್ವರ್ಡ್ ರೀಸೆಟ್ ಯಶಸ್ವಿಯಾಗಿದೆ", - "unexpectedErrorOccured":"ಅನಿರೀಕ್ಷಿತ ದೋಷ ಸಂಭವಿಸಿದೆ", - "pleaseSetupYourAccountToUseThisFeature":"ಈ ವೈಶಿಷ್ಟ್ಯವನ್ನು ಬಳಸಲು ದಯವಿಟ್ಟು ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಹೊಂದಿಸಿ", - "accountSetupSuccessful":"ಖಾತೆ ಸೆಟಪ್ ಯಶಸ್ವಿಯಾಗಿದೆ", - "failedToFetchNote":"ಟಿಪ್ಪಣಿಯನ್ನು ತರಲು ವಿಫಲವಾಗಿದೆ", - "failedToSaveNote":"ಟಿಪ್ಪಣಿಯನ್ನು ಉಳಿಸಲು ವಿಫಲವಾಗಿದೆ", - "noteSavedSuccessfully":"ಟಿಪ್ಪಣಿಯನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಉಳಿಸಲಾಗಿದೆ", - "noteUpdatedSuccessfully":"ಟಿಪ್ಪಣಿಯನ್ನು ಯಶಸ್ವಿಯಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ", - "notesSyncSuccessfull":"ಟಿಪ್ಪಣಿಗಳ ಸಿಂಕ್ ಯಶಸ್ವಿಯಾಗಿದೆ", - "loginToEnableAutoSync":"ಸ್ವಯಂ ಸಿಂಕ್ ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಲು ದಯವಿಟ್ಟು ಲಾಗಿನ್ ಮಾಡಿ", - "enableAutoSave":"ಸ್ವಯಂ ಉಳಿಸುವಿಕೆಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ", - "dateFilter":"ದಿನಾಂಕ ಫಿಲ್ಟರ್", - "from":"ಇಂದ", - "to":"ಗೆ", - "areYouSureAboutLoggingOut":"ಲಾಗ್ ಔಟ್ ಮಾಡುವ ಕುರಿತು ನೀವು ಖಚಿತವಾಗಿರುವಿರಾ?", - "sendFeedback":"ಪ್ರತಿಕ್ರಿಯೆ ಕಳುಹಿಸಿ", - "shareWithFriends":"ಸ್ನೇಹಿತರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ", - "chooseTheme":"ಥೀಮ್ ಆಯ್ಕೆಮಾಡಿ", - "appVersion":"ಅಪ್ಲಿಕೇಶನ್ ಆವೃತ್ತಿ", - "continueAsGues":"ಅತಿಥಿಯಾಗಿ ಮುಂದುವರಿಯಿರಿ", - "byContinuingYouAgree":"ಮುಂದುವರಿಸುವ ಮೂಲಕ, ನೀವು ನಮ್ಮ ಸಮ್ಮತಿಸುತ್ತೀರಿ", - "privacyPolicy":"ಗೌಪ್ಯತಾ ನೀತಿ", - "closeTheApp":"ಅಪ್ಲಿಕೇಶನ್ ಮುಚ್ಚುವುದೇ?", - "changePassword":"ಗುಪ್ತಪದವನ್ನು ಬದಲಿಸಿ", - "changeEmail":"ಇಮೇಲ್ ಬದಲಾಯಿಸಿ", - "setupYourAccount":"ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಹೊಂದಿಸಿ", - "logIn":"ಲಾಗಿನ್ ಮಾಡಿ", - "logOut":"ಲಾಗ್ ಔಟ್", - "signIn":"ಸೈನ್ ಇನ್ ಮಾಡಿ", - "forgotPassword":"ಪಾಸ್ವರ್ಡ್ ಮರೆತಿರಾ", - "newPassword":"ಹೊಸ ಪಾಸ್ವರ್ಡ್", - "confirmNewPassword":"ಹೊಸ ಗುಪ್ತಪದವನ್ನು ಖಚಿತಪಡಿಸಿ", - "dontHaveAccount":"ಖಾತೆ ಇಲ್ಲವೇ?", - "signUp":"ಸೈನ್ ಅಪ್ ಮಾಡಿ", - "tapToExpandTitle":"ಶೀರ್ಷಿಕೆಯನ್ನು ವಿಸ್ತರಿಸಲು ಇಲ್ಲಿ ಟ್ಯಾಪ್ ಮಾಡಿ", - "gallery":"ಗ್ಯಾಲರಿ", - "link":"ಲಿಂಕ್", - "camera":"ಕ್ಯಾಮೆರಾ", - "video":"ವೀಡಿಯೊ", - "youHaveUnsavedChanges":"ನೀವು ಉಳಿಸದ ಬದಲಾವಣೆಗಳನ್ನು ಹೊಂದಿರುವಿರಿ", - "dropbox":"ಡ್ರಾಪ್ಬಾಕ್ಸ್", - "signedInAs":"ನಂತೆ ಸೈನ್ ಇನ್ ಮಾಡಲಾಗಿದೆ", - "lastSynced":"ಕೊನೆಯದಾಗಿ ಸಿಂಕ್ ಮಾಡಿರುವುದು:", - "notAvailable":"ಲಭ್ಯವಿಲ್ಲ", - "googleDrive":"ಗೂಗಲ್ ಡ್ರೈವ್", - "chooseTheSyncSource":"ಸಿಂಕ್ ಮೂಲವನ್ನು ಆಯ್ಕೆಮಾಡಿ", - "done":"ಮುಗಿದಿದೆ", - "delete":"ಅಳಿಸಿ", - "cancel":"ರದ್ದುಮಾಡು", - "submit":"ಸಲ್ಲಿಸು", - "appDescription":"ಡೈರಿವಾಲ್ಟ್ ಅನ್ನು ಅನ್ವೇಷಿಸಿ - ನಿಮ್ಮ ಆಲೋಚನೆಗಳು, ನೆನಪುಗಳು ಮತ್ತು ಕ್ಷಣಗಳನ್ನು ಸಲೀಸಾಗಿ ಸೆರೆಹಿಡಿಯಲು ಸಹಾಯ ಮಾಡಲು ವಿನ್ಯಾಸಗೊಳಿಸಲಾದ ಡೈರಿ ಅಪ್ಲಿಕೇಶನ್. ಪ್ಲೇ ಸ್ಟೋರ್‌ನಲ್ಲಿ ಈಗ ಲಭ್ಯವಿದೆ!" -} diff --git a/lib/l10n/arb/app_pa.arb b/lib/l10n/arb/app_pa.arb deleted file mode 100644 index 2527a306..00000000 --- a/lib/l10n/arb/app_pa.arb +++ /dev/null @@ -1,81 +0,0 @@ -{ - "language":"Panjabi", - "@language":{ - "description":"ਮੌਜੂਦਾ ਭਾਸ਼ਾ" - }, - - - "pageNotFound":"ਪੰਨਾ ਮਿਲਿਆ ਨਹੀਂ", - "settings":"ਵਿਵਸਥਾ", - "enterNewEmail":"ਨਵੀਂ ਈਮੇਲ ਦਾਖਲ ਕਰੋ", - "enterRegisteredEmail":"ਰਜਿਸਟਰਡ ਈਮੇਲ ਦਰਜ ਕਰੋ", - "enterCurrentPassword":"ਮੌਜੂਦਾ ਪਾਸਵਰਡ ਦਿਓ", - "resetPassword":"ਪਾਸਵਰਡ ਰੀਸੈੱਟ", - "autoSync":"ਆਟੋ ਸਿੰਕ", - "alreadyHaveAnAccount":"ਕੀ ਪਹਿਲਾਂ ਤੋਂ ਹੀ ਖਾਤਾ ਹੈ?", - "syncNow":"ਹੁਣ ਸਿੰਕ ਕਰੋ", - "availablePlatformsForSync":"ਸਿੰਕ ਲਈ ਉਪਲਬਧ ਪਲੇਟਫਾਰਮ", - "automaticallySyncNotesWithCloud":"ਕਲਾਉਡ ਨਾਲ ਆਟੋਮੈਟਿਕਲੀ ਸਿੰਕ", - "deletionFailed":"ਮਿਟਾਉਣਾ ਅਸਫਲ ਰਿਹਾ", - "enableFingerPrintLogin":"ਫਿੰਗਰਪ੍ਰਿੰਟ ਲੌਗਇਨ ਨੂੰ ਸਮਰੱਥ ਬਣਾਓ", - "fingerPrintAthShouldBeEnabledInDeviceSettings":"ਡਿਵਾਈਸ ਸੈਟਿੰਗਾਂ ਵਿੱਚ ਫਿੰਗਰਪ੍ਰਿੰਟ ਪ੍ਰਮਾਣੀਕਰਨ ਨੂੰ ਸਮਰੱਥ ਬਣਾਇਆ ਜਾਣਾ ਚਾਹੀਦਾ ਹੈ", - "fingerprintLoginFailed":"ਫਿੰਗਰਪ੍ਰਿੰਟ ਲਾਗਇਨ ਅਸਫਲ ਰਿਹਾ", - "tooManyWrongAttempts":"ਬਹੁਤ ਸਾਰੀਆਂ ਗਲਤ ਕੋਸ਼ਿਸ਼ਾਂ, ਕਿਰਪਾ ਕਰਕੇ ਪਾਸਵਰਡ ਨਾਲ ਲੌਗਇਨ ਕਰੋ", - "emailUpdatedSuccessfully":"ਈਮੇਲ ਸਫਲਤਾਪੂਰਵਕ ਅੱਪਡੇਟ ਕੀਤੀ ਗਈ, ਕਿਰਪਾ ਕਰਕੇ ਦੁਬਾਰਾ ਲੌਗਇਨ ਕਰੋ", - "passwordResetMailSent":"ਪਾਸਵਰਡ ਰੀਸੈਟ ਈਮੇਲ ਭੇਜੀ ਗਈ", - "incorrectPassword":"ਗਲਤ ਪਾਸਵਰਡ", - "passwordVerified":"ਪਾਸਵਰਡ ਦੀ ਪੁਸ਼ਟੀ ਕੀਤੀ", - "passwordsDontMatch":"ਪਾਸਵਰਡ ਮੇਲ ਨਹੀਂ ਖਾਂਦੇ", - "passwordResetSuccessful":"ਪਾਸਵਰਡ ਰੀਸੈਟ ਸਫਲ ਰਿਹਾ", - "unexpectedErrorOccured":"ਅਚਾਨਕ ਗਲਤੀ ਆਈ ਹੈ", - "pleaseSetupYourAccountToUseThisFeature":"ਕਿਰਪਾ ਕਰਕੇ ਇਸ ਵਿਸ਼ੇਸ਼ਤਾ ਦੀ ਵਰਤੋਂ ਕਰਨ ਲਈ ਆਪਣਾ ਖਾਤਾ ਸੈਟ ਅਪ ਕਰੋ", - "accountSetupSuccessful":"ਖਾਤਾ ਸੈੱਟਅੱਪ ਸਫਲ ਰਿਹਾ", - "failedToFetchNote":"ਨੋਟ ਪ੍ਰਾਪਤ ਕਰਨ ਵਿੱਚ ਅਸਫਲ", - "failedToSaveNote":"ਨੋਟ ਸੰਭਾਲਣ ਵਿੱਚ ਅਸਫਲ", - "noteSavedSuccessfully":"ਨੋਟ-ਕਥਨ ਸਫਲਤਾਪੂਰਵਕ ਸੁਰੱਖਿਅਤ ਕੀਤਾ ਗਿਆ", - "noteUpdatedSuccessfully":"ਨੋਟ ਸਫਲਤਾਪੂਰਵਕ ਅੱਪਡੇਟ ਕੀਤਾ ਗਿਆ", - "notesSyncSuccessfull":"ਨੋਟਸ ਸਿੰਕ ਸਫਲ", - "loginToEnableAutoSync":"ਆਟੋ ਸਿੰਕ ਨੂੰ ਸਮਰੱਥ ਕਰਨ ਲਈ ਲੌਗਇਨ ਕਰੋ", - "enableAutoSave":"ਆਟੋ ਸੇਵ ਨੂੰ ਸਮਰੱਥ ਬਣਾਓ", - "dateFilter":"ਮਿਤੀ ਫਿਲਟਰ", - "from":"ਤੋਂ", - "to":"ਨੂੰ", - "areYouSureAboutLoggingOut":"ਕੀ ਤੁਸੀਂ ਯਕੀਨੀ ਤੌਰ 'ਤੇ ਲੌਗ ਆਊਟ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?", - "sendFeedback":"ਫੀਡਬੈਕ ਭੇਜੋ", - "shareWithFriends":"ਦੋਸਤਾਂ ਨਾਲ ਸਾਂਝਾ ਕਰੋ", - "chooseTheme":"ਥੀਮ ਚੁਣੋ", - "appVersion":"ਐਪਲੀਕੇਸ਼ਨ ਵਰਜਨ", - "continueAsGues":"ਮਹਿਮਾਨ ਵਜੋਂ ਜਾਰੀ ਰੱਖੋ", - "byContinuingYouAgree":"ਜਾਰੀ ਰੱਖ ਕੇ, ਤੁਸੀਂ ਸਾਡੇ ਨਾਲ ਸਹਿਮਤ ਹੁੰਦੇ ਹੋ ", - "privacyPolicy":"ਪਰਾਈਵੇਟ ਨੀਤੀ", - "closeTheApp":"ਐਪ ਨੂੰ ਬੰਦ ਕਰਨਾ ਹੈ?", - "changePassword":"ਪਾਸਵਰਡ ਬਦਲੋ", - "changeEmail":"ਈਮੇਲ ਬਦਲੋ", - "setupYourAccount":"ਆਪਣਾ ਖਾਤਾ ਸੈਟ ਅਪ ਕਰੋ", - "logIn":"ਲਾਗਿਨ", - "logOut":"ਬਾਹਰ ਆਉਣਾ", - "signIn":"ਸਾਈਨ - ਇਨ", - "forgotPassword":"ਪਾਸਵਰਡ ਭੁੱਲ ਗਏ", - "newPassword":"ਨਵਾਂ ਪਾਸਵਰਡ", - "confirmNewPassword":"ਨਵੇਂ ਪਾਸਵਰਡ ਦੀ ਪੁਸ਼ਟੀ ਕਰੋ", - "dontHaveAccount":"ਕੀ ਕੋਈ ਖਾਤਾ ਨਹੀਂ ਹੈ?", - "signUp":"ਸਾਇਨ ਅਪ", - "tapToExpandTitle":"ਸਿਰਲੇਖ ਦਾ ਵਿਸਤਾਰ ਕਰਨ ਲਈ ਇੱਥੇ ਟੈਪ ਕਰੋ", - "gallery":"ਗੈਲਰੀ", - "link":"ਲਿੰਕ", - "camera":"ਕੈਮਰਾ", - "video":"ਵੀਡੀਓ", - "youHaveUnsavedChanges":"ਅਣਰੱਖਿਅਤ ਤਬਦੀਲੀਆਂ", - "dropbox":"ਡ੍ਰੌਪਬਾਕਸ", - "signedInAs":"ਵਜੋਂ ਸਾਈਨ ਇਨ ਕੀਤਾ ਹੈ", - "lastSynced":"ਆਖਰੀ ਵਾਰ ਸਿੰਕ ਕੀਤਾ ਗਿਆ", - "notAvailable":"ਉਪਲਭਦ ਨਹੀ", - "googleDrive":"ਗੂਗਲ ਡਰਾਈਵ", - "chooseTheSyncSource":"ਸਿੰਕ ਸਰੋਤ ਚੁਣੋ", - "done":"ਹੋ ਗਿਆ", - "delete":"ਮਿਟਾਓ", - "cancel":"ਰੱਦ ਕਰੋ", - "submit":"ਜਮ੍ਹਾਂ ਕਰੋ", - "appDescription":"ਡਾਇਰੀਵਾਲਟ - ਇੱਕ ਡਾਇਰੀ ਐਪ ਤੁਹਾਡੇ ਵਿਚਾਰਾਂ, ਯਾਦਾਂ ਅਤੇ ਪਲਾਂ ਨੂੰ ਆਸਾਨੀ ਨਾਲ ਕੈਪਚਰ ਕਰਨ ਵਿੱਚ ਤੁਹਾਡੀ ਮਦਦ ਕਰਨ ਲਈ ਤਿਆਰ ਕੀਤਾ ਗਿਆ ਹੈ। ਹੁਣ ਪਲੇ ਸਟੋਰ 'ਤੇ ਉਪਲਬਧ ਹੈ!" - -} diff --git a/lib/l10n/arb/app_pt.arb b/lib/l10n/arb/app_pt.arb deleted file mode 100644 index cd234535..00000000 --- a/lib/l10n/arb/app_pt.arb +++ /dev/null @@ -1,82 +0,0 @@ -{ - "language":"Português - Brasil", - "@language":{ - "description":"Idioma atual" - }, - - - "pageNotFound":"Página não encontrada", - "settings":"COnfigurações", - "enterNewEmail":"Insira um novo email", - "enterRegisteredEmail":"Insira o email cadastrado", - "enterCurrentPassword":"Insira a senha atual", - "resetPassword":"Resetar senhar", - "autoSync":"Sincronizar automaticamente", - "alreadyHaveAnAccount":"Já possui uma conta?", - "syncNow":"Sincronizar", - "availablePlatformsForSync":"Plataformas disponíveis para sincronização", - "automaticallySyncNotesWithCloud":"Sincronizar anotações para a nuvem automaticamente", - "deletionFailed":"Falha ao deletar", - "enableFingerPrintLogin":"Habilitar login por biometria", - "fingerPrintAthShouldBeEnabledInDeviceSettings":"O login por biometria deve ser habilitado nas configurações do dispositivo", - "fingerprintLoginFailed":"Falha no login por biometria", - "tooManyWrongAttempts":"Muitas tentativas incorretas, tente o login utilizando a senha", - "emailUpdatedSuccessfully":"Email atualizado com sucesso, faça o login novamente", - "passwordResetMailSent":"Email para recuperação de senha enviado", - "incorrectPassword":"Senha incorreta", - "passwordVerified":"Senha verificada", - "passwordsDontMatch":"As senhas não são iguais", - "passwordResetSuccessful":"Senha alterada com sucesso", - "unexpectedErrorOccured":"Ocorreu um erro inesperado", - "pleaseSetupYourAccountToUseThisFeature":"Por favor, configure sua conta para usar essa funcionalidade", - "accountSetupSuccessful":"Conta configurada com sucesso", - "failedToFetchNote":"Falha ao buscar anotação", - "failedToSaveNote":"Falha ao salvar anotação", - "noteSavedSuccessfully":"Anotação salva com sucesso", - "noteUpdatedSuccessfully":"Anotação atualizada com sucesso", - "notesSyncSuccessfull":"Anotações sincronizadas com sucesso", - "loginToEnableAutoSync":"Faça o login para habilitar a sincronização automática", - "enableAutoSave":"Habilitar salvamento automático", - "dateFilter":"Filtro por data", - "from":"De", - "to":"Para", - "areYouSureAboutLoggingOut":"Deseja sair do aplicativo?", - "sendFeedback":"Mande um feedback", - "shareWithFriends":"Compartilhar com os amigos", - "chooseTheme":"Escolha um tema", - "appVersion":"Versão do app", - "continueAsGues":"Continuar como convidado", - "byContinuingYouAgree":"Ao clicar em prosseguir você concorda com nossas ", - "privacyPolicy":"Políticas de privacidade", - "closeTheApp":"Deseja fechar o app?", - "changePassword":"Alterar senha", - "changeEmail":"Alterar email", - "setupYourAccount":"Configure sua conta", - "logIn":"Login", - "logOut":"Sair", - "signIn":"Entrar", - "forgotPassword":"Esqueci minha senha", - "newPassword":"Nova senha", - "confirmNewPassword":"Confirmar nova senha", - "dontHaveAccount":"Não possui uma conta?", - "signUp":"Cadastre-se", - "tapToExpandTitle":"Clique aqui para expandir o título", - "gallery":"Galeria", - "link":"Link", - "camera":"Câmera", - "video":"Vídeo", - "youHaveUnsavedChanges":"Você possui alterações não salvas", - "dropbox":"Dropbox", - "signedInAs":"Logado como", - "lastSynced":"Última sincronização: ", - "notAvailable":"Indisponível", - "googleDrive":"Google Drive", - "chooseTheSyncSource":"Escolha a fonte de sincronização", - "done":"Pronto", - "delete":"Excluir", - "cancel":"Cancelar", - "submit":"Enviar", - "appDescription":"Discover diaryVault - um aplicativo de diário feito para te ajudar a salvar seus pensamentos, suas memórias e seus momentos sem maiores esforços. Disponível agora na Play Store!" - -} - diff --git a/lib/l10n/arb/app_ar.arb b/lib/l10n/intl_ar.arb similarity index 100% rename from lib/l10n/arb/app_ar.arb rename to lib/l10n/intl_ar.arb diff --git a/lib/l10n/intl_de.arb b/lib/l10n/intl_de.arb new file mode 100644 index 00000000..ad83be92 --- /dev/null +++ b/lib/l10n/intl_de.arb @@ -0,0 +1,78 @@ +{ + "language": "German", + "@language": { + "description": "die aktuelle Sprache" + }, + "pageNotFound": "Seite nicht gefunden", + "settings": "Einstellungen", + "enterNewEmail": "Geben Sie eine neue E-Mail-Adresse ein", + "enterRegisteredEmail": "Geben Sie die registrierte E-Mail-Adresse ein", + "enterCurrentPassword": "Aktuelles Passwort eingeben", + "resetPassword": "Passwort zurücksetzen", + "autoSync": "Automatische Synchronisation", + "alreadyHaveAnAccount": "Sie haben bereits ein Konto?", + "syncNow": "Jetzt synchronisieren", + "availablePlatformsForSync": "Verfügbare Plattformen für die Synchronisierung", + "automaticallySyncNotesWithCloud": "Notizen automatisch mit der Cloud synchronisieren", + "deletionFailed": "Das Löschen ist fehlgeschlagen", + "enableFingerPrintLogin": "Aktivieren Sie die Anmeldung per Fingerabdruck", + "fingerPrintAthShouldBeEnabledInDeviceSettings": "Die Fingerabdruck authentifizierung sollte in den Geräteeinstellungen aktiviert sein", + "fingerprintLoginFailed": "Die Anmeldung per Fingerabdruck ist fehlgeschlagen", + "tooManyWrongAttempts": "Zu viele Fehlversuche, bitte melden Sie sich mit Passwort an", + "emailUpdatedSuccessfully": "E-Mail erfolgreich aktualisiert, bitte melden Sie sich erneut an", + "passwordResetMailSent": "E-Mail zum Zurücksetzen des Passworts gesendet", + "incorrectPassword": "Falsches Passwort", + "passwordVerified": "Passwort überprüft", + "passwordsDontMatch": "Passwörter stimmen nicht überein", + "passwordResetSuccessful": "Passwort-Reset erfolgreich", + "unexpectedErrorOccured": "Es ist ein unerwarteter Fehler aufgetreten", + "pleaseSetupYourAccountToUseThisFeature": "Bitte richten Sie Ihr Konto ein, um diese Funktion nutzen zu können", + "accountSetupSuccessful": "Kontoeinrichtung erfolgreich", + "failedToFetchNote": "Notiz konnte nicht abgerufen werden", + "failedToSaveNote": "Notiz konnte nicht gespeichert werden", + "noteSavedSuccessfully": "Notiz erfolgreich gespeichert", + "noteUpdatedSuccessfully": "Hinweis erfolgreich aktualisiert", + "notesSyncSuccessfull": "Synchronisierung der Notizen erfolgreich", + "loginToEnableAutoSync": "Bitte melden Sie sich an, um die automatische Synchronisierung zu aktivieren", + "enableAutoSave": "Aktivieren Sie die automatische Speicherung", + "dateFilter": "Datumsfilter", + "from": "Aus", + "to": "Zu", + "areYouSureAboutLoggingOut": "Sind Sie sicher, dass Sie sich abmelden möchten?", + "sendFeedback": "Feedback abschicken", + "shareWithFriends": "Mit Freunden teilen", + "chooseTheme": "Thema wählen", + "appVersion": "App Version", + "continueAsGues": "Als Gast fortfahren", + "byContinuingYouAgree": "Indem Sie fortfahren, stimmen Sie unseren zu", + "privacyPolicy": "Datenschutzrichtlinie", + "closeTheApp": "App schließen?", + "changePassword": "Kennwort ändern", + "changeEmail": "Ändern Sie die E-Mail", + "setupYourAccount": "Richten Sie Ihr Konto ein", + "logIn": "Anmeldung", + "logOut": "Ausloggen", + "signIn": "Anmelden", + "forgotPassword": "Passwort vergessen", + "newPassword": "Neues Kennwort", + "confirmNewPassword": "Bestätige neues PasswortBestätige neues Passwort", + "dontHaveAccount": "Sie haben noch kein Konto?", + "signUp": "Melden Sie sich an", + "tapToExpandTitle": "Hier tippen, um den Titel zu erweitern. Hier tippen, um den Titel zu erweitern", + "gallery": "Galerie", + "link": "Verknüpfung", + "camera": "Kamera", + "video": "Video", + "youHaveUnsavedChanges": "Du hast nicht gespeicherte Änderungen", + "dropbox": "Dropbox", + "signedInAs": "Eingeloggt als", + "lastSynced": "Zuletzt synchronisiert: ", + "notAvailable": "Nicht verfügbar", + "googleDrive": "Google Drive", + "chooseTheSyncSource": "Wählen Sie die Synchronisierungsquelle", + "done": "Erledigt", + "delete": "Löschen", + "cancel": "Stornieren", + "submit": "Einreichen", + "appDescription": "Entdecken Sie diaryVault – eine Tagebuch-App, mit der Sie Ihre Gedanken, Erinnerungen und Momente mühelos festhalten können. Jetzt im Play Store erhältlich!" +} diff --git a/lib/l10n/intl_en.arb b/lib/l10n/intl_en.arb new file mode 100644 index 00000000..4e29e680 --- /dev/null +++ b/lib/l10n/intl_en.arb @@ -0,0 +1,95 @@ +{ + "language": "English", + "@language": { + "description": "The current Language" + }, + "pageNotFound": "Page not found", + "settings": "Settings", + "enterNewEmail": "Enter new email", + "enterRegisteredEmail": "Enter Registered Email", + "enterCurrentPassword": "Enter current password", + "resetPassword": "Reset password", + "autoSync": "Auto sync", + "alreadyHaveAnAccount": "Already have an account?", + "syncNow": "Sync now", + "availablePlatformsForSync": "Available platforms for sync", + "automaticallySyncNotesWithCloud": "Automatically sync notes with cloud", + "deletionFailed": "Deletion failed", + "enableFingerPrintLogin": "Enable fingerprint login", + "fingerPrintAthShouldBeEnabledInDeviceSettings": "Fingerprint auth should be enabled in device settings", + "fingerprintLoginFailed": "Fingerprint login failed", + "tooManyWrongAttempts": "Too many wrong attempts, please login with password", + "emailUpdatedSuccessfully": "Email updated successfully, please login again", + "passwordResetMailSent": "Password reset email sent", + "incorrectPassword": "Incorrect password", + "passwordVerified": "Password verified", + "passwordsDontMatch": "Passwords don't match", + "passwordResetSuccessful": "Password reset successful", + "unexpectedErrorOccured": "Unexpected error occured", + "pleaseSetupYourAccountToUseThisFeature": "Please setup your account to use this feature", + "accountSetupSuccessful": "Account setup successful", + "failedToFetchNote": "Failed to fetch note", + "failedToSaveNote": "Failed to save note", + "noteSavedSuccessfully": "Note saved successfully", + "noteUpdatedSuccessfully": "Note updated successfully", + "notesSyncSuccessfull": "Notes sync successful", + "loginToEnableAutoSync": "Please login to enable auto-sync", + "enableAutoSave": "Enable auto save", + "dateFilter": "Date Filter", + "from": "From", + "to": "To", + "areYouSureAboutLoggingOut": "Are you sure about logging out?", + "sendFeedback": "Send feedback", + "shareWithFriends": "Share with Friends", + "chooseTheme": "Choose Theme", + "appVersion": "App version", + "continueAsGues": "Continue as guest", + "byContinuingYouAgree": "By continuing, you agree to our", + "privacyPolicy": "Privacy Policy", + "closeTheApp": "Close the App?", + "changePassword": "Change password", + "changeEmail": "Change Email", + "setupYourAccount": "Setup your Account", + "logIn": "Log In", + "logOut": "Log out", + "signIn": "Sign In", + "forgotPassword": "Forgot password", + "newPassword": "New Password", + "confirmNewPassword": "Confirm new password", + "dontHaveAccount": "Don't have an account?", + "signUp": "Sign Up", + "tapToExpandTitle": "Tap here to expand title", + "gallery": "Gallery", + "link": "Link", + "camera": "Camera", + "video": "Video", + "youHaveUnsavedChanges": "You have unsaved changes", + "dropbox": "Dropbox", + "signedInAs": "Signed in as", + "lastSynced": "Last synced: ", + "notAvailable": "Not available", + "googleDrive": "Google Drive", + "chooseTheSyncSource": "Choose the Sync Source", + "done": "Done", + "delete": "Delete", + "cancel": "Cancel", + "submit": "Submit", + "appDescription": "Discover diaryVault - a diary app designed to help you capture your thoughts, memories, and moments effortlessly. Available now on the Play Store!", + "notificationsNotEnabled": "Notifications are not enabled", + "notificationTimeNotEnabled": "You haven't selected a notification time", + "youWillBeNotifiedAt": "You will be notified at {time}", + "@youWillBeNotifiedAt": { + "placeholders": { + "time": { + "type": "String", + "example": "in sometime" + } + } + }, + "enableDailyReminders": "Enable Daily Reminders", + "dailyReminders": "Daily Reminders", + "getDailyReminders": "Get daily reminders at your chosen time to keep your journal up to date.", + "chooseTime": "Choose Time", + "notificationTitle1": "Time to Journal!", + "notificationDescription1": "Take a few minutes to reflect on your day in your diary" +} diff --git a/lib/l10n/intl_fi.arb b/lib/l10n/intl_fi.arb new file mode 100644 index 00000000..4dc2d035 --- /dev/null +++ b/lib/l10n/intl_fi.arb @@ -0,0 +1,95 @@ +{ + "language": "Finnish", + "@language": { + "description": "Käytössä oleva kieli" + }, + "pageNotFound": "Sivua ei löydy", + "settings": "Asetukset", + "enterNewEmail": "Anna uusi sähköpostiosoite", + "enterRegisteredEmail": "Anna rekisteröity sähköpostiosoite", + "enterCurrentPassword": "Anna nykyinen salasana", + "resetPassword": "Nollaa salasana", + "autoSync": "Automaattinen synkronointi", + "alreadyHaveAnAccount": "Oletko jo rekisteröitynyt?", + "syncNow": "Synkronoi nyt", + "availablePlatformsForSync": "Synkronointia tukevat alustat", + "automaticallySyncNotesWithCloud": "Synkronoi muistiinpanot pilvipalveluun automaattisesti", + "deletionFailed": "Poisto ei onnistunut", + "enableFingerPrintLogin": "Ota sormenjälkitunnistus käyttöön", + "fingerPrintAthShouldBeEnabledInDeviceSettings": "Sormenjälkitunnistus on otettava käyttöön laitteen asetuksissa", + "fingerprintLoginFailed": "Sormenjälkitunnistus ei onnistunut", + "tooManyWrongAttempts": "Tunnistus epäonnistui liian monta kertaa. Anna salasana.", + "emailUpdatedSuccessfully": "Sähköpostiosoite on päivitetty. Kirjaudu uudelleen sisään.", + "passwordResetMailSent": "Salasanan palautusviesti on lähetetty", + "incorrectPassword": "Salasana on väärä", + "passwordVerified": "Salasana on vahvistettu", + "passwordsDontMatch": "Salasanat eivät täsmää", + "passwordResetSuccessful": "Salasanan palautus onnistui", + "unexpectedErrorOccured": "On ilmennyt odottamaton virhe", + "pleaseSetupYourAccountToUseThisFeature": "Ominaisuus edellyttää, että tili on määritetty", + "accountSetupSuccessful": "Tilin määritys onnistui", + "failedToFetchNote": "Muistiinpanon haku ei onnistunut", + "failedToSaveNote": "Muistiinpanon tallennus ei onnistunut", + "noteSavedSuccessfully": "Muistiinpano on tallennettu", + "noteUpdatedSuccessfully": "Muistiinpano on päivitetty", + "notesSyncSuccessfull": "Muistiinpanot on synkronoitu", + "loginToEnableAutoSync": "Ota automaattinen synkronointi käyttöön kirjautumalla sisään", + "enableAutoSave": "Ota automaattinen tallennus käyttöön", + "dateFilter": "Päivämääräsuodatin", + "from": "Alku", + "to": "Loppu", + "areYouSureAboutLoggingOut": "Haluatko varmasti kirjautua ulos?", + "sendFeedback": "Lähetä palautetta", + "shareWithFriends": "Kerro sovelluksesta ystäville", + "chooseTheme": "Valitse teema", + "appVersion": "Sovelluksen versio", + "continueAsGues": "Jatka vieraskäyttäjänä", + "byContinuingYouAgree": "Jos jatkat, hyväksyt", + "privacyPolicy": "sovelluksen tietosuojakäytännön", + "closeTheApp": "Suljetaanko sovellus?", + "changePassword": "Vaihda salasana", + "changeEmail": "Vaihda sähköpostiosoite", + "setupYourAccount": "Määritä tilisi", + "logIn": "Kirjaudu sisään", + "logOut": "Kirjaudu ulos", + "signIn": "Rekisteröidy", + "forgotPassword": "Unohtuiko salasana?", + "newPassword": "Uusi salasana", + "confirmNewPassword": "Vahvista uusi salasana", + "dontHaveAccount": "Eikö sinulla ole tiliä?", + "signUp": "Rekisteröidy", + "tapToExpandTitle": "Laajenna otsikko napauttamalla tätä", + "gallery": "Galleria", + "link": "Linkki", + "camera": "Kamera", + "video": "Video", + "youHaveUnsavedChanges": "Muutoksia ei ole tallennettu", + "dropbox": "Dropbox", + "signedInAs": "Kirjautuneena:", + "lastSynced": "Viimeksi synkronoitu: ", + "notAvailable": "Ei käytettävissä", + "googleDrive": "Google Drive", + "chooseTheSyncSource": "Valitse synkronointilähde", + "done": "Valmis", + "delete": "Poista", + "cancel": "Peruuta", + "submit": "Lähetä", + "appDescription": "Tutustu diaryVaultiin – muistikirjasovellukseen, joka auttaa säilömään ajatukset, muistot ja hetket vaivattomasti. Saatavilla nyt Play Store -kaupasta!", + "notificationsNotEnabled": "Ilmoituksia ei ole otettu käyttöön", + "notificationTimeNotEnabled": "Ilmoitusajankohtaa ei ole valittu", + "youWillBeNotifiedAt": "Ilmoitusajankohta: {time}", + "@youWillBeNotifiedAt": { + "placeholders": { + "time": { + "type": "String", + "example": "joskus" + } + } + }, + "enableDailyReminders": "Ota päivittäiset muistutukset käyttöön", + "dailyReminders": "Päivittäiset muistutukset", + "getDailyReminders": "Saat päivittäisen muistutuksen kirjoittaa muistikirjaan haluamanasi ajankohtana.", + "chooseTime": "Valitse ajankohta", + "notificationTitle1": "Aika kirjoittaa muistikirjaan!", + "notificationDescription1": "Pysähdy hetkeksi tallentamaan päivän ajatuksiasi muistikirjaan" +} diff --git a/lib/l10n/intl_he.arb b/lib/l10n/intl_he.arb new file mode 100644 index 00000000..762d13e2 --- /dev/null +++ b/lib/l10n/intl_he.arb @@ -0,0 +1,78 @@ +{ + "language": "Hebrew", + "@language": { + "description": "השפה הנוכחית" + }, + "pageNotFound": "דף לא נמצא", + "settings": "הגדרות", + "enterNewEmail": "הכנס אימייל חדש", + "enterRegisteredEmail": "הכנס אימייל רשום", + "enterCurrentPassword": "הכנס סיסמה עכשווית", + "resetPassword": "אפס סיסמה", + "autoSync": "סנכרון אוטומטי", + "alreadyHaveAnAccount": "האם יש לך כבר חשבון?", + "syncNow": "סנכרן עכשיו", + "availablePlatformsForSync": "פלטפורמות אפשריות לסנכרון", + "automaticallySyncNotesWithCloud": "סנכרן פתקים אוטמטית עם הענן", + "deletionFailed": "מחיקה נכשלה", + "enableFingerPrintLogin": "אפשר התחברות דרך טביעת אצבע", + "fingerPrintAthShouldBeEnabledInDeviceSettings": "אימות על ידי טביעת אצבע צריך להיות מופעל בהגדרות המכשיר", + "fingerprintLoginFailed": "התחברות עם טביעת אצבע נכשלה", + "tooManyWrongAttempts": "יותר מדי התחברויות כושלות, אנא התחבר עם סיסמה", + "emailUpdatedSuccessfully": "אימייל עודכן בהצלחה, אנא התחבר שוב", + "passwordResetMailSent": "אימייל איפוס סיסמה נשלח", + "incorrectPassword": "סיסמה לא נכונה", + "passwordVerified": "סיסמה אומתה", + "passwordsDontMatch": "הסיסמאות לא תואמות", + "passwordResetSuccessful": "איפוס סיסמה עבר בהצלחה", + "unexpectedErrorOccured": "בעיה לא צפויה קרתה", + "pleaseSetupYourAccountToUseThisFeature": "אנא הקם את חשבונך כדי להשתמש באפשרות הזאת", + "accountSetupSuccessful": "הקמת חשבון נעשתה בהצלחה", + "failedToFetchNote": "נכשל בלהביא פתק", + "failedToSaveNote": "נכשל בלשמור על פתק", + "noteSavedSuccessfully": "פתק נשמר בהצלחה", + "noteUpdatedSuccessfully": "פתק עודכן בהצלחה", + "notesSyncSuccessfull": "סנכרון פתקים התבצע בהצלחה", + "loginToEnableAutoSync": "אנא התחבר כדי לאפשר סנכרון אוטומטי", + "enableAutoSave": "הפעל שמירה אוטומטית", + "dateFilter": "סינון תאריך", + "from": "מאת", + "to": "ל", + "areYouSureAboutLoggingOut": "האם אתה בטוח שאתה רוצה להתנתק?", + "sendFeedback": "שלח משוב", + "shareWithFriends": "שתף עם חברים", + "chooseTheme": "בחר נושא", + "appVersion": "גרסת ישומון", + "continueAsGues": "המשך כאורח", + "byContinuingYouAgree": "על ידי המשך, אתה מסכים ל", + "privacyPolicy": "מדיניות פרטיות", + "closeTheApp": "לסגור את היישומון?", + "changePassword": "לשנות סיסמה", + "changeEmail": "לשנות אימייל", + "setupYourAccount": "הקמת חשבון", + "logIn": "התחברות", + "logOut": "התנתק", + "signIn": "התחבר", + "forgotPassword": "שכחתי סיסמה", + "newPassword": "סיסמה חדשה", + "confirmNewPassword": "אשר סיסמה חדשה", + "dontHaveAccount": "אין לך חשבון?", + "signUp": "הירשם", + "tapToExpandTitle": "הקש כאן כדי להרחיב את הכותרת", + "gallery": "גלריה", + "link": "קישור", + "camera": "מצלמה", + "video": "וידאו", + "youHaveUnsavedChanges": "יש לך שינויים שלא נשמרו", + "dropbox": "דרופבוקס", + "signedInAs": "מחובר כ-", + "lastSynced": "סונכרן בפעם האחרונה ב: ", + "notAvailable": "לא זמין", + "googleDrive": "גוגל דרייב", + "chooseTheSyncSource": "בחר מקור סנכרון", + "done": "בוצע", + "delete": "מחק", + "cancel": "בטל", + "submit": "שלח", + "appDescription": "גלה את diaryVault - יישומון יומן שעוצב לעזור לך לתפוס את מחשבותיך, זכרונותיך, ורגעים ללא מאמץ. עכשיו זמין בחנות Play!" +} diff --git a/lib/l10n/intl_hi.arb b/lib/l10n/intl_hi.arb new file mode 100644 index 00000000..389dcea1 --- /dev/null +++ b/lib/l10n/intl_hi.arb @@ -0,0 +1,78 @@ +{ + "language": "Hindi", + "@language": { + "description": "वर्तमान भाषा" + }, + "pageNotFound": "पृष्ठ नहीं मिला", + "settings": "समायोजन", + "enterNewEmail": "नया ईमेल दर्ज करें", + "enterRegisteredEmail": "पंजीकृत ईमेल दर्ज करें", + "enterCurrentPassword": "वर्तमान पासवर्ड दर्ज करें", + "resetPassword": "पासवर्ड रीसेट", + "autoSync": "स्वतः सिंक", + "alreadyHaveAnAccount": "पहले से खाता मौजूद है?", + "syncNow": "सिंक करें", + "availablePlatformsForSync": "सिंक के लिए उपलब्ध प्लेटफ़ॉर्म", + "automaticallySyncNotesWithCloud": "क्लाउड के साथ नोट्स को स्वचालित रूप से सिंक करें", + "deletionFailed": "हटाना विफल रहा", + "enableFingerPrintLogin": "फ़िंगरप्रिंट लॉगिन सक्षम करें", + "fingerPrintAthShouldBeEnabledInDeviceSettings": "डिवाइस सेटिंग्स में फ़िंगरप्रिंट प्रमाणीकरण सक्षम होना चाहिए", + "fingerprintLoginFailed": "फ़िंगरप्रिंट लॉगिन विफल रहा", + "tooManyWrongAttempts": "बहुत सारे गलत प्रयास, कृपया पासवर्ड से लॉगिन करें", + "emailUpdatedSuccessfully": "ईमेल सफलतापूर्वक अपडेट किया गया, कृपया पुनः लॉगिन करें", + "passwordResetMailSent": "पासवर्ड रीसेट ईमेल भेजा गया", + "incorrectPassword": "गलत पासवर्ड", + "passwordVerified": "पासवर्ड सत्यापित", + "passwordsDontMatch": "पासवर्ड मेल नहीं खाते", + "passwordResetSuccessful": "पासवर्ड रीसेट सफल", + "unexpectedErrorOccured": "अनपेक्षित त्रुटि उत्पन्न हुई", + "pleaseSetupYourAccountToUseThisFeature": "कृपया इस सुविधा का उपयोग करने के लिए अपना खाता सेटअप करें", + "accountSetupSuccessful": "खाता सेटअप सफल", + "failedToFetchNote": "नोट लाने में विफल", + "failedToSaveNote": "नोट सहेजने में विफल", + "noteSavedSuccessfully": "नोट सफलतापूर्वक सहेजा गया", + "noteUpdatedSuccessfully": "नोट सफलतापूर्वक अपडेट किया गया", + "notesSyncSuccessfull": "नोट्स सिंक सफल", + "loginToEnableAutoSync": "कृपया ऑटो-सिंक सक्षम करने के लिए लॉगिन करें", + "enableAutoSave": "ऑटो सेव सक्षम करें", + "dateFilter": "दिनांक फ़िल्टर", + "from": "से", + "to": "को", + "areYouSureAboutLoggingOut": "क्या आप लॉग आउट करने के बारे में निश्चित हैं?", + "sendFeedback": "प्रतिक्रिया भेजें", + "shareWithFriends": "दोस्तों के साथ बांटें", + "chooseTheme": "थीम चुनें", + "appVersion": "एप्लिकेशन वरज़न", + "continueAsGues": "अतिथि के रूप में जारी रखें", + "byContinuingYouAgree": "जारी रखकर, आप सहमत हैं हमारी ", + "privacyPolicy": "गोपनीयता नीति", + "closeTheApp": "ऐप बंद करें?", + "changePassword": "पासवर्ड बदलें", + "changeEmail": "ई-मेल बदले", + "setupYourAccount": "अपना खाता स्थापित करें", + "logIn": "लॉग इन करें", + "logOut": "लॉग आउट करें", + "signIn": "साइन इन करें", + "forgotPassword": "पासवर्ड भूल गए", + "newPassword": "नया पासवर्ड", + "confirmNewPassword": "नए पासवर्ड की पुष्टि करें", + "dontHaveAccount": "कोई खाता नहीं है?", + "signUp": "साइन अप करें", + "tapToExpandTitle": "शीर्षक का विस्तार करने के लिए यहां टैप करें", + "gallery": "गैलरी", + "link": "लिंक", + "camera": "कैमरा", + "video": "वीडियो", + "youHaveUnsavedChanges": "सहेजे न गए परिवर्तन", + "dropbox": "ड्रॉपबॉक्स", + "signedInAs": "इस रूप में साइन इन किया", + "lastSynced": "अंतिम बार समन्वयित:", + "notAvailable": "उपलब्ध नहीं है", + "googleDrive": "गूगल ड्राइव", + "chooseTheSyncSource": "सिंक स्रोत चुनें", + "done": "हो गया", + "delete": "मिटायें", + "cancel": "रद्द करें", + "submit": "सबमिट करें", + "appDescription": "डायरीवॉल्ट - एक डायरी ऐप जिसे आपके विचारों, यादों और क्षणों को सहजता से समेटने में मदद करने के लिए डिज़ाइन किया गया है। अब प्ले स्टोर पर उपलब्ध है!" +} diff --git a/lib/l10n/intl_kn.arb b/lib/l10n/intl_kn.arb new file mode 100644 index 00000000..e6450c92 --- /dev/null +++ b/lib/l10n/intl_kn.arb @@ -0,0 +1,78 @@ +{ + "language": "Kannada", + "@language": { + "description": "ಪ್ರಸ್ತುತ ಭಾಷೆ" + }, + "pageNotFound": "ಪುಟ ಕಂಡುಬಂದಿಲ್ಲ", + "settings": "ಸಂಯೋಜನೆಗಳು", + "enterNewEmail": "ಹೊಸ ಇಮೇಲ್ ನಮೂದಿಸಿ", + "enterRegisteredEmail": "ನೋಂದಾಯಿತ ಇಮೇಲ್ ಅನ್ನು ನಮೂದಿಸಿ", + "enterCurrentPassword": "ಪ್ರಸ್ತುತ ಪಾಸ್ವರ್ಡ್ ನಮೂದಿಸಿ", + "resetPassword": "ಪಾಸ್ವರ್ಡ್ ಮರುಹೊಂದಿಸಿ", + "autoSync": "ಸ್ವಯಂ ಸಿಂಕ್ರೊನೈಸ್", + "alreadyHaveAnAccount": "ಈಗಾಗಲೇ ಖಾತೆ ಹೊಂದಿದ್ದೀರ?", + "syncNow": "ಈಗ ಸಿಂಕ್ ಮಾಡಿ", + "availablePlatformsForSync": "ಸಿಂಕ್‌ಗಾಗಿ ಲಭ್ಯವಿರುವ ಪ್ಲಾಟ್‌ಫಾರ್ಮ್‌ಗಳು", + "automaticallySyncNotesWithCloud": "ಟಿಪ್ಪಣಿಗಳನ್ನು ಕ್ಲೌಡ್‌ನೊಂದಿಗೆ ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಸಿಂಕ್ ಮಾಡಿ", + "deletionFailed": "ಅಳಿಸುವಿಕೆ ವಿಫಲವಾಗಿದೆ", + "enableFingerPrintLogin": "ಫಿಂಗರ್‌ಪ್ರಿಂಟ್ ಲಾಗಿನ್ ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ", + "fingerPrintAthShouldBeEnabledInDeviceSettings": "ಸಾಧನ ಸೆಟ್ಟಿಂಗ್‌ಗಳಲ್ಲಿ ಫಿಂಗರ್‌ಪ್ರಿಂಟ್ ದೃಢೀಕರಣವನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಬೇಕು", + "fingerprintLoginFailed": "ಫಿಂಗರ್‌ಪ್ರಿಂಟ್ ಲಾಗಿನ್ ವಿಫಲವಾಗಿದೆ", + "tooManyWrongAttempts": "ತುಂಬಾ ತಪ್ಪು ಪ್ರಯತ್ನಗಳು", + "emailUpdatedSuccessfully": "ಇಮೇಲ್ ಯಶಸ್ವಿಯಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ", + "passwordResetMailSent": "ಪಾಸ್ವರ್ಡ್ ಮರುಹೊಂದಿಸಿ ಮೇಲ್ ಕಳುಹಿಸಲಾಗಿದೆ", + "incorrectPassword": "ತಪ್ಪಾದ ಪಾಸ್ವರ್ಡ್", + "passwordVerified": "ಪಾಸ್ವರ್ಡ್ ಪರಿಶೀಲಿಸಲಾಗಿದೆ", + "passwordsDontMatch": "ಪಾಸ್ವರ್ಡ್ಗಳು ಹೊಂದಿಕೆಯಾಗುವುದಿಲ್ಲ", + "passwordResetSuccessful": "ಪಾಸ್ವರ್ಡ್ ರೀಸೆಟ್ ಯಶಸ್ವಿಯಾಗಿದೆ", + "unexpectedErrorOccured": "ಅನಿರೀಕ್ಷಿತ ದೋಷ ಸಂಭವಿಸಿದೆ", + "pleaseSetupYourAccountToUseThisFeature": "ಈ ವೈಶಿಷ್ಟ್ಯವನ್ನು ಬಳಸಲು ದಯವಿಟ್ಟು ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಹೊಂದಿಸಿ", + "accountSetupSuccessful": "ಖಾತೆ ಸೆಟಪ್ ಯಶಸ್ವಿಯಾಗಿದೆ", + "failedToFetchNote": "ಟಿಪ್ಪಣಿಯನ್ನು ತರಲು ವಿಫಲವಾಗಿದೆ", + "failedToSaveNote": "ಟಿಪ್ಪಣಿಯನ್ನು ಉಳಿಸಲು ವಿಫಲವಾಗಿದೆ", + "noteSavedSuccessfully": "ಟಿಪ್ಪಣಿಯನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಉಳಿಸಲಾಗಿದೆ", + "noteUpdatedSuccessfully": "ಟಿಪ್ಪಣಿಯನ್ನು ಯಶಸ್ವಿಯಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ", + "notesSyncSuccessfull": "ಟಿಪ್ಪಣಿಗಳ ಸಿಂಕ್ ಯಶಸ್ವಿಯಾಗಿದೆ", + "loginToEnableAutoSync": "ಸ್ವಯಂ ಸಿಂಕ್ ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಲು ದಯವಿಟ್ಟು ಲಾಗಿನ್ ಮಾಡಿ", + "enableAutoSave": "ಸ್ವಯಂ ಉಳಿಸುವಿಕೆಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ", + "dateFilter": "ದಿನಾಂಕ ಫಿಲ್ಟರ್", + "from": "ಇಂದ", + "to": "ಗೆ", + "areYouSureAboutLoggingOut": "ಲಾಗ್ ಔಟ್ ಮಾಡುವ ಕುರಿತು ನೀವು ಖಚಿತವಾಗಿರುವಿರಾ?", + "sendFeedback": "ಪ್ರತಿಕ್ರಿಯೆ ಕಳುಹಿಸಿ", + "shareWithFriends": "ಸ್ನೇಹಿತರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ", + "chooseTheme": "ಥೀಮ್ ಆಯ್ಕೆಮಾಡಿ", + "appVersion": "ಅಪ್ಲಿಕೇಶನ್ ಆವೃತ್ತಿ", + "continueAsGues": "ಅತಿಥಿಯಾಗಿ ಮುಂದುವರಿಯಿರಿ", + "byContinuingYouAgree": "ಮುಂದುವರಿಸುವ ಮೂಲಕ, ನೀವು ನಮ್ಮ ಸಮ್ಮತಿಸುತ್ತೀರಿ", + "privacyPolicy": "ಗೌಪ್ಯತಾ ನೀತಿ", + "closeTheApp": "ಅಪ್ಲಿಕೇಶನ್ ಮುಚ್ಚುವುದೇ?", + "changePassword": "ಗುಪ್ತಪದವನ್ನು ಬದಲಿಸಿ", + "changeEmail": "ಇಮೇಲ್ ಬದಲಾಯಿಸಿ", + "setupYourAccount": "ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಹೊಂದಿಸಿ", + "logIn": "ಲಾಗಿನ್ ಮಾಡಿ", + "logOut": "ಲಾಗ್ ಔಟ್", + "signIn": "ಸೈನ್ ಇನ್ ಮಾಡಿ", + "forgotPassword": "ಪಾಸ್ವರ್ಡ್ ಮರೆತಿರಾ", + "newPassword": "ಹೊಸ ಪಾಸ್ವರ್ಡ್", + "confirmNewPassword": "ಹೊಸ ಗುಪ್ತಪದವನ್ನು ಖಚಿತಪಡಿಸಿ", + "dontHaveAccount": "ಖಾತೆ ಇಲ್ಲವೇ?", + "signUp": "ಸೈನ್ ಅಪ್ ಮಾಡಿ", + "tapToExpandTitle": "ಶೀರ್ಷಿಕೆಯನ್ನು ವಿಸ್ತರಿಸಲು ಇಲ್ಲಿ ಟ್ಯಾಪ್ ಮಾಡಿ", + "gallery": "ಗ್ಯಾಲರಿ", + "link": "ಲಿಂಕ್", + "camera": "ಕ್ಯಾಮೆರಾ", + "video": "ವೀಡಿಯೊ", + "youHaveUnsavedChanges": "ನೀವು ಉಳಿಸದ ಬದಲಾವಣೆಗಳನ್ನು ಹೊಂದಿರುವಿರಿ", + "dropbox": "ಡ್ರಾಪ್ಬಾಕ್ಸ್", + "signedInAs": "ನಂತೆ ಸೈನ್ ಇನ್ ಮಾಡಲಾಗಿದೆ", + "lastSynced": "ಕೊನೆಯದಾಗಿ ಸಿಂಕ್ ಮಾಡಿರುವುದು:", + "notAvailable": "ಲಭ್ಯವಿಲ್ಲ", + "googleDrive": "ಗೂಗಲ್ ಡ್ರೈವ್", + "chooseTheSyncSource": "ಸಿಂಕ್ ಮೂಲವನ್ನು ಆಯ್ಕೆಮಾಡಿ", + "done": "ಮುಗಿದಿದೆ", + "delete": "ಅಳಿಸಿ", + "cancel": "ರದ್ದುಮಾಡು", + "submit": "ಸಲ್ಲಿಸು", + "appDescription": "ಡೈರಿವಾಲ್ಟ್ ಅನ್ನು ಅನ್ವೇಷಿಸಿ - ನಿಮ್ಮ ಆಲೋಚನೆಗಳು, ನೆನಪುಗಳು ಮತ್ತು ಕ್ಷಣಗಳನ್ನು ಸಲೀಸಾಗಿ ಸೆರೆಹಿಡಿಯಲು ಸಹಾಯ ಮಾಡಲು ವಿನ್ಯಾಸಗೊಳಿಸಲಾದ ಡೈರಿ ಅಪ್ಲಿಕೇಶನ್. ಪ್ಲೇ ಸ್ಟೋರ್‌ನಲ್ಲಿ ಈಗ ಲಭ್ಯವಿದೆ!" +} diff --git a/lib/l10n/intl_pa.arb b/lib/l10n/intl_pa.arb new file mode 100644 index 00000000..90f616df --- /dev/null +++ b/lib/l10n/intl_pa.arb @@ -0,0 +1,78 @@ +{ + "language": "Panjabi", + "@language": { + "description": "ਮੌਜੂਦਾ ਭਾਸ਼ਾ" + }, + "pageNotFound": "ਪੰਨਾ ਮਿਲਿਆ ਨਹੀਂ", + "settings": "ਵਿਵਸਥਾ", + "enterNewEmail": "ਨਵੀਂ ਈਮੇਲ ਦਾਖਲ ਕਰੋ", + "enterRegisteredEmail": "ਰਜਿਸਟਰਡ ਈਮੇਲ ਦਰਜ ਕਰੋ", + "enterCurrentPassword": "ਮੌਜੂਦਾ ਪਾਸਵਰਡ ਦਿਓ", + "resetPassword": "ਪਾਸਵਰਡ ਰੀਸੈੱਟ", + "autoSync": "ਆਟੋ ਸਿੰਕ", + "alreadyHaveAnAccount": "ਕੀ ਪਹਿਲਾਂ ਤੋਂ ਹੀ ਖਾਤਾ ਹੈ?", + "syncNow": "ਹੁਣ ਸਿੰਕ ਕਰੋ", + "availablePlatformsForSync": "ਸਿੰਕ ਲਈ ਉਪਲਬਧ ਪਲੇਟਫਾਰਮ", + "automaticallySyncNotesWithCloud": "ਕਲਾਉਡ ਨਾਲ ਆਟੋਮੈਟਿਕਲੀ ਸਿੰਕ", + "deletionFailed": "ਮਿਟਾਉਣਾ ਅਸਫਲ ਰਿਹਾ", + "enableFingerPrintLogin": "ਫਿੰਗਰਪ੍ਰਿੰਟ ਲੌਗਇਨ ਨੂੰ ਸਮਰੱਥ ਬਣਾਓ", + "fingerPrintAthShouldBeEnabledInDeviceSettings": "ਡਿਵਾਈਸ ਸੈਟਿੰਗਾਂ ਵਿੱਚ ਫਿੰਗਰਪ੍ਰਿੰਟ ਪ੍ਰਮਾਣੀਕਰਨ ਨੂੰ ਸਮਰੱਥ ਬਣਾਇਆ ਜਾਣਾ ਚਾਹੀਦਾ ਹੈ", + "fingerprintLoginFailed": "ਫਿੰਗਰਪ੍ਰਿੰਟ ਲਾਗਇਨ ਅਸਫਲ ਰਿਹਾ", + "tooManyWrongAttempts": "ਬਹੁਤ ਸਾਰੀਆਂ ਗਲਤ ਕੋਸ਼ਿਸ਼ਾਂ, ਕਿਰਪਾ ਕਰਕੇ ਪਾਸਵਰਡ ਨਾਲ ਲੌਗਇਨ ਕਰੋ", + "emailUpdatedSuccessfully": "ਈਮੇਲ ਸਫਲਤਾਪੂਰਵਕ ਅੱਪਡੇਟ ਕੀਤੀ ਗਈ, ਕਿਰਪਾ ਕਰਕੇ ਦੁਬਾਰਾ ਲੌਗਇਨ ਕਰੋ", + "passwordResetMailSent": "ਪਾਸਵਰਡ ਰੀਸੈਟ ਈਮੇਲ ਭੇਜੀ ਗਈ", + "incorrectPassword": "ਗਲਤ ਪਾਸਵਰਡ", + "passwordVerified": "ਪਾਸਵਰਡ ਦੀ ਪੁਸ਼ਟੀ ਕੀਤੀ", + "passwordsDontMatch": "ਪਾਸਵਰਡ ਮੇਲ ਨਹੀਂ ਖਾਂਦੇ", + "passwordResetSuccessful": "ਪਾਸਵਰਡ ਰੀਸੈਟ ਸਫਲ ਰਿਹਾ", + "unexpectedErrorOccured": "ਅਚਾਨਕ ਗਲਤੀ ਆਈ ਹੈ", + "pleaseSetupYourAccountToUseThisFeature": "ਕਿਰਪਾ ਕਰਕੇ ਇਸ ਵਿਸ਼ੇਸ਼ਤਾ ਦੀ ਵਰਤੋਂ ਕਰਨ ਲਈ ਆਪਣਾ ਖਾਤਾ ਸੈਟ ਅਪ ਕਰੋ", + "accountSetupSuccessful": "ਖਾਤਾ ਸੈੱਟਅੱਪ ਸਫਲ ਰਿਹਾ", + "failedToFetchNote": "ਨੋਟ ਪ੍ਰਾਪਤ ਕਰਨ ਵਿੱਚ ਅਸਫਲ", + "failedToSaveNote": "ਨੋਟ ਸੰਭਾਲਣ ਵਿੱਚ ਅਸਫਲ", + "noteSavedSuccessfully": "ਨੋਟ-ਕਥਨ ਸਫਲਤਾਪੂਰਵਕ ਸੁਰੱਖਿਅਤ ਕੀਤਾ ਗਿਆ", + "noteUpdatedSuccessfully": "ਨੋਟ ਸਫਲਤਾਪੂਰਵਕ ਅੱਪਡੇਟ ਕੀਤਾ ਗਿਆ", + "notesSyncSuccessfull": "ਨੋਟਸ ਸਿੰਕ ਸਫਲ", + "loginToEnableAutoSync": "ਆਟੋ ਸਿੰਕ ਨੂੰ ਸਮਰੱਥ ਕਰਨ ਲਈ ਲੌਗਇਨ ਕਰੋ", + "enableAutoSave": "ਆਟੋ ਸੇਵ ਨੂੰ ਸਮਰੱਥ ਬਣਾਓ", + "dateFilter": "ਮਿਤੀ ਫਿਲਟਰ", + "from": "ਤੋਂ", + "to": "ਨੂੰ", + "areYouSureAboutLoggingOut": "ਕੀ ਤੁਸੀਂ ਯਕੀਨੀ ਤੌਰ 'ਤੇ ਲੌਗ ਆਊਟ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?", + "sendFeedback": "ਫੀਡਬੈਕ ਭੇਜੋ", + "shareWithFriends": "ਦੋਸਤਾਂ ਨਾਲ ਸਾਂਝਾ ਕਰੋ", + "chooseTheme": "ਥੀਮ ਚੁਣੋ", + "appVersion": "ਐਪਲੀਕੇਸ਼ਨ ਵਰਜਨ", + "continueAsGues": "ਮਹਿਮਾਨ ਵਜੋਂ ਜਾਰੀ ਰੱਖੋ", + "byContinuingYouAgree": "ਜਾਰੀ ਰੱਖ ਕੇ, ਤੁਸੀਂ ਸਾਡੇ ਨਾਲ ਸਹਿਮਤ ਹੁੰਦੇ ਹੋ ", + "privacyPolicy": "ਪਰਾਈਵੇਟ ਨੀਤੀ", + "closeTheApp": "ਐਪ ਨੂੰ ਬੰਦ ਕਰਨਾ ਹੈ?", + "changePassword": "ਪਾਸਵਰਡ ਬਦਲੋ", + "changeEmail": "ਈਮੇਲ ਬਦਲੋ", + "setupYourAccount": "ਆਪਣਾ ਖਾਤਾ ਸੈਟ ਅਪ ਕਰੋ", + "logIn": "ਲਾਗਿਨ", + "logOut": "ਬਾਹਰ ਆਉਣਾ", + "signIn": "ਸਾਈਨ - ਇਨ", + "forgotPassword": "ਪਾਸਵਰਡ ਭੁੱਲ ਗਏ", + "newPassword": "ਨਵਾਂ ਪਾਸਵਰਡ", + "confirmNewPassword": "ਨਵੇਂ ਪਾਸਵਰਡ ਦੀ ਪੁਸ਼ਟੀ ਕਰੋ", + "dontHaveAccount": "ਕੀ ਕੋਈ ਖਾਤਾ ਨਹੀਂ ਹੈ?", + "signUp": "ਸਾਇਨ ਅਪ", + "tapToExpandTitle": "ਸਿਰਲੇਖ ਦਾ ਵਿਸਤਾਰ ਕਰਨ ਲਈ ਇੱਥੇ ਟੈਪ ਕਰੋ", + "gallery": "ਗੈਲਰੀ", + "link": "ਲਿੰਕ", + "camera": "ਕੈਮਰਾ", + "video": "ਵੀਡੀਓ", + "youHaveUnsavedChanges": "ਅਣਰੱਖਿਅਤ ਤਬਦੀਲੀਆਂ", + "dropbox": "ਡ੍ਰੌਪਬਾਕਸ", + "signedInAs": "ਵਜੋਂ ਸਾਈਨ ਇਨ ਕੀਤਾ ਹੈ", + "lastSynced": "ਆਖਰੀ ਵਾਰ ਸਿੰਕ ਕੀਤਾ ਗਿਆ", + "notAvailable": "ਉਪਲਭਦ ਨਹੀ", + "googleDrive": "ਗੂਗਲ ਡਰਾਈਵ", + "chooseTheSyncSource": "ਸਿੰਕ ਸਰੋਤ ਚੁਣੋ", + "done": "ਹੋ ਗਿਆ", + "delete": "ਮਿਟਾਓ", + "cancel": "ਰੱਦ ਕਰੋ", + "submit": "ਜਮ੍ਹਾਂ ਕਰੋ", + "appDescription": "ਡਾਇਰੀਵਾਲਟ - ਇੱਕ ਡਾਇਰੀ ਐਪ ਤੁਹਾਡੇ ਵਿਚਾਰਾਂ, ਯਾਦਾਂ ਅਤੇ ਪਲਾਂ ਨੂੰ ਆਸਾਨੀ ਨਾਲ ਕੈਪਚਰ ਕਰਨ ਵਿੱਚ ਤੁਹਾਡੀ ਮਦਦ ਕਰਨ ਲਈ ਤਿਆਰ ਕੀਤਾ ਗਿਆ ਹੈ। ਹੁਣ ਪਲੇ ਸਟੋਰ 'ਤੇ ਉਪਲਬਧ ਹੈ!" +} diff --git a/lib/l10n/intl_pt.arb b/lib/l10n/intl_pt.arb new file mode 100644 index 00000000..b4c37a00 --- /dev/null +++ b/lib/l10n/intl_pt.arb @@ -0,0 +1,78 @@ +{ + "language": "Português - Brasil", + "@language": { + "description": "Idioma atual" + }, + "pageNotFound": "Página não encontrada", + "settings": "COnfigurações", + "enterNewEmail": "Insira um novo email", + "enterRegisteredEmail": "Insira o email cadastrado", + "enterCurrentPassword": "Insira a senha atual", + "resetPassword": "Resetar senhar", + "autoSync": "Sincronizar automaticamente", + "alreadyHaveAnAccount": "Já possui uma conta?", + "syncNow": "Sincronizar", + "availablePlatformsForSync": "Plataformas disponíveis para sincronização", + "automaticallySyncNotesWithCloud": "Sincronizar anotações para a nuvem automaticamente", + "deletionFailed": "Falha ao deletar", + "enableFingerPrintLogin": "Habilitar login por biometria", + "fingerPrintAthShouldBeEnabledInDeviceSettings": "O login por biometria deve ser habilitado nas configurações do dispositivo", + "fingerprintLoginFailed": "Falha no login por biometria", + "tooManyWrongAttempts": "Muitas tentativas incorretas, tente o login utilizando a senha", + "emailUpdatedSuccessfully": "Email atualizado com sucesso, faça o login novamente", + "passwordResetMailSent": "Email para recuperação de senha enviado", + "incorrectPassword": "Senha incorreta", + "passwordVerified": "Senha verificada", + "passwordsDontMatch": "As senhas não são iguais", + "passwordResetSuccessful": "Senha alterada com sucesso", + "unexpectedErrorOccured": "Ocorreu um erro inesperado", + "pleaseSetupYourAccountToUseThisFeature": "Por favor, configure sua conta para usar essa funcionalidade", + "accountSetupSuccessful": "Conta configurada com sucesso", + "failedToFetchNote": "Falha ao buscar anotação", + "failedToSaveNote": "Falha ao salvar anotação", + "noteSavedSuccessfully": "Anotação salva com sucesso", + "noteUpdatedSuccessfully": "Anotação atualizada com sucesso", + "notesSyncSuccessfull": "Anotações sincronizadas com sucesso", + "loginToEnableAutoSync": "Faça o login para habilitar a sincronização automática", + "enableAutoSave": "Habilitar salvamento automático", + "dateFilter": "Filtro por data", + "from": "De", + "to": "Para", + "areYouSureAboutLoggingOut": "Deseja sair do aplicativo?", + "sendFeedback": "Mande um feedback", + "shareWithFriends": "Compartilhar com os amigos", + "chooseTheme": "Escolha um tema", + "appVersion": "Versão do app", + "continueAsGues": "Continuar como convidado", + "byContinuingYouAgree": "Ao clicar em prosseguir você concorda com nossas ", + "privacyPolicy": "Políticas de privacidade", + "closeTheApp": "Deseja fechar o app?", + "changePassword": "Alterar senha", + "changeEmail": "Alterar email", + "setupYourAccount": "Configure sua conta", + "logIn": "Login", + "logOut": "Sair", + "signIn": "Entrar", + "forgotPassword": "Esqueci minha senha", + "newPassword": "Nova senha", + "confirmNewPassword": "Confirmar nova senha", + "dontHaveAccount": "Não possui uma conta?", + "signUp": "Cadastre-se", + "tapToExpandTitle": "Clique aqui para expandir o título", + "gallery": "Galeria", + "link": "Link", + "camera": "Câmera", + "video": "Vídeo", + "youHaveUnsavedChanges": "Você possui alterações não salvas", + "dropbox": "Dropbox", + "signedInAs": "Logado como", + "lastSynced": "Última sincronização: ", + "notAvailable": "Indisponível", + "googleDrive": "Google Drive", + "chooseTheSyncSource": "Escolha a fonte de sincronização", + "done": "Pronto", + "delete": "Excluir", + "cancel": "Cancelar", + "submit": "Enviar", + "appDescription": "Discover diaryVault - um aplicativo de diário feito para te ajudar a salvar seus pensamentos, suas memórias e seus momentos sem maiores esforços. Disponível agora na Play Store!" +} diff --git a/lib/l10n/arb/app_sw.arb b/lib/l10n/intl_sw.arb similarity index 100% rename from lib/l10n/arb/app_sw.arb rename to lib/l10n/intl_sw.arb diff --git a/pubspec.yaml b/pubspec.yaml index d5e99690..8dc6213e 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: dairy_app -description: Diaryvault is a personal diary application equipped with a rich - text editor, it has support for images, and videos as well. It also supports - emojis from Google Keyboards. +description: Diaryvault is a personal diary application equipped with a rich text editor, + it has support for images, and videos as well. It also supports emojis from + Google Keyboards. # The following line prevents the package from being accidentally published to # pub.dev using `flutter pub publish`. This is preferred for private packages. @@ -85,7 +85,6 @@ dev_dependencies: integration_test: sdk: flutter - # not using this as of now # flutter_icons: # android: 'launcher_icon' @@ -100,7 +99,7 @@ dependency_overrides: # For information on the generic Dart part of this file, see the # following page: https://dart.dev/tools/pub/pubspec # The following section is specific to Flutter. - analyzer: + ? analyzer flutter: # The following line ensures that the Material Icons font is # included with your application, so that you can use the icons in @@ -136,3 +135,5 @@ flutter: # # For details regarding fonts from package dependencies, # see https://flutter.dev/custom-fonts/#from-packages +flutter_intl: + enabled: true