-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtranslations.py
42 lines (39 loc) · 1.21 KB
/
translations.py
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
specific_dict = {
('*', 'Noise Nodes'): '噪波',
('*', 'Voxel Noise'): '体素噪波',
('*', 'Cranal Noise'): '颅内噪波',
('*', 'Pixelator'): '像素化',
('*', 'Scratches Noise'): '划痕噪波',
('*', 'Dot Noise'): '点噪波',
('*', 'Regular Noise'): '规则噪波',
('*', 'Streaks Noise'): '条纹噪波',
('*', 'Fractal Noise'): '分形噪波',
('*', 'Dent Noise'): '凹陷噪波',
('*', 'Fluid Noise'): '流体噪波',
('*', 'Crackle Noise'): '裂纹噪波',
('*', 'Perlin Noise'): '柏林噪波',
('*', 'Step Noise'): '阶梯噪波',
('*', 'Wavy Noise'): '波浪噪波',
}
you_dict = {
('*', 'Noise Nodes'): '',
('*', 'Voxel Noise'): '',
('*', 'Cranal Noise'): '',
('*', 'Pixelator'): '',
('*', 'Scratches Noise'): '',
('*', 'Dot Noise'): '',
('*', 'Regular Noise'): '',
('*', 'Streaks Noise'): '',
('*', 'Fractal Noise'): '',
('*', 'Dent Noise'): '',
('*', 'Fluid Noise'): '',
('*', 'Crackle Noise'): '',
('*', 'Perlin Noise'): '',
('*', 'Step Noise'): '',
('*', 'Wavy Noise'): '',
}
langs = {
'zh_CN': specific_dict,
'zh_HANS': specific_dict,
#'JP': you_dict,
}