diff --git a/README.md b/README.md index b4ef599..f52ec8b 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`, `de`. | | `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..d69a0b0 100644 --- a/src/Translations.js +++ b/src/Translations.js @@ -48,5 +48,10 @@ export default { next: 'Nästa', back: 'Tillbaka', finish: 'Skicka' + }, + de: { + next: 'Weiter', + back: 'Zurück', + finish: 'Beenden' } }