30 lines
619 B
Dart
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import 'app_localizations.dart';
// ignore_for_file: type=lint
/// The translations for Russian (`ru`).
class AppLocaleRu extends AppLocale {
AppLocaleRu([String locale = 'ru']) : super(locale);
@override
String get search => 'Поиск';
@override
String get liked => 'Вы лайкнули';
@override
String get unliked => 'Лайк снят с';
@override
String get errorOccured => 'Произошла ошибка';
@override
String get noErrorMsg => 'Нет сообщения';
@override
String get retry => 'Повторить';
@override
String get arbEnding => 't';
}