fix: typo region => région

This commit is contained in:
Colin Darie 2024-09-10 12:29:53 +02:00
parent 3e1bcb35d6
commit 40b5eb5ea7
No known key found for this signature in database
GPG key ID: 4FB865FDBCA4BCC4
3 changed files with 3 additions and 3 deletions

View file

@ -40,7 +40,7 @@ type Address {
postalCode: String!
"""
n° de region
n° de région
"""
regionCode: String

View file

@ -24,7 +24,7 @@ module Types
field :department_code, String, "n° de département", null: true
field :region_name, String, "nom de région", null: true
field :region_code, String, "n° de region", null: true
field :region_code, String, "n° de région", null: true
field :geometry, Types::GeoJSON, "coordonnées géographique", null: true

View file

@ -34,7 +34,7 @@ module AddressableColumnConcern
table:,
displayable: false,
column: stable_id,
label: "#{libelle} region",
label: "#{libelle} région",
type: :enum,
value_column: ['region_name']
)