diff --git a/src/locales/cz/location/state.ts b/src/locales/cz/location/state.ts index d6d1738de67..57ec82aee6a 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 d6d1738de67..62fad26233b 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; diff --git a/test/all_functional.spec.ts b/test/all_functional.spec.ts index a938b61c972..542b01ee6b8 100644 --- a/test/all_functional.spec.ts +++ b/test/all_functional.spec.ts @@ -28,8 +28,8 @@ const BROKEN_LOCALE_METHODS = { companySuffix: ['az'], }, location: { - state: ['az', 'cz', 'nb_NO', 'sk'], - stateAbbr: ['cz', 'sk'], + state: ['az', 'nb_NO', 'sk'], + stateAbbr: ['sk'], }, random: { locale: '*', // locale() has been pseudo removed