tycho-components 0.4.4 → 0.4.6
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/Header/HeaderApps/HeaderApps.js +2 -1
- package/dist/Header/types/App.d.ts +1 -0
- package/dist/Header/types/App.js +5 -0
- package/dist/configs/Localization.d.ts +87 -84
- package/dist/configs/localization/CommonTexts.d.ts +88 -85
- package/dist/configs/localization/CommonTexts.js +88 -85
- package/package.json +1 -1
|
@@ -15,7 +15,8 @@ export default function HeaderApps({ freeAccess }) {
|
|
|
15
15
|
const { hasLexiconAccess, hasParserAccess, isAdminOfAnyCorpus } = useLoggedUtils();
|
|
16
16
|
const [open, setOpen] = useState(false);
|
|
17
17
|
const goto = (app, blank) => {
|
|
18
|
-
const
|
|
18
|
+
const shouldAppendCorpusUid = app.appendCorpusUid !== false;
|
|
19
|
+
const url = hasCorpus() && shouldAppendCorpusUid
|
|
19
20
|
? `/${app.code}/${getCorpus().uid}`
|
|
20
21
|
: `/${app.code}`;
|
|
21
22
|
if (blank) {
|
package/dist/Header/types/App.js
CHANGED
|
@@ -24,6 +24,7 @@ export const AvailableApps = [
|
|
|
24
24
|
visibility: null,
|
|
25
25
|
desktop: true,
|
|
26
26
|
parser: true,
|
|
27
|
+
appendCorpusUid: false,
|
|
27
28
|
},
|
|
28
29
|
{
|
|
29
30
|
code: 'io',
|
|
@@ -37,6 +38,7 @@ export const AvailableApps = [
|
|
|
37
38
|
visibility: null,
|
|
38
39
|
desktop: false,
|
|
39
40
|
lexicon: true,
|
|
41
|
+
appendCorpusUid: false,
|
|
40
42
|
},
|
|
41
43
|
{
|
|
42
44
|
code: 'search',
|
|
@@ -49,17 +51,20 @@ export const AvailableApps = [
|
|
|
49
51
|
icon: 'news',
|
|
50
52
|
visibility: 'public',
|
|
51
53
|
desktop: false,
|
|
54
|
+
appendCorpusUid: false,
|
|
52
55
|
},
|
|
53
56
|
{
|
|
54
57
|
code: 'synviewer',
|
|
55
58
|
icon: 'graph_4',
|
|
56
59
|
visibility: 'public',
|
|
57
60
|
desktop: false,
|
|
61
|
+
appendCorpusUid: false,
|
|
58
62
|
},
|
|
59
63
|
{
|
|
60
64
|
code: 'psd-reindexer',
|
|
61
65
|
icon: '123',
|
|
62
66
|
visibility: 'public',
|
|
63
67
|
desktop: false,
|
|
68
|
+
appendCorpusUid: false,
|
|
64
69
|
},
|
|
65
70
|
];
|
|
@@ -46,34 +46,35 @@ export declare const commonResources: {
|
|
|
46
46
|
'label.edited': string;
|
|
47
47
|
};
|
|
48
48
|
common: {
|
|
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
|
-
|
|
49
|
+
"button.confirm": string;
|
|
50
|
+
"button.continue": string;
|
|
51
|
+
"button.cancel": string;
|
|
52
|
+
"button.remove": string;
|
|
53
|
+
"button.save": string;
|
|
54
|
+
"button.clone": string;
|
|
55
|
+
"button.apply": string;
|
|
56
|
+
"button.search": string;
|
|
57
|
+
"select.empty": string;
|
|
58
|
+
"pagination.label.showing": string;
|
|
59
|
+
"pagination.label.results": string;
|
|
60
|
+
"pagination.label.total": string;
|
|
61
|
+
"generic.placeholder": string;
|
|
62
|
+
"generic.placeholder.comma.separated": string;
|
|
63
|
+
"generic.placeholder.select": string;
|
|
64
|
+
"validation.required": string;
|
|
65
|
+
"placeholder.check": string;
|
|
66
|
+
"placeholder.input": string;
|
|
67
|
+
"user.status.active": string;
|
|
68
|
+
"user.status.inactive": string;
|
|
69
|
+
"user.status.super": string;
|
|
70
|
+
"user.status.visitor": string;
|
|
71
|
+
"update.success": string;
|
|
72
|
+
"internal.server.error": string;
|
|
73
|
+
"table.label.rows-page": string;
|
|
74
|
+
"table.label.pages": string;
|
|
75
|
+
"table.label.items": string;
|
|
76
|
+
"tooltip.copy": string;
|
|
77
|
+
"tooltip.copied": string;
|
|
77
78
|
};
|
|
78
79
|
header: {
|
|
79
80
|
'label.platform': string;
|
|
@@ -284,34 +285,35 @@ export declare const commonResources: {
|
|
|
284
285
|
'label.edited': string;
|
|
285
286
|
};
|
|
286
287
|
common: {
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
288
|
+
"button.confirm": string;
|
|
289
|
+
"button.continue": string;
|
|
290
|
+
"button.cancel": string;
|
|
291
|
+
"button.remove": string;
|
|
292
|
+
"button.save": string;
|
|
293
|
+
"button.clone": string;
|
|
294
|
+
"button.apply": string;
|
|
295
|
+
"button.search": string;
|
|
296
|
+
"select.empty": string;
|
|
297
|
+
"pagination.label.showing": string;
|
|
298
|
+
"pagination.label.results": string;
|
|
299
|
+
"pagination.label.total": string;
|
|
300
|
+
"generic.placeholder": string;
|
|
301
|
+
"generic.placeholder.select": string;
|
|
302
|
+
"generic.placeholder.comma.separated": string;
|
|
303
|
+
"validation.required": string;
|
|
304
|
+
"placeholder.check": string;
|
|
305
|
+
"placeholder.input": string;
|
|
306
|
+
"user.status.active": string;
|
|
307
|
+
"user.status.inactive": string;
|
|
308
|
+
"user.status.super": string;
|
|
309
|
+
"user.status.visitor": string;
|
|
310
|
+
"update.success": string;
|
|
311
|
+
"internal.server.error": string;
|
|
312
|
+
"table.label.rows-page": string;
|
|
313
|
+
"table.label.pages": string;
|
|
314
|
+
"table.label.items": string;
|
|
315
|
+
"tooltip.copy": string;
|
|
316
|
+
"tooltip.copied": string;
|
|
315
317
|
};
|
|
316
318
|
header: {
|
|
317
319
|
'label.platform': string;
|
|
@@ -520,34 +522,35 @@ export declare const commonResources: {
|
|
|
520
522
|
'label.edited': string;
|
|
521
523
|
};
|
|
522
524
|
common: {
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
525
|
+
"button.confirm": string;
|
|
526
|
+
"button.continue": string;
|
|
527
|
+
"button.cancel": string;
|
|
528
|
+
"button.remove": string;
|
|
529
|
+
"button.save": string;
|
|
530
|
+
"button.clone": string;
|
|
531
|
+
"button.search": string;
|
|
532
|
+
"select.empty": string;
|
|
533
|
+
"button.apply": string;
|
|
534
|
+
"pagination.label.showing": string;
|
|
535
|
+
"pagination.label.results": string;
|
|
536
|
+
"pagination.label.total": string;
|
|
537
|
+
"generic.placeholder": string;
|
|
538
|
+
"generic.placeholder.select": string;
|
|
539
|
+
"generic.placeholder.comma.separated": string;
|
|
540
|
+
"validation.required": string;
|
|
541
|
+
"placeholder.check": string;
|
|
542
|
+
"placeholder.input": string;
|
|
543
|
+
"user.status.active": string;
|
|
544
|
+
"user.status.inactive": string;
|
|
545
|
+
"user.status.super": string;
|
|
546
|
+
"user.status.visitor": string;
|
|
547
|
+
"update.success": string;
|
|
548
|
+
"internal.server.error": string;
|
|
549
|
+
"table.label.rows-page": string;
|
|
550
|
+
"table.label.pages": string;
|
|
551
|
+
"table.label.items": string;
|
|
552
|
+
"tooltip.copy": string;
|
|
553
|
+
"tooltip.copied": string;
|
|
551
554
|
};
|
|
552
555
|
header: {
|
|
553
556
|
'label.platform': string;
|
|
@@ -1,92 +1,95 @@
|
|
|
1
1
|
export declare 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
|
-
|
|
3
|
+
"button.confirm": string;
|
|
4
|
+
"button.continue": string;
|
|
5
|
+
"button.cancel": string;
|
|
6
|
+
"button.remove": string;
|
|
7
|
+
"button.save": string;
|
|
8
|
+
"button.clone": string;
|
|
9
|
+
"button.apply": string;
|
|
10
|
+
"button.search": string;
|
|
11
|
+
"select.empty": string;
|
|
12
|
+
"pagination.label.showing": string;
|
|
13
|
+
"pagination.label.results": string;
|
|
14
|
+
"pagination.label.total": string;
|
|
15
|
+
"generic.placeholder": string;
|
|
16
|
+
"generic.placeholder.comma.separated": string;
|
|
17
|
+
"generic.placeholder.select": string;
|
|
18
|
+
"validation.required": string;
|
|
19
|
+
"placeholder.check": string;
|
|
20
|
+
"placeholder.input": string;
|
|
21
|
+
"user.status.active": string;
|
|
22
|
+
"user.status.inactive": string;
|
|
23
|
+
"user.status.super": string;
|
|
24
|
+
"user.status.visitor": string;
|
|
25
|
+
"update.success": string;
|
|
26
|
+
"internal.server.error": string;
|
|
27
|
+
"table.label.rows-page": string;
|
|
28
|
+
"table.label.pages": string;
|
|
29
|
+
"table.label.items": string;
|
|
30
|
+
"tooltip.copy": string;
|
|
31
|
+
"tooltip.copied": string;
|
|
31
32
|
};
|
|
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
|
-
|
|
33
|
+
"pt-BR": {
|
|
34
|
+
"button.confirm": string;
|
|
35
|
+
"button.continue": string;
|
|
36
|
+
"button.cancel": string;
|
|
37
|
+
"button.remove": string;
|
|
38
|
+
"button.save": string;
|
|
39
|
+
"button.clone": string;
|
|
40
|
+
"button.apply": string;
|
|
41
|
+
"button.search": string;
|
|
42
|
+
"select.empty": string;
|
|
43
|
+
"pagination.label.showing": string;
|
|
44
|
+
"pagination.label.results": string;
|
|
45
|
+
"pagination.label.total": string;
|
|
46
|
+
"generic.placeholder": string;
|
|
47
|
+
"generic.placeholder.select": string;
|
|
48
|
+
"generic.placeholder.comma.separated": string;
|
|
49
|
+
"validation.required": string;
|
|
50
|
+
"placeholder.check": string;
|
|
51
|
+
"placeholder.input": string;
|
|
52
|
+
"user.status.active": string;
|
|
53
|
+
"user.status.inactive": string;
|
|
54
|
+
"user.status.super": string;
|
|
55
|
+
"user.status.visitor": string;
|
|
56
|
+
"update.success": string;
|
|
57
|
+
"internal.server.error": string;
|
|
58
|
+
"table.label.rows-page": string;
|
|
59
|
+
"table.label.pages": string;
|
|
60
|
+
"table.label.items": string;
|
|
61
|
+
"tooltip.copy": string;
|
|
62
|
+
"tooltip.copied": string;
|
|
61
63
|
};
|
|
62
64
|
it: {
|
|
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
|
-
|
|
65
|
+
"button.confirm": string;
|
|
66
|
+
"button.continue": string;
|
|
67
|
+
"button.cancel": string;
|
|
68
|
+
"button.remove": string;
|
|
69
|
+
"button.save": string;
|
|
70
|
+
"button.clone": string;
|
|
71
|
+
"button.search": string;
|
|
72
|
+
"select.empty": string;
|
|
73
|
+
"button.apply": string;
|
|
74
|
+
"pagination.label.showing": string;
|
|
75
|
+
"pagination.label.results": string;
|
|
76
|
+
"pagination.label.total": string;
|
|
77
|
+
"generic.placeholder": string;
|
|
78
|
+
"generic.placeholder.select": string;
|
|
79
|
+
"generic.placeholder.comma.separated": string;
|
|
80
|
+
"validation.required": string;
|
|
81
|
+
"placeholder.check": string;
|
|
82
|
+
"placeholder.input": string;
|
|
83
|
+
"user.status.active": string;
|
|
84
|
+
"user.status.inactive": string;
|
|
85
|
+
"user.status.super": string;
|
|
86
|
+
"user.status.visitor": string;
|
|
87
|
+
"update.success": string;
|
|
88
|
+
"internal.server.error": string;
|
|
89
|
+
"table.label.rows-page": string;
|
|
90
|
+
"table.label.pages": string;
|
|
91
|
+
"table.label.items": string;
|
|
92
|
+
"tooltip.copy": string;
|
|
93
|
+
"tooltip.copied": string;
|
|
91
94
|
};
|
|
92
95
|
};
|
|
@@ -1,92 +1,95 @@
|
|
|
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
|
-
|
|
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
|
+
"select.empty": "Select",
|
|
12
|
+
"pagination.label.showing": "",
|
|
13
|
+
"pagination.label.results": "results per page",
|
|
14
|
+
"pagination.label.total": "Total",
|
|
15
|
+
"generic.placeholder": "Type here",
|
|
16
|
+
"generic.placeholder.comma.separated": "Type here separated by commas",
|
|
17
|
+
"generic.placeholder.select": "Select one here",
|
|
18
|
+
"validation.required": "Required field.",
|
|
19
|
+
"placeholder.check": "click to choose",
|
|
20
|
+
"placeholder.input": "click to add",
|
|
21
|
+
"user.status.active": "Active",
|
|
22
|
+
"user.status.inactive": "Inactive",
|
|
23
|
+
"user.status.super": "Super",
|
|
24
|
+
"user.status.visitor": "Visitor",
|
|
25
|
+
"update.success": "saved!",
|
|
26
|
+
"internal.server.error": "An unexpected error occurred. Contact the administrator.",
|
|
27
|
+
"table.label.rows-page": "Items per page",
|
|
28
|
+
"table.label.pages": "of {{value}} pages",
|
|
29
|
+
"table.label.items": "{{first}} - {{last}} of {{total}} items",
|
|
30
|
+
"tooltip.copy": "Copy",
|
|
31
|
+
"tooltip.copied": "Copied!",
|
|
31
32
|
},
|
|
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
|
-
|
|
33
|
+
"pt-BR": {
|
|
34
|
+
"button.confirm": "Confirmar",
|
|
35
|
+
"button.continue": "Continuar",
|
|
36
|
+
"button.cancel": "Cancelar",
|
|
37
|
+
"button.remove": "Remover",
|
|
38
|
+
"button.save": "Salvar",
|
|
39
|
+
"button.clone": "Clonar",
|
|
40
|
+
"button.apply": "Aplicar",
|
|
41
|
+
"button.search": "Buscar",
|
|
42
|
+
"select.empty": "Selecionar",
|
|
43
|
+
"pagination.label.showing": "Exibindo",
|
|
44
|
+
"pagination.label.results": "resultados por página",
|
|
45
|
+
"pagination.label.total": "Total",
|
|
46
|
+
"generic.placeholder": "Digite aqui",
|
|
47
|
+
"generic.placeholder.select": "Selecione um aqui",
|
|
48
|
+
"generic.placeholder.comma.separated": "Digite aqui separado por vírgulas",
|
|
49
|
+
"validation.required": "Campo obrigatório.",
|
|
50
|
+
"placeholder.check": "clique para selecionar",
|
|
51
|
+
"placeholder.input": "clique para adicionar",
|
|
52
|
+
"user.status.active": "Ativo",
|
|
53
|
+
"user.status.inactive": "Inativo",
|
|
54
|
+
"user.status.super": "Super",
|
|
55
|
+
"user.status.visitor": "Visitante",
|
|
56
|
+
"update.success": "salvo!",
|
|
57
|
+
"internal.server.error": "Ocorreu um erro inesperado. Entre em contato com o administrador.",
|
|
58
|
+
"table.label.rows-page": "Itens por página",
|
|
59
|
+
"table.label.pages": "de {{value}} páginas",
|
|
60
|
+
"table.label.items": "{{first}} - {{last}} de {{total}} itens",
|
|
61
|
+
"tooltip.copy": "Copiar",
|
|
62
|
+
"tooltip.copied": "Copiado!",
|
|
61
63
|
},
|
|
62
64
|
it: {
|
|
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
|
-
|
|
65
|
+
"button.confirm": "Conferma",
|
|
66
|
+
"button.continue": "Continua",
|
|
67
|
+
"button.cancel": "Annulla",
|
|
68
|
+
"button.remove": "Rimuovi",
|
|
69
|
+
"button.save": "Salva",
|
|
70
|
+
"button.clone": "Clona",
|
|
71
|
+
"button.search": "Cerca",
|
|
72
|
+
"select.empty": "Seleziona",
|
|
73
|
+
"button.apply": "Applica",
|
|
74
|
+
"pagination.label.showing": "Mostrando",
|
|
75
|
+
"pagination.label.results": "risultati per pagina",
|
|
76
|
+
"pagination.label.total": "Totale",
|
|
77
|
+
"generic.placeholder": "Scrivi qui",
|
|
78
|
+
"generic.placeholder.select": "Seleziona uno qui",
|
|
79
|
+
"generic.placeholder.comma.separated": "Scrivi qui separato per virgole",
|
|
80
|
+
"validation.required": "Campo obbligatorio.",
|
|
81
|
+
"placeholder.check": "clicca per scegliere",
|
|
82
|
+
"placeholder.input": "clicca per aggiungere",
|
|
83
|
+
"user.status.active": "Attivo",
|
|
84
|
+
"user.status.inactive": "Inattivo",
|
|
85
|
+
"user.status.super": "Super",
|
|
86
|
+
"user.status.visitor": "Visitatore",
|
|
87
|
+
"update.success": "salvato!",
|
|
88
|
+
"internal.server.error": "Si è verificato un errore inaspettato. Contatta l'amministratore.",
|
|
89
|
+
"table.label.rows-page": "Elementi per pagina",
|
|
90
|
+
"table.label.pages": "di {{value}} pagine",
|
|
91
|
+
"table.label.items": "{{first}} - {{last}} di {{total}} elementi",
|
|
92
|
+
"tooltip.copy": "Copia",
|
|
93
|
+
"tooltip.copied": "Copiato!",
|
|
91
94
|
},
|
|
92
95
|
};
|