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.
 
 
 
 

34 lines
701 B

// 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 loading => 'Loading...';
@override
String get home => 'Home';
@override
String get shop => 'Shop';
@override
String get awards => 'Awards';
@override
String get profile => 'Profile';
@override
String get pro_membership => 'Pro Membership';
@override
String get custom_league => 'Custom League';
@override
String get friends_battle => 'Friends Battle';
}