Skip to content

Commit d2d7382

Browse files
authored
Merge pull request #16 from evgeny-i/russian-translation
added Russian Translations
2 parents 813aa16 + f4ec070 commit d2d7382

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ npm install vue-stepper --save
2121
| Properties | Type | Values |
2222
| :--------------- | :------- | :--------- |
2323
| `steps` | Array of Objects | Each object is a step that will be included in the stepper |
24-
| `locale` | String | Default: `en`. Current options: `en`, `es`. |
24+
| `locale` | String | Default: `en`. Current options: `en`, `es`, `pt`, `ja`, `he`, `cn`, `ru`. |
2525
| `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. |
2626
| `keep-alive` | Boolean | Default: `true`. If `true` step components won't be destroy in each step change, bue if `false` they will. |
2727

src/Translations.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,10 @@ export default {
2828
next: '下一步',
2929
back: '返回',
3030
finish: '完成'
31+
},
32+
ru: {
33+
next: 'Вперед',
34+
back: 'Назад',
35+
finish: 'Готово'
3136
}
3237
}

0 commit comments

Comments
 (0)