You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
106 lines
2.5 KiB
106 lines
2.5 KiB
// 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 => 'wait a few moments...';
|
|
|
|
@override
|
|
String get downloading_data => 'Downloading initial data';
|
|
|
|
@override
|
|
String get lost_connection => 'Lost connection!';
|
|
|
|
@override
|
|
String get retry => 'Retry';
|
|
|
|
@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!';
|
|
|
|
@override
|
|
String get skip => 'Skip';
|
|
|
|
@override
|
|
String get intro_1_1 =>
|
|
'Dinner is ready! Come quickly and wash your beautiful hands!';
|
|
|
|
@override
|
|
String get intro_1_2 =>
|
|
'Mom! Our hands aren\'t that dirty! We\'ll just wipe them with a tissue!';
|
|
|
|
@override
|
|
String get intro_2 =>
|
|
'The purity of faith... \nIt means cleanliness is a sign of faith!';
|
|
|
|
@override
|
|
String get intro_3 => 'These good deeds make our souls strong and beautiful!';
|
|
|
|
@override
|
|
String get intro_4 => 'Do you want to travel to the Promised Garden?';
|
|
|
|
@override
|
|
String get intro_5 => 'Yessss....\nWe are ready!';
|
|
|
|
@override
|
|
String get want_to_exit => 'Want To Exit?';
|
|
|
|
@override
|
|
String get exit_dialog_desc =>
|
|
'Come back, hero!\nThe adventure isn’t over yet';
|
|
|
|
@override
|
|
String get cancel => 'Cancel';
|
|
|
|
@override
|
|
String get exit => 'Exit';
|
|
}
|