feat(plugin-seo): add czech translation (#8998)
Adds Czech translation to SEO plugin.
This commit is contained in:
28
packages/plugin-seo/src/translations/cs.ts
Normal file
28
packages/plugin-seo/src/translations/cs.ts
Normal file
@@ -0,0 +1,28 @@
|
||||
import type { GenericTranslationsObject } from '@payloadcms/translations'
|
||||
|
||||
export const cs: GenericTranslationsObject = {
|
||||
$schema: './translation-schema.json',
|
||||
'plugin-seo': {
|
||||
almostThere: 'Skoro hotovo',
|
||||
autoGenerate: 'Generovat automaticky',
|
||||
bestPractices: 'osvědčené postupy',
|
||||
characterCount: '{{current}}/{{minLength}}-{{maxLength}} znaků, ',
|
||||
charactersLeftOver: '{{characters}} zbývá',
|
||||
charactersToGo: '{{characters}} zbývá',
|
||||
charactersTooMany: '{{characters}} navíc',
|
||||
checksPassing: '{{current}}/{{max}} kontrol úspěšně splněno',
|
||||
good: 'Dobré',
|
||||
imageAutoGenerationTip: 'Automatická generace načte vybraný hero obrázek.',
|
||||
lengthTipDescription:
|
||||
'Toto by mělo mít mezi {{minLength}} a {{maxLength}} znaky. Pomoc při psaní kvalitních meta popisů navštivte ',
|
||||
lengthTipTitle:
|
||||
'Toto by mělo mít mezi {{minLength}} a {{maxLength}} znaky. Pomoc při psaní kvalitních meta titulů navštivte ',
|
||||
missing: 'Chybí',
|
||||
noImage: 'Bez obrázku',
|
||||
preview: 'Náhled',
|
||||
previewDescription:
|
||||
'Přesný výsledek se může lišit v závislosti na obsahu a relevanci vyhledávání.',
|
||||
tooLong: 'Příliš dlouhé',
|
||||
tooShort: 'Příliš krátké',
|
||||
},
|
||||
}
|
||||
@@ -1,5 +1,6 @@
|
||||
import type { GenericTranslationsObject, NestedKeysStripped } from '@payloadcms/translations'
|
||||
|
||||
import { cs } from './cs.js'
|
||||
import { de } from './de.js'
|
||||
import { en } from './en.js'
|
||||
import { es } from './es.js'
|
||||
@@ -14,6 +15,7 @@ import { tr } from './tr.js'
|
||||
import { uk } from './uk.js'
|
||||
|
||||
export const translations = {
|
||||
cs,
|
||||
de,
|
||||
en,
|
||||
es,
|
||||
|
||||
Reference in New Issue
Block a user