@bigbinary/neeto-fields-frontend 2.4.5 → 2.4.7
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/README.md +17 -7
- package/app/javascript/src/translations/ar.json +114 -0
- package/app/javascript/src/translations/bg.json +114 -0
- package/app/javascript/src/translations/ca.json +114 -0
- package/app/javascript/src/translations/cs.json +114 -0
- package/app/javascript/src/translations/da.json +114 -0
- package/app/javascript/src/translations/es-MX.json +114 -0
- package/app/javascript/src/translations/et.json +114 -0
- package/app/javascript/src/translations/fi.json +114 -0
- package/app/javascript/src/translations/fil.json +114 -0
- package/app/javascript/src/translations/hi.json +114 -0
- package/app/javascript/src/translations/hr.json +114 -0
- package/app/javascript/src/translations/id.json +114 -0
- package/app/javascript/src/translations/it.json +114 -0
- package/app/javascript/src/translations/ja.json +114 -0
- package/app/javascript/src/translations/ko.json +114 -0
- package/app/javascript/src/translations/nl.json +114 -0
- package/app/javascript/src/translations/pl.json +114 -0
- package/app/javascript/src/translations/pt-BR.json +114 -0
- package/app/javascript/src/translations/pt.json +114 -0
- package/app/javascript/src/translations/ro.json +114 -0
- package/app/javascript/src/translations/ru.json +114 -0
- package/app/javascript/src/translations/sk.json +114 -0
- package/app/javascript/src/translations/sl.json +114 -0
- package/app/javascript/src/translations/sv.json +114 -0
- package/app/javascript/src/translations/th.json +114 -0
- package/app/javascript/src/translations/tr.json +114 -0
- package/app/javascript/src/translations/uk.json +114 -0
- package/app/javascript/src/translations/vi.json +114 -0
- package/app/javascript/src/translations/zh-CN.json +114 -0
- package/app/javascript/src/translations/zh-TW.json +114 -0
- package/dist/{FieldValueInputWrapper-D7lOxWHu.js → FieldValueInputWrapper-CCQZHCjA.js} +4 -4
- package/dist/{FieldValueInputWrapper-D7lOxWHu.js.map → FieldValueInputWrapper-CCQZHCjA.js.map} +1 -1
- package/dist/FieldsDashboard.js +10 -4191
- package/dist/FieldsDashboard.js.map +1 -1
- package/dist/FieldsPane.js +5 -3
- package/dist/FieldsPane.js.map +1 -1
- package/dist/cjs/FieldInputs.js +1 -1
- package/dist/cjs/FieldValuesContainer.js +7 -7
- package/dist/cjs/FieldsDashboard.js +28 -4209
- package/dist/cjs/FieldsDashboard.js.map +1 -1
- package/dist/cjs/FieldsPane.js +7 -5
- package/dist/cjs/FieldsPane.js.map +1 -1
- package/dist/cjs/InlineFieldValueInput.js +4 -4
- package/dist/cjs/index.js +4 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/utils.js +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/{utils-f6fwkcvD.js → utils-CY-OOclj.js} +7 -7
- package/dist/{utils-f6fwkcvD.js.map → utils-CY-OOclj.js.map} +1 -1
- package/package.json +12 -10
- package/types.d.ts +2 -0
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
{
|
|
2
|
+
"neetoFields": {
|
|
3
|
+
"common": {
|
|
4
|
+
"yes": "Ja",
|
|
5
|
+
"no": "Nee"
|
|
6
|
+
},
|
|
7
|
+
"titles": {
|
|
8
|
+
"field_one": "Veld",
|
|
9
|
+
"field_other": "Velden",
|
|
10
|
+
"fieldWithCount_one": "{{count}} veld",
|
|
11
|
+
"fieldWithCount_other": "{{count}} velden",
|
|
12
|
+
"addField": "Voeg nieuw veld toe",
|
|
13
|
+
"editField": "Bewerk veld",
|
|
14
|
+
"deleteField": "Veld verwijderen?",
|
|
15
|
+
"fieldName": "Veldnaam",
|
|
16
|
+
"fieldKind": "Veldtype",
|
|
17
|
+
"required": "Verplicht",
|
|
18
|
+
"dropdownOptions": "Dropdown opties",
|
|
19
|
+
"regexOptions": "Regex opties",
|
|
20
|
+
"reorderFields": "Velden opnieuw ordenen",
|
|
21
|
+
"filters": "Filters",
|
|
22
|
+
"reorder": "Opnieuw ordenen"
|
|
23
|
+
},
|
|
24
|
+
"labels": {
|
|
25
|
+
"addField": "Voeg nieuw veld toe",
|
|
26
|
+
"edit": "Bewerk",
|
|
27
|
+
"delete": "Verwijder",
|
|
28
|
+
"fieldName": "Veldnaam",
|
|
29
|
+
"fieldKind": "Veldtype",
|
|
30
|
+
"createField": "Maak veld aan",
|
|
31
|
+
"updateField": "Veld bijwerken",
|
|
32
|
+
"addAnotherOption": "Voeg een andere optie toe",
|
|
33
|
+
"regex": "Regex",
|
|
34
|
+
"regexCondition": "Voorwaarde",
|
|
35
|
+
"helpMessage": "Helpbericht",
|
|
36
|
+
"isRequired": "Markeer als verplicht",
|
|
37
|
+
"submit": "Indienen",
|
|
38
|
+
"saveChanges": "Wijzigingen opslaan",
|
|
39
|
+
"cancel": "Annuleren"
|
|
40
|
+
},
|
|
41
|
+
"placeholders": {
|
|
42
|
+
"enterFieldName": "Voer veldnaam in",
|
|
43
|
+
"enterAnOption": "Voer een optie in",
|
|
44
|
+
"regexExample": "Voorbeeld: /^[0-9]{5}$/",
|
|
45
|
+
"enterErrorMessage": "Bericht om te tonen bij een fout",
|
|
46
|
+
"searchFields": "Zoek velden"
|
|
47
|
+
},
|
|
48
|
+
"fields": {
|
|
49
|
+
"kinds": {
|
|
50
|
+
"text": "Tekst",
|
|
51
|
+
"number": "Nummer",
|
|
52
|
+
"monetary": "Monetaire waarde",
|
|
53
|
+
"singleOption": "Enkele optie",
|
|
54
|
+
"multiOption": "Meerdere opties",
|
|
55
|
+
"date": "Datum",
|
|
56
|
+
"time": "Tijd",
|
|
57
|
+
"datetime": "Datum en tijd",
|
|
58
|
+
"dateRange": "Datumbereik",
|
|
59
|
+
"timeRange": "Tijdbereik",
|
|
60
|
+
"textArea": "Tekstgebied",
|
|
61
|
+
"textarea": "Tekstvak",
|
|
62
|
+
"decimal": "Decimaal",
|
|
63
|
+
"integer": "Geheel getal",
|
|
64
|
+
"regex": "Regex",
|
|
65
|
+
"person": "Persoon",
|
|
66
|
+
"checkbox": "Checkbox",
|
|
67
|
+
"phoneNumber": "Telefoonnummer",
|
|
68
|
+
"email": "E-mail"
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
"messages": {
|
|
72
|
+
"noFieldsWithState": "Er zijn geen {{state}} {{title}} om te tonen.",
|
|
73
|
+
"noFields": "Er zijn geen {{title}} om te tonen.",
|
|
74
|
+
"confirmDelete": "U verwijdert permanent het veld <strong>{{name}}</strong>. Deze actie kan niet ongedaan worden gemaakt.",
|
|
75
|
+
"confirmDeleteWithCount": "U verwijdert permanent het veld <strong>{{name}}</strong> dat waarden bevat voor <strong>{{count}} {{resource}}</strong>. De waarden gaan verloren bij het verwijderen van het veld. Deze actie kan niet ongedaan worden gemaakt.",
|
|
76
|
+
"manageFieldFor": "Beheer velden voor {{resource}}",
|
|
77
|
+
"manageTitleForResource": "Beheer {{title}} voor {{resource}}",
|
|
78
|
+
"titleForResource": "{{title}} voor {{resource}}",
|
|
79
|
+
"stateTitleForResource": "{{state}} {{title}} voor {{resource}}",
|
|
80
|
+
"invalidKind": "Ongeldig type",
|
|
81
|
+
"reorderFields": "Velden worden van boven naar beneden weergegeven.",
|
|
82
|
+
"blockNavigationAlert": {
|
|
83
|
+
"title": "U heeft niet-opgeslagen wijzigingen",
|
|
84
|
+
"message": "Al uw niet-opgeslagen wijzigingen gaan verloren. Dit kan niet ongedaan worden gemaakt.",
|
|
85
|
+
"submitButtonLabel": "Veranderingen weggooien",
|
|
86
|
+
"cancelButtonLabel": "Annuleren"
|
|
87
|
+
}
|
|
88
|
+
},
|
|
89
|
+
"validations": {
|
|
90
|
+
"regexConditionIsRequired": "Regex voorwaarde is vereist",
|
|
91
|
+
"regexHelpMessageIsRequired": "Helpbericht is vereist",
|
|
92
|
+
"fieldNameIsRequired": "Veldnaam is vereist",
|
|
93
|
+
"atLeastFieldOptionIsRequired": "Er is ten minste één veldoptie vereist",
|
|
94
|
+
"fieldOptionIsRequired": "Veldoptie is vereist",
|
|
95
|
+
"kindIsRequired": "Type is vereist",
|
|
96
|
+
"invalidRegexPattern": "Ongeldig regex-patroon",
|
|
97
|
+
"advancedRegexAssertionsNotSupported": "Geavanceerde regex-asserties worden niet ondersteund",
|
|
98
|
+
"notAValidNumber": "Ingevoerd nummer is niet geldig",
|
|
99
|
+
"notAValidInteger": "Ingevoerd nummer is geen geldig geheel getal",
|
|
100
|
+
"notAValid": "Ingevoerd nummer is niet geldig",
|
|
101
|
+
"thisIsRequired": "Dit is een verplicht veld",
|
|
102
|
+
"minOneItem": "Selecteer ten minste één item",
|
|
103
|
+
"invalidEntity": "{{entity}} is ongeldig"
|
|
104
|
+
},
|
|
105
|
+
"tooltips": {
|
|
106
|
+
"reorder": "Velden worden van boven naar beneden weergegeven. Herordenen.",
|
|
107
|
+
"composeEmail": "E-mail opstellen",
|
|
108
|
+
"startCall": "Begin gesprek"
|
|
109
|
+
},
|
|
110
|
+
"helpTexts": {
|
|
111
|
+
"noData": "Hier is hoe u <a>{{title}}.</a> kunt gebruiken"
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
}
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
{
|
|
2
|
+
"neetoFields": {
|
|
3
|
+
"common": {
|
|
4
|
+
"yes": "Tak",
|
|
5
|
+
"no": "Nie"
|
|
6
|
+
},
|
|
7
|
+
"titles": {
|
|
8
|
+
"field_one": "Pole",
|
|
9
|
+
"field_other": "Pola",
|
|
10
|
+
"fieldWithCount_one": "{{count}} pole",
|
|
11
|
+
"fieldWithCount_other": "{{count}} pól",
|
|
12
|
+
"addField": "Dodaj nowe pole",
|
|
13
|
+
"editField": "Edytuj pole",
|
|
14
|
+
"deleteField": "Usunąć pole?",
|
|
15
|
+
"fieldName": "Nazwa pola",
|
|
16
|
+
"fieldKind": "Typ pola",
|
|
17
|
+
"required": "Wymagane",
|
|
18
|
+
"dropdownOptions": "Opcje rozwijane",
|
|
19
|
+
"regexOptions": "Opcje regex",
|
|
20
|
+
"reorderFields": "Zmień kolejność pól",
|
|
21
|
+
"filters": "Filtry",
|
|
22
|
+
"reorder": "Zmień kolejność"
|
|
23
|
+
},
|
|
24
|
+
"labels": {
|
|
25
|
+
"addField": "Dodaj nowe pole",
|
|
26
|
+
"edit": "Edytuj",
|
|
27
|
+
"delete": "Usuń",
|
|
28
|
+
"fieldName": "Nazwa pola",
|
|
29
|
+
"fieldKind": "Typ pola",
|
|
30
|
+
"createField": "Utwórz pole",
|
|
31
|
+
"updateField": "Zaktualizuj pole",
|
|
32
|
+
"addAnotherOption": "Dodaj kolejna opcję",
|
|
33
|
+
"regex": "Regex",
|
|
34
|
+
"regexCondition": "Warunek",
|
|
35
|
+
"helpMessage": "Wiadomość pomocnicza",
|
|
36
|
+
"isRequired": "Oznacz jako pole wymagane",
|
|
37
|
+
"submit": "Wyślij",
|
|
38
|
+
"saveChanges": "Zapisz zmiany",
|
|
39
|
+
"cancel": "Anuluj"
|
|
40
|
+
},
|
|
41
|
+
"placeholders": {
|
|
42
|
+
"enterFieldName": "Wprowadź nazwę pola",
|
|
43
|
+
"enterAnOption": "Wprowadź opcję",
|
|
44
|
+
"regexExample": "Przykład: /^[0-9]{5}$/",
|
|
45
|
+
"enterErrorMessage": "Wiadomość do wyświetlenia w przypadku błędu",
|
|
46
|
+
"searchFields": "Szukaj pól"
|
|
47
|
+
},
|
|
48
|
+
"fields": {
|
|
49
|
+
"kinds": {
|
|
50
|
+
"text": "Tekst",
|
|
51
|
+
"number": "Liczba",
|
|
52
|
+
"monetary": "Finansowy",
|
|
53
|
+
"singleOption": "Jedna opcja",
|
|
54
|
+
"multiOption": "Wiele opcji",
|
|
55
|
+
"date": "Data",
|
|
56
|
+
"time": "Czas",
|
|
57
|
+
"datetime": "Data i czas",
|
|
58
|
+
"dateRange": "Zakres dat",
|
|
59
|
+
"timeRange": "Zakres czasowy",
|
|
60
|
+
"textArea": "Obszar tekstowy",
|
|
61
|
+
"textarea": "Textarea",
|
|
62
|
+
"decimal": "Liczba dziesiętna",
|
|
63
|
+
"integer": "Liczba całkowita",
|
|
64
|
+
"regex": "Regex",
|
|
65
|
+
"person": "Osoba",
|
|
66
|
+
"checkbox": "Pole wyboru",
|
|
67
|
+
"phoneNumber": "Numer telefonu",
|
|
68
|
+
"email": "Email"
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
"messages": {
|
|
72
|
+
"noFieldsWithState": "Nie ma {{state}} {{title}} do pokazania.",
|
|
73
|
+
"noFields": "Nie ma {{title}} do pokazania.",
|
|
74
|
+
"confirmDelete": "Na pewno chcesz trwale usunąć pole <strong>{{name}}</strong>? Ta akcja nie może zostać cofnięta.",
|
|
75
|
+
"confirmDeleteWithCount": "Na pewno chcesz trwale usunąć pole <strong>{{name}}</strong>, które przechowuje wartości dla <strong>{{count}} {{resource}}</strong>? Wartości zostaną utracone po usunięciu pola. Ta akcja nie może zostać cofnięta.",
|
|
76
|
+
"manageFieldFor": "Zarządzaj polami dla {{resource}}",
|
|
77
|
+
"manageTitleForResource": "Zarządzaj {{title}} dla {{resource}}",
|
|
78
|
+
"titleForResource": "{{title}} dla {{resource}}",
|
|
79
|
+
"stateTitleForResource": "{{state}} {{title}} dla {{resource}}",
|
|
80
|
+
"invalidKind": "Nieprawidłowy typ",
|
|
81
|
+
"reorderFields": "Pola są wyświetlane od góry do dołu.",
|
|
82
|
+
"blockNavigationAlert": {
|
|
83
|
+
"title": "Masz niezapisane zmiany",
|
|
84
|
+
"message": "Wszystkie niespisane zmiany zostaną utracone. To nie może zostać cofnięte.",
|
|
85
|
+
"submitButtonLabel": "Porzuć zmiany",
|
|
86
|
+
"cancelButtonLabel": "Anuluj"
|
|
87
|
+
}
|
|
88
|
+
},
|
|
89
|
+
"validations": {
|
|
90
|
+
"regexConditionIsRequired": "Warunek regex jest wymagany",
|
|
91
|
+
"regexHelpMessageIsRequired": "Wiadomość pomocnicza jest wymagana",
|
|
92
|
+
"fieldNameIsRequired": "Nazwa pola jest wymagana",
|
|
93
|
+
"atLeastFieldOptionIsRequired": "Wymagana jest co najmniej jedna opcja pola",
|
|
94
|
+
"fieldOptionIsRequired": "Opcja pola jest wymagana",
|
|
95
|
+
"kindIsRequired": "Typ jest wymagany",
|
|
96
|
+
"invalidRegexPattern": "Nieprawidłowy wzór regex",
|
|
97
|
+
"advancedRegexAssertionsNotSupported": "Zaawansowane asercje regex nie są obsługiwane",
|
|
98
|
+
"notAValidNumber": "Wprowadzona liczba jest nieprawidłowa",
|
|
99
|
+
"notAValidInteger": "Wprowadzona liczba nie jest prawidłową liczbą całkowitą",
|
|
100
|
+
"notAValid": "Wprowadzona liczba jest nieprawidłowa",
|
|
101
|
+
"thisIsRequired": "To pole jest wymagane",
|
|
102
|
+
"minOneItem": "Wybierz co najmniej jeden element",
|
|
103
|
+
"invalidEntity": "{{entity}} jest nieprawidłowy"
|
|
104
|
+
},
|
|
105
|
+
"tooltips": {
|
|
106
|
+
"reorder": "Pola są wyświetlane od góry do dołu. Zmień ich kolejność.",
|
|
107
|
+
"composeEmail": "Napisz email",
|
|
108
|
+
"startCall": "Rozpocznij połączenie"
|
|
109
|
+
},
|
|
110
|
+
"helpTexts": {
|
|
111
|
+
"noData": "Oto jak możesz używać <a>{{title}}.</a>"
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
}
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
{
|
|
2
|
+
"neetoFields": {
|
|
3
|
+
"common": {
|
|
4
|
+
"yes": "Sim",
|
|
5
|
+
"no": "Não"
|
|
6
|
+
},
|
|
7
|
+
"titles": {
|
|
8
|
+
"field_one": "Campo",
|
|
9
|
+
"field_other": "Campos",
|
|
10
|
+
"fieldWithCount_one": "{{count}} campo",
|
|
11
|
+
"fieldWithCount_other": "{{count}} campos",
|
|
12
|
+
"addField": "Adicionar novo campo",
|
|
13
|
+
"editField": "Editar campo",
|
|
14
|
+
"deleteField": "Excluir campo?",
|
|
15
|
+
"fieldName": "Nome do campo",
|
|
16
|
+
"fieldKind": "Tipo de campo",
|
|
17
|
+
"required": "Obrigatório",
|
|
18
|
+
"dropdownOptions": "Opções do dropdown",
|
|
19
|
+
"regexOptions": "Opções de Regex",
|
|
20
|
+
"reorderFields": "Reordenar campos",
|
|
21
|
+
"filters": "Filtros",
|
|
22
|
+
"reorder": "Reordenar"
|
|
23
|
+
},
|
|
24
|
+
"labels": {
|
|
25
|
+
"addField": "Adicionar novo campo",
|
|
26
|
+
"edit": "Editar",
|
|
27
|
+
"delete": "Excluir",
|
|
28
|
+
"fieldName": "Nome do campo",
|
|
29
|
+
"fieldKind": "Tipo de campo",
|
|
30
|
+
"createField": "Criar campo",
|
|
31
|
+
"updateField": "Atualizar campo",
|
|
32
|
+
"addAnotherOption": "Adicionar outra opção",
|
|
33
|
+
"regex": "Regex",
|
|
34
|
+
"regexCondition": "Condição",
|
|
35
|
+
"helpMessage": "Mensagem de ajuda",
|
|
36
|
+
"isRequired": "Marcar como campo obrigatório",
|
|
37
|
+
"submit": "Enviar",
|
|
38
|
+
"saveChanges": "Salvar alterações",
|
|
39
|
+
"cancel": "Cancelar"
|
|
40
|
+
},
|
|
41
|
+
"placeholders": {
|
|
42
|
+
"enterFieldName": "Digite o nome do campo",
|
|
43
|
+
"enterAnOption": "Digite uma opção",
|
|
44
|
+
"regexExample": "Exemplo: /^[0-9]{5}$/",
|
|
45
|
+
"enterErrorMessage": "Mensagem a ser exibida em erro",
|
|
46
|
+
"searchFields": "Pesquisar campos"
|
|
47
|
+
},
|
|
48
|
+
"fields": {
|
|
49
|
+
"kinds": {
|
|
50
|
+
"text": "Texto",
|
|
51
|
+
"number": "Número",
|
|
52
|
+
"monetary": "Monetário",
|
|
53
|
+
"singleOption": "Opção única",
|
|
54
|
+
"multiOption": "Múltiplas opções",
|
|
55
|
+
"date": "Data",
|
|
56
|
+
"time": "Hora",
|
|
57
|
+
"datetime": "Data e hora",
|
|
58
|
+
"dateRange": "Intervalo de datas",
|
|
59
|
+
"timeRange": "Intervalo de tempo",
|
|
60
|
+
"textArea": "Área de texto",
|
|
61
|
+
"textarea": "Textarea",
|
|
62
|
+
"decimal": "Decimal",
|
|
63
|
+
"integer": "Inteiro",
|
|
64
|
+
"regex": "Regex",
|
|
65
|
+
"person": "Pessoa",
|
|
66
|
+
"checkbox": "Caixa de seleção",
|
|
67
|
+
"phoneNumber": "Número de telefone",
|
|
68
|
+
"email": "Email"
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
"messages": {
|
|
72
|
+
"noFieldsWithState": "Não há {{state}} {{title}} para mostrar.",
|
|
73
|
+
"noFields": "Não há {{title}} para mostrar.",
|
|
74
|
+
"confirmDelete": "Você está excluindo permanentemente o campo <strong>{{name}}</strong>. Esta ação não pode ser desfeita.",
|
|
75
|
+
"confirmDeleteWithCount": "Você está excluindo permanentemente o campo <strong>{{name}}</strong> que possui valores para <strong>{{count}} {{resource}}</strong>. Os valores serão perdidos ao excluir o campo. Esta ação não pode ser desfeita.",
|
|
76
|
+
"manageFieldFor": "Gerenciar campos para {{resource}}",
|
|
77
|
+
"manageTitleForResource": "Gerenciar {{title}} para {{resource}}",
|
|
78
|
+
"titleForResource": "{{title}} para {{resource}}",
|
|
79
|
+
"stateTitleForResource": "{{state}} {{title}} para {{resource}}",
|
|
80
|
+
"invalidKind": "Tipo inválido",
|
|
81
|
+
"reorderFields": "Os campos são exibidos de cima para baixo.",
|
|
82
|
+
"blockNavigationAlert": {
|
|
83
|
+
"title": "Você tem alterações não salvas",
|
|
84
|
+
"message": "Todas as suas alterações não salvas serão perdidas. Esta ação não pode ser desfeita.",
|
|
85
|
+
"submitButtonLabel": "Descartar alterações",
|
|
86
|
+
"cancelButtonLabel": "Cancelar"
|
|
87
|
+
}
|
|
88
|
+
},
|
|
89
|
+
"validations": {
|
|
90
|
+
"regexConditionIsRequired": "Condição de regex é obrigatória",
|
|
91
|
+
"regexHelpMessageIsRequired": "Mensagem de ajuda é obrigatória",
|
|
92
|
+
"fieldNameIsRequired": "Nome do campo é obrigatório",
|
|
93
|
+
"atLeastFieldOptionIsRequired": "Pelo menos uma opção de campo é obrigatória",
|
|
94
|
+
"fieldOptionIsRequired": "Opção de campo é obrigatória",
|
|
95
|
+
"kindIsRequired": "O tipo é obrigatório",
|
|
96
|
+
"invalidRegexPattern": "Padrão de regex inválido",
|
|
97
|
+
"advancedRegexAssertionsNotSupported": "Aserções de regex avançadas não são suportadas",
|
|
98
|
+
"notAValidNumber": "Número inserido não é válido",
|
|
99
|
+
"notAValidInteger": "Número inserido não é um inteiro válido",
|
|
100
|
+
"notAValid": "Número inserido não é válido",
|
|
101
|
+
"thisIsRequired": "Este é um campo obrigatório",
|
|
102
|
+
"minOneItem": "Selecione pelo menos um item",
|
|
103
|
+
"invalidEntity": "{{entity}} é inválido"
|
|
104
|
+
},
|
|
105
|
+
"tooltips": {
|
|
106
|
+
"reorder": "Os campos são exibidos de cima para baixo. Reordene-os.",
|
|
107
|
+
"composeEmail": "Redigir email",
|
|
108
|
+
"startCall": "Iniciar chamada"
|
|
109
|
+
},
|
|
110
|
+
"helpTexts": {
|
|
111
|
+
"noData": "Aqui está como você pode usar <a>{{title}}.</a>"
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
}
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
{
|
|
2
|
+
"neetoFields": {
|
|
3
|
+
"common": {
|
|
4
|
+
"yes": "Sim",
|
|
5
|
+
"no": "Não"
|
|
6
|
+
},
|
|
7
|
+
"titles": {
|
|
8
|
+
"field_one": "Campo",
|
|
9
|
+
"field_other": "Campos",
|
|
10
|
+
"fieldWithCount_one": "{{count}} campo",
|
|
11
|
+
"fieldWithCount_other": "{{count}} campos",
|
|
12
|
+
"addField": "Adicionar novo campo",
|
|
13
|
+
"editField": "Editar campo",
|
|
14
|
+
"deleteField": "Deletar campo?",
|
|
15
|
+
"fieldName": "Nome do campo",
|
|
16
|
+
"fieldKind": "Tipo de campo",
|
|
17
|
+
"required": "Obrigatório",
|
|
18
|
+
"dropdownOptions": "Opções do dropdown",
|
|
19
|
+
"regexOptions": "Opções de regex",
|
|
20
|
+
"reorderFields": "Reordenar campos",
|
|
21
|
+
"filters": "Filtros",
|
|
22
|
+
"reorder": "Reordenar"
|
|
23
|
+
},
|
|
24
|
+
"labels": {
|
|
25
|
+
"addField": "Adicionar novo campo",
|
|
26
|
+
"edit": "Editar",
|
|
27
|
+
"delete": "Deletar",
|
|
28
|
+
"fieldName": "Nome do campo",
|
|
29
|
+
"fieldKind": "Tipo de campo",
|
|
30
|
+
"createField": "Criar campo",
|
|
31
|
+
"updateField": "Atualizar campo",
|
|
32
|
+
"addAnotherOption": "Adicionar outra opção",
|
|
33
|
+
"regex": "Regex",
|
|
34
|
+
"regexCondition": "Condição",
|
|
35
|
+
"helpMessage": "Mensagem de ajuda",
|
|
36
|
+
"isRequired": "Marcar como campo obrigatório",
|
|
37
|
+
"submit": "Enviar",
|
|
38
|
+
"saveChanges": "Salvar alterações",
|
|
39
|
+
"cancel": "Cancelar"
|
|
40
|
+
},
|
|
41
|
+
"placeholders": {
|
|
42
|
+
"enterFieldName": "Digite o nome do campo",
|
|
43
|
+
"enterAnOption": "Digite uma opção",
|
|
44
|
+
"regexExample": "Exemplo: /^[0-9]{5}$/",
|
|
45
|
+
"enterErrorMessage": "Mensagem a ser exibida em caso de erro",
|
|
46
|
+
"searchFields": "Pesquisar campos"
|
|
47
|
+
},
|
|
48
|
+
"fields": {
|
|
49
|
+
"kinds": {
|
|
50
|
+
"text": "Texto",
|
|
51
|
+
"number": "Número",
|
|
52
|
+
"monetary": "Monetário",
|
|
53
|
+
"singleOption": "Opção única",
|
|
54
|
+
"multiOption": "Múltiplas opções",
|
|
55
|
+
"date": "Data",
|
|
56
|
+
"time": "Hora",
|
|
57
|
+
"datetime": "Data e hora",
|
|
58
|
+
"dateRange": "Intervalo de datas",
|
|
59
|
+
"timeRange": "Intervalo de tempo",
|
|
60
|
+
"textArea": "Área de texto",
|
|
61
|
+
"textarea": "Textarea",
|
|
62
|
+
"decimal": "Decimal",
|
|
63
|
+
"integer": "Inteiro",
|
|
64
|
+
"regex": "Regex",
|
|
65
|
+
"person": "Pessoa",
|
|
66
|
+
"checkbox": "Caixa de seleção",
|
|
67
|
+
"phoneNumber": "Número de telefone",
|
|
68
|
+
"email": "Email"
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
"messages": {
|
|
72
|
+
"noFieldsWithState": "Não há {{state}} {{title}} para mostrar.",
|
|
73
|
+
"noFields": "Não há {{title}} para mostrar.",
|
|
74
|
+
"confirmDelete": "Você está deletando permanentemente o campo <strong>{{name}}</strong>. Esta ação não pode ser desfeita.",
|
|
75
|
+
"confirmDeleteWithCount": "Você está deletando permanentemente o campo <strong>{{name}}</strong> que contém valores para <strong>{{count}} {{resource}}</strong>. Os valores serão perdidos ao deletar o campo. Esta ação não pode ser desfeita.",
|
|
76
|
+
"manageFieldFor": "Gerenciar campos para {{resource}}",
|
|
77
|
+
"manageTitleForResource": "Gerenciar {{title}} para {{resource}}",
|
|
78
|
+
"titleForResource": "{{title}} para {{resource}}",
|
|
79
|
+
"stateTitleForResource": "{{state}} {{title}} para {{resource}}",
|
|
80
|
+
"invalidKind": "Tipo inválido",
|
|
81
|
+
"reorderFields": "Os campos são exibidos de cima para baixo.",
|
|
82
|
+
"blockNavigationAlert": {
|
|
83
|
+
"title": "Você tem alterações não salvas",
|
|
84
|
+
"message": "Todas as suas alterações não salvas serão perdidas. Isso não pode ser desfeito.",
|
|
85
|
+
"submitButtonLabel": "Descartar alterações",
|
|
86
|
+
"cancelButtonLabel": "Cancelar"
|
|
87
|
+
}
|
|
88
|
+
},
|
|
89
|
+
"validations": {
|
|
90
|
+
"regexConditionIsRequired": "A condição de regex é obrigatória",
|
|
91
|
+
"regexHelpMessageIsRequired": "A mensagem de ajuda é obrigatória",
|
|
92
|
+
"fieldNameIsRequired": "O nome do campo é obrigatório",
|
|
93
|
+
"atLeastFieldOptionIsRequired": "Pelo menos uma opção de campo é obrigatória",
|
|
94
|
+
"fieldOptionIsRequired": "A opção de campo é obrigatória",
|
|
95
|
+
"kindIsRequired": "O tipo é obrigatório",
|
|
96
|
+
"invalidRegexPattern": "Padrão de regex inválido",
|
|
97
|
+
"advancedRegexAssertionsNotSupported": "As afirmações regex avançadas não são suportadas",
|
|
98
|
+
"notAValidNumber": "Número inserido não é válido",
|
|
99
|
+
"notAValidInteger": "Número inserido não é um inteiro válido",
|
|
100
|
+
"notAValid": "Número inserido não é válido",
|
|
101
|
+
"thisIsRequired": "Este é um campo obrigatório",
|
|
102
|
+
"minOneItem": "Selecione pelo menos um item",
|
|
103
|
+
"invalidEntity": "{{entity}} é inválido"
|
|
104
|
+
},
|
|
105
|
+
"tooltips": {
|
|
106
|
+
"reorder": "Os campos são exibidos de cima para baixo. Reordene-os.",
|
|
107
|
+
"composeEmail": "Compor email",
|
|
108
|
+
"startCall": "Iniciar chamada"
|
|
109
|
+
},
|
|
110
|
+
"helpTexts": {
|
|
111
|
+
"noData": "Aqui está como você pode usar <a>{{title}}.</a>"
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
}
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
{
|
|
2
|
+
"neetoFields": {
|
|
3
|
+
"common": {
|
|
4
|
+
"yes": "Da",
|
|
5
|
+
"no": "Nu"
|
|
6
|
+
},
|
|
7
|
+
"titles": {
|
|
8
|
+
"field_one": "Câmp",
|
|
9
|
+
"field_other": "Câmpuri",
|
|
10
|
+
"fieldWithCount_one": "{{count}} câmp",
|
|
11
|
+
"fieldWithCount_other": "{{count}} câmpuri",
|
|
12
|
+
"addField": "Adaugă câmp nou",
|
|
13
|
+
"editField": "Editează câmp",
|
|
14
|
+
"deleteField": "Șterge câmpul?",
|
|
15
|
+
"fieldName": "Numele câmpului",
|
|
16
|
+
"fieldKind": "Tipul câmpului",
|
|
17
|
+
"required": "Obligatoriu",
|
|
18
|
+
"dropdownOptions": "Opțiuni de meniu derulant",
|
|
19
|
+
"regexOptions": "Opțiuni Regex",
|
|
20
|
+
"reorderFields": "Reordonează câmpurile",
|
|
21
|
+
"filters": "Filtre",
|
|
22
|
+
"reorder": "Reordonează"
|
|
23
|
+
},
|
|
24
|
+
"labels": {
|
|
25
|
+
"addField": "Adaugă câmp nou",
|
|
26
|
+
"edit": "Editează",
|
|
27
|
+
"delete": "Șterge",
|
|
28
|
+
"fieldName": "Numele câmpului",
|
|
29
|
+
"fieldKind": "Tipul câmpului",
|
|
30
|
+
"createField": "Creează câmp",
|
|
31
|
+
"updateField": "Actualizează câmp",
|
|
32
|
+
"addAnotherOption": "Adaugă o altă opțiune",
|
|
33
|
+
"regex": "Regex",
|
|
34
|
+
"regexCondition": "Condiție",
|
|
35
|
+
"helpMessage": "Mesaj de ajutor",
|
|
36
|
+
"isRequired": "Marchează ca câmp obligatoriu",
|
|
37
|
+
"submit": "Trimite",
|
|
38
|
+
"saveChanges": "Salvează modificările",
|
|
39
|
+
"cancel": "Anulează"
|
|
40
|
+
},
|
|
41
|
+
"placeholders": {
|
|
42
|
+
"enterFieldName": "Introdu numele câmpului",
|
|
43
|
+
"enterAnOption": "Introdu o opțiune",
|
|
44
|
+
"regexExample": "Exemplu: /^[0-9]{5}$/",
|
|
45
|
+
"enterErrorMessage": "Mesaj de eroare",
|
|
46
|
+
"searchFields": "Caută câmpuri"
|
|
47
|
+
},
|
|
48
|
+
"fields": {
|
|
49
|
+
"kinds": {
|
|
50
|
+
"text": "Text",
|
|
51
|
+
"number": "Număr",
|
|
52
|
+
"monetary": "Monetar",
|
|
53
|
+
"singleOption": "Opțiune unică",
|
|
54
|
+
"multiOption": "Opțiune multiplă",
|
|
55
|
+
"date": "Dată",
|
|
56
|
+
"time": "Timp",
|
|
57
|
+
"datetime": "Dată și ora",
|
|
58
|
+
"dateRange": "Interval de date",
|
|
59
|
+
"timeRange": "Interval de timp",
|
|
60
|
+
"textArea": "Zonă de text",
|
|
61
|
+
"textarea": "Zonă de text",
|
|
62
|
+
"decimal": "Decimal",
|
|
63
|
+
"integer": "Întreg",
|
|
64
|
+
"regex": "Regex",
|
|
65
|
+
"person": "Persoană",
|
|
66
|
+
"checkbox": "Casetă de selectare",
|
|
67
|
+
"phoneNumber": "Număr de telefon",
|
|
68
|
+
"email": "Email"
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
"messages": {
|
|
72
|
+
"noFieldsWithState": "Nu sunt {{state}} {{title}} de afișat.",
|
|
73
|
+
"noFields": "Nu sunt {{title}} de afișat.",
|
|
74
|
+
"confirmDelete": "Ștergi permanent câmpul <strong>{{name}}</strong>. Această acțiune nu poate fi anulată.",
|
|
75
|
+
"confirmDeleteWithCount": "Ștergi permanent câmpul <strong>{{name}}</strong> care conține valori pentru <strong>{{count}} {{resource}}</strong>. Valorile vor fi pierdute la ștergerea câmpului. Această acțiune nu poate fi anulată.",
|
|
76
|
+
"manageFieldFor": "Gestionează câmpurile pentru {{resource}}",
|
|
77
|
+
"manageTitleForResource": "Gestionează {{title}} pentru {{resource}}",
|
|
78
|
+
"titleForResource": "{{title}} pentru {{resource}}",
|
|
79
|
+
"stateTitleForResource": "{{state}} {{title}} pentru {{resource}}",
|
|
80
|
+
"invalidKind": "Tip invalid",
|
|
81
|
+
"reorderFields": "Câmpurile sunt afișate de sus în jos.",
|
|
82
|
+
"blockNavigationAlert": {
|
|
83
|
+
"title": "Ai modificări nesalvate",
|
|
84
|
+
"message": "Toate modificările nesalvate vor fi pierdute. Aceasta nu poate fi anulată.",
|
|
85
|
+
"submitButtonLabel": "Renunță la modificări",
|
|
86
|
+
"cancelButtonLabel": "Anulează"
|
|
87
|
+
}
|
|
88
|
+
},
|
|
89
|
+
"validations": {
|
|
90
|
+
"regexConditionIsRequired": "Condiția Regex este obligatorie",
|
|
91
|
+
"regexHelpMessageIsRequired": "Mesajul de ajutor este obligatoriu",
|
|
92
|
+
"fieldNameIsRequired": "Numele câmpului este obligatoriu",
|
|
93
|
+
"atLeastFieldOptionIsRequired": "Este necesară cel puțin o opțiune de câmp",
|
|
94
|
+
"fieldOptionIsRequired": "Opțiunea câmpului este obligatorie",
|
|
95
|
+
"kindIsRequired": "Tipul este obligatoriu",
|
|
96
|
+
"invalidRegexPattern": "Tipar regex invalid",
|
|
97
|
+
"advancedRegexAssertionsNotSupported": "Afirmarea avansată regex nu este acceptată",
|
|
98
|
+
"notAValidNumber": "Numărul introdus nu este valid",
|
|
99
|
+
"notAValidInteger": "Numărul introdus nu este un întreg valid",
|
|
100
|
+
"notAValid": "Numărul introdus nu este valid",
|
|
101
|
+
"thisIsRequired": "Acesta este un câmp obligatoriu",
|
|
102
|
+
"minOneItem": "Selectează cel puțin un element",
|
|
103
|
+
"invalidEntity": "{{entity}} este invalid"
|
|
104
|
+
},
|
|
105
|
+
"tooltips": {
|
|
106
|
+
"reorder": "Câmpurile sunt afișate de sus în jos. Reordonează-le.",
|
|
107
|
+
"composeEmail": "Comunează email",
|
|
108
|
+
"startCall": "Începe apelul"
|
|
109
|
+
},
|
|
110
|
+
"helpTexts": {
|
|
111
|
+
"noData": "Iată cum poți utiliza <a>{{title}}.</a>"
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
}
|