Skip to content
Snippets Groups Projects
Commit df9955c1 authored by vjrj's avatar vjrj
Browse files

Add missing jar

parent 90e868d2
No related branches found
No related tags found
No related merge requests found
import 'dart:ui';
import 'package:easy_localization/easy_localization.dart';
import 'package:feedback/feedback.dart';
class CustomFeedbackLocalizations implements FeedbackLocalizations {
@override
String get submitButtonText => tr('feedback_submit');
@override
String get feedbackDescriptionText => tr('feedback_whats_wrong');
@override
String get draw => tr('feedback_draw');
@override
String get navigate => tr('feedback_navigate');
}
class CustomFeedbackLocalizationsDelegate
extends GlobalFeedbackLocalizationsDelegate {
@override
// ignore: overridden_fields
final Map<Locale, FeedbackLocalizations> supportedLocales =
<Locale, FeedbackLocalizations>{
const Locale('es', 'AST'): CustomFeedbackLocalizations(),
const Locale('ca'): CustomFeedbackLocalizations(),
const Locale('de'): CustomFeedbackLocalizations(),
const Locale('en'): CustomFeedbackLocalizations(),
const Locale('es'): CustomFeedbackLocalizations(),
const Locale('fr'): CustomFeedbackLocalizations(),
const Locale('gl'): CustomFeedbackLocalizations(),
const Locale('nl'): CustomFeedbackLocalizations(),
const Locale('pt'): CustomFeedbackLocalizations(),
};
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment