Solian/lib/translations.dart

18 lines
378 B
Dart
Raw Normal View History

2024-05-18 10:17:16 +00:00
import 'package:get/get.dart';
class SolianMessages extends Translations {
@override
Map<String, Map<String, String>> get keys => {
'en_US': {
'page': 'Page',
'home': 'Home',
'account': 'Account',
},
'zh_CN': {
'page': '页面',
'home': '首页',
'account': '账号',
}
};
}