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.
 
 
 
 

42 lines
1.2 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 => '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.';
}