-
-
Notifications
You must be signed in to change notification settings - Fork 3k
/
translators.dart
110 lines (109 loc) · 2.03 KB
/
translators.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
part of 'about_page.dart';
/// Translators who translated the app to a specific language.
/// The list might be incomplete.
/// Also write your full name here if you want.
const _translators = <AppLocale, List<String>>{
AppLocale.ar: [
'@Adam1141',
],
AppLocale.bn: [
'@RishiASheth',
],
AppLocale.cs: [
'@Amereyeu',
],
AppLocale.da: [
'@Limfjorden',
],
AppLocale.de: [
'Tien Do Nam (@Tienisto)',
],
AppLocale.el: [
'Petros Kyladitis (@multipetros)',
],
AppLocale.en: [
'Tien Do Nam (@Tienisto)',
'@Coopydood',
],
AppLocale.esEs: [
'Esteban Daniel Saracho (@esaracho)',
'Rafael González (@LoboGuardian)',
],
AppLocale.fa: [
'@farshad991',
],
AppLocale.filPh: [
'Bryan James Ilaga (@BryanJames16)',
'Linwel Colmo (@leanwell)',
],
AppLocale.fr: [
'@Nixuge',
],
AppLocale.he: [
'@ShlomoCode',
],
AppLocale.hu: [
'@gidano',
],
AppLocale.it: [
'Francesco Marastoni (@Francesco146)',
'Dario Landucci (@LandOfDar)',
],
AppLocale.ja: [
'soya_daizu (@soya-daizu)',
],
AppLocale.km: [
'Chandara H. Wei (@nidexingg)',
],
AppLocale.ko: [
'@mgmix',
],
AppLocale.nl: [
'Martijn van Berkel (@Flitskikker)',
'@stijnphr',
'@jan-vandenberg',
],
AppLocale.pl: [
'@Radplay',
'@trag1c',
'@j-koziel',
],
AppLocale.ptBr: [
'Gabriel Lima (@TheGB0077)',
'Arthur Lobo (@ArthurLobopro)',
],
AppLocale.ro: [
'@UnifeGi',
],
AppLocale.ru: [
'Sergiy Tkachuk (@sergd88)',
],
AppLocale.sr: [
'Nebojsa Tomic (@nebojsatomic)',
'Nemanja Dimitrijevic (@nemanya-d)',
],
AppLocale.th: [
'@watchakorn-18k',
],
AppLocale.tr: [
'Mert Şişmanoğlu (@mertssmnoglu)',
'Ali Mert Erdogan (@aliwert)',
],
AppLocale.uk: [
'Sergiy Tkachuk (@sergd88)',
],
AppLocale.vi: [
'@faea726',
],
AppLocale.zhCn: [
'@nkh0472',
'@graphemecluster',
],
AppLocale.zhHk: [
'@graphemecluster',
],
AppLocale.zhTw: [
'@Neo1102',
'@graphemecluster',
],
};