// ignore: unused_import import 'package:intl/intl.dart' as intl; import 'app_localizations.dart'; // ignore_for_file: type=lint /// The translations for English (`en`). class AppLocalizationsEn extends AppLocalizations { AppLocalizationsEn([String locale = 'en']) : super(locale); @override String get about_us => 'About us'; @override String get about_us_desc => 'Rive combines an interactive design tool, a new stateful graphics format, a lightweight multi-platform runtime, and a blazing-fast vector renderer. \nThis end-to-end pipeline brings interfaces to life with motion. It gives designers and devs the tools to build.'; @override String get tap_to_select => 'Tap the correct option to select.'; @override String get select_language => 'Select language'; @override String get select => 'Select'; @override String get please_wait => 'Please wait a few moments...'; @override String get downloading_data => 'Downloading initial data'; @override String get lost_connection => 'Lost connection!'; @override String get try_again => 'Try Again'; @override String get connected_to_internet => 'You must be connected to the internet to download the initial game data.'; @override String get start => 'Start'; @override String get step => 'Step'; @override String get question => 'Question'; @override String get be_cureful => 'Be more\ncareful.'; @override String get wrong_answer => 'Your answer\nwas not correct.'; @override String get you_got_diamond => 'You got the diamond'; @override String get view_map => 'View Map'; @override String get go_next => 'Go Next'; @override String get you_win => 'You Win!'; }