Files
maps_bookmarks/lib/l10n/app_localizations_en.dart
marco 77a647d17d
All checks were successful
Flutter APK Build / Calculate Version (pull_request) Successful in 14s
Flutter APK Build / Build Flutter APK (pull_request) Successful in 6m35s
Flutter APK Build / Create Release (pull_request) Has been skipped
[fix] Added basic locatlization
2026-01-21 13:50:24 +01:00

32 lines
713 B
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';
}