From 08e837bf5559e9680fc8cb99bd05b93f8eb2cac5 Mon Sep 17 00:00:00 2001 From: Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> Date: Thu, 12 Aug 2021 20:09:35 +0200 Subject: :sparkles: api --- api/locales/tr/auth.json | 16 ++++++++++++++++ api/locales/tr/common.json | 18 ++++++++++++++++++ api/locales/tr/tr | 18 ++++++++++++++++++ 3 files changed, 52 insertions(+) create mode 100644 api/locales/tr/auth.json create mode 100644 api/locales/tr/common.json create mode 100644 api/locales/tr/tr (limited to 'api/locales/tr') diff --git a/api/locales/tr/auth.json b/api/locales/tr/auth.json new file mode 100644 index 00000000..80c06600 --- /dev/null +++ b/api/locales/tr/auth.json @@ -0,0 +1,16 @@ +{ + "login": { + "INVALID_LOGIN": "Eposta veya Telefon Numarası bulunamadı", + "INVALID_PASSWORD": "Geçersiz Şifre", + "ACCOUNT_DISABLED": "This account is disabled" + }, + "register": { + "REGISTRATION_DISABLED": "Yeni kullanıcı alımı devre dışı bırakıldı", + "INVITE_ONLY": "Kayıt olabilmek için davet edilmelisin", + "EMAIL_INVALID": "Geçersiz Eposta", + "EMAIL_ALREADY_REGISTERED": "Bu Eposta zaten kayıtlı", + "DATE_OF_BIRTH_UNDERAGE": "{{years}} yaşında veya daha büyük olmalısın", + "CONSENT_REQUIRED": "Hizmet Şartları ve Gizlilik Politikasını kabul etmelisin.", + "USERNAME_TOO_MANY_USERS": "Çok fazla kullanıcı bu kullanıcı adını kullanıyor, lütfen başka bir kullanıcı adı dene" + } +} diff --git a/api/locales/tr/common.json b/api/locales/tr/common.json new file mode 100644 index 00000000..b113453e --- /dev/null +++ b/api/locales/tr/common.json @@ -0,0 +1,18 @@ +{ + "field": { + "BASE_TYPE_REQUIRED": "Bu alan gereklidir", + "BASE_TYPE_STRING": "Bu alan bir metin (string) olmalı", + "BASE_TYPE_NUMBER": "Bu alan bir sayı olmalı", + "BASE_TYPE_BIGINT": "Bu alan büyük integer (bkz. bigint) değeri olmalıdır", + "BASE_TYPE_BOOLEAN": "Bu alan mantıksal değer (boolean) olmalıdır", + "BASE_TYPE_CHOICES": "Bu alan ({{types}}) lardan biri olmak zorunda", + "BASE_TYPE_CLASS": "Bu alan {{type}} türünden olmalı", + "BASE_TYPE_OBJECT": "Bu alan bir obje olmalı", + "BASE_TYPE_ARRAY": "Bu alan bir dizi (array) olmalı", + "UNKOWN_FIELD": "Bilinmeyen anahtar: {{key}}", + "BASE_TYPE_CONSTANT": "Bu alan {{value}} olmalı", + "EMAIL_TYPE_INVALID_EMAIL": "Geçerli bir e-posta adresi değil", + "DATE_TYPE_PARSE": "{{date}} işlenemiyor. ISO8601 standartlarında olmalı", + "BASE_TYPE_BAD_LENGTH": "Uzunluğu {{length}} olmalı" + } +} \ No newline at end of file diff --git a/api/locales/tr/tr b/api/locales/tr/tr new file mode 100644 index 00000000..7a0254fc --- /dev/null +++ b/api/locales/tr/tr @@ -0,0 +1,18 @@ +{ + "field": { + "BASE_TYPE_REQUIRED": "This field is required", + "BASE_TYPE_STRING": "This field must be a string", + "BASE_TYPE_NUMBER": "This field must be a number", + "BASE_TYPE_BIGINT": "This field must be a bigint", + "BASE_TYPE_BOOLEAN": "This field must be a boolean", + "BASE_TYPE_CHOICES": "This field must be one of ({{types}})", + "BASE_TYPE_CLASS": "This field must be an instance of {{type}}", + "BASE_TYPE_OBJECT": "This field must be a object", + "BASE_TYPE_ARRAY": "This field must be an array", + "UNKOWN_FIELD": "Unkown key: {{key}}", + "BASE_TYPE_CONSTANT": "This field must be {{value}}", + "EMAIL_TYPE_INVALID_EMAIL": "Not a well formed email address", + "DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601", + "BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length" + } +} \ No newline at end of file -- cgit 1.4.1