diff --git a/README.md b/README.md index b4ef599..4ec7f7c 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ npm install vue-stepper --save | Properties | Type | Values | | :--------------- | :------- | :--------- | | `steps` | Array of Objects | Each object is a step that will be included in the stepper | -| `locale` | String | Default: `en`. Current options: `en`, `es`, `pt`, `ja`, `he`, `cn`, `ru` , `ar`. | +| `locale` | String | Default: `en`. Current options: `en`, `es`, `pt`, `ja`, `he`, `cn`, `ru` , `ar`, `nl`, `sv`, `dk`. | | `top-buttons` | Boolean | Default: `false`. If `true` buttons on the header, at the start and the end of the steps, will be shown for better user experience. | | `keep-alive` | Boolean | Default: `true`. If `true` step components won't be destroy in each step change, bue if `false` they will. | | `reset` | Boolean | Default: `false`. If `true` the steps will be reset | diff --git a/src/Translations.js b/src/Translations.js index f40808d..789e7ed 100644 --- a/src/Translations.js +++ b/src/Translations.js @@ -48,5 +48,10 @@ export default { next: 'Nästa', back: 'Tillbaka', finish: 'Skicka' + }, + dk: { + next: 'Næste', + back: 'Tilbage', + finish: 'Afslut' } }