mirror of
https://github.com/smmarty/friflex_flutter_starter.git
synced 2025-12-22 09:30:45 +00:00
12 lines
287 B
Dart
12 lines
287 B
Dart
import 'app_localizations.dart';
|
|
|
|
// ignore_for_file: type=lint
|
|
|
|
/// The translations for Russian (`ru`).
|
|
class AppLocalizationsRu extends AppLocalizations {
|
|
AppLocalizationsRu([String locale = 'ru']) : super(locale);
|
|
|
|
@override
|
|
String get helloWorld => 'Привет, мир!';
|
|
}
|