@onemrvapublic/design-system 0.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.dockerignore +4 -0
- package/.editorconfig +16 -0
- package/.github/workflows/npm-publish.yml +34 -0
- package/README.md +27 -0
- package/angular.json +214 -0
- package/build.sh +108 -0
- package/cypress.config.ts +40 -0
- package/index.html +10 -0
- package/npm-publish.sh +11 -0
- package/package.json +89 -0
- package/projects/onemrva/design-system/README.md +24 -0
- package/projects/onemrva/design-system/_index.scss +29 -0
- package/projects/onemrva/design-system/_utils.scss +25 -0
- package/projects/onemrva/design-system/layout/assets/logo_de.svg +3 -0
- package/projects/onemrva/design-system/layout/assets/logo_en.svg +3 -0
- package/projects/onemrva/design-system/layout/assets/logo_fr.svg +3 -0
- package/projects/onemrva/design-system/layout/assets/logo_nl.svg +3 -0
- package/projects/onemrva/design-system/layout/assets/logo_onem_rva.svg +32 -0
- package/projects/onemrva/design-system/layout/index.ts +7 -0
- package/projects/onemrva/design-system/layout/ng-package.json +6 -0
- package/projects/onemrva/design-system/layout/src/components/index.ts +31 -0
- package/projects/onemrva/design-system/layout/src/components/layout/_layout-mixin.component.scss +159 -0
- package/projects/onemrva/design-system/layout/src/components/layout/layout.component.html +194 -0
- package/projects/onemrva/design-system/layout/src/components/layout/layout.component.scss +137 -0
- package/projects/onemrva/design-system/layout/src/components/layout/layout.component.spec.ts +24 -0
- package/projects/onemrva/design-system/layout/src/components/layout/layout.component.ts +187 -0
- package/projects/onemrva/design-system/layout/src/components/layout-content/layout-content.component.spec.ts +24 -0
- package/projects/onemrva/design-system/layout/src/components/layout-content/layout-content.component.ts +23 -0
- package/projects/onemrva/design-system/layout/src/components/layout-footer/layout-footer.component.ts +11 -0
- package/projects/onemrva/design-system/layout/src/components/layout-login-menu/layout-login-menu.component.spec.ts +25 -0
- package/projects/onemrva/design-system/layout/src/components/layout-login-menu/layout-login-menu.component.ts +17 -0
- package/projects/onemrva/design-system/layout/src/components/layout-route/layout-route.component.html +57 -0
- package/projects/onemrva/design-system/layout/src/components/layout-route/layout-route.component.spec.ts +24 -0
- package/projects/onemrva/design-system/layout/src/components/layout-route/layout-route.component.ts +56 -0
- package/projects/onemrva/design-system/layout/src/components/layout-sidenav/layout-sidenav.component.html +104 -0
- package/projects/onemrva/design-system/layout/src/components/layout-sidenav/layout-sidenav.component.ts +88 -0
- package/projects/onemrva/design-system/layout/src/components/layout-sidenav-title/layout-sidenav-title.component.ts +9 -0
- package/projects/onemrva/design-system/layout/src/components/layout-subroute/layout-subroute.component.html +44 -0
- package/projects/onemrva/design-system/layout/src/components/layout-subroute/layout-subroute.component.spec.ts +24 -0
- package/projects/onemrva/design-system/layout/src/components/layout-subroute/layout-subroute.component.ts +35 -0
- package/projects/onemrva/design-system/layout/src/components/layout-title/layout-title.component.spec.ts +25 -0
- package/projects/onemrva/design-system/layout/src/components/layout-title/layout-title.component.ts +17 -0
- package/projects/onemrva/design-system/layout/src/decorators/coerce-boolean-input.decorator.ts +19 -0
- package/projects/onemrva/design-system/layout/src/decorators/observable-content.decorator.ts +13 -0
- package/projects/onemrva/design-system/layout/src/directives/drawer-host.directive.ts +10 -0
- package/projects/onemrva/design-system/layout/src/enums/environment.enum.ts +6 -0
- package/projects/onemrva/design-system/layout/src/layout.component.spec.ts +24 -0
- package/projects/onemrva/design-system/layout/src/layout.module.ts +103 -0
- package/projects/onemrva/design-system/layout/src/models/onem-language.model.ts +4 -0
- package/projects/onemrva/design-system/layout/src/models/onemrva-profile.model.ts +57 -0
- package/projects/onemrva/design-system/layout/src/services/drawer.service.ts +28 -0
- package/projects/onemrva/design-system/layout/src/striphtml.pipe.ts +11 -0
- package/projects/onemrva/design-system/layout/src/test.ts +25 -0
- package/projects/onemrva/design-system/mat-avatar/index.ts +2 -0
- package/projects/onemrva/design-system/mat-avatar/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-avatar/src/onemrva-mat-avatar.component.html +17 -0
- package/projects/onemrva/design-system/mat-avatar/src/onemrva-mat-avatar.component.scss +130 -0
- package/projects/onemrva/design-system/mat-avatar/src/onemrva-mat-avatar.component.ts +421 -0
- package/projects/onemrva/design-system/mat-avatar/src/onemrva-mat-avatar.module.ts +17 -0
- package/projects/onemrva/design-system/mat-badge/index.ts +6 -0
- package/projects/onemrva/design-system/mat-badge/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-badge/src/onemrva-mat-badge.component.scss +152 -0
- package/projects/onemrva/design-system/mat-badge/src/onemrva-mat-badge.component.ts +291 -0
- package/projects/onemrva/design-system/mat-badge/src/onemrva-mat-badge.module.ts +8 -0
- package/projects/onemrva/design-system/mat-breadcrumb/index.ts +7 -0
- package/projects/onemrva/design-system/mat-breadcrumb/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-breadcrumb/src/onemrva-mat-breadcrumb.component.html +37 -0
- package/projects/onemrva/design-system/mat-breadcrumb/src/onemrva-mat-breadcrumb.component.scss +70 -0
- package/projects/onemrva/design-system/mat-breadcrumb/src/onemrva-mat-breadcrumb.component.ts +16 -0
- package/projects/onemrva/design-system/mat-breadcrumb/src/onemrva-mat-breadcrumb.model.ts +4 -0
- package/projects/onemrva/design-system/mat-breadcrumb/src/onemrva-mat-breadcrumb.module.ts +12 -0
- package/projects/onemrva/design-system/mat-breadcrumb/src/onemrva-mat-breadcrumb.service.ts +65 -0
- package/projects/onemrva/design-system/mat-clipboard/index.ts +6 -0
- package/projects/onemrva/design-system/mat-clipboard/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-clipboard/src/_onemrva-mat-spinner.component.scss +62 -0
- package/projects/onemrva/design-system/mat-clipboard/src/onemrva-mat-clipboard.component.ts +16 -0
- package/projects/onemrva/design-system/mat-clipboard/src/onemrva-mat-clipboard.module.ts +14 -0
- package/projects/onemrva/design-system/mat-datepicker-header/index.ts +5 -0
- package/projects/onemrva/design-system/mat-datepicker-header/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-datepicker-header/src/_onemrva-mat-datepicker-header.component.scss +11 -0
- package/projects/onemrva/design-system/mat-datepicker-header/src/onemrva-mat-datepicker-header.component.html +53 -0
- package/projects/onemrva/design-system/mat-datepicker-header/src/onemrva-mat-datepicker-header.component.ts +285 -0
- package/projects/onemrva/design-system/mat-file-upload/index.ts +11 -0
- package/projects/onemrva/design-system/mat-file-upload/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-file-upload/src/components/index.ts +10 -0
- package/projects/onemrva/design-system/mat-file-upload/src/components/onemrva-mat-file-panel/onemrva-file-panel.component.html +59 -0
- package/projects/onemrva/design-system/mat-file-upload/src/components/onemrva-mat-file-panel/onemrva-file-panel.component.scss +24 -0
- package/projects/onemrva/design-system/mat-file-upload/src/components/onemrva-mat-file-panel/onemrva-file-panel.component.ts +79 -0
- package/projects/onemrva/design-system/mat-file-upload/src/components/onemrva-mat-file-upload/onemrva-mat-file-upload.component.html +53 -0
- package/projects/onemrva/design-system/mat-file-upload/src/components/onemrva-mat-file-upload/onemrva-mat-file-upload.component.scss +248 -0
- package/projects/onemrva/design-system/mat-file-upload/src/components/onemrva-mat-file-upload/onemrva-mat-file-upload.component.ts +185 -0
- package/projects/onemrva/design-system/mat-file-upload/src/directives/dnd.directive.ts +43 -0
- package/projects/onemrva/design-system/mat-file-upload/src/models/action-config.model.ts +10 -0
- package/projects/onemrva/design-system/mat-file-upload/src/models/progress-file.model.ts +94 -0
- package/projects/onemrva/design-system/mat-file-upload/src/onemrva-mat-file-upload-itf.store.ts +79 -0
- package/projects/onemrva/design-system/mat-file-upload/src/onemrva-mat-file-upload.module.ts +28 -0
- package/projects/onemrva/design-system/mat-file-upload/src/onemrva-mat-file-upload.service.ts +68 -0
- package/projects/onemrva/design-system/mat-file-upload/src/onemrva-mat-file-upload.store.ts +473 -0
- package/projects/onemrva/design-system/mat-input-bank-account/index.ts +5 -0
- package/projects/onemrva/design-system/mat-input-bank-account/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-input-bank-account/src/onemrva-mat-input-bank-account.component.html +32 -0
- package/projects/onemrva/design-system/mat-input-bank-account/src/onemrva-mat-input-bank-account.component.scss +9 -0
- package/projects/onemrva/design-system/mat-input-bank-account/src/onemrva-mat-input-bank-account.component.ts +125 -0
- package/projects/onemrva/design-system/mat-input-country/index.ts +6 -0
- package/projects/onemrva/design-system/mat-input-country/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-input-country/src/countries.ts +3182 -0
- package/projects/onemrva/design-system/mat-input-country/src/onemrva-mat-input-country.component.html +29 -0
- package/projects/onemrva/design-system/mat-input-country/src/onemrva-mat-input-country.component.scss +29 -0
- package/projects/onemrva/design-system/mat-input-country/src/onemrva-mat-input-country.component.ts +144 -0
- package/projects/onemrva/design-system/mat-input-enterprise-number/index.ts +5 -0
- package/projects/onemrva/design-system/mat-input-enterprise-number/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-input-enterprise-number/src/onemrva-mat-input-enterprise-number.component.html +39 -0
- package/projects/onemrva/design-system/mat-input-enterprise-number/src/onemrva-mat-input-enterprise-number.component.scss +25 -0
- package/projects/onemrva/design-system/mat-input-enterprise-number/src/onemrva-mat-input-enterprise-number.component.ts +190 -0
- package/projects/onemrva/design-system/mat-input-phone/index.ts +6 -0
- package/projects/onemrva/design-system/mat-input-phone/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-input-phone/src/onemrva-mat-input-phone.component.html +43 -0
- package/projects/onemrva/design-system/mat-input-phone/src/onemrva-mat-input-phone.component.scss +29 -0
- package/projects/onemrva/design-system/mat-input-phone/src/onemrva-mat-input-phone.component.ts +261 -0
- package/projects/onemrva/design-system/mat-input-phone/src/phone-number.directive.ts +47 -0
- package/projects/onemrva/design-system/mat-message-box/index.ts +2 -0
- package/projects/onemrva/design-system/mat-message-box/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-message-box/src/onemrva-mat-message-box.component.scss +60 -0
- package/projects/onemrva/design-system/mat-message-box/src/onemrva-mat-message-box.component.ts +134 -0
- package/projects/onemrva/design-system/mat-message-box/src/onemrva-mat-message-box.module.ts +12 -0
- package/projects/onemrva/design-system/mat-multi-select/index.ts +2 -0
- package/projects/onemrva/design-system/mat-multi-select/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-multi-select/src/_onemrva-mat-multi-select.component.scss +66 -0
- package/projects/onemrva/design-system/mat-multi-select/src/onemrva-mat-multi-select.component.html +24 -0
- package/projects/onemrva/design-system/mat-multi-select/src/onemrva-mat-multi-select.component.ts +152 -0
- package/projects/onemrva/design-system/mat-multi-select/src/onemrva-mat-multi-select.module.ts +31 -0
- package/projects/onemrva/design-system/mat-notification/index.ts +1 -0
- package/projects/onemrva/design-system/mat-notification/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-notification/src/_onemrva-mat-notification.component.scss +71 -0
- package/projects/onemrva/design-system/mat-notification/src/onemrva-mat-notification.component.html +10 -0
- package/projects/onemrva/design-system/mat-notification/src/onemrva-mat-notification.component.ts +158 -0
- package/projects/onemrva/design-system/mat-paginator/index.ts +6 -0
- package/projects/onemrva/design-system/mat-paginator/ng-package.json +7 -0
- package/projects/onemrva/design-system/mat-paginator/package.json +7 -0
- package/projects/onemrva/design-system/mat-paginator/src/_onemrva-mat-paginator.component.scss +122 -0
- package/projects/onemrva/design-system/mat-paginator/src/onemrva-mat-paginator.component.html +104 -0
- package/projects/onemrva/design-system/mat-paginator/src/onemrva-mat-paginator.component.spec.ts +184 -0
- package/projects/onemrva/design-system/mat-paginator/src/onemrva-mat-paginator.component.ts +214 -0
- package/projects/onemrva/design-system/mat-paginator/src/onemrva-mat-paginator.module.ts +15 -0
- package/projects/onemrva/design-system/mat-panel/index.ts +6 -0
- package/projects/onemrva/design-system/mat-panel/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-panel/src/onemrva-mat-panel-content.component.ts +12 -0
- package/projects/onemrva/design-system/mat-panel/src/onemrva-mat-panel-content.html +5 -0
- package/projects/onemrva/design-system/mat-panel/src/onemrva-mat-panel-icon.component.ts +12 -0
- package/projects/onemrva/design-system/mat-panel/src/onemrva-mat-panel-icon.html +5 -0
- package/projects/onemrva/design-system/mat-panel/src/onemrva-mat-panel-title-action.component.ts +12 -0
- package/projects/onemrva/design-system/mat-panel/src/onemrva-mat-panel-title-action.html +5 -0
- package/projects/onemrva/design-system/mat-panel/src/onemrva-mat-panel-title.component.ts +20 -0
- package/projects/onemrva/design-system/mat-panel/src/onemrva-mat-panel-title.html +8 -0
- package/projects/onemrva/design-system/mat-panel/src/onemrva-mat-panel.component.html +10 -0
- package/projects/onemrva/design-system/mat-panel/src/onemrva-mat-panel.component.scss +100 -0
- package/projects/onemrva/design-system/mat-panel/src/onemrva-mat-panel.component.ts +122 -0
- package/projects/onemrva/design-system/mat-panel/src/onemrva-mat-panel.module.ts +26 -0
- package/projects/onemrva/design-system/mat-pop-over/index.ts +4 -0
- package/projects/onemrva/design-system/mat-pop-over/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-pop-over/src/onemrva-mat-pop-over-content.component.ts +13 -0
- package/projects/onemrva/design-system/mat-pop-over/src/onemrva-mat-pop-over-trigger.component.ts +13 -0
- package/projects/onemrva/design-system/mat-pop-over/src/onemrva-mat-pop-over.component.html +29 -0
- package/projects/onemrva/design-system/mat-pop-over/src/onemrva-mat-pop-over.component.scss +141 -0
- package/projects/onemrva/design-system/mat-pop-over/src/onemrva-mat-pop-over.component.ts +47 -0
- package/projects/onemrva/design-system/mat-pop-over/src/onemrva-mat-pop-over.module.ts +19 -0
- package/projects/onemrva/design-system/mat-progress-bar/index.ts +1 -0
- package/projects/onemrva/design-system/mat-progress-bar/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-progress-bar/src/_onemrva-mat-progress-bar-mixin.component.scss +37 -0
- package/projects/onemrva/design-system/mat-progress-bar/src/onemrva-mat-progress-bar.component.html +13 -0
- package/projects/onemrva/design-system/mat-progress-bar/src/onemrva-mat-progress-bar.component.ts +27 -0
- package/projects/onemrva/design-system/mat-select-search/index.ts +3 -0
- package/projects/onemrva/design-system/mat-select-search/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-select-search/src/default-options.ts +42 -0
- package/projects/onemrva/design-system/mat-select-search/src/mat-select-no-entries-found.directive.ts +15 -0
- package/projects/onemrva/design-system/mat-select-search/src/mat-select-search-clear.directive.ts +13 -0
- package/projects/onemrva/design-system/mat-select-search/src/mat-select-search.component.html +67 -0
- package/projects/onemrva/design-system/mat-select-search/src/mat-select-search.component.scss +126 -0
- package/projects/onemrva/design-system/mat-select-search/src/mat-select-search.component.spec.ts +790 -0
- package/projects/onemrva/design-system/mat-select-search/src/mat-select-search.component.ts +612 -0
- package/projects/onemrva/design-system/mat-select-search/src/mat-select-search.module.ts +53 -0
- package/projects/onemrva/design-system/mat-side-menu/index.ts +6 -0
- package/projects/onemrva/design-system/mat-side-menu/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-side-menu/src/onemrva-mat-side-menu.component.html +36 -0
- package/projects/onemrva/design-system/mat-side-menu/src/onemrva-mat-side-menu.component.scss +50 -0
- package/projects/onemrva/design-system/mat-side-menu/src/onemrva-mat-side-menu.component.spec.ts +66 -0
- package/projects/onemrva/design-system/mat-side-menu/src/onemrva-mat-side-menu.component.ts +46 -0
- package/projects/onemrva/design-system/mat-side-menu/src/onemrva-mat-side-menu.module.ts +14 -0
- package/projects/onemrva/design-system/mat-skeleton/index.ts +3 -0
- package/projects/onemrva/design-system/mat-skeleton/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-skeleton/src/onemrva-mat-skeleton-enums.ts +32 -0
- package/projects/onemrva/design-system/mat-skeleton/src/onemrva-mat-skeleton.component.html +17 -0
- package/projects/onemrva/design-system/mat-skeleton/src/onemrva-mat-skeleton.component.scss +216 -0
- package/projects/onemrva/design-system/mat-skeleton/src/onemrva-mat-skeleton.component.ts +173 -0
- package/projects/onemrva/design-system/mat-skeleton/src/onemrva-mat-skeleton.module.ts +16 -0
- package/projects/onemrva/design-system/mat-spinner/index.ts +6 -0
- package/projects/onemrva/design-system/mat-spinner/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-spinner/src/_onemrva-mat-spinner.component.scss +62 -0
- package/projects/onemrva/design-system/mat-spinner/src/onemrva-mat-spinner.component.ts +11 -0
- package/projects/onemrva/design-system/mat-spinner/src/onemrva-mat-spinner.module.ts +8 -0
- package/projects/onemrva/design-system/mat-stepper/index.ts +6 -0
- package/projects/onemrva/design-system/mat-stepper/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-stepper/src/_stepper-variables.scss +29 -0
- package/projects/onemrva/design-system/mat-stepper/src/onemrva-mat-stepper.component.spec.ts +23 -0
- package/projects/onemrva/design-system/mat-stepper/src/onemrva-mat-stepper.component.ts +60 -0
- package/projects/onemrva/design-system/mat-stepper/src/onemrva-mat-stepper.html +53 -0
- package/projects/onemrva/design-system/mat-stepper/src/onemrva-mat-stepper.module.ts +30 -0
- package/projects/onemrva/design-system/mat-stepper/src/onemrva-mat-stepper.scss +106 -0
- package/projects/onemrva/design-system/mat-stepper/src/onemrva-stepper-animations.ts +40 -0
- package/projects/onemrva/design-system/mat-table-of-content/index.ts +8 -0
- package/projects/onemrva/design-system/mat-table-of-content/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-table-of-content/src/_onemrva-mat-table-of-content.component.scss +79 -0
- package/projects/onemrva/design-system/mat-table-of-content/src/onemrva-mat-table-of-content.component.html +23 -0
- package/projects/onemrva/design-system/mat-table-of-content/src/onemrva-mat-table-of-content.component.ts +128 -0
- package/projects/onemrva/design-system/mat-table-of-content/src/onemrva-mat-table-of-content.directive.ts +67 -0
- package/projects/onemrva/design-system/mat-table-of-content/src/onemrva-mat-table-of-content.service.ts +51 -0
- package/projects/onemrva/design-system/mat-table-of-content/src/onemrva-mat-toc-anchor.model.ts +24 -0
- package/projects/onemrva/design-system/mat-task-list/index.ts +5 -0
- package/projects/onemrva/design-system/mat-task-list/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-task-list/src/onemrva-mat-task-content.component.ts +12 -0
- package/projects/onemrva/design-system/mat-task-list/src/onemrva-mat-task-content.html +5 -0
- package/projects/onemrva/design-system/mat-task-list/src/onemrva-mat-task-list.component.html +1 -0
- package/projects/onemrva/design-system/mat-task-list/src/onemrva-mat-task-list.component.scss +150 -0
- package/projects/onemrva/design-system/mat-task-list/src/onemrva-mat-task-list.component.ts +50 -0
- package/projects/onemrva/design-system/mat-task-list/src/onemrva-mat-task-list.module.ts +31 -0
- package/projects/onemrva/design-system/mat-task-list/src/onemrva-mat-task-title.component.ts +18 -0
- package/projects/onemrva/design-system/mat-task-list/src/onemrva-mat-task-title.html +5 -0
- package/projects/onemrva/design-system/mat-task-list/src/onemrva-mat-task.component.html +17 -0
- package/projects/onemrva/design-system/mat-task-list/src/onemrva-mat-task.component.scss +0 -0
- package/projects/onemrva/design-system/mat-task-list/src/onemrva-mat-task.component.ts +117 -0
- package/projects/onemrva/design-system/mat-timepicker/index.ts +6 -0
- package/projects/onemrva/design-system/mat-timepicker/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-timepicker/src/clock/clock.component.html +42 -0
- package/projects/onemrva/design-system/mat-timepicker/src/clock/clock.component.scss +129 -0
- package/projects/onemrva/design-system/mat-timepicker/src/clock/clock.component.spec.ts +25 -0
- package/projects/onemrva/design-system/mat-timepicker/src/clock/clock.component.ts +273 -0
- package/projects/onemrva/design-system/mat-timepicker/src/interfaces-and-types.ts +16 -0
- package/projects/onemrva/design-system/mat-timepicker/src/onemrva-mat-timepicker.component.html +0 -0
- package/projects/onemrva/design-system/mat-timepicker/src/onemrva-mat-timepicker.component.ts +289 -0
- package/projects/onemrva/design-system/mat-timepicker/src/onemrva-mat-timepicker.module.ts +40 -0
- package/projects/onemrva/design-system/mat-timepicker/src/timepicker-dialog/timepicker-dialog.component.html +53 -0
- package/projects/onemrva/design-system/mat-timepicker/src/timepicker-dialog/timepicker-dialog.component.scss +69 -0
- package/projects/onemrva/design-system/mat-timepicker/src/timepicker-dialog/timepicker-dialog.component.spec.ts +25 -0
- package/projects/onemrva/design-system/mat-timepicker/src/timepicker-dialog/timepicker-dialog.component.ts +169 -0
- package/projects/onemrva/design-system/mat-timepicker/src/timepicker-toggle/timepicker-toggle.component.html +15 -0
- package/projects/onemrva/design-system/mat-timepicker/src/timepicker-toggle/timepicker-toggle.component.scss +32 -0
- package/projects/onemrva/design-system/mat-timepicker/src/timepicker-toggle/timepicker-toggle.component.ts +135 -0
- package/projects/onemrva/design-system/mat-timepicker/src/timepicker.directive.ts +594 -0
- package/projects/onemrva/design-system/mat-timepicker/src/util.ts +97 -0
- package/projects/onemrva/design-system/mat-toast/index.ts +6 -0
- package/projects/onemrva/design-system/mat-toast/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-toast/src/onemrva-mat-toast.component.scss +54 -0
- package/projects/onemrva/design-system/mat-toast/src/onemrva-mat-toast.component.ts +36 -0
- package/projects/onemrva/design-system/mat-toast/src/onemrva-mat-toast.module.ts +11 -0
- package/projects/onemrva/design-system/mat-tooltip/index.ts +4 -0
- package/projects/onemrva/design-system/mat-tooltip/ng-package.json +6 -0
- package/projects/onemrva/design-system/mat-tooltip/src/onemrva-mat-tooltip.component.scss +9 -0
- package/projects/onemrva/design-system/mat-tooltip/src/onemrva-mat-tooltip.component.ts +21 -0
- package/projects/onemrva/design-system/mat-tooltip/src/onemrva-mat-tooltip.directive.ts +119 -0
- package/projects/onemrva/design-system/mat-tooltip/src/onemrva-mat-tooltip.module.ts +11 -0
- package/projects/onemrva/design-system/ng-package.json +20 -0
- package/projects/onemrva/design-system/package.json +27 -0
- package/projects/onemrva/design-system/page-not-found/assets/404/Arri/303/250re-plan.svg +22 -0
- package/projects/onemrva/design-system/page-not-found/assets/404/Halo.svg +10 -0
- package/projects/onemrva/design-system/page-not-found/assets/404/Ombre.svg +3 -0
- package/projects/onemrva/design-system/page-not-found/assets/404/Page.svg +21 -0
- package/projects/onemrva/design-system/page-not-found/assets/404/Page2.svg +19 -0
- package/projects/onemrva/design-system/page-not-found/assets/404/Soucoupe.svg +70 -0
- package/projects/onemrva/design-system/page-not-found/assets/404/Yeux.svg +6 -0
- package/projects/onemrva/design-system/page-not-found/assets/404/shape.svg +3 -0
- package/projects/onemrva/design-system/page-not-found/index.ts +5 -0
- package/projects/onemrva/design-system/page-not-found/ng-package.json +9 -0
- package/projects/onemrva/design-system/page-not-found/src/page-not-found-action.component.ts +9 -0
- package/projects/onemrva/design-system/page-not-found/src/page-not-found-extra.component.ts +9 -0
- package/projects/onemrva/design-system/page-not-found/src/page-not-found-invader.component.scss +16 -0
- package/projects/onemrva/design-system/page-not-found/src/page-not-found-invader.component.ts +84 -0
- package/projects/onemrva/design-system/page-not-found/src/page-not-found-mixin.component.scss +12 -0
- package/projects/onemrva/design-system/page-not-found/src/page-not-found.component.html +31 -0
- package/projects/onemrva/design-system/page-not-found/src/page-not-found.component.scss +206 -0
- package/projects/onemrva/design-system/page-not-found/src/page-not-found.component.ts +59 -0
- package/projects/onemrva/design-system/page-not-found/src/page-not-found.module.ts +24 -0
- package/projects/onemrva/design-system/src/public-api.ts +5 -0
- package/projects/onemrva/design-system/tsconfig.lib.json +12 -0
- package/projects/onemrva/design-system/tsconfig.lib.prod.json +10 -0
- package/projects/onemrva/design-system/utils/index.ts +2 -0
- package/projects/onemrva/design-system/utils/ng-package.json +6 -0
- package/projects/onemrva/design-system/utils/src/enum.utils.ts +6 -0
- package/projects/onemrva/design-system/utils/src/enums/color.enum.ts +14 -0
- package/projects/onemrva/design-system/utils/src/enums/index.ts +2 -0
- package/projects/onemrva/design-system/utils/src/enums/size.enum.ts +11 -0
- package/projects/schematics/README.md +40 -0
- package/projects/schematics/package.json +25 -0
- package/projects/schematics/src/cmp-demo/schema.json +15 -0
- package/projects/schematics/src/collection.json +17 -0
- package/projects/schematics/src/component/files/root/ng-package.json +6 -0
- package/projects/schematics/src/component/files/src/onemrva-mat-__name__.component.html +4 -0
- package/projects/schematics/src/component/schema.json +11 -0
- package/projects/schematics/src/demo/files/demo/demo-__name__.component.html +2 -0
- package/projects/schematics/src/demo/files/demo/readme.md +26 -0
- package/projects/schematics/src/demo/schema.json +15 -0
- package/projects/schematics/tsconfig.json +24 -0
- package/projects/test/.nycrc +5 -0
- package/projects/test/cypress/coverage.webpack.ts +20 -0
- package/projects/test/cypress/cucumber-json/basictest.cucumber.json +402 -0
- package/projects/test/cypress/fixtures/example.json +5 -0
- package/projects/test/cypress/integration/basictest.feature +53 -0
- package/projects/test/cypress/integration/common/basicTestSteps.ts +54 -0
- package/projects/test/cypress/plugins/index.ts +13 -0
- package/projects/test/cypress/support/commands.ts +44 -0
- package/projects/test/cypress/support/e2e.ts +20 -0
- package/projects/test/cypress/tsconfig.json +10 -0
- package/projects/test/cypress/videos/basictest.feature.mp4 +0 -0
- package/projects/test/karma.conf.js +44 -0
- package/projects/test/src/app/app-routing.module.ts +14 -0
- package/projects/test/src/app/app.component.html +14 -0
- package/projects/test/src/app/app.component.scss +0 -0
- package/projects/test/src/app/app.component.spec.ts +35 -0
- package/projects/test/src/app/app.component.ts +51 -0
- package/projects/test/src/app/app.module.ts +103 -0
- package/projects/test/src/app/demos/avatar/demo-avatar.component.html +77 -0
- package/projects/test/src/app/demos/avatar/demo-avatar.component.scss +4 -0
- package/projects/test/src/app/demos/avatar/demo-avatar.component.ts +13 -0
- package/projects/test/src/app/demos/badge/demo-badge.component.html +389 -0
- package/projects/test/src/app/demos/badge/demo-badge.component.scss +4 -0
- package/projects/test/src/app/demos/badge/demo-badge.component.ts +22 -0
- package/projects/test/src/app/demos/badge/readme.md +30 -0
- package/projects/test/src/app/demos/breadcrumb/demo-breadcrumb.component.html +20 -0
- package/projects/test/src/app/demos/breadcrumb/demo-breadcrumb.component.ts +7 -0
- package/projects/test/src/app/demos/breadcrumb/demo-breadcrumb.module.ts +89 -0
- package/projects/test/src/app/demos/breadcrumb/readme.md +29 -0
- package/projects/test/src/app/demos/datepicker/demo-datepicker.component.html +10 -0
- package/projects/test/src/app/demos/datepicker/demo-datepicker.component.scss +5 -0
- package/projects/test/src/app/demos/datepicker/demo-datepicker.component.ts +12 -0
- package/projects/test/src/app/demos/datepicker/demo-datepicker.module.ts +43 -0
- package/projects/test/src/app/demos/datepicker/readme.md +36 -0
- package/projects/test/src/app/demos/file-upload/demo-file-upload.component.html +30 -0
- package/projects/test/src/app/demos/file-upload/demo-file-upload.component.ts +132 -0
- package/projects/test/src/app/demos/file-upload/demo-file-upload.service.ts +60 -0
- package/projects/test/src/app/demos/file-upload/readme.md +26 -0
- package/projects/test/src/app/demos/input-bank-account/demo-input-bank-account.component.ts +19 -0
- package/projects/test/src/app/demos/input-bank-account/demo-input-bank-account.module.ts +20 -0
- package/projects/test/src/app/demos/input-country/demo-input-country.component.html +9 -0
- package/projects/test/src/app/demos/input-country/demo-input-country.component.ts +14 -0
- package/projects/test/src/app/demos/input-country/demo-input-country.module.ts +26 -0
- package/projects/test/src/app/demos/input-enterprise-number/demo-input-enterprise-number.component.ts +13 -0
- package/projects/test/src/app/demos/input-enterprise-number/demo-input-enterprise-number.module.ts +20 -0
- package/projects/test/src/app/demos/input-phone/demo-input-phone.component.html +16 -0
- package/projects/test/src/app/demos/input-phone/demo-input-phone.component.ts +16 -0
- package/projects/test/src/app/demos/input-phone/demo-input-phone.module.ts +21 -0
- package/projects/test/src/app/demos/message-box/demo-message-box.component.html +32 -0
- package/projects/test/src/app/demos/message-box/demo-message-box.component.ts +12 -0
- package/projects/test/src/app/demos/message-box/readme.md +26 -0
- package/projects/test/src/app/demos/multiselect/demo-multiselect.component.html +53 -0
- package/projects/test/src/app/demos/multiselect/demo-multiselect.component.scss +23 -0
- package/projects/test/src/app/demos/multiselect/demo-multiselect.component.ts +53 -0
- package/projects/test/src/app/demos/multiselect/demo-multiselect.module.ts +38 -0
- package/projects/test/src/app/demos/multiselect/readme.md +34 -0
- package/projects/test/src/app/demos/not-found/demo-not-found.component.html +21 -0
- package/projects/test/src/app/demos/not-found/demo-not-found.component.scss +6 -0
- package/projects/test/src/app/demos/not-found/demo-not-found.component.ts +50 -0
- package/projects/test/src/app/demos/not-found/readme.md +44 -0
- package/projects/test/src/app/demos/notification/demo-notification.component.html +5 -0
- package/projects/test/src/app/demos/notification/demo-notification.component.ts +10 -0
- package/projects/test/src/app/demos/paginator/demo-paginator.component.html +35 -0
- package/projects/test/src/app/demos/paginator/demo-paginator.component.ts +25 -0
- package/projects/test/src/app/demos/paginator/readme.md +89 -0
- package/projects/test/src/app/demos/panel/demo-panel.component.html +53 -0
- package/projects/test/src/app/demos/panel/demo-panel.component.scss +3 -0
- package/projects/test/src/app/demos/panel/demo-panel.component.ts +20 -0
- package/projects/test/src/app/demos/panel/readme.md +26 -0
- package/projects/test/src/app/demos/pop-over/demo-pop-over.component.html +130 -0
- package/projects/test/src/app/demos/pop-over/demo-pop-over.component.scss +9 -0
- package/projects/test/src/app/demos/pop-over/demo-pop-over.component.ts +13 -0
- package/projects/test/src/app/demos/pop-over/readme.md +26 -0
- package/projects/test/src/app/demos/progress-bar/demo-progress-bar.component.html +19 -0
- package/projects/test/src/app/demos/progress-bar/demo-progress-bar.component.ts +35 -0
- package/projects/test/src/app/demos/side-menu/demo-side-menu.component.html +5 -0
- package/projects/test/src/app/demos/side-menu/demo-side-menu.component.ts +34 -0
- package/projects/test/src/app/demos/side-menu/readme.md +30 -0
- package/projects/test/src/app/demos/skeleton/demo-skeleton.component.html +119 -0
- package/projects/test/src/app/demos/skeleton/demo-skeleton.component.scss +0 -0
- package/projects/test/src/app/demos/skeleton/demo-skeleton.component.ts +35 -0
- package/projects/test/src/app/demos/spinner/demo-spinner.component.html +1 -0
- package/projects/test/src/app/demos/spinner/demo-spinner.component.ts +10 -0
- package/projects/test/src/app/demos/spinner/readme.md +24 -0
- package/projects/test/src/app/demos/summary-stepper/demo-summary-stepper.component.html +108 -0
- package/projects/test/src/app/demos/summary-stepper/demo-summary-stepper.component.scss +3 -0
- package/projects/test/src/app/demos/summary-stepper/demo-summary-stepper.component.ts +55 -0
- package/projects/test/src/app/demos/summary-stepper/readme.md +26 -0
- package/projects/test/src/app/demos/table/demo-table-datasource.ts +140 -0
- package/projects/test/src/app/demos/table/demo-table.component.html +41 -0
- package/projects/test/src/app/demos/table/demo-table.component.scss +17 -0
- package/projects/test/src/app/demos/table/demo-table.component.ts +51 -0
- package/projects/test/src/app/demos/table/demo-table.module.ts +45 -0
- package/projects/test/src/app/demos/table/readme.md +27 -0
- package/projects/test/src/app/demos/task-list/demo-task-list.component.html +37 -0
- package/projects/test/src/app/demos/task-list/demo-task-list.component.scss +3 -0
- package/projects/test/src/app/demos/task-list/demo-task-list.component.ts +14 -0
- package/projects/test/src/app/demos/task-list/demo-task-list.module.ts +29 -0
- package/projects/test/src/app/demos/task-list/readme.md +26 -0
- package/projects/test/src/app/demos/timepicker/demo-timepicker.component.html +9 -0
- package/projects/test/src/app/demos/timepicker/demo-timepicker.component.ts +31 -0
- package/projects/test/src/app/demos/timepicker/readme.md +26 -0
- package/projects/test/src/app/demos/toast/demo-toast.component.html +8 -0
- package/projects/test/src/app/demos/toast/demo-toast.component.scss +3 -0
- package/projects/test/src/app/demos/toast/demo-toast.component.ts +61 -0
- package/projects/test/src/app/demos/toast/readme.md +30 -0
- package/projects/test/src/app/demos/toc/demo-toc.component.html +288 -0
- package/projects/test/src/app/demos/toc/demo-toc.component.ts +26 -0
- package/projects/test/src/app/demos/tooltip/demo-tooltip.component.html +73 -0
- package/projects/test/src/app/demos/tooltip/demo-tooltip.component.scss +11 -0
- package/projects/test/src/app/demos/tooltip/demo-tooltip.component.ts +14 -0
- package/projects/test/src/app/home.component.ts +54 -0
- package/projects/test/src/app/material.module.ts +39 -0
- package/projects/test/src/app/onemrva-translate-http-loader.ts +35 -0
- package/projects/test/src/app/routes.ts +198 -0
- package/projects/test/src/assets/.gitkeep +0 -0
- package/projects/test/src/assets/i18n/de.json +80 -0
- package/projects/test/src/assets/i18n/en.json +80 -0
- package/projects/test/src/assets/i18n/fr.json +80 -0
- package/projects/test/src/assets/i18n/nl.json +79 -0
- package/projects/test/src/environments/environment.e2e.ts +3 -0
- package/projects/test/src/environments/environment.prod.ts +3 -0
- package/projects/test/src/environments/environment.ts +16 -0
- package/projects/test/src/favicon.ico +0 -0
- package/projects/test/src/index.html +15 -0
- package/projects/test/src/main.ts +12 -0
- package/projects/test/src/polyfills.ts +53 -0
- package/projects/test/src/styles.scss +22 -0
- package/projects/test/src/test.ts +26 -0
- package/projects/test/tsconfig.app.json +15 -0
- package/projects/test/tsconfig.spec.json +18 -0
- package/rva.crt +36 -0
- package/tsconfig.json +44 -0
|
@@ -0,0 +1,3182 @@
|
|
|
1
|
+
export interface OnemrvaMaterialCountry{
|
|
2
|
+
code: string;
|
|
3
|
+
name: string;
|
|
4
|
+
dial_code: string;
|
|
5
|
+
zone: string;
|
|
6
|
+
pattern: string;
|
|
7
|
+
placeholder: string;
|
|
8
|
+
translations: {
|
|
9
|
+
fr: string,
|
|
10
|
+
nl: string,
|
|
11
|
+
de: string
|
|
12
|
+
};
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export const countries: readonly OnemrvaMaterialCountry[] = [
|
|
16
|
+
{
|
|
17
|
+
name: 'Afghanistan',
|
|
18
|
+
dial_code: '+93',
|
|
19
|
+
code: 'AF',
|
|
20
|
+
zone: '',
|
|
21
|
+
pattern: '',
|
|
22
|
+
placeholder: '',
|
|
23
|
+
translations: {
|
|
24
|
+
fr: 'Afghanistan',
|
|
25
|
+
nl: 'Afghanistan',
|
|
26
|
+
de: 'Afghanistan',
|
|
27
|
+
},
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
name: 'Aland Islands',
|
|
31
|
+
dial_code: '+358',
|
|
32
|
+
code: 'AX',
|
|
33
|
+
zone: '',
|
|
34
|
+
pattern: '',
|
|
35
|
+
placeholder: '',
|
|
36
|
+
translations: {
|
|
37
|
+
fr: 'Îles d’Åland',
|
|
38
|
+
nl: 'Ålandeilanden',
|
|
39
|
+
de: 'Ålandinseln',
|
|
40
|
+
},
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
name: 'Albania',
|
|
44
|
+
dial_code: '+355',
|
|
45
|
+
code: 'AL',
|
|
46
|
+
zone: '',
|
|
47
|
+
pattern: '',
|
|
48
|
+
placeholder: '',
|
|
49
|
+
translations: {
|
|
50
|
+
fr: 'Albanie',
|
|
51
|
+
nl: 'Albanië',
|
|
52
|
+
de: 'Albanien',
|
|
53
|
+
},
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
name: 'Algeria',
|
|
57
|
+
dial_code: '+213',
|
|
58
|
+
code: 'DZ',
|
|
59
|
+
zone: '',
|
|
60
|
+
pattern: '',
|
|
61
|
+
placeholder: '',
|
|
62
|
+
translations: {
|
|
63
|
+
fr: 'Algérie',
|
|
64
|
+
nl: 'Algerije',
|
|
65
|
+
de: 'Algerien',
|
|
66
|
+
},
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
name: 'AmericanSamoa',
|
|
70
|
+
dial_code: '+1684',
|
|
71
|
+
code: 'AS',
|
|
72
|
+
zone: '',
|
|
73
|
+
pattern: '',
|
|
74
|
+
placeholder: '',
|
|
75
|
+
translations: {
|
|
76
|
+
fr: 'Samoa américaines',
|
|
77
|
+
nl: 'Amerikaans-Samoa',
|
|
78
|
+
de: 'Amerikanisch-Samoa',
|
|
79
|
+
},
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
name: 'Andorra',
|
|
83
|
+
dial_code: '+376',
|
|
84
|
+
code: 'AD',
|
|
85
|
+
zone: '',
|
|
86
|
+
pattern: '',
|
|
87
|
+
placeholder: '',
|
|
88
|
+
translations: {
|
|
89
|
+
fr: 'Andorre',
|
|
90
|
+
nl: 'Andorra',
|
|
91
|
+
de: 'Andorra',
|
|
92
|
+
},
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
name: 'Angola',
|
|
96
|
+
dial_code: '+244',
|
|
97
|
+
code: 'AO',
|
|
98
|
+
zone: '',
|
|
99
|
+
pattern: '',
|
|
100
|
+
placeholder: '',
|
|
101
|
+
translations: {
|
|
102
|
+
fr: 'Angola',
|
|
103
|
+
nl: 'Angola',
|
|
104
|
+
de: 'Angola',
|
|
105
|
+
},
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
name: 'Anguilla',
|
|
109
|
+
dial_code: '+1264',
|
|
110
|
+
code: 'AI',
|
|
111
|
+
zone: '',
|
|
112
|
+
pattern: '',
|
|
113
|
+
placeholder: '',
|
|
114
|
+
translations: {
|
|
115
|
+
fr: 'Anguilla',
|
|
116
|
+
nl: 'Anguilla',
|
|
117
|
+
de: 'Anguilla',
|
|
118
|
+
},
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
name: 'Antarctica',
|
|
122
|
+
dial_code: '+672',
|
|
123
|
+
code: 'AQ',
|
|
124
|
+
zone: '',
|
|
125
|
+
pattern: '',
|
|
126
|
+
placeholder: '',
|
|
127
|
+
translations: {
|
|
128
|
+
fr: 'Antarctique',
|
|
129
|
+
nl: 'Antarctica',
|
|
130
|
+
de: 'Antarktis',
|
|
131
|
+
},
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
name: 'Antigua and Barbuda',
|
|
135
|
+
dial_code: '+1268',
|
|
136
|
+
code: 'AG',
|
|
137
|
+
zone: '',
|
|
138
|
+
pattern: '',
|
|
139
|
+
placeholder: '',
|
|
140
|
+
translations: {
|
|
141
|
+
fr: 'Antigua-et-Barbuda',
|
|
142
|
+
nl: 'Antigua en Barbuda',
|
|
143
|
+
de: 'Antigua und Barbuda',
|
|
144
|
+
},
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
name: 'Argentina',
|
|
148
|
+
dial_code: '+54',
|
|
149
|
+
code: 'AR',
|
|
150
|
+
zone: '',
|
|
151
|
+
pattern: '',
|
|
152
|
+
placeholder: '',
|
|
153
|
+
translations: {
|
|
154
|
+
fr: 'Argentine',
|
|
155
|
+
nl: 'Argentinië',
|
|
156
|
+
de: 'Argentinien',
|
|
157
|
+
},
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
name: 'Armenia',
|
|
161
|
+
dial_code: '+374',
|
|
162
|
+
code: 'AM',
|
|
163
|
+
zone: '',
|
|
164
|
+
pattern: '',
|
|
165
|
+
placeholder: '',
|
|
166
|
+
translations: {
|
|
167
|
+
fr: 'Arménie',
|
|
168
|
+
nl: 'Armenië',
|
|
169
|
+
de: 'Armenien',
|
|
170
|
+
},
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
name: 'Aruba',
|
|
174
|
+
dial_code: '+297',
|
|
175
|
+
code: 'AW',
|
|
176
|
+
zone: '',
|
|
177
|
+
pattern: '',
|
|
178
|
+
placeholder: '',
|
|
179
|
+
translations: {
|
|
180
|
+
fr: 'Aruba',
|
|
181
|
+
nl: 'Aruba',
|
|
182
|
+
de: 'Aruba'
|
|
183
|
+
}
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
name: 'Australia',
|
|
187
|
+
dial_code: '+61',
|
|
188
|
+
code: 'AU',
|
|
189
|
+
zone: '',
|
|
190
|
+
pattern: '',
|
|
191
|
+
placeholder: '',
|
|
192
|
+
translations: {
|
|
193
|
+
fr: 'Australie',
|
|
194
|
+
nl: 'Australië',
|
|
195
|
+
de: 'Australien',
|
|
196
|
+
},
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
name: 'Austria',
|
|
200
|
+
dial_code: '+43',
|
|
201
|
+
code: 'AT',
|
|
202
|
+
zone: 'EU',
|
|
203
|
+
pattern: 'ATU[0-9]{8}',
|
|
204
|
+
placeholder: 'ATUXXXXXXXX',
|
|
205
|
+
translations: {
|
|
206
|
+
fr: 'Autriche',
|
|
207
|
+
nl: 'Oostenrijk',
|
|
208
|
+
de: 'Österreich',
|
|
209
|
+
},
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
name: 'Azerbaijan',
|
|
213
|
+
dial_code: '+994',
|
|
214
|
+
code: 'AZ',
|
|
215
|
+
zone: '',
|
|
216
|
+
pattern: '',
|
|
217
|
+
placeholder: '',
|
|
218
|
+
translations: {
|
|
219
|
+
fr: 'Azerbaïdjan',
|
|
220
|
+
nl: 'Azerbeidzjan',
|
|
221
|
+
de: 'Aserbaidschan',
|
|
222
|
+
},
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
name: 'Bahamas',
|
|
226
|
+
dial_code: '+1242',
|
|
227
|
+
code: 'BS',
|
|
228
|
+
zone: '',
|
|
229
|
+
pattern: '',
|
|
230
|
+
placeholder: '',
|
|
231
|
+
translations: {
|
|
232
|
+
fr: 'Bahamas',
|
|
233
|
+
nl: 'Bahama’s',
|
|
234
|
+
de: 'Bahamas',
|
|
235
|
+
},
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
name: 'Bahrain',
|
|
239
|
+
dial_code: '+973',
|
|
240
|
+
code: 'BH',
|
|
241
|
+
zone: '',
|
|
242
|
+
pattern: '',
|
|
243
|
+
placeholder: '',
|
|
244
|
+
translations: {
|
|
245
|
+
fr: 'Bahreïn',
|
|
246
|
+
nl: 'Bahrein',
|
|
247
|
+
de: 'Bahrain',
|
|
248
|
+
},
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
name: 'Bangladesh',
|
|
252
|
+
dial_code: '+880',
|
|
253
|
+
code: 'BD',
|
|
254
|
+
zone: '',
|
|
255
|
+
pattern: '',
|
|
256
|
+
placeholder: '',
|
|
257
|
+
translations: {
|
|
258
|
+
fr: 'Bangladesh',
|
|
259
|
+
nl: 'Bangladesh',
|
|
260
|
+
de: 'Bangladesch',
|
|
261
|
+
},
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
name: 'Barbados',
|
|
265
|
+
dial_code: '+1246',
|
|
266
|
+
code: 'BB',
|
|
267
|
+
zone: '',
|
|
268
|
+
pattern: '',
|
|
269
|
+
placeholder: '',
|
|
270
|
+
translations: {
|
|
271
|
+
fr: 'Barbade',
|
|
272
|
+
nl: 'Barbados',
|
|
273
|
+
de: 'Barbados',
|
|
274
|
+
},
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
name: 'Belarus',
|
|
278
|
+
dial_code: '+375',
|
|
279
|
+
code: 'BY',
|
|
280
|
+
zone: '',
|
|
281
|
+
pattern: '',
|
|
282
|
+
placeholder: '',
|
|
283
|
+
translations: {
|
|
284
|
+
fr: 'Biélorussie',
|
|
285
|
+
nl: 'Wit-Rusland',
|
|
286
|
+
de: 'Belarus',
|
|
287
|
+
},
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
name: 'Belgium',
|
|
291
|
+
dial_code: '+32',
|
|
292
|
+
code: 'BE',
|
|
293
|
+
zone: 'EU',
|
|
294
|
+
pattern: 'BE0[0-9]{9}',
|
|
295
|
+
placeholder: 'BE0XXXXXXXXX',
|
|
296
|
+
translations: {
|
|
297
|
+
fr: 'Belgique',
|
|
298
|
+
nl: 'België',
|
|
299
|
+
de: 'Belgien',
|
|
300
|
+
},
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
name: 'Belize',
|
|
304
|
+
dial_code: '+501',
|
|
305
|
+
code: 'BZ',
|
|
306
|
+
zone: '',
|
|
307
|
+
pattern: '',
|
|
308
|
+
placeholder: '',
|
|
309
|
+
translations: {
|
|
310
|
+
fr: 'Belize',
|
|
311
|
+
nl: 'Belize',
|
|
312
|
+
de: 'Belize',
|
|
313
|
+
},
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
name: 'Benin',
|
|
317
|
+
dial_code: '+229',
|
|
318
|
+
code: 'BJ',
|
|
319
|
+
zone: '',
|
|
320
|
+
pattern: '',
|
|
321
|
+
placeholder: '',
|
|
322
|
+
translations: {
|
|
323
|
+
fr: 'Bénin',
|
|
324
|
+
nl: 'Benin',
|
|
325
|
+
de: 'Benin',
|
|
326
|
+
},
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
name: 'Bermuda',
|
|
330
|
+
dial_code: '+1441',
|
|
331
|
+
code: 'BM',
|
|
332
|
+
zone: '',
|
|
333
|
+
pattern: '',
|
|
334
|
+
placeholder: '',
|
|
335
|
+
translations: {
|
|
336
|
+
fr: 'Bermudes',
|
|
337
|
+
nl: 'Bermuda',
|
|
338
|
+
de: 'Bermuda',
|
|
339
|
+
},
|
|
340
|
+
},
|
|
341
|
+
{
|
|
342
|
+
name: 'Bhutan',
|
|
343
|
+
dial_code: '+975',
|
|
344
|
+
code: 'BT',
|
|
345
|
+
zone: '',
|
|
346
|
+
pattern: '',
|
|
347
|
+
placeholder: '',
|
|
348
|
+
translations: {
|
|
349
|
+
fr: 'Bhoutan',
|
|
350
|
+
nl: 'Bhutan',
|
|
351
|
+
de: 'Bhutan',
|
|
352
|
+
},
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
name: 'Bolivia',
|
|
356
|
+
dial_code: '+591',
|
|
357
|
+
code: 'BO',
|
|
358
|
+
zone: '',
|
|
359
|
+
pattern: '',
|
|
360
|
+
placeholder: '',
|
|
361
|
+
translations: {
|
|
362
|
+
fr: 'Bolivie',
|
|
363
|
+
nl: 'Bolivia',
|
|
364
|
+
de: 'Bolivien',
|
|
365
|
+
},
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
name: 'Bosnia and Herzegovina',
|
|
369
|
+
dial_code: '+387',
|
|
370
|
+
code: 'BA',
|
|
371
|
+
zone: '',
|
|
372
|
+
pattern: '',
|
|
373
|
+
placeholder: '',
|
|
374
|
+
translations: {
|
|
375
|
+
fr: 'Bosnie-Herzégovine',
|
|
376
|
+
nl: 'Bosnië en Herzegovina',
|
|
377
|
+
de: 'Bosnien und Herzegowina',
|
|
378
|
+
},
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
name: 'Botswana',
|
|
382
|
+
dial_code: '+267',
|
|
383
|
+
code: 'BW',
|
|
384
|
+
zone: '',
|
|
385
|
+
pattern: '',
|
|
386
|
+
placeholder: '',
|
|
387
|
+
translations: {
|
|
388
|
+
fr: 'Botswana',
|
|
389
|
+
nl: 'Botswana',
|
|
390
|
+
de: 'Botsuana',
|
|
391
|
+
},
|
|
392
|
+
},
|
|
393
|
+
{
|
|
394
|
+
name: 'Brazil',
|
|
395
|
+
dial_code: '+55',
|
|
396
|
+
code: 'BR',
|
|
397
|
+
zone: '',
|
|
398
|
+
pattern: '',
|
|
399
|
+
placeholder: '',
|
|
400
|
+
translations: {
|
|
401
|
+
fr: 'Brésil',
|
|
402
|
+
nl: 'Brazilië',
|
|
403
|
+
de: 'Brasilien',
|
|
404
|
+
},
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
name: 'British Indian Ocean Territory',
|
|
408
|
+
dial_code: '+246',
|
|
409
|
+
code: 'IO',
|
|
410
|
+
zone: '',
|
|
411
|
+
pattern: '',
|
|
412
|
+
placeholder: '',
|
|
413
|
+
translations: {
|
|
414
|
+
fr: 'Territoire britannique de l\'océan Indien',
|
|
415
|
+
nl: 'Brits Indische Oceaanterritorium',
|
|
416
|
+
de: 'Britisches Territorium im Indischen Ozean',
|
|
417
|
+
},
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
name: 'British Virgin Islands',
|
|
421
|
+
dial_code: '+1284',
|
|
422
|
+
code: 'VG',
|
|
423
|
+
zone: '',
|
|
424
|
+
pattern: '',
|
|
425
|
+
placeholder: '',
|
|
426
|
+
translations: {
|
|
427
|
+
fr: 'Îles Vierges britanniques',
|
|
428
|
+
nl: 'Britse Maagdeneilanden',
|
|
429
|
+
de: 'Britische Jungferninseln',
|
|
430
|
+
},
|
|
431
|
+
},
|
|
432
|
+
{
|
|
433
|
+
name: 'Brunei',
|
|
434
|
+
dial_code: '+673',
|
|
435
|
+
code: 'BN',
|
|
436
|
+
zone: '',
|
|
437
|
+
pattern: '',
|
|
438
|
+
placeholder: '',
|
|
439
|
+
translations: {
|
|
440
|
+
fr: 'Brunéi',
|
|
441
|
+
nl: 'Brunei',
|
|
442
|
+
de: 'Brunei',
|
|
443
|
+
},
|
|
444
|
+
},
|
|
445
|
+
{
|
|
446
|
+
name: 'Bulgaria',
|
|
447
|
+
dial_code: '+359',
|
|
448
|
+
code: 'BG',
|
|
449
|
+
zone: 'EU',
|
|
450
|
+
pattern: 'BG[0-9]{9,10}',
|
|
451
|
+
placeholder: 'BGXXXXXXXXXX',
|
|
452
|
+
translations: {
|
|
453
|
+
fr: 'Bulgarie',
|
|
454
|
+
nl: 'Bulgarije',
|
|
455
|
+
de: 'Bulgarien',
|
|
456
|
+
},
|
|
457
|
+
},
|
|
458
|
+
{
|
|
459
|
+
name: 'Burkina Faso',
|
|
460
|
+
dial_code: '+226',
|
|
461
|
+
code: 'BF',
|
|
462
|
+
zone: '',
|
|
463
|
+
pattern: '',
|
|
464
|
+
placeholder: '',
|
|
465
|
+
translations: {
|
|
466
|
+
fr: 'Burkina Faso',
|
|
467
|
+
nl: 'Burkina Faso',
|
|
468
|
+
de: 'Burkina Faso',
|
|
469
|
+
},
|
|
470
|
+
},
|
|
471
|
+
{
|
|
472
|
+
name: 'Burundi',
|
|
473
|
+
dial_code: '+257',
|
|
474
|
+
code: 'BI',
|
|
475
|
+
zone: '',
|
|
476
|
+
pattern: '',
|
|
477
|
+
placeholder: '',
|
|
478
|
+
translations: {
|
|
479
|
+
fr: 'Burundi',
|
|
480
|
+
nl: 'Burundi',
|
|
481
|
+
de: 'Burundi',
|
|
482
|
+
},
|
|
483
|
+
},
|
|
484
|
+
{
|
|
485
|
+
name: 'Cambodia',
|
|
486
|
+
dial_code: '+855',
|
|
487
|
+
code: 'KH',
|
|
488
|
+
zone: '',
|
|
489
|
+
pattern: '',
|
|
490
|
+
placeholder: '',
|
|
491
|
+
translations: {
|
|
492
|
+
fr: 'Cambodge',
|
|
493
|
+
nl: 'Cambodja',
|
|
494
|
+
de: 'Kambodscha',
|
|
495
|
+
},
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
name: 'Cameroon',
|
|
499
|
+
dial_code: '+237',
|
|
500
|
+
code: 'CM',
|
|
501
|
+
zone: '',
|
|
502
|
+
pattern: '',
|
|
503
|
+
placeholder: '',
|
|
504
|
+
translations: {
|
|
505
|
+
fr: 'Cameroun',
|
|
506
|
+
nl: 'Kameroen',
|
|
507
|
+
de: 'Kamerun',
|
|
508
|
+
},
|
|
509
|
+
},
|
|
510
|
+
{
|
|
511
|
+
name: 'Canada',
|
|
512
|
+
dial_code: '+1',
|
|
513
|
+
code: 'CA',
|
|
514
|
+
zone: '',
|
|
515
|
+
pattern: '',
|
|
516
|
+
placeholder: '',
|
|
517
|
+
translations: {
|
|
518
|
+
fr: 'Canada',
|
|
519
|
+
nl: 'Canada',
|
|
520
|
+
de: 'Kanada',
|
|
521
|
+
},
|
|
522
|
+
},
|
|
523
|
+
{
|
|
524
|
+
name: 'Cape Verde',
|
|
525
|
+
dial_code: '+238',
|
|
526
|
+
code: 'CV',
|
|
527
|
+
zone: '',
|
|
528
|
+
pattern: '',
|
|
529
|
+
placeholder: '',
|
|
530
|
+
translations: {
|
|
531
|
+
fr: 'Cap-Vert',
|
|
532
|
+
nl: 'Kaapverdië',
|
|
533
|
+
de: 'Kap Verde',
|
|
534
|
+
},
|
|
535
|
+
},
|
|
536
|
+
{
|
|
537
|
+
name: 'Cayman Islands',
|
|
538
|
+
dial_code: '+1345',
|
|
539
|
+
code: 'KY',
|
|
540
|
+
zone: '',
|
|
541
|
+
pattern: '',
|
|
542
|
+
placeholder: '',
|
|
543
|
+
translations: {
|
|
544
|
+
fr: 'Îles Caïmans',
|
|
545
|
+
nl: 'Caymaneilanden',
|
|
546
|
+
de: 'Kaimaninseln',
|
|
547
|
+
},
|
|
548
|
+
},
|
|
549
|
+
{
|
|
550
|
+
name: 'Central African Republic',
|
|
551
|
+
dial_code: '+236',
|
|
552
|
+
code: 'CF',
|
|
553
|
+
zone: '',
|
|
554
|
+
pattern: '',
|
|
555
|
+
placeholder: '',
|
|
556
|
+
translations: {
|
|
557
|
+
fr: 'République centrafricaine',
|
|
558
|
+
nl: 'Centraal-Afrikaanse Republiek',
|
|
559
|
+
de: 'Zentralafrikanische Republik',
|
|
560
|
+
},
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
name: 'Chad',
|
|
564
|
+
dial_code: '+235',
|
|
565
|
+
code: 'TD',
|
|
566
|
+
zone: '',
|
|
567
|
+
pattern: '',
|
|
568
|
+
placeholder: '',
|
|
569
|
+
translations: {
|
|
570
|
+
fr: 'Tchad',
|
|
571
|
+
nl: 'Tsjaad',
|
|
572
|
+
de: 'Tschad',
|
|
573
|
+
},
|
|
574
|
+
},
|
|
575
|
+
{
|
|
576
|
+
name: 'Chile',
|
|
577
|
+
dial_code: '+56',
|
|
578
|
+
code: 'CL',
|
|
579
|
+
zone: '',
|
|
580
|
+
pattern: '',
|
|
581
|
+
placeholder: '',
|
|
582
|
+
translations: {
|
|
583
|
+
fr: 'Chili',
|
|
584
|
+
nl: 'Chili',
|
|
585
|
+
de: 'Chile',
|
|
586
|
+
},
|
|
587
|
+
},
|
|
588
|
+
{
|
|
589
|
+
name: 'China',
|
|
590
|
+
dial_code: '+86',
|
|
591
|
+
code: 'CN',
|
|
592
|
+
zone: '',
|
|
593
|
+
pattern: '',
|
|
594
|
+
placeholder: '',
|
|
595
|
+
translations: {
|
|
596
|
+
fr: 'Chine',
|
|
597
|
+
nl: 'China',
|
|
598
|
+
de: 'China',
|
|
599
|
+
},
|
|
600
|
+
},
|
|
601
|
+
{
|
|
602
|
+
name: 'Colombia',
|
|
603
|
+
dial_code: '+57',
|
|
604
|
+
code: 'CO',
|
|
605
|
+
zone: '',
|
|
606
|
+
pattern: '',
|
|
607
|
+
placeholder: '',
|
|
608
|
+
translations: {
|
|
609
|
+
fr: 'Colombie',
|
|
610
|
+
nl: 'Colombia',
|
|
611
|
+
de: 'Kolumbien',
|
|
612
|
+
},
|
|
613
|
+
},
|
|
614
|
+
{
|
|
615
|
+
name: 'Comoros',
|
|
616
|
+
dial_code: '+269',
|
|
617
|
+
code: 'KM',
|
|
618
|
+
zone: '',
|
|
619
|
+
pattern: '',
|
|
620
|
+
placeholder: '',
|
|
621
|
+
translations: {
|
|
622
|
+
fr: 'Comores',
|
|
623
|
+
nl: 'Comoren',
|
|
624
|
+
de: 'Komoren',
|
|
625
|
+
},
|
|
626
|
+
},
|
|
627
|
+
{
|
|
628
|
+
name: 'Cook Islands',
|
|
629
|
+
dial_code: '+682',
|
|
630
|
+
code: 'CK',
|
|
631
|
+
zone: '',
|
|
632
|
+
pattern: '',
|
|
633
|
+
placeholder: '',
|
|
634
|
+
translations: {
|
|
635
|
+
fr: 'Îles Cook',
|
|
636
|
+
nl: 'Cookeilanden',
|
|
637
|
+
de: 'Cookinseln',
|
|
638
|
+
},
|
|
639
|
+
},
|
|
640
|
+
{
|
|
641
|
+
name: 'Costa Rica',
|
|
642
|
+
dial_code: '+506',
|
|
643
|
+
code: 'CR',
|
|
644
|
+
zone: '',
|
|
645
|
+
pattern: '',
|
|
646
|
+
placeholder: '',
|
|
647
|
+
translations: {
|
|
648
|
+
fr: 'Costa Rica',
|
|
649
|
+
nl: 'Costa Rica',
|
|
650
|
+
de: 'Costa Rica',
|
|
651
|
+
},
|
|
652
|
+
},
|
|
653
|
+
{
|
|
654
|
+
name: 'Croatia',
|
|
655
|
+
dial_code: '+385',
|
|
656
|
+
code: 'HR',
|
|
657
|
+
zone: 'EU',
|
|
658
|
+
pattern: 'HR[0-9]{11}',
|
|
659
|
+
placeholder: 'HRXXXXXXXXXXX',
|
|
660
|
+
translations: {
|
|
661
|
+
fr: 'Croatie',
|
|
662
|
+
nl: 'Kroatië',
|
|
663
|
+
de: 'Kroatien',
|
|
664
|
+
}
|
|
665
|
+
},
|
|
666
|
+
{
|
|
667
|
+
name: 'Cuba',
|
|
668
|
+
dial_code: '+53',
|
|
669
|
+
code: 'CU',
|
|
670
|
+
zone: '',
|
|
671
|
+
pattern: '',
|
|
672
|
+
placeholder: '',
|
|
673
|
+
translations: {
|
|
674
|
+
fr: 'Cuba',
|
|
675
|
+
nl: 'Cuba',
|
|
676
|
+
de: 'Kuba',
|
|
677
|
+
},
|
|
678
|
+
},
|
|
679
|
+
{
|
|
680
|
+
name: 'Curaçao',
|
|
681
|
+
dial_code: '+599',
|
|
682
|
+
code: 'CW',
|
|
683
|
+
zone: '',
|
|
684
|
+
pattern: '',
|
|
685
|
+
placeholder: '',
|
|
686
|
+
translations: {
|
|
687
|
+
fr: 'Curaçao',
|
|
688
|
+
nl: 'Curaçao',
|
|
689
|
+
de: 'Curaçao',
|
|
690
|
+
},
|
|
691
|
+
},
|
|
692
|
+
{
|
|
693
|
+
name: 'Cyprus',
|
|
694
|
+
dial_code: '+357',
|
|
695
|
+
code: 'CY',
|
|
696
|
+
zone: 'EU',
|
|
697
|
+
pattern: 'CY[0-9]{8}L',
|
|
698
|
+
placeholder: 'CYXXXXXXXXL',
|
|
699
|
+
translations: {
|
|
700
|
+
fr: 'Chypre',
|
|
701
|
+
nl: 'Cyprus',
|
|
702
|
+
de: 'Zypern',
|
|
703
|
+
},
|
|
704
|
+
},
|
|
705
|
+
{
|
|
706
|
+
name: 'Czech Republic',
|
|
707
|
+
dial_code: '+420',
|
|
708
|
+
code: 'CZ',
|
|
709
|
+
zone: 'EU',
|
|
710
|
+
pattern: 'CZ[0-9]{8,10}',
|
|
711
|
+
placeholder: 'CZXXXXXXXXXX',
|
|
712
|
+
translations: {
|
|
713
|
+
fr: 'République tchèque',
|
|
714
|
+
nl: 'Tsjechië',
|
|
715
|
+
de: 'Tschechische Republik',
|
|
716
|
+
},
|
|
717
|
+
},
|
|
718
|
+
{
|
|
719
|
+
name: 'Democratic Republic of the Congo',
|
|
720
|
+
dial_code: '+243',
|
|
721
|
+
code: 'CD',
|
|
722
|
+
zone: '',
|
|
723
|
+
pattern: '',
|
|
724
|
+
placeholder: '',
|
|
725
|
+
translations: {
|
|
726
|
+
fr: 'République démocratique du Congo',
|
|
727
|
+
nl: 'Democratische Republiek Congo',
|
|
728
|
+
de: 'Demokratische Republik Kongo',
|
|
729
|
+
},
|
|
730
|
+
},
|
|
731
|
+
{
|
|
732
|
+
name: 'Denmark',
|
|
733
|
+
dial_code: '+45',
|
|
734
|
+
code: 'DK',
|
|
735
|
+
zone: 'EU',
|
|
736
|
+
pattern: 'DK[0-9]{8}',
|
|
737
|
+
placeholder: 'DKXXXXXXXX',
|
|
738
|
+
translations: {
|
|
739
|
+
fr: 'Danemark',
|
|
740
|
+
nl: 'Denemarken',
|
|
741
|
+
de: 'Dänemark',
|
|
742
|
+
},
|
|
743
|
+
},
|
|
744
|
+
{
|
|
745
|
+
name: 'Djibouti',
|
|
746
|
+
dial_code: '+253',
|
|
747
|
+
code: 'DJ',
|
|
748
|
+
zone: '',
|
|
749
|
+
pattern: '',
|
|
750
|
+
placeholder: '',
|
|
751
|
+
translations: {
|
|
752
|
+
fr: 'Djibouti',
|
|
753
|
+
nl: 'Djibouti',
|
|
754
|
+
de: 'Dschibuti',
|
|
755
|
+
},
|
|
756
|
+
},
|
|
757
|
+
{
|
|
758
|
+
name: 'Dominica',
|
|
759
|
+
dial_code: '+1767',
|
|
760
|
+
code: 'DM',
|
|
761
|
+
zone: '',
|
|
762
|
+
pattern: '',
|
|
763
|
+
placeholder: '',
|
|
764
|
+
translations: {
|
|
765
|
+
fr: 'Dominique',
|
|
766
|
+
nl: 'Dominica',
|
|
767
|
+
de: 'Dominica',
|
|
768
|
+
},
|
|
769
|
+
},
|
|
770
|
+
{
|
|
771
|
+
name: 'Dominican Republic',
|
|
772
|
+
dial_code: '+1849',
|
|
773
|
+
code: 'DO',
|
|
774
|
+
zone: '',
|
|
775
|
+
pattern: '',
|
|
776
|
+
placeholder: '',
|
|
777
|
+
translations: {
|
|
778
|
+
fr: 'République dominicaine',
|
|
779
|
+
nl: 'Dominicaanse Republiek',
|
|
780
|
+
de: 'Dominikanische Republik',
|
|
781
|
+
},
|
|
782
|
+
},
|
|
783
|
+
{
|
|
784
|
+
name: 'East Timor',
|
|
785
|
+
dial_code: '+670',
|
|
786
|
+
code: 'TL',
|
|
787
|
+
zone: '',
|
|
788
|
+
pattern: '',
|
|
789
|
+
placeholder: '',
|
|
790
|
+
translations: {
|
|
791
|
+
fr: 'Timor-Leste',
|
|
792
|
+
nl: 'Oost-Timor',
|
|
793
|
+
de: 'Timor-Leste',
|
|
794
|
+
},
|
|
795
|
+
},
|
|
796
|
+
{
|
|
797
|
+
name: 'Ecuador',
|
|
798
|
+
dial_code: '+593',
|
|
799
|
+
code: 'EC',
|
|
800
|
+
zone: '',
|
|
801
|
+
pattern: '',
|
|
802
|
+
placeholder: '',
|
|
803
|
+
translations: {
|
|
804
|
+
fr: 'Équateur',
|
|
805
|
+
nl: 'Ecuador',
|
|
806
|
+
de: 'Ecuador',
|
|
807
|
+
},
|
|
808
|
+
},
|
|
809
|
+
{
|
|
810
|
+
name: 'Egypt',
|
|
811
|
+
dial_code: '+20',
|
|
812
|
+
code: 'EG',
|
|
813
|
+
zone: '',
|
|
814
|
+
pattern: '',
|
|
815
|
+
placeholder: '',
|
|
816
|
+
translations: {
|
|
817
|
+
fr: 'Égypte',
|
|
818
|
+
nl: 'Egypte',
|
|
819
|
+
de: 'Ägypten',
|
|
820
|
+
},
|
|
821
|
+
},
|
|
822
|
+
{
|
|
823
|
+
name: 'El Salvador',
|
|
824
|
+
dial_code: '+503',
|
|
825
|
+
code: 'SV',
|
|
826
|
+
zone: '',
|
|
827
|
+
pattern: '',
|
|
828
|
+
placeholder: '',
|
|
829
|
+
translations: {
|
|
830
|
+
fr: 'El Salvador',
|
|
831
|
+
nl: 'El Salvador',
|
|
832
|
+
de: 'El Salvador',
|
|
833
|
+
},
|
|
834
|
+
},
|
|
835
|
+
{
|
|
836
|
+
name: 'Equatorial Guinea',
|
|
837
|
+
dial_code: '+240',
|
|
838
|
+
code: 'GQ',
|
|
839
|
+
zone: '',
|
|
840
|
+
pattern: '',
|
|
841
|
+
placeholder: '',
|
|
842
|
+
translations: {
|
|
843
|
+
fr: 'Guinée équatoriale',
|
|
844
|
+
nl: 'Equatoriaal-Guinea',
|
|
845
|
+
de: 'Äquatorialguinea',
|
|
846
|
+
},
|
|
847
|
+
},
|
|
848
|
+
{
|
|
849
|
+
name: 'Eritrea',
|
|
850
|
+
dial_code: '+291',
|
|
851
|
+
code: 'ER',
|
|
852
|
+
zone: '',
|
|
853
|
+
pattern: '',
|
|
854
|
+
placeholder: '',
|
|
855
|
+
translations: {
|
|
856
|
+
fr: 'Érythrée',
|
|
857
|
+
nl: 'Eritrea',
|
|
858
|
+
de: 'Eritrea',
|
|
859
|
+
},
|
|
860
|
+
},
|
|
861
|
+
{
|
|
862
|
+
name: 'Estonia',
|
|
863
|
+
dial_code: '+372',
|
|
864
|
+
code: 'EE',
|
|
865
|
+
zone: 'EU',
|
|
866
|
+
pattern: 'EE[0-9]{9}',
|
|
867
|
+
placeholder: 'EEXXXXXXXXX',
|
|
868
|
+
translations: {
|
|
869
|
+
fr: 'Estonie',
|
|
870
|
+
nl: 'Estland',
|
|
871
|
+
de: 'Estland',
|
|
872
|
+
},
|
|
873
|
+
},
|
|
874
|
+
{
|
|
875
|
+
name: 'Eswatini',
|
|
876
|
+
dial_code: '+268',
|
|
877
|
+
code: 'SZ',
|
|
878
|
+
zone: '',
|
|
879
|
+
pattern: '',
|
|
880
|
+
placeholder: '',
|
|
881
|
+
translations: {
|
|
882
|
+
fr: 'Eswatini',
|
|
883
|
+
nl: 'Eswatini',
|
|
884
|
+
de: 'Eswatini',
|
|
885
|
+
},
|
|
886
|
+
},
|
|
887
|
+
{
|
|
888
|
+
name: 'Ethiopia',
|
|
889
|
+
dial_code: '+251',
|
|
890
|
+
code: 'ET',
|
|
891
|
+
zone: '',
|
|
892
|
+
pattern: '',
|
|
893
|
+
placeholder: '',
|
|
894
|
+
translations: {
|
|
895
|
+
fr: 'Éthiopie',
|
|
896
|
+
nl: 'Ethiopië',
|
|
897
|
+
de: 'Äthiopien',
|
|
898
|
+
},
|
|
899
|
+
},
|
|
900
|
+
{
|
|
901
|
+
name: 'Falkland Islands (Malvinas)',
|
|
902
|
+
dial_code: '+500',
|
|
903
|
+
code: 'FK',
|
|
904
|
+
zone: '',
|
|
905
|
+
pattern: '',
|
|
906
|
+
placeholder: '',
|
|
907
|
+
translations: {
|
|
908
|
+
fr: 'Îles Falkland (Malvinas)',
|
|
909
|
+
nl: 'Falklandeilanden (Malvinas)',
|
|
910
|
+
de: 'Falklandinseln (Malvinas)',
|
|
911
|
+
},
|
|
912
|
+
},
|
|
913
|
+
{
|
|
914
|
+
name: 'Faroe Islands',
|
|
915
|
+
dial_code: '+298',
|
|
916
|
+
code: 'FO',
|
|
917
|
+
zone: '',
|
|
918
|
+
pattern: '',
|
|
919
|
+
placeholder: '',
|
|
920
|
+
translations: {
|
|
921
|
+
fr: 'Îles Féroé',
|
|
922
|
+
nl: 'Faeröer',
|
|
923
|
+
de: 'Färöer',
|
|
924
|
+
},
|
|
925
|
+
},
|
|
926
|
+
{
|
|
927
|
+
name: 'Fiji',
|
|
928
|
+
dial_code: '+679',
|
|
929
|
+
code: 'FJ',
|
|
930
|
+
zone: '',
|
|
931
|
+
pattern: '',
|
|
932
|
+
placeholder: '',
|
|
933
|
+
translations: {
|
|
934
|
+
fr: 'Fidji',
|
|
935
|
+
nl: 'Fiji',
|
|
936
|
+
de: 'Fidschi',
|
|
937
|
+
},
|
|
938
|
+
},
|
|
939
|
+
{
|
|
940
|
+
name: 'Finland',
|
|
941
|
+
dial_code: '+358',
|
|
942
|
+
code: 'FI',
|
|
943
|
+
zone: 'EU',
|
|
944
|
+
pattern: 'FI[0-9]{8}',
|
|
945
|
+
placeholder: 'FIXXXXXXXX',
|
|
946
|
+
translations: {
|
|
947
|
+
fr: 'Finlande',
|
|
948
|
+
nl: 'Finland',
|
|
949
|
+
de: 'Finnland',
|
|
950
|
+
},
|
|
951
|
+
},
|
|
952
|
+
{
|
|
953
|
+
name: 'France',
|
|
954
|
+
dial_code: '+33',
|
|
955
|
+
code: 'FR',
|
|
956
|
+
zone: 'EU',
|
|
957
|
+
pattern: 'FR[0-9A-Z]{2}[0-9]{9}',
|
|
958
|
+
placeholder: 'FRXXXXXXXXXXX',
|
|
959
|
+
translations: {
|
|
960
|
+
fr: 'France',
|
|
961
|
+
nl: 'Frankrijk',
|
|
962
|
+
de: 'Frankreich',
|
|
963
|
+
},
|
|
964
|
+
},
|
|
965
|
+
{
|
|
966
|
+
name: 'French Guiana',
|
|
967
|
+
dial_code: '+594',
|
|
968
|
+
code: 'GF',
|
|
969
|
+
zone: '',
|
|
970
|
+
pattern: '',
|
|
971
|
+
placeholder: '',
|
|
972
|
+
translations: {
|
|
973
|
+
fr: 'Guyane française',
|
|
974
|
+
nl: 'Frans-Guyana',
|
|
975
|
+
de: 'Französisch-Guayana',
|
|
976
|
+
},
|
|
977
|
+
},
|
|
978
|
+
{
|
|
979
|
+
name: 'French Polynesia',
|
|
980
|
+
dial_code: '+689',
|
|
981
|
+
code: 'PF',
|
|
982
|
+
zone: '',
|
|
983
|
+
pattern: '',
|
|
984
|
+
placeholder: '',
|
|
985
|
+
translations: {
|
|
986
|
+
fr: 'Polynésie française',
|
|
987
|
+
nl: 'Frans-Polynesië',
|
|
988
|
+
de: 'Französisch-Polynesien',
|
|
989
|
+
},
|
|
990
|
+
},
|
|
991
|
+
{
|
|
992
|
+
name: 'Gabon',
|
|
993
|
+
dial_code: '+241',
|
|
994
|
+
code: 'GA',
|
|
995
|
+
zone: '',
|
|
996
|
+
pattern: '',
|
|
997
|
+
placeholder: '',
|
|
998
|
+
translations: {
|
|
999
|
+
fr: 'Gabon',
|
|
1000
|
+
nl: 'Gabon',
|
|
1001
|
+
de: 'Gabun',
|
|
1002
|
+
},
|
|
1003
|
+
},
|
|
1004
|
+
{
|
|
1005
|
+
name: 'Gambia',
|
|
1006
|
+
dial_code: '+220',
|
|
1007
|
+
code: 'GM',
|
|
1008
|
+
zone: '',
|
|
1009
|
+
pattern: '',
|
|
1010
|
+
placeholder: '',
|
|
1011
|
+
translations: {
|
|
1012
|
+
fr: 'Gambie',
|
|
1013
|
+
nl: 'Gambia',
|
|
1014
|
+
de: 'Gambia',
|
|
1015
|
+
},
|
|
1016
|
+
},
|
|
1017
|
+
{
|
|
1018
|
+
name: 'Georgia',
|
|
1019
|
+
dial_code: '+995',
|
|
1020
|
+
code: 'GE',
|
|
1021
|
+
zone: '',
|
|
1022
|
+
pattern: '',
|
|
1023
|
+
placeholder: '',
|
|
1024
|
+
translations: {
|
|
1025
|
+
fr: 'Géorgie',
|
|
1026
|
+
nl: 'Georgië',
|
|
1027
|
+
de: 'Georgien',
|
|
1028
|
+
},
|
|
1029
|
+
},
|
|
1030
|
+
{
|
|
1031
|
+
name: 'Germany',
|
|
1032
|
+
dial_code: '+49',
|
|
1033
|
+
code: 'DE',
|
|
1034
|
+
zone: 'EU',
|
|
1035
|
+
pattern: 'DE[0-9]{9}',
|
|
1036
|
+
placeholder: 'DEXXXXXXXXX',
|
|
1037
|
+
translations: {
|
|
1038
|
+
fr: 'Allemagne',
|
|
1039
|
+
nl: 'Duitsland',
|
|
1040
|
+
de: 'Deutschland',
|
|
1041
|
+
},
|
|
1042
|
+
},
|
|
1043
|
+
{
|
|
1044
|
+
name: 'Ghana',
|
|
1045
|
+
dial_code: '+233',
|
|
1046
|
+
code: 'GH',
|
|
1047
|
+
zone: '',
|
|
1048
|
+
pattern: '',
|
|
1049
|
+
placeholder: '',
|
|
1050
|
+
translations: {
|
|
1051
|
+
fr: 'Ghana',
|
|
1052
|
+
nl: 'Ghana',
|
|
1053
|
+
de: 'Ghana',
|
|
1054
|
+
},
|
|
1055
|
+
},
|
|
1056
|
+
{
|
|
1057
|
+
name: 'Gibraltar',
|
|
1058
|
+
dial_code: '+350',
|
|
1059
|
+
code: 'GI',
|
|
1060
|
+
zone: '',
|
|
1061
|
+
pattern: '',
|
|
1062
|
+
placeholder: '',
|
|
1063
|
+
translations: {
|
|
1064
|
+
fr: 'Gibraltar',
|
|
1065
|
+
nl: 'Gibraltar',
|
|
1066
|
+
de: 'Gibraltar',
|
|
1067
|
+
},
|
|
1068
|
+
},
|
|
1069
|
+
{
|
|
1070
|
+
name: 'Greece',
|
|
1071
|
+
dial_code: '+30',
|
|
1072
|
+
code: 'GR',
|
|
1073
|
+
zone: 'EU',
|
|
1074
|
+
pattern: '(EL|GR)[0-9]{9}',
|
|
1075
|
+
placeholder: 'GRXXXXXXXXX | ELXXXXXXXXX',
|
|
1076
|
+
translations: {
|
|
1077
|
+
fr: 'Grèce',
|
|
1078
|
+
nl: 'Griekenland',
|
|
1079
|
+
de: 'Griechenland',
|
|
1080
|
+
},
|
|
1081
|
+
},
|
|
1082
|
+
{
|
|
1083
|
+
name: 'Greenland',
|
|
1084
|
+
dial_code: '+299',
|
|
1085
|
+
code: 'GL',
|
|
1086
|
+
zone: '',
|
|
1087
|
+
pattern: '',
|
|
1088
|
+
placeholder: '',
|
|
1089
|
+
translations: {
|
|
1090
|
+
fr: 'Groenland',
|
|
1091
|
+
nl: 'Groenland',
|
|
1092
|
+
de: 'Grönland',
|
|
1093
|
+
},
|
|
1094
|
+
},
|
|
1095
|
+
{
|
|
1096
|
+
name: 'Grenada',
|
|
1097
|
+
dial_code: '+1473',
|
|
1098
|
+
code: 'GD',
|
|
1099
|
+
zone: '',
|
|
1100
|
+
pattern: '',
|
|
1101
|
+
placeholder: '',
|
|
1102
|
+
translations: {
|
|
1103
|
+
fr: 'Grenade',
|
|
1104
|
+
nl: 'Grenada',
|
|
1105
|
+
de: 'Grenada',
|
|
1106
|
+
},
|
|
1107
|
+
},
|
|
1108
|
+
{
|
|
1109
|
+
name: 'Guadeloupe',
|
|
1110
|
+
dial_code: '+590',
|
|
1111
|
+
code: 'GP',
|
|
1112
|
+
zone: '',
|
|
1113
|
+
pattern: '',
|
|
1114
|
+
placeholder: '',
|
|
1115
|
+
translations: {
|
|
1116
|
+
fr: 'Guadeloupe',
|
|
1117
|
+
nl: 'Guadeloupe',
|
|
1118
|
+
de: 'Guadeloupe',
|
|
1119
|
+
},
|
|
1120
|
+
},
|
|
1121
|
+
{
|
|
1122
|
+
name: 'Guam',
|
|
1123
|
+
dial_code: '+1671',
|
|
1124
|
+
code: 'GU',
|
|
1125
|
+
zone: '',
|
|
1126
|
+
pattern: '',
|
|
1127
|
+
placeholder: '',
|
|
1128
|
+
translations: {
|
|
1129
|
+
fr: 'Guam',
|
|
1130
|
+
nl: 'Guam',
|
|
1131
|
+
de: 'Guam',
|
|
1132
|
+
},
|
|
1133
|
+
},
|
|
1134
|
+
{
|
|
1135
|
+
name: 'Guatemala',
|
|
1136
|
+
dial_code: '+502',
|
|
1137
|
+
code: 'GT',
|
|
1138
|
+
zone: '',
|
|
1139
|
+
pattern: '',
|
|
1140
|
+
placeholder: '',
|
|
1141
|
+
translations: {
|
|
1142
|
+
fr: 'Guatemala',
|
|
1143
|
+
nl: 'Guatemala',
|
|
1144
|
+
de: 'Guatemala',
|
|
1145
|
+
},
|
|
1146
|
+
},
|
|
1147
|
+
{
|
|
1148
|
+
name: 'Guernsey',
|
|
1149
|
+
dial_code: '+44',
|
|
1150
|
+
code: 'GG',
|
|
1151
|
+
zone: '',
|
|
1152
|
+
pattern: '',
|
|
1153
|
+
placeholder: '',
|
|
1154
|
+
translations: {
|
|
1155
|
+
fr: 'Guernesey',
|
|
1156
|
+
nl: 'Guernsey',
|
|
1157
|
+
de: 'Guernsey',
|
|
1158
|
+
},
|
|
1159
|
+
},
|
|
1160
|
+
{
|
|
1161
|
+
name: 'Guinea',
|
|
1162
|
+
dial_code: '+224',
|
|
1163
|
+
code: 'GN',
|
|
1164
|
+
zone: '',
|
|
1165
|
+
pattern: '',
|
|
1166
|
+
placeholder: '',
|
|
1167
|
+
translations: {
|
|
1168
|
+
fr: 'Guinée',
|
|
1169
|
+
nl: 'Guinee',
|
|
1170
|
+
de: 'Guinea',
|
|
1171
|
+
},
|
|
1172
|
+
},
|
|
1173
|
+
{
|
|
1174
|
+
name: 'Guinea-Bissau',
|
|
1175
|
+
dial_code: '+245',
|
|
1176
|
+
code: 'GW',
|
|
1177
|
+
zone: '',
|
|
1178
|
+
pattern: '',
|
|
1179
|
+
placeholder: '',
|
|
1180
|
+
translations: {
|
|
1181
|
+
fr: 'Guinée-Bissau',
|
|
1182
|
+
nl: 'Guinee-Bissau',
|
|
1183
|
+
de: 'Guinea-Bissau',
|
|
1184
|
+
},
|
|
1185
|
+
},
|
|
1186
|
+
{
|
|
1187
|
+
name: 'Guyana',
|
|
1188
|
+
dial_code: '+592',
|
|
1189
|
+
code: 'GY',
|
|
1190
|
+
zone: '',
|
|
1191
|
+
pattern: '',
|
|
1192
|
+
placeholder: '',
|
|
1193
|
+
translations: {
|
|
1194
|
+
fr: 'Guyana',
|
|
1195
|
+
nl: 'Guyana',
|
|
1196
|
+
de: 'Guyana',
|
|
1197
|
+
},
|
|
1198
|
+
},
|
|
1199
|
+
{
|
|
1200
|
+
name: 'Haiti',
|
|
1201
|
+
dial_code: '+509',
|
|
1202
|
+
code: 'HT',
|
|
1203
|
+
zone: '',
|
|
1204
|
+
pattern: '',
|
|
1205
|
+
placeholder: '',
|
|
1206
|
+
translations: {
|
|
1207
|
+
fr: 'Haïti',
|
|
1208
|
+
nl: 'Haïti',
|
|
1209
|
+
de: 'Haiti',
|
|
1210
|
+
},
|
|
1211
|
+
},
|
|
1212
|
+
{
|
|
1213
|
+
name: 'Honduras',
|
|
1214
|
+
dial_code: '+504',
|
|
1215
|
+
code: 'HN',
|
|
1216
|
+
zone: '',
|
|
1217
|
+
pattern: '',
|
|
1218
|
+
placeholder: '',
|
|
1219
|
+
translations: {
|
|
1220
|
+
fr: 'Honduras',
|
|
1221
|
+
nl: 'Honduras',
|
|
1222
|
+
de: 'Honduras',
|
|
1223
|
+
},
|
|
1224
|
+
},
|
|
1225
|
+
{
|
|
1226
|
+
name: 'Hong Kong',
|
|
1227
|
+
dial_code: '+852',
|
|
1228
|
+
code: 'HK',
|
|
1229
|
+
zone: '',
|
|
1230
|
+
pattern: '',
|
|
1231
|
+
placeholder: '',
|
|
1232
|
+
translations: {
|
|
1233
|
+
fr: 'Hong Kong',
|
|
1234
|
+
nl: 'Hongkong',
|
|
1235
|
+
de: 'Hongkong',
|
|
1236
|
+
},
|
|
1237
|
+
},
|
|
1238
|
+
{
|
|
1239
|
+
name: 'Hungary',
|
|
1240
|
+
dial_code: '+36',
|
|
1241
|
+
code: 'HU',
|
|
1242
|
+
zone: 'EU',
|
|
1243
|
+
pattern: 'HU[0-9]{8}',
|
|
1244
|
+
placeholder: 'HUXXXXXXXX',
|
|
1245
|
+
translations: {
|
|
1246
|
+
fr: 'Hongrie',
|
|
1247
|
+
nl: 'Hongarije',
|
|
1248
|
+
de: 'Ungarn',
|
|
1249
|
+
},
|
|
1250
|
+
},
|
|
1251
|
+
{
|
|
1252
|
+
name: 'Iceland',
|
|
1253
|
+
dial_code: '+354',
|
|
1254
|
+
code: 'IS',
|
|
1255
|
+
zone: '',
|
|
1256
|
+
pattern: '',
|
|
1257
|
+
placeholder: '',
|
|
1258
|
+
translations: {
|
|
1259
|
+
fr: 'Islande',
|
|
1260
|
+
nl: 'IJsland',
|
|
1261
|
+
de: 'Island',
|
|
1262
|
+
},
|
|
1263
|
+
},
|
|
1264
|
+
{
|
|
1265
|
+
name: 'India',
|
|
1266
|
+
dial_code: '+91',
|
|
1267
|
+
code: 'IN',
|
|
1268
|
+
zone: '',
|
|
1269
|
+
pattern: '',
|
|
1270
|
+
placeholder: '',
|
|
1271
|
+
translations: {
|
|
1272
|
+
fr: 'Inde',
|
|
1273
|
+
nl: 'India',
|
|
1274
|
+
de: 'Indien',
|
|
1275
|
+
},
|
|
1276
|
+
},
|
|
1277
|
+
{
|
|
1278
|
+
name: 'Indonesia',
|
|
1279
|
+
dial_code: '+62',
|
|
1280
|
+
code: 'ID',
|
|
1281
|
+
zone: '',
|
|
1282
|
+
pattern: '',
|
|
1283
|
+
placeholder: '',
|
|
1284
|
+
translations: {
|
|
1285
|
+
fr: 'Indonésie',
|
|
1286
|
+
nl: 'Indonesië',
|
|
1287
|
+
de: 'Indonesien',
|
|
1288
|
+
},
|
|
1289
|
+
},
|
|
1290
|
+
{
|
|
1291
|
+
name: 'Iran',
|
|
1292
|
+
dial_code: '+98',
|
|
1293
|
+
code: 'IR',
|
|
1294
|
+
zone: '',
|
|
1295
|
+
pattern: '',
|
|
1296
|
+
placeholder: '',
|
|
1297
|
+
translations: {
|
|
1298
|
+
fr: 'Iran',
|
|
1299
|
+
nl: 'Iran',
|
|
1300
|
+
de: 'Iran',
|
|
1301
|
+
},
|
|
1302
|
+
},
|
|
1303
|
+
{
|
|
1304
|
+
name: 'Iraq',
|
|
1305
|
+
dial_code: '+964',
|
|
1306
|
+
code: 'IQ',
|
|
1307
|
+
zone: '',
|
|
1308
|
+
pattern: '',
|
|
1309
|
+
placeholder: '',
|
|
1310
|
+
translations: {
|
|
1311
|
+
fr: 'Irak',
|
|
1312
|
+
nl: 'Irak',
|
|
1313
|
+
de: 'Irak',
|
|
1314
|
+
},
|
|
1315
|
+
},
|
|
1316
|
+
{
|
|
1317
|
+
name: 'Ireland',
|
|
1318
|
+
dial_code: '+353',
|
|
1319
|
+
code: 'IE',
|
|
1320
|
+
zone: 'EU',
|
|
1321
|
+
pattern: 'IE[0-9]S[0-9]{5}L',
|
|
1322
|
+
placeholder: 'IEXSXXXXXL',
|
|
1323
|
+
translations: {
|
|
1324
|
+
fr: 'Irlande',
|
|
1325
|
+
nl: 'Ierland',
|
|
1326
|
+
de: 'Irland',
|
|
1327
|
+
},
|
|
1328
|
+
},
|
|
1329
|
+
{
|
|
1330
|
+
name: 'Isle of Man',
|
|
1331
|
+
dial_code: '+44',
|
|
1332
|
+
code: 'IM',
|
|
1333
|
+
zone: '',
|
|
1334
|
+
pattern: '',
|
|
1335
|
+
placeholder: '',
|
|
1336
|
+
translations: {
|
|
1337
|
+
fr: 'Île de Man',
|
|
1338
|
+
nl: 'Isle of Man',
|
|
1339
|
+
de: 'Insel Man',
|
|
1340
|
+
},
|
|
1341
|
+
},
|
|
1342
|
+
{
|
|
1343
|
+
name: 'Israel',
|
|
1344
|
+
dial_code: '+972',
|
|
1345
|
+
code: 'IL',
|
|
1346
|
+
zone: '',
|
|
1347
|
+
pattern: '',
|
|
1348
|
+
placeholder: '',
|
|
1349
|
+
translations: {
|
|
1350
|
+
fr: 'Israël',
|
|
1351
|
+
nl: 'Israël',
|
|
1352
|
+
de: 'Israel',
|
|
1353
|
+
},
|
|
1354
|
+
},
|
|
1355
|
+
{
|
|
1356
|
+
name: 'Italy',
|
|
1357
|
+
dial_code: '+39',
|
|
1358
|
+
code: 'IT',
|
|
1359
|
+
zone: 'EU',
|
|
1360
|
+
pattern: 'IT[0-9]{11}',
|
|
1361
|
+
placeholder: 'ITXXXXXXXXXXX',
|
|
1362
|
+
translations: {
|
|
1363
|
+
fr: 'Italie',
|
|
1364
|
+
nl: 'Italië',
|
|
1365
|
+
de: 'Italien',
|
|
1366
|
+
},
|
|
1367
|
+
},
|
|
1368
|
+
{
|
|
1369
|
+
name: 'Jamaica',
|
|
1370
|
+
dial_code: '+1876',
|
|
1371
|
+
code: 'JM',
|
|
1372
|
+
zone: '',
|
|
1373
|
+
pattern: '',
|
|
1374
|
+
placeholder: '',
|
|
1375
|
+
translations: {
|
|
1376
|
+
fr: 'Jamaïque',
|
|
1377
|
+
nl: 'Jamaica',
|
|
1378
|
+
de: 'Jamaika',
|
|
1379
|
+
},
|
|
1380
|
+
},
|
|
1381
|
+
{
|
|
1382
|
+
name: 'Japan',
|
|
1383
|
+
dial_code: '+81',
|
|
1384
|
+
code: 'JP',
|
|
1385
|
+
zone: '',
|
|
1386
|
+
pattern: '',
|
|
1387
|
+
placeholder: '',
|
|
1388
|
+
translations: {
|
|
1389
|
+
fr: 'Japon',
|
|
1390
|
+
nl: 'Japan',
|
|
1391
|
+
de: 'Japan',
|
|
1392
|
+
},
|
|
1393
|
+
},
|
|
1394
|
+
{
|
|
1395
|
+
name: 'Jersey',
|
|
1396
|
+
dial_code: '+44',
|
|
1397
|
+
code: 'JE',
|
|
1398
|
+
zone: '',
|
|
1399
|
+
pattern: '',
|
|
1400
|
+
placeholder: '',
|
|
1401
|
+
translations: {
|
|
1402
|
+
fr: 'Jersey',
|
|
1403
|
+
nl: 'Jersey',
|
|
1404
|
+
de: 'Jersey',
|
|
1405
|
+
},
|
|
1406
|
+
},
|
|
1407
|
+
{
|
|
1408
|
+
name: 'Jordan',
|
|
1409
|
+
dial_code: '+962',
|
|
1410
|
+
code: 'JO',
|
|
1411
|
+
zone: '',
|
|
1412
|
+
pattern: '',
|
|
1413
|
+
placeholder: '',
|
|
1414
|
+
translations: {
|
|
1415
|
+
fr: 'Jordanie',
|
|
1416
|
+
nl: 'Jordanië',
|
|
1417
|
+
de: 'Jordanien',
|
|
1418
|
+
},
|
|
1419
|
+
},
|
|
1420
|
+
{
|
|
1421
|
+
name: 'Kazakhstan',
|
|
1422
|
+
dial_code: '+7',
|
|
1423
|
+
code: 'KZ',
|
|
1424
|
+
zone: '',
|
|
1425
|
+
pattern: '',
|
|
1426
|
+
placeholder: '',
|
|
1427
|
+
translations: {
|
|
1428
|
+
fr: 'Kazakhstan',
|
|
1429
|
+
nl: 'Kazachstan',
|
|
1430
|
+
de: 'Kasachstan',
|
|
1431
|
+
},
|
|
1432
|
+
},
|
|
1433
|
+
{
|
|
1434
|
+
name: 'Kenya',
|
|
1435
|
+
dial_code: '+254',
|
|
1436
|
+
code: 'KE',
|
|
1437
|
+
zone: '',
|
|
1438
|
+
pattern: '',
|
|
1439
|
+
placeholder: '',
|
|
1440
|
+
translations: {
|
|
1441
|
+
fr: 'Kenya',
|
|
1442
|
+
nl: 'Kenia',
|
|
1443
|
+
de: 'Kenia',
|
|
1444
|
+
},
|
|
1445
|
+
},
|
|
1446
|
+
{
|
|
1447
|
+
name: 'Kiribati',
|
|
1448
|
+
dial_code: '+686',
|
|
1449
|
+
code: 'KI',
|
|
1450
|
+
zone: '',
|
|
1451
|
+
pattern: '',
|
|
1452
|
+
placeholder: '',
|
|
1453
|
+
translations: {
|
|
1454
|
+
fr: 'Kiribati',
|
|
1455
|
+
nl: 'Kiribati',
|
|
1456
|
+
de: 'Kiribati',
|
|
1457
|
+
},
|
|
1458
|
+
},
|
|
1459
|
+
{
|
|
1460
|
+
name: 'Kosovo',
|
|
1461
|
+
dial_code: '+383',
|
|
1462
|
+
code: 'XK',
|
|
1463
|
+
zone: '',
|
|
1464
|
+
pattern: '',
|
|
1465
|
+
placeholder: '',
|
|
1466
|
+
translations: {
|
|
1467
|
+
fr: 'Kosovo',
|
|
1468
|
+
nl: 'Kosovo',
|
|
1469
|
+
de: 'Kosovo',
|
|
1470
|
+
},
|
|
1471
|
+
},
|
|
1472
|
+
{
|
|
1473
|
+
name: 'Kuwait',
|
|
1474
|
+
dial_code: '+965',
|
|
1475
|
+
code: 'KW',
|
|
1476
|
+
zone: '',
|
|
1477
|
+
pattern: '',
|
|
1478
|
+
placeholder: '',
|
|
1479
|
+
translations: {
|
|
1480
|
+
fr: 'Koweït',
|
|
1481
|
+
nl: 'Koeweit',
|
|
1482
|
+
de: 'Kuwait',
|
|
1483
|
+
},
|
|
1484
|
+
},
|
|
1485
|
+
{
|
|
1486
|
+
name: 'Kyrgyzstan',
|
|
1487
|
+
dial_code: '+996',
|
|
1488
|
+
code: 'KG',
|
|
1489
|
+
zone: '',
|
|
1490
|
+
pattern: '',
|
|
1491
|
+
placeholder: '',
|
|
1492
|
+
translations: {
|
|
1493
|
+
fr: 'Kirghizistan',
|
|
1494
|
+
nl: 'Kirgizië',
|
|
1495
|
+
de: 'Kirgisistan',
|
|
1496
|
+
},
|
|
1497
|
+
},
|
|
1498
|
+
{
|
|
1499
|
+
name: 'Laos',
|
|
1500
|
+
dial_code: '+856',
|
|
1501
|
+
code: 'LA',
|
|
1502
|
+
zone: '',
|
|
1503
|
+
pattern: '',
|
|
1504
|
+
placeholder: '',
|
|
1505
|
+
translations: {
|
|
1506
|
+
fr: 'Laos',
|
|
1507
|
+
nl: 'Laos',
|
|
1508
|
+
de: 'Laos',
|
|
1509
|
+
},
|
|
1510
|
+
},
|
|
1511
|
+
{
|
|
1512
|
+
name: 'Latvia',
|
|
1513
|
+
dial_code: '+371',
|
|
1514
|
+
code: 'LV',
|
|
1515
|
+
zone: 'EU',
|
|
1516
|
+
pattern: 'LV[0-9]{11}',
|
|
1517
|
+
placeholder: 'LVXXXXXXXXXXX',
|
|
1518
|
+
translations: {
|
|
1519
|
+
fr: 'Lettonie',
|
|
1520
|
+
nl: 'Letland',
|
|
1521
|
+
de: 'Lettland',
|
|
1522
|
+
},
|
|
1523
|
+
},
|
|
1524
|
+
{
|
|
1525
|
+
name: 'Lebanon',
|
|
1526
|
+
dial_code: '+961',
|
|
1527
|
+
code: 'LB',
|
|
1528
|
+
zone: '',
|
|
1529
|
+
pattern: '',
|
|
1530
|
+
placeholder: '',
|
|
1531
|
+
translations: {
|
|
1532
|
+
fr: 'Liban',
|
|
1533
|
+
nl: 'Libanon',
|
|
1534
|
+
de: 'Libanon',
|
|
1535
|
+
},
|
|
1536
|
+
},
|
|
1537
|
+
{
|
|
1538
|
+
name: 'Lesotho',
|
|
1539
|
+
dial_code: '+266',
|
|
1540
|
+
code: 'LS',
|
|
1541
|
+
zone: '',
|
|
1542
|
+
pattern: '',
|
|
1543
|
+
placeholder: '',
|
|
1544
|
+
translations: {
|
|
1545
|
+
fr: 'Lesotho',
|
|
1546
|
+
nl: 'Lesotho',
|
|
1547
|
+
de: 'Lesotho',
|
|
1548
|
+
},
|
|
1549
|
+
},
|
|
1550
|
+
{
|
|
1551
|
+
name: 'Liberia',
|
|
1552
|
+
dial_code: '+231',
|
|
1553
|
+
code: 'LR',
|
|
1554
|
+
zone: '',
|
|
1555
|
+
pattern: '',
|
|
1556
|
+
placeholder: '',
|
|
1557
|
+
translations: {
|
|
1558
|
+
fr: 'Libéria',
|
|
1559
|
+
nl: 'Liberia',
|
|
1560
|
+
de: 'Liberia',
|
|
1561
|
+
},
|
|
1562
|
+
},
|
|
1563
|
+
{
|
|
1564
|
+
name: 'Libya',
|
|
1565
|
+
dial_code: '+218',
|
|
1566
|
+
code: 'LY',
|
|
1567
|
+
zone: '',
|
|
1568
|
+
pattern: '',
|
|
1569
|
+
placeholder: '',
|
|
1570
|
+
translations: {
|
|
1571
|
+
fr: 'Libye',
|
|
1572
|
+
nl: 'Libië',
|
|
1573
|
+
de: 'Libyen',
|
|
1574
|
+
},
|
|
1575
|
+
},
|
|
1576
|
+
{
|
|
1577
|
+
name: 'Liechtenstein',
|
|
1578
|
+
dial_code: '+423',
|
|
1579
|
+
code: 'LI',
|
|
1580
|
+
zone: '',
|
|
1581
|
+
pattern: '',
|
|
1582
|
+
placeholder: '',
|
|
1583
|
+
translations: {
|
|
1584
|
+
fr: 'Liechtenstein',
|
|
1585
|
+
nl: 'Liechtenstein',
|
|
1586
|
+
de: 'Liechtenstein',
|
|
1587
|
+
},
|
|
1588
|
+
},
|
|
1589
|
+
{
|
|
1590
|
+
name: 'Lithuania',
|
|
1591
|
+
dial_code: '+370',
|
|
1592
|
+
code: 'LT',
|
|
1593
|
+
zone: 'EU',
|
|
1594
|
+
pattern: 'LT([0-9]{9}|[0-9]{12})',
|
|
1595
|
+
placeholder: 'LTXXXXXXXXXXXX',
|
|
1596
|
+
translations: {
|
|
1597
|
+
fr: 'Lituanie',
|
|
1598
|
+
nl: 'Litouwen',
|
|
1599
|
+
de: 'Litauen',
|
|
1600
|
+
},
|
|
1601
|
+
},
|
|
1602
|
+
{
|
|
1603
|
+
name: 'Luxembourg',
|
|
1604
|
+
dial_code: '+352',
|
|
1605
|
+
code: 'LU',
|
|
1606
|
+
zone: 'LU',
|
|
1607
|
+
pattern: 'LU[0-9]{8}',
|
|
1608
|
+
placeholder: 'LUXXXXXXXX',
|
|
1609
|
+
translations: {
|
|
1610
|
+
fr: 'Luxembourg',
|
|
1611
|
+
nl: 'Luxemburg',
|
|
1612
|
+
de: 'Luxemburg',
|
|
1613
|
+
},
|
|
1614
|
+
},
|
|
1615
|
+
{
|
|
1616
|
+
name: 'Macau',
|
|
1617
|
+
dial_code: '+853',
|
|
1618
|
+
code: 'MO',
|
|
1619
|
+
zone: '',
|
|
1620
|
+
pattern: '',
|
|
1621
|
+
placeholder: '',
|
|
1622
|
+
translations: {
|
|
1623
|
+
fr: 'Macao',
|
|
1624
|
+
nl: 'Macao',
|
|
1625
|
+
de: 'Macao',
|
|
1626
|
+
},
|
|
1627
|
+
},
|
|
1628
|
+
{
|
|
1629
|
+
name: 'Madagascar',
|
|
1630
|
+
dial_code: '+261',
|
|
1631
|
+
code: 'MG',
|
|
1632
|
+
zone: '',
|
|
1633
|
+
pattern: '',
|
|
1634
|
+
placeholder: '',
|
|
1635
|
+
translations: {
|
|
1636
|
+
fr: 'Madagascar',
|
|
1637
|
+
nl: 'Madagaskar',
|
|
1638
|
+
de: 'Madagaskar',
|
|
1639
|
+
},
|
|
1640
|
+
},
|
|
1641
|
+
{
|
|
1642
|
+
name: 'Malawi',
|
|
1643
|
+
dial_code: '+265',
|
|
1644
|
+
code: 'MW',
|
|
1645
|
+
zone: '',
|
|
1646
|
+
pattern: '',
|
|
1647
|
+
placeholder: '',
|
|
1648
|
+
translations: {
|
|
1649
|
+
fr: 'Malawi',
|
|
1650
|
+
nl: 'Malawi',
|
|
1651
|
+
de: 'Malawi',
|
|
1652
|
+
},
|
|
1653
|
+
},
|
|
1654
|
+
{
|
|
1655
|
+
name: 'Malaysia',
|
|
1656
|
+
dial_code: '+60',
|
|
1657
|
+
code: 'MY',
|
|
1658
|
+
zone: '',
|
|
1659
|
+
pattern: '',
|
|
1660
|
+
placeholder: '',
|
|
1661
|
+
translations: {
|
|
1662
|
+
fr: 'Malaisie',
|
|
1663
|
+
nl: 'Maleisië',
|
|
1664
|
+
de: 'Malaysia',
|
|
1665
|
+
},
|
|
1666
|
+
},
|
|
1667
|
+
{
|
|
1668
|
+
name: 'Maldives',
|
|
1669
|
+
dial_code: '+960',
|
|
1670
|
+
code: 'MV',
|
|
1671
|
+
zone: '',
|
|
1672
|
+
pattern: '',
|
|
1673
|
+
placeholder: '',
|
|
1674
|
+
translations: {
|
|
1675
|
+
fr: 'Maldives',
|
|
1676
|
+
nl: 'Maldiven',
|
|
1677
|
+
de: 'Malediven',
|
|
1678
|
+
},
|
|
1679
|
+
},
|
|
1680
|
+
{
|
|
1681
|
+
name: 'Mali',
|
|
1682
|
+
dial_code: '+223',
|
|
1683
|
+
code: 'ML',
|
|
1684
|
+
zone: '',
|
|
1685
|
+
pattern: '',
|
|
1686
|
+
placeholder: '',
|
|
1687
|
+
translations: {
|
|
1688
|
+
fr: 'Mali',
|
|
1689
|
+
nl: 'Mali',
|
|
1690
|
+
de: 'Mali',
|
|
1691
|
+
},
|
|
1692
|
+
},
|
|
1693
|
+
{
|
|
1694
|
+
name: 'Malta',
|
|
1695
|
+
dial_code: '+356',
|
|
1696
|
+
code: 'MT',
|
|
1697
|
+
zone: 'EU',
|
|
1698
|
+
pattern: 'MT[0-9]{8}',
|
|
1699
|
+
placeholder: 'MTXXXXXXXX',
|
|
1700
|
+
translations: {
|
|
1701
|
+
fr: 'Malte',
|
|
1702
|
+
nl: 'Malta',
|
|
1703
|
+
de: 'Malta',
|
|
1704
|
+
},
|
|
1705
|
+
},
|
|
1706
|
+
{
|
|
1707
|
+
name: 'Marshall Islands',
|
|
1708
|
+
dial_code: '+692',
|
|
1709
|
+
code: 'MH',
|
|
1710
|
+
zone: '',
|
|
1711
|
+
pattern: '',
|
|
1712
|
+
placeholder: '',
|
|
1713
|
+
translations: {
|
|
1714
|
+
fr: 'Îles Marshall',
|
|
1715
|
+
nl: 'Marshalleilanden',
|
|
1716
|
+
de: 'Marshallinseln',
|
|
1717
|
+
},
|
|
1718
|
+
},
|
|
1719
|
+
{
|
|
1720
|
+
name: 'Martinique',
|
|
1721
|
+
dial_code: '+596',
|
|
1722
|
+
code: 'MQ',
|
|
1723
|
+
zone: '',
|
|
1724
|
+
pattern: '',
|
|
1725
|
+
placeholder: '',
|
|
1726
|
+
translations: {
|
|
1727
|
+
fr: 'Martinique',
|
|
1728
|
+
nl: 'Martinique',
|
|
1729
|
+
de: 'Martinique',
|
|
1730
|
+
},
|
|
1731
|
+
},
|
|
1732
|
+
{
|
|
1733
|
+
name: 'Mauritania',
|
|
1734
|
+
dial_code: '+222',
|
|
1735
|
+
code: 'MR',
|
|
1736
|
+
zone: '',
|
|
1737
|
+
pattern: '',
|
|
1738
|
+
placeholder: '',
|
|
1739
|
+
translations: {
|
|
1740
|
+
fr: 'Mauritanie',
|
|
1741
|
+
nl: 'Mauritanië',
|
|
1742
|
+
de: 'Mauretanien',
|
|
1743
|
+
},
|
|
1744
|
+
},
|
|
1745
|
+
{
|
|
1746
|
+
name: 'Mauritius',
|
|
1747
|
+
dial_code: '+230',
|
|
1748
|
+
code: 'MU',
|
|
1749
|
+
zone: '',
|
|
1750
|
+
pattern: '',
|
|
1751
|
+
placeholder: '',
|
|
1752
|
+
translations: {
|
|
1753
|
+
fr: 'Maurice',
|
|
1754
|
+
nl: 'Mauritius',
|
|
1755
|
+
de: 'Mauritius',
|
|
1756
|
+
},
|
|
1757
|
+
},
|
|
1758
|
+
{
|
|
1759
|
+
name: 'Mayotte',
|
|
1760
|
+
dial_code: '+262',
|
|
1761
|
+
code: 'YT',
|
|
1762
|
+
zone: '',
|
|
1763
|
+
pattern: '',
|
|
1764
|
+
placeholder: '',
|
|
1765
|
+
translations: {
|
|
1766
|
+
fr: 'Mayotte',
|
|
1767
|
+
nl: 'Mayotte',
|
|
1768
|
+
de: 'Mayotte',
|
|
1769
|
+
},
|
|
1770
|
+
},
|
|
1771
|
+
{
|
|
1772
|
+
name: 'Mexico',
|
|
1773
|
+
dial_code: '+52',
|
|
1774
|
+
code: 'MX',
|
|
1775
|
+
zone: '',
|
|
1776
|
+
pattern: '',
|
|
1777
|
+
placeholder: '',
|
|
1778
|
+
translations: {
|
|
1779
|
+
fr: 'Mexique',
|
|
1780
|
+
nl: 'Mexico',
|
|
1781
|
+
de: 'Mexiko',
|
|
1782
|
+
},
|
|
1783
|
+
},
|
|
1784
|
+
{
|
|
1785
|
+
name: 'Micronesia',
|
|
1786
|
+
dial_code: '+691',
|
|
1787
|
+
code: 'FM',
|
|
1788
|
+
zone: '',
|
|
1789
|
+
pattern: '',
|
|
1790
|
+
placeholder: '',
|
|
1791
|
+
translations: {
|
|
1792
|
+
fr: 'Micronésie',
|
|
1793
|
+
nl: 'Micronesië',
|
|
1794
|
+
de: 'Mikronesien',
|
|
1795
|
+
},
|
|
1796
|
+
},
|
|
1797
|
+
{
|
|
1798
|
+
name: 'Moldova',
|
|
1799
|
+
dial_code: '+373',
|
|
1800
|
+
code: 'MD',
|
|
1801
|
+
zone: '',
|
|
1802
|
+
pattern: '',
|
|
1803
|
+
placeholder: '',
|
|
1804
|
+
translations: {
|
|
1805
|
+
fr: 'Moldavie',
|
|
1806
|
+
nl: 'Moldavië',
|
|
1807
|
+
de: 'Republik Moldau',
|
|
1808
|
+
},
|
|
1809
|
+
},
|
|
1810
|
+
{
|
|
1811
|
+
name: 'Monaco',
|
|
1812
|
+
dial_code: '+377',
|
|
1813
|
+
code: 'MC',
|
|
1814
|
+
zone: '',
|
|
1815
|
+
pattern: '',
|
|
1816
|
+
placeholder: '',
|
|
1817
|
+
translations: {
|
|
1818
|
+
fr: 'Monaco',
|
|
1819
|
+
nl: 'Monaco',
|
|
1820
|
+
de: 'Monaco',
|
|
1821
|
+
},
|
|
1822
|
+
},
|
|
1823
|
+
{
|
|
1824
|
+
name: 'Mongolia',
|
|
1825
|
+
dial_code: '+976',
|
|
1826
|
+
code: 'MN',
|
|
1827
|
+
zone: '',
|
|
1828
|
+
pattern: '',
|
|
1829
|
+
placeholder: '',
|
|
1830
|
+
translations: {
|
|
1831
|
+
fr: 'Mongolie',
|
|
1832
|
+
nl: 'Mongolië',
|
|
1833
|
+
de: 'Mongolei',
|
|
1834
|
+
},
|
|
1835
|
+
},
|
|
1836
|
+
{
|
|
1837
|
+
name: 'Montenegro',
|
|
1838
|
+
dial_code: '+382',
|
|
1839
|
+
code: 'ME',
|
|
1840
|
+
zone: '',
|
|
1841
|
+
pattern: '',
|
|
1842
|
+
placeholder: '',
|
|
1843
|
+
translations: {
|
|
1844
|
+
fr: 'Monténégro',
|
|
1845
|
+
nl: 'Montenegro',
|
|
1846
|
+
de: 'Montenegro',
|
|
1847
|
+
},
|
|
1848
|
+
},
|
|
1849
|
+
{
|
|
1850
|
+
name: 'Montserrat',
|
|
1851
|
+
dial_code: '+1664',
|
|
1852
|
+
code: 'MS',
|
|
1853
|
+
zone: '',
|
|
1854
|
+
pattern: '',
|
|
1855
|
+
placeholder: '',
|
|
1856
|
+
translations: {
|
|
1857
|
+
fr: 'Montserrat',
|
|
1858
|
+
nl: 'Montserrat',
|
|
1859
|
+
de: 'Montserrat',
|
|
1860
|
+
},
|
|
1861
|
+
},
|
|
1862
|
+
{
|
|
1863
|
+
name: 'Morocco',
|
|
1864
|
+
dial_code: '+212',
|
|
1865
|
+
code: 'MA',
|
|
1866
|
+
zone: '',
|
|
1867
|
+
pattern: '',
|
|
1868
|
+
placeholder: '',
|
|
1869
|
+
translations: {
|
|
1870
|
+
fr: 'Maroc',
|
|
1871
|
+
nl: 'Marokko',
|
|
1872
|
+
de: 'Marokko',
|
|
1873
|
+
},
|
|
1874
|
+
},
|
|
1875
|
+
{
|
|
1876
|
+
name: 'Mozambique',
|
|
1877
|
+
dial_code: '+258',
|
|
1878
|
+
code: 'MZ',
|
|
1879
|
+
zone: '',
|
|
1880
|
+
pattern: '',
|
|
1881
|
+
placeholder: '',
|
|
1882
|
+
translations: {
|
|
1883
|
+
fr: 'Mozambique',
|
|
1884
|
+
nl: 'Mozambique',
|
|
1885
|
+
de: 'Mosambik',
|
|
1886
|
+
},
|
|
1887
|
+
},
|
|
1888
|
+
{
|
|
1889
|
+
name: 'Myanmar',
|
|
1890
|
+
dial_code: '+95',
|
|
1891
|
+
code: 'MM',
|
|
1892
|
+
zone: '',
|
|
1893
|
+
pattern: '',
|
|
1894
|
+
placeholder: '',
|
|
1895
|
+
translations: {
|
|
1896
|
+
fr: 'Myanmar',
|
|
1897
|
+
nl: 'Myanmar',
|
|
1898
|
+
de: 'Myanmar',
|
|
1899
|
+
},
|
|
1900
|
+
},
|
|
1901
|
+
{
|
|
1902
|
+
name: 'Namibia',
|
|
1903
|
+
dial_code: '+264',
|
|
1904
|
+
code: 'NA',
|
|
1905
|
+
zone: '',
|
|
1906
|
+
pattern: '',
|
|
1907
|
+
placeholder: '',
|
|
1908
|
+
translations: {
|
|
1909
|
+
fr: 'Namibie',
|
|
1910
|
+
nl: 'Namibië',
|
|
1911
|
+
de: 'Namibia',
|
|
1912
|
+
},
|
|
1913
|
+
},
|
|
1914
|
+
{
|
|
1915
|
+
name: 'Nauru',
|
|
1916
|
+
dial_code: '+674',
|
|
1917
|
+
code: 'NR',
|
|
1918
|
+
zone: '',
|
|
1919
|
+
pattern: '',
|
|
1920
|
+
placeholder: '',
|
|
1921
|
+
translations: {
|
|
1922
|
+
fr: 'Nauru',
|
|
1923
|
+
nl: 'Nauru',
|
|
1924
|
+
de: 'Nauru',
|
|
1925
|
+
},
|
|
1926
|
+
},
|
|
1927
|
+
{
|
|
1928
|
+
name: 'Nepal',
|
|
1929
|
+
dial_code: '+977',
|
|
1930
|
+
code: 'NP',
|
|
1931
|
+
zone: '',
|
|
1932
|
+
pattern: '',
|
|
1933
|
+
placeholder: '',
|
|
1934
|
+
translations: {
|
|
1935
|
+
fr: 'Népal',
|
|
1936
|
+
nl: 'Nepal',
|
|
1937
|
+
de: 'Nepal',
|
|
1938
|
+
},
|
|
1939
|
+
},
|
|
1940
|
+
{
|
|
1941
|
+
name: 'Netherlands',
|
|
1942
|
+
dial_code: '+31',
|
|
1943
|
+
code: 'NL',
|
|
1944
|
+
zone: 'EU',
|
|
1945
|
+
pattern: 'NL[0-9]{9}B[0-9]{2}',
|
|
1946
|
+
placeholder: 'NLXXXXXXXXXBXX',
|
|
1947
|
+
translations: {
|
|
1948
|
+
fr: 'Pays-Bas',
|
|
1949
|
+
nl: 'Nederland',
|
|
1950
|
+
de: 'Niederlande',
|
|
1951
|
+
},
|
|
1952
|
+
},
|
|
1953
|
+
{
|
|
1954
|
+
name: 'New Caledonia',
|
|
1955
|
+
dial_code: '+687',
|
|
1956
|
+
code: 'NC',
|
|
1957
|
+
zone: '',
|
|
1958
|
+
pattern: '',
|
|
1959
|
+
placeholder: '',
|
|
1960
|
+
translations: {
|
|
1961
|
+
fr: 'Nouvelle-Calédonie',
|
|
1962
|
+
nl: 'Nieuw-Caledonië',
|
|
1963
|
+
de: 'Neukaledonien',
|
|
1964
|
+
},
|
|
1965
|
+
},
|
|
1966
|
+
{
|
|
1967
|
+
name: 'New Zealand',
|
|
1968
|
+
dial_code: '+64',
|
|
1969
|
+
code: 'NZ',
|
|
1970
|
+
zone: '',
|
|
1971
|
+
pattern: '',
|
|
1972
|
+
placeholder: '',
|
|
1973
|
+
translations: {
|
|
1974
|
+
fr: 'Nouvelle-Zélande',
|
|
1975
|
+
nl: 'Nieuw-Zeeland',
|
|
1976
|
+
de: 'Neuseeland',
|
|
1977
|
+
},
|
|
1978
|
+
},
|
|
1979
|
+
{
|
|
1980
|
+
name: 'Nicaragua',
|
|
1981
|
+
dial_code: '+505',
|
|
1982
|
+
code: 'NI',
|
|
1983
|
+
zone: '',
|
|
1984
|
+
pattern: '',
|
|
1985
|
+
placeholder: '',
|
|
1986
|
+
translations: {
|
|
1987
|
+
fr: 'Nicaragua',
|
|
1988
|
+
nl: 'Nicaragua',
|
|
1989
|
+
de: 'Nicaragua',
|
|
1990
|
+
},
|
|
1991
|
+
},
|
|
1992
|
+
{
|
|
1993
|
+
name: 'Niger',
|
|
1994
|
+
dial_code: '+227',
|
|
1995
|
+
code: 'NE',
|
|
1996
|
+
zone: '',
|
|
1997
|
+
pattern: '',
|
|
1998
|
+
placeholder: '',
|
|
1999
|
+
translations: {
|
|
2000
|
+
fr: 'Niger',
|
|
2001
|
+
nl: 'Niger',
|
|
2002
|
+
de: 'Niger',
|
|
2003
|
+
},
|
|
2004
|
+
},
|
|
2005
|
+
{
|
|
2006
|
+
name: 'Nigeria',
|
|
2007
|
+
dial_code: '+234',
|
|
2008
|
+
code: 'NG',
|
|
2009
|
+
zone: '',
|
|
2010
|
+
pattern: '',
|
|
2011
|
+
placeholder: '',
|
|
2012
|
+
translations: {
|
|
2013
|
+
fr: 'Nigéria',
|
|
2014
|
+
nl: 'Nigeria',
|
|
2015
|
+
de: 'Nigeria',
|
|
2016
|
+
},
|
|
2017
|
+
},
|
|
2018
|
+
{
|
|
2019
|
+
name: 'Niue',
|
|
2020
|
+
dial_code: '+683',
|
|
2021
|
+
code: 'NU',
|
|
2022
|
+
zone: '',
|
|
2023
|
+
pattern: '',
|
|
2024
|
+
placeholder: '',
|
|
2025
|
+
translations: {
|
|
2026
|
+
fr: 'Niue',
|
|
2027
|
+
nl: 'Niue',
|
|
2028
|
+
de: 'Niue',
|
|
2029
|
+
},
|
|
2030
|
+
},
|
|
2031
|
+
{
|
|
2032
|
+
name: 'Norfolk Island',
|
|
2033
|
+
dial_code: '+672',
|
|
2034
|
+
code: 'NF',
|
|
2035
|
+
zone: '',
|
|
2036
|
+
pattern: '',
|
|
2037
|
+
placeholder: '',
|
|
2038
|
+
translations: {
|
|
2039
|
+
fr: 'Île Norfolk',
|
|
2040
|
+
nl: 'Norfolkeiland',
|
|
2041
|
+
de: 'Norfolkinsel',
|
|
2042
|
+
},
|
|
2043
|
+
},
|
|
2044
|
+
{
|
|
2045
|
+
name: 'North Korea',
|
|
2046
|
+
dial_code: '+850',
|
|
2047
|
+
code: 'KP',
|
|
2048
|
+
zone: '',
|
|
2049
|
+
pattern: '',
|
|
2050
|
+
placeholder: '',
|
|
2051
|
+
translations: {
|
|
2052
|
+
fr: 'Corée du Nord',
|
|
2053
|
+
nl: 'Noord-Korea',
|
|
2054
|
+
de: 'Nordkorea',
|
|
2055
|
+
},
|
|
2056
|
+
},
|
|
2057
|
+
{
|
|
2058
|
+
name: 'North Macedonia',
|
|
2059
|
+
dial_code: '+389',
|
|
2060
|
+
code: 'MK',
|
|
2061
|
+
zone: '',
|
|
2062
|
+
pattern: '',
|
|
2063
|
+
placeholder: '',
|
|
2064
|
+
translations: {
|
|
2065
|
+
fr: 'Macédoine du Nord',
|
|
2066
|
+
nl: 'Noord-Macedonië',
|
|
2067
|
+
de: 'Nordmazedonien',
|
|
2068
|
+
},
|
|
2069
|
+
},
|
|
2070
|
+
{
|
|
2071
|
+
name: 'Northern Mariana Islands',
|
|
2072
|
+
dial_code: '+1670',
|
|
2073
|
+
code: 'MP',
|
|
2074
|
+
zone: '',
|
|
2075
|
+
pattern: '',
|
|
2076
|
+
placeholder: '',
|
|
2077
|
+
translations: {
|
|
2078
|
+
fr: 'Îles Mariannes du Nord',
|
|
2079
|
+
nl: 'Noordelijke Marianen',
|
|
2080
|
+
de: 'Nördliche Marianen',
|
|
2081
|
+
},
|
|
2082
|
+
},
|
|
2083
|
+
{
|
|
2084
|
+
name: 'Norway',
|
|
2085
|
+
dial_code: '+47',
|
|
2086
|
+
code: 'NO',
|
|
2087
|
+
zone: '',
|
|
2088
|
+
pattern: '',
|
|
2089
|
+
placeholder: '',
|
|
2090
|
+
translations: {
|
|
2091
|
+
fr: 'Norvège',
|
|
2092
|
+
nl: 'Noorwegen',
|
|
2093
|
+
de: 'Norwegen',
|
|
2094
|
+
},
|
|
2095
|
+
},
|
|
2096
|
+
{
|
|
2097
|
+
name: 'Oman',
|
|
2098
|
+
dial_code: '+968',
|
|
2099
|
+
code: 'OM',
|
|
2100
|
+
zone: '',
|
|
2101
|
+
pattern: '',
|
|
2102
|
+
placeholder: '',
|
|
2103
|
+
translations: {
|
|
2104
|
+
fr: 'Oman',
|
|
2105
|
+
nl: 'Oman',
|
|
2106
|
+
de: 'Oman',
|
|
2107
|
+
},
|
|
2108
|
+
},
|
|
2109
|
+
{
|
|
2110
|
+
name: 'Pakistan',
|
|
2111
|
+
dial_code: '+92',
|
|
2112
|
+
code: 'PK',
|
|
2113
|
+
zone: '',
|
|
2114
|
+
pattern: '',
|
|
2115
|
+
placeholder: '',
|
|
2116
|
+
translations: {
|
|
2117
|
+
fr: 'Pakistan',
|
|
2118
|
+
nl: 'Pakistan',
|
|
2119
|
+
de: 'Pakistan',
|
|
2120
|
+
},
|
|
2121
|
+
},
|
|
2122
|
+
{
|
|
2123
|
+
name: 'Palau',
|
|
2124
|
+
dial_code: '+680',
|
|
2125
|
+
code: 'PW',
|
|
2126
|
+
zone: '',
|
|
2127
|
+
pattern: '',
|
|
2128
|
+
placeholder: '',
|
|
2129
|
+
translations: {
|
|
2130
|
+
fr: 'Palaos',
|
|
2131
|
+
nl: 'Palau',
|
|
2132
|
+
de: 'Palau',
|
|
2133
|
+
},
|
|
2134
|
+
},
|
|
2135
|
+
{
|
|
2136
|
+
name: 'Palestine',
|
|
2137
|
+
dial_code: '+970',
|
|
2138
|
+
code: 'PS',
|
|
2139
|
+
zone: '',
|
|
2140
|
+
pattern: '',
|
|
2141
|
+
placeholder: '',
|
|
2142
|
+
translations: {
|
|
2143
|
+
fr: 'Palestine',
|
|
2144
|
+
nl: 'Palestina',
|
|
2145
|
+
de: 'Palästina',
|
|
2146
|
+
},
|
|
2147
|
+
},
|
|
2148
|
+
{
|
|
2149
|
+
name: 'Panama',
|
|
2150
|
+
dial_code: '+507',
|
|
2151
|
+
code: 'PA',
|
|
2152
|
+
zone: '',
|
|
2153
|
+
pattern: '',
|
|
2154
|
+
placeholder: '',
|
|
2155
|
+
translations: {
|
|
2156
|
+
fr: 'Panama',
|
|
2157
|
+
nl: 'Panama',
|
|
2158
|
+
de: 'Panama',
|
|
2159
|
+
},
|
|
2160
|
+
},
|
|
2161
|
+
{
|
|
2162
|
+
name: 'Papua New Guinea',
|
|
2163
|
+
dial_code: '+675',
|
|
2164
|
+
code: 'PG',
|
|
2165
|
+
zone: '',
|
|
2166
|
+
pattern: '',
|
|
2167
|
+
placeholder: '',
|
|
2168
|
+
translations: {
|
|
2169
|
+
fr: 'Papouasie-Nouvelle-Guinée',
|
|
2170
|
+
nl: 'Papoea-Nieuw-Guinea',
|
|
2171
|
+
de: 'Papua-Neuguinea',
|
|
2172
|
+
},
|
|
2173
|
+
},
|
|
2174
|
+
{
|
|
2175
|
+
name: 'Paraguay',
|
|
2176
|
+
dial_code: '+595',
|
|
2177
|
+
code: 'PY',
|
|
2178
|
+
zone: '',
|
|
2179
|
+
pattern: '',
|
|
2180
|
+
placeholder: '',
|
|
2181
|
+
translations: {
|
|
2182
|
+
fr: 'Paraguay',
|
|
2183
|
+
nl: 'Paraguay',
|
|
2184
|
+
de: 'Paraguay',
|
|
2185
|
+
},
|
|
2186
|
+
},
|
|
2187
|
+
{
|
|
2188
|
+
name: 'Peru',
|
|
2189
|
+
dial_code: '+51',
|
|
2190
|
+
code: 'PE',
|
|
2191
|
+
zone: '',
|
|
2192
|
+
pattern: '',
|
|
2193
|
+
placeholder: '',
|
|
2194
|
+
translations: {
|
|
2195
|
+
fr: 'Pérou',
|
|
2196
|
+
nl: 'Peru',
|
|
2197
|
+
de: 'Peru',
|
|
2198
|
+
},
|
|
2199
|
+
},
|
|
2200
|
+
{
|
|
2201
|
+
name: 'Philippines',
|
|
2202
|
+
dial_code: '+63',
|
|
2203
|
+
code: 'PH',
|
|
2204
|
+
zone: '',
|
|
2205
|
+
pattern: '',
|
|
2206
|
+
placeholder: '',
|
|
2207
|
+
translations: {
|
|
2208
|
+
fr: 'Philippines',
|
|
2209
|
+
nl: 'Filipijnen',
|
|
2210
|
+
de: 'Philippinen',
|
|
2211
|
+
},
|
|
2212
|
+
},
|
|
2213
|
+
{
|
|
2214
|
+
name: 'Pitcairn Islands',
|
|
2215
|
+
dial_code: '+64',
|
|
2216
|
+
code: 'PN',
|
|
2217
|
+
zone: '',
|
|
2218
|
+
pattern: '',
|
|
2219
|
+
placeholder: '',
|
|
2220
|
+
translations: {
|
|
2221
|
+
fr: 'Îles Pitcairn',
|
|
2222
|
+
nl: 'Pitcairneilanden',
|
|
2223
|
+
de: 'Pitcairninseln',
|
|
2224
|
+
},
|
|
2225
|
+
},
|
|
2226
|
+
{
|
|
2227
|
+
name: 'Poland',
|
|
2228
|
+
dial_code: '+48',
|
|
2229
|
+
code: 'PL',
|
|
2230
|
+
zone: 'EU',
|
|
2231
|
+
pattern: 'PL[0-9]{10}',
|
|
2232
|
+
placeholder: 'PLXXXXXXXXXX',
|
|
2233
|
+
translations: {
|
|
2234
|
+
fr: 'Pologne',
|
|
2235
|
+
nl: 'Polen',
|
|
2236
|
+
de: 'Polen',
|
|
2237
|
+
},
|
|
2238
|
+
},
|
|
2239
|
+
{
|
|
2240
|
+
name: 'Portugal',
|
|
2241
|
+
dial_code: '+351',
|
|
2242
|
+
code: 'PT',
|
|
2243
|
+
zone: 'EU',
|
|
2244
|
+
pattern: 'PT[0-9]{9}',
|
|
2245
|
+
placeholder: 'PTXXXXXXXXX',
|
|
2246
|
+
translations: {
|
|
2247
|
+
fr: 'Portugal',
|
|
2248
|
+
nl: 'Portugal',
|
|
2249
|
+
de: 'Portugal',
|
|
2250
|
+
},
|
|
2251
|
+
},
|
|
2252
|
+
{
|
|
2253
|
+
name: 'Puerto Rico',
|
|
2254
|
+
dial_code: '+1',
|
|
2255
|
+
code: 'PR',
|
|
2256
|
+
zone: '',
|
|
2257
|
+
pattern: '',
|
|
2258
|
+
placeholder: '',
|
|
2259
|
+
translations: {
|
|
2260
|
+
fr: 'Porto Rico',
|
|
2261
|
+
nl: 'Puerto Rico',
|
|
2262
|
+
de: 'Puerto Rico',
|
|
2263
|
+
},
|
|
2264
|
+
},
|
|
2265
|
+
{
|
|
2266
|
+
name: 'Qatar',
|
|
2267
|
+
dial_code: '+974',
|
|
2268
|
+
code: 'QA',
|
|
2269
|
+
zone: '',
|
|
2270
|
+
pattern: '',
|
|
2271
|
+
placeholder: '',
|
|
2272
|
+
translations: {
|
|
2273
|
+
fr: 'Qatar',
|
|
2274
|
+
nl: 'Qatar',
|
|
2275
|
+
de: 'Katar',
|
|
2276
|
+
},
|
|
2277
|
+
},
|
|
2278
|
+
{
|
|
2279
|
+
name: 'Réunion',
|
|
2280
|
+
dial_code: '+262',
|
|
2281
|
+
code: 'RE',
|
|
2282
|
+
zone: '',
|
|
2283
|
+
pattern: '',
|
|
2284
|
+
placeholder: '',
|
|
2285
|
+
translations: {
|
|
2286
|
+
fr: 'Réunion',
|
|
2287
|
+
nl: 'Réunion',
|
|
2288
|
+
de: 'Réunion',
|
|
2289
|
+
},
|
|
2290
|
+
},
|
|
2291
|
+
{
|
|
2292
|
+
name: 'Romania',
|
|
2293
|
+
dial_code: '+40',
|
|
2294
|
+
code: 'RO',
|
|
2295
|
+
zone: 'EU',
|
|
2296
|
+
pattern: 'RO[0-9]{2,10}',
|
|
2297
|
+
placeholder: 'ROXXXXXXXXXX',
|
|
2298
|
+
translations: {
|
|
2299
|
+
fr: 'Roumanie',
|
|
2300
|
+
nl: 'Roemenië',
|
|
2301
|
+
de: 'Rumänien',
|
|
2302
|
+
},
|
|
2303
|
+
},
|
|
2304
|
+
{
|
|
2305
|
+
name: 'Russia',
|
|
2306
|
+
dial_code: '+7',
|
|
2307
|
+
code: 'RU',
|
|
2308
|
+
zone: '',
|
|
2309
|
+
pattern: '',
|
|
2310
|
+
placeholder: '',
|
|
2311
|
+
translations: {
|
|
2312
|
+
fr: 'Russie',
|
|
2313
|
+
nl: 'Rusland',
|
|
2314
|
+
de: 'Russland',
|
|
2315
|
+
},
|
|
2316
|
+
},
|
|
2317
|
+
{
|
|
2318
|
+
name: 'Rwanda',
|
|
2319
|
+
dial_code: '+250',
|
|
2320
|
+
code: 'RW',
|
|
2321
|
+
zone: '',
|
|
2322
|
+
pattern: '',
|
|
2323
|
+
placeholder: '',
|
|
2324
|
+
translations: {
|
|
2325
|
+
fr: 'Rwanda',
|
|
2326
|
+
nl: 'Rwanda',
|
|
2327
|
+
de: 'Ruanda',
|
|
2328
|
+
},
|
|
2329
|
+
},
|
|
2330
|
+
{
|
|
2331
|
+
name: 'Saint Barthélemy',
|
|
2332
|
+
dial_code: '+590',
|
|
2333
|
+
code: 'BL',
|
|
2334
|
+
zone: '',
|
|
2335
|
+
pattern: '',
|
|
2336
|
+
placeholder: '',
|
|
2337
|
+
translations: {
|
|
2338
|
+
fr: 'Saint-Barthélemy',
|
|
2339
|
+
nl: 'Saint-Barthélemy',
|
|
2340
|
+
de: 'Saint-Barthélemy',
|
|
2341
|
+
},
|
|
2342
|
+
},
|
|
2343
|
+
{
|
|
2344
|
+
name: 'Saint Helena',
|
|
2345
|
+
dial_code: '+290',
|
|
2346
|
+
code: 'SH',
|
|
2347
|
+
zone: '',
|
|
2348
|
+
pattern: '',
|
|
2349
|
+
placeholder: '',
|
|
2350
|
+
translations: {
|
|
2351
|
+
fr: 'Sainte-Hélène',
|
|
2352
|
+
nl: 'Sint-Helena',
|
|
2353
|
+
de: 'St. Helena',
|
|
2354
|
+
},
|
|
2355
|
+
},
|
|
2356
|
+
{
|
|
2357
|
+
name: 'Saint Kitts and Nevis',
|
|
2358
|
+
dial_code: '+1869',
|
|
2359
|
+
code: 'KN',
|
|
2360
|
+
zone: '',
|
|
2361
|
+
pattern: '',
|
|
2362
|
+
placeholder: '',
|
|
2363
|
+
translations: {
|
|
2364
|
+
fr: 'Saint-Christophe-et-Niévès',
|
|
2365
|
+
nl: 'Saint Kitts en Nevis',
|
|
2366
|
+
de: 'St. Kitts und Nevis',
|
|
2367
|
+
},
|
|
2368
|
+
},
|
|
2369
|
+
{
|
|
2370
|
+
name: 'Saint Lucia',
|
|
2371
|
+
dial_code: '+1758',
|
|
2372
|
+
code: 'LC',
|
|
2373
|
+
zone: '',
|
|
2374
|
+
pattern: '',
|
|
2375
|
+
placeholder: '',
|
|
2376
|
+
translations: {
|
|
2377
|
+
fr: 'Sainte-Lucie',
|
|
2378
|
+
nl: 'Saint Lucia',
|
|
2379
|
+
de: 'St. Lucia',
|
|
2380
|
+
},
|
|
2381
|
+
},
|
|
2382
|
+
{
|
|
2383
|
+
name: 'Saint Martin',
|
|
2384
|
+
dial_code: '+590',
|
|
2385
|
+
code: 'MF',
|
|
2386
|
+
zone: '',
|
|
2387
|
+
pattern: '',
|
|
2388
|
+
placeholder: '',
|
|
2389
|
+
translations: {
|
|
2390
|
+
fr: 'Saint-Martin',
|
|
2391
|
+
nl: 'Sint-Maarten',
|
|
2392
|
+
de: 'Saint-Martin',
|
|
2393
|
+
},
|
|
2394
|
+
},
|
|
2395
|
+
{
|
|
2396
|
+
name: 'Saint Pierre and Miquelon',
|
|
2397
|
+
dial_code: '+508',
|
|
2398
|
+
code: 'PM',
|
|
2399
|
+
zone: '',
|
|
2400
|
+
pattern: '',
|
|
2401
|
+
placeholder: '',
|
|
2402
|
+
translations: {
|
|
2403
|
+
fr: 'Saint-Pierre-et-Miquelon',
|
|
2404
|
+
nl: 'Saint-Pierre en Miquelon',
|
|
2405
|
+
de: 'Saint-Pierre und Miquelon',
|
|
2406
|
+
},
|
|
2407
|
+
},
|
|
2408
|
+
{
|
|
2409
|
+
name: 'Saint Vincent and the Grenadines',
|
|
2410
|
+
dial_code: '+1784',
|
|
2411
|
+
code: 'VC',
|
|
2412
|
+
zone: '',
|
|
2413
|
+
pattern: '',
|
|
2414
|
+
placeholder: '',
|
|
2415
|
+
translations: {
|
|
2416
|
+
fr: 'Saint-Vincent-et-les Grenadines',
|
|
2417
|
+
nl: 'Saint Vincent en de Grenadines',
|
|
2418
|
+
de: 'St. Vincent und die Grenadinen',
|
|
2419
|
+
},
|
|
2420
|
+
},
|
|
2421
|
+
{
|
|
2422
|
+
name: 'Samoa',
|
|
2423
|
+
dial_code: '+685',
|
|
2424
|
+
code: 'WS',
|
|
2425
|
+
zone: '',
|
|
2426
|
+
pattern: '',
|
|
2427
|
+
placeholder: '',
|
|
2428
|
+
translations: {
|
|
2429
|
+
fr: 'Samoa',
|
|
2430
|
+
nl: 'Samoa',
|
|
2431
|
+
de: 'Samoa',
|
|
2432
|
+
},
|
|
2433
|
+
},
|
|
2434
|
+
{
|
|
2435
|
+
name: 'San Marino',
|
|
2436
|
+
dial_code: '+378',
|
|
2437
|
+
code: 'SM',
|
|
2438
|
+
zone: '',
|
|
2439
|
+
pattern: '',
|
|
2440
|
+
placeholder: '',
|
|
2441
|
+
translations: {
|
|
2442
|
+
fr: 'Saint-Marin',
|
|
2443
|
+
nl: 'San Marino',
|
|
2444
|
+
de: 'San Marino',
|
|
2445
|
+
},
|
|
2446
|
+
},
|
|
2447
|
+
{
|
|
2448
|
+
name: 'São Tomé and Príncipe',
|
|
2449
|
+
dial_code: '+239',
|
|
2450
|
+
code: 'ST',
|
|
2451
|
+
zone: '',
|
|
2452
|
+
pattern: '',
|
|
2453
|
+
placeholder: '',
|
|
2454
|
+
translations: {
|
|
2455
|
+
fr: 'Sao Tomé-et-Principe',
|
|
2456
|
+
nl: 'Sao Tomé en Principe',
|
|
2457
|
+
de: 'São Tomé und Príncipe',
|
|
2458
|
+
},
|
|
2459
|
+
},
|
|
2460
|
+
{
|
|
2461
|
+
name: 'Saudi Arabia',
|
|
2462
|
+
dial_code: '+966',
|
|
2463
|
+
code: 'SA',
|
|
2464
|
+
zone: '',
|
|
2465
|
+
pattern: '',
|
|
2466
|
+
placeholder: '',
|
|
2467
|
+
translations: {
|
|
2468
|
+
fr: 'Arabie saoudite',
|
|
2469
|
+
nl: 'Saoedi-Arabië',
|
|
2470
|
+
de: 'Saudi-Arabien',
|
|
2471
|
+
},
|
|
2472
|
+
},
|
|
2473
|
+
{
|
|
2474
|
+
name: 'Senegal',
|
|
2475
|
+
dial_code: '+221',
|
|
2476
|
+
code: 'SN',
|
|
2477
|
+
zone: '',
|
|
2478
|
+
pattern: '',
|
|
2479
|
+
placeholder: '',
|
|
2480
|
+
translations: {
|
|
2481
|
+
fr: 'Sénégal',
|
|
2482
|
+
nl: 'Senegal',
|
|
2483
|
+
de: 'Senegal',
|
|
2484
|
+
},
|
|
2485
|
+
},
|
|
2486
|
+
{
|
|
2487
|
+
name: 'Serbia',
|
|
2488
|
+
dial_code: '+381',
|
|
2489
|
+
code: 'RS',
|
|
2490
|
+
zone: '',
|
|
2491
|
+
pattern: '',
|
|
2492
|
+
placeholder: '',
|
|
2493
|
+
translations: {
|
|
2494
|
+
fr: 'Serbie',
|
|
2495
|
+
nl: 'Servië',
|
|
2496
|
+
de: 'Serbien',
|
|
2497
|
+
},
|
|
2498
|
+
},
|
|
2499
|
+
{
|
|
2500
|
+
name: 'Seychelles',
|
|
2501
|
+
dial_code: '+248',
|
|
2502
|
+
code: 'SC',
|
|
2503
|
+
zone: '',
|
|
2504
|
+
pattern: '',
|
|
2505
|
+
placeholder: '',
|
|
2506
|
+
translations: {
|
|
2507
|
+
fr: 'Seychelles',
|
|
2508
|
+
nl: 'Seychellen',
|
|
2509
|
+
de: 'Seychellen',
|
|
2510
|
+
},
|
|
2511
|
+
},
|
|
2512
|
+
{
|
|
2513
|
+
name: 'Sierra Leone',
|
|
2514
|
+
dial_code: '+232',
|
|
2515
|
+
code: 'SL',
|
|
2516
|
+
zone: '',
|
|
2517
|
+
pattern: '',
|
|
2518
|
+
placeholder: '',
|
|
2519
|
+
translations: {
|
|
2520
|
+
fr: 'Sierra Leone',
|
|
2521
|
+
nl: 'Sierra Leone',
|
|
2522
|
+
de: 'Sierra Leone',
|
|
2523
|
+
},
|
|
2524
|
+
},
|
|
2525
|
+
{
|
|
2526
|
+
name: 'Singapore',
|
|
2527
|
+
dial_code: '+65',
|
|
2528
|
+
code: 'SG',
|
|
2529
|
+
zone: '',
|
|
2530
|
+
pattern: '',
|
|
2531
|
+
placeholder: '',
|
|
2532
|
+
translations: {
|
|
2533
|
+
fr: 'Singapour',
|
|
2534
|
+
nl: 'Singapore',
|
|
2535
|
+
de: 'Singapur',
|
|
2536
|
+
},
|
|
2537
|
+
},
|
|
2538
|
+
{
|
|
2539
|
+
name: 'Sint Maarten',
|
|
2540
|
+
dial_code: '+1721',
|
|
2541
|
+
code: 'SX',
|
|
2542
|
+
zone: '',
|
|
2543
|
+
pattern: '',
|
|
2544
|
+
placeholder: '',
|
|
2545
|
+
translations: {
|
|
2546
|
+
fr: 'Sint-Maarten',
|
|
2547
|
+
nl: 'Sint Maarten',
|
|
2548
|
+
de: 'Sint Maarten',
|
|
2549
|
+
},
|
|
2550
|
+
},
|
|
2551
|
+
{
|
|
2552
|
+
name: 'Slovakia',
|
|
2553
|
+
dial_code: '+421',
|
|
2554
|
+
code: 'SK',
|
|
2555
|
+
zone: 'EU',
|
|
2556
|
+
pattern: 'SK[0-9]{10}',
|
|
2557
|
+
placeholder: 'SKXXXXXXXXXX',
|
|
2558
|
+
translations: {
|
|
2559
|
+
fr: 'Slovaquie',
|
|
2560
|
+
nl: 'Slowakije',
|
|
2561
|
+
de: 'Slowakei',
|
|
2562
|
+
},
|
|
2563
|
+
},
|
|
2564
|
+
{
|
|
2565
|
+
name: 'Slovenia',
|
|
2566
|
+
dial_code: '+386',
|
|
2567
|
+
code: 'SI',
|
|
2568
|
+
zone: 'EU',
|
|
2569
|
+
pattern: 'SI[0-9]{8}',
|
|
2570
|
+
placeholder: 'SIXXXXXXXX',
|
|
2571
|
+
translations: {
|
|
2572
|
+
fr: 'Slovénie',
|
|
2573
|
+
nl: 'Slovenië',
|
|
2574
|
+
de: 'Slowenien',
|
|
2575
|
+
},
|
|
2576
|
+
},
|
|
2577
|
+
{
|
|
2578
|
+
name: 'Solomon Islands',
|
|
2579
|
+
dial_code: '+677',
|
|
2580
|
+
code: 'SB',
|
|
2581
|
+
zone: '',
|
|
2582
|
+
pattern: '',
|
|
2583
|
+
placeholder: '',
|
|
2584
|
+
translations: {
|
|
2585
|
+
fr: 'Îles Salomon',
|
|
2586
|
+
nl: 'Salomonseilanden',
|
|
2587
|
+
de: 'Salomonen',
|
|
2588
|
+
},
|
|
2589
|
+
},
|
|
2590
|
+
{
|
|
2591
|
+
name: 'Somalia',
|
|
2592
|
+
dial_code: '+252',
|
|
2593
|
+
code: 'SO',
|
|
2594
|
+
zone: '',
|
|
2595
|
+
pattern: '',
|
|
2596
|
+
placeholder: '',
|
|
2597
|
+
translations: {
|
|
2598
|
+
fr: 'Somalie',
|
|
2599
|
+
nl: 'Somalië',
|
|
2600
|
+
de: 'Somalia',
|
|
2601
|
+
},
|
|
2602
|
+
},
|
|
2603
|
+
{
|
|
2604
|
+
name: 'South Africa',
|
|
2605
|
+
dial_code: '+27',
|
|
2606
|
+
code: 'ZA',
|
|
2607
|
+
zone: '',
|
|
2608
|
+
pattern: '',
|
|
2609
|
+
placeholder: '',
|
|
2610
|
+
translations: {
|
|
2611
|
+
fr: 'Afrique du Sud',
|
|
2612
|
+
nl: 'Zuid-Afrika',
|
|
2613
|
+
de: 'Südafrika',
|
|
2614
|
+
},
|
|
2615
|
+
},
|
|
2616
|
+
{
|
|
2617
|
+
name: 'South Korea',
|
|
2618
|
+
dial_code: '+82',
|
|
2619
|
+
code: 'KR',
|
|
2620
|
+
zone: '',
|
|
2621
|
+
pattern: '',
|
|
2622
|
+
placeholder: '',
|
|
2623
|
+
translations: {
|
|
2624
|
+
fr: 'Corée du Sud',
|
|
2625
|
+
nl: 'Zuid-Korea',
|
|
2626
|
+
de: 'Südkorea',
|
|
2627
|
+
},
|
|
2628
|
+
},
|
|
2629
|
+
{
|
|
2630
|
+
name: 'South Sudan',
|
|
2631
|
+
dial_code: '+211',
|
|
2632
|
+
code: 'SS',
|
|
2633
|
+
zone: '',
|
|
2634
|
+
pattern: '',
|
|
2635
|
+
placeholder: '',
|
|
2636
|
+
translations: {
|
|
2637
|
+
fr: 'Soudan du Sud',
|
|
2638
|
+
nl: 'Zuid-Soedan',
|
|
2639
|
+
de: 'Südsudan',
|
|
2640
|
+
},
|
|
2641
|
+
},
|
|
2642
|
+
{
|
|
2643
|
+
name: 'Spain',
|
|
2644
|
+
dial_code: '+34',
|
|
2645
|
+
code: 'ES',
|
|
2646
|
+
zone: 'EU',
|
|
2647
|
+
pattern: 'ES[0-9A-Z][0-9]{7}[0-9A-Z]',
|
|
2648
|
+
placeholder: 'ESXXXXXXXXX',
|
|
2649
|
+
translations: {
|
|
2650
|
+
fr: 'Espagne',
|
|
2651
|
+
nl: 'Spanje',
|
|
2652
|
+
de: 'Spanien',
|
|
2653
|
+
},
|
|
2654
|
+
},
|
|
2655
|
+
{
|
|
2656
|
+
name: 'Sri Lanka',
|
|
2657
|
+
dial_code: '+94',
|
|
2658
|
+
code: 'LK',
|
|
2659
|
+
zone: '',
|
|
2660
|
+
pattern: '',
|
|
2661
|
+
placeholder: '',
|
|
2662
|
+
translations: {
|
|
2663
|
+
fr: 'Sri Lanka',
|
|
2664
|
+
nl: 'Sri Lanka',
|
|
2665
|
+
de: 'Sri Lanka',
|
|
2666
|
+
},
|
|
2667
|
+
},
|
|
2668
|
+
{
|
|
2669
|
+
name: 'Sudan',
|
|
2670
|
+
dial_code: '+249',
|
|
2671
|
+
code: 'SD',
|
|
2672
|
+
zone: '',
|
|
2673
|
+
pattern: '',
|
|
2674
|
+
placeholder: '',
|
|
2675
|
+
translations: {
|
|
2676
|
+
fr: 'Soudan',
|
|
2677
|
+
nl: 'Soedan',
|
|
2678
|
+
de: 'Sudan',
|
|
2679
|
+
},
|
|
2680
|
+
},
|
|
2681
|
+
{
|
|
2682
|
+
name: 'Suriname',
|
|
2683
|
+
dial_code: '+597',
|
|
2684
|
+
code: 'SR',
|
|
2685
|
+
zone: '',
|
|
2686
|
+
pattern: '',
|
|
2687
|
+
placeholder: '',
|
|
2688
|
+
translations: {
|
|
2689
|
+
fr: 'Suriname',
|
|
2690
|
+
nl: 'Suriname',
|
|
2691
|
+
de: 'Suriname',
|
|
2692
|
+
},
|
|
2693
|
+
},
|
|
2694
|
+
{
|
|
2695
|
+
name: 'Svalbard and Jan Mayen',
|
|
2696
|
+
dial_code: '+47',
|
|
2697
|
+
code: 'SJ',
|
|
2698
|
+
zone: '',
|
|
2699
|
+
pattern: '',
|
|
2700
|
+
placeholder: '',
|
|
2701
|
+
translations: {
|
|
2702
|
+
fr: 'Svalbard et Jan Mayen',
|
|
2703
|
+
nl: 'Svalbard en Jan Mayen',
|
|
2704
|
+
de: 'Spitzbergen und Jan Mayen',
|
|
2705
|
+
},
|
|
2706
|
+
},
|
|
2707
|
+
{
|
|
2708
|
+
name: 'Swaziland',
|
|
2709
|
+
dial_code: '+268',
|
|
2710
|
+
code: 'SZ',
|
|
2711
|
+
zone: '',
|
|
2712
|
+
pattern: '',
|
|
2713
|
+
placeholder: '',
|
|
2714
|
+
translations: {
|
|
2715
|
+
fr: 'Swaziland',
|
|
2716
|
+
nl: 'Swaziland',
|
|
2717
|
+
de: 'Swasiland',
|
|
2718
|
+
},
|
|
2719
|
+
},
|
|
2720
|
+
{
|
|
2721
|
+
name: 'Sweden',
|
|
2722
|
+
dial_code: '+46',
|
|
2723
|
+
code: 'SE',
|
|
2724
|
+
zone: 'EU',
|
|
2725
|
+
pattern: 'SE[0-9]{12}',
|
|
2726
|
+
placeholder: 'SEXXXXXXXXXXXX',
|
|
2727
|
+
translations: {
|
|
2728
|
+
fr: 'Suède',
|
|
2729
|
+
nl: 'Zweden',
|
|
2730
|
+
de: 'Schweden',
|
|
2731
|
+
},
|
|
2732
|
+
},
|
|
2733
|
+
{
|
|
2734
|
+
name: 'Switzerland',
|
|
2735
|
+
dial_code: '+41',
|
|
2736
|
+
code: 'CH',
|
|
2737
|
+
zone: '',
|
|
2738
|
+
pattern: '',
|
|
2739
|
+
placeholder: '',
|
|
2740
|
+
translations: {
|
|
2741
|
+
fr: 'Suisse',
|
|
2742
|
+
nl: 'Zwitserland',
|
|
2743
|
+
de: 'Schweiz',
|
|
2744
|
+
},
|
|
2745
|
+
},
|
|
2746
|
+
{
|
|
2747
|
+
name: 'Syria',
|
|
2748
|
+
dial_code: '+963',
|
|
2749
|
+
code: 'SY',
|
|
2750
|
+
zone: '',
|
|
2751
|
+
pattern: '',
|
|
2752
|
+
placeholder: '',
|
|
2753
|
+
translations: {
|
|
2754
|
+
fr: 'Syrie',
|
|
2755
|
+
nl: 'Syrië',
|
|
2756
|
+
de: 'Syrien',
|
|
2757
|
+
},
|
|
2758
|
+
},
|
|
2759
|
+
{
|
|
2760
|
+
name: 'Taiwan',
|
|
2761
|
+
dial_code: '+886',
|
|
2762
|
+
code: 'TW',
|
|
2763
|
+
zone: '',
|
|
2764
|
+
pattern: '',
|
|
2765
|
+
placeholder: '',
|
|
2766
|
+
translations: {
|
|
2767
|
+
fr: 'Taïwan',
|
|
2768
|
+
nl: 'Taiwan',
|
|
2769
|
+
de: 'Taiwan',
|
|
2770
|
+
},
|
|
2771
|
+
},
|
|
2772
|
+
{
|
|
2773
|
+
name: 'Tajikistan',
|
|
2774
|
+
dial_code: '+992',
|
|
2775
|
+
code: 'TJ',
|
|
2776
|
+
zone: '',
|
|
2777
|
+
pattern: '',
|
|
2778
|
+
placeholder: '',
|
|
2779
|
+
translations: {
|
|
2780
|
+
fr: 'Tadjikistan',
|
|
2781
|
+
nl: 'Tadzjikistan',
|
|
2782
|
+
de: 'Tadschikistan',
|
|
2783
|
+
},
|
|
2784
|
+
},
|
|
2785
|
+
{
|
|
2786
|
+
name: 'Tanzania',
|
|
2787
|
+
dial_code: '+255',
|
|
2788
|
+
code: 'TZ',
|
|
2789
|
+
zone: '',
|
|
2790
|
+
pattern: '',
|
|
2791
|
+
placeholder: '',
|
|
2792
|
+
translations: {
|
|
2793
|
+
fr: 'Tanzanie',
|
|
2794
|
+
nl: 'Tanzania',
|
|
2795
|
+
de: 'Tansania',
|
|
2796
|
+
},
|
|
2797
|
+
},
|
|
2798
|
+
{
|
|
2799
|
+
name: "Thailand",
|
|
2800
|
+
dial_code: "+66",
|
|
2801
|
+
code: "TH",
|
|
2802
|
+
zone: '',
|
|
2803
|
+
pattern: '',
|
|
2804
|
+
placeholder: '',
|
|
2805
|
+
translations: {
|
|
2806
|
+
fr: "Thaïlande",
|
|
2807
|
+
nl: "Thailand",
|
|
2808
|
+
de: "Thailand"
|
|
2809
|
+
}
|
|
2810
|
+
},
|
|
2811
|
+
{
|
|
2812
|
+
name: "Timor-Leste",
|
|
2813
|
+
dial_code: "+670",
|
|
2814
|
+
code: "TL",
|
|
2815
|
+
zone: '',
|
|
2816
|
+
pattern: '',
|
|
2817
|
+
placeholder: '',
|
|
2818
|
+
translations: {
|
|
2819
|
+
fr: "Timor oriental",
|
|
2820
|
+
nl: "Oost-Timor",
|
|
2821
|
+
de: "Osttimor"
|
|
2822
|
+
}
|
|
2823
|
+
},
|
|
2824
|
+
{
|
|
2825
|
+
name: "Togo",
|
|
2826
|
+
dial_code: "+228",
|
|
2827
|
+
code: "TG",
|
|
2828
|
+
zone: '',
|
|
2829
|
+
pattern: '',
|
|
2830
|
+
placeholder: '',
|
|
2831
|
+
translations: {
|
|
2832
|
+
fr: "Togo",
|
|
2833
|
+
nl: "Togo",
|
|
2834
|
+
de: "Togo"
|
|
2835
|
+
}
|
|
2836
|
+
},
|
|
2837
|
+
{
|
|
2838
|
+
name: "Tokelau",
|
|
2839
|
+
dial_code: "+690",
|
|
2840
|
+
code: "TK",
|
|
2841
|
+
zone: '',
|
|
2842
|
+
pattern: '',
|
|
2843
|
+
placeholder: '',
|
|
2844
|
+
translations: {
|
|
2845
|
+
fr: "Tokelau",
|
|
2846
|
+
nl: "Tokelau-eilanden",
|
|
2847
|
+
de: "Tokelau"
|
|
2848
|
+
}
|
|
2849
|
+
},
|
|
2850
|
+
{
|
|
2851
|
+
name: "Tonga",
|
|
2852
|
+
dial_code: "+676",
|
|
2853
|
+
code: "TO",
|
|
2854
|
+
zone: '',
|
|
2855
|
+
pattern: '',
|
|
2856
|
+
placeholder: '',
|
|
2857
|
+
translations: {
|
|
2858
|
+
fr: "Tonga",
|
|
2859
|
+
nl: "Tonga",
|
|
2860
|
+
de: "Tonga"
|
|
2861
|
+
}
|
|
2862
|
+
},
|
|
2863
|
+
{
|
|
2864
|
+
name: "Trinidad and Tobago",
|
|
2865
|
+
dial_code: "+1868",
|
|
2866
|
+
code: "TT",
|
|
2867
|
+
zone: '',
|
|
2868
|
+
pattern: '',
|
|
2869
|
+
placeholder: '',
|
|
2870
|
+
translations: {
|
|
2871
|
+
fr: "Trinité-et-Tobago",
|
|
2872
|
+
nl: "Trinidad en Tobago",
|
|
2873
|
+
de: "Trinidad und Tobago"
|
|
2874
|
+
}
|
|
2875
|
+
},
|
|
2876
|
+
{
|
|
2877
|
+
name: "Tunisia",
|
|
2878
|
+
dial_code: "+216",
|
|
2879
|
+
code: "TN",
|
|
2880
|
+
zone: '',
|
|
2881
|
+
pattern: '',
|
|
2882
|
+
placeholder: '',
|
|
2883
|
+
translations: {
|
|
2884
|
+
fr: "Tunisie",
|
|
2885
|
+
nl: "Tunesië",
|
|
2886
|
+
de: "Tunesien"
|
|
2887
|
+
}
|
|
2888
|
+
},
|
|
2889
|
+
{
|
|
2890
|
+
name: "Turkey",
|
|
2891
|
+
dial_code: "+90",
|
|
2892
|
+
code: "TR",
|
|
2893
|
+
zone: '',
|
|
2894
|
+
pattern: '',
|
|
2895
|
+
placeholder: '',
|
|
2896
|
+
translations: {
|
|
2897
|
+
fr: "Turquie",
|
|
2898
|
+
nl: "Turkije",
|
|
2899
|
+
de: "Türkei"
|
|
2900
|
+
}
|
|
2901
|
+
},
|
|
2902
|
+
{
|
|
2903
|
+
name: "Turkmenistan",
|
|
2904
|
+
dial_code: "+993",
|
|
2905
|
+
code: "TM",
|
|
2906
|
+
zone: '',
|
|
2907
|
+
pattern: '',
|
|
2908
|
+
placeholder: '',
|
|
2909
|
+
translations: {
|
|
2910
|
+
fr: "Turkménistan",
|
|
2911
|
+
nl: "Turkmenistan",
|
|
2912
|
+
de: "Turkmenistan"
|
|
2913
|
+
}
|
|
2914
|
+
},
|
|
2915
|
+
{
|
|
2916
|
+
name: "Turks and Caicos Islands",
|
|
2917
|
+
dial_code: "+1649",
|
|
2918
|
+
code: "TC",
|
|
2919
|
+
zone: '',
|
|
2920
|
+
pattern: '',
|
|
2921
|
+
placeholder: '',
|
|
2922
|
+
translations: {
|
|
2923
|
+
fr: "Îles Turques-et-Caïques",
|
|
2924
|
+
nl: "Turks- en Caicoseilanden",
|
|
2925
|
+
de: "Turks- und Caicosinseln"
|
|
2926
|
+
}
|
|
2927
|
+
},
|
|
2928
|
+
{
|
|
2929
|
+
name: "Tuvalu",
|
|
2930
|
+
dial_code: "+688",
|
|
2931
|
+
code: "TV",
|
|
2932
|
+
zone: '',
|
|
2933
|
+
pattern: '',
|
|
2934
|
+
placeholder: '',
|
|
2935
|
+
translations: {
|
|
2936
|
+
fr: "Tuvalu",
|
|
2937
|
+
nl: "Tuvalu",
|
|
2938
|
+
de: "Tuvalu"
|
|
2939
|
+
}
|
|
2940
|
+
},
|
|
2941
|
+
{
|
|
2942
|
+
name: "Uganda",
|
|
2943
|
+
dial_code: "+256",
|
|
2944
|
+
code: "UG",
|
|
2945
|
+
zone: '',
|
|
2946
|
+
pattern: '',
|
|
2947
|
+
placeholder: '',
|
|
2948
|
+
translations: {
|
|
2949
|
+
fr: "Ouganda",
|
|
2950
|
+
nl: "Oeganda",
|
|
2951
|
+
de: "Uganda"
|
|
2952
|
+
}
|
|
2953
|
+
},
|
|
2954
|
+
{
|
|
2955
|
+
name: "Ukraine",
|
|
2956
|
+
dial_code: "+380",
|
|
2957
|
+
code: "UA",
|
|
2958
|
+
zone: '',
|
|
2959
|
+
pattern: '',
|
|
2960
|
+
placeholder: '',
|
|
2961
|
+
translations: {
|
|
2962
|
+
fr: "Ukraine",
|
|
2963
|
+
nl: "Oekraïne",
|
|
2964
|
+
de: "Ukraine"
|
|
2965
|
+
}
|
|
2966
|
+
},
|
|
2967
|
+
{
|
|
2968
|
+
name: "United Arab Emirates",
|
|
2969
|
+
dial_code: "+971",
|
|
2970
|
+
code: "AE",
|
|
2971
|
+
zone: '',
|
|
2972
|
+
pattern: '',
|
|
2973
|
+
placeholder: '',
|
|
2974
|
+
translations: {
|
|
2975
|
+
fr: "Émirats arabes unis",
|
|
2976
|
+
nl: "Verenigde Arabische Emiraten",
|
|
2977
|
+
de: "Vereinigte Arabische Emirate"
|
|
2978
|
+
}
|
|
2979
|
+
},
|
|
2980
|
+
{
|
|
2981
|
+
name: "United Kingdom",
|
|
2982
|
+
dial_code: "+44",
|
|
2983
|
+
code: "GB",
|
|
2984
|
+
zone: 'EU',
|
|
2985
|
+
pattern: 'GB([0-9]{9}([0-9]{3})?',
|
|
2986
|
+
placeholder: 'GBXXXXXXXXXXXX',
|
|
2987
|
+
translations: {
|
|
2988
|
+
fr: "Royaume-Uni",
|
|
2989
|
+
nl: "Verenigd Koninkrijk",
|
|
2990
|
+
de: "Vereinigtes Königreich"
|
|
2991
|
+
}
|
|
2992
|
+
},
|
|
2993
|
+
{
|
|
2994
|
+
name: "United States",
|
|
2995
|
+
dial_code: "+1",
|
|
2996
|
+
code: "US",
|
|
2997
|
+
zone: '',
|
|
2998
|
+
pattern: '',
|
|
2999
|
+
placeholder: '',
|
|
3000
|
+
translations: {
|
|
3001
|
+
fr: "États-Unis",
|
|
3002
|
+
nl: "Verenigde Staten",
|
|
3003
|
+
de: "Vereinigte Staaten"
|
|
3004
|
+
}
|
|
3005
|
+
},
|
|
3006
|
+
{
|
|
3007
|
+
name: "Uruguay",
|
|
3008
|
+
dial_code: "+598",
|
|
3009
|
+
code: "UY",
|
|
3010
|
+
zone: '',
|
|
3011
|
+
pattern: '',
|
|
3012
|
+
placeholder: '',
|
|
3013
|
+
translations: {
|
|
3014
|
+
fr: "Uruguay",
|
|
3015
|
+
nl: "Uruguay",
|
|
3016
|
+
de: "Uruguay"
|
|
3017
|
+
}
|
|
3018
|
+
},
|
|
3019
|
+
{
|
|
3020
|
+
name: "Uzbekistan",
|
|
3021
|
+
dial_code: "+998",
|
|
3022
|
+
code: "UZ",
|
|
3023
|
+
zone: '',
|
|
3024
|
+
pattern: '',
|
|
3025
|
+
placeholder: '',
|
|
3026
|
+
translations: {
|
|
3027
|
+
fr: "Ouzbékistan",
|
|
3028
|
+
nl: "Oezbekistan",
|
|
3029
|
+
de: "Usbekistan"
|
|
3030
|
+
}
|
|
3031
|
+
},
|
|
3032
|
+
{
|
|
3033
|
+
name: "Vanuatu",
|
|
3034
|
+
dial_code: "+678",
|
|
3035
|
+
code: "VU",
|
|
3036
|
+
zone: '',
|
|
3037
|
+
pattern: '',
|
|
3038
|
+
placeholder: '',
|
|
3039
|
+
translations: {
|
|
3040
|
+
fr: "Vanuatu",
|
|
3041
|
+
nl: "Vanuatu",
|
|
3042
|
+
de: "Vanuatu"
|
|
3043
|
+
}
|
|
3044
|
+
},
|
|
3045
|
+
{
|
|
3046
|
+
name: "Venezuela, Bolivarian Republic of Venezuela",
|
|
3047
|
+
dial_code: "+58",
|
|
3048
|
+
code: "VE",
|
|
3049
|
+
zone: '',
|
|
3050
|
+
pattern: '',
|
|
3051
|
+
placeholder: '',
|
|
3052
|
+
translations: {
|
|
3053
|
+
fr: "Venezuela",
|
|
3054
|
+
nl: "Venezuela",
|
|
3055
|
+
de: "Venezuela"
|
|
3056
|
+
}
|
|
3057
|
+
},
|
|
3058
|
+
{
|
|
3059
|
+
name: "Vietnam",
|
|
3060
|
+
dial_code: "+84",
|
|
3061
|
+
code: "VN",
|
|
3062
|
+
zone: '',
|
|
3063
|
+
pattern: '',
|
|
3064
|
+
placeholder: '',
|
|
3065
|
+
translations: {
|
|
3066
|
+
fr: "Viêt Nam",
|
|
3067
|
+
nl: "Vietnam",
|
|
3068
|
+
de: "Vietnam"
|
|
3069
|
+
}
|
|
3070
|
+
},
|
|
3071
|
+
{
|
|
3072
|
+
name: "Virgin Islands, British",
|
|
3073
|
+
dial_code: "+1284",
|
|
3074
|
+
code: "VG",
|
|
3075
|
+
zone: '',
|
|
3076
|
+
pattern: '',
|
|
3077
|
+
placeholder: '',
|
|
3078
|
+
translations: {
|
|
3079
|
+
fr: "Îles Vierges britanniques",
|
|
3080
|
+
nl: "Britse Maagdeneilanden",
|
|
3081
|
+
de: "Britische Jungferninseln"
|
|
3082
|
+
}
|
|
3083
|
+
},
|
|
3084
|
+
{
|
|
3085
|
+
name: "Virgin Islands, U.S.",
|
|
3086
|
+
dial_code: "+1340",
|
|
3087
|
+
code: "VI",
|
|
3088
|
+
zone: '',
|
|
3089
|
+
pattern: '',
|
|
3090
|
+
placeholder: '',
|
|
3091
|
+
translations: {
|
|
3092
|
+
fr: "Îles Vierges des États-Unis",
|
|
3093
|
+
nl: "Amerikaanse Maagdeneilanden",
|
|
3094
|
+
de: "Amerikanische Jungferninseln"
|
|
3095
|
+
}
|
|
3096
|
+
},
|
|
3097
|
+
{
|
|
3098
|
+
name: "Wallis and Futuna",
|
|
3099
|
+
dial_code: "+681",
|
|
3100
|
+
code: "WF",
|
|
3101
|
+
zone: '',
|
|
3102
|
+
pattern: '',
|
|
3103
|
+
placeholder: '',
|
|
3104
|
+
translations: {
|
|
3105
|
+
fr: "Wallis-et-Futuna",
|
|
3106
|
+
nl: "Wallis en Futuna",
|
|
3107
|
+
de: "Wallis und Futuna"
|
|
3108
|
+
}
|
|
3109
|
+
},
|
|
3110
|
+
{
|
|
3111
|
+
name: "Yemen",
|
|
3112
|
+
dial_code: "+967",
|
|
3113
|
+
code: "YE",
|
|
3114
|
+
zone: '',
|
|
3115
|
+
pattern: '',
|
|
3116
|
+
placeholder: '',
|
|
3117
|
+
translations: {
|
|
3118
|
+
fr: "Yémen",
|
|
3119
|
+
nl: "Jemen",
|
|
3120
|
+
de: "Jemen"
|
|
3121
|
+
}
|
|
3122
|
+
},
|
|
3123
|
+
{
|
|
3124
|
+
name: "Zambia",
|
|
3125
|
+
dial_code: "+260",
|
|
3126
|
+
code: "ZM",
|
|
3127
|
+
zone: '',
|
|
3128
|
+
pattern: '',
|
|
3129
|
+
placeholder: '',
|
|
3130
|
+
translations: {
|
|
3131
|
+
fr: "Zambie",
|
|
3132
|
+
nl: "Zambia",
|
|
3133
|
+
de: "Sambia"
|
|
3134
|
+
}
|
|
3135
|
+
},
|
|
3136
|
+
{
|
|
3137
|
+
name: "Zimbabwe",
|
|
3138
|
+
dial_code: "+263",
|
|
3139
|
+
code: "ZW",
|
|
3140
|
+
zone: '',
|
|
3141
|
+
pattern: '',
|
|
3142
|
+
placeholder: '',
|
|
3143
|
+
translations: {
|
|
3144
|
+
fr: "Zimbabwe",
|
|
3145
|
+
nl: "Zimbabwe",
|
|
3146
|
+
de: "Simbabwe"
|
|
3147
|
+
}
|
|
3148
|
+
}
|
|
3149
|
+
];
|
|
3150
|
+
|
|
3151
|
+
export function getTranslatedCountryName(country: OnemrvaMaterialCountry, languageCode : string ) {
|
|
3152
|
+
if (languageCode === "fr" || languageCode === "nl" || languageCode === "de") {
|
|
3153
|
+
if (country.translations[languageCode] !== undefined) return country.translations[languageCode];
|
|
3154
|
+
}
|
|
3155
|
+
return country.name;
|
|
3156
|
+
}
|
|
3157
|
+
|
|
3158
|
+
export function getTranslatedCountries( languageCode : string) : OnemrvaMaterialCountry[] {
|
|
3159
|
+
const translatedCountries = countries.slice().map(country => {
|
|
3160
|
+
const translatedName = getTranslatedCountryName(country, languageCode);
|
|
3161
|
+
return { ...country, name: translatedName};
|
|
3162
|
+
});
|
|
3163
|
+
return translatedCountries;
|
|
3164
|
+
}
|
|
3165
|
+
|
|
3166
|
+
export function getEuropeanTranslatedCountries( languageCode : string) : OnemrvaMaterialCountry[] {
|
|
3167
|
+
const translatedCountries = countries.slice().filter(
|
|
3168
|
+
(country) => country.zone === 'EU'
|
|
3169
|
+
).map(country => {
|
|
3170
|
+
const translatedName = getTranslatedCountryName(country, languageCode);
|
|
3171
|
+
return { ...country, name: translatedName};
|
|
3172
|
+
});
|
|
3173
|
+
return translatedCountries;
|
|
3174
|
+
}
|
|
3175
|
+
|
|
3176
|
+
|
|
3177
|
+
|
|
3178
|
+
|
|
3179
|
+
|
|
3180
|
+
|
|
3181
|
+
|
|
3182
|
+
|