indicar en la ayuda el maximo de valores #51

This commit is contained in:
f 2018-06-22 16:48:58 -03:00
parent ae59d8c4e9
commit 8495e860d6
No known key found for this signature in database
GPG key ID: F3FDAB97B5F9F7E7
4 changed files with 10 additions and 0 deletions

View file

@ -4,3 +4,5 @@
required: template.required?,
max: template.max > 0 ? template.max : nil,
min: template.min
- if template.max > 0
%small= t('posts.number.max', max: template.max)

View file

@ -9,3 +9,5 @@
'maximum-selection-length': template.max }}
- if template.open?
%small.text-muted.form-text= t('posts.open')
- if template.max > 0
%small= t('posts.select.max', max: template.max)

View file

@ -207,9 +207,12 @@ en:
private: '🔒 The values of this field will remain private'
select:
placeholder: 'Type to filter available options'
max: 'You can select up to %{max} options'
table: 'This field is a group of fields, you can add more groups with the "Add group" button or remove them with the "Remove group" button.'
row:
add: 'Add group'
del: 'Remove group'
checkbox: 'Yes'
anchor: 'Copy this link to come back here'
number:
max: 'The maximum value is %{max}'

View file

@ -203,9 +203,12 @@ es:
private: '🔒 Los valores de este campo serán privados'
select:
placeholder: 'Empieza a escribir para filtrar las opciones disponibles'
max: 'Puedes seleccionar hasta %{max} opciones'
table: 'Este campo es un grupo de campos, puede agregar los que necesites con el botón "Agregar grupo" o eliminar los que no con "Eliminar grupo"'
row:
add: 'Agregar grupo'
del: 'Eliminar grupo'
checkbox: 'Sí'
anchor: 'Copia este vínculo para volver aquí más tarde'
number:
max: 'El valor máximo es %{max}'