Merge pull request #7725 from betagouv/7374-unique-choice
'Choix parmi une liste' becomes 'Choix unique'
This commit is contained in:
commit
ffb445d074
4 changed files with 5 additions and 5 deletions
|
@ -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!
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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'
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue