'Choix parmi une liste' becomes 'Choix unique'

closes #7374
This commit is contained in:
sebastiencarceles 2022-09-06 11:26:30 +02:00
parent c119077987
commit b643660017
4 changed files with 5 additions and 5 deletions

View file

@ -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!
}
}

View file

@ -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'

View file

@ -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

View file

@ -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"