Files
pixes/lib/utils/translation.dart
2024-05-13 09:36:23 +08:00

15 lines
327 B
Dart

import 'package:pixes/foundation/app.dart';
extension Translation on String {
String get tl {
var locale = App.locale;
return translation["${locale.languageCode}_${locale.countryCode}"]?[this] ??
this;
}
static const translation = <String, Map<String, String>>{
"zh_CN": {},
"zh_TW": {},
};
}