tycho-components 0.18.22 → 0.19.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/AppPagination/AppPagination.d.ts +1 -2
- package/dist/AppPagination/AppPagination.js +11 -7
- package/dist/AppPagination/styles.scss +80 -13
- package/dist/AppTable/AppTable.d.ts +3 -3
- package/dist/AppTable/AppTable.js +20 -20
- package/dist/AppTable/styles.scss +8 -0
- package/dist/configs/Localization.d.ts +198 -201
- package/dist/configs/localization/CommonTexts.d.ts +199 -202
- package/dist/configs/localization/CommonTexts.js +199 -202
- package/package.json +2 -2
|
@@ -1,209 +1,206 @@
|
|
|
1
1
|
export const CommonTexts = {
|
|
2
2
|
en: {
|
|
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
|
-
"corpus.status.rejected": "Demo",
|
|
3
|
+
'button.confirm': 'Confirm',
|
|
4
|
+
'button.continue': 'Continue',
|
|
5
|
+
'button.cancel': 'Cancel',
|
|
6
|
+
'button.remove': 'Remove',
|
|
7
|
+
'button.save': 'Save',
|
|
8
|
+
'button.clone': 'Clone',
|
|
9
|
+
'button.apply': 'Apply',
|
|
10
|
+
'button.search': 'Search',
|
|
11
|
+
'button.edit': 'Edit',
|
|
12
|
+
'button.open': 'Open',
|
|
13
|
+
'button.close': 'Close',
|
|
14
|
+
'button.add': 'Add',
|
|
15
|
+
'button.filter': 'Filter',
|
|
16
|
+
'button.clear': 'Clear',
|
|
17
|
+
'button.play': 'Play',
|
|
18
|
+
'button.pause': 'Pause',
|
|
19
|
+
'button.view': 'View',
|
|
20
|
+
'button.next': 'Next',
|
|
21
|
+
'button.back': 'Back',
|
|
22
|
+
'label.public': 'Public',
|
|
23
|
+
'label.private': 'Private',
|
|
24
|
+
'label.notavailable': 'N/A',
|
|
25
|
+
'generic.boolean.true': 'Yes',
|
|
26
|
+
'generic.boolean.false': 'No',
|
|
27
|
+
'select.empty': 'Select',
|
|
28
|
+
'pagination.label.showing': '',
|
|
29
|
+
'pagination.label.results': 'results per page',
|
|
30
|
+
'pagination.label.total': 'Total',
|
|
31
|
+
'generic.loading': 'Loading...',
|
|
32
|
+
'generic.placeholder': 'Type here',
|
|
33
|
+
'generic.placeholder.comma.separated': 'Type here separated by commas',
|
|
34
|
+
'generic.placeholder.select': 'Select one here',
|
|
35
|
+
'validation.required': 'Required field.',
|
|
36
|
+
'placeholder.check': 'click to choose',
|
|
37
|
+
'placeholder.input': 'click to add',
|
|
38
|
+
'user.status.active': 'Active',
|
|
39
|
+
'user.status.inactive': 'Inactive',
|
|
40
|
+
'user.status.super': 'Super',
|
|
41
|
+
'user.status.visitor': 'Visitor',
|
|
42
|
+
'update.success': 'saved!',
|
|
43
|
+
'internal.server.error': 'An unexpected error occurred. Contact the administrator.',
|
|
44
|
+
'table.label.rows-page': 'Items per page',
|
|
45
|
+
'table.label.items': '{{first}} - {{last}} of {{total}} items',
|
|
46
|
+
'tooltip.copy': 'Copy',
|
|
47
|
+
'tooltip.copied': 'Copied!',
|
|
48
|
+
'document.status.deleted': 'Deleted',
|
|
49
|
+
'document.status.editing': 'Editing',
|
|
50
|
+
'document.status.edited': 'Edited',
|
|
51
|
+
'document.status.revision': 'In revision',
|
|
52
|
+
'document.status.completed': 'Completed',
|
|
53
|
+
'document.status.syntactic': 'Revision',
|
|
54
|
+
'document.status.copying': 'Copying',
|
|
55
|
+
'document.status.error': 'Error',
|
|
56
|
+
'sentence.status.todo': 'to do',
|
|
57
|
+
'sentence.status.done': 'done',
|
|
58
|
+
'sentence.status.ignore': 'ignore',
|
|
59
|
+
'sentence.status.tagged': 'tagged',
|
|
60
|
+
'sentence.status.review': 'review',
|
|
61
|
+
'sentence.status.error': 'error',
|
|
62
|
+
'sentence.status.auto': 'automatic',
|
|
63
|
+
'corpus.status.active': 'Active',
|
|
64
|
+
'corpus.status.inactive': 'Inactive',
|
|
65
|
+
'corpus.status.archived': 'Archived',
|
|
66
|
+
'corpus.status.demo': 'Demo',
|
|
67
|
+
'corpus.status.pending': 'Pending',
|
|
68
|
+
'corpus.status.rejected': 'Demo',
|
|
70
69
|
},
|
|
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
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
"corpus.status.rejected": "Rejeitado",
|
|
70
|
+
'pt-BR': {
|
|
71
|
+
'button.confirm': 'Confirmar',
|
|
72
|
+
'button.continue': 'Continuar',
|
|
73
|
+
'button.cancel': 'Cancelar',
|
|
74
|
+
'button.remove': 'Remover',
|
|
75
|
+
'button.save': 'Salvar',
|
|
76
|
+
'button.clone': 'Clonar',
|
|
77
|
+
'button.apply': 'Aplicar',
|
|
78
|
+
'button.search': 'Buscar',
|
|
79
|
+
'button.edit': 'Editar',
|
|
80
|
+
'button.open': 'Abrir',
|
|
81
|
+
'button.add': 'Adicionar',
|
|
82
|
+
'button.close': 'Fechar',
|
|
83
|
+
'button.filter': 'Filtrar',
|
|
84
|
+
'button.clear': 'Limpar',
|
|
85
|
+
'button.play': 'Reproduzir',
|
|
86
|
+
'button.pause': 'Pausar',
|
|
87
|
+
'button.view': 'Visualizar',
|
|
88
|
+
'button.next': 'Próximo',
|
|
89
|
+
'button.back': 'Voltar',
|
|
90
|
+
'label.public': 'Público',
|
|
91
|
+
'label.private': 'Privado',
|
|
92
|
+
'label.notavailable': 'N/A',
|
|
93
|
+
'generic.boolean.true': 'Sim',
|
|
94
|
+
'generic.boolean.false': 'Não',
|
|
95
|
+
'select.empty': 'Selecionar',
|
|
96
|
+
'pagination.label.showing': 'Exibindo',
|
|
97
|
+
'pagination.label.results': 'resultados por página',
|
|
98
|
+
'pagination.label.total': 'Total',
|
|
99
|
+
'generic.loading': 'Carregando...',
|
|
100
|
+
'generic.placeholder': 'Digite aqui',
|
|
101
|
+
'generic.placeholder.select': 'Selecione um aqui',
|
|
102
|
+
'generic.placeholder.comma.separated': 'Digite aqui separado por vírgulas',
|
|
103
|
+
'validation.required': 'Campo obrigatório.',
|
|
104
|
+
'placeholder.check': 'clique para selecionar',
|
|
105
|
+
'placeholder.input': 'clique para adicionar',
|
|
106
|
+
'user.status.active': 'Ativo',
|
|
107
|
+
'user.status.inactive': 'Inativo',
|
|
108
|
+
'user.status.super': 'Super',
|
|
109
|
+
'user.status.visitor': 'Visitante',
|
|
110
|
+
'update.success': 'salvo!',
|
|
111
|
+
'internal.server.error': 'Ocorreu um erro inesperado. Entre em contato com o administrador.',
|
|
112
|
+
'table.label.rows-page': 'Itens por página',
|
|
113
|
+
'table.label.items': '{{first}} - {{last}} de {{total}} itens',
|
|
114
|
+
'tooltip.copy': 'Copiar',
|
|
115
|
+
'tooltip.copied': 'Copiado!',
|
|
116
|
+
'document.status.deleted': 'Excluído',
|
|
117
|
+
'document.status.editing': 'Editando',
|
|
118
|
+
'document.status.edited': 'Editado',
|
|
119
|
+
'document.status.revision': 'Em revisão',
|
|
120
|
+
'document.status.completed': 'Completo',
|
|
121
|
+
'document.status.syntactic': 'Revisão',
|
|
122
|
+
'document.status.copying': 'Copiando',
|
|
123
|
+
'document.status.error': 'Erro',
|
|
124
|
+
'sentence.status.todo': 'a fazer',
|
|
125
|
+
'sentence.status.done': 'finalizado',
|
|
126
|
+
'sentence.status.ignore': 'ignorar',
|
|
127
|
+
'sentence.status.tagged': 'etiquetado',
|
|
128
|
+
'sentence.status.review': 'revisar',
|
|
129
|
+
'sentence.status.error': 'erro',
|
|
130
|
+
'sentence.status.auto': 'automático',
|
|
131
|
+
'corpus.status.active': 'Ativo',
|
|
132
|
+
'corpus.status.inactive': 'Inativo',
|
|
133
|
+
'corpus.status.archived': 'Arquivado',
|
|
134
|
+
'corpus.status.demo': 'Demo',
|
|
135
|
+
'corpus.status.pending': 'Pendente',
|
|
136
|
+
'corpus.status.rejected': 'Rejeitado',
|
|
139
137
|
},
|
|
140
138
|
it: {
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
"corpus.status.rejected": "Rifiutato",
|
|
139
|
+
'button.confirm': 'Conferma',
|
|
140
|
+
'button.continue': 'Continua',
|
|
141
|
+
'button.cancel': 'Annulla',
|
|
142
|
+
'button.remove': 'Rimuovi',
|
|
143
|
+
'button.save': 'Salva',
|
|
144
|
+
'button.clone': 'Clona',
|
|
145
|
+
'button.search': 'Cerca',
|
|
146
|
+
'button.edit': 'Modifica',
|
|
147
|
+
'button.open': 'Apri',
|
|
148
|
+
'button.apply': 'Applica',
|
|
149
|
+
'button.add': 'Aggiungi',
|
|
150
|
+
'button.close': 'Chiudi',
|
|
151
|
+
'button.filter': 'Filtra',
|
|
152
|
+
'button.clear': 'Pulisci',
|
|
153
|
+
'button.play': 'Riproduci',
|
|
154
|
+
'button.pause': 'Pausa',
|
|
155
|
+
'button.view': 'Visualizza',
|
|
156
|
+
'button.back': 'Indietro',
|
|
157
|
+
'button.next': 'Avanti',
|
|
158
|
+
'label.public': 'Pubblico',
|
|
159
|
+
'label.private': 'Privato',
|
|
160
|
+
'label.notavailable': 'N/A',
|
|
161
|
+
'generic.boolean.true': 'Sì',
|
|
162
|
+
'generic.boolean.false': 'No',
|
|
163
|
+
'select.empty': 'Seleziona',
|
|
164
|
+
'pagination.label.showing': 'Mostrando',
|
|
165
|
+
'pagination.label.results': 'risultati per pagina',
|
|
166
|
+
'pagination.label.total': 'Totale',
|
|
167
|
+
'generic.loading': 'Caricamento...',
|
|
168
|
+
'generic.placeholder': 'Scrivi qui',
|
|
169
|
+
'generic.placeholder.select': 'Seleziona uno qui',
|
|
170
|
+
'generic.placeholder.comma.separated': 'Scrivi qui separato per virgole',
|
|
171
|
+
'validation.required': 'Campo obbligatorio.',
|
|
172
|
+
'placeholder.check': 'clicca per scegliere',
|
|
173
|
+
'placeholder.input': 'clicca per aggiungere',
|
|
174
|
+
'user.status.active': 'Attivo',
|
|
175
|
+
'user.status.inactive': 'Inattivo',
|
|
176
|
+
'user.status.super': 'Super',
|
|
177
|
+
'user.status.visitor': 'Visitatore',
|
|
178
|
+
'update.success': 'salvato!',
|
|
179
|
+
'internal.server.error': "Si è verificato un errore inaspettato. Contatta l'amministratore.",
|
|
180
|
+
'table.label.rows-page': 'Elementi per pagina',
|
|
181
|
+
'table.label.items': '{{first}} - {{last}} di {{total}} elementi',
|
|
182
|
+
'tooltip.copy': 'Copia',
|
|
183
|
+
'tooltip.copied': 'Copiato!',
|
|
184
|
+
'document.status.deleted': 'Eliminato',
|
|
185
|
+
'document.status.editing': 'Modifica',
|
|
186
|
+
'document.status.edited': 'Modificato',
|
|
187
|
+
'document.status.revision': 'In revisione',
|
|
188
|
+
'document.status.completed': 'Completato',
|
|
189
|
+
'document.status.syntactic': 'Revisione',
|
|
190
|
+
'document.status.copying': 'Copiando',
|
|
191
|
+
'document.status.error': 'Errore',
|
|
192
|
+
'sentence.status.todo': 'da fare',
|
|
193
|
+
'sentence.status.done': 'fatto',
|
|
194
|
+
'sentence.status.ignore': 'ignora',
|
|
195
|
+
'sentence.status.tagged': 'etichettato',
|
|
196
|
+
'sentence.status.review': 'revisione',
|
|
197
|
+
'sentence.status.error': 'errore',
|
|
198
|
+
'sentence.status.auto': 'automatico',
|
|
199
|
+
'corpus.status.active': 'Attivo',
|
|
200
|
+
'corpus.status.inactive': 'Inattivo',
|
|
201
|
+
'corpus.status.archived': 'Archiviato',
|
|
202
|
+
'corpus.status.demo': 'Demo',
|
|
203
|
+
'corpus.status.pending': 'In attesa',
|
|
204
|
+
'corpus.status.rejected': 'Rifiutato',
|
|
208
205
|
},
|
|
209
206
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tycho-components",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.19.1",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"exports": {
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"react-hook-form": "^7.45.2",
|
|
50
50
|
"react-i18next": "^13.0.2",
|
|
51
51
|
"react-router-dom": "^6.14.2",
|
|
52
|
-
"tycho-storybook": "0.
|
|
52
|
+
"tycho-storybook": "0.7.0",
|
|
53
53
|
"yup": "^1.2.0"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|