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 time translation to the translations.txt file #9

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
35 changes: 35 additions & 0 deletions translations.txt
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,41 @@ Language: Portuguese (contributed by Carlos Moutinho)
]
};

Language: Turkish (contributed by Fatih AYTAÇ)

SETTINGS = {
time_ranges: [
{bound: Number.NEGATIVE_INFINITY,
cuteness: 'gelecekte!', unit_size: 0},
{bound: 0,
cuteness: 'az önce', unit_size: 0},
{bound: 20 * 1000,
cuteness: 'birkaç saniye önce', unit_size: 0},
{bound: 60 * 1000,
cuteness: 'bir dakika önce', unit_size: 0},
{bound: 60 * 1000 * 2,
cuteness: ' dakika önce', unit_size: 60 * 1000},
{bound: 60 * 1000 * 60,
cuteness: 'bir saat önce', unit_size: 0},
{bound: 60 * 1000 * 60 * 2,
cuteness: ' saat önce', unit_size: 60 * 1000 * 60},
{bound: 60 * 1000 * 60 * 24,
cuteness: 'dün', unit_size: 0},
{bound: 60 * 1000 * 60 * 24 * 2,
cuteness: ' gün önce', unit_size: 60 * 1000 * 60 * 24},
{bound: 60 * 1000 * 60 * 24 * 30,
cuteness: 'geçen ay', unit_size: 0},
{bound: 60 * 1000 * 60 * 24 * 30 * 2,
cuteness: ' ay önce', unit_size: 60 * 1000 * 60 * 24 * 30},
{bound: 60 * 1000 * 60 * 24 * 30 * 12,
cuteness: 'geçen yıl', unit_size: 0},
{bound: 60 * 1000 * 60 * 24 * 30 * 12 * 2,
cuteness: ' yıl önce', unit_size: 60 * 1000 * 60 * 24 * 30 * 12},
{bound: Number.POSITIVE_INFINITY,
cuteness: 'yıllar önce', unit_size: 0}
]
};



***********************************************************
Expand Down