@janga/norna 0.7.25 → 0.7.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -2
- package/astro.config.mjs +26 -12
- package/bin/norna-cli.mjs +12 -0
- package/package.json +14 -5
- package/schemas/card-list.schema.json +121 -0
- package/schemas/category.schema.json +2 -2
- package/schemas/config.schema.json +306 -32
- package/schemas/content-frontmatter.schema.json +7 -7
- package/schemas/image-carousel.schema.json +43 -0
- package/schemas/image-stack.schema.json +43 -0
- package/schemas/manifest.json +6 -1
- package/schemas/page-theme.schema.json +26 -26
- package/schemas/sitewide-content.schema.json +18 -18
- package/schemas/theme.schema.json +237 -262
- package/scripts/dev-local.mjs +24 -2
- package/scripts/generate-schemas.mjs +15 -3
- package/scripts/lib/category-destinations.mjs +48 -0
- package/scripts/lib/code-fence-metadata.mjs +14 -37
- package/scripts/lib/content-tabs.mjs +155 -0
- package/scripts/lib/details-headings.mjs +58 -0
- package/scripts/lib/docusaurus-migration-audit.mjs +603 -0
- package/scripts/lib/editor-language-service.mjs +238 -116
- package/scripts/lib/locale-registry.mjs +597 -0
- package/scripts/lib/locales/az-Latn.mjs +78 -0
- package/scripts/lib/locales/be.mjs +78 -0
- package/scripts/lib/locales/bg.mjs +78 -0
- package/scripts/lib/locales/bs.mjs +78 -0
- package/scripts/lib/locales/ca.mjs +78 -0
- package/scripts/lib/locales/cnr.mjs +78 -0
- package/scripts/lib/locales/cs.mjs +78 -0
- package/scripts/lib/locales/da.mjs +78 -0
- package/scripts/lib/locales/de.mjs +78 -0
- package/scripts/lib/locales/el.mjs +78 -0
- package/scripts/lib/locales/en.mjs +78 -0
- package/scripts/lib/locales/es.mjs +78 -0
- package/scripts/lib/locales/et.mjs +78 -0
- package/scripts/lib/locales/fi.mjs +78 -0
- package/scripts/lib/locales/fil.mjs +78 -0
- package/scripts/lib/locales/fr.mjs +78 -0
- package/scripts/lib/locales/ga.mjs +78 -0
- package/scripts/lib/locales/ha.mjs +78 -0
- package/scripts/lib/locales/hr.mjs +78 -0
- package/scripts/lib/locales/hu.mjs +78 -0
- package/scripts/lib/locales/id.mjs +78 -0
- package/scripts/lib/locales/is.mjs +78 -0
- package/scripts/lib/locales/it.mjs +78 -0
- package/scripts/lib/locales/jv.mjs +78 -0
- package/scripts/lib/locales/lb.mjs +78 -0
- package/scripts/lib/locales/lt.mjs +78 -0
- package/scripts/lib/locales/lv.mjs +78 -0
- package/scripts/lib/locales/mk.mjs +78 -0
- package/scripts/lib/locales/mt.mjs +78 -0
- package/scripts/lib/locales/nb.mjs +78 -0
- package/scripts/lib/locales/nl.mjs +78 -0
- package/scripts/lib/locales/nn.mjs +78 -0
- package/scripts/lib/locales/pcm.mjs +78 -0
- package/scripts/lib/locales/pl.mjs +78 -0
- package/scripts/lib/locales/pt.mjs +78 -0
- package/scripts/lib/locales/ro.mjs +78 -0
- package/scripts/lib/locales/ru.mjs +78 -0
- package/scripts/lib/locales/sk.mjs +78 -0
- package/scripts/lib/locales/sl.mjs +78 -0
- package/scripts/lib/locales/sq.mjs +78 -0
- package/scripts/lib/locales/sr-Cyrl.mjs +78 -0
- package/scripts/lib/locales/sr-Latn.mjs +78 -0
- package/scripts/lib/locales/sv.mjs +78 -0
- package/scripts/lib/locales/sw.mjs +78 -0
- package/scripts/lib/locales/tr.mjs +78 -0
- package/scripts/lib/locales/uk.mjs +78 -0
- package/scripts/lib/locales/vi.mjs +78 -0
- package/scripts/lib/markdown-links.mjs +4 -25
- package/scripts/lib/markdown-notes-render-plugin.mjs +75 -0
- package/scripts/lib/markdown-notes.mjs +165 -0
- package/scripts/lib/norna-markdown-blocks.mjs +32 -447
- package/scripts/lib/norna-markdown-render-plugin.mjs +4 -0
- package/scripts/lib/page-aliases.mjs +12 -1
- package/scripts/lib/page-markdown.mjs +63 -16
- package/scripts/lib/page-move-plan.mjs +22 -5
- package/scripts/lib/pagefind-translations.mjs +620 -0
- package/scripts/lib/presentation-contract.mjs +6 -1
- package/scripts/lib/presentation.mjs +29 -30
- package/scripts/lib/project-config.mjs +2 -173
- package/scripts/lib/schema-definitions.mjs +3 -10
- package/scripts/lib/schema-editor-metadata.mjs +22 -43
- package/scripts/lib/schema-value-definitions.mjs +4 -8
- package/scripts/lib/semantic-callouts.mjs +4 -2
- package/scripts/lib/site-content.mjs +4 -2
- package/scripts/lib/site-link-graph.mjs +16 -6
- package/scripts/lib/site-navigation-tree.mjs +0 -11
- package/scripts/lib/sitemap.mjs +5 -3
- package/scripts/lib/structured-blocks.mjs +108 -0
- package/scripts/lib/table-render-plugin.mjs +46 -3
- package/scripts/lib/table-row-headers.mjs +218 -0
- package/scripts/lib/theme-presets.mjs +3 -10
- package/scripts/lib/yaml-config.mjs +2 -6
- package/scripts/migrate-check.mjs +19 -0
- package/scripts/sync-content-sections.mjs +39 -10
- package/scripts/sync-site-public.mjs +7 -1
- package/src/components/CodeBlockCopyScript.astro +47 -5
- package/src/components/ContentBlocks.astro +39 -0
- package/src/components/ContentTabsScript.astro +60 -0
- package/src/components/DisplaySettings.astro +17 -19
- package/src/components/NavigationPageTree.astro +1 -1
- package/src/components/NoteNavigationScript.astro +4 -0
- package/src/components/PageAliasRedirect.astro +5 -4
- package/src/components/SearchNavigationScript.astro +4 -0
- package/src/components/SearchPage.astro +43 -2
- package/src/components/SectionNavigationScript.astro +43 -11
- package/src/components/SiteBreadcrumbs.astro +1 -1
- package/src/components/SiteNavigation.astro +29 -20
- package/src/components/SitePage.astro +40 -15
- package/src/components/SiteSection.astro +5 -81
- package/src/components/SiteTreeNavigation.astro +2 -2
- package/src/components/TableOverflowScript.astro +386 -58
- package/src/components/TopPageMenu.astro +47 -0
- package/src/components/TreeNavigationScript.astro +10 -3
- package/src/layouts/BaseLayout.astro +8 -12
- package/src/lib/navigationFollowing.ts +142 -0
- package/src/lib/noteNavigation.ts +50 -0
- package/src/lib/searchNavigation.ts +107 -0
- package/src/lib/sectionContent.ts +20 -90
- package/src/lib/siteNavigation.ts +0 -5
- package/src/lib/sitePages.ts +13 -2
- package/src/lib/table-sort-tooltip.ts +109 -0
- package/src/pages/[...slug].astro +16 -6
- package/src/styles/content.css +394 -132
- package/src/styles/foundations.css +9 -0
- package/src/styles/media.css +5 -0
- package/src/styles/navigation.css +63 -74
- package/src/styles/page-layout.css +7 -0
- package/src/styles/responsive.css +2 -7
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
export default Object.freeze({
|
|
2
|
+
tableSortAscending: 'Rikiuoti didėjančiai',
|
|
3
|
+
tableSortDescending: 'Rikiuoti mažėjančiai',
|
|
4
|
+
tableSortReset: 'Atkurti pradinę tvarką',
|
|
5
|
+
breadcrumb: 'Naršymo kelias',
|
|
6
|
+
appearance: 'Išvaizda',
|
|
7
|
+
appearanceDark: 'Tamsi',
|
|
8
|
+
appearanceLight: 'Šviesi',
|
|
9
|
+
appearanceSystem: 'Sistema',
|
|
10
|
+
codeCopied: 'Nukopijuota',
|
|
11
|
+
codeCopyFailed: 'Nepavyko nukopijuoti kodo',
|
|
12
|
+
copyCode: 'Kopijuoti kodą',
|
|
13
|
+
calloutCaution: 'Dėmesio',
|
|
14
|
+
calloutDanger: 'Pavojus',
|
|
15
|
+
calloutImportant: 'Svarbu',
|
|
16
|
+
calloutNote: 'Pastaba',
|
|
17
|
+
calloutTip: 'Patarimas',
|
|
18
|
+
calloutWarning: 'Įspėjimas',
|
|
19
|
+
closeNavigation: 'Uždaryti naršymą',
|
|
20
|
+
editSource: 'Redaguoti šį puslapį',
|
|
21
|
+
displaySettings: 'Rodymas',
|
|
22
|
+
focusReading: 'Sutelktas skaitymas',
|
|
23
|
+
footnoteBackReference: 'Grįžti prie nuorodos {reference}',
|
|
24
|
+
footnotes: 'Išnašos',
|
|
25
|
+
readingWidth: 'Skaitymo plotis',
|
|
26
|
+
readingWidthNarrow: 'Siauras',
|
|
27
|
+
readingWidthStandard: 'Standartinis',
|
|
28
|
+
readingWidthWide: 'Platus',
|
|
29
|
+
resetDisplaySettings: 'Atkurti',
|
|
30
|
+
dismissBanner: 'Uždaryti pranešimą',
|
|
31
|
+
built: 'Sukurta',
|
|
32
|
+
images: 'Vaizdai',
|
|
33
|
+
imageCarousel: 'vaizdų karuselė',
|
|
34
|
+
imageInspection: 'Vaizdo peržiūra',
|
|
35
|
+
imageInspectionActualSize: 'Rodyti tikrąjį dydį',
|
|
36
|
+
imageInspectionClose: 'Uždaryti vaizdo peržiūrą',
|
|
37
|
+
imageInspectionFit: 'Sutalpinti vaizdą lange',
|
|
38
|
+
inspectImage: 'Peržiūrėti vaizdą: {description}',
|
|
39
|
+
navigationCollapsedAll: 'Visi naršymo elementai suskleisti.',
|
|
40
|
+
navigationCollapseAll: 'Suskleisti viską',
|
|
41
|
+
navigationControls: 'Naršymo medžio valdikliai',
|
|
42
|
+
navigationChildren: 'Antriniai puslapiai',
|
|
43
|
+
navigationExpandedAll: 'Visi naršymo elementai išskleisti.',
|
|
44
|
+
navigationExpandAll: 'Išskleisti viską',
|
|
45
|
+
navigationFilter: 'Filtruoti puslapius ir grupes',
|
|
46
|
+
navigationFilterEmpty: 'Atitinkančių puslapių ar grupių nėra. Dabartinis puslapis vis dar pasiekiamas.',
|
|
47
|
+
navigationFilterMatches: 'Atitinkantys naršymo elementai: {count}',
|
|
48
|
+
navigationLocatedCurrent: 'Dabartinis puslapis rastas.',
|
|
49
|
+
navigationLocateCurrent: 'Rasti dabartinį puslapį',
|
|
50
|
+
navigationMenu: 'Meniu',
|
|
51
|
+
nextImage: 'Kitas vaizdas',
|
|
52
|
+
nextPage: 'Kitas puslapis',
|
|
53
|
+
note: 'Pastaba',
|
|
54
|
+
openInVsCode: 'Atidaryti su VS Code',
|
|
55
|
+
notFound: 'Puslapis nerastas',
|
|
56
|
+
notFoundText: 'Prašomo puslapio nėra arba jis galėjo būti perkeltas.',
|
|
57
|
+
pageMoved: 'Puslapis perkeltas',
|
|
58
|
+
pageMovedText: 'Šis adresas dabar nurodo',
|
|
59
|
+
pageNavigation: 'Puslapio turinys',
|
|
60
|
+
pageSequence: 'Puslapių seka',
|
|
61
|
+
pageSections: 'Skyriai',
|
|
62
|
+
previousImage: 'Ankstesnis vaizdas',
|
|
63
|
+
previousPage: 'Ankstesnis puslapis',
|
|
64
|
+
returnHome: 'Eiti į pradžios puslapį',
|
|
65
|
+
searchReturn: 'Grįžti į {page}',
|
|
66
|
+
search: 'Ieškoti',
|
|
67
|
+
searchDescription: 'Ieškoti paskelbtame šios svetainės turinyje.',
|
|
68
|
+
searchLoading: 'Įkeliama paieška…',
|
|
69
|
+
searchNoScript: 'Paieškai reikia JavaScript. Kai JavaScript nepasiekiamas, naudokite puslapių naršymą.',
|
|
70
|
+
searchUnavailable: 'Paieška nepasiekiama. Dirbdami vietoje paleiskite norna build:local, kad sukurtumėte arba atnaujintumėte paieškos indeksą.',
|
|
71
|
+
siteBanners: 'Svetainės pranešimai',
|
|
72
|
+
siteNavigation: 'Puslapiai',
|
|
73
|
+
skipToContent: 'Pereiti prie turinio',
|
|
74
|
+
tableColumns: 'Lentelės stulpeliai',
|
|
75
|
+
tableNextColumns: 'Rodyti kitus stulpelius',
|
|
76
|
+
tableOverflowDescription: 'Daugiau lentelės stulpelių pasiekiama horizontaliai.',
|
|
77
|
+
tablePreviousColumns: 'Rodyti ankstesnius stulpelius',
|
|
78
|
+
});
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
export default Object.freeze({
|
|
2
|
+
tableSortAscending: 'Kārtot augošā secībā',
|
|
3
|
+
tableSortDescending: 'Kārtot dilstošā secībā',
|
|
4
|
+
tableSortReset: 'Atjaunot sākotnējo secību',
|
|
5
|
+
breadcrumb: 'Navigācijas ceļš',
|
|
6
|
+
appearance: 'Izskats',
|
|
7
|
+
appearanceDark: 'Tumšs',
|
|
8
|
+
appearanceLight: 'Gaišs',
|
|
9
|
+
appearanceSystem: 'Sistēma',
|
|
10
|
+
codeCopied: 'Nokopēts',
|
|
11
|
+
codeCopyFailed: 'Kodu neizdevās nokopēt',
|
|
12
|
+
copyCode: 'Kopēt kodu',
|
|
13
|
+
calloutCaution: 'Uzmanību',
|
|
14
|
+
calloutDanger: 'Bīstami',
|
|
15
|
+
calloutImportant: 'Svarīgi',
|
|
16
|
+
calloutNote: 'Piezīme',
|
|
17
|
+
calloutTip: 'Padoms',
|
|
18
|
+
calloutWarning: 'Brīdinājums',
|
|
19
|
+
closeNavigation: 'Aizvērt navigāciju',
|
|
20
|
+
editSource: 'Rediģēt šo lapu',
|
|
21
|
+
displaySettings: 'Attēlojums',
|
|
22
|
+
focusReading: 'Koncentrēta lasīšana',
|
|
23
|
+
footnoteBackReference: 'Atpakaļ uz atsauci {reference}',
|
|
24
|
+
footnotes: 'Zemsvītras piezīmes',
|
|
25
|
+
readingWidth: 'Lasīšanas platums',
|
|
26
|
+
readingWidthNarrow: 'Šaurs',
|
|
27
|
+
readingWidthStandard: 'Standarta',
|
|
28
|
+
readingWidthWide: 'Plats',
|
|
29
|
+
resetDisplaySettings: 'Atiestatīt',
|
|
30
|
+
dismissBanner: 'Aizvērt paziņojumu',
|
|
31
|
+
built: 'Izveidots',
|
|
32
|
+
images: 'Attēli',
|
|
33
|
+
imageCarousel: 'attēlu karuselis',
|
|
34
|
+
imageInspection: 'Attēla apskate',
|
|
35
|
+
imageInspectionActualSize: 'Rādīt faktisko izmēru',
|
|
36
|
+
imageInspectionClose: 'Aizvērt attēla apskati',
|
|
37
|
+
imageInspectionFit: 'Ietilpināt attēlu logā',
|
|
38
|
+
inspectImage: 'Apskatīt attēlu: {description}',
|
|
39
|
+
navigationCollapsedAll: 'Visi navigācijas vienumi ir sakļauti.',
|
|
40
|
+
navigationCollapseAll: 'Sakļaut visu',
|
|
41
|
+
navigationControls: 'Navigācijas koka vadīklas',
|
|
42
|
+
navigationChildren: 'Apakšlapas',
|
|
43
|
+
navigationExpandedAll: 'Visi navigācijas vienumi ir izvērsti.',
|
|
44
|
+
navigationExpandAll: 'Izvērst visu',
|
|
45
|
+
navigationFilter: 'Filtrēt lapas un grupas',
|
|
46
|
+
navigationFilterEmpty: 'Nav atbilstošu lapu vai grupu. Pašreizējā lapa joprojām ir pieejama.',
|
|
47
|
+
navigationFilterMatches: 'Atbilstošie navigācijas vienumi: {count}',
|
|
48
|
+
navigationLocatedCurrent: 'Pašreizējā lapa atrasta.',
|
|
49
|
+
navigationLocateCurrent: 'Atrast pašreizējo lapu',
|
|
50
|
+
navigationMenu: 'Izvēlne',
|
|
51
|
+
nextImage: 'Nākamais attēls',
|
|
52
|
+
nextPage: 'Nākamā lapa',
|
|
53
|
+
note: 'Piezīme',
|
|
54
|
+
openInVsCode: 'Atvērt programmā VS Code',
|
|
55
|
+
notFound: 'Lapa nav atrasta',
|
|
56
|
+
notFoundText: 'Pieprasītā lapa nepastāv vai, iespējams, ir pārvietota.',
|
|
57
|
+
pageMoved: 'Lapa ir pārvietota',
|
|
58
|
+
pageMovedText: 'Šī adrese tagad norāda uz',
|
|
59
|
+
pageNavigation: 'Lapas saturs',
|
|
60
|
+
pageSequence: 'Lapu secība',
|
|
61
|
+
pageSections: 'Sadaļas',
|
|
62
|
+
previousImage: 'Iepriekšējais attēls',
|
|
63
|
+
previousPage: 'Iepriekšējā lapa',
|
|
64
|
+
returnHome: 'Doties uz sākumlapu',
|
|
65
|
+
searchReturn: 'Atpakaļ uz {page}',
|
|
66
|
+
search: 'Meklēt',
|
|
67
|
+
searchDescription: 'Meklēt šīs vietnes publicētajā saturā.',
|
|
68
|
+
searchLoading: 'Ielādē meklēšanu…',
|
|
69
|
+
searchNoScript: 'Meklēšanai nepieciešams JavaScript. Ja JavaScript nav pieejams, izmantojiet lapu navigāciju.',
|
|
70
|
+
searchUnavailable: 'Meklēšana nav pieejama. Strādājot lokāli, palaidiet norna build:local, lai izveidotu vai atjauninātu meklēšanas indeksu.',
|
|
71
|
+
siteBanners: 'Vietnes paziņojumi',
|
|
72
|
+
siteNavigation: 'Lapas',
|
|
73
|
+
skipToContent: 'Pāriet uz saturu',
|
|
74
|
+
tableColumns: 'Tabulas kolonnas',
|
|
75
|
+
tableNextColumns: 'Rādīt nākamās kolonnas',
|
|
76
|
+
tableOverflowDescription: 'Papildu tabulas kolonnas ir pieejamas horizontāli.',
|
|
77
|
+
tablePreviousColumns: 'Rādīt iepriekšējās kolonnas',
|
|
78
|
+
});
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
export default Object.freeze({
|
|
2
|
+
tableSortAscending: 'Подреди по растечки редослед',
|
|
3
|
+
tableSortDescending: 'Подреди по опаѓачки редослед',
|
|
4
|
+
tableSortReset: 'Врати го првичниот редослед',
|
|
5
|
+
breadcrumb: 'Патека за навигација',
|
|
6
|
+
appearance: 'Изглед',
|
|
7
|
+
appearanceDark: 'Темно',
|
|
8
|
+
appearanceLight: 'Светло',
|
|
9
|
+
appearanceSystem: 'Системски',
|
|
10
|
+
codeCopied: 'Копирано',
|
|
11
|
+
codeCopyFailed: 'Кодот не може да се копира',
|
|
12
|
+
copyCode: 'Копирај код',
|
|
13
|
+
calloutCaution: 'Внимание',
|
|
14
|
+
calloutDanger: 'Опасност',
|
|
15
|
+
calloutImportant: 'Важно',
|
|
16
|
+
calloutNote: 'Белешка',
|
|
17
|
+
calloutTip: 'Совет',
|
|
18
|
+
calloutWarning: 'Предупредување',
|
|
19
|
+
closeNavigation: 'Затвори навигација',
|
|
20
|
+
editSource: 'Уреди ја оваа страница',
|
|
21
|
+
displaySettings: 'Приказ',
|
|
22
|
+
focusReading: 'Фокусирано читање',
|
|
23
|
+
footnoteBackReference: 'Назад кон референцата {reference}',
|
|
24
|
+
footnotes: 'Фусноти',
|
|
25
|
+
readingWidth: 'Ширина за читање',
|
|
26
|
+
readingWidthNarrow: 'Тесна',
|
|
27
|
+
readingWidthStandard: 'Стандардна',
|
|
28
|
+
readingWidthWide: 'Широка',
|
|
29
|
+
resetDisplaySettings: 'Ресетирај',
|
|
30
|
+
dismissBanner: 'Затвори известување',
|
|
31
|
+
built: 'Изградено',
|
|
32
|
+
images: 'Слики',
|
|
33
|
+
imageCarousel: 'вртелешка со слики',
|
|
34
|
+
imageInspection: 'Преглед на слика',
|
|
35
|
+
imageInspectionActualSize: 'Прикажи ја вистинската големина',
|
|
36
|
+
imageInspectionClose: 'Затвори го прегледот на сликата',
|
|
37
|
+
imageInspectionFit: 'Приспособи ја сликата во прозорецот',
|
|
38
|
+
inspectImage: 'Прегледај слика: {description}',
|
|
39
|
+
navigationCollapsedAll: 'Сите ставки за навигација се собрани.',
|
|
40
|
+
navigationCollapseAll: 'Собери ги сите',
|
|
41
|
+
navigationControls: 'Контроли на навигациското дрво',
|
|
42
|
+
navigationChildren: 'Потстраници',
|
|
43
|
+
navigationExpandedAll: 'Сите ставки за навигација се проширени.',
|
|
44
|
+
navigationExpandAll: 'Прошири ги сите',
|
|
45
|
+
navigationFilter: 'Филтрирај страници и групи',
|
|
46
|
+
navigationFilterEmpty: 'Нема соодветни страници или групи. Тековната страница останува достапна.',
|
|
47
|
+
navigationFilterMatches: 'Соодветни ставки за навигација: {count}',
|
|
48
|
+
navigationLocatedCurrent: 'Тековната страница е пронајдена.',
|
|
49
|
+
navigationLocateCurrent: 'Пронајди ја тековната страница',
|
|
50
|
+
navigationMenu: 'Мени',
|
|
51
|
+
nextImage: 'Следна слика',
|
|
52
|
+
nextPage: 'Следна страница',
|
|
53
|
+
note: 'Белешка',
|
|
54
|
+
openInVsCode: 'Отвори во VS Code',
|
|
55
|
+
notFound: 'Страницата не е пронајдена',
|
|
56
|
+
notFoundText: 'Бараната страница не постои или можеби е преместена.',
|
|
57
|
+
pageMoved: 'Страницата е преместена',
|
|
58
|
+
pageMovedText: 'Оваа адреса сега води до',
|
|
59
|
+
pageNavigation: 'Содржина на страницата',
|
|
60
|
+
pageSequence: 'Редослед на страници',
|
|
61
|
+
pageSections: 'Делови',
|
|
62
|
+
previousImage: 'Претходна слика',
|
|
63
|
+
previousPage: 'Претходна страница',
|
|
64
|
+
returnHome: 'Оди на почетната страница',
|
|
65
|
+
searchReturn: 'Назад кон {page}',
|
|
66
|
+
search: 'Пребарај',
|
|
67
|
+
searchDescription: 'Пребарај во објавената содржина на оваа веб-локација.',
|
|
68
|
+
searchLoading: 'Се вчитува пребарувањето…',
|
|
69
|
+
searchNoScript: 'Пребарувањето бара JavaScript. Користете ја навигацијата на страниците кога JavaScript не е достапен.',
|
|
70
|
+
searchUnavailable: 'Пребарувањето не е достапно. При локална работа, извршете norna build:local за да го создадете или освежите индексот за пребарување.',
|
|
71
|
+
siteBanners: 'Известувања на веб-локацијата',
|
|
72
|
+
siteNavigation: 'Страници',
|
|
73
|
+
skipToContent: 'Оди до содржината',
|
|
74
|
+
tableColumns: 'Колони на табелата',
|
|
75
|
+
tableNextColumns: 'Прикажи ги следните колони',
|
|
76
|
+
tableOverflowDescription: 'Дополнителни колони на табелата се достапни хоризонтално.',
|
|
77
|
+
tablePreviousColumns: 'Прикажи ги претходните колони',
|
|
78
|
+
});
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
export default Object.freeze({
|
|
2
|
+
tableSortAscending: 'Issortja f’ordni axxendenti',
|
|
3
|
+
tableSortDescending: 'Issortja f’ordni dixxendenti',
|
|
4
|
+
tableSortReset: 'Irrestawra l-ordni oriġinali',
|
|
5
|
+
breadcrumb: 'Mogħdija tan-navigazzjoni',
|
|
6
|
+
appearance: 'Dehra',
|
|
7
|
+
appearanceDark: 'Skur',
|
|
8
|
+
appearanceLight: 'Ċar',
|
|
9
|
+
appearanceSystem: 'Sistema',
|
|
10
|
+
codeCopied: 'Ikkupjat',
|
|
11
|
+
codeCopyFailed: 'Il-kodiċi ma setax jiġi kkupjat',
|
|
12
|
+
copyCode: 'Ikkopja l-kodiċi',
|
|
13
|
+
calloutCaution: 'Attenzjoni',
|
|
14
|
+
calloutDanger: 'Periklu',
|
|
15
|
+
calloutImportant: 'Importanti',
|
|
16
|
+
calloutNote: 'Nota',
|
|
17
|
+
calloutTip: 'Suġġeriment',
|
|
18
|
+
calloutWarning: 'Twissija',
|
|
19
|
+
closeNavigation: 'Agħlaq in-navigazzjoni',
|
|
20
|
+
editSource: 'Editja din il-paġna',
|
|
21
|
+
displaySettings: 'Wiri',
|
|
22
|
+
focusReading: 'Qari ffukat',
|
|
23
|
+
footnoteBackReference: 'Lura għar-referenza {reference}',
|
|
24
|
+
footnotes: 'Noti ta’ qiegħ il-paġna',
|
|
25
|
+
readingWidth: 'Wisa’ tal-qari',
|
|
26
|
+
readingWidthNarrow: 'Dejjaq',
|
|
27
|
+
readingWidthStandard: 'Standard',
|
|
28
|
+
readingWidthWide: 'Wiesa’',
|
|
29
|
+
resetDisplaySettings: 'Irrisettja',
|
|
30
|
+
dismissBanner: 'Agħlaq l-avviż',
|
|
31
|
+
built: 'Mibni',
|
|
32
|
+
images: 'Stampi',
|
|
33
|
+
imageCarousel: 'karużell tal-istampi',
|
|
34
|
+
imageInspection: 'Wiri tal-istampa',
|
|
35
|
+
imageInspectionActualSize: 'Uri d-daqs attwali',
|
|
36
|
+
imageInspectionClose: 'Agħlaq il-wiri tal-istampa',
|
|
37
|
+
imageInspectionFit: 'Daħħal l-istampa fit-tieqa',
|
|
38
|
+
inspectImage: 'Ara l-istampa: {description}',
|
|
39
|
+
navigationCollapsedAll: 'L-elementi kollha tan-navigazzjoni ġew magħluqa.',
|
|
40
|
+
navigationCollapseAll: 'Agħlaq kollox',
|
|
41
|
+
navigationControls: 'Kontrolli tas-siġra tan-navigazzjoni',
|
|
42
|
+
navigationChildren: 'Paġni sekondarji',
|
|
43
|
+
navigationExpandedAll: 'L-elementi kollha tan-navigazzjoni ġew miftuħa.',
|
|
44
|
+
navigationExpandAll: 'Iftaħ kollox',
|
|
45
|
+
navigationFilter: 'Iffiltra paġni u gruppi',
|
|
46
|
+
navigationFilterEmpty: 'Ma nstabet l-ebda paġna jew grupp. Il-paġna attwali tibqa’ disponibbli.',
|
|
47
|
+
navigationFilterMatches: 'Elementi tan-navigazzjoni li jaqblu: {count}',
|
|
48
|
+
navigationLocatedCurrent: 'Instabet il-paġna attwali.',
|
|
49
|
+
navigationLocateCurrent: 'Sib il-paġna attwali',
|
|
50
|
+
navigationMenu: 'Menu',
|
|
51
|
+
nextImage: 'Stampa li jmiss',
|
|
52
|
+
nextPage: 'Paġna li jmiss',
|
|
53
|
+
note: 'Nota',
|
|
54
|
+
openInVsCode: 'Iftaħ f’VS Code',
|
|
55
|
+
notFound: 'Il-paġna ma nstabitx',
|
|
56
|
+
notFoundText: 'Il-paġna mitluba ma teżistix jew setgħet ġiet imċaqalqa.',
|
|
57
|
+
pageMoved: 'Il-paġna ġiet imċaqalqa',
|
|
58
|
+
pageMovedText: 'Dan l-indirizz issa jirreferi għal',
|
|
59
|
+
pageNavigation: 'Kontenut tal-paġna',
|
|
60
|
+
pageSequence: 'Sekwenza tal-paġni',
|
|
61
|
+
pageSections: 'Taqsimiet',
|
|
62
|
+
previousImage: 'Stampa ta’ qabel',
|
|
63
|
+
previousPage: 'Paġna ta’ qabel',
|
|
64
|
+
returnHome: 'Mur fil-paġna ewlenija',
|
|
65
|
+
searchReturn: 'Lura għal {page}',
|
|
66
|
+
search: 'Fittex',
|
|
67
|
+
searchDescription: 'Fittex fil-kontenut ippubblikat ta’ dan is-sit.',
|
|
68
|
+
searchLoading: 'Qed titgħabba t-tfittxija…',
|
|
69
|
+
searchNoScript: 'It-tfittxija teħtieġ JavaScript. Uża n-navigazzjoni tal-paġni meta JavaScript ma jkunx disponibbli.',
|
|
70
|
+
searchUnavailable: 'It-tfittxija mhix disponibbli. Waqt xogħol lokali, ħaddem norna build:local biex toħloq jew taġġorna l-indiċi tat-tfittxija.',
|
|
71
|
+
siteBanners: 'Avviżi tas-sit',
|
|
72
|
+
siteNavigation: 'Paġni',
|
|
73
|
+
skipToContent: 'Mur għall-kontenut',
|
|
74
|
+
tableColumns: 'Kolonni tat-tabella',
|
|
75
|
+
tableNextColumns: 'Uri l-kolonni li jmiss',
|
|
76
|
+
tableOverflowDescription: 'Hemm aktar kolonni tat-tabella disponibbli orizzontalment.',
|
|
77
|
+
tablePreviousColumns: 'Uri l-kolonni ta’ qabel',
|
|
78
|
+
});
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
export default Object.freeze({
|
|
2
|
+
tableSortAscending: 'Sorter stigende',
|
|
3
|
+
tableSortDescending: 'Sorter synkende',
|
|
4
|
+
tableSortReset: 'Gjenopprett opprinnelig rekkefølge',
|
|
5
|
+
breadcrumb: 'Brødsmulesti',
|
|
6
|
+
appearance: 'Utseende',
|
|
7
|
+
appearanceDark: 'Mørk',
|
|
8
|
+
appearanceLight: 'Lys',
|
|
9
|
+
appearanceSystem: 'System',
|
|
10
|
+
codeCopied: 'Kopiert',
|
|
11
|
+
codeCopyFailed: 'Kunne ikke kopiere koden',
|
|
12
|
+
copyCode: 'Kopier kode',
|
|
13
|
+
calloutCaution: 'Forsiktig',
|
|
14
|
+
calloutDanger: 'Fare',
|
|
15
|
+
calloutImportant: 'Viktig',
|
|
16
|
+
calloutNote: 'Merknad',
|
|
17
|
+
calloutTip: 'Tips',
|
|
18
|
+
calloutWarning: 'Advarsel',
|
|
19
|
+
closeNavigation: 'Lukk navigasjon',
|
|
20
|
+
editSource: 'Rediger denne siden',
|
|
21
|
+
displaySettings: 'Visning',
|
|
22
|
+
focusReading: 'Fokusert lesing',
|
|
23
|
+
footnoteBackReference: 'Tilbake til referanse {reference}',
|
|
24
|
+
footnotes: 'Fotnoter',
|
|
25
|
+
readingWidth: 'Lesebredde',
|
|
26
|
+
readingWidthNarrow: 'Smal',
|
|
27
|
+
readingWidthStandard: 'Standard',
|
|
28
|
+
readingWidthWide: 'Bred',
|
|
29
|
+
resetDisplaySettings: 'Tilbakestill',
|
|
30
|
+
dismissBanner: 'Lukk melding',
|
|
31
|
+
built: 'Bygget',
|
|
32
|
+
images: 'Bilder',
|
|
33
|
+
imageCarousel: 'bildekarusell',
|
|
34
|
+
imageInspection: 'Bildevisning',
|
|
35
|
+
imageInspectionActualSize: 'Vis faktisk størrelse',
|
|
36
|
+
imageInspectionClose: 'Lukk bildevisning',
|
|
37
|
+
imageInspectionFit: 'Tilpass bildet til vinduet',
|
|
38
|
+
inspectImage: 'Vis bilde: {description}',
|
|
39
|
+
navigationCollapsedAll: 'Alle navigasjonselementer er slått sammen.',
|
|
40
|
+
navigationCollapseAll: 'Slå sammen alle',
|
|
41
|
+
navigationControls: 'Kontroller for navigasjonstreet',
|
|
42
|
+
navigationChildren: 'Undersider',
|
|
43
|
+
navigationExpandedAll: 'Alle navigasjonselementer er utvidet.',
|
|
44
|
+
navigationExpandAll: 'Utvid alle',
|
|
45
|
+
navigationFilter: 'Filtrer sider og grupper',
|
|
46
|
+
navigationFilterEmpty: 'Ingen sider eller grupper samsvarer. Den gjeldende siden er fortsatt tilgjengelig.',
|
|
47
|
+
navigationFilterMatches: 'Samsvarende navigasjonselementer: {count}',
|
|
48
|
+
navigationLocatedCurrent: 'Den gjeldende siden er funnet.',
|
|
49
|
+
navigationLocateCurrent: 'Finn gjeldende side',
|
|
50
|
+
navigationMenu: 'Meny',
|
|
51
|
+
nextImage: 'Neste bilde',
|
|
52
|
+
nextPage: 'Neste side',
|
|
53
|
+
note: 'Merknad',
|
|
54
|
+
openInVsCode: 'Åpne i VS Code',
|
|
55
|
+
notFound: 'Fant ikke siden',
|
|
56
|
+
notFoundText: 'Den forespurte siden finnes ikke eller kan ha blitt flyttet.',
|
|
57
|
+
pageMoved: 'Siden er flyttet',
|
|
58
|
+
pageMovedText: 'Denne adressen viser nå til',
|
|
59
|
+
pageNavigation: 'Sideinnhold',
|
|
60
|
+
pageSequence: 'Siderekkefølge',
|
|
61
|
+
pageSections: 'Deler',
|
|
62
|
+
previousImage: 'Forrige bilde',
|
|
63
|
+
previousPage: 'Forrige side',
|
|
64
|
+
returnHome: 'Gå til startsiden',
|
|
65
|
+
searchReturn: 'Tilbake til {page}',
|
|
66
|
+
search: 'Søk',
|
|
67
|
+
searchDescription: 'Søk i det publiserte innholdet på dette nettstedet.',
|
|
68
|
+
searchLoading: 'Laster søk…',
|
|
69
|
+
searchNoScript: 'Søk krever JavaScript. Bruk sidenavigasjonen når JavaScript ikke er tilgjengelig.',
|
|
70
|
+
searchUnavailable: 'Søk er ikke tilgjengelig. Kjør norna build:local under lokalt arbeid for å opprette eller oppdatere søkeindeksen.',
|
|
71
|
+
siteBanners: 'Nettstedmeldinger',
|
|
72
|
+
siteNavigation: 'Sider',
|
|
73
|
+
skipToContent: 'Gå til innhold',
|
|
74
|
+
tableColumns: 'Tabellkolonner',
|
|
75
|
+
tableNextColumns: 'Vis neste kolonner',
|
|
76
|
+
tableOverflowDescription: 'Flere tabellkolonner er tilgjengelige vannrett.',
|
|
77
|
+
tablePreviousColumns: 'Vis forrige kolonner',
|
|
78
|
+
});
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
export default Object.freeze({
|
|
2
|
+
tableSortAscending: 'Oplopend sorteren',
|
|
3
|
+
tableSortDescending: 'Aflopend sorteren',
|
|
4
|
+
tableSortReset: 'Oorspronkelijke volgorde herstellen',
|
|
5
|
+
breadcrumb: 'Broodkruimelpad',
|
|
6
|
+
appearance: 'Weergave',
|
|
7
|
+
appearanceDark: 'Donker',
|
|
8
|
+
appearanceLight: 'Licht',
|
|
9
|
+
appearanceSystem: 'Systeem',
|
|
10
|
+
codeCopied: 'Gekopieerd',
|
|
11
|
+
codeCopyFailed: 'Code kon niet worden gekopieerd',
|
|
12
|
+
copyCode: 'Code kopiëren',
|
|
13
|
+
calloutCaution: 'Let op',
|
|
14
|
+
calloutDanger: 'Gevaar',
|
|
15
|
+
calloutImportant: 'Belangrijk',
|
|
16
|
+
calloutNote: 'Opmerking',
|
|
17
|
+
calloutTip: 'Tip',
|
|
18
|
+
calloutWarning: 'Waarschuwing',
|
|
19
|
+
closeNavigation: 'Navigatie sluiten',
|
|
20
|
+
editSource: 'Deze pagina bewerken',
|
|
21
|
+
displaySettings: 'Weergave',
|
|
22
|
+
focusReading: 'Focuslezen',
|
|
23
|
+
footnoteBackReference: 'Terug naar verwijzing {reference}',
|
|
24
|
+
footnotes: 'Voetnoten',
|
|
25
|
+
readingWidth: 'Leesbreedte',
|
|
26
|
+
readingWidthNarrow: 'Smal',
|
|
27
|
+
readingWidthStandard: 'Standaard',
|
|
28
|
+
readingWidthWide: 'Breed',
|
|
29
|
+
resetDisplaySettings: 'Herstellen',
|
|
30
|
+
dismissBanner: 'Melding sluiten',
|
|
31
|
+
built: 'Gebouwd',
|
|
32
|
+
images: 'Afbeeldingen',
|
|
33
|
+
imageCarousel: 'afbeeldingscarrousel',
|
|
34
|
+
imageInspection: 'Afbeelding bekijken',
|
|
35
|
+
imageInspectionActualSize: 'Werkelijke grootte tonen',
|
|
36
|
+
imageInspectionClose: 'Afbeeldingsweergave sluiten',
|
|
37
|
+
imageInspectionFit: 'Afbeelding aan venster aanpassen',
|
|
38
|
+
inspectImage: 'Afbeelding bekijken: {description}',
|
|
39
|
+
navigationCollapsedAll: 'Alle navigatie-items zijn ingeklapt.',
|
|
40
|
+
navigationCollapseAll: 'Alles inklappen',
|
|
41
|
+
navigationControls: 'Bediening van navigatieboom',
|
|
42
|
+
navigationChildren: 'Onderliggende pagina’s',
|
|
43
|
+
navigationExpandedAll: 'Alle navigatie-items zijn uitgeklapt.',
|
|
44
|
+
navigationExpandAll: 'Alles uitklappen',
|
|
45
|
+
navigationFilter: 'Pagina’s en groepen filteren',
|
|
46
|
+
navigationFilterEmpty: 'Geen overeenkomende pagina’s of groepen. De huidige pagina blijft beschikbaar.',
|
|
47
|
+
navigationFilterMatches: 'Overeenkomende navigatie-items: {count}',
|
|
48
|
+
navigationLocatedCurrent: 'Huidige pagina gevonden.',
|
|
49
|
+
navigationLocateCurrent: 'Huidige pagina zoeken',
|
|
50
|
+
navigationMenu: 'Menu',
|
|
51
|
+
nextImage: 'Volgende afbeelding',
|
|
52
|
+
nextPage: 'Volgende pagina',
|
|
53
|
+
note: 'Opmerking',
|
|
54
|
+
openInVsCode: 'Openen in VS Code',
|
|
55
|
+
notFound: 'Pagina niet gevonden',
|
|
56
|
+
notFoundText: 'De gevraagde pagina bestaat niet of is mogelijk verplaatst.',
|
|
57
|
+
pageMoved: 'Pagina verplaatst',
|
|
58
|
+
pageMovedText: 'Dit adres verwijst nu naar',
|
|
59
|
+
pageNavigation: 'Pagina-inhoud',
|
|
60
|
+
pageSequence: 'Paginavolgorde',
|
|
61
|
+
pageSections: 'Secties',
|
|
62
|
+
previousImage: 'Vorige afbeelding',
|
|
63
|
+
previousPage: 'Vorige pagina',
|
|
64
|
+
returnHome: 'Naar de startpagina',
|
|
65
|
+
searchReturn: 'Terug naar {page}',
|
|
66
|
+
search: 'Zoeken',
|
|
67
|
+
searchDescription: 'Zoek in de gepubliceerde inhoud van deze site.',
|
|
68
|
+
searchLoading: 'Zoeken laden…',
|
|
69
|
+
searchNoScript: 'Zoeken vereist JavaScript. Gebruik de paginanavigatie wanneer JavaScript niet beschikbaar is.',
|
|
70
|
+
searchUnavailable: 'Zoeken is niet beschikbaar. Voer tijdens lokaal werken norna build:local uit om de zoekindex te maken of bij te werken.',
|
|
71
|
+
siteBanners: 'Sitemeldingen',
|
|
72
|
+
siteNavigation: 'Pagina’s',
|
|
73
|
+
skipToContent: 'Naar inhoud',
|
|
74
|
+
tableColumns: 'Tabelkolommen',
|
|
75
|
+
tableNextColumns: 'Volgende kolommen tonen',
|
|
76
|
+
tableOverflowDescription: 'Meer tabelkolommen zijn horizontaal beschikbaar.',
|
|
77
|
+
tablePreviousColumns: 'Vorige kolommen tonen',
|
|
78
|
+
});
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
export default Object.freeze({
|
|
2
|
+
tableSortAscending: 'Sorter stigande',
|
|
3
|
+
tableSortDescending: 'Sorter søkkjande',
|
|
4
|
+
tableSortReset: 'Gjenopprett opphavleg rekkjefølgje',
|
|
5
|
+
breadcrumb: 'Brødsmulesti',
|
|
6
|
+
appearance: 'Utsjånad',
|
|
7
|
+
appearanceDark: 'Mørk',
|
|
8
|
+
appearanceLight: 'Lys',
|
|
9
|
+
appearanceSystem: 'System',
|
|
10
|
+
codeCopied: 'Kopiert',
|
|
11
|
+
codeCopyFailed: 'Klarte ikkje å kopiere koden',
|
|
12
|
+
copyCode: 'Kopier kode',
|
|
13
|
+
calloutCaution: 'Varsam',
|
|
14
|
+
calloutDanger: 'Fare',
|
|
15
|
+
calloutImportant: 'Viktig',
|
|
16
|
+
calloutNote: 'Merknad',
|
|
17
|
+
calloutTip: 'Tips',
|
|
18
|
+
calloutWarning: 'Åtvaring',
|
|
19
|
+
closeNavigation: 'Lukk navigasjonen',
|
|
20
|
+
editSource: 'Rediger denne sida',
|
|
21
|
+
displaySettings: 'Vising',
|
|
22
|
+
focusReading: 'Fokusert lesing',
|
|
23
|
+
footnoteBackReference: 'Tilbake til referanse {reference}',
|
|
24
|
+
footnotes: 'Fotnotar',
|
|
25
|
+
readingWidth: 'Lesebreidd',
|
|
26
|
+
readingWidthNarrow: 'Smal',
|
|
27
|
+
readingWidthStandard: 'Standard',
|
|
28
|
+
readingWidthWide: 'Breid',
|
|
29
|
+
resetDisplaySettings: 'Tilbakestill',
|
|
30
|
+
dismissBanner: 'Lukk meldinga',
|
|
31
|
+
built: 'Bygd',
|
|
32
|
+
images: 'Bilete',
|
|
33
|
+
imageCarousel: 'biletkarusell',
|
|
34
|
+
imageInspection: 'Biletvising',
|
|
35
|
+
imageInspectionActualSize: 'Vis faktisk storleik',
|
|
36
|
+
imageInspectionClose: 'Lukk biletvisinga',
|
|
37
|
+
imageInspectionFit: 'Tilpass biletet til vindauget',
|
|
38
|
+
inspectImage: 'Vis bilete: {description}',
|
|
39
|
+
navigationCollapsedAll: 'Alle navigasjonselementa er falda saman.',
|
|
40
|
+
navigationCollapseAll: 'Fald saman alle',
|
|
41
|
+
navigationControls: 'Kontrollar for navigasjonstreet',
|
|
42
|
+
navigationChildren: 'Undersider',
|
|
43
|
+
navigationExpandedAll: 'Alle navigasjonselementa er falda ut.',
|
|
44
|
+
navigationExpandAll: 'Fald ut alle',
|
|
45
|
+
navigationFilter: 'Filtrer sider og grupper',
|
|
46
|
+
navigationFilterEmpty: 'Ingen sider eller grupper passar. Den gjeldande sida er framleis tilgjengeleg.',
|
|
47
|
+
navigationFilterMatches: 'Navigasjonselement som passar: {count}',
|
|
48
|
+
navigationLocatedCurrent: 'Den gjeldande sida er funnen.',
|
|
49
|
+
navigationLocateCurrent: 'Finn gjeldande side',
|
|
50
|
+
navigationMenu: 'Meny',
|
|
51
|
+
nextImage: 'Neste bilete',
|
|
52
|
+
nextPage: 'Neste side',
|
|
53
|
+
note: 'Merknad',
|
|
54
|
+
openInVsCode: 'Opne i VS Code',
|
|
55
|
+
notFound: 'Fann ikkje sida',
|
|
56
|
+
notFoundText: 'Den etterspurde sida finst ikkje eller kan ha blitt flytta.',
|
|
57
|
+
pageMoved: 'Sida er flytta',
|
|
58
|
+
pageMovedText: 'Denne adressa viser no til',
|
|
59
|
+
pageNavigation: 'Sideinnhald',
|
|
60
|
+
pageSequence: 'Siderekkjefølgje',
|
|
61
|
+
pageSections: 'Delar',
|
|
62
|
+
previousImage: 'Førre bilete',
|
|
63
|
+
previousPage: 'Førre side',
|
|
64
|
+
returnHome: 'Gå til startsida',
|
|
65
|
+
searchReturn: 'Tilbake til {page}',
|
|
66
|
+
search: 'Søk',
|
|
67
|
+
searchDescription: 'Søk i det publiserte innhaldet på denne nettstaden.',
|
|
68
|
+
searchLoading: 'Lastar søk…',
|
|
69
|
+
searchNoScript: 'Søk krev JavaScript. Bruk sidenavigasjonen når JavaScript ikkje er tilgjengeleg.',
|
|
70
|
+
searchUnavailable: 'Søk er ikkje tilgjengeleg. Køyr norna build:local under lokalt arbeid for å opprette eller oppdatere søkjeindeksen.',
|
|
71
|
+
siteBanners: 'Nettstadmeldingar',
|
|
72
|
+
siteNavigation: 'Sider',
|
|
73
|
+
skipToContent: 'Gå til innhald',
|
|
74
|
+
tableColumns: 'Tabellkolonnar',
|
|
75
|
+
tableNextColumns: 'Vis neste kolonnar',
|
|
76
|
+
tableOverflowDescription: 'Fleire tabellkolonnar er tilgjengelege vassrett.',
|
|
77
|
+
tablePreviousColumns: 'Vis førre kolonnar',
|
|
78
|
+
});
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
export default Object.freeze({
|
|
2
|
+
tableSortAscending: 'Arrange from small to big',
|
|
3
|
+
tableSortDescending: 'Arrange from big to small',
|
|
4
|
+
tableSortReset: 'Bring back di original order',
|
|
5
|
+
breadcrumb: 'Navigation trail',
|
|
6
|
+
appearance: 'How e look',
|
|
7
|
+
appearanceDark: 'Dark',
|
|
8
|
+
appearanceLight: 'Light',
|
|
9
|
+
appearanceSystem: 'System',
|
|
10
|
+
codeCopied: 'Code don copy',
|
|
11
|
+
codeCopyFailed: 'Code no fit copy',
|
|
12
|
+
copyCode: 'Copy code',
|
|
13
|
+
calloutCaution: 'Take care',
|
|
14
|
+
calloutDanger: 'Danger',
|
|
15
|
+
calloutImportant: 'Important',
|
|
16
|
+
calloutNote: 'Note',
|
|
17
|
+
calloutTip: 'Tip',
|
|
18
|
+
calloutWarning: 'Warning',
|
|
19
|
+
closeNavigation: 'Close navigation',
|
|
20
|
+
editSource: 'Edit dis page',
|
|
21
|
+
displaySettings: 'Display',
|
|
22
|
+
focusReading: 'Focus reading',
|
|
23
|
+
footnoteBackReference: 'Go back to reference {reference}',
|
|
24
|
+
footnotes: 'Footnotes',
|
|
25
|
+
readingWidth: 'Reading width',
|
|
26
|
+
readingWidthNarrow: 'Narrow',
|
|
27
|
+
readingWidthStandard: 'Standard',
|
|
28
|
+
readingWidthWide: 'Wide',
|
|
29
|
+
resetDisplaySettings: 'Reset am',
|
|
30
|
+
dismissBanner: 'Close notice',
|
|
31
|
+
built: 'Built',
|
|
32
|
+
images: 'Pictures',
|
|
33
|
+
imageCarousel: 'picture carousel',
|
|
34
|
+
imageInspection: 'Check picture',
|
|
35
|
+
imageInspectionActualSize: 'Show correct size',
|
|
36
|
+
imageInspectionClose: 'Close picture check',
|
|
37
|
+
imageInspectionFit: 'Fit picture inside window',
|
|
38
|
+
inspectImage: 'Check picture: {description}',
|
|
39
|
+
navigationCollapsedAll: 'All navigation items don close.',
|
|
40
|
+
navigationCollapseAll: 'Close all',
|
|
41
|
+
navigationControls: 'Navigation tree controls',
|
|
42
|
+
navigationChildren: 'Pages wey dey under am',
|
|
43
|
+
navigationExpandedAll: 'All navigation items don open.',
|
|
44
|
+
navigationExpandAll: 'Open all',
|
|
45
|
+
navigationFilter: 'Filter pages and groups',
|
|
46
|
+
navigationFilterEmpty: 'No page or group match. Di page wey you dey still dey available.',
|
|
47
|
+
navigationFilterMatches: 'Navigation items wey match: {count}',
|
|
48
|
+
navigationLocatedCurrent: 'Current page don show.',
|
|
49
|
+
navigationLocateCurrent: 'Find current page',
|
|
50
|
+
navigationMenu: 'Menu',
|
|
51
|
+
nextImage: 'Next picture',
|
|
52
|
+
nextPage: 'Next page',
|
|
53
|
+
note: 'Note',
|
|
54
|
+
openInVsCode: 'Open for VS Code',
|
|
55
|
+
notFound: 'Page no dey',
|
|
56
|
+
notFoundText: 'Di page wey you ask for no dey or dem fit don move am.',
|
|
57
|
+
pageMoved: 'Page don move',
|
|
58
|
+
pageMovedText: 'Dis address now dey point to',
|
|
59
|
+
pageNavigation: 'Wetin dey dis page',
|
|
60
|
+
pageSequence: 'Page order',
|
|
61
|
+
pageSections: 'Sections',
|
|
62
|
+
previousImage: 'Previous picture',
|
|
63
|
+
previousPage: 'Previous page',
|
|
64
|
+
returnHome: 'Go homepage',
|
|
65
|
+
searchReturn: 'Go back to {page}',
|
|
66
|
+
search: 'Search',
|
|
67
|
+
searchDescription: 'Search wetin dem publish for dis site.',
|
|
68
|
+
searchLoading: 'Search dey load…',
|
|
69
|
+
searchNoScript: 'Search need JavaScript. Use page navigation if JavaScript no dey available.',
|
|
70
|
+
searchUnavailable: 'Search no dey available. When you dey work locally, run norna build:local to create or refresh di search index.',
|
|
71
|
+
siteBanners: 'Site notices',
|
|
72
|
+
siteNavigation: 'Pages',
|
|
73
|
+
skipToContent: 'Jump go content',
|
|
74
|
+
tableColumns: 'Table columns',
|
|
75
|
+
tableNextColumns: 'Show next columns',
|
|
76
|
+
tableOverflowDescription: 'More table columns dey available for side.',
|
|
77
|
+
tablePreviousColumns: 'Show previous columns',
|
|
78
|
+
});
|