-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathconst.rb
More file actions
50 lines (48 loc) · 1.05 KB
/
const.rb
File metadata and controls
50 lines (48 loc) · 1.05 KB
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
# encoding: utf-8
module Const
Apps = {
'Battery Indicator' => 'bi'
}
Languages = {
'Arabic' => 'ar',
'Bulgarian' => 'bg',
'Catalan' => 'ca',
'Chinese, PRC' => 'zhCN',
'Chinese, traditional characters' => 'zh',
'Croatian' => 'hr',
'Czech' => 'cs',
'Danish' => 'da',
'Dutch' => 'nl',
'English' => 'en',
'Finnish' => 'fi',
'French' => 'fr',
'German' => 'de',
'Greek' => 'el',
'Hebrew' => 'he',
'Hindi' => 'hi',
'Hungarian' => 'hu',
'Indonesian' => 'id',
'Italian' => 'it',
'Japanese' => 'ja',
'Korean' => 'ko',
'Latvian' => 'lv',
'Lithuanian' => 'lt',
'Norwegian bokmål' => 'nb',
'Persian' => 'fa',
'Polish' => 'pl',
'Portuguese' => 'pt',
'Portuguese, Brazil' => 'ptBR',
'Romanian' => 'ro',
'Russian' => 'ru',
'Serbian' => 'sr',
'Slovak' => 'sk',
'Slovenian' => 'sl',
'Spanish' => 'es',
'Swedish' => 'sv',
'Tagalog' => 'tl',
'Thai' => 'th',
'Turkish' => 'tr',
'Ukrainian' => 'uk',
'Vietnamese'=>'vi'
}
end