diff --git a/app/controllers/esign_settings_controller.rb b/app/controllers/esign_settings_controller.rb index 18a27da7..00c27a05 100644 --- a/app/controllers/esign_settings_controller.rb +++ b/app/controllers/esign_settings_controller.rb @@ -87,7 +87,7 @@ class EsignSettingsController < ApplicationController @encrypted_config.save! - redirect_to settings_esign_path, notice: I18m.t('certificate_has_been_removed') + redirect_to settings_esign_path, notice: I18n.t('certificate_has_been_removed') end private diff --git a/app/javascript/submission_form/i18n.js b/app/javascript/submission_form/i18n.js index a873d2b3..11909aec 100644 --- a/app/javascript/submission_form/i18n.js +++ b/app/javascript/submission_form/i18n.js @@ -216,7 +216,7 @@ const it = { pay: 'Pagamento', file: 'File', select: 'Seleziona', - checkbox: 'Casella di controllo', + checkbox: 'Checkbox', multiple: 'Multiplo', radio: 'Radio', cells: 'Celle', diff --git a/app/javascript/template_builder/area.vue b/app/javascript/template_builder/area.vue index 123e1216..f18354c9 100644 --- a/app/javascript/template_builder/area.vue +++ b/app/javascript/template_builder/area.vue @@ -360,6 +360,7 @@ export default { }, computed: { fieldNames: FieldType.computed.fieldNames, + fieldLabels: FieldType.computed.fieldLabels, fieldIcons: FieldType.computed.fieldIcons, isDefaultValuePresent () { if (this.field?.type === 'radio' && this.field?.areas?.length > 1) { diff --git a/app/javascript/template_builder/builder.vue b/app/javascript/template_builder/builder.vue index f51bc350..08b7878a 100644 --- a/app/javascript/template_builder/builder.vue +++ b/app/javascript/template_builder/builder.vue @@ -332,7 +332,7 @@ >

- {{ t('draw_field_on_the_document').replace('{field}', drawField?.name || '') }} + {{ t('draw_field_on_the_document') }}