File tree Expand file tree Collapse file tree 2 files changed +30
-0
lines changed
packages/plugin-seo/src/translations Expand file tree Collapse file tree 2 files changed +30
-0
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ import { it } from './it.js'
9
9
import { nb } from './nb.js'
10
10
import { pl } from './pl.js'
11
11
import { ru } from './ru.js'
12
+ import { sv } from './sv.js'
12
13
import { tr } from './tr.js'
13
14
import { uk } from './uk.js'
14
15
@@ -22,6 +23,7 @@ export const translations = {
22
23
nb,
23
24
pl,
24
25
ru,
26
+ sv,
25
27
tr,
26
28
uk,
27
29
}
Original file line number Diff line number Diff line change
1
+ import type { GenericTranslationsObject } from '@payloadcms/translations'
2
+
3
+ export const sv : GenericTranslationsObject = {
4
+ $schema : './translation-schema.json' ,
5
+ 'plugin-seo' : {
6
+ almostThere : 'Nästan klar' ,
7
+ autoGenerate : 'Skapa automatiskt' ,
8
+ bestPractices : 'bästa praxis' ,
9
+ characterCount : '{{current}}/{{minLength}}-{{maxLength}} tecken, ' ,
10
+ charactersLeftOver : '{{characters}} tecken blir över' ,
11
+ charactersToGo : '{{characters}} tecken kvar' ,
12
+ charactersTooMany : '{{characters}} tecken för mycket' ,
13
+ checksPassing : '{{current}}/{{max}} kontroller är godkända' ,
14
+ good : 'Bra' ,
15
+ imageAutoGenerationTip : 'Den automatiska processen kommer att välja en hero-bild.' ,
16
+ lengthTipDescription :
17
+ 'Bör vara mellan {{minLength}} och {{maxLength}} tecken. För hjälp med att skriva bra metabeskrivningar, se ' ,
18
+ lengthTipTitle :
19
+ 'Bör vara mellan {{minLength}} och {{maxLength}} tecken. För hjälp med att skriva bra metatitlar, se ' ,
20
+ missing : 'Saknas' ,
21
+ noImage : 'Ingen bild' ,
22
+ preview : 'Förhandsgranska' ,
23
+ previewDescription :
24
+ 'Exakta resultatlistningar kan variera baserat på innehåll och sökrelevans.' ,
25
+ tooLong : 'För lång' ,
26
+ tooShort : 'För kort' ,
27
+ } ,
28
+ }
You can’t perform that action at this time.
0 commit comments