@bagelink/vue 1.9.51 → 1.9.56
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/components/AddressSearch.vue.d.ts.map +1 -1
- package/dist/components/Btn.vue.d.ts +2 -2
- package/dist/components/Btn.vue.d.ts.map +1 -1
- package/dist/components/Filter.vue.d.ts +0 -1
- package/dist/components/Filter.vue.d.ts.map +1 -1
- package/dist/components/ImportData.vue.d.ts.map +1 -1
- package/dist/components/ModalConfirm.vue.d.ts.map +1 -1
- package/dist/components/Spreadsheet/Index.vue.d.ts.map +1 -1
- package/dist/components/form/FieldArray.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/ColorInput.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/DateInput.vue.d.ts +1 -1
- package/dist/components/form/inputs/DateInput.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/DatePicker.vue.d.ts +1 -1
- package/dist/components/form/inputs/DatePicker.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/EmailInput.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/PasswordInput.vue.d.ts +1 -1
- package/dist/components/form/inputs/PasswordInput.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/RadioPillsInput.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/SelectInput.vue.d.ts +0 -1
- package/dist/components/form/inputs/SelectInput.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/TelInput.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/Upload/UploadInput.vue.d.ts.map +1 -1
- package/dist/components/lightbox/Lightbox.vue.d.ts.map +1 -1
- package/dist/dialog/DialogConfirm.vue.d.ts +0 -3
- package/dist/dialog/DialogConfirm.vue.d.ts.map +1 -1
- package/dist/dialog/DialogForm.vue.d.ts.map +1 -1
- package/dist/form-flow/FormFlow.vue.d.ts.map +1 -1
- package/dist/form-flow/MultiStepForm.vue.d.ts.map +1 -1
- package/dist/i18n/index.d.ts +995 -0
- package/dist/i18n/index.d.ts.map +1 -0
- package/dist/index.cjs +135 -130
- package/dist/index.d.ts +2 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +15388 -11464
- package/dist/plugins/bagel.d.ts +5 -7
- package/dist/plugins/bagel.d.ts.map +1 -1
- package/dist/style.css +1 -1
- package/dist/utils/calendar/dateUtils.d.ts +6 -5
- package/dist/utils/calendar/dateUtils.d.ts.map +1 -1
- package/dist/utils/index.d.ts +0 -1
- package/dist/utils/index.d.ts.map +1 -1
- package/dist/utils/lang.d.ts +6 -7
- package/dist/utils/lang.d.ts.map +1 -1
- package/package.json +2 -1
- package/src/components/AddressSearch.vue +5 -2
- package/src/components/Btn.vue +8 -6
- package/src/components/Filter.vue +37 -76
- package/src/components/ImportData.vue +35 -29
- package/src/components/ModalConfirm.vue +9 -7
- package/src/components/Spreadsheet/Index.vue +35 -60
- package/src/components/calendar/views/AgendaView.vue +1 -1
- package/src/components/calendar/views/DayView.vue +3 -3
- package/src/components/calendar/views/MonthView.vue +1 -1
- package/src/components/calendar/views/WeekView.vue +6 -6
- package/src/components/form/FieldArray.vue +4 -2
- package/src/components/form/inputs/ColorInput.vue +18 -12
- package/src/components/form/inputs/DateInput.vue +8 -5
- package/src/components/form/inputs/EmailInput.vue +9 -7
- package/src/components/form/inputs/PasswordInput.vue +17 -15
- package/src/components/form/inputs/RadioPillsInput.vue +5 -3
- package/src/components/form/inputs/SelectInput.vue +13 -11
- package/src/components/form/inputs/TelInput.vue +11 -9
- package/src/components/form/inputs/Upload/UploadInput.vue +7 -5
- package/src/components/lightbox/Lightbox.vue +4 -1
- package/src/dialog/DialogConfirm.vue +11 -6
- package/src/dialog/DialogForm.vue +9 -9
- package/src/form-flow/FormFlow.vue +7 -15
- package/src/form-flow/MultiStepForm.vue +16 -12
- package/src/i18n/index.ts +136 -0
- package/src/i18n/locales/en.json +153 -0
- package/src/i18n/locales/es.json +153 -0
- package/src/i18n/locales/fr.json +153 -0
- package/src/i18n/locales/he.json +174 -0
- package/src/i18n/locales/it.json +153 -0
- package/src/i18n/locales/ru.json +153 -0
- package/src/index.ts +11 -5
- package/src/plugins/bagel.ts +14 -26
- package/src/styles/text.css +2 -1
- package/src/utils/calendar/dateUtils.ts +108 -63
- package/src/utils/index.ts +0 -2
- package/src/utils/lang.ts +0 -46
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
{
|
|
2
|
+
"modalConfirm": {
|
|
3
|
+
"title": "Confirmar",
|
|
4
|
+
"message": "¿Estás seguro de que quieres continuar?",
|
|
5
|
+
"confirm": "Confirmar",
|
|
6
|
+
"cancel": "Cancelar"
|
|
7
|
+
},
|
|
8
|
+
"upload": {
|
|
9
|
+
"upload": "Subir",
|
|
10
|
+
"uploading": "Subiendo {count} archivo{plural}...",
|
|
11
|
+
"noFile": "Ningún archivo seleccionado",
|
|
12
|
+
"dropPlaceholder": "Arrastra y suelta archivos aquí o haz clic para subir",
|
|
13
|
+
"delete": "Eliminar",
|
|
14
|
+
"replace": "Reemplazar",
|
|
15
|
+
"download": "Descargar"
|
|
16
|
+
},
|
|
17
|
+
"pagination": {
|
|
18
|
+
"of": "de",
|
|
19
|
+
"prev": "Anterior",
|
|
20
|
+
"next": "Siguiente"
|
|
21
|
+
},
|
|
22
|
+
"form": {
|
|
23
|
+
"required": "Este campo es obligatorio",
|
|
24
|
+
"invalidEmail": "Introduce un correo electrónico válido",
|
|
25
|
+
"invalidUrl": "Introduce una URL válida",
|
|
26
|
+
"minLength": "Debe tener al menos {min} caracteres",
|
|
27
|
+
"maxLength": "Debe tener como máximo {max} caracteres",
|
|
28
|
+
"minValue": "Debe ser al menos {min}",
|
|
29
|
+
"maxValue": "Debe ser como máximo {max}",
|
|
30
|
+
"pattern": "Formato inválido",
|
|
31
|
+
"passwordStrength": "Fortaleza de la contraseña"
|
|
32
|
+
},
|
|
33
|
+
"password": {
|
|
34
|
+
"veryWeak": "Muy débil",
|
|
35
|
+
"weak": "Débil",
|
|
36
|
+
"fair": "Regular",
|
|
37
|
+
"good": "Buena",
|
|
38
|
+
"strong": "Fuerte"
|
|
39
|
+
},
|
|
40
|
+
"select": {
|
|
41
|
+
"placeholder": "Seleccionar",
|
|
42
|
+
"search": "Buscar",
|
|
43
|
+
"yes": "Sí",
|
|
44
|
+
"no": "No"
|
|
45
|
+
},
|
|
46
|
+
"fieldArray": {
|
|
47
|
+
"loadDefault": "Cargar {label} predeterminado"
|
|
48
|
+
},
|
|
49
|
+
"btn": {
|
|
50
|
+
"loading": "Cargando..."
|
|
51
|
+
},
|
|
52
|
+
"toast": {
|
|
53
|
+
"success": "Éxito",
|
|
54
|
+
"error": "Error",
|
|
55
|
+
"warning": "Advertencia",
|
|
56
|
+
"info": "Información"
|
|
57
|
+
},
|
|
58
|
+
"filter": {
|
|
59
|
+
"filter": "Filtro",
|
|
60
|
+
"noActiveFilters": "Sin filtros activos",
|
|
61
|
+
"connectors": {
|
|
62
|
+
"and": "Y",
|
|
63
|
+
"or": "O"
|
|
64
|
+
},
|
|
65
|
+
"operators": {
|
|
66
|
+
"eq": "Igual a",
|
|
67
|
+
"ne": "No igual a",
|
|
68
|
+
"gt": "Mayor que",
|
|
69
|
+
"ge": "Mayor o igual",
|
|
70
|
+
"lt": "Menor que",
|
|
71
|
+
"le": "Menor o igual",
|
|
72
|
+
"co": "Contiene",
|
|
73
|
+
"sw": "Empieza con",
|
|
74
|
+
"ew": "Termina con",
|
|
75
|
+
"pr": "Presente"
|
|
76
|
+
},
|
|
77
|
+
"placeholders": {
|
|
78
|
+
"selectField": "Seleccionar campo",
|
|
79
|
+
"selectOption": "Seleccionar opción",
|
|
80
|
+
"selectDate": "Seleccionar fecha",
|
|
81
|
+
"enterValue": "Valor"
|
|
82
|
+
},
|
|
83
|
+
"buttons": {
|
|
84
|
+
"addCondition": "Añadir condición",
|
|
85
|
+
"clearAll": "Limpiar todo"
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
"multiStep": {
|
|
89
|
+
"previous": "Anterior",
|
|
90
|
+
"next": "Siguiente",
|
|
91
|
+
"complete": "Completar",
|
|
92
|
+
"step": "Paso {current} de {total}"
|
|
93
|
+
},
|
|
94
|
+
"addressSearch": {
|
|
95
|
+
"placeholder": "Introduce una dirección"
|
|
96
|
+
},
|
|
97
|
+
"importData": {
|
|
98
|
+
"close": "Cerrar",
|
|
99
|
+
"cancel": "Cancelar",
|
|
100
|
+
"importData": "Importar datos",
|
|
101
|
+
"changeFile": "Cambiar archivo",
|
|
102
|
+
"selectSheet": "Seleccionar hoja",
|
|
103
|
+
"hasHeaders": "Marcar si el archivo tiene fila de encabezado",
|
|
104
|
+
"sourceKeyField": "Campo clave de origen (de este archivo)",
|
|
105
|
+
"relatedKeyField": "Campo clave relacionado (del archivo relacionado)",
|
|
106
|
+
"selectSourceValue": "Seleccionar valor de origen",
|
|
107
|
+
"sourceValue": "Valor de origen",
|
|
108
|
+
"selectTargetValue": "Seleccionar valor de destino",
|
|
109
|
+
"targetValue": "Valor de destino",
|
|
110
|
+
"selectColumn": "Seleccionar columna..."
|
|
111
|
+
},
|
|
112
|
+
"timeAgo": {
|
|
113
|
+
"year": "año",
|
|
114
|
+
"month": "mes",
|
|
115
|
+
"week": "semana",
|
|
116
|
+
"day": "día",
|
|
117
|
+
"hour": "hora",
|
|
118
|
+
"minute": "minuto",
|
|
119
|
+
"second": "segundo",
|
|
120
|
+
"ago": "hace",
|
|
121
|
+
"in": "en",
|
|
122
|
+
"justNow": "Justo ahora"
|
|
123
|
+
},
|
|
124
|
+
"dialogForm": {
|
|
125
|
+
"save": "Guardar",
|
|
126
|
+
"cancel": "Cancelar",
|
|
127
|
+
"delete": "Eliminar",
|
|
128
|
+
"validationError": "Por favor corrija los errores de validación antes de enviar",
|
|
129
|
+
"errorOccurred": "Ocurrió un error"
|
|
130
|
+
},
|
|
131
|
+
"tel": {
|
|
132
|
+
"phoneNumber": "Número de teléfono",
|
|
133
|
+
"invalidPhone": "Por favor introduce un número de teléfono válido"
|
|
134
|
+
},
|
|
135
|
+
"email": {
|
|
136
|
+
"invalidEmail": "Introduce un correo electrónico válido",
|
|
137
|
+
"invalidDomain": "El dominio de este correo electrónico parece no ser válido"
|
|
138
|
+
},
|
|
139
|
+
"date": {
|
|
140
|
+
"invalidFormat": "Formato de fecha inválido"
|
|
141
|
+
},
|
|
142
|
+
"spreadsheet": {
|
|
143
|
+
"wrapText": "Ajuste de texto",
|
|
144
|
+
"selectAll": "Seleccionar todo",
|
|
145
|
+
"clearAll": "Limpiar todo"
|
|
146
|
+
},
|
|
147
|
+
"lightbox": {
|
|
148
|
+
"openFile": "Abrir archivo"
|
|
149
|
+
},
|
|
150
|
+
"color": {
|
|
151
|
+
"placeholder": "Introduce un color"
|
|
152
|
+
}
|
|
153
|
+
}
|
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
{
|
|
2
|
+
"modalConfirm": {
|
|
3
|
+
"title": "Confirmer",
|
|
4
|
+
"message": "Êtes-vous sûr de vouloir continuer ?",
|
|
5
|
+
"confirm": "Confirmer",
|
|
6
|
+
"cancel": "Annuler"
|
|
7
|
+
},
|
|
8
|
+
"upload": {
|
|
9
|
+
"upload": "Télécharger",
|
|
10
|
+
"uploading": "Téléchargement de {count} fichier{plural} en cours...",
|
|
11
|
+
"noFile": "Aucun fichier sélectionné",
|
|
12
|
+
"dropPlaceholder": "Glissez-déposez des fichiers ici ou cliquez pour télécharger",
|
|
13
|
+
"delete": "Supprimer",
|
|
14
|
+
"replace": "Remplacer",
|
|
15
|
+
"download": "Télécharger"
|
|
16
|
+
},
|
|
17
|
+
"pagination": {
|
|
18
|
+
"of": "de",
|
|
19
|
+
"prev": "Précédent",
|
|
20
|
+
"next": "Suivant"
|
|
21
|
+
},
|
|
22
|
+
"form": {
|
|
23
|
+
"required": "Ce champ est obligatoire",
|
|
24
|
+
"invalidEmail": "Veuillez entrer une adresse email valide",
|
|
25
|
+
"invalidUrl": "Veuillez entrer une URL valide",
|
|
26
|
+
"minLength": "Doit contenir au moins {min} caractères",
|
|
27
|
+
"maxLength": "Doit contenir au maximum {max} caractères",
|
|
28
|
+
"minValue": "Doit être au moins {min}",
|
|
29
|
+
"maxValue": "Doit être au maximum {max}",
|
|
30
|
+
"pattern": "Format invalide",
|
|
31
|
+
"passwordStrength": "Force du mot de passe"
|
|
32
|
+
},
|
|
33
|
+
"password": {
|
|
34
|
+
"veryWeak": "Très faible",
|
|
35
|
+
"weak": "Faible",
|
|
36
|
+
"fair": "Passable",
|
|
37
|
+
"good": "Bonne",
|
|
38
|
+
"strong": "Forte"
|
|
39
|
+
},
|
|
40
|
+
"select": {
|
|
41
|
+
"placeholder": "Sélectionner",
|
|
42
|
+
"search": "Rechercher",
|
|
43
|
+
"yes": "Oui",
|
|
44
|
+
"no": "Non"
|
|
45
|
+
},
|
|
46
|
+
"fieldArray": {
|
|
47
|
+
"loadDefault": "Charger {label} par défaut"
|
|
48
|
+
},
|
|
49
|
+
"btn": {
|
|
50
|
+
"loading": "Chargement..."
|
|
51
|
+
},
|
|
52
|
+
"toast": {
|
|
53
|
+
"success": "Succès",
|
|
54
|
+
"error": "Erreur",
|
|
55
|
+
"warning": "Avertissement",
|
|
56
|
+
"info": "Information"
|
|
57
|
+
},
|
|
58
|
+
"filter": {
|
|
59
|
+
"filter": "Filtre",
|
|
60
|
+
"noActiveFilters": "Aucun filtre actif",
|
|
61
|
+
"connectors": {
|
|
62
|
+
"and": "Et",
|
|
63
|
+
"or": "Ou"
|
|
64
|
+
},
|
|
65
|
+
"operators": {
|
|
66
|
+
"eq": "Égal à",
|
|
67
|
+
"ne": "Différent de",
|
|
68
|
+
"gt": "Supérieur à",
|
|
69
|
+
"ge": "Supérieur ou égal",
|
|
70
|
+
"lt": "Inférieur à",
|
|
71
|
+
"le": "Inférieur ou égal",
|
|
72
|
+
"co": "Contient",
|
|
73
|
+
"sw": "Commence par",
|
|
74
|
+
"ew": "Se termine par",
|
|
75
|
+
"pr": "Présent"
|
|
76
|
+
},
|
|
77
|
+
"placeholders": {
|
|
78
|
+
"selectField": "Sélectionner un champ",
|
|
79
|
+
"selectOption": "Sélectionner une option",
|
|
80
|
+
"selectDate": "Sélectionner une date",
|
|
81
|
+
"enterValue": "Valeur"
|
|
82
|
+
},
|
|
83
|
+
"buttons": {
|
|
84
|
+
"addCondition": "Ajouter une condition",
|
|
85
|
+
"clearAll": "Tout effacer"
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
"multiStep": {
|
|
89
|
+
"previous": "Précédent",
|
|
90
|
+
"next": "Suivant",
|
|
91
|
+
"complete": "Terminer",
|
|
92
|
+
"step": "Étape {current} sur {total}"
|
|
93
|
+
},
|
|
94
|
+
"addressSearch": {
|
|
95
|
+
"placeholder": "Entrez une adresse"
|
|
96
|
+
},
|
|
97
|
+
"importData": {
|
|
98
|
+
"close": "Fermer",
|
|
99
|
+
"cancel": "Annuler",
|
|
100
|
+
"importData": "Importer les données",
|
|
101
|
+
"changeFile": "Changer de fichier",
|
|
102
|
+
"selectSheet": "Sélectionner la feuille",
|
|
103
|
+
"hasHeaders": "Cochez si le fichier a une ligne d'en-tête",
|
|
104
|
+
"sourceKeyField": "Champ clé source (de ce fichier)",
|
|
105
|
+
"relatedKeyField": "Champ clé lié (du fichier lié)",
|
|
106
|
+
"selectSourceValue": "Sélectionner la valeur source",
|
|
107
|
+
"sourceValue": "Valeur source",
|
|
108
|
+
"selectTargetValue": "Sélectionner la valeur cible",
|
|
109
|
+
"targetValue": "Valeur cible",
|
|
110
|
+
"selectColumn": "Sélectionner une colonne..."
|
|
111
|
+
},
|
|
112
|
+
"timeAgo": {
|
|
113
|
+
"year": "an",
|
|
114
|
+
"month": "mois",
|
|
115
|
+
"week": "semaine",
|
|
116
|
+
"day": "jour",
|
|
117
|
+
"hour": "heure",
|
|
118
|
+
"minute": "minute",
|
|
119
|
+
"second": "seconde",
|
|
120
|
+
"ago": "il y a",
|
|
121
|
+
"in": "dans",
|
|
122
|
+
"justNow": "À l'instant"
|
|
123
|
+
},
|
|
124
|
+
"dialogForm": {
|
|
125
|
+
"save": "Enregistrer",
|
|
126
|
+
"cancel": "Annuler",
|
|
127
|
+
"delete": "Supprimer",
|
|
128
|
+
"validationError": "Veuillez corriger les erreurs de validation avant de soumettre",
|
|
129
|
+
"errorOccurred": "Une erreur est survenue"
|
|
130
|
+
},
|
|
131
|
+
"tel": {
|
|
132
|
+
"phoneNumber": "Numéro de téléphone",
|
|
133
|
+
"invalidPhone": "Veuillez entrer un numéro de téléphone valide"
|
|
134
|
+
},
|
|
135
|
+
"email": {
|
|
136
|
+
"invalidEmail": "Veuillez entrer une adresse email valide",
|
|
137
|
+
"invalidDomain": "Le domaine de cet email semble invalide"
|
|
138
|
+
},
|
|
139
|
+
"date": {
|
|
140
|
+
"invalidFormat": "Format de date invalide"
|
|
141
|
+
},
|
|
142
|
+
"spreadsheet": {
|
|
143
|
+
"wrapText": "Renvoyer à la ligne",
|
|
144
|
+
"selectAll": "Tout sélectionner",
|
|
145
|
+
"clearAll": "Tout effacer"
|
|
146
|
+
},
|
|
147
|
+
"lightbox": {
|
|
148
|
+
"openFile": "Ouvrir le fichier"
|
|
149
|
+
},
|
|
150
|
+
"color": {
|
|
151
|
+
"placeholder": "Entrez une couleur"
|
|
152
|
+
}
|
|
153
|
+
}
|
|
@@ -0,0 +1,174 @@
|
|
|
1
|
+
{
|
|
2
|
+
"modalConfirm": {
|
|
3
|
+
"title": "אישור",
|
|
4
|
+
"message": "האם אתה בטוח שברצונך להמשיך?",
|
|
5
|
+
"confirm": "אישור",
|
|
6
|
+
"cancel": "ביטול"
|
|
7
|
+
},
|
|
8
|
+
"upload": {
|
|
9
|
+
"upload": "העלה",
|
|
10
|
+
"uploading": "מעלה {count} קבצים...",
|
|
11
|
+
"noFile": "לא נבחר קובץ",
|
|
12
|
+
"dropPlaceholder": "גרור ושחרר קבצים כאן או לחץ להעלאה",
|
|
13
|
+
"delete": "מחק",
|
|
14
|
+
"replace": "החלף",
|
|
15
|
+
"download": "הורד"
|
|
16
|
+
},
|
|
17
|
+
"pagination": {
|
|
18
|
+
"of": "מתוך",
|
|
19
|
+
"prev": "הקודם",
|
|
20
|
+
"next": "הבא"
|
|
21
|
+
},
|
|
22
|
+
"form": {
|
|
23
|
+
"required": "שדה זה נדרש",
|
|
24
|
+
"invalidEmail": "הזן כתובת אימייל חוקית",
|
|
25
|
+
"invalidUrl": "הזן כתובת URL חוקית",
|
|
26
|
+
"minLength": "חייב להכיל לפחות {min} תווים",
|
|
27
|
+
"maxLength": "חייב להכיל לכל היותר {max} תווים",
|
|
28
|
+
"minValue": "חייב להיות לפחות {min}",
|
|
29
|
+
"maxValue": "חייב להיות לכל היותר {max}",
|
|
30
|
+
"pattern": "פורמט לא חוקי",
|
|
31
|
+
"passwordStrength": "חוזק סיסמה"
|
|
32
|
+
},
|
|
33
|
+
"password": {
|
|
34
|
+
"veryWeak": "חלשה מאוד",
|
|
35
|
+
"weak": "חלשה",
|
|
36
|
+
"fair": "סבירה",
|
|
37
|
+
"good": "טובה",
|
|
38
|
+
"strong": "חזקה"
|
|
39
|
+
},
|
|
40
|
+
"select": {
|
|
41
|
+
"placeholder": "בחר",
|
|
42
|
+
"search": "חיפוש",
|
|
43
|
+
"yes": "כן",
|
|
44
|
+
"no": "לא"
|
|
45
|
+
},
|
|
46
|
+
"fieldArray": {
|
|
47
|
+
"loadDefault": "טען {label} ברירת מחדל"
|
|
48
|
+
},
|
|
49
|
+
"btn": {
|
|
50
|
+
"loading": "טוען..."
|
|
51
|
+
},
|
|
52
|
+
"toast": {
|
|
53
|
+
"success": "הצלחה",
|
|
54
|
+
"error": "שגיאה",
|
|
55
|
+
"warning": "אזהרה",
|
|
56
|
+
"info": "מידע"
|
|
57
|
+
},
|
|
58
|
+
"filter": {
|
|
59
|
+
"filter": "פילטר",
|
|
60
|
+
"noActiveFilters": "אין פילטרים פעילים",
|
|
61
|
+
"connectors": {
|
|
62
|
+
"and": "וגם",
|
|
63
|
+
"or": "או"
|
|
64
|
+
},
|
|
65
|
+
"operators": {
|
|
66
|
+
"eq": "שווה ל",
|
|
67
|
+
"ne": "לא שווה ל",
|
|
68
|
+
"gt": "גדול מ",
|
|
69
|
+
"ge": "גדול או שווה ל",
|
|
70
|
+
"lt": "קטן מ",
|
|
71
|
+
"le": "קטן או שווה ל",
|
|
72
|
+
"co": "מכיל",
|
|
73
|
+
"sw": "מתחיל ב",
|
|
74
|
+
"ew": "מסתיים ב",
|
|
75
|
+
"pr": "קיים"
|
|
76
|
+
},
|
|
77
|
+
"placeholders": {
|
|
78
|
+
"selectField": "בחר שדה",
|
|
79
|
+
"selectOption": "בחירה",
|
|
80
|
+
"selectDate": "בחירת תאריך",
|
|
81
|
+
"enterValue": "ערך"
|
|
82
|
+
},
|
|
83
|
+
"buttons": {
|
|
84
|
+
"addCondition": "הוספת תנאי",
|
|
85
|
+
"clearAll": "נקה הכל"
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
"multiStep": {
|
|
89
|
+
"previous": "הקודם",
|
|
90
|
+
"next": "הבא",
|
|
91
|
+
"complete": "סיים",
|
|
92
|
+
"step": "שלב {current} מתוך {total}"
|
|
93
|
+
},
|
|
94
|
+
"addressSearch": {
|
|
95
|
+
"placeholder": "הזן כתובת"
|
|
96
|
+
},
|
|
97
|
+
"importData": {
|
|
98
|
+
"close": "סגור",
|
|
99
|
+
"cancel": "ביטול",
|
|
100
|
+
"importData": "ייבא נתונים",
|
|
101
|
+
"changeFile": "החלף קובץ",
|
|
102
|
+
"selectSheet": "בחר גיליון",
|
|
103
|
+
"hasHeaders": "סמן אם לקובץ יש שורת כותרת",
|
|
104
|
+
"sourceKeyField": "שדה מפתח מקור (מהקובץ הזה)",
|
|
105
|
+
"relatedKeyField": "שדה מפתח קשור (מהקובץ הקשור)",
|
|
106
|
+
"selectSourceValue": "בחר ערך מקור",
|
|
107
|
+
"sourceValue": "ערך מקור",
|
|
108
|
+
"selectTargetValue": "בחר ערך יעד",
|
|
109
|
+
"targetValue": "ערך יעד",
|
|
110
|
+
"selectColumn": "בחר עמודה..."
|
|
111
|
+
},
|
|
112
|
+
"timeAgo": {
|
|
113
|
+
"year": {
|
|
114
|
+
"singular": "שנה",
|
|
115
|
+
"plural": "שנים"
|
|
116
|
+
},
|
|
117
|
+
"month": {
|
|
118
|
+
"singular": "חודש",
|
|
119
|
+
"plural": "חודשים"
|
|
120
|
+
},
|
|
121
|
+
"week": {
|
|
122
|
+
"singular": "שבוע",
|
|
123
|
+
"plural": "שבועות"
|
|
124
|
+
},
|
|
125
|
+
"day": {
|
|
126
|
+
"singular": "יום",
|
|
127
|
+
"plural": "ימים"
|
|
128
|
+
},
|
|
129
|
+
"hour": {
|
|
130
|
+
"singular": "שעה",
|
|
131
|
+
"plural": "שעות"
|
|
132
|
+
},
|
|
133
|
+
"minute": {
|
|
134
|
+
"singular": "דקה",
|
|
135
|
+
"plural": "דקות"
|
|
136
|
+
},
|
|
137
|
+
"second": {
|
|
138
|
+
"singular": "שנייה",
|
|
139
|
+
"plural": "שניות"
|
|
140
|
+
},
|
|
141
|
+
"ago": "לפני",
|
|
142
|
+
"in": "בעוד",
|
|
143
|
+
"justNow": "זה עתה"
|
|
144
|
+
},
|
|
145
|
+
"dialogForm": {
|
|
146
|
+
"save": "שמור",
|
|
147
|
+
"cancel": "ביטול",
|
|
148
|
+
"delete": "מחק",
|
|
149
|
+
"validationError": "אנא תקן את שגיאות האימות לפני השליחה",
|
|
150
|
+
"errorOccurred": "אירעה שגיאה"
|
|
151
|
+
},
|
|
152
|
+
"tel": {
|
|
153
|
+
"phoneNumber": "מספר טלפון",
|
|
154
|
+
"invalidPhone": "אנא הזן מספר טלפון תקין"
|
|
155
|
+
},
|
|
156
|
+
"email": {
|
|
157
|
+
"invalidEmail": "הזן כתובת אימייל חוקית",
|
|
158
|
+
"invalidDomain": "נראה שדומיין האימייל אינו חוקי"
|
|
159
|
+
},
|
|
160
|
+
"date": {
|
|
161
|
+
"invalidFormat": "פורמט תאריך לא חוקי"
|
|
162
|
+
},
|
|
163
|
+
"spreadsheet": {
|
|
164
|
+
"wrapText": "גלישת טקסט",
|
|
165
|
+
"selectAll": "בחר הכל",
|
|
166
|
+
"clearAll": "נקה הכל"
|
|
167
|
+
},
|
|
168
|
+
"lightbox": {
|
|
169
|
+
"openFile": "פתח קובץ"
|
|
170
|
+
},
|
|
171
|
+
"color": {
|
|
172
|
+
"placeholder": "הזן צבע"
|
|
173
|
+
}
|
|
174
|
+
}
|
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
{
|
|
2
|
+
"modalConfirm": {
|
|
3
|
+
"title": "Conferma",
|
|
4
|
+
"message": "Sei sicuro di voler continuare?",
|
|
5
|
+
"confirm": "Conferma",
|
|
6
|
+
"cancel": "Annulla"
|
|
7
|
+
},
|
|
8
|
+
"upload": {
|
|
9
|
+
"upload": "Carica",
|
|
10
|
+
"uploading": "Caricamento di {count} file{plural} in corso...",
|
|
11
|
+
"noFile": "Nessun file selezionato",
|
|
12
|
+
"dropPlaceholder": "Trascina e rilascia i file qui o clicca per caricare",
|
|
13
|
+
"delete": "Elimina",
|
|
14
|
+
"replace": "Sostituisci",
|
|
15
|
+
"download": "Scarica"
|
|
16
|
+
},
|
|
17
|
+
"pagination": {
|
|
18
|
+
"of": "di",
|
|
19
|
+
"prev": "Precedente",
|
|
20
|
+
"next": "Successivo"
|
|
21
|
+
},
|
|
22
|
+
"form": {
|
|
23
|
+
"required": "Questo campo è obbligatorio",
|
|
24
|
+
"invalidEmail": "Inserisci un indirizzo email valido",
|
|
25
|
+
"invalidUrl": "Inserisci un URL valido",
|
|
26
|
+
"minLength": "Deve contenere almeno {min} caratteri",
|
|
27
|
+
"maxLength": "Deve contenere al massimo {max} caratteri",
|
|
28
|
+
"minValue": "Deve essere almeno {min}",
|
|
29
|
+
"maxValue": "Deve essere al massimo {max}",
|
|
30
|
+
"pattern": "Formato non valido",
|
|
31
|
+
"passwordStrength": "Forza della password"
|
|
32
|
+
},
|
|
33
|
+
"password": {
|
|
34
|
+
"veryWeak": "Molto debole",
|
|
35
|
+
"weak": "Debole",
|
|
36
|
+
"fair": "Discreta",
|
|
37
|
+
"good": "Buona",
|
|
38
|
+
"strong": "Forte"
|
|
39
|
+
},
|
|
40
|
+
"select": {
|
|
41
|
+
"placeholder": "Seleziona",
|
|
42
|
+
"search": "Cerca",
|
|
43
|
+
"yes": "Sì",
|
|
44
|
+
"no": "No"
|
|
45
|
+
},
|
|
46
|
+
"fieldArray": {
|
|
47
|
+
"loadDefault": "Carica {label} predefinito"
|
|
48
|
+
},
|
|
49
|
+
"btn": {
|
|
50
|
+
"loading": "Caricamento..."
|
|
51
|
+
},
|
|
52
|
+
"toast": {
|
|
53
|
+
"success": "Successo",
|
|
54
|
+
"error": "Errore",
|
|
55
|
+
"warning": "Avviso",
|
|
56
|
+
"info": "Informazione"
|
|
57
|
+
},
|
|
58
|
+
"filter": {
|
|
59
|
+
"filter": "Filtro",
|
|
60
|
+
"noActiveFilters": "Nessun filtro attivo",
|
|
61
|
+
"connectors": {
|
|
62
|
+
"and": "E",
|
|
63
|
+
"or": "O"
|
|
64
|
+
},
|
|
65
|
+
"operators": {
|
|
66
|
+
"eq": "Uguale a",
|
|
67
|
+
"ne": "Diverso da",
|
|
68
|
+
"gt": "Maggiore di",
|
|
69
|
+
"ge": "Maggiore o uguale",
|
|
70
|
+
"lt": "Minore di",
|
|
71
|
+
"le": "Minore o uguale",
|
|
72
|
+
"co": "Contiene",
|
|
73
|
+
"sw": "Inizia con",
|
|
74
|
+
"ew": "Finisce con",
|
|
75
|
+
"pr": "Presente"
|
|
76
|
+
},
|
|
77
|
+
"placeholders": {
|
|
78
|
+
"selectField": "Seleziona campo",
|
|
79
|
+
"selectOption": "Seleziona opzione",
|
|
80
|
+
"selectDate": "Seleziona data",
|
|
81
|
+
"enterValue": "Valore"
|
|
82
|
+
},
|
|
83
|
+
"buttons": {
|
|
84
|
+
"addCondition": "Aggiungi condizione",
|
|
85
|
+
"clearAll": "Cancella tutto"
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
"multiStep": {
|
|
89
|
+
"previous": "Precedente",
|
|
90
|
+
"next": "Successivo",
|
|
91
|
+
"complete": "Completa",
|
|
92
|
+
"step": "Passo {current} di {total}"
|
|
93
|
+
},
|
|
94
|
+
"addressSearch": {
|
|
95
|
+
"placeholder": "Inserisci un indirizzo"
|
|
96
|
+
},
|
|
97
|
+
"importData": {
|
|
98
|
+
"close": "Chiudi",
|
|
99
|
+
"cancel": "Annulla",
|
|
100
|
+
"importData": "Importa dati",
|
|
101
|
+
"changeFile": "Cambia file",
|
|
102
|
+
"selectSheet": "Seleziona foglio",
|
|
103
|
+
"hasHeaders": "Seleziona se il file ha una riga di intestazione",
|
|
104
|
+
"sourceKeyField": "Campo chiave sorgente (da questo file)",
|
|
105
|
+
"relatedKeyField": "Campo chiave correlato (dal file correlato)",
|
|
106
|
+
"selectSourceValue": "Seleziona valore sorgente",
|
|
107
|
+
"sourceValue": "Valore sorgente",
|
|
108
|
+
"selectTargetValue": "Seleziona valore di destinazione",
|
|
109
|
+
"targetValue": "Valore di destinazione",
|
|
110
|
+
"selectColumn": "Seleziona colonna..."
|
|
111
|
+
},
|
|
112
|
+
"timeAgo": {
|
|
113
|
+
"year": "anno",
|
|
114
|
+
"month": "mese",
|
|
115
|
+
"week": "settimana",
|
|
116
|
+
"day": "giorno",
|
|
117
|
+
"hour": "ora",
|
|
118
|
+
"minute": "minuto",
|
|
119
|
+
"second": "secondo",
|
|
120
|
+
"ago": "fa",
|
|
121
|
+
"in": "tra",
|
|
122
|
+
"justNow": "Poco fa"
|
|
123
|
+
},
|
|
124
|
+
"dialogForm": {
|
|
125
|
+
"save": "Salva",
|
|
126
|
+
"cancel": "Annulla",
|
|
127
|
+
"delete": "Elimina",
|
|
128
|
+
"validationError": "Correggi gli errori di validazione prima di inviare",
|
|
129
|
+
"errorOccurred": "Si è verificato un errore"
|
|
130
|
+
},
|
|
131
|
+
"tel": {
|
|
132
|
+
"phoneNumber": "Numero di telefono",
|
|
133
|
+
"invalidPhone": "Inserisci un numero di telefono valido"
|
|
134
|
+
},
|
|
135
|
+
"email": {
|
|
136
|
+
"invalidEmail": "Inserisci un indirizzo email valido",
|
|
137
|
+
"invalidDomain": "Il dominio di questa email sembra non essere valido"
|
|
138
|
+
},
|
|
139
|
+
"date": {
|
|
140
|
+
"invalidFormat": "Formato data non valido"
|
|
141
|
+
},
|
|
142
|
+
"spreadsheet": {
|
|
143
|
+
"wrapText": "A capo automatico",
|
|
144
|
+
"selectAll": "Seleziona tutto",
|
|
145
|
+
"clearAll": "Cancella tutto"
|
|
146
|
+
},
|
|
147
|
+
"lightbox": {
|
|
148
|
+
"openFile": "Apri file"
|
|
149
|
+
},
|
|
150
|
+
"color": {
|
|
151
|
+
"placeholder": "Inserisci un colore"
|
|
152
|
+
}
|
|
153
|
+
}
|