-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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 for Georgian locale (#4491)
* feat(module:i18n): support for Georgian locale * fix(module:i18n): Update i18n.zh-CN.md Update Georgian translate * fix(module:i18n): fix date format
- Loading branch information
Showing
8 changed files
with
169 additions
and
0 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: 'D.M.YYYY', | ||
dayFormat: 'D', | ||
dateTimeFormat: 'D.M.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/ka_GE'; | ||
import TimePickerLocale from '../time-picker/ka_GE'; | ||
|
||
// 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
/** | ||
* @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/ka_GE'; | ||
import DatePicker from './date-picker/ka_GE'; | ||
import Pagination from './pagination/ka_GE'; | ||
import TimePicker from './time-picker/ka_GE'; | ||
|
||
export default { | ||
locale: 'ka', | ||
Pagination, | ||
DatePicker, | ||
TimePicker, | ||
Calendar, | ||
global: { | ||
placeholder: 'აირჩიეთ' | ||
}, | ||
Table: { | ||
filterTitle: 'ფილტრი', | ||
filterConfirm: 'დიახ', | ||
filterReset: 'განულება', | ||
selectAll: 'აირჩიეთ მიმდინარე გვერდი', | ||
selectInvert: 'გვერდის მიმართულების შეცვლა', | ||
sortTitle: 'სორტირება' | ||
}, | ||
Modal: { | ||
okText: 'დიახ', | ||
cancelText: 'გაუქმება', | ||
justOkText: 'დიახ' | ||
}, | ||
Popconfirm: { | ||
okText: 'დიახ', | ||
cancelText: 'გაუქმება' | ||
}, | ||
Transfer: { | ||
titles: ['', ''], | ||
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,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
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
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