59 lines
1.5 KiB
Dart
59 lines
1.5 KiB
Dart
|
// 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
|
||
|
// **************************************************************************
|
||
|
|
||
|
class S {
|
||
|
S();
|
||
|
|
||
|
static const AppLocalizationDelegate delegate =
|
||
|
AppLocalizationDelegate();
|
||
|
|
||
|
static Future<S> load(Locale locale) {
|
||
|
final String name = (locale.countryCode?.isEmpty ?? false) ? locale.languageCode : locale.toString();
|
||
|
final String localeName = Intl.canonicalizedLocale(name);
|
||
|
return initializeMessages(localeName).then((_) {
|
||
|
Intl.defaultLocale = localeName;
|
||
|
return S();
|
||
|
});
|
||
|
}
|
||
|
|
||
|
static S of(BuildContext context) {
|
||
|
return Localizations.of<S>(context, S);
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
class AppLocalizationDelegate extends LocalizationsDelegate<S> {
|
||
|
const AppLocalizationDelegate();
|
||
|
|
||
|
List<Locale> get supportedLocales {
|
||
|
return const <Locale>[
|
||
|
Locale.fromSubtags(languageCode: 'en'),
|
||
|
];
|
||
|
}
|
||
|
|
||
|
@override
|
||
|
bool isSupported(Locale locale) => _isSupported(locale);
|
||
|
@override
|
||
|
Future<S> load(Locale locale) => S.load(locale);
|
||
|
@override
|
||
|
bool shouldReload(AppLocalizationDelegate old) => false;
|
||
|
|
||
|
bool _isSupported(Locale locale) {
|
||
|
if (locale != null) {
|
||
|
for (Locale supportedLocale in supportedLocales) {
|
||
|
if (supportedLocale.languageCode == locale.languageCode) {
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
}
|