-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtranslation.js
95 lines (80 loc) · 2.92 KB
/
translation.js
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
const translations = {
'en-US': {
'title': 'Semi-Supervised Active Learning Validator',
'loader_btn': 'Upload Directory',
'invalid_btn': 'Invalid',
'download_btn': 'Download',
'valid_btn': 'Valid',
'help_msg': `
<b>Image validator - Help</b><br>
<br>
1. Move along the image list with<br>
arrows and validate the images<br>
using <span style="color: red">[Invalid]</span> or <span style="color: lime">[Valid]</span><br>
buttons.<br>
<br>
2. A the end of validation process<br>
press the <span style="color: cyan">[Download]</span> button to<br>
save the information.<br>
<br>
3. The output file is automatically<br>
formatted and saved in the Downloads<br>
folder, ready to be shared.<br>
<br>
<b>Shortcuts:</b><br>
* S: <span style="color: lime">Valid image</span><br>
* N: <span style="color: red">Invalid image</span><br>
* Space: <span style="color: gray">Reset validation</span><br>
* Enter: <span style="color: lime">Upload Directory</span><br>
* Esc: <span style="color: cyan">Download and close</span><br>
* ❮/❯: Prev/Next image<br>
`,
'snack_yes': 'set as VALID image',
'snack_no': 'set as INVALID image',
'snack_download': 'File saved',
'speech_valid': 'valid',
'speech_invalid': 'invalid',
'speech_forward': 'go on',
'speech_backward': 'go back',
'speech_download': 'download',
},
'it-IT': {
'title': 'Validatore di Immagini per Apprendimento Attivo Semi-Supervisionato',
'loader_btn': 'Carica una Cartella',
'invalid_btn': 'Invalido',
'download_btn': 'Scarica',
'valid_btn': 'Valido',
'help_msg': `
<b>Image validator - Help</b><br>
<br>
1. Muoviti lungo la lista di immagini<br>
utilizzando le frecce e valida le immagini<br>
usando i buttoni <span style="color: red">[Invalido]</span><br>
o <span style="color: lime">[Valido]</span><br>
<br>
2. Alla fine del processo di validazione<br>
premi il bottone <span style="color: cyan">[Scarica]</span><br>
per salvare le informazioni.<br>
<br>
3. Il file view automaticamente formattato e<br>
salvato nella cartella Downloads,<br>
pronto per essere condiviso.<br>
<br>
<b>Shortcuts:</b><br>
* S: <span style="color: lime">Valida immagine</span><br>
* N: <span style="color: red">Invalida immagine</span><br>
* Space: <span style="color: gray">Reset</span><br>
* Invio: <span style="color: lime">Carica una Cartella</span><br>
* Esc: <span style="color: cyan">Download e termina</span><br>
* ❮/❯: Immagine precedente/successiva<br>
`,
'snack_yes': 'salvata come immagine VALIDA',
'snack_no': 'salvata come immagine INVALIDA',
'snack_download': 'Salvataggio del file',
'speech_valid': 'valida',
'speech_invalid': 'invalida',
'speech_forward': 'avanti',
'speech_backward': 'indietro',
'speech_download': 'scarica',
}
}