|
|
|
import 'dart:async';
|
|
|
|
|
|
|
|
import 'package:flutter/foundation.dart';
|
|
|
|
import 'package:flutter/widgets.dart';
|
|
|
|
import 'package:flutter_localizations/flutter_localizations.dart';
|
|
|
|
import 'package:intl/intl.dart' as intl;
|
|
|
|
|
|
|
|
import 'localizations_en.dart';
|
|
|
|
|
|
|
|
/// Callers can lookup localized strings with an instance of AppLocalizations
|
|
|
|
/// returned by `AppLocalizations.of(context)`.
|
|
|
|
///
|
|
|
|
/// Applications need to include `AppLocalizations.delegate()` in their app's
|
|
|
|
/// `localizationDelegates` list, and the locales they support in the app's
|
|
|
|
/// `supportedLocales` list. For example:
|
|
|
|
///
|
|
|
|
/// ```dart
|
|
|
|
/// import 'l10n/localizations.dart';
|
|
|
|
///
|
|
|
|
/// return MaterialApp(
|
|
|
|
/// localizationsDelegates: AppLocalizations.localizationsDelegates,
|
|
|
|
/// supportedLocales: AppLocalizations.supportedLocales,
|
|
|
|
/// home: MyApplicationHome(),
|
|
|
|
/// );
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// ## Update pubspec.yaml
|
|
|
|
///
|
|
|
|
/// Please make sure to update your pubspec.yaml to include the following
|
|
|
|
/// packages:
|
|
|
|
///
|
|
|
|
/// ```yaml
|
|
|
|
/// dependencies:
|
|
|
|
/// # Internationalization support.
|
|
|
|
/// flutter_localizations:
|
|
|
|
/// sdk: flutter
|
|
|
|
/// intl: any # Use the pinned version from flutter_localizations
|
|
|
|
///
|
|
|
|
/// # Rest of dependencies
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// ## iOS Applications
|
|
|
|
///
|
|
|
|
/// iOS applications define key application metadata, including supported
|
|
|
|
/// locales, in an Info.plist file that is built into the application bundle.
|
|
|
|
/// To configure the locales supported by your app, you’ll need to edit this
|
|
|
|
/// file.
|
|
|
|
///
|
|
|
|
/// First, open your project’s ios/Runner.xcworkspace Xcode workspace file.
|
|
|
|
/// Then, in the Project Navigator, open the Info.plist file under the Runner
|
|
|
|
/// project’s Runner folder.
|
|
|
|
///
|
|
|
|
/// Next, select the Information Property List item, select Add Item from the
|
|
|
|
/// Editor menu, then select Localizations from the pop-up menu.
|
|
|
|
///
|
|
|
|
/// Select and expand the newly-created Localizations item then, for each
|
|
|
|
/// locale your application supports, add a new item and select the locale
|
|
|
|
/// you wish to add from the pop-up menu in the Value field. This list should
|
|
|
|
/// be consistent with the languages listed in the AppLocalizations.supportedLocales
|
|
|
|
/// property.
|
|
|
|
abstract class AppLocalizations {
|
|
|
|
AppLocalizations(String locale) : localeName = intl.Intl.canonicalizedLocale(locale.toString());
|
|
|
|
|
|
|
|
final String localeName;
|
|
|
|
|
|
|
|
static AppLocalizations of(BuildContext context) {
|
|
|
|
return Localizations.of<AppLocalizations>(context, AppLocalizations)!;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const LocalizationsDelegate<AppLocalizations> delegate = _AppLocalizationsDelegate();
|
|
|
|
|
|
|
|
/// A list of this localizations delegate along with the default localizations
|
|
|
|
/// delegates.
|
|
|
|
///
|
|
|
|
/// Returns a list of localizations delegates containing this delegate along with
|
|
|
|
/// GlobalMaterialLocalizations.delegate, GlobalCupertinoLocalizations.delegate,
|
|
|
|
/// and GlobalWidgetsLocalizations.delegate.
|
|
|
|
///
|
|
|
|
/// Additional delegates can be added by appending to this list in
|
|
|
|
/// MaterialApp. This list does not have to be used at all if a custom list
|
|
|
|
/// of delegates is preferred or required.
|
|
|
|
static const List<LocalizationsDelegate<dynamic>> localizationsDelegates = <LocalizationsDelegate<dynamic>>[
|
|
|
|
delegate,
|
|
|
|
GlobalMaterialLocalizations.delegate,
|
|
|
|
GlobalCupertinoLocalizations.delegate,
|
|
|
|
GlobalWidgetsLocalizations.delegate,
|
|
|
|
];
|
|
|
|
|
|
|
|
/// A list of this localizations delegate's supported locales.
|
|
|
|
static const List<Locale> supportedLocales = <Locale>[Locale('en')];
|
|
|
|
|
|
|
|
/// No description provided for @general.
|
|
|
|
///
|
|
|
|
/// In en, this message translates to:
|
|
|
|
/// **'General'**
|
|
|
|
String get general;
|
|
|
|
|
|
|
|
/// No description provided for @note.
|
|
|
|
///
|
|
|
|
/// In en, this message translates to:
|
|
|
|
/// **'Note'**
|
|
|
|
String get note;
|
|
|
|
|
|
|
|
/// No description provided for @notes.
|
|
|
|
///
|
|
|
|
/// In en, this message translates to:
|
|
|
|
/// **'Notes'**
|
|
|
|
String get notes;
|
|
|
|
|
|
|
|
/// No description provided for @categories.
|
|
|
|
///
|
|
|
|
/// In en, this message translates to:
|
|
|
|
/// **'Categories'**
|
|
|
|
String get categories;
|
|
|
|
|
|
|
|
/// No description provided for @createNote.
|
|
|
|
///
|
|
|
|
/// In en, this message translates to:
|
|
|
|
/// **'Create note'**
|
|
|
|
String get createNote;
|
|
|
|
|
|
|
|
/// No description provided for @category.
|
|
|
|
///
|
|
|
|
/// In en, this message translates to:
|
|
|
|
/// **'Category'**
|
|
|
|
String get category;
|
|
|
|
|
|
|
|
/// No description provided for @setCategory.
|
|
|
|
///
|
|
|
|
/// In en, this message translates to:
|
|
|
|
/// **'Set category'**
|
|
|
|
String get setCategory;
|
|
|
|
|
|
|
|
/// No description provided for @noteTitle.
|
|
|
|
///
|
|
|
|
/// In en, this message translates to:
|
|
|
|
/// **'Title'**
|
|
|
|
String get noteTitle;
|
|
|
|
|
|
|
|
/// No description provided for @noteChangedOnServer.
|
|
|
|
///
|
|
|
|
/// In en, this message translates to:
|
|
|
|
/// **'The note has been changed on the server. Please refresh and try again'**
|
|
|
|
String get noteChangedOnServer;
|
|
|
|
|
|
|
|
/// No description provided for @notesInCategory.
|
|
|
|
///
|
|
|
|
/// In en, this message translates to:
|
|
|
|
/// **'{count} notes'**
|
|
|
|
String notesInCategory(int count);
|
|
|
|
|
|
|
|
/// No description provided for @uncategorized.
|
|
|
|
///
|
|
|
|
/// In en, this message translates to:
|
|
|
|
/// **'Uncategorized'**
|
|
|
|
String get uncategorized;
|
|
|
|
|
|
|
|
/// No description provided for @showEditor.
|
|
|
|
///
|
|
|
|
/// In en, this message translates to:
|
|
|
|
/// **'Edit note'**
|
|
|
|
String get showEditor;
|
|
|
|
|
|
|
|
/// No description provided for @showPreview.
|
|
|
|
///
|
|
|
|
/// In en, this message translates to:
|
|
|
|
/// **'Preview note'**
|
|
|
|
String get showPreview;
|
|
|
|
|
|
|
|
/// No description provided for @star.
|
|
|
|
///
|
|
|
|
/// In en, this message translates to:
|
|
|
|
/// **'Star note'**
|
|
|
|
String get star;
|
|
|
|
|
|
|
|
/// No description provided for @unstar.
|
|
|
|
///
|
|
|
|
/// In en, this message translates to:
|
|
|
|
/// **'Unstar note'**
|
|
|
|
String get unstar;
|
|
|
|
|
|
|
|
/// No description provided for @changeCategory.
|
|
|
|
///
|
|
|
|
/// In en, this message translates to:
|
|
|
|
/// **'Change note category'**
|
|
|
|
String get changeCategory;
|
|
|
|
|
|
|
|
/// No description provided for @deleteNoteConfirm.
|
|
|
|
///
|
|
|
|
/// In en, this message translates to:
|
|
|
|
/// **'Are you sure you want to delete the note \'{name}\'?'**
|
|
|
|
String deleteNoteConfirm(String name);
|
|
|
|
|
|
|
|
/// No description provided for @optionsDefaultCategory.
|
|
|
|
///
|
|
|
|
/// In en, this message translates to:
|
|
|
|
/// **'Category to show by default'**
|
|
|
|
String get optionsDefaultCategory;
|
|
|
|
|
|
|
|
/// No description provided for @optionsDefaultNoteViewType.
|
|
|
|
///
|
|
|
|
/// In en, this message translates to:
|
|
|
|
/// **'How to show note'**
|
|
|
|
String get optionsDefaultNoteViewType;
|
|
|
|
|
|
|
|
/// No description provided for @optionsDefaultNoteViewTypePreview.
|
|
|
|
///
|
|
|
|
/// In en, this message translates to:
|
|
|
|
/// **'Preview'**
|
|
|
|
String get optionsDefaultNoteViewTypePreview;
|
|
|
|
|
|
|
|
/// No description provided for @optionsDefaultNoteViewTypeEdit.
|
|
|
|
///
|
|
|
|
/// In en, this message translates to:
|
|
|
|
/// **'Editor'**
|
|
|
|
String get optionsDefaultNoteViewTypeEdit;
|
|
|
|
|
|
|
|
/// No description provided for @optionsNotesSortOrder.
|
|
|
|
///
|
|
|
|
/// In en, this message translates to:
|
|
|
|
/// **'Sort order of notes'**
|
|
|
|
String get optionsNotesSortOrder;
|
|
|
|
|
|
|
|
/// No description provided for @optionsNotesSortProperty.
|
|
|
|
///
|
|
|
|
/// In en, this message translates to:
|
|
|
|
/// **'How to sort notes'**
|
|
|
|
String get optionsNotesSortProperty;
|
|
|
|
|
|
|
|
/// No description provided for @optionsNotesSortPropertyLastModified.
|
|
|
|
///
|
|
|
|
/// In en, this message translates to:
|
|
|
|
/// **'Last modified'**
|
|
|
|
String get optionsNotesSortPropertyLastModified;
|
|
|
|
|
|
|
|
/// No description provided for @optionsNotesSortPropertyAlphabetical.
|
|
|
|
///
|
|
|
|
/// In en, this message translates to:
|
|
|
|
/// **'Alphabetical'**
|
|
|
|
String get optionsNotesSortPropertyAlphabetical;
|
|
|
|
|
|
|
|
/// No description provided for @optionsCategoriesSortOrder.
|
|
|
|
///
|
|
|
|
/// In en, this message translates to:
|
|
|
|
/// **'Sort order of categories'**
|
|
|
|
String get optionsCategoriesSortOrder;
|
|
|
|
|
|
|
|
/// No description provided for @optionsCategoriesSortProperty.
|
|
|
|
///
|
|
|
|
/// In en, this message translates to:
|
|
|
|
/// **'How to sort categories'**
|
|
|
|
String get optionsCategoriesSortProperty;
|
|
|
|
|
|
|
|
/// No description provided for @optionsCategoriesSortPropertyAlphabetical.
|
|
|
|
///
|
|
|
|
/// In en, this message translates to:
|
|
|
|
/// **'Alphabetical'**
|
|
|
|
String get optionsCategoriesSortPropertyAlphabetical;
|
|
|
|
|
|
|
|
/// No description provided for @optionsCategoriesSortPropertyNotesCount.
|
|
|
|
///
|
|
|
|
/// In en, this message translates to:
|
|
|
|
/// **'Count of notes'**
|
|
|
|
String get optionsCategoriesSortPropertyNotesCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
class _AppLocalizationsDelegate extends LocalizationsDelegate<AppLocalizations> {
|
|
|
|
const _AppLocalizationsDelegate();
|
|
|
|
|
|
|
|
@override
|
|
|
|
Future<AppLocalizations> load(Locale locale) {
|
|
|
|
return SynchronousFuture<AppLocalizations>(lookupAppLocalizations(locale));
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
bool isSupported(Locale locale) => <String>['en'].contains(locale.languageCode);
|
|
|
|
|
|
|
|
@override
|
|
|
|
bool shouldReload(_AppLocalizationsDelegate old) => false;
|
|
|
|
}
|
|
|
|
|
|
|
|
AppLocalizations lookupAppLocalizations(Locale locale) {
|
|
|
|
// Lookup logic when only language code is specified.
|
|
|
|
switch (locale.languageCode) {
|
|
|
|
case 'en':
|
|
|
|
return AppLocalizationsEn();
|
|
|
|
}
|
|
|
|
|
|
|
|
throw FlutterError('AppLocalizations.delegate failed to load unsupported locale "$locale". This is likely '
|
|
|
|
'an issue with the localizations generation tool. Please file an issue '
|
|
|
|
'on GitHub with a reproducible sample app and the gen-l10n configuration '
|
|
|
|
'that was used.');
|
|
|
|
}
|