import 'localizations.dart'; /// The translations for English (`en`). class AppLocalizationsEn extends AppLocalizations { AppLocalizationsEn([String locale = 'en']) : super(locale); @override String get close => 'Close'; @override String get nextcloudAppNotImplementedYet => 'Sorry, this Nextcloud app has not been implemented yet'; @override String get dismissAll => 'Dismiss all notifications'; }