Skip to content

Commit 89601f1

Browse files
feat(plugin-seo): add vietnamese translation (#8179)
1 parent 31ffc57 commit 89601f1

File tree

12 files changed

+42
-2
lines changed

12 files changed

+42
-2
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import type { GenericTranslationsObject } from '@payloadcms/translations'
33
export const en: GenericTranslationsObject = {
44
$schema: './translation-schema.json',
55
'plugin-seo': {
6+
missing: 'Missing',
67
almostThere: 'Almost there',
78
autoGenerate: 'Auto-generate',
89
bestPractices: 'best practices',

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import type { GenericTranslationsObject } from '@payloadcms/translations'
33
export const es: GenericTranslationsObject = {
44
$schema: './translation-schema.json',
55
'plugin-seo': {
6+
missing: 'Falta',
67
almostThere: 'Ya casi está',
78
autoGenerate: 'Autogénerar',
89
bestPractices: 'mejores prácticas',

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import type { GenericTranslationsObject } from '@payloadcms/translations'
33
export const fa: GenericTranslationsObject = {
44
$schema: './translation-schema.json',
55
'plugin-seo': {
6+
missing: 'ناقص',
67
almostThere: 'چیزیی باقی نمونده',
78
autoGenerate: 'تولید خودکار',
89
bestPractices: 'آموزش بیشتر',

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import type { GenericTranslationsObject } from '@payloadcms/translations'
33
export const fr: GenericTranslationsObject = {
44
$schema: './translation-schema.json',
55
'plugin-seo': {
6+
missing: 'Manquant',
67
almostThere: 'On y est presque',
78
autoGenerate: 'Auto-générer',
89
bestPractices: 'bonnes pratiques',

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import type { GenericTranslationsObject } from '@payloadcms/translations'
33
export const it: GenericTranslationsObject = {
44
$schema: './translation-schema.json',
55
'plugin-seo': {
6+
missing: 'Mancante',
67
almostThere: 'Ci siamo quasi',
78
autoGenerate: 'Generazione automatica',
89
bestPractices: 'migliori pratiche',

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import type { GenericTranslationsObject } from '@payloadcms/translations'
33
export const nb: GenericTranslationsObject = {
44
$schema: './translation-schema.json',
55
'plugin-seo': {
6+
missing: 'Mangler',
67
almostThere: 'Nesten der',
78
autoGenerate: 'Auto-generer',
89
bestPractices: 'beste praksis',

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import type { GenericTranslationsObject } from '@payloadcms/translations'
33
export const pl: GenericTranslationsObject = {
44
$schema: './translation-schema.json',
55
'plugin-seo': {
6+
missing: 'Brakuje',
67
almostThere: 'Prawie gotowe',
78
autoGenerate: 'Wygeneruj automatycznie',
89
bestPractices: 'najlepsze praktyki',

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import type { GenericTranslationsObject } from '@payloadcms/translations'
33
export const ru: GenericTranslationsObject = {
44
$schema: './translation-schema.json',
55
'plugin-seo': {
6+
missing: 'Отсутствует',
67
almostThere: 'Почти готово',
78
autoGenerate: 'Сгенерировать автоматически',
89
bestPractices: 'лучшие практики',

packages/plugin-seo/src/translations/translation-schema.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
"type": "object",
1111
"additionalProperties": false,
1212
"properties": {
13+
"missing": {
14+
"type": "string"
15+
},
1316
"almostThere": {
1417
"type": "string"
1518
},
@@ -79,7 +82,8 @@
7982
"noImage",
8083
"checksPassing",
8184
"preview",
82-
"previewDescription"
85+
"previewDescription",
86+
"missing"
8387
]
8488
}
8589
},

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import type { GenericTranslationsObject } from '@payloadcms/translations'
33
export const uk: GenericTranslationsObject = {
44
$schema: './translation-schema.json',
55
'plugin-seo': {
6+
missing: 'Відсутнє',
67
almostThere: 'Ще трошки',
78
autoGenerate: 'Згенерувати',
89
bestPractices: 'найкращі практики',

0 commit comments

Comments
 (0)