@ndla/ui 12.0.1 → 13.0.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 +63 -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 +59 -18
- package/es/locale/messages-nb.js +58 -17
- package/es/locale/messages-nn.js +59 -18
- package/es/locale/messages-se.js +56 -15
- package/es/locale/messages-sma.js +56 -15
- 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 +14 -0
- package/lib/Breadcrumb/HeaderBreadcrumb.js +76 -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 +43 -2
- package/lib/locale/messages-en.js +59 -18
- package/lib/locale/messages-nb.d.ts +43 -2
- package/lib/locale/messages-nb.js +58 -17
- package/lib/locale/messages-nn.d.ts +43 -2
- package/lib/locale/messages-nn.js +59 -18
- package/lib/locale/messages-se.d.ts +43 -2
- package/lib/locale/messages-se.js +56 -15
- package/lib/locale/messages-sma.d.ts +44 -3
- package/lib/locale/messages-sma.js +56 -15
- package/package.json +10 -10
- package/src/Breadcrumb/Breadcrumb.tsx +76 -40
- package/src/Breadcrumb/BreadcrumbItem.tsx +82 -18
- package/src/Breadcrumb/HeaderBreadcrumb.tsx +67 -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 +55 -14
- package/src/locale/messages-nb.ts +54 -13
- package/src/locale/messages-nn.ts +56 -15
- package/src/locale/messages-se.ts +52 -11
- package/src/locale/messages-sma.ts +53 -12
- 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/.DS_Store +0 -0
- 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;
|
|
@@ -559,8 +585,10 @@ declare const messages: {
|
|
|
559
585
|
newsletterAria: string;
|
|
560
586
|
youtube: string;
|
|
561
587
|
youtubeAria: string;
|
|
562
|
-
|
|
563
|
-
|
|
588
|
+
linkedin: string;
|
|
589
|
+
linkedinAria: string;
|
|
590
|
+
instagram: string;
|
|
591
|
+
instagramAria: string;
|
|
564
592
|
sharePage: string;
|
|
565
593
|
sharePageAria: string;
|
|
566
594
|
};
|
|
@@ -623,6 +651,10 @@ declare const messages: {
|
|
|
623
651
|
search: {
|
|
624
652
|
placeholder: string;
|
|
625
653
|
};
|
|
654
|
+
embedlink: {
|
|
655
|
+
copyTitle: string;
|
|
656
|
+
hasCopiedTitle: string;
|
|
657
|
+
};
|
|
626
658
|
filters: {
|
|
627
659
|
subject: {
|
|
628
660
|
useFilter: string;
|
|
@@ -639,6 +671,7 @@ declare const messages: {
|
|
|
639
671
|
openFilter: string;
|
|
640
672
|
closeFilter: string;
|
|
641
673
|
heading: string;
|
|
674
|
+
filteredBy: string;
|
|
642
675
|
};
|
|
643
676
|
alphabet: {
|
|
644
677
|
letterFilter: string;
|
|
@@ -789,6 +822,14 @@ declare const messages: {
|
|
|
789
822
|
createdBy: {
|
|
790
823
|
content: string;
|
|
791
824
|
text: string;
|
|
825
|
+
concept: {
|
|
826
|
+
content: string;
|
|
827
|
+
text: string;
|
|
828
|
+
};
|
|
829
|
+
listing: {
|
|
830
|
+
content: string;
|
|
831
|
+
text: string;
|
|
832
|
+
};
|
|
792
833
|
};
|
|
793
834
|
fagfornyelse: {
|
|
794
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',
|
|
@@ -499,8 +510,10 @@ var messages = _objectSpread(_objectSpread({
|
|
|
499
510
|
newsletterAria: 'Sign up for our Newsletter',
|
|
500
511
|
youtube: 'NDLA on YouTube',
|
|
501
512
|
youtubeAria: 'NDLA on YouTube',
|
|
502
|
-
|
|
503
|
-
|
|
513
|
+
linkedin: 'NDLA on LinkedIn',
|
|
514
|
+
linkedinAria: 'Visit NDLA on LinkedIn',
|
|
515
|
+
instagram: 'NDLA on Instagram',
|
|
516
|
+
instagramAria: 'Visit NDLA on Instagram',
|
|
504
517
|
sharePage: 'Share this page',
|
|
505
518
|
sharePageAria: 'Share this page'
|
|
506
519
|
},
|
|
@@ -563,6 +576,10 @@ var messages = _objectSpread(_objectSpread({
|
|
|
563
576
|
search: {
|
|
564
577
|
placeholder: 'Search'
|
|
565
578
|
},
|
|
579
|
+
embedlink: {
|
|
580
|
+
copyTitle: 'Copy embed code',
|
|
581
|
+
hasCopiedTitle: 'Embed code copied'
|
|
582
|
+
},
|
|
566
583
|
filters: {
|
|
567
584
|
subject: {
|
|
568
585
|
useFilter: 'Use filter',
|
|
@@ -578,7 +595,8 @@ var messages = _objectSpread(_objectSpread({
|
|
|
578
595
|
useFilter: 'Use filter',
|
|
579
596
|
openFilter: 'Filter',
|
|
580
597
|
closeFilter: 'Close filter',
|
|
581
|
-
heading: 'Filter'
|
|
598
|
+
heading: 'Filter',
|
|
599
|
+
filteredBy: 'Filtered by'
|
|
582
600
|
},
|
|
583
601
|
alphabet: {
|
|
584
602
|
letterFilter: 'Filter content by the letter {{letter}}.'
|
|
@@ -728,7 +746,15 @@ var messages = _objectSpread(_objectSpread({
|
|
|
728
746
|
},
|
|
729
747
|
createdBy: {
|
|
730
748
|
content: 'The resource',
|
|
731
|
-
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
|
+
}
|
|
732
758
|
},
|
|
733
759
|
fagfornyelse: {
|
|
734
760
|
frontpage: {
|
|
@@ -761,7 +787,7 @@ var messages = _objectSpread(_objectSpread({
|
|
|
761
787
|
frontpageMenu: {
|
|
762
788
|
program: 'Education programme',
|
|
763
789
|
allsubjects: 'All subjects',
|
|
764
|
-
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!'
|
|
765
791
|
},
|
|
766
792
|
navigation: {
|
|
767
793
|
showLongerDescription: 'Show topic description',
|
|
@@ -901,6 +927,21 @@ var messages = _objectSpread(_objectSpread({
|
|
|
901
927
|
myAccount: 'My account',
|
|
902
928
|
favourites: 'Favourites',
|
|
903
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'
|
|
904
945
|
}
|
|
905
946
|
});
|
|
906
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;
|
|
@@ -559,8 +585,10 @@ declare const messages: {
|
|
|
559
585
|
newsletterAria: string;
|
|
560
586
|
youtube: string;
|
|
561
587
|
youtubeAria: string;
|
|
562
|
-
|
|
563
|
-
|
|
588
|
+
linkedin: string;
|
|
589
|
+
linkedinAria: string;
|
|
590
|
+
instagram: string;
|
|
591
|
+
instagramAria: string;
|
|
564
592
|
sharePage: string;
|
|
565
593
|
sharePageAria: string;
|
|
566
594
|
};
|
|
@@ -623,6 +651,10 @@ declare const messages: {
|
|
|
623
651
|
search: {
|
|
624
652
|
placeholder: string;
|
|
625
653
|
};
|
|
654
|
+
embedlink: {
|
|
655
|
+
copyTitle: string;
|
|
656
|
+
hasCopiedTitle: string;
|
|
657
|
+
};
|
|
626
658
|
filters: {
|
|
627
659
|
subject: {
|
|
628
660
|
useFilter: string;
|
|
@@ -639,6 +671,7 @@ declare const messages: {
|
|
|
639
671
|
openFilter: string;
|
|
640
672
|
closeFilter: string;
|
|
641
673
|
heading: string;
|
|
674
|
+
filteredBy: string;
|
|
642
675
|
};
|
|
643
676
|
alphabet: {
|
|
644
677
|
letterFilter: string;
|
|
@@ -789,6 +822,14 @@ declare const messages: {
|
|
|
789
822
|
createdBy: {
|
|
790
823
|
content: string;
|
|
791
824
|
text: string;
|
|
825
|
+
concept: {
|
|
826
|
+
content: string;
|
|
827
|
+
text: string;
|
|
828
|
+
};
|
|
829
|
+
listing: {
|
|
830
|
+
content: string;
|
|
831
|
+
text: string;
|
|
832
|
+
};
|
|
792
833
|
};
|
|
793
834
|
fagfornyelse: {
|
|
794
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',
|
|
@@ -499,8 +510,10 @@ var messages = _objectSpread(_objectSpread({
|
|
|
499
510
|
newsletterAria: 'Meld deg på vårt nyhetsbrev',
|
|
500
511
|
youtube: 'NDLA på YouTube',
|
|
501
512
|
youtubeAria: 'NDLA på YouTube',
|
|
502
|
-
|
|
503
|
-
|
|
513
|
+
linkedin: 'NDLA på LinkedIn',
|
|
514
|
+
linkedinAria: 'Besøk NDLA på LinkedIn',
|
|
515
|
+
instagram: 'NDLA på Instagram',
|
|
516
|
+
instagramAria: 'Besøk NDLA på Instagram',
|
|
504
517
|
sharePage: 'Del denne siden',
|
|
505
518
|
sharePageAria: 'Del denne siden'
|
|
506
519
|
},
|
|
@@ -563,6 +576,10 @@ var messages = _objectSpread(_objectSpread({
|
|
|
563
576
|
search: {
|
|
564
577
|
placeholder: 'Søk'
|
|
565
578
|
},
|
|
579
|
+
embedlink: {
|
|
580
|
+
copyTitle: 'Kopier innbyggingskode',
|
|
581
|
+
hasCopiedTitle: 'Innbyggingskode kopiert'
|
|
582
|
+
},
|
|
566
583
|
filters: {
|
|
567
584
|
subject: {
|
|
568
585
|
useFilter: 'Bruk filter',
|
|
@@ -578,7 +595,8 @@ var messages = _objectSpread(_objectSpread({
|
|
|
578
595
|
useFilter: 'Bruk filter',
|
|
579
596
|
openFilter: 'Filtrer',
|
|
580
597
|
closeFilter: 'Lukk filter',
|
|
581
|
-
heading: 'Filter'
|
|
598
|
+
heading: 'Filter',
|
|
599
|
+
filteredBy: 'Filtrert på'
|
|
582
600
|
},
|
|
583
601
|
alphabet: {
|
|
584
602
|
letterFilter: 'Vis innhald på (bokstaven) {{letter}}.'
|
|
@@ -728,7 +746,15 @@ var messages = _objectSpread(_objectSpread({
|
|
|
728
746
|
},
|
|
729
747
|
createdBy: {
|
|
730
748
|
content: 'Ressursen',
|
|
731
|
-
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
|
+
}
|
|
732
758
|
},
|
|
733
759
|
fagfornyelse: {
|
|
734
760
|
frontpage: {
|
|
@@ -761,7 +787,7 @@ var messages = _objectSpread(_objectSpread({
|
|
|
761
787
|
frontpageMenu: {
|
|
762
788
|
program: 'Utdanningsprogram',
|
|
763
789
|
allsubjects: 'Alle fag',
|
|
764
|
-
cursorText: 'Se smakebiter fra fag
|
|
790
|
+
cursorText: 'Se smakebiter fra fag under utvikling.'
|
|
765
791
|
},
|
|
766
792
|
navigation: {
|
|
767
793
|
showLongerDescription: 'Vis hele emnebeskrivelsen',
|
|
@@ -901,6 +927,21 @@ var messages = _objectSpread(_objectSpread({
|
|
|
901
927
|
myAccount: 'Min konto',
|
|
902
928
|
favourites: 'Favoritter',
|
|
903
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'
|
|
904
945
|
}
|
|
905
946
|
});
|
|
906
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;
|
|
@@ -559,8 +585,10 @@ declare const messages: {
|
|
|
559
585
|
newsletterAria: string;
|
|
560
586
|
youtube: string;
|
|
561
587
|
youtubeAria: string;
|
|
562
|
-
|
|
563
|
-
|
|
588
|
+
linkedin: string;
|
|
589
|
+
linkedinAria: string;
|
|
590
|
+
instagram: string;
|
|
591
|
+
instagramAria: string;
|
|
564
592
|
sharePage: string;
|
|
565
593
|
sharePageAria: string;
|
|
566
594
|
};
|
|
@@ -623,6 +651,10 @@ declare const messages: {
|
|
|
623
651
|
search: {
|
|
624
652
|
placeholder: string;
|
|
625
653
|
};
|
|
654
|
+
embedlink: {
|
|
655
|
+
copyTitle: string;
|
|
656
|
+
hasCopiedTitle: string;
|
|
657
|
+
};
|
|
626
658
|
filters: {
|
|
627
659
|
subject: {
|
|
628
660
|
useFilter: string;
|
|
@@ -639,6 +671,7 @@ declare const messages: {
|
|
|
639
671
|
openFilter: string;
|
|
640
672
|
closeFilter: string;
|
|
641
673
|
heading: string;
|
|
674
|
+
filteredBy: string;
|
|
642
675
|
};
|
|
643
676
|
alphabet: {
|
|
644
677
|
letterFilter: string;
|
|
@@ -789,6 +822,14 @@ declare const messages: {
|
|
|
789
822
|
createdBy: {
|
|
790
823
|
content: string;
|
|
791
824
|
text: string;
|
|
825
|
+
concept: {
|
|
826
|
+
content: string;
|
|
827
|
+
text: string;
|
|
828
|
+
};
|
|
829
|
+
listing: {
|
|
830
|
+
content: string;
|
|
831
|
+
text: string;
|
|
832
|
+
};
|
|
792
833
|
};
|
|
793
834
|
fagfornyelse: {
|
|
794
835
|
frontpage: {
|