forked from NG-ZORRO/ng-zorro-antd
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(module:i18n): support Malay and Tamil language (NG-ZORRO#3924)
- Loading branch information
Showing
15 changed files
with
322 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/** | ||
* @license | ||
* Copyright Alibaba.com All Rights Reserved. | ||
* | ||
* Use of this source code is governed by an MIT-style license that can be | ||
* found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE | ||
*/ | ||
|
||
export default { | ||
today: 'இன்று', | ||
now: 'இப்போது', | ||
backToToday: 'இன்றுக்கு திரும்பு', | ||
ok: 'சரி', | ||
clear: 'அழி', | ||
month: 'மாதம்', | ||
year: 'வருடம்', | ||
timeSelect: 'நேரத்தைத் தேர்ந்தெடு', | ||
dateSelect: 'தேதியைத் தேர்ந்தெடு', | ||
weekSelect: 'வாரத்தைத் தேர்வுசெய்க', | ||
monthSelect: 'மாதத்தைத் தேர்வுசெய்க', | ||
yearSelect: 'வருடத்தைத் தேர்வுசெய்க', | ||
decadeSelect: 'தசாப்தத்தைத் தேர்வுசெய்க', | ||
yearFormat: 'YYYY', | ||
dateFormat: 'M/D/YYYY', | ||
dayFormat: 'D', | ||
dateTimeFormat: 'M/D/YYYY HH:mm:ss', | ||
monthBeforeYear: true, | ||
previousMonth: 'முந்தைய மாதம் (PageUp)', | ||
nextMonth: 'அடுத்த மாதம் (PageDown)', | ||
previousYear: 'முந்தைய வருடம் (Control + left)', | ||
nextYear: 'அடுத்த வருடம் (Control + right)', | ||
previousDecade: 'முந்தைய தசாப்தம்', | ||
nextDecade: 'அடுத்த தசாப்தம்', | ||
previousCentury: 'முந்தைய நூற்றாண்டு', | ||
nextCentury: 'அடுத்த நூற்றாண்டு' | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/** | ||
* @license | ||
* Copyright Alibaba.com All Rights Reserved. | ||
* | ||
* Use of this source code is governed by an MIT-style license that can be | ||
* found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE | ||
*/ | ||
|
||
import CalendarLocale from '../calendar/ms_MY'; | ||
import TimePickerLocale from '../time-picker/ms_MY'; | ||
|
||
// Merge into a locale object | ||
const locale = { | ||
lang: { | ||
placeholder: 'Pilih tarikh', | ||
rangePlaceholder: ['Tarikh mula', 'Tarikh akhir'], | ||
...CalendarLocale | ||
}, | ||
timePickerLocale: { | ||
...TimePickerLocale | ||
} | ||
}; | ||
|
||
// All settings at: | ||
// https://github.com/ant-design/ant-design/blob/master/components/date-picker/locale/example.json | ||
|
||
export default locale; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/** | ||
* @license | ||
* Copyright Alibaba.com All Rights Reserved. | ||
* | ||
* Use of this source code is governed by an MIT-style license that can be | ||
* found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE | ||
*/ | ||
|
||
import CalendarLocale from '../calendar/ta_IN'; | ||
import TimePickerLocale from '../time-picker/ta_IN'; | ||
|
||
// Merge into a locale object | ||
const locale = { | ||
lang: { | ||
placeholder: 'தேதியைத் தேர்ந்தெடுக்கவும்', | ||
rangePlaceholder: ['தொடக்க தேதி', 'கடைசி தேதி'], | ||
...CalendarLocale | ||
}, | ||
timePickerLocale: { | ||
...TimePickerLocale | ||
} | ||
}; | ||
|
||
// All settings at: | ||
// https://github.com/ant-design/ant-design/blob/master/components/date-picker/locale/example.json | ||
|
||
export default locale; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
/** | ||
* @license | ||
* Copyright Alibaba.com All Rights Reserved. | ||
* | ||
* Use of this source code is governed by an MIT-style license that can be | ||
* found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE | ||
*/ | ||
|
||
import Calendar from './calendar/ms_MY'; | ||
import DatePicker from './date-picker/ms_MY'; | ||
import Pagination from './pagination/ms_MY'; | ||
import TimePicker from './time-picker/ms_MY'; | ||
|
||
export default { | ||
locale: 'ms-my', | ||
Pagination, | ||
DatePicker, | ||
TimePicker, | ||
Calendar, | ||
global: { | ||
placeholder: 'Sila pilih' | ||
}, | ||
PageHeader: { | ||
back: 'Kembali' | ||
}, | ||
Text: { | ||
edit: 'Sunting', | ||
copy: 'Salin', | ||
copied: 'Berjaya menyalin', | ||
expand: 'Kembang' | ||
}, | ||
Empty: { | ||
description: 'Tiada data' | ||
}, | ||
Table: { | ||
filterTitle: 'Cari dengan tajuk', | ||
filterConfirm: 'Ok', | ||
filterReset: 'Menetapkan semula', | ||
emptyText: 'Tiada data', | ||
selectAll: 'Pilih semua', | ||
selectInvert: 'Terbalikkan' | ||
}, | ||
Modal: { | ||
okText: 'OK', | ||
cancelText: 'Batal', | ||
justOkText: 'OK' | ||
}, | ||
Popconfirm: { | ||
okText: 'OK', | ||
cancelText: 'Batal' | ||
}, | ||
Transfer: { | ||
notFoundContent: 'Tidak dijumpai', | ||
searchPlaceholder: 'Carian di sini', | ||
itemUnit: 'item', | ||
itemsUnit: 'item' | ||
}, | ||
Icon: { | ||
icon: 'ikon' | ||
}, | ||
Select: { | ||
notFoundContent: 'Tidak Dijumpai' | ||
}, | ||
Upload: { | ||
uploading: 'Sedang memuat naik...', | ||
removeFile: 'Buang fail', | ||
uploadError: 'Masalah muat naik', | ||
previewFile: 'Tengok fail' | ||
} | ||
}; |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/** | ||
* @license | ||
* Copyright Alibaba.com All Rights Reserved. | ||
* | ||
* Use of this source code is governed by an MIT-style license that can be | ||
* found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE | ||
*/ | ||
|
||
export default { | ||
// Options.jsx | ||
items_per_page: '/ பக்கம்', | ||
jump_to: 'அடுத்த', | ||
jump_to_confirm: 'உறுதிப்படுத்தவும்', | ||
page: '', | ||
|
||
// Pagination.jsx | ||
prev_page: 'முந்தைய பக்கம்', | ||
next_page: 'அடுத்த பக்கம்', | ||
prev_5: 'முந்தைய 5 பக்கங்கள்', | ||
next_5: 'அடுத்த 5 பக்கங்கள்', | ||
prev_3: 'முந்தைய 3 பக்கங்கள்', | ||
next_3: 'அடுத்த 3 பக்கங்கள்' | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
/** | ||
* @license | ||
* Copyright Alibaba.com All Rights Reserved. | ||
* | ||
* Use of this source code is governed by an MIT-style license that can be | ||
* found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE | ||
*/ | ||
|
||
import Calendar from './calendar//ta_IN'; | ||
import DatePicker from './date-picker/ta_IN'; | ||
import Pagination from './pagination/ta_IN'; | ||
import TimePicker from './time-picker/ta_IN'; | ||
|
||
export default { | ||
locale: 'ta', | ||
Pagination, | ||
DatePicker, | ||
TimePicker, | ||
Calendar, | ||
// locales for all comoponents | ||
global: { | ||
placeholder: 'தேதியைத் தேர்ந்தெடுக்கவும்' | ||
}, | ||
Table: { | ||
filterTitle: 'பட்டியலை மூடு', | ||
filterConfirm: 'சரி', | ||
filterReset: 'மீட்டமை', | ||
emptyText: 'தகவல் இல்லை', | ||
selectAll: 'அனைத்தையும் தேர்வுசெய்', | ||
selectInvert: 'தலைகீழாக மாற்று', | ||
sortTitle: 'தலைப்பை வரிசைப்படுத்தவும்' | ||
}, | ||
Modal: { | ||
okText: 'சரி', | ||
cancelText: 'ரத்து செய்யவும்', | ||
justOkText: 'பரவாயில்லை, சரி' | ||
}, | ||
Popconfirm: { | ||
okText: 'சரி', | ||
cancelText: 'ரத்து செய்யவும்' | ||
}, | ||
Transfer: { | ||
titles: ['', ''], | ||
notFoundContent: 'உள்ளடக்கம் கிடைக்கவில்லை', | ||
searchPlaceholder: 'இங்கு தேடவும்', | ||
itemUnit: 'தகவல்', | ||
itemsUnit: 'தகவல்கள்' | ||
}, | ||
Upload: { | ||
uploading: 'பதிவேற்றுகிறது...', | ||
removeFile: 'கோப்பை அகற்று', | ||
uploadError: 'பதிவேற்றுவதில் பிழை', | ||
previewFile: 'கோப்பை முன்னோட்டமிடுங்கள்' | ||
}, | ||
Empty: { | ||
description: 'தகவல் இல்லை' | ||
}, | ||
Icon: { | ||
icon: 'உருவம்' | ||
}, | ||
Text: { | ||
edit: 'திருத்து', | ||
copy: 'நகல் எடு', | ||
copied: 'நகல் எடுக்கப்பட்டது', | ||
expand: 'விரிவாக்கவும்' | ||
}, | ||
PageHeader: { | ||
back: 'பின் செல்லவும்' | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/** | ||
* @license | ||
* Copyright Alibaba.com All Rights Reserved. | ||
* | ||
* Use of this source code is governed by an MIT-style license that can be | ||
* found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE | ||
*/ | ||
|
||
const locale = { | ||
placeholder: 'Sila pilih masa' | ||
}; | ||
|
||
export default locale; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/** | ||
* @license | ||
* Copyright Alibaba.com All Rights Reserved. | ||
* | ||
* Use of this source code is governed by an MIT-style license that can be | ||
* found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE | ||
*/ | ||
|
||
const locale = { | ||
placeholder: 'நேரத்தைத் தேர்ந்தெடுக்கவும்' | ||
}; | ||
|
||
export default locale; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.