diff --git a/CHANGELOG.md b/CHANGELOG.md index 5875980..3264531 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [2.0.5] - 2024-10-18 + +### Added + +- Added turkish (`tr`) language support + +### Changed + +### Fixed ## [2.0.4] - 2022-05-10 diff --git a/locales/locale.js b/locales/locale.js index f6f0944..c2758f6 100644 --- a/locales/locale.js +++ b/locales/locale.js @@ -9,16 +9,18 @@ import trES from "./es/common.json" import trAR from "./ar/common.json" import trJA from "./ja/common.json" import trZH from "./zh/common.json" +import trTR from "./tr/common.json" const resources = { - en: { common: trEN }, - fr: { common: trFR }, - ko: { common: trKO }, - de: { common: trDE }, - es: { common: trES }, - ar: { common: trAR }, - ja: { common: trJA }, - zh: { common: trZH } + en: { common: trEN }, + fr: { common: trFR }, + ko: { common: trKO }, + de: { common: trDE }, + es: { common: trES }, + ar: { common: trAR }, + ja: { common: trJA }, + zh: { common: trZH }, + tr: { common: trTR} } i18n diff --git a/locales/tr/common.json b/locales/tr/common.json new file mode 100644 index 0000000..0343865 --- /dev/null +++ b/locales/tr/common.json @@ -0,0 +1,14 @@ +{ + "day": "Gün", + "week": "Hafta", + "month": "Ay", + "timeline": "Zaman Akışı", + "mon": "Pzt", + "tue": "Sal", + "wed": "Çar", + "thu": "Per", + "fri": "Cum", + "sat": "Cmt", + "sun": "Paz", + "search": "Ara..." +} \ No newline at end of file