mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 02:21:42 +00:00
limite para los textarea
This commit is contained in:
parent
ba8ae50776
commit
66007e90d3
3 changed files with 8 additions and 1 deletions
|
@ -1,2 +1,5 @@
|
|||
= text_area_tag field_name_for_post_as_string(name), value,
|
||||
class: 'form-control', required: template.required?
|
||||
class: 'form-control', required: template.required?,
|
||||
maxlength: template.max > 0 ? template.max : nil
|
||||
- if template.max > 0
|
||||
%small= t('posts.text_area.max', max: template.max)
|
||||
|
|
|
@ -209,6 +209,8 @@ en:
|
|||
select:
|
||||
placeholder: 'Type to filter available options'
|
||||
max: 'You can select up to %{max} options'
|
||||
text_area:
|
||||
max: 'Up to %{max} characters'
|
||||
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'
|
||||
|
|
|
@ -205,6 +205,8 @@ es:
|
|||
select:
|
||||
placeholder: 'Empieza a escribir para filtrar las opciones disponibles'
|
||||
max: 'Puedes seleccionar hasta %{max} opciones'
|
||||
text_area:
|
||||
max: 'Hasta %{max} caracteres'
|
||||
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'
|
||||
|
|
Loading…
Reference in a new issue