Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Turkish Language Support #23

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
18 changes: 10 additions & 8 deletions locales/locale.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
14 changes: 14 additions & 0 deletions locales/tr/common.json
Original file line number Diff line number Diff line change
@@ -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..."
}