From b643660017da82a9788518356a522cfe7a964921 Mon Sep 17 00:00:00 2001 From: sebastiencarceles Date: Tue, 6 Sep 2022 11:26:30 +0200 Subject: [PATCH] 'Choix parmi une liste' becomes 'Choix unique' closes #7374 --- app/graphql/schema.graphql | 4 ++-- config/locales/models/type_de_champ/fr.yml | 2 +- spec/factories/type_de_champ.rb | 2 +- spec/system/administrateurs/types_de_champ_spec.rb | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app/graphql/schema.graphql b/app/graphql/schema.graphql index 30786f95c..4ccc4d345 100644 --- a/app/graphql/schema.graphql +++ b/app/graphql/schema.graphql @@ -2126,7 +2126,7 @@ enum TypeDeChamp { dossier_link """ - Choix parmi une liste + Choix unique """ drop_down_list @@ -2286,4 +2286,4 @@ type ValidationError { A description of the error """ message: String! -} \ No newline at end of file +} diff --git a/config/locales/models/type_de_champ/fr.yml b/config/locales/models/type_de_champ/fr.yml index 61e1c112c..a1a77f807 100644 --- a/config/locales/models/type_de_champ/fr.yml +++ b/config/locales/models/type_de_champ/fr.yml @@ -18,7 +18,7 @@ fr: phone: 'Téléphone' address: 'Adresse' yes_no: 'Oui/Non' - drop_down_list: 'Choix parmi une liste' + drop_down_list: 'Choix unique' multiple_drop_down_list: 'Choix multiples' linked_drop_down_list: 'Deux menus déroulants liés' pays: 'Pays' diff --git a/spec/factories/type_de_champ.rb b/spec/factories/type_de_champ.rb index 514eafd88..0406bb84e 100644 --- a/spec/factories/type_de_champ.rb +++ b/spec/factories/type_de_champ.rb @@ -75,7 +75,7 @@ FactoryBot.define do type_champ { TypeDeChamp.type_champs.fetch(:datetime) } end factory :type_de_champ_drop_down_list do - libelle { 'Choix parmi une liste' } + libelle { 'Choix unique' } type_champ { TypeDeChamp.type_champs.fetch(:drop_down_list) } drop_down_list_value { "val1\r\nval2\r\n--separateur--\r\nval3" } trait :long do diff --git a/spec/system/administrateurs/types_de_champ_spec.rb b/spec/system/administrateurs/types_de_champ_spec.rb index 4e9a45bb7..3aa164407 100644 --- a/spec/system/administrateurs/types_de_champ_spec.rb +++ b/spec/system/administrateurs/types_de_champ_spec.rb @@ -142,7 +142,7 @@ describe 'As an administrateur I can edit types de champ', js: true do scenario "adding a dropdown champ" do add_champ(remove_flash_message: true) - select('Choix parmi une liste', from: 'Type de champ') + select('Choix unique', from: 'Type de champ') fill_in 'Libellé du champ', with: 'Libellé de champ menu déroulant', fill_options: { clear: :backspace } fill_in 'Options de la liste', with: 'Un menu', fill_options: { clear: :backspace } check "Proposer une option « autre » avec un texte libre"