cake_wallet/lib/utils/language_list.dart
Mathias Herberts 3f19564da4
Added French localization (#290)
* Initial commit of French localization

* Added French

* Changed translation for view key to stick to the one used in Moneropedia
2022-03-09 15:06:34 +03:00

11 lines
370 B
Dart

class LanguageList {
static const english = 'English';
static const chineseSimplified = 'Chinese (simplified)';
static const dutch = 'Dutch';
static const french = 'French';
static const german = 'German';
static const japanese = 'Japanese';
static const portuguese = 'Portuguese';
static const russian = 'Russian';
static const spanish = 'Spanish';
}