2024-12-21 22:56:48 +04:00

48 lines
1008 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 appBarTitle => 'Компьютерный магазин';
@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 unknown => 'Неизвестно';
@override
String get noPrice => 'Нет в наличии';
@override
String get apiReviewCount => 'отзыв';
@override
String get apiDesc => '';
@override
String get apiNoDesc => 'Описание недоступно';
@override
String get arbEnding => 't';
}