aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorST-DDT <[email protected]>2023-04-03 18:04:01 +0200
committerGitHub <[email protected]>2023-04-03 16:04:01 +0000
commitcbbc0760c0121ce31997c0da1ce9d56189d42d31 (patch)
treea133916b9136a189eb82a285715bb0a39f78c62c /src
parentfc2f171670b05019e0582d7c1b6b34c24c1d15f1 (diff)
downloadfaker-cbbc0760c0121ce31997c0da1ce9d56189d42d31.tar.xz
faker-cbbc0760c0121ce31997c0da1ce9d56189d42d31.zip
fix(locale): fix broken street address reference in fr_CH (#2007)
Diffstat (limited to 'src')
-rw-r--r--src/locales/fr_CH/location/street_address.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/locales/fr_CH/location/street_address.ts b/src/locales/fr_CH/location/street_address.ts
index 3ee966e2..2e1a661d 100644
--- a/src/locales/fr_CH/location/street_address.ts
+++ b/src/locales/fr_CH/location/street_address.ts
@@ -1,4 +1,4 @@
export default {
- normal: '{{location.buildingNumber}} {{location.streetName}}',
- full: '{{location.buildingNumber}} {{location.streetName}} {{location.secondaryAddress}}',
+ normal: '{{location.buildingNumber}} {{location.street}}',
+ full: '{{location.buildingNumber}} {{location.street}} {{location.secondaryAddress}}',
};