flutter_application_1/lib/translations.dart

10 lines
248 B
Dart
Raw Normal View History

2024-05-06 17:28:10 +02:00
import 'package:flutter_application_1/enums.dart';
String translateInterval(PayoutInterval interval) {
switch (interval) {
case PayoutInterval.yearly:
return 'jährlich';
case PayoutInterval.monthly:
return 'monatlich';
}
}