Skip to content

Commit cca6746

Browse files
authored
feat(plugin-seo): add Turkish translation v3 (#8993)
1 parent 4349b78 commit cca6746

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

packages/plugin-seo/src/translations/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import { it } from './it.js'
99
import { nb } from './nb.js'
1010
import { pl } from './pl.js'
1111
import { ru } from './ru.js'
12+
import { tr } from './tr.js'
1213
import { uk } from './uk.js'
1314

1415
export const translations = {
@@ -21,6 +22,7 @@ export const translations = {
2122
nb,
2223
pl,
2324
ru,
25+
tr,
2426
uk,
2527
}
2628

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
import type { GenericTranslationsObject } from '@payloadcms/translations'
2+
3+
export const tr: GenericTranslationsObject = {
4+
$schema: './translation-schema.json',
5+
'plugin-seo': {
6+
almostThere: 'Neredeyse tamam',
7+
autoGenerate: 'Otomatik oluştur',
8+
bestPractices: 'en iyi uygulamalar',
9+
characterCount: '{{current}}/{{minLength}}-{{maxLength}} karakter, ',
10+
charactersLeftOver: '{{characters}} karakter kaldı',
11+
charactersToGo: '{{characters}} karakter kaldı',
12+
charactersTooMany: '{{characters}} karakter fazla',
13+
checksPassing: '{{current}}/{{max}} kontrol başarılı',
14+
good: 'İyi',
15+
imageAutoGenerationTip: 'Otomatik oluşturma, seçilen ana görseli alacaktır.',
16+
lengthTipDescription:
17+
'{{minLength}} ile {{maxLength}} karakter arasında olmalıdır. Kaliteli meta açıklamaları yazmak için yardım almak için bkz. ',
18+
lengthTipTitle:
19+
'{{minLength}} ile {{maxLength}} karakter arasında olmalıdır. Kaliteli meta başlıkları yazmak için yardım almak için bkz. ',
20+
missing: 'Eksik',
21+
noImage: 'Görsel yok',
22+
preview: 'Önizleme',
23+
previewDescription: 'Kesin sonuç listeleri içeriğe ve arama alâkasına göre değişebilir.',
24+
tooLong: 'Çok uzun',
25+
tooShort: 'Çok kısa',
26+
},
27+
}

0 commit comments

Comments
 (0)