-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #44 from jkoenig134/add-german-translations
Add german translations
- Loading branch information
Showing
4 changed files
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
import 'package:croppy/src/l10n/croppy_localizations.dart'; | ||
|
||
class CroppyLocalizationsDe extends CroppyLocalizations { | ||
CroppyLocalizationsDe() : super('de'); | ||
|
||
@override | ||
String get cancelLabel => 'Abbrechen'; | ||
|
||
@override | ||
String get cupertinoFreeformAspectRatioLabel => 'FREIFORM'; | ||
|
||
@override | ||
String get cupertinoOriginalAspectRatioLabel => 'ORIGINAL'; | ||
|
||
@override | ||
String get cupertinoResetLabel => 'ZURÜCKSETZEN'; | ||
|
||
@override | ||
String get cupertinoSquareAspectRatioLabel => 'QUADRAT'; | ||
|
||
@override | ||
String get doneLabel => 'Fertig'; | ||
|
||
@override | ||
String get materialFreeformAspectRatioLabel => 'Freiform'; | ||
|
||
@override | ||
String materialGetFlipLabel(LocalizationDirection direction) => | ||
'${direction == LocalizationDirection.vertical ? 'Vertikal' : 'Horizontal'} drehen'; | ||
|
||
@override | ||
String get materialOriginalAspectRatioLabel => 'Original'; | ||
|
||
@override | ||
String get materialResetLabel => 'Zurücksetzen'; | ||
|
||
@override | ||
String get materialSquareAspectRatioLabel => 'Quadrat'; | ||
|
||
@override | ||
String get saveLabel => 'Speichern'; | ||
} |