From f6c8ca36b4e288697ae87a8bbdd027cd34947875 Mon Sep 17 00:00:00 2001 From: DivisionByZero Date: Fri, 17 Mar 2023 23:19:29 +0100 Subject: feat(locale): add `state` and `state_abbr` to `cz` (#1847) --- src/locales/cz/location/state.ts | 17 ++++++++++++++++- src/locales/cz/location/state_abbr.ts | 6 +++++- 2 files changed, 21 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/locales/cz/location/state.ts b/src/locales/cz/location/state.ts index d6d1738d..57ec82ae 100644 --- a/src/locales/cz/location/state.ts +++ b/src/locales/cz/location/state.ts @@ -1 +1,16 @@ -export default []; +export default [ + 'Jihočeský kraj', + 'Jihomoravský kraj', + 'Karlovarský kraj', + 'Kraj Vysočina', + 'Královéhradecký kraj', + 'Liberecký kraj', + 'Moravskoslezský kraj', + 'Olomoucký kraj', + 'Pardubický kraj', + 'Plzeňský kraj', + 'Praha', + 'Středočeský kraj', + 'Ústecký kraj', + 'Zlínský kraj', +]; diff --git a/src/locales/cz/location/state_abbr.ts b/src/locales/cz/location/state_abbr.ts index d6d1738d..62fad262 100644 --- a/src/locales/cz/location/state_abbr.ts +++ b/src/locales/cz/location/state_abbr.ts @@ -1 +1,5 @@ -export default []; +import states from './state'; + +// at the time of adding this I was not able to find +// any information on the existance of state abbreviations +export default states; -- cgit v1.2.3