mirror of
https://github.com/Iconica-Development/flutter_registration.git
synced 2025-05-19 13:23:45 +02:00
16 lines
395 B
Dart
16 lines
395 B
Dart
|
class RegistrationTranslations {
|
||
|
const RegistrationTranslations({
|
||
|
this.title = 'Registreren',
|
||
|
this.registerBtn = 'Registreren',
|
||
|
this.previousStepBtn = 'Vorige stap',
|
||
|
this.nextStepBtn = 'Volgende stap',
|
||
|
this.closeBtn = 'Sluiten',
|
||
|
});
|
||
|
|
||
|
final String title;
|
||
|
final String registerBtn;
|
||
|
final String previousStepBtn;
|
||
|
final String nextStepBtn;
|
||
|
final String closeBtn;
|
||
|
}
|