@ndla/ui 12.0.2 → 13.1.0
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/es/Breadcrumb/Breadcrumb.js +101 -24
- package/es/Breadcrumb/BreadcrumbItem.js +70 -18
- package/es/Breadcrumb/HeaderBreadcrumb.js +82 -0
- package/es/Breadcrumb/HomeBreadcrumb.js +117 -0
- package/es/Breadcrumb/index.js +2 -1
- package/es/Breadcrumblist/index.js +1 -2
- package/es/all.css +1 -1
- package/es/index.js +1 -1
- package/es/locale/messages-en.js +55 -16
- package/es/locale/messages-nb.js +54 -15
- package/es/locale/messages-nn.js +55 -16
- package/es/locale/messages-se.js +52 -13
- package/es/locale/messages-sma.js +52 -13
- package/lib/Breadcrumb/Breadcrumb.d.ts +10 -12
- package/lib/Breadcrumb/Breadcrumb.js +104 -32
- package/lib/Breadcrumb/BreadcrumbItem.d.ts +15 -7
- package/lib/Breadcrumb/BreadcrumbItem.js +68 -20
- package/lib/Breadcrumb/HeaderBreadcrumb.d.ts +15 -0
- package/lib/Breadcrumb/HeaderBreadcrumb.js +95 -0
- package/lib/Breadcrumb/HomeBreadcrumb.d.ts +15 -0
- package/lib/Breadcrumb/HomeBreadcrumb.js +127 -0
- package/lib/Breadcrumb/index.d.ts +3 -1
- package/lib/Breadcrumb/index.js +11 -3
- package/lib/Breadcrumblist/index.js +0 -1
- package/lib/all.css +1 -1
- package/lib/index.d.ts +2 -1
- package/lib/index.js +10 -3
- package/lib/locale/messages-en.d.ts +39 -0
- package/lib/locale/messages-en.js +55 -16
- package/lib/locale/messages-nb.d.ts +39 -0
- package/lib/locale/messages-nb.js +54 -15
- package/lib/locale/messages-nn.d.ts +39 -0
- package/lib/locale/messages-nn.js +55 -16
- package/lib/locale/messages-se.d.ts +39 -0
- package/lib/locale/messages-se.js +52 -13
- package/lib/locale/messages-sma.d.ts +40 -1
- package/lib/locale/messages-sma.js +52 -13
- package/package.json +4 -4
- package/src/Breadcrumb/Breadcrumb.tsx +76 -40
- package/src/Breadcrumb/BreadcrumbItem.tsx +82 -18
- package/src/Breadcrumb/HeaderBreadcrumb.tsx +78 -0
- package/src/Breadcrumb/HomeBreadcrumb.tsx +88 -0
- package/src/Breadcrumb/index.ts +5 -1
- package/src/Breadcrumblist/index.tsx +0 -1
- package/src/index.ts +2 -1
- package/src/locale/__tests__/translations-test.ts +10 -0
- package/src/locale/messages-en.ts +51 -12
- package/src/locale/messages-nb.ts +50 -11
- package/src/locale/messages-nn.ts +52 -13
- package/src/locale/messages-se.ts +48 -9
- package/src/locale/messages-sma.ts +49 -10
- package/src/main.scss +0 -2
- package/es/Breadcrumb/BreadcrumbBlock.js +0 -90
- package/lib/Breadcrumb/BreadcrumbBlock.d.ts +0 -15
- package/lib/Breadcrumb/BreadcrumbBlock.js +0 -105
- package/src/Breadcrumb/BreadcrumbBlock.tsx +0 -80
- package/src/Breadcrumb/component.breadcrumb-block.scss +0 -98
- package/src/Breadcrumb/component.breadcrumb.scss +0 -104
package/lib/index.d.ts
CHANGED
|
@@ -58,7 +58,8 @@ export { default as Topic } from './Topic';
|
|
|
58
58
|
export type { TopicProps } from './Topic';
|
|
59
59
|
export { default as Aside } from './Aside';
|
|
60
60
|
export { default as AuthorInfo } from './AuthorInfo';
|
|
61
|
-
export { default as Breadcrumb,
|
|
61
|
+
export { default as Breadcrumb, HeaderBreadcrumb, HomeBreadcrumb } from './Breadcrumb';
|
|
62
|
+
export type { SimpleBreadcrumbItem, IndexedBreadcrumbItem } from './Breadcrumb';
|
|
62
63
|
export type { BreadcrumbItemProps } from './Breadcrumblist/Breadcrumblist';
|
|
63
64
|
export { i18nInstance, formatNestedMessages, formatMessage } from './i18n';
|
|
64
65
|
export { default as ResourceGroup } from './ResourceGroup';
|
package/lib/index.js
CHANGED
|
@@ -119,7 +119,8 @@ var _exportNames = {
|
|
|
119
119
|
Aside: true,
|
|
120
120
|
AuthorInfo: true,
|
|
121
121
|
Breadcrumb: true,
|
|
122
|
-
|
|
122
|
+
HeaderBreadcrumb: true,
|
|
123
|
+
HomeBreadcrumb: true,
|
|
123
124
|
i18nInstance: true,
|
|
124
125
|
formatNestedMessages: true,
|
|
125
126
|
formatMessage: true,
|
|
@@ -856,10 +857,16 @@ Object.defineProperty(exports, "Breadcrumb", {
|
|
|
856
857
|
return _Breadcrumb["default"];
|
|
857
858
|
}
|
|
858
859
|
});
|
|
859
|
-
Object.defineProperty(exports, "
|
|
860
|
+
Object.defineProperty(exports, "HeaderBreadcrumb", {
|
|
860
861
|
enumerable: true,
|
|
861
862
|
get: function get() {
|
|
862
|
-
return _Breadcrumb.
|
|
863
|
+
return _Breadcrumb.HeaderBreadcrumb;
|
|
864
|
+
}
|
|
865
|
+
});
|
|
866
|
+
Object.defineProperty(exports, "HomeBreadcrumb", {
|
|
867
|
+
enumerable: true,
|
|
868
|
+
get: function get() {
|
|
869
|
+
return _Breadcrumb.HomeBreadcrumb;
|
|
863
870
|
}
|
|
864
871
|
});
|
|
865
872
|
Object.defineProperty(exports, "i18nInstance", {
|
|
@@ -54,6 +54,21 @@ declare const messages: {
|
|
|
54
54
|
favourites: string;
|
|
55
55
|
help: string;
|
|
56
56
|
};
|
|
57
|
+
labels: {
|
|
58
|
+
category: string;
|
|
59
|
+
subject: string;
|
|
60
|
+
other: string;
|
|
61
|
+
};
|
|
62
|
+
listingPage: {
|
|
63
|
+
or: string;
|
|
64
|
+
noFilters: string;
|
|
65
|
+
loadMore: string;
|
|
66
|
+
};
|
|
67
|
+
siteNav: {
|
|
68
|
+
search: string;
|
|
69
|
+
contact: string;
|
|
70
|
+
help: string;
|
|
71
|
+
};
|
|
57
72
|
htmlTitles: {
|
|
58
73
|
titleTemplate: string;
|
|
59
74
|
welcomePage: string;
|
|
@@ -505,6 +520,12 @@ declare const messages: {
|
|
|
505
520
|
description: string;
|
|
506
521
|
rules: string;
|
|
507
522
|
title: string;
|
|
523
|
+
embedlink: {
|
|
524
|
+
heading: string;
|
|
525
|
+
description: string;
|
|
526
|
+
copyTitle: string;
|
|
527
|
+
hasCopiedTitle: string;
|
|
528
|
+
};
|
|
508
529
|
};
|
|
509
530
|
files: {
|
|
510
531
|
heading: string;
|
|
@@ -529,6 +550,11 @@ declare const messages: {
|
|
|
529
550
|
};
|
|
530
551
|
hasCopiedTitle: string;
|
|
531
552
|
download: string;
|
|
553
|
+
title: string;
|
|
554
|
+
originator: string;
|
|
555
|
+
rightsholder: string;
|
|
556
|
+
source: string;
|
|
557
|
+
published: string;
|
|
532
558
|
};
|
|
533
559
|
errorMessage: {
|
|
534
560
|
title: string;
|
|
@@ -625,6 +651,10 @@ declare const messages: {
|
|
|
625
651
|
search: {
|
|
626
652
|
placeholder: string;
|
|
627
653
|
};
|
|
654
|
+
embedlink: {
|
|
655
|
+
copyTitle: string;
|
|
656
|
+
hasCopiedTitle: string;
|
|
657
|
+
};
|
|
628
658
|
filters: {
|
|
629
659
|
subject: {
|
|
630
660
|
useFilter: string;
|
|
@@ -641,6 +671,7 @@ declare const messages: {
|
|
|
641
671
|
openFilter: string;
|
|
642
672
|
closeFilter: string;
|
|
643
673
|
heading: string;
|
|
674
|
+
filteredBy: string;
|
|
644
675
|
};
|
|
645
676
|
alphabet: {
|
|
646
677
|
letterFilter: string;
|
|
@@ -791,6 +822,14 @@ declare const messages: {
|
|
|
791
822
|
createdBy: {
|
|
792
823
|
content: string;
|
|
793
824
|
text: string;
|
|
825
|
+
concept: {
|
|
826
|
+
content: string;
|
|
827
|
+
text: string;
|
|
828
|
+
};
|
|
829
|
+
listing: {
|
|
830
|
+
content: string;
|
|
831
|
+
text: string;
|
|
832
|
+
};
|
|
794
833
|
};
|
|
795
834
|
fagfornyelse: {
|
|
796
835
|
frontpage: {
|
|
@@ -374,13 +374,13 @@ var messages = _objectSpread(_objectSpread({
|
|
|
374
374
|
openAll: 'Open all'
|
|
375
375
|
},
|
|
376
376
|
license: {
|
|
377
|
-
heading: '
|
|
377
|
+
heading: 'How to reuse content',
|
|
378
378
|
tabs: {
|
|
379
379
|
text: 'Text',
|
|
380
380
|
images: 'Images',
|
|
381
381
|
audio: 'Audio',
|
|
382
382
|
video: 'Video',
|
|
383
|
-
h5p: '
|
|
383
|
+
h5p: 'H5P',
|
|
384
384
|
files: 'Files',
|
|
385
385
|
embedlink: 'Embedded link',
|
|
386
386
|
other: 'Other content',
|
|
@@ -396,7 +396,7 @@ var messages = _objectSpread(_objectSpread({
|
|
|
396
396
|
rules: 'Rules for use of image:'
|
|
397
397
|
},
|
|
398
398
|
images: {
|
|
399
|
-
heading: 'How to
|
|
399
|
+
heading: 'How to reuse images',
|
|
400
400
|
description: 'Remember to copy the text to be attached to the image where you use it.',
|
|
401
401
|
rules: 'Rules for use of image:',
|
|
402
402
|
itemImage: {
|
|
@@ -410,44 +410,50 @@ var messages = _objectSpread(_objectSpread({
|
|
|
410
410
|
title: 'Title'
|
|
411
411
|
},
|
|
412
412
|
text: {
|
|
413
|
-
heading: 'How to
|
|
413
|
+
heading: 'How to reuse the text',
|
|
414
414
|
description: 'Remember to refer to the source when reusing text.',
|
|
415
415
|
rules: 'Rules for use of text:',
|
|
416
416
|
published: 'Published'
|
|
417
417
|
},
|
|
418
418
|
audio: {
|
|
419
|
-
heading: 'How to
|
|
419
|
+
heading: 'How to reuse audio files',
|
|
420
420
|
description: 'Remember to copy the text to be attached to the audio where you use it.',
|
|
421
421
|
rules: 'Rules for use of audio file:'
|
|
422
422
|
},
|
|
423
423
|
video: {
|
|
424
|
-
heading: 'How to
|
|
424
|
+
heading: 'How to reuse videos',
|
|
425
425
|
description: 'Remember to copy the text to be attached to the video where you use it.',
|
|
426
|
-
rules: 'Rules for use of
|
|
426
|
+
rules: 'Rules for use of video files:',
|
|
427
427
|
itemImage: {
|
|
428
428
|
ariaLabel: 'Open video in new window'
|
|
429
429
|
}
|
|
430
430
|
},
|
|
431
431
|
other: {
|
|
432
|
-
heading: 'How to
|
|
432
|
+
heading: 'How to reuse other content',
|
|
433
433
|
description: 'You will find guidelines for use of other content in the asset',
|
|
434
434
|
itemImage: {
|
|
435
435
|
ariaLabel: 'Open in new window'
|
|
436
436
|
}
|
|
437
437
|
},
|
|
438
438
|
h5p: {
|
|
439
|
-
heading: 'How to
|
|
439
|
+
heading: 'How to reuse H5P content',
|
|
440
440
|
description: 'You will find guidelines for use of H5P content in the asset',
|
|
441
441
|
rules: 'Rules for use of H5P:'
|
|
442
442
|
},
|
|
443
443
|
concept: {
|
|
444
|
-
heading: 'How to
|
|
444
|
+
heading: 'How to reuse concept content',
|
|
445
445
|
description: 'You will find guidelines for use of concept content in the asset',
|
|
446
446
|
rules: 'Rules for use of concept:',
|
|
447
|
-
title: 'Title'
|
|
447
|
+
title: 'Title',
|
|
448
|
+
embedlink: {
|
|
449
|
+
heading: 'How to show the concept in other content',
|
|
450
|
+
description: 'This url shows the concept without menu and footer',
|
|
451
|
+
copyTitle: 'Copy embed link',
|
|
452
|
+
hasCopiedTitle: 'Embed link copied'
|
|
453
|
+
}
|
|
448
454
|
},
|
|
449
455
|
files: {
|
|
450
|
-
heading: 'How to
|
|
456
|
+
heading: 'How to reuse files',
|
|
451
457
|
description: 'Remember to copy the text to be attached to the file where you use it.',
|
|
452
458
|
rules: 'Rules for use of file:',
|
|
453
459
|
itemImage: {
|
|
@@ -468,7 +474,12 @@ var messages = _objectSpread(_objectSpread({
|
|
|
468
474
|
readDate: 'Read: '
|
|
469
475
|
},
|
|
470
476
|
hasCopiedTitle: 'Copied!',
|
|
471
|
-
download: 'Download'
|
|
477
|
+
download: 'Download',
|
|
478
|
+
title: 'Title',
|
|
479
|
+
originator: 'Originator',
|
|
480
|
+
rightsholder: 'Rightsholder',
|
|
481
|
+
source: 'Source',
|
|
482
|
+
published: 'Published'
|
|
472
483
|
},
|
|
473
484
|
errorMessage: {
|
|
474
485
|
title: 'Oops, something went wrong',
|
|
@@ -565,6 +576,10 @@ var messages = _objectSpread(_objectSpread({
|
|
|
565
576
|
search: {
|
|
566
577
|
placeholder: 'Search'
|
|
567
578
|
},
|
|
579
|
+
embedlink: {
|
|
580
|
+
copyTitle: 'Copy embed code',
|
|
581
|
+
hasCopiedTitle: 'Embed code copied'
|
|
582
|
+
},
|
|
568
583
|
filters: {
|
|
569
584
|
subject: {
|
|
570
585
|
useFilter: 'Use filter',
|
|
@@ -580,7 +595,8 @@ var messages = _objectSpread(_objectSpread({
|
|
|
580
595
|
useFilter: 'Use filter',
|
|
581
596
|
openFilter: 'Filter',
|
|
582
597
|
closeFilter: 'Close filter',
|
|
583
|
-
heading: 'Filter'
|
|
598
|
+
heading: 'Filter',
|
|
599
|
+
filteredBy: 'Filtered by'
|
|
584
600
|
},
|
|
585
601
|
alphabet: {
|
|
586
602
|
letterFilter: 'Filter content by the letter {{letter}}.'
|
|
@@ -730,7 +746,15 @@ var messages = _objectSpread(_objectSpread({
|
|
|
730
746
|
},
|
|
731
747
|
createdBy: {
|
|
732
748
|
content: 'The resource',
|
|
733
|
-
text: 'is retrieved from'
|
|
749
|
+
text: 'is retrieved from',
|
|
750
|
+
concept: {
|
|
751
|
+
content: 'The concept',
|
|
752
|
+
text: 'is created by'
|
|
753
|
+
},
|
|
754
|
+
listing: {
|
|
755
|
+
content: 'The list',
|
|
756
|
+
text: 'is created by'
|
|
757
|
+
}
|
|
734
758
|
},
|
|
735
759
|
fagfornyelse: {
|
|
736
760
|
frontpage: {
|
|
@@ -763,7 +787,7 @@ var messages = _objectSpread(_objectSpread({
|
|
|
763
787
|
frontpageMenu: {
|
|
764
788
|
program: 'Education programme',
|
|
765
789
|
allsubjects: 'All subjects',
|
|
766
|
-
cursorText: 'Have a look at some new learning resources from our
|
|
790
|
+
cursorText: 'Have a look at some new learning resources from our new subjects!'
|
|
767
791
|
},
|
|
768
792
|
navigation: {
|
|
769
793
|
showLongerDescription: 'Show topic description',
|
|
@@ -903,6 +927,21 @@ var messages = _objectSpread(_objectSpread({
|
|
|
903
927
|
myAccount: 'My account',
|
|
904
928
|
favourites: 'Favourites',
|
|
905
929
|
help: 'Help'
|
|
930
|
+
},
|
|
931
|
+
labels: {
|
|
932
|
+
category: 'Category',
|
|
933
|
+
subject: 'Subject',
|
|
934
|
+
other: 'Other'
|
|
935
|
+
},
|
|
936
|
+
listingPage: {
|
|
937
|
+
or: 'or',
|
|
938
|
+
noFilters: 'Have nothing to filter',
|
|
939
|
+
loadMore: 'Load more'
|
|
940
|
+
},
|
|
941
|
+
siteNav: {
|
|
942
|
+
search: 'Search',
|
|
943
|
+
contact: 'Contact',
|
|
944
|
+
help: 'Help'
|
|
906
945
|
}
|
|
907
946
|
});
|
|
908
947
|
|
|
@@ -54,6 +54,21 @@ declare const messages: {
|
|
|
54
54
|
favourites: string;
|
|
55
55
|
help: string;
|
|
56
56
|
};
|
|
57
|
+
labels: {
|
|
58
|
+
category: string;
|
|
59
|
+
subject: string;
|
|
60
|
+
other: string;
|
|
61
|
+
};
|
|
62
|
+
listingPage: {
|
|
63
|
+
or: string;
|
|
64
|
+
noFilters: string;
|
|
65
|
+
loadMore: string;
|
|
66
|
+
};
|
|
67
|
+
siteNav: {
|
|
68
|
+
search: string;
|
|
69
|
+
contact: string;
|
|
70
|
+
help: string;
|
|
71
|
+
};
|
|
57
72
|
htmlTitles: {
|
|
58
73
|
titleTemplate: string;
|
|
59
74
|
welcomePage: string;
|
|
@@ -520,6 +535,12 @@ declare const messages: {
|
|
|
520
535
|
description: string;
|
|
521
536
|
rules: string;
|
|
522
537
|
title: string;
|
|
538
|
+
embedlink: {
|
|
539
|
+
heading: string;
|
|
540
|
+
description: string;
|
|
541
|
+
copyTitle: string;
|
|
542
|
+
hasCopiedTitle: string;
|
|
543
|
+
};
|
|
523
544
|
};
|
|
524
545
|
files: {
|
|
525
546
|
heading: string;
|
|
@@ -529,6 +550,11 @@ declare const messages: {
|
|
|
529
550
|
ariaLabel: string;
|
|
530
551
|
};
|
|
531
552
|
};
|
|
553
|
+
title: string;
|
|
554
|
+
originator: string;
|
|
555
|
+
published: string;
|
|
556
|
+
rightsholder: string;
|
|
557
|
+
source: string;
|
|
532
558
|
};
|
|
533
559
|
errorMessage: {
|
|
534
560
|
title: string;
|
|
@@ -625,6 +651,10 @@ declare const messages: {
|
|
|
625
651
|
search: {
|
|
626
652
|
placeholder: string;
|
|
627
653
|
};
|
|
654
|
+
embedlink: {
|
|
655
|
+
copyTitle: string;
|
|
656
|
+
hasCopiedTitle: string;
|
|
657
|
+
};
|
|
628
658
|
filters: {
|
|
629
659
|
subject: {
|
|
630
660
|
useFilter: string;
|
|
@@ -641,6 +671,7 @@ declare const messages: {
|
|
|
641
671
|
openFilter: string;
|
|
642
672
|
closeFilter: string;
|
|
643
673
|
heading: string;
|
|
674
|
+
filteredBy: string;
|
|
644
675
|
};
|
|
645
676
|
alphabet: {
|
|
646
677
|
letterFilter: string;
|
|
@@ -791,6 +822,14 @@ declare const messages: {
|
|
|
791
822
|
createdBy: {
|
|
792
823
|
content: string;
|
|
793
824
|
text: string;
|
|
825
|
+
concept: {
|
|
826
|
+
content: string;
|
|
827
|
+
text: string;
|
|
828
|
+
};
|
|
829
|
+
listing: {
|
|
830
|
+
content: string;
|
|
831
|
+
text: string;
|
|
832
|
+
};
|
|
794
833
|
};
|
|
795
834
|
fagfornyelse: {
|
|
796
835
|
frontpage: {
|
|
@@ -395,7 +395,7 @@ var messages = _objectSpread(_objectSpread({
|
|
|
395
395
|
images: 'Bilder',
|
|
396
396
|
audio: 'Lyd',
|
|
397
397
|
video: 'Video',
|
|
398
|
-
h5p: '
|
|
398
|
+
h5p: 'H5P',
|
|
399
399
|
files: 'Filer',
|
|
400
400
|
embedlink: 'Innbyggingslenke',
|
|
401
401
|
concept: 'Forklaringer',
|
|
@@ -403,7 +403,7 @@ var messages = _objectSpread(_objectSpread({
|
|
|
403
403
|
},
|
|
404
404
|
embedlink: {
|
|
405
405
|
heading: 'Slik viser du artikkelen i annet innhold',
|
|
406
|
-
description: 'Denne lenken viser artikkelen uten kontekst(meny og bunntekst)',
|
|
406
|
+
description: 'Denne lenken viser artikkelen uten kontekst (meny og bunntekst)',
|
|
407
407
|
copyTitle: 'Kopier lenke',
|
|
408
408
|
hasCopiedTitle: 'Lenke kopiert'
|
|
409
409
|
},
|
|
@@ -411,7 +411,7 @@ var messages = _objectSpread(_objectSpread({
|
|
|
411
411
|
rules: 'Regler for bruk av bildet:'
|
|
412
412
|
},
|
|
413
413
|
images: {
|
|
414
|
-
heading: 'Slik
|
|
414
|
+
heading: 'Slik gjenbruker du bilder',
|
|
415
415
|
description: 'Husk å kopiere teksten som skal legges ved bildet der du bruker det.',
|
|
416
416
|
rules: 'Regler for bruk av bildet:',
|
|
417
417
|
itemImage: {
|
|
@@ -425,18 +425,18 @@ var messages = _objectSpread(_objectSpread({
|
|
|
425
425
|
title: 'Tittel'
|
|
426
426
|
},
|
|
427
427
|
text: {
|
|
428
|
-
heading: 'Slik
|
|
428
|
+
heading: 'Slik gjenbruker du teksten',
|
|
429
429
|
description: 'Husk å henvise til kilden når du gjenbruker tekst.',
|
|
430
430
|
rules: 'Regler for bruk av teksten:',
|
|
431
431
|
published: 'Publiseringsdato'
|
|
432
432
|
},
|
|
433
433
|
audio: {
|
|
434
|
-
heading: 'Slik
|
|
434
|
+
heading: 'Slik gjenbruker du lydfiler',
|
|
435
435
|
description: 'Husk å kopiere teksten som skal legges ved lydfilen der du bruker den.',
|
|
436
436
|
rules: 'Regler for bruk av lydfilen:'
|
|
437
437
|
},
|
|
438
438
|
video: {
|
|
439
|
-
heading: 'Slik
|
|
439
|
+
heading: 'Slik gjenbruker du videoer',
|
|
440
440
|
description: 'Husk å kopiere teksten som skal legges ved videoen der du bruker den.',
|
|
441
441
|
rules: 'Regler for bruk av videoen:',
|
|
442
442
|
itemImage: {
|
|
@@ -444,31 +444,42 @@ var messages = _objectSpread(_objectSpread({
|
|
|
444
444
|
}
|
|
445
445
|
},
|
|
446
446
|
other: {
|
|
447
|
-
heading: 'Slik
|
|
447
|
+
heading: 'Slik gjenbruker du annet innhold',
|
|
448
448
|
description: 'Du finner retningslinjene for bruk av innholdet i innholdselementet',
|
|
449
449
|
itemImage: {
|
|
450
450
|
ariaLabel: 'Åpne i nytt vindu'
|
|
451
451
|
}
|
|
452
452
|
},
|
|
453
453
|
h5p: {
|
|
454
|
-
heading: 'Slik
|
|
454
|
+
heading: 'Slik gjenbruker du H5P-innhold',
|
|
455
455
|
description: 'Du finner retningslinjene for bruk av innholdet i H5P-elementet',
|
|
456
456
|
rules: 'Regler for bruk av H5P:'
|
|
457
457
|
},
|
|
458
458
|
concept: {
|
|
459
|
-
heading: 'Slik
|
|
459
|
+
heading: 'Slik gjenbruker du forklaringer',
|
|
460
460
|
description: 'Du finner retningslinjene for bruk av innholdet i forklaring-elementet',
|
|
461
461
|
rules: 'Regler for bruk av forklaring:',
|
|
462
|
-
title: 'Tittel'
|
|
462
|
+
title: 'Tittel',
|
|
463
|
+
embedlink: {
|
|
464
|
+
heading: 'Slik viser du forklaringen i annet innhold',
|
|
465
|
+
description: 'Denne lenken viser forklaringen uten kontekst (meny og bunntekst)',
|
|
466
|
+
copyTitle: 'Kopier innbyggingslenke',
|
|
467
|
+
hasCopiedTitle: 'Innbyggingslenke kopiert'
|
|
468
|
+
}
|
|
463
469
|
},
|
|
464
470
|
files: {
|
|
465
|
-
heading: 'Slik
|
|
471
|
+
heading: 'Slik gjenbruker du filer',
|
|
466
472
|
description: 'Husk å kopier teksten som skal legges ved filen der du bruker den.',
|
|
467
473
|
rules: 'Regler for bruk av filen:',
|
|
468
474
|
itemImage: {
|
|
469
475
|
ariaLabel: 'Åpne i nytt vindu'
|
|
470
476
|
}
|
|
471
|
-
}
|
|
477
|
+
},
|
|
478
|
+
title: 'Tittel',
|
|
479
|
+
originator: 'Opphaver',
|
|
480
|
+
published: 'Publiseringsdato',
|
|
481
|
+
rightsholder: 'Rettighetshaver',
|
|
482
|
+
source: 'Kilde'
|
|
472
483
|
},
|
|
473
484
|
errorMessage: {
|
|
474
485
|
title: 'Ops, noe gikk galt',
|
|
@@ -565,6 +576,10 @@ var messages = _objectSpread(_objectSpread({
|
|
|
565
576
|
search: {
|
|
566
577
|
placeholder: 'Søk'
|
|
567
578
|
},
|
|
579
|
+
embedlink: {
|
|
580
|
+
copyTitle: 'Kopier innbyggingskode',
|
|
581
|
+
hasCopiedTitle: 'Innbyggingskode kopiert'
|
|
582
|
+
},
|
|
568
583
|
filters: {
|
|
569
584
|
subject: {
|
|
570
585
|
useFilter: 'Bruk filter',
|
|
@@ -580,7 +595,8 @@ var messages = _objectSpread(_objectSpread({
|
|
|
580
595
|
useFilter: 'Bruk filter',
|
|
581
596
|
openFilter: 'Filtrer',
|
|
582
597
|
closeFilter: 'Lukk filter',
|
|
583
|
-
heading: 'Filter'
|
|
598
|
+
heading: 'Filter',
|
|
599
|
+
filteredBy: 'Filtrert på'
|
|
584
600
|
},
|
|
585
601
|
alphabet: {
|
|
586
602
|
letterFilter: 'Vis innhald på (bokstaven) {{letter}}.'
|
|
@@ -730,7 +746,15 @@ var messages = _objectSpread(_objectSpread({
|
|
|
730
746
|
},
|
|
731
747
|
createdBy: {
|
|
732
748
|
content: 'Ressursen',
|
|
733
|
-
text: 'er hentet fra'
|
|
749
|
+
text: 'er hentet fra',
|
|
750
|
+
concept: {
|
|
751
|
+
content: 'Forklaringen',
|
|
752
|
+
text: 'er utarbeidet av'
|
|
753
|
+
},
|
|
754
|
+
listing: {
|
|
755
|
+
content: 'Listen',
|
|
756
|
+
text: 'er utarbeidet av'
|
|
757
|
+
}
|
|
734
758
|
},
|
|
735
759
|
fagfornyelse: {
|
|
736
760
|
frontpage: {
|
|
@@ -763,7 +787,7 @@ var messages = _objectSpread(_objectSpread({
|
|
|
763
787
|
frontpageMenu: {
|
|
764
788
|
program: 'Utdanningsprogram',
|
|
765
789
|
allsubjects: 'Alle fag',
|
|
766
|
-
cursorText: 'Se smakebiter fra fag
|
|
790
|
+
cursorText: 'Se smakebiter fra fag under utvikling.'
|
|
767
791
|
},
|
|
768
792
|
navigation: {
|
|
769
793
|
showLongerDescription: 'Vis hele emnebeskrivelsen',
|
|
@@ -903,6 +927,21 @@ var messages = _objectSpread(_objectSpread({
|
|
|
903
927
|
myAccount: 'Min konto',
|
|
904
928
|
favourites: 'Favoritter',
|
|
905
929
|
help: 'Hjelp'
|
|
930
|
+
},
|
|
931
|
+
labels: {
|
|
932
|
+
category: 'Kategori',
|
|
933
|
+
subject: 'Fag',
|
|
934
|
+
other: 'Annet'
|
|
935
|
+
},
|
|
936
|
+
listingPage: {
|
|
937
|
+
or: 'eller',
|
|
938
|
+
noFilters: 'Har ingenting å filtrere',
|
|
939
|
+
loadMore: 'Last mer'
|
|
940
|
+
},
|
|
941
|
+
siteNav: {
|
|
942
|
+
search: 'Søk',
|
|
943
|
+
contact: 'Kontakt',
|
|
944
|
+
help: 'Hjelp'
|
|
906
945
|
}
|
|
907
946
|
});
|
|
908
947
|
|
|
@@ -54,6 +54,21 @@ declare const messages: {
|
|
|
54
54
|
favourites: string;
|
|
55
55
|
help: string;
|
|
56
56
|
};
|
|
57
|
+
labels: {
|
|
58
|
+
category: string;
|
|
59
|
+
subject: string;
|
|
60
|
+
other: string;
|
|
61
|
+
};
|
|
62
|
+
listingPage: {
|
|
63
|
+
or: string;
|
|
64
|
+
noFilters: string;
|
|
65
|
+
loadMore: string;
|
|
66
|
+
};
|
|
67
|
+
siteNav: {
|
|
68
|
+
search: string;
|
|
69
|
+
contact: string;
|
|
70
|
+
help: string;
|
|
71
|
+
};
|
|
57
72
|
htmlTitles: {
|
|
58
73
|
titleTemplate: string;
|
|
59
74
|
welcomePage: string;
|
|
@@ -516,6 +531,12 @@ declare const messages: {
|
|
|
516
531
|
rules: string;
|
|
517
532
|
};
|
|
518
533
|
concept: {
|
|
534
|
+
embedlink: {
|
|
535
|
+
heading: string;
|
|
536
|
+
description: string;
|
|
537
|
+
copyTitle: string;
|
|
538
|
+
hasCopiedTitle: string;
|
|
539
|
+
};
|
|
519
540
|
heading: string;
|
|
520
541
|
description: string;
|
|
521
542
|
rules: string;
|
|
@@ -529,6 +550,11 @@ declare const messages: {
|
|
|
529
550
|
ariaLabel: string;
|
|
530
551
|
};
|
|
531
552
|
};
|
|
553
|
+
title: string;
|
|
554
|
+
originator: string;
|
|
555
|
+
rightsholder: string;
|
|
556
|
+
source: string;
|
|
557
|
+
published: string;
|
|
532
558
|
};
|
|
533
559
|
errorMessage: {
|
|
534
560
|
title: string;
|
|
@@ -625,6 +651,10 @@ declare const messages: {
|
|
|
625
651
|
search: {
|
|
626
652
|
placeholder: string;
|
|
627
653
|
};
|
|
654
|
+
embedlink: {
|
|
655
|
+
copyTitle: string;
|
|
656
|
+
hasCopiedTitle: string;
|
|
657
|
+
};
|
|
628
658
|
filters: {
|
|
629
659
|
subject: {
|
|
630
660
|
useFilter: string;
|
|
@@ -641,6 +671,7 @@ declare const messages: {
|
|
|
641
671
|
openFilter: string;
|
|
642
672
|
closeFilter: string;
|
|
643
673
|
heading: string;
|
|
674
|
+
filteredBy: string;
|
|
644
675
|
};
|
|
645
676
|
alphabet: {
|
|
646
677
|
letterFilter: string;
|
|
@@ -791,6 +822,14 @@ declare const messages: {
|
|
|
791
822
|
createdBy: {
|
|
792
823
|
content: string;
|
|
793
824
|
text: string;
|
|
825
|
+
concept: {
|
|
826
|
+
content: string;
|
|
827
|
+
text: string;
|
|
828
|
+
};
|
|
829
|
+
listing: {
|
|
830
|
+
content: string;
|
|
831
|
+
text: string;
|
|
832
|
+
};
|
|
794
833
|
};
|
|
795
834
|
fagfornyelse: {
|
|
796
835
|
frontpage: {
|