Skip to content

Commit 4652e8d

Browse files
authored
feat(plugin-seo): add czech translation (#8998)
Adds Czech translation to SEO plugin.
1 parent 2175e5c commit 4652e8d

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
import type { GenericTranslationsObject } from '@payloadcms/translations'
2+
3+
export const cs: GenericTranslationsObject = {
4+
$schema: './translation-schema.json',
5+
'plugin-seo': {
6+
almostThere: 'Skoro hotovo',
7+
autoGenerate: 'Generovat automaticky',
8+
bestPractices: 'osvědčené postupy',
9+
characterCount: '{{current}}/{{minLength}}-{{maxLength}} znaků, ',
10+
charactersLeftOver: '{{characters}} zbývá',
11+
charactersToGo: '{{characters}} zbývá',
12+
charactersTooMany: '{{characters}} navíc',
13+
checksPassing: '{{current}}/{{max}} kontrol úspěšně splněno',
14+
good: 'Dobré',
15+
imageAutoGenerationTip: 'Automatická generace načte vybraný hero obrázek.',
16+
lengthTipDescription:
17+
'Toto by mělo mít mezi {{minLength}} a {{maxLength}} znaky. Pomoc při psaní kvalitních meta popisů navštivte ',
18+
lengthTipTitle:
19+
'Toto by mělo mít mezi {{minLength}} a {{maxLength}} znaky. Pomoc při psaní kvalitních meta titulů navštivte ',
20+
missing: 'Chybí',
21+
noImage: 'Bez obrázku',
22+
preview: 'Náhled',
23+
previewDescription:
24+
'Přesný výsledek se může lišit v závislosti na obsahu a relevanci vyhledávání.',
25+
tooLong: 'Příliš dlouhé',
26+
tooShort: 'Příliš krátké',
27+
},
28+
}

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import type { GenericTranslationsObject, NestedKeysStripped } from '@payloadcms/translations'
22

3+
import { cs } from './cs.js'
34
import { de } from './de.js'
45
import { en } from './en.js'
56
import { es } from './es.js'
@@ -14,6 +15,7 @@ import { tr } from './tr.js'
1415
import { uk } from './uk.js'
1516

1617
export const translations = {
18+
cs,
1719
de,
1820
en,
1921
es,

0 commit comments

Comments
 (0)