Skip to content

Commit 56f07a0

Browse files
committed
Adds Macedonian language support
1 parent 7056546 commit 56f07a0

File tree

3 files changed

+13
-0
lines changed

3 files changed

+13
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -355,6 +355,7 @@ Available languages
355355
| lb | Luxembourgish | |
356356
| lt | Lithuanian | |
357357
| lv | Latvian | |
358+
| mk | Macedonian | |
358359
| mn | Mongolian | |
359360
| nbNO | Norwegian Bokmål | |
360361
| nl | Dutch | |

src/locale/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ import ko from './translations/ko'
2828
import lb from './translations/lb'
2929
import lt from './translations/lt'
3030
import lv from './translations/lv'
31+
import mk from './translations/mk'
3132
import mn from './translations/mn'
3233
import nbNO from './translations/nb-NO'
3334
import nl from './translations/nl'
@@ -78,6 +79,7 @@ export {
7879
lb,
7980
lt,
8081
lv,
82+
mk,
8183
mn,
8284
nbNO,
8385
nl,

src/locale/translations/mk.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import Language from '../Language'
2+
3+
export default new Language(
4+
'Macedonian',
5+
['Јануари', 'Февруари', 'Март', 'Април', 'Мај', 'Јуни', 'Јули', 'Август', 'Септември', 'Октомври', 'Ноември', 'Декември'],
6+
['Јан', 'Фев', 'Мар', 'Апр', 'Мај', 'Јун', 'Јул', 'Авг', 'Сеп', 'Окт', 'Ное', 'Дек'],
7+
['Нед', 'Пон', 'Вто', 'Сре', 'Чет', 'Пет', 'Саб']
8+
)
9+
// eslint-disable-next-line
10+
;

0 commit comments

Comments
 (0)