71 lines
1.4 KiB
Dart
71 lines
1.4 KiB
Dart
// 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 addToCollection(String collection_name) {
|
|
return 'Add to $collection_name';
|
|
}
|
|
|
|
@override
|
|
String get cancel => 'Cancel';
|
|
|
|
@override
|
|
String get chooseCollection => 'Choose Collection';
|
|
|
|
@override
|
|
String get collections => 'Collections';
|
|
|
|
@override
|
|
String get tipCreateCollections =>
|
|
'Create your first Collection to get started!';
|
|
|
|
@override
|
|
String get search => 'Search';
|
|
|
|
@override
|
|
String get createBookmark => 'Create Bookmark';
|
|
|
|
@override
|
|
String get createCollection => 'Create Collection';
|
|
|
|
@override
|
|
String get create => 'Create';
|
|
|
|
@override
|
|
String get delete => 'Delete';
|
|
|
|
@override
|
|
String get add => 'Add';
|
|
|
|
@override
|
|
String get startSearching => 'Start searching';
|
|
|
|
@override
|
|
String get tipNoResults => 'There are no results that match your search';
|
|
|
|
@override
|
|
String get collectionName => 'Collection Name';
|
|
|
|
@override
|
|
String get bookmarkTitle => 'Bookmark Title';
|
|
|
|
@override
|
|
String get url => 'Url';
|
|
|
|
@override
|
|
String get description => 'Description';
|
|
|
|
@override
|
|
String get settings => 'Settings';
|
|
|
|
@override
|
|
String get activateJsonExport => 'Activate json export';
|
|
}
|