mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 03:31:42 +00:00
indicar en la ayuda el maximo de valores #51
This commit is contained in:
parent
ae59d8c4e9
commit
8495e860d6
4 changed files with 10 additions and 0 deletions
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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}'
|
||||
|
|
|
@ -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}'
|
||||
|
|
Loading…
Reference in a new issue