- Changed window size to mobile phone format (400x800) - Removed width condition for ActiveProxyFooter - now always visible - Added run-umbrix.sh launch script with icon copying - Stats cards now display on all screen sizes
26 lines
826 B
Dart
26 lines
826 B
Dart
import 'dart:io';
|
|
|
|
import 'package:umbrix/gen/fonts.gen.dart';
|
|
import 'package:umbrix/gen/translations.g.dart';
|
|
|
|
extension AppLocaleX on AppLocale {
|
|
String get preferredFontFamily => this == AppLocale.fa ? FontFamily.shabnam : (!Platform.isWindows ? "" : FontFamily.emoji);
|
|
|
|
String get localeName => switch (flutterLocale.toString()) {
|
|
"en" => "English",
|
|
"fa" => "فارسی",
|
|
"ar" => "العربية",
|
|
"ckb-KUR" => "کوردی سۆرانی",
|
|
"ru" => "Русский",
|
|
"zh" || "zh_CN" => "中文 (中国)",
|
|
"zh_TW" => "中文 (台湾)",
|
|
"tr" => "Türkçe",
|
|
"es" => "Spanish",
|
|
"id" => "Indonesian",
|
|
"hi" => "हिन्दी",
|
|
"pt_BR" => "Portuguese (Brazil)",
|
|
"fr" => "Français",
|
|
_ => "Unknown",
|
|
};
|
|
}
|