diff --git a/src/app/admin/admin-search-page/admin-search-results/admin-search-result-grid-element/collection-search-result/collection-admin-search-result-grid-element.component.spec.ts b/src/app/admin/admin-search-page/admin-search-results/admin-search-result-grid-element/collection-search-result/collection-admin-search-result-grid-element.component.spec.ts index 2cb0413bbc..1ea27b36b6 100644 --- a/src/app/admin/admin-search-page/admin-search-results/admin-search-result-grid-element/collection-search-result/collection-admin-search-result-grid-element.component.spec.ts +++ b/src/app/admin/admin-search-page/admin-search-results/admin-search-result-grid-element/collection-search-result/collection-admin-search-result-grid-element.component.spec.ts @@ -14,6 +14,14 @@ import { By } from '@angular/platform-browser'; import { RouterTestingModule } from '@angular/router/testing'; import { getCollectionEditRoute } from '../../../../../collection-page/collection-page-routing-paths'; import { LinkService } from '../../../../../core/cache/builders/link.service'; +import { AuthService } from '../../../../../core/auth/auth.service'; +import { AuthServiceStub } from '../../../../../shared/testing/auth-service.stub'; +import { FileService } from '../../../../../core/shared/file.service'; +import { FileServiceStub } from '../../../../../shared/testing/file-service.stub'; +import { AuthorizationDataService } from '../../../../../core/data/feature-authorization/authorization-data.service'; +import { AuthorizationDataServiceStub } from '../../../../../shared/testing/authorization-service.stub'; +import { ThemeService } from '../../../../../shared/theme-support/theme.service'; +import { getMockThemeService } from '../../../../../shared/mocks/theme-service.mock'; describe('CollectionAdminSearchResultGridElementComponent', () => { let component: CollectionAdminSearchResultGridElementComponent; @@ -45,7 +53,11 @@ describe('CollectionAdminSearchResultGridElementComponent', () => { providers: [ { provide: TruncatableService, useValue: mockTruncatableService }, { provide: BitstreamDataService, useValue: {} }, - { provide: LinkService, useValue: linkService } + { provide: LinkService, useValue: linkService }, + { provide: AuthService, useClass: AuthServiceStub }, + { provide: FileService, useClass: FileServiceStub }, + { provide: AuthorizationDataService, useClass: AuthorizationDataServiceStub }, + { provide: ThemeService, useValue: getMockThemeService() }, ] }) .compileComponents(); diff --git a/src/app/admin/admin-search-page/admin-search-results/admin-search-result-grid-element/community-search-result/community-admin-search-result-grid-element.component.spec.ts b/src/app/admin/admin-search-page/admin-search-results/admin-search-result-grid-element/community-search-result/community-admin-search-result-grid-element.component.spec.ts index 17ce2cd7a1..996366e20a 100644 --- a/src/app/admin/admin-search-page/admin-search-results/admin-search-result-grid-element/community-search-result/community-admin-search-result-grid-element.component.spec.ts +++ b/src/app/admin/admin-search-page/admin-search-results/admin-search-result-grid-element/community-search-result/community-admin-search-result-grid-element.component.spec.ts @@ -16,6 +16,14 @@ import { CommunitySearchResult } from '../../../../../shared/object-collection/s import { Community } from '../../../../../core/shared/community.model'; import { getCommunityEditRoute } from '../../../../../community-page/community-page-routing-paths'; import { LinkService } from '../../../../../core/cache/builders/link.service'; +import { AuthService } from '../../../../../core/auth/auth.service'; +import { AuthServiceStub } from '../../../../../shared/testing/auth-service.stub'; +import { FileService } from '../../../../../core/shared/file.service'; +import { FileServiceStub } from '../../../../../shared/testing/file-service.stub'; +import { AuthorizationDataService } from '../../../../../core/data/feature-authorization/authorization-data.service'; +import { AuthorizationDataServiceStub } from '../../../../../shared/testing/authorization-service.stub'; +import { ThemeService } from '../../../../../shared/theme-support/theme.service'; +import { getMockThemeService } from '../../../../../shared/mocks/theme-service.mock'; describe('CommunityAdminSearchResultGridElementComponent', () => { let component: CommunityAdminSearchResultGridElementComponent; @@ -47,7 +55,11 @@ describe('CommunityAdminSearchResultGridElementComponent', () => { providers: [ { provide: TruncatableService, useValue: mockTruncatableService }, { provide: BitstreamDataService, useValue: {} }, - { provide: LinkService, useValue: linkService } + { provide: LinkService, useValue: linkService }, + { provide: AuthService, useClass: AuthServiceStub }, + { provide: FileService, useClass: FileServiceStub }, + { provide: AuthorizationDataService, useClass: AuthorizationDataServiceStub }, + { provide: ThemeService, useValue: getMockThemeService() }, ], schemas: [NO_ERRORS_SCHEMA] }) diff --git a/src/app/admin/admin-search-page/admin-search-results/admin-search-result-grid-element/item-search-result/item-admin-search-result-grid-element.component.spec.ts b/src/app/admin/admin-search-page/admin-search-results/admin-search-result-grid-element/item-search-result/item-admin-search-result-grid-element.component.spec.ts index a6ea7e4946..e478aa3ef3 100644 --- a/src/app/admin/admin-search-page/admin-search-results/admin-search-result-grid-element/item-search-result/item-admin-search-result-grid-element.component.spec.ts +++ b/src/app/admin/admin-search-page/admin-search-results/admin-search-result-grid-element/item-search-result/item-admin-search-result-grid-element.component.spec.ts @@ -20,6 +20,12 @@ import { getMockThemeService } from '../../../../../shared/mocks/theme-service.m import { ThemeService } from '../../../../../shared/theme-support/theme.service'; import { AccessStatusDataService } from '../../../../../core/data/access-status-data.service'; import { AccessStatusObject } from '../../../../../shared/object-list/access-status-badge/access-status.model'; +import { AuthService } from '../../../../../core/auth/auth.service'; +import { AuthServiceStub } from '../../../../../shared/testing/auth-service.stub'; +import { FileService } from '../../../../../core/shared/file.service'; +import { FileServiceStub } from '../../../../../shared/testing/file-service.stub'; +import { AuthorizationDataService } from '../../../../../core/data/feature-authorization/authorization-data.service'; +import { AuthorizationDataServiceStub } from '../../../../../shared/testing/authorization-service.stub'; describe('ItemAdminSearchResultGridElementComponent', () => { let component: ItemAdminSearchResultGridElementComponent; @@ -64,6 +70,9 @@ describe('ItemAdminSearchResultGridElementComponent', () => { { provide: BitstreamDataService, useValue: mockBitstreamDataService }, { provide: ThemeService, useValue: mockThemeService }, { provide: AccessStatusDataService, useValue: mockAccessStatusDataService }, + { provide: AuthService, useClass: AuthServiceStub }, + { provide: FileService, useClass: FileServiceStub }, + { provide: AuthorizationDataService, useClass: AuthorizationDataServiceStub }, ], schemas: [NO_ERRORS_SCHEMA] }) diff --git a/src/app/core/breadcrumbs/dso-name.service.ts b/src/app/core/breadcrumbs/dso-name.service.ts index 02ead1615c..d56f4a00eb 100644 --- a/src/app/core/breadcrumbs/dso-name.service.ts +++ b/src/app/core/breadcrumbs/dso-name.service.ts @@ -31,6 +31,8 @@ export class DSONameService { const givenName = dso.firstMetadataValue('person.givenName'); if (isEmpty(familyName) && isEmpty(givenName)) { return dso.firstMetadataValue('dc.title') || dso.name; + } else if (isEmpty(familyName) || isEmpty(givenName)) { + return familyName || givenName; } else { return `${familyName}, ${givenName}`; } @@ -55,11 +57,14 @@ export class DSONameService { .filter((type) => typeof type === 'string') .find((type: string) => Object.keys(this.factories).includes(type)) as string; + let name; if (hasValue(match)) { - return this.factories[match](dso); - } else { - return this.factories.Default(dso); + name = this.factories[match](dso); } + if (isEmpty(name)) { + name = this.factories.Default(dso); + } + return name; } } diff --git a/src/app/entity-groups/journal-entities/item-grid-elements/search-result-grid-elements/journal-issue/journal-issue-search-result-grid-element.component.html b/src/app/entity-groups/journal-entities/item-grid-elements/search-result-grid-elements/journal-issue/journal-issue-search-result-grid-element.component.html index 883d68cea2..c6c29c2f1a 100644 --- a/src/app/entity-groups/journal-entities/item-grid-elements/search-result-grid-elements/journal-issue/journal-issue-search-result-grid-element.component.html +++ b/src/app/entity-groups/journal-entities/item-grid-elements/search-result-grid-elements/journal-issue/journal-issue-search-result-grid-element.component.html @@ -21,7 +21,7 @@
diff --git a/src/app/entity-groups/journal-entities/item-grid-elements/search-result-grid-elements/journal-volume/journal-volume-search-result-grid-element.component.html b/src/app/entity-groups/journal-entities/item-grid-elements/search-result-grid-elements/journal-volume/journal-volume-search-result-grid-element.component.html index 1ba143ef61..5849105f96 100644 --- a/src/app/entity-groups/journal-entities/item-grid-elements/search-result-grid-elements/journal-volume/journal-volume-search-result-grid-element.component.html +++ b/src/app/entity-groups/journal-entities/item-grid-elements/search-result-grid-elements/journal-volume/journal-volume-search-result-grid-element.component.html @@ -21,7 +21,7 @@
diff --git a/src/app/entity-groups/journal-entities/item-grid-elements/search-result-grid-elements/journal/journal-search-result-grid-element.component.html b/src/app/entity-groups/journal-entities/item-grid-elements/search-result-grid-elements/journal/journal-search-result-grid-element.component.html index 57a8813ead..9a3ea95c07 100644 --- a/src/app/entity-groups/journal-entities/item-grid-elements/search-result-grid-elements/journal/journal-search-result-grid-element.component.html +++ b/src/app/entity-groups/journal-entities/item-grid-elements/search-result-grid-elements/journal/journal-search-result-grid-element.component.html @@ -21,7 +21,7 @@
diff --git a/src/app/entity-groups/journal-entities/item-pages/journal-issue/journal-issue.component.html b/src/app/entity-groups/journal-entities/item-pages/journal-issue/journal-issue.component.html index dbd9d03994..bf73a62447 100644 --- a/src/app/entity-groups/journal-entities/item-pages/journal-issue/journal-issue.component.html +++ b/src/app/entity-groups/journal-entities/item-pages/journal-issue/journal-issue.component.html @@ -1,7 +1,6 @@
diff --git a/src/app/entity-groups/research-entities/item-grid-elements/search-result-grid-elements/person/person-search-result-grid-element.component.html b/src/app/entity-groups/research-entities/item-grid-elements/search-result-grid-elements/person/person-search-result-grid-element.component.html index c5248990b4..853a717965 100644 --- a/src/app/entity-groups/research-entities/item-grid-elements/search-result-grid-elements/person/person-search-result-grid-element.component.html +++ b/src/app/entity-groups/research-entities/item-grid-elements/search-result-grid-elements/person/person-search-result-grid-element.component.html @@ -21,8 +21,7 @@
- {{'orgunit.page.titleprefix' | translate}}
+
- {{'person.page.titleprefix' | translate}}
+
- {{'project.page.titleprefix' | translate}}
+
-
- {{'publication.page.titleprefix' | translate}}
+
-
+
-
+
-
+
To learn more, please read our {privacyPolicy}.",
- // TODO New key - Add a translation
"cookies.consent.content-notice.description": "Vi samlar in och hanterar dina persondata för följande syften: Autenticering, inställningar, godkännanden och statistik.
För mer information, läs {privacyPolicy}.",
// "cookies.consent.content-notice.learnMore": "Customize",
- // TODO New key - Add a translation
"cookies.consent.content-notice.learnMore": "Anpassa",
// "cookies.consent.content-modal.description": "Here you can see and customize the information that we collect about you.",
- // TODO New key - Add a translation
"cookies.consent.content-modal.description": "Se och anpassa den information som vi samlar in.",
// "cookies.consent.content-modal.privacy-policy.name": "privacy policy",
- // TODO New key - Add a translation
"cookies.consent.content-modal.privacy-policy.name": "personuppgifter och cookies",
// "cookies.consent.content-modal.privacy-policy.text": "To learn more, please read our {privacyPolicy}.",
- // TODO New key - Add a translation
"cookies.consent.content-modal.privacy-policy.text": "För mer information, läs {privacyPolicy}.",
// "cookies.consent.content-modal.title": "Information that we collect",
- // TODO New key - Add a translation
"cookies.consent.content-modal.title": "Information som vi samlar in",
// "cookies.consent.app.title.authentication": "Authentication",
- // TODO New key - Add a translation
"cookies.consent.app.title.authentication": "Autenticering",
// "cookies.consent.app.description.authentication": "Required for signing you in",
- // TODO New key - Add a translation
"cookies.consent.app.description.authentication": "Behövs för att du skall kunna logga in",
// "cookies.consent.app.title.preferences": "Preferences",
- // TODO New key - Add a translation
"cookies.consent.app.title.preferences": "Inställningar",
// "cookies.consent.app.description.preferences": "Required for saving your preferences",
- // TODO New key - Add a translation
"cookies.consent.app.description.preferences": "Behövs för att kunna spara dina inställningar",
// "cookies.consent.app.title.acknowledgement": "Acknowledgement",
- // TODO New key - Add a translation
"cookies.consent.app.title.acknowledgement": "Godkännande",
// "cookies.consent.app.description.acknowledgement": "Required for saving your acknowledgements and consents",
- // TODO New key - Add a translation
"cookies.consent.app.description.acknowledgement": "Behövs för att spara dina godkännanden och medgivanden",
// "cookies.consent.app.title.google-analytics": "Google Analytics",
- // TODO New key - Add a translation
"cookies.consent.app.title.google-analytics": "Google Analytics",
// "cookies.consent.app.description.google-analytics": "Allows us to track statistical data",
- // TODO New key - Add a translation
"cookies.consent.app.description.google-analytics": "Tillåt oss att spåra statistiska data",
// "cookies.consent.purpose.functional": "Functional",
- // TODO New key - Add a translation
"cookies.consent.purpose.functional": "Funktionella",
// "cookies.consent.purpose.statistical": "Statistical",
- // TODO New key - Add a translation
"cookies.consent.purpose.statistical": "Statistiska",
// "curation-task.task.checklinks.label": "Check Links in Metadata",
- // TODO New key - Add a translation
"curation-task.task.checklinks.label": "Kontrollera länkar i metadata",
// "curation-task.task.noop.label": "NOOP",
- // TODO New key - Add a translation
"curation-task.task.noop.label": "NOOP",
// "curation-task.task.profileformats.label": "Profile Bitstream Formats",
@@ -2391,252 +1839,192 @@
"curation-task.task.profileformats.label": "Profile Bitstream Formats",
// "curation-task.task.requiredmetadata.label": "Check for Required Metadata",
- // TODO New key - Add a translation
"curation-task.task.requiredmetadata.label": "Kontrollera obligatoriska metadata",
// "curation-task.task.translate.label": "Microsoft Translator",
- // TODO New key - Add a translation
"curation-task.task.translate.label": "Microsoft Translator",
// "curation-task.task.vscan.label": "Virus Scan",
- // TODO New key - Add a translation
"curation-task.task.vscan.label": "Virus Scan",
// "curation.form.task-select.label": "Task:",
- // TODO New key - Add a translation
"curation.form.task-select.label": "Uppgift:",
// "curation.form.submit": "Start",
- // TODO New key - Add a translation
"curation.form.submit": "Starta",
// "curation.form.submit.success.head": "The curation task has been started successfully",
- // TODO New key - Add a translation
"curation.form.submit.success.head": "Kureringsjobbet har startats",
// "curation.form.submit.success.content": "You will be redirected to the corresponding process page.",
- // TODO New key - Add a translation
"curation.form.submit.success.content": "Du kommer att skickas till sidan för att övervaka processen.",
// "curation.form.submit.error.head": "Running the curation task failed",
- // TODO New key - Add a translation
"curation.form.submit.error.head": "Kureringsjobbet misslyckades",
// "curation.form.submit.error.content": "An error occured when trying to start the curation task.",
- // TODO New key - Add a translation
"curation.form.submit.error.content": "Ett fel uppstod när kureringsjobbet skulle startas.",
// "curation.form.handle.label": "Handle:",
- // TODO New key - Add a translation
"curation.form.handle.label": "Handle:",
// "curation.form.handle.hint": "Hint: Enter [your-handle-prefix]/0 to run a task across entire site (not all tasks may support this capability)",
- // TODO New key - Add a translation
"curation.form.handle.hint": "Tips: Ange [your-handle-prefix]/0 för att köra ett jobb för hela sajten (alla jobb kanske inte stöder detta)",
// "deny-request-copy.email.message": "Dear {{ recipientName }},\nIn response to your request I regret to inform you that it's not possible to send you a copy of the file(s) you have requested, concerning the document: \"{{ itemUrl }}\" ({{ itemName }}), of which I am an author.\n\nBest regards,\n{{ authorName }} <{{ authorEmail }}>",
- // TODO New key - Add a translation
"deny-request-copy.email.message": "Hej {{ recipientName }},\nDet är tyvärr inte möjligt att skicka den eller de filer som du har begärt. Angående: \"{{ itemUrl }}\" ({{ itemName }}), som jag har författat.\n\nMed vänliga hälsningar,\n{{ authorName }} <{{ authorEmail }}>",
// "deny-request-copy.email.subject": "Request copy of document",
- // TODO New key - Add a translation
"deny-request-copy.email.subject": "Begär en kopia av dokument",
// "deny-request-copy.error": "An error occurred",
- // TODO New key - Add a translation
"deny-request-copy.error": "Ett fel uppstod",
// "deny-request-copy.header": "Deny document copy request",
- // TODO New key - Add a translation
"deny-request-copy.header": "Neka begäran",
// "deny-request-copy.intro": "This message will be sent to the applicant of the request",
- // TODO New key - Add a translation
"deny-request-copy.intro": "Detta meddelande kommer att skickas till personen som har begärt kopian",
// "deny-request-copy.success": "Successfully denied item request",
- // TODO New key - Add a translation
"deny-request-copy.success": "Begäran nekades",
// "dso.name.untitled": "Untitled",
- // TODO New key - Add a translation
"dso.name.untitled": "Utan titel",
// "dso-selector.create.collection.head": "New collection",
- // TODO New key - Add a translation
"dso-selector.create.collection.head": "Ny samling",
// "dso-selector.create.collection.sub-level": "Create a new collection in",
- // TODO New key - Add a translation
"dso-selector.create.collection.sub-level": "Skapa en ny samling i",
// "dso-selector.create.community.head": "New community",
- // TODO New key - Add a translation
"dso-selector.create.community.head": "Ny enhet",
// "dso-selector.create.community.sub-level": "Create a new community in",
- // TODO New key - Add a translation
"dso-selector.create.community.sub-level": "Skapa en ny enhet i",
// "dso-selector.create.community.top-level": "Create a new top-level community",
- // TODO New key - Add a translation
"dso-selector.create.community.top-level": "Skapa en ny enhet på toppnivå",
// "dso-selector.create.item.head": "New item",
- // TODO New key - Add a translation
"dso-selector.create.item.head": "Ny post",
// "dso-selector.create.item.sub-level": "Create a new item in",
- // TODO New key - Add a translation
"dso-selector.create.item.sub-level": "Skapa en ny post i",
// "dso-selector.create.submission.head": "New submission",
- // TODO New key - Add a translation
"dso-selector.create.submission.head": "Nytt bidrag",
// "dso-selector.edit.collection.head": "Edit collection",
- // TODO New key - Add a translation
"dso-selector.edit.collection.head": "Redigera samling",
// "dso-selector.edit.community.head": "Edit community",
- // TODO New key - Add a translation
"dso-selector.edit.community.head": "Redigera enhet",
// "dso-selector.edit.item.head": "Edit item",
- // TODO New key - Add a translation
"dso-selector.edit.item.head": "Redigera post",
// "dso-selector.error.title": "An error occurred searching for a {{ type }}",
- // TODO New key - Add a translation
"dso-selector.error.title": "Ett fel uppstod vid sökning på {{ type }}",
// "dso-selector.export-metadata.dspaceobject.head": "Export metadata from",
- // TODO New key - Add a translation
"dso-selector.export-metadata.dspaceobject.head": "Exportera metadata från",
// "dso-selector.no-results": "No {{ type }} found",
- // TODO New key - Add a translation
"dso-selector.no-results": "Ingen {{ type }} kunde hittas",
// "dso-selector.placeholder": "Search for a {{ type }}",
- // TODO New key - Add a translation
"dso-selector.placeholder": "Sök efter en {{ type }}",
// "dso-selector.select.collection.head": "Select a collection",
- // TODO New key - Add a translation
"dso-selector.select.collection.head": "Välj en samling",
// "dso-selector.set-scope.community.head": "Select a search scope",
- // TODO New key - Add a translation
"dso-selector.set-scope.community.head": "Välj ett scope för sökning",
// "dso-selector.set-scope.community.button": "Search all of DSpace",
- // TODO New key - Add a translation
"dso-selector.set-scope.community.button": "Sök i hela arkivet",
// "dso-selector.set-scope.community.input-header": "Search for a community or collection",
- // TODO New key - Add a translation
"dso-selector.set-scope.community.input-header": "Sök efter en samling eller enhet",
// "confirmation-modal.export-metadata.header": "Export metadata for {{ dsoName }}",
- // TODO New key - Add a translation
"confirmation-modal.export-metadata.header": "Exportera metadata från {{ dsoName }}",
// "confirmation-modal.export-metadata.info": "Are you sure you want to export metadata for {{ dsoName }}",
- // TODO New key - Add a translation
"confirmation-modal.export-metadata.info": "Vill du exportera metadata från {{ dsoName }}",
// "confirmation-modal.export-metadata.cancel": "Cancel",
- // TODO New key - Add a translation
"confirmation-modal.export-metadata.cancel": "Avbryt",
// "confirmation-modal.export-metadata.confirm": "Export",
- // TODO New key - Add a translation
"confirmation-modal.export-metadata.confirm": "Exportera",
// "confirmation-modal.delete-eperson.header": "Delete EPerson \"{{ dsoName }}\"",
- // TODO New key - Add a translation
"confirmation-modal.delete-eperson.header": "Radera e-Person \"{{ dsoName }}\"",
// "confirmation-modal.delete-eperson.info": "Are you sure you want to delete EPerson \"{{ dsoName }}\"",
- // TODO New key - Add a translation
"confirmation-modal.delete-eperson.info": "Vill du radera e-Person \"{{ dsoName }}\"",
// "confirmation-modal.delete-eperson.cancel": "Cancel",
- // TODO New key - Add a translation
"confirmation-modal.delete-eperson.cancel": "Avbryt",
// "confirmation-modal.delete-eperson.confirm": "Delete",
- // TODO New key - Add a translation
"confirmation-modal.delete-eperson.confirm": "Radera",
// "error.bitstream": "Error fetching bitstream",
- // TODO New key - Add a translation
"error.bitstream": "Ett fel uppstod när felen hämtades",
// "error.browse-by": "Error fetching items",
- // TODO New key - Add a translation
"error.browse-by": "Ett fel uppstod när posterna hämtades",
// "error.collection": "Error fetching collection",
- // TODO New key - Add a translation
"error.collection": "Ett fel uppstod när samling hämtades",
// "error.collections": "Error fetching collections",
- // TODO New key - Add a translation
"error.collections": "Ett fel uppstod när samlingar hämtades",
// "error.community": "Error fetching community",
- // TODO New key - Add a translation
"error.community": "Ett fel uppstod när enhet hämtades",
// "error.identifier": "No item found for the identifier",
- // TODO New key - Add a translation
"error.identifier": "Inga post med denna identifiererare kunde hittas",
// "error.default": "Error",
- // TODO New key - Add a translation
"error.default": "Fel",
// "error.item": "Error fetching item",
- // TODO New key - Add a translation
"error.item": "Ett fel uppstod när posten hämtades",
// "error.items": "Error fetching items",
- // TODO New key - Add a translation
"error.items": "Ett fel uppstod när poster hämtades",
// "error.objects": "Error fetching objects",
- // TODO New key - Add a translation
"error.objects": "Ett fel uppstod när objekt hämtades",
// "error.recent-submissions": "Error fetching recent submissions",
- // TODO New key - Add a translation
"error.recent-submissions": "Ett fel uppstod när senste bidrag hämtades",
// "error.search-results": "Error fetching search results",
- // TODO New key - Add a translation
"error.search-results": "Ett fel uppstod när sökresultaten hämtades",
// "error.invalid-search-query": "Search query is not valid. Please check Solr query syntax best practices for further information about this error.",
- // TODO New key - Add a translation
"error.invalid-search-query": "Ogiltig sökfråga. Se Solr query syntax för hjälp och mer information.",
// "error.sub-collections": "Error fetching sub-collections",
- // TODO New key - Add a translation
"error.sub-collections": "Ett fel uppstod när undersamlingar hämtades",
// "error.sub-communities": "Error fetching sub-communities",
- // TODO New key - Add a translation
"error.sub-communities": "Ett fel uppstod när underenheter hämtades",
// "error.submission.sections.init-form-error": "An error occurred during section initialize, please check your input-form configuration. Details are below :
",
@@ -2644,11 +2032,9 @@
"error.submission.sections.init-form-error": "An error occurred during section initialize, please check your input-form configuration. Details are below :
",
// "error.top-level-communities": "Error fetching top-level communities",
- // TODO New key - Add a translation
"error.top-level-communities": "Ett fel uppstod när enheter på toppnivå hämtades",
// "error.validation.license.notgranted": "You must grant this license to complete your submission. If you are unable to grant this license at this time you may save your work and return later or remove the submission.",
- // TODO New key - Add a translation
"error.validation.license.notgranted": "Du måste godkänna dessa villkor för att skutföra registreringen. Om detta inte är möjligt så kan du spara nu och återvända hit senare, eller radera bidraget.",
// "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.",
@@ -2656,46 +2042,36 @@
"error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.",
// "error.validation.filerequired": "The file upload is mandatory",
- // TODO New key - Add a translation
"error.validation.filerequired": "Filuppladdning är obligatorisk",
// "error.validation.required": "This field is required",
- // TODO New key - Add a translation
"error.validation.required": "Detta fält är obligatoriskt",
// "error.validation.NotValidEmail": "This E-mail is not a valid email",
- // TODO New key - Add a translation
"error.validation.NotValidEmail": "Ogiltig e-postadress",
// "error.validation.emailTaken": "This E-mail is already taken",
- // TODO New key - Add a translation
"error.validation.emailTaken": "E-postadressen finns redan",
// "error.validation.groupExists": "This group already exists",
- // TODO New key - Add a translation
"error.validation.groupExists": "Denna grupp existerar redan",
// "file-section.error.header": "Error obtaining files for this item",
- // TODO New key - Add a translation
"file-section.error.header": "Det gick inte att hämta filerna till denna post",
// "footer.copyright": "copyright © 2002-{{ year }}",
- // TODO New key - Add a translation
"footer.copyright": "copyright © 2002-{{ year }}",
// "footer.link.dspace": "DSpace software",
- // TODO New key - Add a translation
"footer.link.dspace": "DSpace software",
// "footer.link.lyrasis": "LYRASIS",
- // TODO New key - Add a translation
"footer.link.lyrasis": "LYRASIS",
// "footer.link.cookies": "Cookie settings",
- // TODO New key - Add a translation
"footer.link.cookies": "Cookieinställningar",
// "footer.link.privacy-policy": "Privacy policy",
@@ -2707,246 +2083,187 @@
"footer.link.end-user-agreement":"End User Agreement",
// "footer.link.feedback":"Send Feedback",
- // TODO New key - Add a translation
"footer.link.feedback":"Skicka feedback",
// "forgot-email.form.header": "Forgot Password",
- // TODO New key - Add a translation
"forgot-email.form.header": "Glömt lösenord",
// "forgot-email.form.info": "Enter Register an account to subscribe to collections for email updates, and submit new items to DSpace.",
- // TODO New key - Add a translation
"forgot-email.form.info": "Registrera dig som användare för att prenumerera på nyheter eller ladda upp nya filer till arkivet.",
// "forgot-email.form.email": "E-post *",
- // TODO New key - Add a translation
"forgot-email.form.email": "E-post *",
// "forgot-email.form.email.error.required": "Please fill in an email address",
- // TODO New key - Add a translation
"forgot-email.form.email.error.required": "Ange en giltig e-postadress",
// "forgot-email.form.email.error.pattern": "Please fill in a valid email address",
- // TODO New key - Add a translation
"forgot-email.form.email.error.pattern": "Ange en giltig e-postadress",
// "forgot-email.form.email.hint": "This address will be verified and used as your login name.",
- // TODO New key - Add a translation
"forgot-email.form.email.hint": "E-postadressen kommer att verifieras och användas som ditt användarnamn.",
// "forgot-email.form.submit": "Save",
- // TODO New key - Add a translation
"forgot-email.form.submit": "Spara",
// "forgot-email.form.success.head": "Verification email sent",
- // TODO New key - Add a translation
"forgot-email.form.success.head": "Ett verifieringsmejl har skickats",
// "forgot-email.form.success.content": "An email has been sent to {{ email }} containing a special URL and further instructions.",
- // TODO New key - Add a translation
"forgot-email.form.success.content": "Ett mejl med vidare instruktioner har skickats till {{ email }}.",
// "forgot-email.form.error.head": "Error when trying to register email",
- // TODO New key - Add a translation
"forgot-email.form.error.head": "Ett fel har uppstått",
// "forgot-email.form.error.content": "An error occured when registering the following email address: {{ email }}",
- // TODO New key - Add a translation
"forgot-email.form.error.content": "Ett fel uppstod när följande e-postadress skulle registreras: {{ email }}",
// "forgot-password.title": "Forgot Password",
- // TODO New key - Add a translation
"forgot-password.title": "Glömt lösenord",
// "forgot-password.form.head": "Forgot Password",
- // TODO New key - Add a translation
"forgot-password.form.head": "Glömt lösenord",
// "forgot-password.form.info": "Enter a new password in the box below, and confirm it by typing it again into the second box. It should be at least six characters long.",
- // TODO New key - Add a translation
"forgot-password.form.info": "Ange och bekräfta ett nytt lösenord nedan (minst 6 tecken).",
// "forgot-password.form.card.security": "Säkerhet",
- // TODO New key - Add a translation
"forgot-password.form.card.security": "Säkerhet",
// "forgot-password.form.identification.header": "Identify",
- // TODO New key - Add a translation
"forgot-password.form.identification.header": "Identifiera",
// "forgot-password.form.identification.email": "Email address: ",
- // TODO New key - Add a translation
"forgot-password.form.identification.email": "E-post: ",
// "forgot-password.form.label.password": "Password",
- // TODO New key - Add a translation
"forgot-password.form.label.password": "Lösenord",
// "forgot-password.form.label.passwordrepeat": "Bekräfta",
- // TODO New key - Add a translation
"forgot-password.form.label.passwordrepeat": "Bekräfta",
// "forgot-password.form.error.empty-password": "Please enter a password in the box below.",
- // TODO New key - Add a translation
"forgot-password.form.error.empty-password": "Ange ett lösenord nedan.",
// "forgot-password.form.error.matching-passwords": "Lösenorden överensstämmer inte.",
- // TODO New key - Add a translation
"forgot-password.form.error.matching-passwords": "Lösenorden överensstämmer inte.",
// "forgot-password.form.error.password-length": "The password should be at least 6 characters long.",
- // TODO New key - Add a translation
"forgot-password.form.error.password-length": "Lösenordet måste bestå av minst 6 tecken.",
// "forgot-password.form.notification.error.title": "Error when trying to submit new password",
- // TODO New key - Add a translation
"forgot-password.form.notification.error.title": "Ett fel uppstod när det nya lösenordet skulle sparas",
// "forgot-password.form.notification.success.content": "The password reset was successful. You have been logged in as the created user.",
- // TODO New key - Add a translation
"forgot-password.form.notification.success.content": "Lösenordet har återställts. Du är nu inloggad.",
// "forgot-password.form.notification.success.title": "Password reset completed",
- // TODO New key - Add a translation
"forgot-password.form.notification.success.title": "Lösenordet har återställts",
// "forgot-password.form.submit": "Submit password",
- // TODO New key - Add a translation
"forgot-password.form.submit": "Spara lösenord",
// "form.add": "Add more",
- // TODO New key - Add a translation
"form.add": "Lägg till fler",
// "form.add-help": "Click here to add the current entry and to add another one",
- // TODO New key - Add a translation
"form.add-help": "Klicka här för att spara nuvarande post och lägga till en ny",
// "form.cancel": "Cancel",
- // TODO New key - Add a translation
"form.cancel": "Avbryt",
// "form.clear": "Clear",
- // TODO New key - Add a translation
"form.clear": "Rensa",
// "form.clear-help": "Click here to remove the selected value",
- // TODO New key - Add a translation
"form.clear-help": "Klicka för att avmarkera",
// "form.discard": "Discard",
- // TODO New key - Add a translation
"form.discard": "Dra tillbaka",
// "form.drag": "Drag",
- // TODO New key - Add a translation
"form.drag": "Dra",
// "form.edit": "Edit",
- // TODO New key - Add a translation
"form.edit": "Redigera",
// "form.edit-help": "Click here to edit the selected value",
- // TODO New key - Add a translation
"form.edit-help": "Klicka för att redigera det markerade",
// "form.first-name": "First name",
- // TODO New key - Add a translation
"form.first-name": "Förnamn",
// "form.group-collapse": "Collapse",
- // TODO New key - Add a translation
"form.group-collapse": "Fäll ihop",
// "form.group-collapse-help": "Click here to collapse",
- // TODO New key - Add a translation
"form.group-collapse-help": "Klicka här för att fälla ihop",
// "form.group-expand": "Expand",
- // TODO New key - Add a translation
"form.group-expand": "Expandera",
// "form.group-expand-help": "Click here to expand and add more elements",
- // TODO New key - Add a translation
"form.group-expand-help": "Klicka här för att expandera och lägga till fler element",
// "form.last-name": "Last name",
- // TODO New key - Add a translation
"form.last-name": "Efternamn",
// "form.loading": "Loading...",
- // TODO New key - Add a translation
"form.loading": "Laddar...",
// "form.lookup": "Lookup",
- // TODO New key - Add a translation
"form.lookup": "Slå upp",
// "form.lookup-help": "Click here to look up an existing relation",
- // TODO New key - Add a translation
"form.lookup-help": "Klicka för att leta upp en befintlig relation",
// "form.no-results": "No results found",
- // TODO New key - Add a translation
"form.no-results": "Inga resultat",
// "form.no-value": "No value entered",
- // TODO New key - Add a translation
"form.no-value": "Inget värde har angivits",
// "form.other-information": {},
- // TODO New key - Add a translation
"form.other-information": {},
// "form.remove": "Remove",
- // TODO New key - Add a translation
"form.remove": "Ta bort",
// "form.save": "Save",
- // TODO New key - Add a translation
"form.save": "Spara",
// "form.save-help": "Save changes",
- // TODO New key - Add a translation
"form.save-help": "Spara ändringar",
// "form.search": "Search",
- // TODO New key - Add a translation
"form.search": "Sök",
// "form.search-help": "Click here to look for an existing correspondence",
- // TODO New key - Add a translation
"form.search-help": "Klicka här för att leta efter en befintlig korrespondens",
// "form.submit": "Save",
- // TODO New key - Add a translation
"form.submit": "Spara",
// "form.repeatable.sort.tip": "Drop the item in the new position",
- // TODO New key - Add a translation
"form.repeatable.sort.tip": "Släpp posten i den nya positionen",
// "grant-deny-request-copy.deny": "Don't send copy",
- // TODO New key - Add a translation
"grant-deny-request-copy.deny": "Skicka inte kopia",
// "grant-deny-request-copy.email.back": "Back",
- // TODO New key - Add a translation
"grant-deny-request-copy.email.back": "Tillbaka",
// "grant-deny-request-copy.email.message": "Message",
- // TODO New key - Add a translation
"grant-deny-request-copy.email.message": "Meddelande",
// "grant-deny-request-copy.email.message.empty": "Please enter a message",
- // TODO New key - Add a translation
"grant-deny-request-copy.email.message.empty": "Skriv ett meddelande",
// "grant-deny-request-copy.email.permissions.info": "You may use this occasion to reconsider the access restrictions on the document, to avoid having to respond to these requests. If you’d like to ask the repository administrators to remove these restrictions, please check the box below.",
@@ -2954,1143 +2271,869 @@
"grant-deny-request-copy.email.permissions.info": "You may use this occasion to reconsider the access restrictions on the document, to avoid having to respond to these requests. If you’d like to ask the repository administrators to remove these restrictions, please check the box below.",
// "grant-deny-request-copy.email.permissions.label": "Change to open access",
- // TODO New key - Add a translation
"grant-deny-request-copy.email.permissions.label": "Ändra till öppen tillgång",
// "grant-deny-request-copy.email.send": "Send",
- // TODO New key - Add a translation
"grant-deny-request-copy.email.send": "Skicka",
// "grant-deny-request-copy.email.subject": "Subject",
- // TODO New key - Add a translation
"grant-deny-request-copy.email.subject": "Ämne",
// "grant-deny-request-copy.email.subject.empty": "Please enter a subject",
- // TODO New key - Add a translation
"grant-deny-request-copy.email.subject.empty": "Ange ett ämne",
// "grant-deny-request-copy.grant": "Send copy",
- // TODO New key - Add a translation
"grant-deny-request-copy.grant": "Skicka kopia",
// "grant-deny-request-copy.header": "Document copy request",
- // TODO New key - Add a translation
"grant-deny-request-copy.header": "Begäran om kopia",
// "grant-deny-request-copy.home-page": "Take me to the home page",
- // TODO New key - Add a translation
"grant-deny-request-copy.home-page": "Till startsidan",
// "grant-deny-request-copy.intro1": "If you are one of the Författare of the document {{ name }}, then please use one of the options below to respond to the user's request.",
- // TODO New key - Add a translation
"grant-deny-request-copy.intro1": "Om du är en av författarna av {{ name }}, välj svar på användarens förfrågan nedan.",
// "grant-deny-request-copy.intro2": "After choosing an option, you will be presented with a suggested email reply which you may edit.",
- // TODO New key - Add a translation
"grant-deny-request-copy.intro2": "När du har gjort ditt val kommer du att se det mejl som skall skickas till användaren. Du kan redigera innehållet i detta.",
// "grant-deny-request-copy.processed": "This request has already been processed. You can use the button below to get back to the home page.",
- // TODO New key - Add a translation
"grant-deny-request-copy.processed": "Denna begäran har redan behandlats. Använd knappen nedan för att komma till startsidan.",
// "grant-request-copy.email.message": "Dear {{ recipientName }},\nIn response to your request I have the pleasure to send you in attachment a copy of the file(s) concerning the document: \"{{ itemUrl }}\" ({{ itemName }}), of which I am an author.\n\nBest regards,\n{{ authorName }} <{{ authorEmail }}>",
- // TODO New key - Add a translation
"grant-request-copy.email.message": "Hej {{ recipientName }},\nDet dokument du har begärt, och som jag är författare till, bifogas i detta mejl: \"{{ itemUrl }}\" ({{ itemName }}).\n\nMed vänliga hälsningar,\n{{ authorName }} <{{ authorEmail }}>",
// "grant-request-copy.email.subject": "Request copy of document",
- // TODO New key - Add a translation
"grant-request-copy.email.subject": "Begär kopia av dokument",
// "grant-request-copy.error": "An error occurred",
- // TODO New key - Add a translation
"grant-request-copy.error": "Ett fel uppstod",
// "grant-request-copy.header": "Grant document copy request",
- // TODO New key - Add a translation
"grant-request-copy.header": "Bevilja begäran av kopia",
// "grant-request-copy.intro": "This message will be sent to the applicant of the request. The requested document(s) will be attached.",
- // TODO New key - Add a translation
"grant-request-copy.intro": "Detta meddelande kommer att skickas till personen som begärt detta. Filer kommer att bifogas.",
// "grant-request-copy.success": "Successfully granted item request",
- // TODO New key - Add a translation
"grant-request-copy.success": "Begäran beviljades.",
// "home.description": "",
- // TODO New key - Add a translation
"home.description": "Till startsidan",
// "home.breadcrumbs": "Home",
- // TODO New key - Add a translation
"home.breadcrumbs": "Hem",
// "home.search-form.placeholder": "Search the repository ...",
- // TODO New key - Add a translation
"home.search-form.placeholder": "Sök i arkivet ...",
// "home.title": "Home",
- // TODO New key - Add a translation
"home.title": "Hem",
// "home.top-level-communities.head": "Enheter i ODR",
- // TODO New key - Add a translation
"home.top-level-communities.head": "Enheter i DSpace",
// "home.top-level-communities.help": "Select a community to browse its collections.",
- // TODO New key - Add a translation
"home.top-level-communities.help": "Välj en enhet för att se alla samlingar.",
// "info.end-user-agreement.accept": "I have read and I agree to the End User Agreement",
- // TODO New key - Add a translation
"info.end-user-agreement.accept": "Jag har läst och förstått villkoren i användaravtalet",
// "info.end-user-agreement.accept.error": "An error occurred accepting the End User Agreement",
- // TODO New key - Add a translation
"info.end-user-agreement.accept.error": "Ett fel uppstod när användaravtalet godkändes",
// "info.end-user-agreement.accept.success": "Successfully updated the End User Agreement",
- // TODO New key - Add a translation
"info.end-user-agreement.accept.success": "Användaravtalet har uppdaterats",
// "info.end-user-agreement.breadcrumbs": "End User Agreement",
- // TODO New key - Add a translation
"info.end-user-agreement.breadcrumbs": "Användaravtal",
// "info.end-user-agreement.buttons.cancel": "Cancel",
- // TODO New key - Add a translation
"info.end-user-agreement.buttons.cancel": "Avbryt",
// "info.end-user-agreement.buttons.save": "Save",
- // TODO New key - Add a translation
"info.end-user-agreement.buttons.save": "Spara",
// "info.end-user-agreement.head": "End User Agreement",
- // TODO New key - Add a translation
"info.end-user-agreement.head": "Användaravtal",
// "info.end-user-agreement.title": "End User Agreement",
- // TODO New key - Add a translation
"info.end-user-agreement.title": "Användaravtal",
// "info.privacy.breadcrumbs": "Privacy Statement",
- // TODO New key - Add a translation
"info.privacy.breadcrumbs": "Integritetspolicy",
// "info.privacy.head": "Privacy Statement",
- // TODO New key - Add a translation
"info.privacy.head": "Integritetspolicy",
// "info.privacy.title": "Privacy Statement",
- // TODO New key - Add a translation
"info.privacy.title": "Integritetspolicy",
// "info.feedback.breadcrumbs": "Feedback",
- // TODO New key - Add a translation
"info.feedback.breadcrumbs": "Feedback",
// "info.feedback.head": "Feedback",
- // TODO New key - Add a translation
"info.feedback.head": "Feedback",
// "info.feedback.title": "Feedback",
- // TODO New key - Add a translation
"info.feedback.title": "Feedback",
// "info.feedback.info": "Thanks for sharing your feedback about the DSpace system. Your comments are appreciated!",
- // TODO New key - Add a translation
"info.feedback.info": "Tack för att du lämnar dina synpunkter på tjänsten. Dina åsikter betyder mycket för oss!",
// "info.feedback.email_help": "This address will be used to follow up on your feedback.",
- // TODO New key - Add a translation
"info.feedback.email_help": "Denna adress kommer att användas för att återkoppla till dig.",
// "info.feedback.send": "Send Feedback",
- // TODO New key - Add a translation
"info.feedback.send": "Skicka feedback",
// "info.feedback.comments": "Comments",
- // TODO New key - Add a translation
"info.feedback.comments": "Kommentarer",
// "info.feedback.email-label": "Your Email",
- // TODO New key - Add a translation
"info.feedback.email-label": "Din e-postadress",
// "info.feedback.create.success" : "Feedback Sent Successfully!",
- // TODO New key - Add a translation
"info.feedback.create.success" : "Feedback har skickats!",
// "info.feedback.error.email.required" : "A valid email address is required",
- // TODO New key - Add a translation
"info.feedback.error.email.required" : "Du måste ange en giltig e-postadress",
// "info.feedback.error.message.required" : "A comment is required",
- // TODO New key - Add a translation
"info.feedback.error.message.required" : "Du måste skriva en kommentar",
// "info.feedback.page-label" : "Page",
- // TODO New key - Add a translation
"info.feedback.page-label" : "Sida",
// "info.feedback.page_help" : "Tha page related to your feedback",
- // TODO New key - Add a translation
"info.feedback.page_help" : "Den är sidan är relaterad till din feedback",
// "item.alerts.private": "This item is non-discoverable",
- // TODO New key - Add a translation
"item.alerts.private": "Denna post är dold vid sökning",
// "item.alerts.withdrawn": "This item has been withdrawn",
- // TODO New key - Add a translation
"item.alerts.withdrawn": "Denna post har återkallats",
// "item.edit.authorizations.heading": "With this editor you can view and alter the policies of an item, plus alter policies of individual item components: bundles and bitstreams. Briefly, an item is a container of bundles, and bundles are containers of bitstreams. Containers usually have ADD/REMOVE/READ/WRITE policies, while bitstreams only have READ/WRITE policies.",
- // TODO New key - Add a translation
"item.edit.authorizations.heading": "Här kan du se och ändra de villkor som gäller för en post och dess ingående komponenter: buntar (bundles) och filer. En post är en container som innehåller en eller flera buntar (bundles), som i sin tur är en container med en eller flera filer. Buntar har behörigheter för att LÄGGA TILL/RADERA/LÄSA/SKRIVA, medan filer bara har behörigheter för att LÄSA och SKRIVA.",
// "item.edit.authorizations.title": "Edit item's Policies",
- // TODO New key - Add a translation
"item.edit.authorizations.title": "Redigera behörigheter för post",
// "item.badge.private": "Non-discoverable",
- // TODO New key - Add a translation
"item.badge.private": "Dold vid sökning",
// "item.badge.withdrawn": "Withdrawn",
- // TODO New key - Add a translation
"item.badge.withdrawn": "Återkallad",
// "item.bitstreams.upload.bundle": "Bundle",
- // TODO New key - Add a translation
"item.bitstreams.upload.bundle": "Bunt",
// "item.bitstreams.upload.bundle.placeholder": "Select a bundle",
- // TODO New key - Add a translation
"item.bitstreams.upload.bundle.placeholder": "Välj en bunt",
// "item.bitstreams.upload.bundle.new": "Create bundle",
- // TODO New key - Add a translation
"item.bitstreams.upload.bundle.new": "Skapa bunt",
// "item.bitstreams.upload.bundles.empty": "This item doesn\'t contain any bundles to upload a bitstream to.",
- // TODO New key - Add a translation
"item.bitstreams.upload.bundles.empty": "Denna post innehåller inga buntar som man kan ladda upp filer i.",
// "item.bitstreams.upload.cancel": "Cancel",
- // TODO New key - Add a translation
"item.bitstreams.upload.cancel": "Avbryt",
// "item.bitstreams.upload.drop-message": "Drop a file to upload",
- // TODO New key - Add a translation
"item.bitstreams.upload.drop-message": "Dra och släpp en fil här för att ladda upp",
// "item.bitstreams.upload.item": "Item: ",
- // TODO New key - Add a translation
"item.bitstreams.upload.item": "Post: ",
// "item.bitstreams.upload.notifications.bundle.created.content": "Successfully created new bundle.",
- // TODO New key - Add a translation
"item.bitstreams.upload.notifications.bundle.created.content": "En ny bunt har skapats.",
// "item.bitstreams.upload.notifications.bundle.created.title": "Created bundle",
- // TODO New key - Add a translation
"item.bitstreams.upload.notifications.bundle.created.title": "Skapad bunt",
// "item.bitstreams.upload.notifications.upload.failed": "Upload failed. Please verify the content before retrying.",
- // TODO New key - Add a translation
"item.bitstreams.upload.notifications.upload.failed": "Uppladdningen misslyckades. Kontrollera filen och försök igen.",
// "item.bitstreams.upload.title": "Upload bitstream",
- // TODO New key - Add a translation
"item.bitstreams.upload.title": "Ladda upp fil",
// "item.edit.bitstreams.bundle.edit.buttons.upload": "Upload",
- // TODO New key - Add a translation
"item.edit.bitstreams.bundle.edit.buttons.upload": "Ladda upp",
// "item.edit.bitstreams.bundle.displaying": "Currently displaying {{ amount }} bitstreams of {{ total }}.",
- // TODO New key - Add a translation
"item.edit.bitstreams.bundle.displaying": "Visar {{ amount }} av {{ total }} filer.",
// "item.edit.bitstreams.bundle.load.all": "Load all ({{ total }})",
- // TODO New key - Add a translation
"item.edit.bitstreams.bundle.load.all": "Ladda alla ({{ total }})",
// "item.edit.bitstreams.bundle.load.more": "Load more",
- // TODO New key - Add a translation
"item.edit.bitstreams.bundle.load.more": "Ladda fler",
// "item.edit.bitstreams.bundle.name": "BUNDLE: {{ name }}",
- // TODO New key - Add a translation
"item.edit.bitstreams.bundle.name": "BUNT: {{ name }}",
// "item.edit.bitstreams.discard-button": "Discard",
- // TODO New key - Add a translation
"item.edit.bitstreams.discard-button": "Förkasta",
// "item.edit.bitstreams.edit.buttons.download": "Download",
- // TODO New key - Add a translation
"item.edit.bitstreams.edit.buttons.download": "Ladda ner",
// "item.edit.bitstreams.edit.buttons.drag": "Drag",
- // TODO New key - Add a translation
"item.edit.bitstreams.edit.buttons.drag": "Dra",
// "item.edit.bitstreams.edit.buttons.edit": "Edit",
- // TODO New key - Add a translation
"item.edit.bitstreams.edit.buttons.edit": "Redigera",
// "item.edit.bitstreams.edit.buttons.remove": "Remove",
- // TODO New key - Add a translation
"item.edit.bitstreams.edit.buttons.remove": "Radera",
// "item.edit.bitstreams.edit.buttons.undo": "Undo changes",
- // TODO New key - Add a translation
"item.edit.bitstreams.edit.buttons.undo": "Ångra ändringar",
// "item.edit.bitstreams.empty": "This item doesn't contain any bitstreams. Click the upload button to create one.",
- // TODO New key - Add a translation
"item.edit.bitstreams.empty": "Posten innehåller inga filer. Välj ladda upp.",
// "item.edit.bitstreams.headers.actions": "Actions",
- // TODO New key - Add a translation
"item.edit.bitstreams.headers.actions": "Händelser",
// "item.edit.bitstreams.headers.bundle": "Bundle",
- // TODO New key - Add a translation
"item.edit.bitstreams.headers.bundle": "Bunt",
// "item.edit.bitstreams.headers.description": "Beskrivning",
- // TODO New key - Add a translation
"item.edit.bitstreams.headers.description": "Beskrivning",
// "item.edit.bitstreams.headers.format": "Format",
- // TODO New key - Add a translation
"item.edit.bitstreams.headers.format": "Format",
// "item.edit.bitstreams.headers.name": "Name",
- // TODO New key - Add a translation
"item.edit.bitstreams.headers.name": "Namn",
// "item.edit.bitstreams.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button",
- // TODO New key - Add a translation
"item.edit.bitstreams.notifications.discarded.content": "Dina ändringar förkastades. Klicka på 'Ångra' för att göra om",
// "item.edit.bitstreams.notifications.discarded.title": "Changes discarded",
- // TODO New key - Add a translation
"item.edit.bitstreams.notifications.discarded.title": "Ändringarna förkastades",
// "item.edit.bitstreams.notifications.move.failed.title": "Error moving bitstreams",
- // TODO New key - Add a translation
"item.edit.bitstreams.notifications.move.failed.title": "Ett fel uppstod när fil skulle flyttas",
// "item.edit.bitstreams.notifications.move.saved.content": "Your move changes to this item's bitstreams and bundles have been saved.",
- // TODO New key - Add a translation
"item.edit.bitstreams.notifications.move.saved.content": "Ändringarna har sparats.",
// "item.edit.bitstreams.notifications.move.saved.title": "Move changes saved",
- // TODO New key - Add a translation
"item.edit.bitstreams.notifications.move.saved.title": "Ändringarna har sparats",
// "item.edit.bitstreams.notifications.outdated.content": "The item you're currently working on has been changed by another user. Your current changes are discarded to prevent conflicts",
- // TODO New key - Add a translation
"item.edit.bitstreams.notifications.outdated.content": "Den aktuella posten har ändrats av en annan användare. Dina ändringar har förkastats för att undvika konflikter",
// "item.edit.bitstreams.notifications.outdated.title": "Changes outdated",
- // TODO New key - Add a translation
"item.edit.bitstreams.notifications.outdated.title": "Ändringarna är föråldrade",
// "item.edit.bitstreams.notifications.remove.failed.title": "Error deleting bitstream",
- // TODO New key - Add a translation
"item.edit.bitstreams.notifications.remove.failed.title": "Ett fel uppstod när filen skulle raderas",
// "item.edit.bitstreams.notifications.remove.saved.content": "Your removal changes to this item's bitstreams have been saved.",
- // TODO New key - Add a translation
"item.edit.bitstreams.notifications.remove.saved.content": "Ändringarna har sparats.",
// "item.edit.bitstreams.notifications.remove.saved.title": "Removal changes saved",
- // TODO New key - Add a translation
"item.edit.bitstreams.notifications.remove.saved.title": "Ändringarna har sparats",
// "item.edit.bitstreams.reinstate-button": "Undo",
- // TODO New key - Add a translation
"item.edit.bitstreams.reinstate-button": "Ångra",
// "item.edit.bitstreams.save-button": "Save",
- // TODO New key - Add a translation
"item.edit.bitstreams.save-button": "Spara",
// "item.edit.bitstreams.upload-button": "Upload",
- // TODO New key - Add a translation
"item.edit.bitstreams.upload-button": "Ladda upp",
// "item.edit.delete.cancel": "Cancel",
- // TODO New key - Add a translation
"item.edit.delete.cancel": "Avbryt",
// "item.edit.delete.confirm": "Delete",
- // TODO New key - Add a translation
"item.edit.delete.confirm": "Radera",
// "item.edit.delete.description": "Are you sure this item should be completely deleted? Caution: At present, no tombstone would be left.",
- // TODO New key - Add a translation
"item.edit.delete.description": "Är du säker på att du vill radera denna post? Notera: Posten kommer att raderas helt från systemet, utan historik.",
// "item.edit.delete.error": "An error occurred while deleting the item",
- // TODO New key - Add a translation
"item.edit.delete.error": "Ett fel uppstod när posten skulle raderas",
// "item.edit.delete.header": "Delete item: {{ id }}",
- // TODO New key - Add a translation
"item.edit.delete.header": "Radera post: {{ id }}",
// "item.edit.delete.success": "The item has been deleted",
- // TODO New key - Add a translation
"item.edit.delete.success": "Posten har raderats",
// "item.edit.head": "Edit Item",
- // TODO New key - Add a translation
"item.edit.head": "Redigera post",
// "item.edit.breadcrumbs": "Edit Item",
- // TODO New key - Add a translation
"item.edit.breadcrumbs": "Redigera post",
// "item.edit.tabs.disabled.tooltip": "You're not authorized to access this tab",
- // TODO New key - Add a translation
"item.edit.tabs.disabled.tooltip": "Du har inte behöriget att använda denna flik",
// "item.edit.tabs.mapper.head": "Collection Mapper",
- // TODO New key - Add a translation
"item.edit.tabs.mapper.head": "Mappa samlingar",
// "item.edit.tabs.item-mapper.title": "Item Edit - Collection Mapper",
- // TODO New key - Add a translation
"item.edit.tabs.item-mapper.title": "Redigera post - mappa samlingar",
// "item.edit.item-mapper.buttons.add": "Map item to selected collections",
- // TODO New key - Add a translation
"item.edit.item-mapper.buttons.add": "Mappa post till denna samling",
// "item.edit.item-mapper.buttons.remove": "Remove item's mapping for selected collections",
- // TODO New key - Add a translation
"item.edit.item-mapper.buttons.remove": "Ta bort postens mappning till markerade samlingar",
// "item.edit.item-mapper.cancel": "Cancel",
- // TODO New key - Add a translation
"item.edit.item-mapper.cancel": "Avbryt",
// "item.edit.item-mapper.description": "This is the item mapper tool that allows administrators to map this item to other collections. You can search for collections and map them, or browse the list of collections the item is currently mapped to.",
- // TODO New key - Add a translation
"item.edit.item-mapper.description": "Detta är ett verktyg för att mappa poster till samlingar. Du kan söka efter samlingar eller bläddra i listan över samlingar som posten är mappad till nu.",
// "item.edit.item-mapper.head": "Item Mapper - Map Item to Collections",
- // TODO New key - Add a translation
"item.edit.item-mapper.head": "Mappa post till samling(ar)",
// "item.edit.item-mapper.item": "Item: \"{{name}}\"",
- // TODO New key - Add a translation
"item.edit.item-mapper.item": "Post: \"{{name}}\"",
// "item.edit.item-mapper.no-search": "Please enter a query to search",
- // TODO New key - Add a translation
"item.edit.item-mapper.no-search": "Ange en sökfråga",
// "item.edit.item-mapper.notifications.add.error.content": "Errors occurred for mapping of item to {{amount}} collections.",
- // TODO New key - Add a translation
"item.edit.item-mapper.notifications.add.error.content": "Ett fel uppstod när post skulle mappas till {{amount}} samling(ar).",
// "item.edit.item-mapper.notifications.add.error.head": "Mapping errors",
- // TODO New key - Add a translation
"item.edit.item-mapper.notifications.add.error.head": "Fel uppstod vid mappning",
// "item.edit.item-mapper.notifications.add.success.content": "Successfully mapped item to {{amount}} collections.",
- // TODO New key - Add a translation
"item.edit.item-mapper.notifications.add.success.content": "Posten har mappats till {{amount}} samling(ar)s.",
// "item.edit.item-mapper.notifications.add.success.head": "Mapping completed",
- // TODO New key - Add a translation
"item.edit.item-mapper.notifications.add.success.head": "Mappning har avslutats",
// "item.edit.item-mapper.notifications.remove.error.content": "Errors occurred for the removal of the mapping to {{amount}} collections.",
- // TODO New key - Add a translation
"item.edit.item-mapper.notifications.remove.error.content": "Det uppstod ett fel när posten skulle mappas till {{amount}} samling(ar).",
// "item.edit.item-mapper.notifications.remove.error.head": "Removal of mapping errors",
- // TODO New key - Add a translation
"item.edit.item-mapper.notifications.remove.error.head": "Ett fel uppstod när mappning skulle tas bort",
// "item.edit.item-mapper.notifications.remove.success.content": "Successfully removed mapping of item to {{amount}} collections.",
- // TODO New key - Add a translation
"item.edit.item-mapper.notifications.remove.success.content": "Mappning till {{amount}} samling(ar) har tagits bort.",
// "item.edit.item-mapper.notifications.remove.success.head": "Removal of mapping completed",
- // TODO New key - Add a translation
"item.edit.item-mapper.notifications.remove.success.head": "Mappning borttagen",
// "item.edit.item-mapper.search-form.placeholder": "Search collections...",
- // TODO New key - Add a translation
"item.edit.item-mapper.search-form.placeholder": "Sök samlingar...",
// "item.edit.item-mapper.tabs.browse": "Browse mapped collections",
- // TODO New key - Add a translation
"item.edit.item-mapper.tabs.browse": "Bläddra bland mappade samlingar",
// "item.edit.item-mapper.tabs.map": "Map new collections",
- // TODO New key - Add a translation
"item.edit.item-mapper.tabs.map": "Mappa en ny samling",
// "item.edit.metadata.add-button": "Add",
- // TODO New key - Add a translation
"item.edit.metadata.add-button": "Lägg till",
// "item.edit.metadata.discard-button": "Discard",
- // TODO New key - Add a translation
"item.edit.metadata.discard-button": "Avbryt",
// "item.edit.metadata.edit.buttons.edit": "Edit",
- // TODO New key - Add a translation
"item.edit.metadata.edit.buttons.edit": "Radera",
// "item.edit.metadata.edit.buttons.remove": "Remove",
- // TODO New key - Add a translation
"item.edit.metadata.edit.buttons.remove": "Ta bort",
// "item.edit.metadata.edit.buttons.undo": "Undo changes",
- // TODO New key - Add a translation
"item.edit.metadata.edit.buttons.undo": "Ängra ändringar",
// "item.edit.metadata.edit.buttons.unedit": "Stop editing",
- // TODO New key - Add a translation
"item.edit.metadata.edit.buttons.unedit": "Avbryt redigering",
// "item.edit.metadata.empty": "The item currently doesn't contain any metadata. Click Add to start adding a metadata value.",
- // TODO New key - Add a translation
"item.edit.metadata.empty": "Denna post innehåller inga metadata. Klicka på Lägg till.",
// "item.edit.metadata.headers.edit": "Edit",
- // TODO New key - Add a translation
"item.edit.metadata.headers.edit": "Redigera",
// "item.edit.metadata.headers.field": "Field",
- // TODO New key - Add a translation
"item.edit.metadata.headers.field": "Fält",
// "item.edit.metadata.headers.language": "Lang",
- // TODO New key - Add a translation
"item.edit.metadata.headers.language": "Språk",
// "item.edit.metadata.headers.value": "Value",
- // TODO New key - Add a translation
"item.edit.metadata.headers.value": "Värde",
// "item.edit.metadata.metadatafield.invalid": "Please choose a valid metadata field",
- // TODO New key - Add a translation
"item.edit.metadata.metadatafield.invalid": "Välj ett giltigt metadatafält",
// "item.edit.metadata.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button",
- // TODO New key - Add a translation
"item.edit.metadata.notifications.discarded.content": "Dina ändringar förkastades. För att återställa, klicka på 'Ångra'",
// "item.edit.metadata.notifications.discarded.title": "Changed discarded",
- // TODO New key - Add a translation
"item.edit.metadata.notifications.discarded.title": "Ändringar förkastade",
// "item.edit.metadata.notifications.error.title": "An error occurred",
- // TODO New key - Add a translation
"item.edit.metadata.notifications.error.title": "Ett fel har uppstått",
// "item.edit.metadata.notifications.invalid.content": "Your changes were not saved. Please make sure all fields are valid before you save.",
- // TODO New key - Add a translation
"item.edit.metadata.notifications.invalid.content": "Dina ändringar sparades inte. Kontrollera att alla fält innehåller giltiga värden.",
// "item.edit.metadata.notifications.invalid.title": "Metadata invalid",
- // TODO New key - Add a translation
"item.edit.metadata.notifications.invalid.title": "Ogiltiga metadata",
// "item.edit.metadata.notifications.outdated.content": "The item you're currently working on has been changed by another user. Your current changes are discarded to prevent conflicts",
- // TODO New key - Add a translation
"item.edit.metadata.notifications.outdated.content": "Posten har ändrats av en annan användare. Dina ändringar har inte sparats",
// "item.edit.metadata.notifications.outdated.title": "Changed outdated",
- // TODO New key - Add a translation
"item.edit.metadata.notifications.outdated.title": "Ändring är föräldrad",
// "item.edit.metadata.notifications.saved.content": "Your changes to this item's metadata were saved.",
- // TODO New key - Add a translation
"item.edit.metadata.notifications.saved.content": "Dina ändringar har sparats.",
// "item.edit.metadata.notifications.saved.title": "Metadata saved",
- // TODO New key - Add a translation
"item.edit.metadata.notifications.saved.title": "Metadata har sparats",
// "item.edit.metadata.reinstate-button": "Undo",
- // TODO New key - Add a translation
"item.edit.metadata.reinstate-button": "Ångra",
// "item.edit.metadata.save-button": "Save",
- // TODO New key - Add a translation
"item.edit.metadata.save-button": "Spara",
// "item.edit.modify.overview.field": "Field",
- // TODO New key - Add a translation
"item.edit.modify.overview.field": "Fält",
// "item.edit.modify.overview.language": "Språk",
- // TODO New key - Add a translation
"item.edit.modify.overview.language": "Språk",
// "item.edit.modify.overview.value": "Value",
- // TODO New key - Add a translation
"item.edit.modify.overview.value": "Värde",
// "item.edit.move.cancel": "Back",
- // TODO New key - Add a translation
"item.edit.move.cancel": "Tillbaka",
// "item.edit.move.save-button": "Save",
- // TODO New key - Add a translation
"item.edit.move.save-button": "Spara",
// "item.edit.move.discard-button": "Discard",
- // TODO New key - Add a translation
"item.edit.move.discard-button": "Ta bort",
// "item.edit.move.description": "Select the collection you wish to move this item to. To narrow down the list of displayed collections, you can enter a search query in the box.",
- // TODO New key - Add a translation
"item.edit.move.description": "Välj samling som du vill flytta denna post till. Du kan söka efter samling(ar) i fältet nedan.",
// "item.edit.move.error": "An error occurred when attempting to move the item",
- // TODO New key - Add a translation
"item.edit.move.error": "Ett fel uppstod när posten skulle flyttas",
// "item.edit.move.head": "Move item: {{id}}",
- // TODO New key - Add a translation
"item.edit.move.head": "Flytta post: {{id}}",
// "item.edit.move.inheritpolicies.checkbox": "Inherit policies",
- // TODO New key - Add a translation
"item.edit.move.inheritpolicies.checkbox": "Ärv policies",
// "item.edit.move.inheritpolicies.description": "Inherit the default policies of the destination collection",
- // TODO New key - Add a translation
"item.edit.move.inheritpolicies.description": "Använd samma policies som i den mottagande samlingen",
// "item.edit.move.move": "Move",
- // TODO New key - Add a translation
"item.edit.move.move": "Flytta",
// "item.edit.move.processing": "Moving...",
- // TODO New key - Add a translation
"item.edit.move.processing": "Flyttar...",
// "item.edit.move.search.placeholder": "Enter a search query to look for collections",
- // TODO New key - Add a translation
"item.edit.move.search.placeholder": "Ange sökord för att söka efter samling",
// "item.edit.move.success": "The item has been moved successfully",
- // TODO New key - Add a translation
"item.edit.move.success": "Posten har flyttats",
// "item.edit.move.title": "Move item",
- // TODO New key - Add a translation
"item.edit.move.title": "Flytta post",
// "item.edit.private.cancel": "Cancel",
- // TODO New key - Add a translation
"item.edit.private.cancel": "Avbryt",
// "item.edit.private.confirm": "Make it non-discoverable",
- // TODO New key - Add a translation
"item.edit.private.confirm": "Gör posten ej sökbar",
// "item.edit.private.description": "Are you sure this item should be made non-discoverable in the archive?",
- // TODO New key - Add a translation
"item.edit.private.description": "Är du säker på att posten inte skall vara sökbar i arkivet?",
// "item.edit.private.error": "An error occurred while making the item non-discoverable",
- // TODO New key - Add a translation
"item.edit.private.error": "Ett fel uppstod",
// "item.edit.private.header": "Make item non-discoverable: {{ id }}",
- // TODO New key - Add a translation
"item.edit.private.header": "Gör denna post ej sökbar: {{ id }}",
// "item.edit.private.success": "The item is now non-discoverable",
- // TODO New key - Add a translation
"item.edit.private.success": "Denna post är nu inte längre sökbar",
// "item.edit.public.cancel": "Cancel",
- // TODO New key - Add a translation
"item.edit.public.cancel": "Avbryt",
// "item.edit.public.confirm": "Make it discoverable",
- // TODO New key - Add a translation
"item.edit.public.confirm": "Gör denna sökbar",
// "item.edit.public.description": "Are you sure this item should be made discoverable in the archive?",
- // TODO New key - Add a translation
"item.edit.public.description": "Är du säker på att denna post skall vara sökbar i arkivet?",
// "item.edit.public.error": "An error occurred while making the item discoverable",
- // TODO New key - Add a translation
"item.edit.public.error": "Ett fel uppstod",
// "item.edit.public.header": "Make item discoverable: {{ id }}",
- // TODO New key - Add a translation
"item.edit.public.header": "Gör post sökbar: {{ id }}",
// "item.edit.public.success": "The item is now discoverable",
- // TODO New key - Add a translation
"item.edit.public.success": "Posten är nu sökbar",
// "item.edit.reinstate.cancel": "Cancel",
- // TODO New key - Add a translation
"item.edit.reinstate.cancel": "Avbryt",
// "item.edit.reinstate.confirm": "Reinstate",
- // TODO New key - Add a translation
"item.edit.reinstate.confirm": "Återställ",
// "item.edit.reinstate.description": "Are you sure this item should be reinstated to the archive?",
- // TODO New key - Add a translation
"item.edit.reinstate.description": "Är du säker på att denna post skall återställas?",
// "item.edit.reinstate.error": "An error occurred while reinstating the item",
- // TODO New key - Add a translation
"item.edit.reinstate.error": "Ett fel uppstod",
// "item.edit.reinstate.header": "Reinstate item: {{ id }}",
- // TODO New key - Add a translation
"item.edit.reinstate.header": "Återställ post: {{ id }}",
// "item.edit.reinstate.success": "The item was reinstated successfully",
- // TODO New key - Add a translation
"item.edit.reinstate.success": "Posten har nu återställts",
// "item.edit.relationships.discard-button": "Discard",
- // TODO New key - Add a translation
"item.edit.relationships.discard-button": "Kasta bort",
// "item.edit.relationships.edit.buttons.add": "Add",
- // TODO New key - Add a translation
"item.edit.relationships.edit.buttons.add": "Lägg till",
// "item.edit.relationships.edit.buttons.remove": "Remove",
- // TODO New key - Add a translation
"item.edit.relationships.edit.buttons.remove": "Ta bort",
// "item.edit.relationships.edit.buttons.undo": "Undo changes",
- // TODO New key - Add a translation
"item.edit.relationships.edit.buttons.undo": "Ångra ändringar",
// "item.edit.relationships.no-relationships": "No relationships",
- // TODO New key - Add a translation
"item.edit.relationships.no-relationships": "Relationer saknas",
// "item.edit.relationships.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button",
- // TODO New key - Add a translation
"item.edit.relationships.notifications.discarded.content": "Dina ändringar sparades inte. Klicka på 'Ångra' för att göra om",
// "item.edit.relationships.notifications.discarded.title": "Changes discarded",
- // TODO New key - Add a translation
"item.edit.relationships.notifications.discarded.title": "Ändringarna sparades inte",
// "item.edit.relationships.notifications.failed.title": "Error editing relationships",
- // TODO New key - Add a translation
"item.edit.relationships.notifications.failed.title": "Ett fel uppstod när relationer redigerades",
// "item.edit.relationships.notifications.outdated.content": "The item you're currently working on has been changed by another user. Your current changes are discarded to prevent conflicts",
- // TODO New key - Add a translation
"item.edit.relationships.notifications.outdated.content": "Denna post har nyligen ändrats av en annan användare. Dina ändringar har inte sparats, för att undvika konflikterer",
// "item.edit.relationships.notifications.outdated.title": "Changes outdated",
- // TODO New key - Add a translation
"item.edit.relationships.notifications.outdated.title": "Ändringarna är föråldrade",
// "item.edit.relationships.notifications.saved.content": "Your changes to this item's relationships were saved.",
- // TODO New key - Add a translation
"item.edit.relationships.notifications.saved.content": "Ändringarna har sparats.",
// "item.edit.relationships.notifications.saved.title": "Relationships saved",
- // TODO New key - Add a translation
"item.edit.relationships.notifications.saved.title": "Relationerna har sparats",
// "item.edit.relationships.reinstate-button": "Undo",
- // TODO New key - Add a translation
"item.edit.relationships.reinstate-button": "Ångra",
// "item.edit.relationships.save-button": "Save",
- // TODO New key - Add a translation
"item.edit.relationships.save-button": "Spara",
// "item.edit.relationships.no-entity-type": "Add 'dspace.entity.type' metadata to enable relationships for this item",
- // TODO New key - Add a translation
"item.edit.relationships.no-entity-type": "Lägg till 'dspace.entity.type' metadata för att möjliggöra relationer till denna post",
+
// "item.edit.return": "Back",
- // TODO New key - Add a translation
"item.edit.return": "Tillbaka",
// "item.edit.tabs.bitstreams.head": "Bitstreams",
- // TODO New key - Add a translation
"item.edit.tabs.bitstreams.head": "Filer",
// "item.edit.tabs.bitstreams.title": "Item Edit - Bitstreams",
- // TODO New key - Add a translation
"item.edit.tabs.bitstreams.title": "Redigera post - Filer",
// "item.edit.tabs.curate.head": "Curate",
- // TODO New key - Add a translation
"item.edit.tabs.curate.head": "Kurera",
// "item.edit.tabs.curate.title": "Item Edit - Curate",
- // TODO New key - Add a translation
"item.edit.tabs.curate.title": "Redigera post - Kurera",
// "item.edit.tabs.metadata.head": "Metadata",
- // TODO New key - Add a translation
"item.edit.tabs.metadata.head": "Metadata",
// "item.edit.tabs.metadata.title": "Item Edit - Metadata",
- // TODO New key - Add a translation
"item.edit.tabs.metadata.title": "Redigera post - Metadata",
// "item.edit.tabs.relationships.head": "Relationships",
- // TODO New key - Add a translation
"item.edit.tabs.relationships.head": "Relationer",
// "item.edit.tabs.relationships.title": "Item Edit - Relationships",
- // TODO New key - Add a translation
"item.edit.tabs.relationships.title": "Redigera post - Relationer",
// "item.edit.tabs.status.buttons.authorizations.button": "Authorizations...",
- // TODO New key - Add a translation
"item.edit.tabs.status.buttons.authorizations.button": "Behörigheter...",
// "item.edit.tabs.status.buttons.authorizations.label": "Edit item's authorization policies",
- // TODO New key - Add a translation
"item.edit.tabs.status.buttons.authorizations.label": "Redigera behörigheter för post",
// "item.edit.tabs.status.buttons.delete.button": "Permanently delete",
- // TODO New key - Add a translation
"item.edit.tabs.status.buttons.delete.button": "Radera permanent",
// "item.edit.tabs.status.buttons.delete.label": "Completely expunge item",
- // TODO New key - Add a translation
"item.edit.tabs.status.buttons.delete.label": "Radera fullständigt",
// "item.edit.tabs.status.buttons.mappedCollections.button": "Mapped collections",
- // TODO New key - Add a translation
"item.edit.tabs.status.buttons.mappedCollections.button": "Mappade samlingar",
// "item.edit.tabs.status.buttons.mappedCollections.label": "Manage mapped collections",
- // TODO New key - Add a translation
"item.edit.tabs.status.buttons.mappedCollections.label": "Hantera mappade samlingar",
// "item.edit.tabs.status.buttons.move.button": "Move...",
- // TODO New key - Add a translation
"item.edit.tabs.status.buttons.move.button": "Flytta...",
// "item.edit.tabs.status.buttons.move.label": "Move item to another collection",
- // TODO New key - Add a translation
"item.edit.tabs.status.buttons.move.label": "Flytta post till en annan samling",
// "item.edit.tabs.status.buttons.private.button": "Make it non-discoverable...",
- // TODO New key - Add a translation
"item.edit.tabs.status.buttons.private.button": "Exkludera posten från sökningar...",
// "item.edit.tabs.status.buttons.private.label": "Make item non-discoverable",
- // TODO New key - Add a translation
"item.edit.tabs.status.buttons.private.label": "Gör post ej sökbar",
// "item.edit.tabs.status.buttons.public.button": "Make it discoverable...",
- // TODO New key - Add a translation
"item.edit.tabs.status.buttons.public.button": "Gör posten sökbar...",
// "item.edit.tabs.status.buttons.public.label": "Make item discoverable",
- // TODO New key - Add a translation
"item.edit.tabs.status.buttons.public.label": "Gör posten sökbar",
// "item.edit.tabs.status.buttons.reinstate.button": "Reinstate...",
- // TODO New key - Add a translation
"item.edit.tabs.status.buttons.reinstate.button": "Återställ...",
// "item.edit.tabs.status.buttons.reinstate.label": "Reinstate item into the repository",
- // TODO New key - Add a translation
"item.edit.tabs.status.buttons.reinstate.label": "Återställ post i arkivet",
// "item.edit.tabs.status.buttons.unauthorized": "You're not authorized to perform this action",
- // TODO New key - Add a translation
"item.edit.tabs.status.buttons.unauthorized": "Du saknar behörighet att utföra detta",
// "item.edit.tabs.status.buttons.withdraw.button": "Withdraw...",
- // TODO New key - Add a translation
"item.edit.tabs.status.buttons.withdraw.button": "Återkalla...",
// "item.edit.tabs.status.buttons.withdraw.label": "Withdraw item from the repository",
- // TODO New key - Add a translation
"item.edit.tabs.status.buttons.withdraw.label": "Återkalla post från arkivet",
// "item.edit.tabs.status.description": "Welcome to the item management page. From here you can withdraw, reinstate, move or delete the item. You may also update or add new metadata / bitstreams on the other tabs.",
- // TODO New key - Add a translation
"item.edit.tabs.status.description": "Detta är sidan för att hantera poster. Här kan du återkalla, återställa, flytta eller radera poster. Du kan också redigera postens metadata och/eller filer.",
// "item.edit.tabs.status.head": "Status",
- // TODO New key - Add a translation
"item.edit.tabs.status.head": "Status",
// "item.edit.tabs.status.labels.handle": "Handle",
- // TODO New key - Add a translation
"item.edit.tabs.status.labels.handle": "Handle",
// "item.edit.tabs.status.labels.id": "Item Internal ID",
- // TODO New key - Add a translation
"item.edit.tabs.status.labels.id": "Postens interna ID",
// "item.edit.tabs.status.labels.itemPage": "Item Page",
- // TODO New key - Add a translation
"item.edit.tabs.status.labels.itemPage": "Post",
// "item.edit.tabs.status.labels.lastModified": "Last Modified",
- // TODO New key - Add a translation
"item.edit.tabs.status.labels.lastModified": "Senast ändrad",
// "item.edit.tabs.status.title": "Item Edit - Status",
- // TODO New key - Add a translation
"item.edit.tabs.status.title": "Redigera post - Status",
// "item.edit.tabs.versionhistory.head": "Version History",
- // TODO New key - Add a translation
"item.edit.tabs.versionhistory.head": "Versionshistorik",
// "item.edit.tabs.versionhistory.title": "Item Edit - Version History",
- // TODO New key - Add a translation
"item.edit.tabs.versionhistory.title": "Redigera post - Versionshistorik",
// "item.edit.tabs.versionhistory.under-construction": "Editing or adding new versions is not yet possible in this user interface.",
- // TODO New key - Add a translation
"item.edit.tabs.versionhistory.under-construction": "Det är inte möjligt att redigera eller skapa nya versioner på denna sida.",
// "item.edit.tabs.view.head": "View Item",
- // TODO New key - Add a translation
"item.edit.tabs.view.head": "Visa post",
// "item.edit.tabs.view.title": "Item Edit - View",
- // TODO New key - Add a translation
"item.edit.tabs.view.title": "Redigera post - Visa",
// "item.edit.withdraw.cancel": "Cancel",
- // TODO New key - Add a translation
"item.edit.withdraw.cancel": "Avbryt",
// "item.edit.withdraw.confirm": "Withdraw",
- // TODO New key - Add a translation
"item.edit.withdraw.confirm": "Återkalla",
// "item.edit.withdraw.description": "Are you sure this item should be withdrawn from the archive?",
- // TODO New key - Add a translation
"item.edit.withdraw.description": "Är du säker på att du vill återkalla denna post från arkivet?",
// "item.edit.withdraw.error": "An error occurred while withdrawing the item",
- // TODO New key - Add a translation
"item.edit.withdraw.error": "Ett fel uppstod när posten skulle återkallas",
// "item.edit.withdraw.header": "Withdraw item: {{ id }}",
- // TODO New key - Add a translation
"item.edit.withdraw.header": "Återkalla post: {{ id }}",
// "item.edit.withdraw.success": "The item was withdrawn successfully",
- // TODO New key - Add a translation
"item.edit.withdraw.success": "Posten har återkallats",
// "item.listelement.badge": "Item",
- // TODO New key - Add a translation
"item.listelement.badge": "Post",
// "item.page.description": "Beskrivning",
- // TODO New key - Add a translation
"item.page.description": "Beskrivning",
// "item.page.journal-issn": "Journal ISSN",
- // TODO New key - Add a translation
"item.page.journal-issn": "ISSN",
// "item.page.journal-title": "Journal Title",
- // TODO New key - Add a translation
"item.page.journal-title": "Tidskriftstitel",
// "item.page.publisher": "Publisher",
- // TODO New key - Add a translation
"item.page.publisher": "Utgivare",
// "item.page.titleprefix": "Item: ",
- // TODO New key - Add a translation
"item.page.titleprefix": "Post: ",
// "item.page.volume-title": "Volume Title",
- // TODO New key - Add a translation
"item.page.volume-title": "Volymtitel",
// "item.search.results.head": "Item Search Results",
- // TODO New key - Add a translation
"item.search.results.head": "Sökresultat",
// "item.search.title": "Item Search",
- // TODO New key - Add a translation
"item.search.title": "Sökresultat",
// "item.page.abstract": "Abstract",
- // TODO New key - Add a translation
"item.page.abstract": "Sammanfattning",
// "item.page.author": "Författare",
- // TODO New key - Add a translation
"item.page.author": "Författare",
// "item.page.citation": "Citation",
- // TODO New key - Add a translation
"item.page.citation": "Citation",
// "item.page.collections": "Collections",
- // TODO New key - Add a translation
"item.page.collections": "Samling",
// "item.page.collections.loading": "Loading...",
- // TODO New key - Add a translation
"item.page.collections.loading": "Laddar..",
// "item.page.collections.load-more": "Load more",
- // TODO New key - Add a translation
"item.page.collections.load-more": "Ladda fler",
// "item.page.date": "Date",
- // TODO New key - Add a translation
"item.page.date": "Publicerad",
// "item.page.edit": "Edit this item",
- // TODO New key - Add a translation
"item.page.edit": "Redigera denna post",
// "item.page.files": "Files",
- // TODO New key - Add a translation
"item.page.files": "Filer",
// "item.page.filesection.description": "Beskrivning:",
- // TODO New key - Add a translation
"item.page.filesection.description": "Beskrivning:",
// "item.page.filesection.download": "Download",
- // TODO New key - Add a translation
"item.page.filesection.download": "Ladda ner",
// "item.page.filesection.format": "Format:",
- // TODO New key - Add a translation
"item.page.filesection.format": "Format:",
// "item.page.filesection.name": "Name:",
- // TODO New key - Add a translation
"item.page.filesection.name": "Namn:",
// "item.page.filesection.size": "Storlek:",
- // TODO New key - Add a translation
"item.page.filesection.size": "Storlek:",
// "item.page.journal.search.title": "Articles in this journal",
- // TODO New key - Add a translation
"item.page.journal.search.title": "Artiklar i denna tidskrift",
// "item.page.link.full": "Full item page",
- // TODO New key - Add a translation
"item.page.link.full": "Visa fullständig post",
// "item.page.link.simple": "Simple item page",
- // TODO New key - Add a translation
"item.page.link.simple": "Visa enkel post",
// "item.page.person.search.title": "Articles by this author",
- // TODO New key - Add a translation
"item.page.person.search.title": "Artiklar av denna författare",
// "item.page.related-items.view-more": "Show {{ amount }} more",
- // TODO New key - Add a translation
"item.page.related-items.view-more": "Visa {{ amount }} fler",
// "item.page.related-items.view-less": "Hide last {{ amount }}",
- // TODO New key - Add a translation
"item.page.related-items.view-less": "Göm senaste {{ amount }}",
// "item.page.relationships.isAuthorOfPublication": "Publications",
- // TODO New key - Add a translation
"item.page.relationships.isAuthorOfPublication": "Publikationer",
// "item.page.relationships.isJournalOfPublication": "Publications",
- // TODO New key - Add a translation
"item.page.relationships.isJournalOfPublication": "Publikationer",
// "item.page.relationships.isOrgUnitOfPerson": "Författare",
- // TODO New key - Add a translation
"item.page.relationships.isOrgUnitOfPerson": "Författare",
// "item.page.relationships.isOrgUnitOfProject": "Research Projects",
- // TODO New key - Add a translation
"item.page.relationships.isOrgUnitOfProject": "Forskningsprojekt",
// "item.page.subject": "Keywords",
- // TODO New key - Add a translation
"item.page.subject": "Ämne/nyckelord",
// "item.page.uri": "URI",
- // TODO New key - Add a translation
"item.page.uri": "URI",
// "item.page.bitstreams.view-more": "Show more",
- // TODO New key - Add a translation
"item.page.bitstreams.view-more": "Visa mer",
// "item.page.bitstreams.collapse": "Collapse",
- // TODO New key - Add a translation
"item.page.bitstreams.collapse": "Fäll ihop",
// "item.page.filesection.original.bundle" : "Original bundle",
@@ -4102,146 +3145,111 @@
"item.page.filesection.license.bundle" : "License bundle",
// "item.page.return": "Back",
- // TODO New key - Add a translation
"item.page.return": "Tillbaka",
// "item.page.version.create": "Create new version",
- // TODO New key - Add a translation
"item.page.version.create": "Skapa ny version",
// "item.page.version.hasDraft": "A new version cannot be created because there is an inprogress submission in the version history",
- // TODO New key - Add a translation
"item.page.version.hasDraft": "Ny version kan inte skapas pga pågående uppladdning i versionshistoriken",
// "item.preview.dc.identifier.uri": "Identifier:",
- // TODO New key - Add a translation
"item.preview.dc.identifier.uri": "Identifierare:",
// "item.preview.dc.contributor.author": "Författare:",
- // TODO New key - Add a translation
"item.preview.dc.contributor.author": "Författare:",
// "item.preview.dc.date.issued": "Published date:",
- // TODO New key - Add a translation
"item.preview.dc.date.issued": "Publicerad:",
// "item.preview.dc.description.abstract": "Abstract:",
- // TODO New key - Add a translation
"item.preview.dc.description.abstract": "Sammanfattning:",
// "item.preview.dc.identifier.other": "Other identifier:",
- // TODO New key - Add a translation
"item.preview.dc.identifier.other": "Annan identifierare:",
// "item.preview.dc.language.iso": "Språk:",
- // TODO New key - Add a translation
"item.preview.dc.language.iso": "Språk:",
// "item.preview.dc.subject": "Subjects:",
- // TODO New key - Add a translation
"item.preview.dc.subject": "Ämnen:",
// "item.preview.dc.title": "Title:",
- // TODO New key - Add a translation
"item.preview.dc.title": "Titel:",
// "item.preview.person.familyName": "Surname:",
- // TODO New key - Add a translation
"item.preview.person.familyName": "Förnamn:",
// "item.preview.person.givenName": "Name:",
- // TODO New key - Add a translation
"item.preview.person.givenName": "Namn:",
// "item.preview.person.identifier.orcid": "ORCID:",
- // TODO New key - Add a translation
"item.preview.person.identifier.orcid": "ORCID:",
// "item.preview.project.funder.name": "Funder:",
- // TODO New key - Add a translation
"item.preview.project.funder.name": "Finansiär:",
// "item.preview.project.funder.identifier": "Funder Identifier:",
- // TODO New key - Add a translation
"item.preview.project.funder.identifier": "Finansiär ID:",
// "item.preview.oaire.awardNumber": "Funding ID:",
- // TODO New key - Add a translation
"item.preview.oaire.awardNumber": "Finansiering ID:",
// "item.preview.dc.title.alternative": "Acronym:",
- // TODO New key - Add a translation
"item.preview.dc.title.alternative": "Akronym:",
// "item.preview.dc.coverage.spatial": "Jurisdiction:",
- // TODO New key - Add a translation
"item.preview.dc.coverage.spatial": "Jurisdiktion:",
// "item.preview.oaire.fundingStream": "Funding Stream:",
- // TODO New key - Add a translation
"item.preview.oaire.fundingStream": "Funding Stream:",
// "item.select.confirm": "Confirm selected",
- // TODO New key - Add a translation
"item.select.confirm": "Bekräfta valda",
// "item.select.empty": "No items to show",
- // TODO New key - Add a translation
"item.select.empty": "Inga poster att visa. ",
// "item.select.table.author": "Author",
- // TODO New key - Add a translation
"item.select.table.author": "Författare",
// "item.select.table.collection": "Collection",
- // TODO New key - Add a translation
"item.select.table.collection": "Samling",
// "item.select.table.title": "Title",
- // TODO New key - Add a translation
"item.select.table.title": "Titel",
// "item.version.history.empty": "There are no other versions for this item yet.",
- // TODO New key - Add a translation
"item.version.history.empty": "Det finns inga andra versioner av denna post.",
// "item.version.history.head": "Version History",
- // TODO New key - Add a translation
"item.version.history.head": "Versionshistorik",
// "item.version.history.return": "Back",
- // TODO New key - Add a translation
"item.version.history.return": "Tillbaka",
// "item.version.history.selected": "Selected version",
- // TODO New key - Add a translation
"item.version.history.selected": "Vald version",
// "item.version.history.selected.alert": "You are currently viewing version {{version}} of the item.",
- // TODO New key - Add a translation
"item.version.history.selected.alert": "Du tittat på version {{version}} av denna post.",
// "item.version.history.table.version": "Version",
- // TODO New key - Add a translation
"item.version.history.table.version": "Version",
// "item.version.history.table.item": "Item",
- // TODO New key - Add a translation
"item.version.history.table.item": "Post",
// "item.version.history.table.editor": "Editor",
- // TODO New key - Add a translation
"item.version.history.table.editor": "Redaktör",
// "item.version.history.table.date": "Date",
- // TODO New key - Add a translation
"item.version.history.table.date": "Datum",
// "item.version.history.table.summary": "Summary",
- // TODO New key - Add a translation
"item.version.history.table.summary": "Sammanfattning",
// "item.version.history.table.workspaceItem": "Workspace item",
@@ -4249,35 +3257,27 @@
"item.version.history.table.workspaceItem": "Workspace item",
// "item.version.history.table.workflowItem": "Workflow item",
- // TODO New key - Add a translation
"item.version.history.table.workflowItem": "Post i arbetsflöde",
// "item.version.history.table.actions": "Action",
- // TODO New key - Add a translation
"item.version.history.table.actions": "Åtgärd",
// "item.version.history.table.action.editWorkspaceItem": "Edit workspace item",
- // TODO New key - Add a translation
"item.version.history.table.action.editWorkspaceItem": "Redigera post",
// "item.version.history.table.action.editSummary": "Edit summary",
- // TODO New key - Add a translation
"item.version.history.table.action.editSummary": "Redigera sammanfattning",
// "item.version.history.table.action.saveSummary": "Save summary edits",
- // TODO New key - Add a translation
"item.version.history.table.action.saveSummary": "Spara ändringar",
// "item.version.history.table.action.discardSummary": "Discard summary edits",
- // TODO New key - Add a translation
"item.version.history.table.action.discardSummary": "Förkasta ändringar",
// "item.version.history.table.action.newVersion": "Create new version from this one",
- // TODO New key - Add a translation
"item.version.history.table.action.newVersion": "Skapa ny version av denna",
// "item.version.history.table.action.deleteVersion": "Delete version",
- // TODO New key - Add a translation
"item.version.history.table.action.deleteVersion": "Radera version",
// "item.version.history.table.action.hasDraft": "A new version cannot be created because there is an inprogress submission in the version history",
@@ -4286,52 +3286,40 @@
// "item.version.notice": "This is not the latest version of this item. The latest version can be found here.",
- // TODO New key - Add a translation
"item.version.notice": "Detta är inte den senaste versionen. Senaste versionen finns här.",
// "item.version.create.modal.header": "New version",
- // TODO New key - Add a translation
"item.version.create.modal.header": "Ny version",
// "item.version.create.modal.text": "Create a new version for this item",
- // TODO New key - Add a translation
"item.version.create.modal.text": "Skapa ny version av denna post",
// "item.version.create.modal.text.startingFrom": "starting from version {{version}}",
- // TODO New key - Add a translation
"item.version.create.modal.text.startingFrom": "med början från version {{version}}",
// "item.version.create.modal.button.confirm": "Create",
- // TODO New key - Add a translation
"item.version.create.modal.button.confirm": "Skapa",
// "item.version.create.modal.button.confirm.tooltip": "Create new version",
- // TODO New key - Add a translation
"item.version.create.modal.button.confirm.tooltip": "Skapa ny version",
// "item.version.create.modal.button.cancel": "Cancel",
- // TODO New key - Add a translation
"item.version.create.modal.button.cancel": "Avbryt",
// "item.version.create.modal.button.cancel.tooltip": "Do not create new version",
- // TODO New key - Add a translation
"item.version.create.modal.button.cancel.tooltip": "Skapa inte ny version",
// "item.version.create.modal.form.summary.label": "Summary",
- // TODO New key - Add a translation
"item.version.create.modal.form.summary.label": "Sammanfattning",
// "item.version.create.modal.form.summary.placeholder": "Insert the summary for the new version",
- // TODO New key - Add a translation
"item.version.create.modal.form.summary.placeholder": "Lägg till sammanfattning av den nya versionen",
// "item.version.create.notification.success" : "New version has been created with version number {{version}}",
- // TODO New key - Add a translation
"item.version.create.notification.success" : "En ny version med nummer {{version}} har skapats",
// "item.version.create.notification.failure" : "New version has not been created",
- // TODO New key - Add a translation
"item.version.create.notification.failure" : "Ny version har inte skapats",
// "item.version.create.notification.inProgress" : "A new version cannot be created because there is an inprogress submission in the version history",
@@ -4340,82 +3328,63 @@
// "item.version.delete.modal.header": "Delete version",
- // TODO New key - Add a translation
"item.version.delete.modal.header": "Radera version",
// "item.version.delete.modal.text": "Do you want to delete version {{version}}?",
- // TODO New key - Add a translation
"item.version.delete.modal.text": "Vill du radera version {{version}}?",
// "item.version.delete.modal.button.confirm": "Delete",
- // TODO New key - Add a translation
"item.version.delete.modal.button.confirm": "Radera",
// "item.version.delete.modal.button.confirm.tooltip": "Delete this version",
- // TODO New key - Add a translation
"item.version.delete.modal.button.confirm.tooltip": "Radera denna version",
// "item.version.delete.modal.button.cancel": "Cancel",
- // TODO New key - Add a translation
"item.version.delete.modal.button.cancel": "Avbryt",
// "item.version.delete.modal.button.cancel.tooltip": "Do not delete this version",
- // TODO New key - Add a translation
"item.version.delete.modal.button.cancel.tooltip": "Radera inte denna version",
// "item.version.delete.notification.success" : "Version number {{version}} has been deleted",
- // TODO New key - Add a translation
"item.version.delete.notification.success" : "Version {{version}} har raderats",
// "item.version.delete.notification.failure" : "Version number {{version}} has not been deleted",
- // TODO New key - Add a translation
"item.version.delete.notification.failure" : "Version {{version}} har inte raderats",
// "item.version.edit.notification.success" : "The summary of version number {{version}} has been changed",
- // TODO New key - Add a translation
"item.version.edit.notification.success" : "Sammanfattningen av version {{version}} har ändrats",
// "item.version.edit.notification.failure" : "The summary of version number {{version}} has not been changed",
- // TODO New key - Add a translation
"item.version.edit.notification.failure" : "Sammanfattningen av version {{version}} har inte ändrats",
// "journal.listelement.badge": "Journal",
- // TODO New key - Add a translation
"journal.listelement.badge": "Tidskrift",
// "journal.page.description": "Beskrivning",
- // TODO New key - Add a translation
"journal.page.description": "Beskrivning",
// "journal.page.edit": "Edit this item",
- // TODO New key - Add a translation
"journal.page.edit": "Redigera denna",
// "journal.page.editor": "Editor-in-Chief",
- // TODO New key - Add a translation
"journal.page.editor": "Editor-in-Chief",
// "journal.page.issn": "ISSN",
- // TODO New key - Add a translation
"journal.page.issn": "ISSN",
// "journal.page.publisher": "Publisher",
- // TODO New key - Add a translation
"journal.page.publisher": "Utgivare",
// "journal.page.titleprefix": "Journal: ",
- // TODO New key - Add a translation
"journal.page.titleprefix": "Tidskrift: ",
// "journal.search.results.head": "Journal Search Results",
- // TODO New key - Add a translation
"journal.search.results.head": "Sökresultat",
// "journal.search.title": "Journal Search",
- // TODO New key - Add a translation
"journal.search.title": "Sök tidskrift",
@@ -4425,7 +3394,6 @@
"journalissue.listelement.badge": "Journal Issue",
// "journalissue.page.description": "Beskrivning",
- // TODO New key - Add a translation
"journalissue.page.description": "Beskrivning",
// "journalissue.page.edit": "Edit this item",
@@ -4445,7 +3413,6 @@
"journalissue.page.journal-title": "Journal Title",
// "journalissue.page.keyword": "Keywords",
- // TODO New key - Add a translation
"journalissue.page.keyword": "Ämne/nyckelord",
// "journalissue.page.number": "Number",
@@ -4463,7 +3430,6 @@
"journalvolume.listelement.badge": "Journal Volume",
// "journalvolume.page.description": "Beskrivning",
- // TODO New key - Add a translation
"journalvolume.page.description": "Beskrivning",
// "journalvolume.page.edit": "Edit this item",
@@ -4500,7 +3466,6 @@
"iiifsearchable.page.issue": "Issue: ",
// "iiifsearchable.page.description": "Beskrivning: ",
- // TODO New key - Add a translation
"iiifsearchable.page.description": "Beskrivning: ",
// "iiifviewer.fullscreen.notice": "Use full screen for better viewing.",
@@ -4524,650 +3489,498 @@
"iiif.page.issue": "Issue: ",
// "iiif.page.description": "Beskrivning: ",
- // TODO New key - Add a translation
"iiif.page.description": "Beskrivning: ",
// "loading.bitstream": "Loading bitstream...",
- // TODO New key - Add a translation
"loading.bitstream": "Hämtar fil...",
// "loading.bitstreams": "Loading bitstreams...",
- // TODO New key - Add a translation
"loading.bitstreams": "Hämtar filer...",
// "loading.browse-by": "Loading items...",
- // TODO New key - Add a translation
"loading.browse-by": "Hämtar poster...",
// "loading.browse-by-page": "Loading page...",
- // TODO New key - Add a translation
"loading.browse-by-page": "Hämtar sida...",
// "loading.collection": "Loading collection...",
- // TODO New key - Add a translation
"loading.collection": "Hämtar samling...",
// "loading.collections": "Loading collections...",
- // TODO New key - Add a translation
"loading.collections": "Hämtar samlingar..",
// "loading.content-source": "Loading content source...",
- // TODO New key - Add a translation
"loading.content-source": "Hämtar källa...",
// "loading.community": "Loading community...",
- // TODO New key - Add a translation
"loading.community": "Hämtar enhet...",
// "loading.default": "Loading...",
- // TODO New key - Add a translation
"loading.default": "Hämtar...",
// "loading.item": "Loading item...",
- // TODO New key - Add a translation
"loading.item": "Hämtar post...",
// "loading.items": "Loading items...",
- // TODO New key - Add a translation
"loading.items": "Hämtar poster...",
// "loading.mydspace-results": "Loading items...",
- // TODO New key - Add a translation
"loading.mydspace-results": "Hämtar poster...",
// "loading.objects": "Loading...",
- // TODO New key - Add a translation
"loading.objects": "Hämtar...",
// "loading.recent-submissions": "Loading recent submissions...",
- // TODO New key - Add a translation
"loading.recent-submissions": "Hämtar de senaste bidragen...",
// "loading.search-results": "Loading search results...",
- // TODO New key - Add a translation
"loading.search-results": "Hämtar sökresultat...",
// "loading.sub-collections": "Loading sub-collections...",
- // TODO New key - Add a translation
"loading.sub-collections": "Hämtar underavdelningar...",
// "loading.sub-communities": "Loading sub-communities...",
- // TODO New key - Add a translation
"loading.sub-communities": "Hämtar underenheter...",
// "loading.top-level-communities": "Loading top-level communities...",
- // TODO New key - Add a translation
"loading.top-level-communities": "Hämtar enheter på toppnivå...",
// "login.form.email": "Email address",
- // TODO New key - Add a translation
"login.form.email": "E-postadress",
// "login.form.forgot-password": "Have you forgotten your password?",
- // TODO New key - Add a translation
"login.form.forgot-password": "Har du glömt lösenordet?",
// "login.form.header": "Please log in to DSpace",
- // TODO New key - Add a translation
"login.form.header": "Logga in i ODR",
// "login.form.new-user": "New user? Click here to register.",
- // TODO New key - Add a translation
"login.form.new-user": "Ny användare? Klicka här för att skapa ett användarkonto.",
// "login.form.or-divider": "or",
- // TODO New key - Add a translation
"login.form.or-divider": "eller",
// "login.form.oidc": "Log in with OIDC",
- // TODO New key - Add a translation
"login.form.oidc": "Logga in med OIDC",
// "login.form.password": "Password",
- // TODO New key - Add a translation
"login.form.password": "Lösenord",
// "login.form.shibboleth": "Log in with Shibboleth",
- // TODO New key - Add a translation
"login.form.shibboleth": "Logga in med Shibboleth",
// "login.form.submit": "Log in",
- // TODO New key - Add a translation
"login.form.submit": "Logga in",
// "login.title": "Login",
- // TODO New key - Add a translation
"login.title": "Logga in",
// "login.breadcrumbs": "Login",
- // TODO New key - Add a translation
"login.breadcrumbs": "Logga in",
// "logout.form.header": "Log out from DSpace",
- // TODO New key - Add a translation
"logout.form.header": "Logga ut",
// "logout.form.submit": "Log out",
- // TODO New key - Add a translation
"logout.form.submit": "Logga ut",
// "logout.title": "Logout",
- // TODO New key - Add a translation
"logout.title": "Logga ut",
// "menu.header.admin": "Management",
- // TODO New key - Add a translation
"menu.header.admin": "Administration",
// "menu.header.image.logo": "Repository logo",
- // TODO New key - Add a translation
"menu.header.image.logo": "Logga för arkivet",
// "menu.header.admin.description": "Management menu",
- // TODO New key - Add a translation
"menu.header.admin.description": "Administration meny",
// "menu.section.access_control": "Access Control",
- // TODO New key - Add a translation
"menu.section.access_control": "Åtkomst",
// "menu.section.access_control_authorizations": "Authorizations",
- // TODO New key - Add a translation
"menu.section.access_control_authorizations": "Behörigheter",
// "menu.section.access_control_groups": "Groups",
- // TODO New key - Add a translation
"menu.section.access_control_groups": "Grupper",
// "menu.section.access_control_people": "People",
- // TODO New key - Add a translation
"menu.section.access_control_people": "EPersoner",
// "menu.section.admin_search": "Admin Search",
- // TODO New key - Add a translation
"menu.section.admin_search": "Admin sök",
// "menu.section.browse_community": "This Community",
- // TODO New key - Add a translation
"menu.section.browse_community": "Denna samling",
// "menu.section.browse_community_by_author": "By Author",
- // TODO New key - Add a translation
"menu.section.browse_community_by_author": "Författare",
// "menu.section.browse_community_by_issue_date": "By Issue Date",
- // TODO New key - Add a translation
"menu.section.browse_community_by_issue_date": "Utgivningsår",
// "menu.section.browse_community_by_title": "By Title",
- // TODO New key - Add a translation
"menu.section.browse_community_by_title": "Titel",
// "menu.section.browse_global": "All of DSpace",
- // TODO New key - Add a translation
"menu.section.browse_global": "Hela arkivet",
// "menu.section.browse_global_by_author": "By Author",
- // TODO New key - Add a translation
"menu.section.browse_global_by_author": "Författare",
// "menu.section.browse_global_by_dateissued": "By Issue Date",
- // TODO New key - Add a translation
"menu.section.browse_global_by_dateissued": "Utgivningsår",
// "menu.section.browse_global_by_subject": "By Subject",
- // TODO New key - Add a translation
"menu.section.browse_global_by_subject": "Ämne",
// "menu.section.browse_global_by_title": "By Title",
- // TODO New key - Add a translation
"menu.section.browse_global_by_title": "Titel",
// "menu.section.browse_global_communities_and_collections": "Communities & Collections",
- // TODO New key - Add a translation
"menu.section.browse_global_communities_and_collections": "Enheter och samlingar",
// "menu.section.control_panel": "Control Panel",
- // TODO New key - Add a translation
"menu.section.control_panel": "Kontrollpanel",
// "menu.section.curation_task": "Curation Task",
- // TODO New key - Add a translation
"menu.section.curation_task": "Kurationsuppgift",
// "menu.section.edit": "Edit",
- // TODO New key - Add a translation
"menu.section.edit": "Redigera",
// "menu.section.edit_collection": "Collection",
- // TODO New key - Add a translation
"menu.section.edit_collection": "Samling",
// "menu.section.edit_community": "Community",
- // TODO New key - Add a translation
"menu.section.edit_community": "Enhet",
// "menu.section.edit_item": "Item",
- // TODO New key - Add a translation
"menu.section.edit_item": "Post",
// "menu.section.export": "Export",
- // TODO New key - Add a translation
"menu.section.export": "Exportera",
// "menu.section.export_collection": "Collection",
- // TODO New key - Add a translation
"menu.section.export_collection": "Samling",
// "menu.section.export_community": "Community",
- // TODO New key - Add a translation
"menu.section.export_community": "Enhet",
// "menu.section.export_item": "Item",
- // TODO New key - Add a translation
"menu.section.export_item": "Post",
// "menu.section.export_metadata": "Metadata",
- // TODO New key - Add a translation
"menu.section.export_metadata": "Metadata",
// "menu.section.icon.access_control": "Access Control menu section",
- // TODO New key - Add a translation
"menu.section.icon.access_control": "Åtkomstkontroll - meny",
// "menu.section.icon.admin_search": "Admin search menu section",
- // TODO New key - Add a translation
"menu.section.icon.admin_search": "Admin sök - meny",
// "menu.section.icon.control_panel": "Control Panel menu section",
- // TODO New key - Add a translation
"menu.section.icon.control_panel": "Kontrollpanel - meny",
// "menu.section.icon.curation_tasks": "Curation Task menu section",
- // TODO New key - Add a translation
"menu.section.icon.curation_tasks": "Kureringsuppgift - meny",
// "menu.section.icon.edit": "Edit menu section",
- // TODO New key - Add a translation
"menu.section.icon.edit": "Redigera - meny",
// "menu.section.icon.export": "Export menu section",
- // TODO New key - Add a translation
"menu.section.icon.export": "Exportera - meny",
// "menu.section.icon.find": "Find menu section",
- // TODO New key - Add a translation
"menu.section.icon.find": "Sök - meny",
// "menu.section.icon.import": "Import menu section",
- // TODO New key - Add a translation
"menu.section.icon.import": "Importera - meny",
// "menu.section.icon.new": "New menu section",
- // TODO New key - Add a translation
"menu.section.icon.new": "Ny - meny",
// "menu.section.icon.pin": "Pin sidebar",
- // TODO New key - Add a translation
"menu.section.icon.pin": "Fäst sidomenyn",
// "menu.section.icon.processes": "Processes menu section",
- // TODO New key - Add a translation
"menu.section.icon.processes": "Processer - meny",
// "menu.section.icon.registries": "Registries menu section",
- // TODO New key - Add a translation
"menu.section.icon.registries": "Registries- meny",
// "menu.section.icon.statistics_task": "Statistics Task menu section",
- // TODO New key - Add a translation
"menu.section.icon.statistics_task": "Statistik - meny",
// "menu.section.icon.workflow": "Administer workflow menu section",
- // TODO New key - Add a translation
"menu.section.icon.workflow": "Administrera arbetsflöde - meny",
// "menu.section.icon.unpin": "Unpin sidebar",
- // TODO New key - Add a translation
"menu.section.icon.unpin": "Koppla loss sidomenyn",
// "menu.section.import": "Import",
- // TODO New key - Add a translation
"menu.section.import": "Importera",
// "menu.section.import_batch": "Batch Import (ZIP)",
- // TODO New key - Add a translation
"menu.section.import_batch": "Importera batch (ZIP)",
// "menu.section.import_metadata": "Metadata",
- // TODO New key - Add a translation
"menu.section.import_metadata": "Metadata",
// "menu.section.new": "New",
- // TODO New key - Add a translation
"menu.section.new": "Ny",
// "menu.section.new_collection": "Collection",
- // TODO New key - Add a translation
"menu.section.new_collection": "Samling",
// "menu.section.new_community": "Community",
- // TODO New key - Add a translation
"menu.section.new_community": "Enhet",
// "menu.section.new_item": "Item",
- // TODO New key - Add a translation
"menu.section.new_item": "Post",
// "menu.section.new_item_version": "Item Version",
- // TODO New key - Add a translation
"menu.section.new_item_version": "Post version",
// "menu.section.new_process": "Process",
- // TODO New key - Add a translation
"menu.section.new_process": "Process",
// "menu.section.pin": "Pin sidebar",
- // TODO New key - Add a translation
"menu.section.pin": "Fäst sidomenyn",
// "menu.section.unpin": "Unpin sidebar",
- // TODO New key - Add a translation
"menu.section.unpin": "Koppla loss sidomenyn",
// "menu.section.processes": "Processes",
- // TODO New key - Add a translation
"menu.section.processes": "Processer",
// "menu.section.registries": "Registries",
- // TODO New key - Add a translation
"menu.section.registries": "Registries",
// "menu.section.registries_format": "Format",
- // TODO New key - Add a translation
"menu.section.registries_format": "Format",
// "menu.section.registries_metadata": "Metadata",
- // TODO New key - Add a translation
"menu.section.registries_metadata": "Metadata",
// "menu.section.statistics": "Statistics",
- // TODO New key - Add a translation
"menu.section.statistics": "Statistik",
// "menu.section.statistics_task": "Statistics Task",
- // TODO New key - Add a translation
"menu.section.statistics_task": "Statistik uppgift",
// "menu.section.toggle.access_control": "Toggle Access Control section",
- // TODO New key - Add a translation
"menu.section.toggle.access_control": "Växla till åtkomstkontroll",
// "menu.section.toggle.control_panel": "Toggle Control Panel section",
- // TODO New key - Add a translation
"menu.section.toggle.control_panel": "Växla till kontrollpanel",
// "menu.section.toggle.curation_task": "Toggle Curation Task section",
- // TODO New key - Add a translation
"menu.section.toggle.curation_task": "Växla till kureringsuppgift",
// "menu.section.toggle.edit": "Toggle Edit section",
- // TODO New key - Add a translation
"menu.section.toggle.edit": "Växla till redigera",
// "menu.section.toggle.export": "Toggle Export section",
- // TODO New key - Add a translation
"menu.section.toggle.export": "Växla till exportera",
// "menu.section.toggle.find": "Toggle Find section",
- // TODO New key - Add a translation
"menu.section.toggle.find": "Växla till sök",
// "menu.section.toggle.import": "Toggle Import section",
- // TODO New key - Add a translation
"menu.section.toggle.import": "Växla till importera",
// "menu.section.toggle.new": "Toggle New section",
- // TODO New key - Add a translation
"menu.section.toggle.new": "Växla till ny",
// "menu.section.toggle.registries": "Toggle Registries section",
- // TODO New key - Add a translation
"menu.section.toggle.registries": "Växla till registries",
// "menu.section.toggle.statistics_task": "Toggle Statistics Task section",
- // TODO New key - Add a translation
"menu.section.toggle.statistics_task": "Växla till statistik",
// "menu.section.workflow": "Administer Workflow",
- // TODO New key - Add a translation
"menu.section.workflow": "Administrera arbetsflöde",
// "mydspace.breadcrumbs": "MyDSpace",
- // TODO New key - Add a translation
"mydspace.breadcrumbs": "Mitt DSpace",
// "mydspace.description": "",
- // TODO New key - Add a translation
"mydspace.description": "",
// "mydspace.general.text-here": "here",
- // TODO New key - Add a translation
"mydspace.general.text-here": "här",
// "mydspace.messages.controller-help": "Select this option to send a message to item's submitter.",
- // TODO New key - Add a translation
"mydspace.messages.controller-help": "Välj detta för att skicka ett meddelande till uppladdare.",
// "mydspace.messages.description-placeholder": "Insert your message here...",
- // TODO New key - Add a translation
"mydspace.messages.description-placeholder": "Skriv meddelande här...",
// "mydspace.messages.hide-msg": "Hide message",
- // TODO New key - Add a translation
"mydspace.messages.hide-msg": "Göm meddelande",
// "mydspace.messages.mark-as-read": "Mark as read",
- // TODO New key - Add a translation
"mydspace.messages.mark-as-read": "Markera som läst",
// "mydspace.messages.mark-as-unread": "Mark as unread",
- // TODO New key - Add a translation
"mydspace.messages.mark-as-unread": "Markera som oläst",
// "mydspace.messages.no-content": "No content.",
- // TODO New key - Add a translation
"mydspace.messages.no-content": "Innehåll saknas.",
// "mydspace.messages.no-messages": "No messages yet.",
- // TODO New key - Add a translation
"mydspace.messages.no-messages": "Inga meddelanden finns.",
// "mydspace.messages.send-btn": "Send",
- // TODO New key - Add a translation
"mydspace.messages.send-btn": "Skicka",
// "mydspace.messages.show-msg": "Show message",
- // TODO New key - Add a translation
"mydspace.messages.show-msg": "Visa meddelande",
// "mydspace.messages.subject-placeholder": "Subject...",
- // TODO New key - Add a translation
"mydspace.messages.subject-placeholder": "Ämne...",
// "mydspace.messages.submitter-help": "Select this option to send a message to controller.",
- // TODO New key - Add a translation
"mydspace.messages.submitter-help": "Välj detta för att skicka ett meddelande till kontrollant.",
// "mydspace.messages.title": "Messages",
- // TODO New key - Add a translation
"mydspace.messages.title": "Meddelanden",
// "mydspace.messages.to": "To",
- // TODO New key - Add a translation
"mydspace.messages.to": "Till",
// "mydspace.new-submission": "New submission",
- // TODO New key - Add a translation
"mydspace.new-submission": "Nytt bidrag",
// "mydspace.new-submission-external": "Import metadata from external source",
- // TODO New key - Add a translation
"mydspace.new-submission-external": "Importera metadada från extern källa",
// "mydspace.new-submission-external-short": "Import metadata",
- // TODO New key - Add a translation
"mydspace.new-submission-external-short": "Importera metadata",
// "mydspace.results.head": "Your submissions",
- // TODO New key - Add a translation
"mydspace.results.head": "Dina registreringar",
// "mydspace.results.no-abstract": "No Abstract",
- // TODO New key - Add a translation
"mydspace.results.no-abstract": "Ingen sammanfattning",
// "mydspace.results.no-Författare": "No Författare",
- // TODO New key - Add a translation
"mydspace.results.no-Författare": "Inga författare",
// "mydspace.results.no-collections": "No Collections",
- // TODO New key - Add a translation
"mydspace.results.no-collections": "Inga samlingar",
// "mydspace.results.no-date": "No Date",
- // TODO New key - Add a translation
"mydspace.results.no-date": "Inget datum",
// "mydspace.results.no-files": "No Files",
- // TODO New key - Add a translation
"mydspace.results.no-files": "Inga filer",
// "mydspace.results.no-results": "There were no items to show",
- // TODO New key - Add a translation
"mydspace.results.no-results": "Det finns inga poster att visa",
// "mydspace.results.no-title": "No title",
- // TODO New key - Add a translation
"mydspace.results.no-title": "Ingen titel",
// "mydspace.results.no-uri": "No Uri",
- // TODO New key - Add a translation
"mydspace.results.no-uri": "Ingen Uri",
// "mydspace.search-form.placeholder": "Search in mydspace...",
- // TODO New key - Add a translation
"mydspace.search-form.placeholder": "Sök i mydspace...",
// "mydspace.show.workflow": "Workflow tasks",
- // TODO New key - Add a translation
"mydspace.show.workflow": "Arbetsflöde uppgifter",
// "mydspace.show.workspace": "Your Submissions",
- // TODO New key - Add a translation
"mydspace.show.workspace": "Dina registreringar",
// "mydspace.status.archived": "Archived",
- // TODO New key - Add a translation
"mydspace.status.archived": "I arkivet",
// "mydspace.status.validation": "Validation",
- // TODO New key - Add a translation
"mydspace.status.validation": "Validering",
// "mydspace.status.waiting-for-controller": "Waiting for controller",
- // TODO New key - Add a translation
"mydspace.status.waiting-for-controller": "Väntar på kontrollant",
// "mydspace.status.workflow": "Workflow",
- // TODO New key - Add a translation
"mydspace.status.workflow": "Arbetsflöde",
// "mydspace.status.workspace": "Workspace",
- // TODO New key - Add a translation
"mydspace.status.workspace": "I arbetsflödet",
// "mydspace.title": "MyDSpace",
- // TODO New key - Add a translation
- "mydspace.title": "MyDSpace",
+ "mydspace.title": "Mitt DSpace",
// "mydspace.upload.upload-failed": "Error creating new workspace. Please verify the content uploaded before retry.",
- // TODO New key - Add a translation
"mydspace.upload.upload-failed": "Ett fel uppstod när arbetsyta skulle skapas. Verifiera inneållet i det som skall laddas upp och försök igen.",
// "mydspace.upload.upload-failed-manyentries": "Unprocessable file. Detected too many entries but allowed only one for file.",
- // TODO New key - Add a translation
"mydspace.upload.upload-failed-manyentries": "Fil kan inte processes. Detected too many entries but allowed only one for file.",
// "mydspace.upload.upload-failed-moreonefile": "Unprocessable request. Only one file is allowed.",
- // TODO New key - Add a translation
"mydspace.upload.upload-failed-moreonefile": "Begäran kunde inte bearbetas. Endast en fil är möjlig.",
// "mydspace.upload.upload-multiple-successful": "{{qty}} new workspace items created.",
- // TODO New key - Add a translation
"mydspace.upload.upload-multiple-successful": "{{qty}} nya poster har skapats i arbetsytan.",
// "mydspace.upload.upload-successful": "New workspace item created. Click {{here}} for edit it.",
- // TODO New key - Add a translation
"mydspace.upload.upload-successful": "Ny post har skapats i arbetsytan. Klicka {{here}} för att redigera den.",
// "mydspace.view-btn": "View",
- // TODO New key - Add a translation
"mydspace.view-btn": "Visa",
// "nav.browse.header": "All of DSpace",
- // TODO New key - Add a translation
"nav.browse.header": "Hela DSpace",
// "nav.community-browse.header": "By Community",
- // TODO New key - Add a translation
"nav.community-browse.header": "Efter enhet",
// "nav.language": "Språk switch",
- // TODO New key - Add a translation
"nav.language": "Välj språk",
// "nav.login": "Log In",
- // TODO New key - Add a translation
"nav.login": "Logga in",
// "nav.logout": "User profile menu and Log Out",
@@ -5179,19 +3992,15 @@
"nav.main.description": "Main navigation bar",
// "nav.mydspace": "MyDSpace",
- // TODO New key - Add a translation
- "nav.mydspace": "Mitt ODR",
+ "nav.mydspace": "Mitt DSpace",
// "nav.profile": "Profile",
- // TODO New key - Add a translation
"nav.profile": "Profil",
// "nav.search": "Search",
- // TODO New key - Add a translation
"nav.search": "Sök",
// "nav.statistics.header": "Statistics",
- // TODO New key - Add a translation
"nav.statistics.header": "Statistik",
// "nav.stop-impersonating": "Stop impersonating EPerson",
@@ -5228,7 +4037,6 @@
"orgunit.page.dateestablished": "Date established",
// "orgunit.page.description": "Beskrivning",
- // TODO New key - Add a translation
"orgunit.page.description": "Beskrivning",
// "orgunit.page.edit": "Edit this item",
@@ -5236,7 +4044,6 @@
"orgunit.page.edit": "Edit this item",
// "orgunit.page.id": "ID",
- // TODO New key - Add a translation
"orgunit.page.id": "ID",
// "orgunit.page.titleprefix": "Organizational Unit: ",
@@ -5244,23 +4051,18 @@
"orgunit.page.titleprefix": "Organizational Unit: ",
// "pagination.options.description": "Pagination options",
- // TODO New key - Add a translation
"pagination.options.description": "Träffar per sida",
// "pagination.results-per-page": "Results Per Page",
- // TODO New key - Add a translation
"pagination.results-per-page": "Sökresultat per sida",
// "pagination.showing.detail": "{{ range }} of {{ total }}",
- // TODO New key - Add a translation
"pagination.showing.detail": "{{ range }} av {{ total }}",
// "pagination.showing.label": "Now showing ",
- // TODO New key - Add a translation
"pagination.showing.label": "Visar ",
// "pagination.sort-direction": "Sort Options",
- // TODO New key - Add a translation
"pagination.sort-direction": "Sortera efter",
@@ -5282,19 +4084,15 @@
"person.page.edit": "Edit this item",
// "person.page.email": "E-post",
- // TODO New key - Add a translation
"person.page.email": "E-post",
// "person.page.firstname": "First Name",
- // TODO New key - Add a translation
"person.page.firstname": "Förnamn",
// "person.page.jobtitle": "Job Title",
- // TODO New key - Add a translation
"person.page.jobtitle": "Job Title",
// "person.page.lastname": "Last Name",
- // TODO New key - Add a translation
"person.page.lastname": "Efternamn",
// "person.page.link.full": "Show all metadata",
@@ -5302,7 +4100,6 @@
"person.page.link.full": "Show all metadata",
// "person.page.orcid": "ORCID",
- // TODO New key - Add a translation
"person.page.orcid": "ORCID",
// "person.page.staffid": "Staff ID",
@@ -5332,7 +4129,6 @@
"process.new.cancel": "Cancel",
// "process.new.submit": "Save",
- // TODO New key - Add a translation
"process.new.submit": "Spara",
// "process.new.select-script": "Script",
@@ -5454,7 +4250,6 @@
"process.detail.end-time" : "Finish time",
// "process.detail.status" : "Status",
- // TODO New key - Add a translation
"process.detail.status" : "Status",
// "process.detail.create" : "Create similar process",
@@ -5464,152 +4259,115 @@
// "process.overview.table.finish" : "Finish time (UTC)",
- // TODO New key - Add a translation
"process.overview.table.finish" : "Sluttid (UTC)",
// "process.overview.table.id" : "Process ID",
- // TODO New key - Add a translation
"process.overview.table.id" : "Process ID",
// "process.overview.table.name" : "Name",
- // TODO New key - Add a translation
"process.overview.table.name" : "Namn",
// "process.overview.table.start" : "Start time (UTC)",
- // TODO New key - Add a translation
"process.overview.table.start" : "Starttid (UTC)",
// "process.overview.table.status" : "Status",
- // TODO New key - Add a translation
"process.overview.table.status" : "Status",
// "process.overview.table.user" : "User",
- // TODO New key - Add a translation
"process.overview.table.user" : "Användare",
// "process.overview.title": "Processes Overview",
- // TODO New key - Add a translation
"process.overview.title": "Processer översikt",
// "process.overview.breadcrumbs": "Processes Overview",
- // TODO New key - Add a translation
"process.overview.breadcrumbs": "Processer översikt",
// "process.overview.new": "New",
- // TODO New key - Add a translation
"process.overview.new": "Ny",
// "profile.breadcrumbs": "Update Profile",
- // TODO New key - Add a translation
"profile.breadcrumbs": "Uppdatera profil",
// "profile.card.identify": "Identify",
- // TODO New key - Add a translation
"profile.card.identify": "Identifiera",
// "profile.card.security": "Säkerhet",
- // TODO New key - Add a translation
"profile.card.security": "Säkerhet och inloggning",
// "profile.form.submit": "Save",
- // TODO New key - Add a translation
"profile.form.submit": "Spara",
// "profile.groups.head": "Authorization groups you belong to",
- // TODO New key - Add a translation
"profile.groups.head": "Behörighetsgrupper som du är medlem i",
// "profile.head": "Update Profile",
- // TODO New key - Add a translation
"profile.head": "Uppdatera profil",
// "profile.metadata.form.error.firstname.required": "First Name is required",
- // TODO New key - Add a translation
"profile.metadata.form.error.firstname.required": "Förnamn är obligatotiskt",
// "profile.metadata.form.error.lastname.required": "Last Name is required",
- // TODO New key - Add a translation
"profile.metadata.form.error.lastname.required": "Efternamn är obligatoriskt",
// "profile.metadata.form.label.email": "E-post",
- // TODO New key - Add a translation
"profile.metadata.form.label.email": "E-post",
// "profile.metadata.form.label.firstname": "First Name",
- // TODO New key - Add a translation
"profile.metadata.form.label.firstname": "Förnamn",
// "profile.metadata.form.label.language": "Språk",
- // TODO New key - Add a translation
"profile.metadata.form.label.language": "Språk",
// "profile.metadata.form.label.lastname": "Last Name",
- // TODO New key - Add a translation
"profile.metadata.form.label.lastname": "Efternamn",
// "profile.metadata.form.label.phone": "Telefonnummer",
- // TODO New key - Add a translation
"profile.metadata.form.label.phone": "Telefonnummer",
// "profile.metadata.form.notifications.success.content": "Your changes to the profile were saved.",
- // TODO New key - Add a translation
"profile.metadata.form.notifications.success.content": "Dina ändringar har sparats.",
// "profile.metadata.form.notifications.success.title": "Profile saved",
- // TODO New key - Add a translation
"profile.metadata.form.notifications.success.title": "Profilen har sparats",
// "profile.notifications.warning.no-changes.content": "No changes were made to the Profile.",
- // TODO New key - Add a translation
"profile.notifications.warning.no-changes.content": "Inga ändringar gjordes.",
// "profile.notifications.warning.no-changes.title": "No changes",
- // TODO New key - Add a translation
"profile.notifications.warning.no-changes.title": "Inga ändringar",
// "profile.security.form.error.matching-passwords": "Lösenorden överensstämmer inte.",
- // TODO New key - Add a translation
"profile.security.form.error.matching-passwords": "Lösenorden överensstämmer inte.",
// "profile.security.form.error.password-length": "The password should be at least 6 characters long.",
- // TODO New key - Add a translation
"profile.security.form.error.password-length": "Lösenordet måste bestå av minst 6 tecken.",
// "profile.security.form.info": "Optionally, you can enter a new password in the box below, and confirm it by typing it again into the second box. It should be at least six characters long.",
- // TODO New key - Add a translation
"profile.security.form.info": "Om du vill byta lösenord så kan du göra det nedan. Lösenordet måste bestå av minst 6 tecken.",
// "profile.security.form.label.password": "Password",
- // TODO New key - Add a translation
"profile.security.form.label.password": "Lösenord",
// "profile.security.form.label.passwordrepeat": "Bekräfta",
- // TODO New key - Add a translation
"profile.security.form.label.passwordrepeat": "Bekräfta",
// "profile.security.form.notifications.success.content": "Your changes to the password were saved.",
- // TODO New key - Add a translation
"profile.security.form.notifications.success.content": "Det nya lösenordet har sparats.",
// "profile.security.form.notifications.success.title": "Password saved",
- // TODO New key - Add a translation
"profile.security.form.notifications.success.title": "Lösenordet har sparats",
// "profile.security.form.notifications.error.title": "Error changing passwords",
- // TODO New key - Add a translation
"profile.security.form.notifications.error.title": "Ett del uppstod när lösenordet skulle sparas",
// "profile.security.form.notifications.error.not-long-enough": "The password has to be at least 6 characters long.",
- // TODO New key - Add a translation
"profile.security.form.notifications.error.not-long-enough": "Lösenordet måste bestå av minst 6 tecken.",
// "profile.security.form.notifications.error.not-same": "The provided passwords are not the same.",
- // TODO New key - Add a translation
"profile.security.form.notifications.error.not-same": "Lösenorden överensstämmer inte.",
// "profile.title": "Update Profile",
- // TODO New key - Add a translation
"profile.title": "Uppdatera profil",
@@ -5623,7 +4381,6 @@
"project.page.contributor": "Contributors",
// "project.page.description": "Beskrivning",
- // TODO New key - Add a translation
"project.page.description": "Beskrivning",
// "project.page.edit": "Edit this item",
@@ -5639,15 +4396,12 @@
"project.page.funder": "Funders",
// "project.page.id": "ID",
- // TODO New key - Add a translation
"project.page.id": "ID",
// "project.page.keyword": "Keywords",
- // TODO New key - Add a translation
"project.page.keyword": "Ämne/nyckelord",
// "project.page.status": "Status",
- // TODO New key - Add a translation
"project.page.status": "Status",
// "project.page.titleprefix": "Research Project: ",
@@ -5665,7 +4419,6 @@
"publication.listelement.badge": "Publication",
// "publication.page.description": "Beskrivning",
- // TODO New key - Add a translation
"publication.page.description": "Beskrivning",
// "publication.page.edit": "Edit this item",
@@ -5681,7 +4434,6 @@
"publication.page.journal-title": "Journal Title",
// "publication.page.publisher": "Publisher",
- // TODO New key - Add a translation
"publication.page.publisher": "Utgivare",
// "publication.page.titleprefix": "Publication: ",
@@ -5702,11 +4454,9 @@
// "media-viewer.next": "Next",
- // TODO New key - Add a translation
"media-viewer.next": "Nästa",
// "media-viewer.previous": "Föregående",
- // TODO New key - Add a translation
"media-viewer.previous": "Föregående",
// "media-viewer.playlist": "Playlist",
@@ -5715,752 +4465,567 @@
// "register-email.title": "Ny användare",
- // TODO New key - Add a translation
"register-email.title": "Ny användare",
// "register-page.create-profile.header": "Create Profile",
- // TODO New key - Add a translation
"register-page.create-profile.header": "Skapa profil",
// "register-page.create-profile.identification.header": "Identify",
- // TODO New key - Add a translation
"register-page.create-profile.identification.header": "Identifera",
// "register-page.create-profile.identification.email": "E-post",
- // TODO New key - Add a translation
"register-page.create-profile.identification.email": "E-post",
// "register-page.create-profile.identification.first-name": "First Name *",
- // TODO New key - Add a translation
"register-page.create-profile.identification.first-name": "Förnamn *",
// "register-page.create-profile.identification.first-name.error": "Please fill in a First Name",
- // TODO New key - Add a translation
"register-page.create-profile.identification.first-name.error": "Ange förnamn",
// "register-page.create-profile.identification.last-name": "Last Name *",
- // TODO New key - Add a translation
"register-page.create-profile.identification.last-name": "Efternamn *",
// "register-page.create-profile.identification.last-name.error": "Please fill in a Last Name",
- // TODO New key - Add a translation
"register-page.create-profile.identification.last-name.error": "Ange efternamn",
// "register-page.create-profile.identification.contact": "Telefonnummer",
- // TODO New key - Add a translation
"register-page.create-profile.identification.contact": "Telefonnummer",
// "register-page.create-profile.identification.language": "Språk",
- // TODO New key - Add a translation
"register-page.create-profile.identification.language": "Språk",
// "register-page.create-profile.security.header": "Säkerhet",
- // TODO New key - Add a translation
"register-page.create-profile.security.header": "Säkerhet",
// "register-page.create-profile.security.info": "Please enter a password in the box below, and confirm it by typing it again into the second box. It should be at least six characters long.",
- // TODO New key - Add a translation
"register-page.create-profile.security.info": "Ange och bekräfta ett lösenord nedan. Det måste bestå av minst 6 tecken.",
// "register-page.create-profile.security.label.password": "Password *",
- // TODO New key - Add a translation
"register-page.create-profile.security.label.password": "Lösenord *",
// "register-page.create-profile.security.label.passwordrepeat": "Bekräfta *",
- // TODO New key - Add a translation
"register-page.create-profile.security.label.passwordrepeat": "Bekräfta *",
// "register-page.create-profile.security.error.empty-password": "Please enter a password in the box below.",
- // TODO New key - Add a translation
- "register-page.create-profile.security.error.empty-password": "Ange ett lösnord nedan.",
+ "register-page.create-profile.security.error.empty-password": "Ange ett lösenord nedan.",
// "register-page.create-profile.security.error.matching-passwords": "Lösenorden överensstämmer inte.",
- // TODO New key - Add a translation
"register-page.create-profile.security.error.matching-passwords": "Lösenorden överensstämmer inte.",
// "register-page.create-profile.security.error.password-length": "The password should be at least 6 characters long.",
- // TODO New key - Add a translation
"register-page.create-profile.security.error.password-length": "Lösenordet måste bestå av minst 6 tecken.",
// "register-page.create-profile.submit": "Complete Registration",
- // TODO New key - Add a translation
"register-page.create-profile.submit": "Slutför registrering",
// "register-page.create-profile.submit.error.content": "Something went wrong while registering a new user.",
- // TODO New key - Add a translation
"register-page.create-profile.submit.error.content": "Ett fel uppstod när ny användare registrerades.",
// "register-page.create-profile.submit.error.head": "Registration failed",
- // TODO New key - Add a translation
"register-page.create-profile.submit.error.head": "Registreringen misslyckades",
// "register-page.create-profile.submit.success.content": "The registration was successful. You have been logged in as the created user.",
- // TODO New key - Add a translation
- "register-page.create-profile.submit.success.content": "Regsitreringen är klar. Du är nu inloggad som den nya användaren.",
+ "register-page.create-profile.submit.success.content": "Registreringen är klar. Du är nu inloggad som den nya användaren.",
// "register-page.create-profile.submit.success.head": "Registration completed",
- // TODO New key - Add a translation
"register-page.create-profile.submit.success.head": "Registreringen är klar",
// "register-page.registration.header": "Ny användare",
- // TODO New key - Add a translation
"register-page.registration.header": "Ny användare",
// "register-page.registration.info": "Register an account to subscribe to collections for email updates, and submit new items to DSpace.",
- // TODO New key - Add a translation
"register-page.registration.info": "Skapa ett konto för att få uppdateringar eller för att kunna registrera nya bidrag i arkivet.",
// "register-page.registration.email": "E-post *",
- // TODO New key - Add a translation
"register-page.registration.email": "E-post *",
// "register-page.registration.email.error.required": "Please fill in an email address",
- // TODO New key - Add a translation
"register-page.registration.email.error.required": "Ange e-post",
// "register-page.registration.email.error.pattern": "Please fill in a valid email address",
- // TODO New key - Add a translation
"register-page.registration.email.error.pattern": "Ange en giltig e-postadress",
// "register-page.registration.email.hint": "This address will be verified and used as your login name.",
- // TODO New key - Add a translation
"register-page.registration.email.hint": "Denna adress kommer att verifieras och användas när du loggar in.",
// "register-page.registration.submit": "Register",
- // TODO New key - Add a translation
"register-page.registration.submit": "Skapa konto",
// "register-page.registration.success.head": "Verification email sent",
- // TODO New key - Add a translation
"register-page.registration.success.head": "Ett verifieringsmejl har skickats",
// "register-page.registration.success.content": "An email has been sent to {{ email }} containing a special URL and further instructions.",
- // TODO New key - Add a translation
"register-page.registration.success.content": "Ett mejl med instruktioner har skickats till {{ email }}.",
// "register-page.registration.error.head": "Error when trying to register email",
- // TODO New key - Add a translation
"register-page.registration.error.head": "Ett fel uppstod när kontot skulle skapas",
// "register-page.registration.error.content": "An error occured when registering the following email address: {{ email }}",
- // TODO New key - Add a translation
"register-page.registration.error.content": "Ett fel uppstod när kontot skulle skapas för: {{ email }}",
// "relationships.add.error.relationship-type.content": "No suitable match could be found for relationship type {{ type }} between the two items",
- // TODO New key - Add a translation
"relationships.add.error.relationship-type.content": "Det gick inte att hitta något som matchade relationstyp {{ type }} mellan dessa poster",
// "relationships.add.error.server.content": "The server returned an error",
- // TODO New key - Add a translation
"relationships.add.error.server.content": "Servern returnerade ett fel",
// "relationships.add.error.title": "Unable to add relationship",
- // TODO New key - Add a translation
"relationships.add.error.title": "Det gick inte att skapa relation",
// "relationships.isAuthorOf": "Författare",
- // TODO New key - Add a translation
"relationships.isAuthorOf": "Författare",
// "relationships.isAuthorOf.Person": "Författare (persons)",
- // TODO New key - Add a translation
"relationships.isAuthorOf.Person": "Författare (personer)",
// "relationships.isAuthorOf.OrgUnit": "Författare (organizational units)",
- // TODO New key - Add a translation
"relationships.isAuthorOf.OrgUnit": "Författare (organisatoriska enheter)",
// "relationships.isIssueOf": "Journal Issues",
- // TODO New key - Add a translation
"relationships.isIssueOf": "Tidskriftsexemplar",
// "relationships.isJournalIssueOf": "Journal Issue",
- // TODO New key - Add a translation
"relationships.isJournalIssueOf": "Tidskriftsexemplar",
// "relationships.isJournalOf": "Journals",
- // TODO New key - Add a translation
"relationships.isJournalOf": "Tidskrifter",
// "relationships.isOrgUnitOf": "Organizational Units",
- // TODO New key - Add a translation
"relationships.isOrgUnitOf": "Organisatoriska enheter",
// "relationships.isPersonOf": "Författare",
- // TODO New key - Add a translation
"relationships.isPersonOf": "Författare",
// "relationships.isProjectOf": "Research Projects",
- // TODO New key - Add a translation
"relationships.isProjectOf": "Forskningsprojekt",
// "relationships.isPublicationOf": "Publications",
- // TODO New key - Add a translation
"relationships.isPublicationOf": "Publikationer",
// "relationships.isPublicationOfJournalIssue": "Articles",
- // TODO New key - Add a translation
"relationships.isPublicationOfJournalIssue": "Artiklar",
// "relationships.isSingleJournalOf": "Journal",
- // TODO New key - Add a translation
"relationships.isSingleJournalOf": "Tidskrift",
// "relationships.isSingleVolumeOf": "Journal Volume",
- // TODO New key - Add a translation
"relationships.isSingleVolumeOf": "Tidskriftsexemplar",
// "relationships.isVolumeOf": "Journal Volumes",
- // TODO New key - Add a translation
"relationships.isVolumeOf": "Tidskriftsvolymer",
// "relationships.isContributorOf": "Contributors",
- // TODO New key - Add a translation
"relationships.isContributorOf": "Medverkande",
// "relationships.isContributorOf.OrgUnit": "Contributor (Organizational Unit)",
- // TODO New key - Add a translation
"relationships.isContributorOf.OrgUnit": "Medverkande (organisatorisk enhet)",
// "relationships.isContributorOf.Person": "Contributor",
- // TODO New key - Add a translation
"relationships.isContributorOf.Person": "Medverkande",
// "relationships.isFundingAgencyOf.OrgUnit": "Funder",
- // TODO New key - Add a translation
"relationships.isFundingAgencyOf.OrgUnit": "Finansiär",
// "repository.image.logo": "Repository logo",
- // TODO New key - Add a translation
"repository.image.logo": "Repositoriets logga",
// "repository.title.prefix": "DSpace Angular :: ",
- // TODO New key - Add a translation
"repository.title.prefix": "DSpace Angular :: ",
// "repository.title.prefixDSpace": "DSpace Angular ::",
- // TODO New key - Add a translation
"repository.title.prefixDSpace": "DSpace Angular ::",
// "resource-policies.add.button": "Add",
- // TODO New key - Add a translation
"resource-policies.add.button": "Lägg till",
// "resource-policies.add.for.": "Add a new policy",
- // TODO New key - Add a translation
"resource-policies.add.for.": "Lägg till ny policy",
// "resource-policies.add.for.bitstream": "Add a new Bitstream policy",
- // TODO New key - Add a translation
"resource-policies.add.for.bitstream": "Lägg till ny policy för fil",
// "resource-policies.add.for.bundle": "Add a new Bundle policy",
- // TODO New key - Add a translation
"resource-policies.add.for.bundle": "Lägg till ny policy för bunt",
// "resource-policies.add.for.item": "Add a new Item policy",
- // TODO New key - Add a translation
"resource-policies.add.for.item": "Lägg till ny policy för post",
// "resource-policies.add.for.community": "Add a new Community policy",
- // TODO New key - Add a translation
"resource-policies.add.for.community": "Lägg till ny policy för enhet",
// "resource-policies.add.for.collection": "Add a new Collection policy",
- // TODO New key - Add a translation
"resource-policies.add.for.collection": "Lägg till ny policy för samling",
// "resource-policies.create.page.heading": "Create new resource policy for ",
- // TODO New key - Add a translation
"resource-policies.create.page.heading": "Lägg till ny policy för ",
// "resource-policies.create.page.failure.content": "An error occurred while creating the resource policy.",
- // TODO New key - Add a translation
"resource-policies.create.page.failure.content": "Ett fel har uppstått.",
// "resource-policies.create.page.success.content": "Operation successful",
- // TODO New key - Add a translation
"resource-policies.create.page.success.content": "Operationen lyckades",
// "resource-policies.create.page.title": "Create new resource policy",
- // TODO New key - Add a translation
"resource-policies.create.page.title": "Skapa ny policy för resurs",
// "resource-policies.delete.btn": "Delete selected",
- // TODO New key - Add a translation
"resource-policies.delete.btn": "Radera valda",
// "resource-policies.delete.btn.title": "Delete selected resource policies",
- // TODO New key - Add a translation
"resource-policies.delete.btn.title": "Radera valda policies",
// "resource-policies.delete.failure.content": "An error occurred while deleting selected resource policies.",
- // TODO New key - Add a translation
"resource-policies.delete.failure.content": "Ett fel uppstod när policies skulle raderas.",
// "resource-policies.delete.success.content": "Operation successful",
- // TODO New key - Add a translation
"resource-policies.delete.success.content": "Operationen lyckades",
// "resource-policies.edit.page.heading": "Edit resource policy ",
- // TODO New key - Add a translation
"resource-policies.edit.page.heading": "Redigera policy för resurs ",
// "resource-policies.edit.page.failure.content": "An error occurred while editing the resource policy.",
- // TODO New key - Add a translation
"resource-policies.edit.page.failure.content": "Ett fel uppstod när policy redigerades.",
// "resource-policies.edit.page.success.content": "Operation successful",
- // TODO New key - Add a translation
"resource-policies.edit.page.success.content": "Operationen lyckades",
// "resource-policies.edit.page.title": "Edit resource policy",
- // TODO New key - Add a translation
"resource-policies.edit.page.title": "Redigera policy för resurs",
// "resource-policies.form.action-type.label": "Select the action type",
- // TODO New key - Add a translation
"resource-policies.form.action-type.label": "Välj typ av åtgärd",
// "resource-policies.form.action-type.required": "You must select the resource policy action.",
- // TODO New key - Add a translation
"resource-policies.form.action-type.required": "Du måste välja typ av åtgärd.",
// "resource-policies.form.eperson-group-list.label": "The eperson or group that will be granted the permission",
- // TODO New key - Add a translation
"resource-policies.form.eperson-group-list.label": "ePerson och/eller grupp som kommer att beviljas åtkomst",
// "resource-policies.form.eperson-group-list.select.btn": "Select",
- // TODO New key - Add a translation
"resource-policies.form.eperson-group-list.select.btn": "Välj",
// "resource-policies.form.eperson-group-list.tab.eperson": "Search for a ePerson",
- // TODO New key - Add a translation
"resource-policies.form.eperson-group-list.tab.eperson": "Sök ePerson",
// "resource-policies.form.eperson-group-list.tab.group": "Search for a group",
- // TODO New key - Add a translation
"resource-policies.form.eperson-group-list.tab.group": "Sök grupp",
// "resource-policies.form.eperson-group-list.table.headers.action": "Action",
- // TODO New key - Add a translation
"resource-policies.form.eperson-group-list.table.headers.action": "Åtgärd",
// "resource-policies.form.eperson-group-list.table.headers.id": "ID",
- // TODO New key - Add a translation
"resource-policies.form.eperson-group-list.table.headers.id": "ID",
// "resource-policies.form.eperson-group-list.table.headers.name": "Name",
- // TODO New key - Add a translation
"resource-policies.form.eperson-group-list.table.headers.name": "Namn",
// "resource-policies.form.date.end.label": "End Date",
- // TODO New key - Add a translation
"resource-policies.form.date.end.label": "Slutdatum",
// "resource-policies.form.date.start.label": "Start Date",
- // TODO New key - Add a translation
"resource-policies.form.date.start.label": "Startdatum",
// "resource-policies.form.description.label": "Beskrivning",
- // TODO New key - Add a translation
"resource-policies.form.description.label": "Beskrivning",
// "resource-policies.form.name.label": "Name",
- // TODO New key - Add a translation
"resource-policies.form.name.label": "Namn",
// "resource-policies.form.policy-type.label": "Select the policy type",
- // TODO New key - Add a translation
"resource-policies.form.policy-type.label": "Välj typ av policy",
// "resource-policies.form.policy-type.required": "You must select the resource policy type.",
- // TODO New key - Add a translation
- "resource-policies.form.policy-type.required": "YDu måste välja typ av policy.",
+ "resource-policies.form.policy-type.required": "Du måste välja typ av policy.",
// "resource-policies.table.headers.action": "Action",
- // TODO New key - Add a translation
"resource-policies.table.headers.action": "Åtgärd",
// "resource-policies.table.headers.date.end": "End Date",
- // TODO New key - Add a translation
"resource-policies.table.headers.date.end": "Slutdatum",
// "resource-policies.table.headers.date.start": "Start Date",
- // TODO New key - Add a translation
"resource-policies.table.headers.date.start": "Startdatum",
// "resource-policies.table.headers.edit": "Edit",
- // TODO New key - Add a translation
"resource-policies.table.headers.edit": "Redigera",
// "resource-policies.table.headers.edit.group": "Edit group",
- // TODO New key - Add a translation
"resource-policies.table.headers.edit.group": "Redigera grupp",
// "resource-policies.table.headers.edit.policy": "Edit policy",
- // TODO New key - Add a translation
"resource-policies.table.headers.edit.policy": "Redigera policy",
// "resource-policies.table.headers.eperson": "EPerson",
- // TODO New key - Add a translation
"resource-policies.table.headers.eperson": "EPerson",
// "resource-policies.table.headers.group": "Group",
- // TODO New key - Add a translation
"resource-policies.table.headers.group": "Grupp",
// "resource-policies.table.headers.id": "ID",
- // TODO New key - Add a translation
"resource-policies.table.headers.id": "ID",
// "resource-policies.table.headers.name": "Name",
- // TODO New key - Add a translation
"resource-policies.table.headers.name": "Namn",
// "resource-policies.table.headers.policyType": "type",
- // TODO New key - Add a translation
"resource-policies.table.headers.policyType": "typ",
// "resource-policies.table.headers.title.for.bitstream": "Policies for Bitstream",
- // TODO New key - Add a translation
"resource-policies.table.headers.title.for.bitstream": "Policies för fil",
// "resource-policies.table.headers.title.for.bundle": "Policies for Bundle",
- // TODO New key - Add a translation
"resource-policies.table.headers.title.for.bundle": "Policies för bunt",
// "resource-policies.table.headers.title.for.item": "Policies for Item",
- // TODO New key - Add a translation
"resource-policies.table.headers.title.for.item": "Policies för post",
// "resource-policies.table.headers.title.for.community": "Policies for Community",
- // TODO New key - Add a translation
"resource-policies.table.headers.title.for.community": "Policies för enhet",
// "resource-policies.table.headers.title.for.collection": "Policies for Collection",
- // TODO New key - Add a translation
"resource-policies.table.headers.title.for.collection": "Policies för samling",
// "search.description": "",
- // TODO New key - Add a translation
"search.description": "",
// "search.switch-configuration.title": "Show",
- // TODO New key - Add a translation
"search.switch-configuration.title": "Visa",
// "search.title": "Search",
- // TODO New key - Add a translation
"search.title": "Sök",
// "search.breadcrumbs": "Search",
- // TODO New key - Add a translation
"search.breadcrumbs": "Sök",
// "search.search-form.placeholder": "Search the repository ...",
- // TODO New key - Add a translation
"search.search-form.placeholder": "Sök i DSpace...",
// "search.filters.applied.f.author": "Author",
- // TODO New key - Add a translation
"search.filters.applied.f.author": "Författare",
// "search.filters.applied.f.dateIssued.max": "End date",
- // TODO New key - Add a translation
"search.filters.applied.f.dateIssued.max": "Slut",
// "search.filters.applied.f.dateIssued.min": "Start date",
- // TODO New key - Add a translation
"search.filters.applied.f.dateIssued.min": "Start",
// "search.filters.applied.f.dateSubmitted": "Date submitted",
- // TODO New key - Add a translation
"search.filters.applied.f.dateSubmitted": "Skapad",
// "search.filters.applied.f.discoverable": "Non-discoverable",
- // TODO New key - Add a translation
"search.filters.applied.f.discoverable": "Ej sökbar",
// "search.filters.applied.f.entityType": "Item Type",
- // TODO New key - Add a translation
"search.filters.applied.f.entityType": "Typ",
// "search.filters.applied.f.has_content_in_original_bundle": "Has files",
- // TODO New key - Add a translation
"search.filters.applied.f.has_content_in_original_bundle": "Innehåller filer",
// "search.filters.applied.f.itemtype": "Type",
- // TODO New key - Add a translation
"search.filters.applied.f.itemtype": "Typ",
// "search.filters.applied.f.namedresourcetype": "Status",
- // TODO New key - Add a translation
"search.filters.applied.f.namedresourcetype": "Status",
// "search.filters.applied.f.subject": "Subject",
- // TODO New key - Add a translation
"search.filters.applied.f.subject": "Ämne",
// "search.filters.applied.f.submitter": "Submitter",
- // TODO New key - Add a translation
"search.filters.applied.f.submitter": "Skapad av",
// "search.filters.applied.f.jobTitle": "Job Title",
- // TODO New key - Add a translation
"search.filters.applied.f.jobTitle": "Job Title",
// "search.filters.applied.f.birthDate.max": "End birth date",
- // TODO New key - Add a translation
"search.filters.applied.f.birthDate.max": "Födelsedatum (till)",
// "search.filters.applied.f.birthDate.min": "Start birth date",
- // TODO New key - Add a translation
"search.filters.applied.f.birthDate.min": "Födelsedatum (från)",
// "search.filters.applied.f.withdrawn": "Withdrawn",
- // TODO New key - Add a translation
"search.filters.applied.f.withdrawn": "Återkallad",
// "search.filters.filter.author.head": "Author",
- // TODO New key - Add a translation
"search.filters.filter.author.head": "Författare",
// "search.filters.filter.author.placeholder": "Author name",
- // TODO New key - Add a translation
"search.filters.filter.author.placeholder": "Författare (namn)",
// "search.filters.filter.author.label": "Search author name",
- // TODO New key - Add a translation
"search.filters.filter.author.label": "Sök författare",
// "search.filters.filter.birthDate.head": "Birth Date",
- // TODO New key - Add a translation
"search.filters.filter.birthDate.head": "Födelsedatum",
// "search.filters.filter.birthDate.placeholder": "Birth Date",
- // TODO New key - Add a translation
"search.filters.filter.birthDate.placeholder": "Födelsedatum",
// "search.filters.filter.birthDate.label": "Search birth date",
- // TODO New key - Add a translation
"search.filters.filter.birthDate.label": "Sök födelsedatum",
// "search.filters.filter.collapse": "Collapse filter",
- // TODO New key - Add a translation
"search.filters.filter.collapse": "Fäll ihop filter",
// "search.filters.filter.creativeDatePublished.head": "Date Published",
- // TODO New key - Add a translation
"search.filters.filter.creativeDatePublished.head": "Publicerad",
// "search.filters.filter.creativeDatePublished.placeholder": "Date Published",
- // TODO New key - Add a translation
"search.filters.filter.creativeDatePublished.placeholder": "Publicerad",
// "search.filters.filter.creativeDatePublished.label": "Search date published",
- // TODO New key - Add a translation
"search.filters.filter.creativeDatePublished.label": "Sök på publiceringsdatum",
// "search.filters.filter.creativeWorkEditor.head": "Editor",
- // TODO New key - Add a translation
"search.filters.filter.creativeWorkEditor.head": "Redaktör",
// "search.filters.filter.creativeWorkEditor.placeholder": "Editor",
- // TODO New key - Add a translation
"search.filters.filter.creativeWorkEditor.placeholder": "Redaktör",
// "search.filters.filter.creativeWorkEditor.label": "Search editor",
- // TODO New key - Add a translation
"search.filters.filter.creativeWorkEditor.label": "Sök redaktör",
// "search.filters.filter.creativeWorkKeywords.head": "Subject",
- // TODO New key - Add a translation
"search.filters.filter.creativeWorkKeywords.head": "Ämne",
// "search.filters.filter.creativeWorkKeywords.placeholder": "Subject",
- // TODO New key - Add a translation
"search.filters.filter.creativeWorkKeywords.placeholder": "Ämne",
// "search.filters.filter.creativeWorkKeywords.label": "Search subject",
- // TODO New key - Add a translation
"search.filters.filter.creativeWorkKeywords.label": "Sök ämne",
// "search.filters.filter.creativeWorkPublisher.head": "Publisher",
- // TODO New key - Add a translation
"search.filters.filter.creativeWorkPublisher.head": "Utgivare",
// "search.filters.filter.creativeWorkPublisher.placeholder": "Publisher",
- // TODO New key - Add a translation
"search.filters.filter.creativeWorkPublisher.placeholder": "Utgivare",
// "search.filters.filter.creativeWorkPublisher.label": "Search publisher",
- // TODO New key - Add a translation
"search.filters.filter.creativeWorkPublisher.label": "Sök utgivare",
// "search.filters.filter.dateIssued.head": "Date",
- // TODO New key - Add a translation
"search.filters.filter.dateIssued.head": "Datum",
// "search.filters.filter.dateIssued.max.placeholder": "Maximum Date",
- // TODO New key - Add a translation
"search.filters.filter.dateIssued.max.placeholder": "Datum (max)",
// "search.filters.filter.dateIssued.max.label": "End",
- // TODO New key - Add a translation
"search.filters.filter.dateIssued.max.label": "Till",
// "search.filters.filter.dateIssued.min.placeholder": "Minimum Date",
- // TODO New key - Add a translation
"search.filters.filter.dateIssued.min.placeholder": "Datum (min)",
// "search.filters.filter.dateIssued.min.label": "Start",
- // TODO New key - Add a translation
"search.filters.filter.dateIssued.min.label": "Från",
// "search.filters.filter.dateSubmitted.head": "Date submitted",
- // TODO New key - Add a translation
"search.filters.filter.dateSubmitted.head": "Skapad",
// "search.filters.filter.dateSubmitted.placeholder": "Date submitted",
- // TODO New key - Add a translation
"search.filters.filter.dateSubmitted.placeholder": "Skapad",
// "search.filters.filter.dateSubmitted.label": "Search date submitted",
- // TODO New key - Add a translation
"search.filters.filter.dateSubmitted.label": "Sök skapad datum",
// "search.filters.filter.discoverable.head": "Non-discoverable",
- // TODO New key - Add a translation
"search.filters.filter.discoverable.head": "Ej sökbar",
// "search.filters.filter.withdrawn.head": "Withdrawn",
- // TODO New key - Add a translation
"search.filters.filter.withdrawn.head": "Återkallad",
// "search.filters.filter.entityType.head": "Item Type",
- // TODO New key - Add a translation
"search.filters.filter.entityType.head": "Typ",
// "search.filters.filter.entityType.placeholder": "Item Type",
- // TODO New key - Add a translation
"search.filters.filter.entityType.placeholder": "Typ",
// "search.filters.filter.entityType.label": "Search item type",
- // TODO New key - Add a translation
"search.filters.filter.entityType.label": "Sök typ av post",
// "search.filters.filter.expand": "Expand filter",
- // TODO New key - Add a translation
"search.filters.filter.expand": "Expandera filter",
// "search.filters.filter.has_content_in_original_bundle.head": "Has files",
- // TODO New key - Add a translation
"search.filters.filter.has_content_in_original_bundle.head": "Innehåller filer",
// "search.filters.filter.itemtype.head": "Type",
- // TODO New key - Add a translation
"search.filters.filter.itemtype.head": "Typ",
// "search.filters.filter.itemtype.placeholder": "Type",
- // TODO New key - Add a translation
"search.filters.filter.itemtype.placeholder": "Typ",
// "search.filters.filter.itemtype.label": "Search type",
- // TODO New key - Add a translation
"search.filters.filter.itemtype.label": "Sök typ",
// "search.filters.filter.jobTitle.head": "Job Title",
- // TODO New key - Add a translation
"search.filters.filter.jobTitle.head": "Job Title",
// "search.filters.filter.jobTitle.placeholder": "Job Title",
- // TODO New key - Add a translation
"search.filters.filter.jobTitle.placeholder": "Job Title",
// "search.filters.filter.jobTitle.label": "Search job title",
- // TODO New key - Add a translation
"search.filters.filter.jobTitle.label": "Sök job title",
// "search.filters.filter.knowsLanguage.head": "Known language",
- // TODO New key - Add a translation
"search.filters.filter.knowsLanguage.head": "Känt språk",
// "search.filters.filter.knowsLanguage.placeholder": "Known language",
- // TODO New key - Add a translation
"search.filters.filter.knowsLanguage.placeholder": "Känt språk",
// "search.filters.filter.knowsLanguage.label": "Search known language",
- // TODO New key - Add a translation
"search.filters.filter.knowsLanguage.label": "Sök språk",
// "search.filters.filter.namedresourcetype.head": "Status",
- // TODO New key - Add a translation
"search.filters.filter.namedresourcetype.head": "Status",
// "search.filters.filter.namedresourcetype.placeholder": "Status",
- // TODO New key - Add a translation
"search.filters.filter.namedresourcetype.placeholder": "Status",
// "search.filters.filter.namedresourcetype.label": "Search status",
- // TODO New key - Add a translation
"search.filters.filter.namedresourcetype.label": "Sök status",
// "search.filters.filter.objectpeople.head": "People",
- // TODO New key - Add a translation
"search.filters.filter.objectpeople.head": "Personer",
// "search.filters.filter.objectpeople.placeholder": "People",
- // TODO New key - Add a translation
"search.filters.filter.objectpeople.placeholder": "Personer",
// "search.filters.filter.objectpeople.label": "Search people",
- // TODO New key - Add a translation
"search.filters.filter.objectpeople.label": "Sök personer",
// "search.filters.filter.organizationAddressCountry.head": "Country",
- // TODO New key - Add a translation
"search.filters.filter.organizationAddressCountry.head": "Land",
// "search.filters.filter.organizationAddressCountry.placeholder": "Country",
- // TODO New key - Add a translation
"search.filters.filter.organizationAddressCountry.placeholder": "Land",
// "search.filters.filter.organizationAddressCountry.label": "Search country",
- // TODO New key - Add a translation
"search.filters.filter.organizationAddressCountry.label": "Sök land",
// "search.filters.filter.organizationAddressLocality.head": "City",
- // TODO New key - Add a translation
"search.filters.filter.organizationAddressLocality.head": "Stad",
// "search.filters.filter.organizationAddressLocality.placeholder": "City",
- // TODO New key - Add a translation
"search.filters.filter.organizationAddressLocality.placeholder": "Stad",
// "search.filters.filter.organizationAddressLocality.label": "Search city",
- // TODO New key - Add a translation
"search.filters.filter.organizationAddressLocality.label": "Sök stad",
// "search.filters.filter.organizationFoundingDate.head": "Date Founded",
- // TODO New key - Add a translation
"search.filters.filter.organizationFoundingDate.head": "Grundad",
// "search.filters.filter.organizationFoundingDate.placeholder": "Date Founded",
- // TODO New key - Add a translation
"search.filters.filter.organizationFoundingDate.placeholder": "Grundad",
// "search.filters.filter.organizationFoundingDate.label": "Search date founded",
- // TODO New key - Add a translation
"search.filters.filter.organizationFoundingDate.label": "Sök grundad (datum)",
// "search.filters.filter.scope.head": "Scope",
@@ -6476,82 +5041,63 @@
"search.filters.filter.scope.label": "Search scope filter",
// "search.filters.filter.show-less": "Collapse",
- // TODO New key - Add a translation
"search.filters.filter.show-less": "Visa färre",
// "search.filters.filter.show-more": "Show more",
- // TODO New key - Add a translation
"search.filters.filter.show-more": "Visa fler",
// "search.filters.filter.subject.head": "Subject",
- // TODO New key - Add a translation
"search.filters.filter.subject.head": "Ämne",
// "search.filters.filter.subject.placeholder": "Subject",
- // TODO New key - Add a translation
"search.filters.filter.subject.placeholder": "Ämne",
// "search.filters.filter.subject.label": "Search subject",
- // TODO New key - Add a translation
"search.filters.filter.subject.label": "Sök ämne",
// "search.filters.filter.submitter.head": "Submitter",
- // TODO New key - Add a translation
"search.filters.filter.submitter.head": "Skapad av",
// "search.filters.filter.submitter.placeholder": "Submitter",
- // TODO New key - Add a translation
"search.filters.filter.submitter.placeholder": "Skapad av",
// "search.filters.filter.submitter.label": "Search submitter",
- // TODO New key - Add a translation
"search.filters.filter.submitter.label": "Sök skapad av",
// "search.filters.entityType.JournalIssue": "Journal Issue",
- // TODO New key - Add a translation
"search.filters.entityType.JournalIssue": "Utgåva",
// "search.filters.entityType.JournalVolume": "Journal Volume",
- // TODO New key - Add a translation
"search.filters.entityType.JournalVolume": "Volym",
// "search.filters.entityType.OrgUnit": "Organizational Unit",
- // TODO New key - Add a translation
"search.filters.entityType.OrgUnit": "Organisatorisk enhet",
// "search.filters.has_content_in_original_bundle.true": "Yes",
- // TODO New key - Add a translation
"search.filters.has_content_in_original_bundle.true": "Ja",
// "search.filters.has_content_in_original_bundle.false": "No",
- // TODO New key - Add a translation
"search.filters.has_content_in_original_bundle.false": "Nej",
// "search.filters.discoverable.true": "No",
- // TODO New key - Add a translation
"search.filters.discoverable.true": "Nej",
// "search.filters.discoverable.false": "Yes",
- // TODO New key - Add a translation
"search.filters.discoverable.false": "Ja",
// "search.filters.withdrawn.true": "Yes",
- // TODO New key - Add a translation
"search.filters.withdrawn.true": "Ja",
// "search.filters.withdrawn.false": "No",
- // TODO New key - Add a translation
"search.filters.withdrawn.false": "Nej",
// "search.filters.head": "Filters",
- // TODO New key - Add a translation
- "search.filters.head": "Filtrera",
+ "search.filters.head": "Filter",
// "search.filters.reset": "Reset filters",
- // TODO New key - Add a translation
"search.filters.reset": "Rensa filter",
// "search.filters.search.submit": "Submit",
@@ -6561,117 +5107,90 @@
// "search.form.search": "Search",
- // TODO New key - Add a translation
"search.form.search": "Sök",
// "search.form.search_dspace": "All repository",
- // TODO New key - Add a translation
"search.form.search_dspace": "Hela arkivet",
// "search.form.scope.all": "All of DSpace",
- // TODO New key - Add a translation
"search.form.scope.all": "Hela arkivet",
// "search.results.head": "Search Results",
- // TODO New key - Add a translation
"search.results.head": "Sökresultat",
// "search.results.no-results": "Your search returned no results. Having trouble finding what you're looking for? Try putting",
- // TODO New key - Add a translation
"search.results.no-results": "Sökningen resulterade inte i några träffar. Du kan testa att använda",
// "search.results.no-results-link": "quotes around it",
- // TODO New key - Add a translation
"search.results.no-results-link": "citationstecken före och efter sökfrågan",
// "search.results.empty": "Your search returned no results.",
- // TODO New key - Add a translation
"search.results.empty": "Sökningen resulterade inte i några träffar.",
// "search.results.view-result": "View",
- // TODO New key - Add a translation
"search.results.view-result": "Visa",
// "default.search.results.head": "Search Results",
- // TODO New key - Add a translation
"default.search.results.head": "Sökresultat",
// "search.sidebar.close": "Back to results",
- // TODO New key - Add a translation
"search.sidebar.close": "Tillbaka till sökresultaten",
// "search.sidebar.filters.title": "Filters",
- // TODO New key - Add a translation
- "search.sidebar.filters.title": "Filtrera",
+ "search.sidebar.filters.title": "Filter",
// "search.sidebar.open": "Search Tools",
- // TODO New key - Add a translation
"search.sidebar.open": "Sökverktyg",
// "search.sidebar.results": "results",
- // TODO New key - Add a translation
"search.sidebar.results": "resultat",
// "search.sidebar.settings.rpp": "Results per page",
- // TODO New key - Add a translation
"search.sidebar.settings.rpp": "Träffar per sida",
// "search.sidebar.settings.sort-by": "Sort By",
- // TODO New key - Add a translation
"search.sidebar.settings.sort-by": "Sortera efter",
// "search.sidebar.settings.title": "Settings",
- // TODO New key - Add a translation
"search.sidebar.settings.title": "Inställningar",
// "search.view-switch.show-detail": "Show detail",
- // TODO New key - Add a translation
"search.view-switch.show-detail": "Visa detaljer",
// "search.view-switch.show-grid": "Show as grid",
- // TODO New key - Add a translation
"search.view-switch.show-grid": "Visa som rutmönster",
// "search.view-switch.show-list": "Show as list",
- // TODO New key - Add a translation
"search.view-switch.show-list": "Visa som lista",
// "sorting.ASC": "Ascending",
- // TODO New key - Add a translation
"sorting.ASC": "Stigande",
// "sorting.DESC": "Descending",
- // TODO New key - Add a translation
"sorting.DESC": "Fallande",
// "sorting.dc.title.ASC": "Title Ascending",
- // TODO New key - Add a translation
"sorting.dc.title.ASC": "Titel",
// "sorting.dc.title.DESC": "Title Descending",
- // TODO New key - Add a translation
"sorting.dc.title.DESC": "Titel",
// "sorting.score.ASC": "Least Relevant",
- // TODO New key - Add a translation
"sorting.score.ASC": "Minst relevant",
// "sorting.score.DESC": "Most Relevant",
- // TODO New key - Add a translation
"sorting.score.DESC": "Mest relevant",
// "sorting.dc.date.issued.ASC": "Date Issued Ascending",
- // TODO New key - Add a translation
"sorting.dc.date.issued.ASC": "Datum (stigande)",
// "sorting.dc.date.issued.DESC": "Date Issued Descending",
- // TODO New key - Add a translation
"sorting.dc.date.issued.DESC": "Datum (fallande)",
// "sorting.dc.date.accessioned.ASC": "Accessioned Date Ascending",
@@ -6683,187 +5202,142 @@
"sorting.dc.date.accessioned.DESC": "Accessioned Date Descending",
// "sorting.lastModified.ASC": "Last modified Ascending",
- // TODO New key - Add a translation
"sorting.lastModified.ASC": "Senast ändrad (stigande)",
// "sorting.lastModified.DESC": "Last modified Descending",
- // TODO New key - Add a translation
"sorting.lastModified.DESC": "Senast ändrad (fallande)",
// "statistics.title": "Statistics",
- // TODO New key - Add a translation
"statistics.title": "Statistik",
// "statistics.header": "Statistics for {{ scope }}",
- // TODO New key - Add a translation
"statistics.header": "Statistik för {{ scope }}",
// "statistics.breadcrumbs": "Statistics",
- // TODO New key - Add a translation
"statistics.breadcrumbs": "Statistik",
// "statistics.page.no-data": "No data available",
- // TODO New key - Add a translation
"statistics.page.no-data": "Data saknas",
// "statistics.table.no-data": "No data available",
- // TODO New key - Add a translation
"statistics.table.no-data": "Data saknas",
// "statistics.table.title.TotalVisits": "Totalt antal besök",
- // TODO New key - Add a translation
"statistics.table.title.TotalVisits": "Totalt antal besök",
// "statistics.table.title.TotalVisitsPerMonth": "Totalt antal besök per month",
- // TODO New key - Add a translation
"statistics.table.title.TotalVisitsPerMonth": "Totalt antal besök per månad",
// "statistics.table.title.TotalDownloads": "File Visits",
- // TODO New key - Add a translation
"statistics.table.title.TotalDownloads": "Nedladdningar",
// "statistics.table.title.TopCountries": "Top country views",
- // TODO New key - Add a translation
"statistics.table.title.TopCountries": "Visningar per land (topp)",
// "statistics.table.title.TopCities": "Top city views",
- // TODO New key - Add a translation
"statistics.table.title.TopCities": "Visningar per stad (topp)",
// "statistics.table.header.views": "Views",
- // TODO New key - Add a translation
"statistics.table.header.views": "Visningar",
// "submission.edit.breadcrumbs": "Edit Submission",
- // TODO New key - Add a translation
"submission.edit.breadcrumbs": "Redigera bidrag",
// "submission.edit.title": "Edit Submission",
- // TODO New key - Add a translation
"submission.edit.title": "Redigera bidrag",
// "submission.general.cancel": "Cancel",
- // TODO New key - Add a translation
"submission.general.cancel": "Avbryt",
// "submission.general.cannot_submit": "You have not the privilege to make a new submission.",
- // TODO New key - Add a translation
"submission.general.cannot_submit": "Du har inte behörighet att ladda upp nya bidrag.",
// "submission.general.deposit": "Deposit",
- // TODO New key - Add a translation
"submission.general.deposit": "Spara och publicera",
// "submission.general.discard.confirm.cancel": "Cancel",
- // TODO New key - Add a translation
"submission.general.discard.confirm.cancel": "Avbryt",
// "submission.general.discard.confirm.info": "This operation can't be undone. Are you sure?",
- // TODO New key - Add a translation
"submission.general.discard.confirm.info": "Är du säker? Denna åtgärd kan inte ångras.",
// "submission.general.discard.confirm.submit": "Yes, I'm sure",
- // TODO New key - Add a translation
"submission.general.discard.confirm.submit": "Ja",
// "submission.general.discard.confirm.title": "Discard submission",
- // TODO New key - Add a translation
"submission.general.discard.confirm.title": "Återkalla bidrag",
// "submission.general.discard.submit": "Discard",
- // TODO New key - Add a translation
"submission.general.discard.submit": "Återkalla",
// "submission.general.info.saved": "Saved",
- // TODO New key - Add a translation
"submission.general.info.saved": "Sparat",
// "submission.general.info.pending-changes": "Unsaved changes",
- // TODO New key - Add a translation
"submission.general.info.pending-changes": "Ändringar som inte har sparats",
// "submission.general.save": "Save",
- // TODO New key - Add a translation
"submission.general.save": "Spara",
// "submission.general.save-later": "Save for later",
- // TODO New key - Add a translation
"submission.general.save-later": "Spara till senare",
// "submission.import-external.page.title": "Import metadata from an external source",
- // TODO New key - Add a translation
"submission.import-external.page.title": "Importera metadata från extern källa",
// "submission.import-external.title": "Import metadata from an external source",
- // TODO New key - Add a translation
"submission.import-external.title": "Importera metadata från extern källa",
// "submission.import-external.title.Journal": "Import a journal from an external source",
- // TODO New key - Add a translation
"submission.import-external.title.Journal": "Importera tidskrift från extern källa",
// "submission.import-external.title.JournalIssue": "Import a journal issue from an external source",
- // TODO New key - Add a translation
"submission.import-external.title.JournalIssue": "Importera tidskrift från extern källa",
// "submission.import-external.title.JournalVolume": "Import a journal volume from an external source",
- // TODO New key - Add a translation
"submission.import-external.title.JournalVolume": "Importera tidskriftsvolym från extern källa",
// "submission.import-external.title.OrgUnit": "Import a publisher from an external source",
- // TODO New key - Add a translation
"submission.import-external.title.OrgUnit": "Importera förlag från extern källa",
// "submission.import-external.title.Person": "Import a person from an external source",
- // TODO New key - Add a translation
"submission.import-external.title.Person": "Importera person från extern källa",
// "submission.import-external.title.Project": "Import a project from an external source",
- // TODO New key - Add a translation
"submission.import-external.title.Project": "Importera projekt från extern källa",
// "submission.import-external.title.Publication": "Import a publication from an external source",
- // TODO New key - Add a translation
"submission.import-external.title.Publication": "Importera publikation från extern källa",
// "submission.import-external.title.none": "Import metadata from an external source",
- // TODO New key - Add a translation
"submission.import-external.title.none": "Importera metadata från extern källa",
// "submission.import-external.page.hint": "Enter a query above to find items from the web to import in to DSpace.",
- // TODO New key - Add a translation
"submission.import-external.page.hint": "Ange en sökfråga för att hitta information på webben att importera.",
// "submission.import-external.back-to-my-dspace": "Back to MyDSpace",
- // TODO New key - Add a translation
- "submission.import-external.back-to-my-dspace": "Tillbaka till MyDSpace",
+ "submission.import-external.back-to-my-dspace": "Tillbaka till Mitt DSpace",
// "submission.import-external.search.placeholder": "Search the external source",
- // TODO New key - Add a translation
"submission.import-external.search.placeholder": "Sök i extern källa",
// "submission.import-external.search.button": "Search",
- // TODO New key - Add a translation
"submission.import-external.search.button": "Sök",
// "submission.import-external.search.button.hint": "Write some words to search",
- // TODO New key - Add a translation
"submission.import-external.search.button.hint": "Ange sökord",
// "submission.import-external.search.source.hint": "Pick an external source",
- // TODO New key - Add a translation
"submission.import-external.search.source.hint": "Välj extern källa",
// "submission.import-external.source.arxiv": "arXiv",
- // TODO New key - Add a translation
"submission.import-external.source.arxiv": "arXiv",
// "submission.import-external.source.loading": "Loading ...",
- // TODO New key - Add a translation
"submission.import-external.source.loading": "Laddar ...",
// "submission.import-external.source.sherpaJournal": "SHERPA Journals",
@@ -6883,11 +5357,9 @@
"submission.import-external.source.openAIREFunding": "Funding OpenAIRE API",
// "submission.import-external.source.orcid": "ORCID",
- // TODO New key - Add a translation
"submission.import-external.source.orcid": "ORCID",
// "submission.import-external.source.pubmed": "Pubmed",
- // TODO New key - Add a translation
"submission.import-external.source.pubmed": "Pubmed",
// "submission.import-external.source.lcname": "Library of Congress Names",
@@ -6895,27 +5367,21 @@
"submission.import-external.source.lcname": "Library of Congress Names",
// "submission.import-external.preview.title": "Item Preview",
- // TODO New key - Add a translation
"submission.import-external.preview.title": "Förandsgranska post",
// "submission.import-external.preview.subtitle": "The metadata below was imported from an external source. It will be pre-filled when you start the submission.",
- // TODO New key - Add a translation
"submission.import-external.preview.subtitle": "Informationen nedan har importats från en extern källa. Den kommer att vara ifylld när du påbörjar ett nytt bidrag.",
// "submission.import-external.preview.button.import": "Start submission",
- // TODO New key - Add a translation
"submission.import-external.preview.button.import": "Påbörja bidrag",
// "submission.import-external.preview.error.import.title": "Submission error",
- // TODO New key - Add a translation
"submission.import-external.preview.error.import.title": "Fel",
// "submission.import-external.preview.error.import.body": "An error occurs during the external source entry import process.",
- // TODO New key - Add a translation
"submission.import-external.preview.error.import.body": "Ett fel uppstod när externa data skulle importeras.",
// "submission.sections.describe.relationship-lookup.close": "Close",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.close": "Stäng",
// "submission.sections.describe.relationship-lookup.external-source.added": "Successfully added local entry to the selection",
@@ -6923,31 +5389,24 @@
"submission.sections.describe.relationship-lookup.external-source.added": "Successfully added local entry to the selection",
// "submission.sections.describe.relationship-lookup.external-source.import-button-title.isAuthorOfPublication": "Import remote author",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.external-source.import-button-title.isAuthorOfPublication": "Importera författare",
// "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal": "Import remote journal",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal": "Importera tidskrift",
// "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Issue": "Import remote journal issue",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Issue": "Importera tidskriftsexemplar",
// "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Volume": "Import remote journal volume",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Volume": "Importera tidskriftsvolym",
// "submission.sections.describe.relationship-lookup.external-source.import-button-title.isProjectOfPublication": "Project",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.external-source.import-button-title.isProjectOfPublication": "Projekt",
// "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.added.new-entity": "New Entity Added!",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.added.new-entity": "Ny information har lagts till!",
// "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.title": "Project",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.title": "Projekt",
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openAIREFunding": "Funding OpenAIRE API",
@@ -6955,192 +5414,149 @@
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.openAIREFunding": "Funding OpenAIRE API",
// "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.title": "Import Remote Author",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.title": "Importera författare",
// "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.local-entity": "Successfully added local author to the selection",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.local-entity": "Lokal författare har lagts till",
// "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.new-entity": "Successfully imported and added external author to the selection",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.new-entity": "Extern författare har lagts till",
// "submission.sections.describe.relationship-lookup.external-source.import-modal.authority": "Authority",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.external-source.import-modal.authority": "Auktoritet",
// "submission.sections.describe.relationship-lookup.external-source.import-modal.authority.new": "Import as a new local authority entry",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.external-source.import-modal.authority.new": "Importera som ny lokal auktoritet",
// "submission.sections.describe.relationship-lookup.external-source.import-modal.cancel": "Cancel",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.external-source.import-modal.cancel": "Avbryt",
// "submission.sections.describe.relationship-lookup.external-source.import-modal.collection": "Select a collection to import new entries to",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.external-source.import-modal.collection": "Välj samling att importera till",
// "submission.sections.describe.relationship-lookup.external-source.import-modal.entities": "Entities",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.external-source.import-modal.entities": "Beståndsdelar",
// "submission.sections.describe.relationship-lookup.external-source.import-modal.entities.new": "Import as a new local entity",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.external-source.import-modal.entities.new": "Importera som ny lokal beståndsdel",
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.lcname": "Importing from LC Name",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.lcname": "Importera från LC Name",
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "Importing from ORCID",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "Importera från ORCID",
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaJournal": "Importing from Sherpa Journal",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaJournal": "Importera från Sherpa Journal",
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaPublisher": "Importing from Sherpa Publisher",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaPublisher": "Importera från Sherpa Publisher",
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.pubmed": "Importing from PubMed",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.pubmed": "Importera från PubMed",
// "submission.sections.describe.relationship-lookup.external-source.import-modal.head.arxiv": "Importing from arXiv",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.arxiv": "Importera från arXiv",
// "submission.sections.describe.relationship-lookup.external-source.import-modal.import": "Import",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.external-source.import-modal.import": "Importera",
// "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.title": "Import Remote Journal",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.title": "Importera tidskrift",
// "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.local-entity": "Successfully added local journal to the selection",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.local-entity": "Lokal tidskrift har lagts till",
// "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.new-entity": "Successfully imported and added external journal to the selection",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.new-entity": "Extern tidskrift har importerats och lagts till",
+ "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.new-entity": "Extern tidskrift har importerats och lagts till",
// "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.title": "Import Remote Journal Issue",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.title": "Importera externt tidskriftsexemplar",
// "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.local-entity": "Successfully added local journal issue to the selection",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.local-entity": "Lokal tidskrift har lagts till",
// "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.new-entity": "Successfully imported and added external journal issue to the selection",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.new-entity": "Externt tidskriftsexemplar har importerats och lagts till",
// "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.title": "Import Remote Journal Volume",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.title": "Importera tidskriftsvolym",
// "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.local-entity": "Successfully added local journal volume to the selection",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.local-entity": "Lokal tidskriftsvolym har lagts till",
// "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.new-entity": "Successfully imported and added external journal volume to the selection",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.new-entity": "Extern tidskriftsvolym har importerats och lagts till",
// "submission.sections.describe.relationship-lookup.external-source.import-modal.select": "Select a local match:",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.external-source.import-modal.select": "Välj lokal träff:",
// "submission.sections.describe.relationship-lookup.search-tab.deselect-all": "Deselect all",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.search-tab.deselect-all": "Avmarkera alla",
// "submission.sections.describe.relationship-lookup.search-tab.deselect-page": "Deselect page",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.search-tab.deselect-page": "Avmarkera sida",
// "submission.sections.describe.relationship-lookup.search-tab.loading": "Loading...",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.search-tab.loading": "Laddar...",
// "submission.sections.describe.relationship-lookup.search-tab.placeholder": "Search query",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.search-tab.placeholder": "Sökfråga",
// "submission.sections.describe.relationship-lookup.search-tab.search": "Go",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.search-tab.search": "Kör",
// "submission.sections.describe.relationship-lookup.search-tab.search-form.placeholder": "Search...",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.search-tab.search-form.placeholder": "Sök...",
// "submission.sections.describe.relationship-lookup.search-tab.select-all": "Select all",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.search-tab.select-all": "Välj alla",
// "submission.sections.describe.relationship-lookup.search-tab.select-page": "Select page",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.search-tab.select-page": "Välj sida",
// "submission.sections.describe.relationship-lookup.selected": "Selected {{ size }} items",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.selected": "Har markerat {{ size }} poster",
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.isAuthorOfPublication": "Local Författare ({{ count }})",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.search-tab.tab-title.isAuthorOfPublication": "Lokal författare ({{ count }})",
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalOfPublication": "Local Journals ({{ count }})",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalOfPublication": "Lokala tidskrifter ({{ count }})",
+
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.Project": "Local Projects ({{ count }})",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.search-tab.tab-title.Project": "Lokala projekt ({{ count }})",
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.Publication": "Local Publications ({{ count }})",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.search-tab.tab-title.Publication": "Lokala publikationer ({{ count }})",
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.Person": "Local Författare ({{ count }})",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.search-tab.tab-title.Person": "Lokala författare ({{ count }})",
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.OrgUnit": "Local Organizational Units ({{ count }})",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.search-tab.tab-title.OrgUnit": "Locala organisatoriska enheter ({{ count }})",
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataPackage": "Local Data Packages ({{ count }})",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.search-tab.tab-title.DataPackage": "Lokala datapaket ({{ count }})",
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataFile": "Local Data Files ({{ count }})",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.search-tab.tab-title.DataFile": "Lokala filer ({{ count }})",
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.Journal": "Local Journals ({{ count }})",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.search-tab.tab-title.Journal": "Lokala tidskrifter ({{ count }})",
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalIssueOfPublication": "Local Journal Issues ({{ count }})",
// TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalIssueOfPublication": "Local Journal Issues ({{ count }})",
+
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalIssue": "Local Journal Issues ({{ count }})",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalIssue": "Lokala tidskriftsexemplar ({{ count }})",
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfPublication": "Local Journal Volumes ({{ count }})",
// TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfPublication": "Local Journal Volumes ({{ count }})",
+
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalVolume": "Local Journal Volumes ({{ count }})",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalVolume": "Lokala tidskriftsvolymer ({{ count }})",
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournal": "Sherpa Journals ({{ count }})",
@@ -7152,31 +5568,24 @@
"submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaPublisher": "Sherpa Publishers ({{ count }})",
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.search-tab.tab-title.orcid": "ORCID ({{ count }})",
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.lcname": "LC Names ({{ count }})",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.search-tab.tab-title.lcname": "LC Names ({{ count }})",
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.pubmed": "PubMed ({{ count }})",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.search-tab.tab-title.pubmed": "PubMed ({{ count }})",
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.arxiv": "arXiv ({{ count }})",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.search-tab.tab-title.arxiv": "arXiv ({{ count }})",
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfPublication": "Search for Funding Agencies",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfPublication": "Sök finansiärer",
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingOfPublication": "Search for Funding",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingOfPublication": "Sök finansiering",
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.isChildOrgUnitOf": "Search for Organizational Units",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.search-tab.tab-title.isChildOrgUnitOf": "Sök organisatoriska enheter",
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.openAIREFunding": "Funding OpenAIRE API",
@@ -7184,11 +5593,9 @@
"submission.sections.describe.relationship-lookup.search-tab.tab-title.openAIREFunding": "Funding OpenAIRE API",
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.isProjectOfPublication": "Projects",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.search-tab.tab-title.isProjectOfPublication": "Projekt",
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfProject": "Funder of the Project",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfProject": "Finansiär",
// "submission.sections.describe.relationship-lookup.selection-tab.title.openAIREFunding": "Funding OpenAIRE API",
@@ -7196,647 +5603,496 @@
"submission.sections.describe.relationship-lookup.selection-tab.title.openAIREFunding": "Funding OpenAIRE API",
// "submission.sections.describe.relationship-lookup.selection-tab.title.isProjectOfPublication": "Project",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.selection-tab.title.isProjectOfPublication": "Projekt",
// "submission.sections.describe.relationship-lookup.title.isProjectOfPublication": "Projects",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.title.isProjectOfPublication": "Projekt",
// "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfProject": "Funder of the Project",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.title.isFundingAgencyOfProject": "Projektets finansiär",
// "submission.sections.describe.relationship-lookup.selection-tab.search-form.placeholder": "Search...",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.selection-tab.search-form.placeholder": "Sök...",
// "submission.sections.describe.relationship-lookup.selection-tab.tab-title": "Current Selection ({{ count }})",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.selection-tab.tab-title": "Aktuellt urval ({{ count }})",
// "submission.sections.describe.relationship-lookup.title.isJournalIssueOfPublication": "Journal Issues",
// TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.title.isJournalIssueOfPublication": "Journal Issues",
+
// "submission.sections.describe.relationship-lookup.title.JournalIssue": "Journal Issues",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.title.JournalIssue": "Tidskriftsexemplar",
// "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfPublication": "Journal Volumes",
// TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.title.isJournalVolumeOfPublication": "Journal Volumes",
+
// "submission.sections.describe.relationship-lookup.title.JournalVolume": "Journal Volumes",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.title.JournalVolume": "Tidskriftsvolymer",
// "submission.sections.describe.relationship-lookup.title.isJournalOfPublication": "Journals",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.title.isJournalOfPublication": "Tidskrifter",
// "submission.sections.describe.relationship-lookup.title.isAuthorOfPublication": "Författare",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.title.isAuthorOfPublication": "Författare",
// "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfPublication": "Funding Agency",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.title.isFundingAgencyOfPublication": "Finansiär",
+
// "submission.sections.describe.relationship-lookup.title.Project": "Projects",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.title.Project": "Projekt",
// "submission.sections.describe.relationship-lookup.title.Publication": "Publications",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.title.Publication": "Publikationer",
// "submission.sections.describe.relationship-lookup.title.Person": "Författare",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.title.Person": "Författare",
// "submission.sections.describe.relationship-lookup.title.OrgUnit": "Organizational Units",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.title.OrgUnit": "Organisatoriska enheter",
// "submission.sections.describe.relationship-lookup.title.DataPackage": "Data Packages",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.title.DataPackage": "Datapaket",
// "submission.sections.describe.relationship-lookup.title.DataFile": "Data Files",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.title.DataFile": "Filer",
// "submission.sections.describe.relationship-lookup.title.Funding Agency": "Funding Agency",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.title.Funding Agency": "Finansiär",
// "submission.sections.describe.relationship-lookup.title.isFundingOfPublication": "Funding",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.title.isFundingOfPublication": "Finansiering",
// "submission.sections.describe.relationship-lookup.title.isChildOrgUnitOf": "Parent Organizational Unit",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.title.isChildOrgUnitOf": "Organisatorisk förälder",
// "submission.sections.describe.relationship-lookup.search-tab.toggle-dropdown": "Toggle dropdown",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.search-tab.toggle-dropdown": "Växla dropdown",
// "submission.sections.describe.relationship-lookup.selection-tab.settings": "Settings",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.selection-tab.settings": "Inställningar",
// "submission.sections.describe.relationship-lookup.selection-tab.no-selection": "Your selection is currently empty.",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.selection-tab.no-selection": "Inget har valts.",
// "submission.sections.describe.relationship-lookup.selection-tab.title.isAuthorOfPublication": "Selected Författare",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.selection-tab.title.isAuthorOfPublication": "Valdra författare",
// "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalOfPublication": "Selected Journals",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.selection-tab.title.isJournalOfPublication": "Valda tidskrifter",
// "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfPublication": "Selected Journal Volume",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfPublication": "Valda tidskriftsvolymer",
+
// "submission.sections.describe.relationship-lookup.selection-tab.title.Project": "Selected Projects",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.selection-tab.title.Project": "Valda projekt",
// "submission.sections.describe.relationship-lookup.selection-tab.title.Publication": "Selected Publications",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.selection-tab.title.Publication": "Valda publikationer",
// "submission.sections.describe.relationship-lookup.selection-tab.title.Person": "Selected Författare",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.selection-tab.title.Person": "Valda författare",
// "submission.sections.describe.relationship-lookup.selection-tab.title.OrgUnit": "Selected Organizational Units",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.selection-tab.title.OrgUnit": "Valda organisatoriska enheter",
// "submission.sections.describe.relationship-lookup.selection-tab.title.DataPackage": "Selected Data Packages",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.selection-tab.title.DataPackage": "Valda datapaket",
// "submission.sections.describe.relationship-lookup.selection-tab.title.DataFile": "Selected Data Files",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.selection-tab.title.DataFile": "Valda filer",
// "submission.sections.describe.relationship-lookup.selection-tab.title.Journal": "Selected Journals",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.selection-tab.title.Journal": "Valda tidskrifter",
// "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalIssueOfPublication": "Selected Issue",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalIssueOfPublication": "Valt exemnplar",
+ "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalIssueOfPublication": "Valt exemplar",
+
// "submission.sections.describe.relationship-lookup.selection-tab.title.JournalVolume": "Selected Journal Volume",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.selection-tab.title.JournalVolume": "Vald volym",
// "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingAgencyOfPublication": "Selected Funding Agency",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.selection-tab.title.isFundingAgencyOfPublication": "Vald finansiär",
// "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingOfPublication": "Selected Funding",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.selection-tab.title.isFundingOfPublication": "Vald finansiering",
+
// "submission.sections.describe.relationship-lookup.selection-tab.title.JournalIssue": "Selected Issue",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.selection-tab.title.JournalIssue": "Valt exemplar ",
// "submission.sections.describe.relationship-lookup.selection-tab.title.isChildOrgUnitOf": "Selected Organizational Unit",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.selection-tab.title.isChildOrgUnitOf": "Vald organisatorisk enet",
// "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaJournal": "Search Results",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.selection-tab.title.sherpaJournal": "Sökresultat",
// "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaPublisher": "Search Results",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.selection-tab.title.sherpaPublisher": "Sökresultat",
// "submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "Search Results",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "Sökresultat",
// "submission.sections.describe.relationship-lookup.selection-tab.title.orcidv2": "Search Results",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.selection-tab.title.orcidv2": "Sökresultat",
// "submission.sections.describe.relationship-lookup.selection-tab.title.lcname": "Search Results",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.selection-tab.title.lcname": "Sökresultat",
// "submission.sections.describe.relationship-lookup.selection-tab.title.pubmed": "Search Results",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.selection-tab.title.pubmed": "Sökresultat",
// "submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Search Results",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Sökresultat",
// "submission.sections.describe.relationship-lookup.name-variant.notification.content": "Would you like to save \"{{ value }}\" as a name variant for this person so you and others can reuse it for future submissions? If you don\'t you can still use it for this submission.",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.name-variant.notification.content": "Vill du spara \"{{ value }}\" som en namnvariation för denna person? Om inte så kan du fortfarande använda det i detta bidrag.",
// "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Save a new name variant",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Spara en ny namnvariation",
// "submission.sections.describe.relationship-lookup.name-variant.notification.decline": "Use only for this submission",
- // TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.name-variant.notification.decline": "Använd bara i detta bidrag",
// "submission.sections.ccLicense.type": "License Type",
- // TODO New key - Add a translation
"submission.sections.ccLicense.type": "Typ av license",
// "submission.sections.ccLicense.select": "Select a license type…",
- // TODO New key - Add a translation
"submission.sections.ccLicense.select": "Välj licenstyp…",
// "submission.sections.ccLicense.change": "Change your license type…",
- // TODO New key - Add a translation
"submission.sections.ccLicense.change": "Ändra licenstyp…",
// "submission.sections.ccLicense.none": "No licenses available",
- // TODO New key - Add a translation
"submission.sections.ccLicense.none": "Det finns inga licenser",
// "submission.sections.ccLicense.option.select": "Select an option…",
- // TODO New key - Add a translation
"submission.sections.ccLicense.option.select": "Välj…",
// "submission.sections.ccLicense.link": "You’ve selected the following license:",
- // TODO New key - Add a translation
"submission.sections.ccLicense.link": "Du har valt följande licens:",
// "submission.sections.ccLicense.confirmation": "I grant the license above",
- // TODO New key - Add a translation
"submission.sections.ccLicense.confirmation": "Jag beviljar licensen ovan",
// "submission.sections.general.add-more": "Add more",
- // TODO New key - Add a translation
"submission.sections.general.add-more": "Lägg till fler",
// "submission.sections.general.collection": "Collection",
- // TODO New key - Add a translation
"submission.sections.general.collection": "Samling",
// "submission.sections.general.deposit_error_notice": "There was an issue when submitting the item, please try again later.",
- // TODO New key - Add a translation
"submission.sections.general.deposit_error_notice": "Ett fel uppstod, försök igen senare.",
// "submission.sections.general.deposit_success_notice": "Submission deposited successfully.",
- // TODO New key - Add a translation
"submission.sections.general.deposit_success_notice": "Bidraget har deponerats.",
// "submission.sections.general.discard_error_notice": "There was an issue when discarding the item, please try again later.",
- // TODO New key - Add a translation
"submission.sections.general.discard_error_notice": "Ett fel har uppstått. Försök igen senare.",
// "submission.sections.general.discard_success_notice": "Submission discarded successfully.",
- // TODO New key - Add a translation
"submission.sections.general.discard_success_notice": "Bidraget har dragits tillbaka.",
// "submission.sections.general.metadata-extracted": "New metadata have been extracted and added to the {{sectionId}} section.",
- // TODO New key - Add a translation
"submission.sections.general.metadata-extracted": "Nya metadata har extraherats och lagts till i {{sectionId}}.",
// "submission.sections.general.metadata-extracted-new-section": "New {{sectionId}} section has been added to submission.",
- // TODO New key - Add a translation
"submission.sections.general.metadata-extracted-new-section": "Ny sektion {{sectionId}} har lagts till i bidraget.",
// "submission.sections.general.no-collection": "No collection found",
- // TODO New key - Add a translation
"submission.sections.general.no-collection": "Ingen samling kunde hittas",
// "submission.sections.general.no-sections": "No options available",
- // TODO New key - Add a translation
"submission.sections.general.no-sections": "Det finns inga alternativ att välja",
// "submission.sections.general.save_error_notice": "There was an issue when saving the item, please try again later.",
- // TODO New key - Add a translation
"submission.sections.general.save_error_notice": "Ett fel uppstod när posten skulle sparas. Försök igen senare.",
// "submission.sections.general.save_success_notice": "Submission saved successfully.",
- // TODO New key - Add a translation
"submission.sections.general.save_success_notice": "Bidraget har sparats.",
// "submission.sections.general.search-collection": "Search for a collection",
- // TODO New key - Add a translation
"submission.sections.general.search-collection": "Sök efter samling",
// "submission.sections.general.sections_not_valid": "There are incomplete sections.",
- // TODO New key - Add a translation
"submission.sections.general.sections_not_valid": "Det saknas data i vissa delar.",
// "submission.sections.submit.progressbar.accessCondition": "Item access conditions",
- // TODO New key - Add a translation
"submission.sections.submit.progressbar.accessCondition": "Villkor för åtkomst till post",
// "submission.sections.submit.progressbar.CClicense": "Creative commons license",
- // TODO New key - Add a translation
"submission.sections.submit.progressbar.CClicense": "Creative commons licens",
// "submission.sections.submit.progressbar.describe.recycle": "Recycle",
- // TODO New key - Add a translation
"submission.sections.submit.progressbar.describe.recycle": "Återanvänd",
// "submission.sections.submit.progressbar.describe.stepcustom": "Describe",
- // TODO New key - Add a translation
"submission.sections.submit.progressbar.describe.stepcustom": "Beskriv",
// "submission.sections.submit.progressbar.describe.stepone": "Describe",
- // TODO New key - Add a translation
"submission.sections.submit.progressbar.describe.stepone": "Beskriv",
// "submission.sections.submit.progressbar.describe.steptwo": "Describe",
- // TODO New key - Add a translation
"submission.sections.submit.progressbar.describe.steptwo": "Beskriv",
// "submission.sections.submit.progressbar.detect-duplicate": "Potential duplicates",
- // TODO New key - Add a translation
"submission.sections.submit.progressbar.detect-duplicate": "Potentiell dubblett",
// "submission.sections.submit.progressbar.license": "Deposit license",
- // TODO New key - Add a translation
"submission.sections.submit.progressbar.license": "Licensvillkor",
// "submission.sections.submit.progressbar.upload": "Upload files",
- // TODO New key - Add a translation
"submission.sections.submit.progressbar.upload": "Ladda upp filer",
// "submission.sections.status.errors.title": "Errors",
- // TODO New key - Add a translation
"submission.sections.status.errors.title": "Fel",
// "submission.sections.status.valid.title": "Valid",
- // TODO New key - Add a translation
"submission.sections.status.valid.title": "Giltig",
// "submission.sections.status.warnings.title": "Warnings",
- // TODO New key - Add a translation
"submission.sections.status.warnings.title": "Varningar",
// "submission.sections.status.errors.aria": "has errors",
- // TODO New key - Add a translation
- "submission.sections.status.errors.aria": "inneåller fel",
+ "submission.sections.status.errors.aria": "innehåller fel",
// "submission.sections.status.valid.aria": "is valid",
- // TODO New key - Add a translation
"submission.sections.status.valid.aria": "är giltig",
// "submission.sections.status.warnings.aria": "has warnings",
- // TODO New key - Add a translation
"submission.sections.status.warnings.aria": "ger varningar",
// "submission.sections.toggle.open": "Open section",
- // TODO New key - Add a translation
"submission.sections.toggle.open": "Öppna sektion",
// "submission.sections.toggle.close": "Close section",
- // TODO New key - Add a translation
"submission.sections.toggle.close": "Stäng sektion",
// "submission.sections.toggle.aria.open": "Expand {{sectionHeader}} section",
- // TODO New key - Add a translation
"submission.sections.toggle.aria.open": "Expandera {{sectionHeader}} sektion",
// "submission.sections.toggle.aria.close": "Collapse {{sectionHeader}} section",
- // TODO New key - Add a translation
"submission.sections.toggle.aria.close": "Fäll ihop {{sectionHeader}} sektion",
// "submission.sections.upload.delete.confirm.cancel": "Cancel",
- // TODO New key - Add a translation
"submission.sections.upload.delete.confirm.cancel": "Avbryt",
// "submission.sections.upload.delete.confirm.info": "This operation can't be undone. Are you sure?",
- // TODO New key - Add a translation
"submission.sections.upload.delete.confirm.info": "Är du säker? Detta kan inte ångras.",
// "submission.sections.upload.delete.confirm.submit": "Yes, I'm sure",
- // TODO New key - Add a translation
"submission.sections.upload.delete.confirm.submit": "Ja",
// "submission.sections.upload.delete.confirm.title": "Delete bitstream",
- // TODO New key - Add a translation
"submission.sections.upload.delete.confirm.title": "Radera fil",
// "submission.sections.upload.delete.submit": "Delete",
- // TODO New key - Add a translation
"submission.sections.upload.delete.submit": "Radera",
// "submission.sections.upload.download.title": "Download bitstream",
- // TODO New key - Add a translation
"submission.sections.upload.download.title": "Ladda ner fil",
// "submission.sections.upload.drop-message": "Drop files to attach them to the item",
- // TODO New key - Add a translation
"submission.sections.upload.drop-message": "Släpp filer för att lägga till dem i posten",
// "submission.sections.upload.edit.title": "Edit bitstream",
- // TODO New key - Add a translation
"submission.sections.upload.edit.title": "Redigera fil",
// "submission.sections.upload.form.access-condition-label": "Access condition type",
- // TODO New key - Add a translation
"submission.sections.upload.form.access-condition-label": "Typ av villkor för åtkomst",
// "submission.sections.upload.form.access-condition-hint": "Select an access condition to apply on the bitstream once the item is deposited",
- // TODO New key - Add a translation
"submission.sections.upload.form.access-condition-hint": "Välj typ av villkor för åtkomst till filen när posten har sparats",
// "submission.sections.upload.form.date-required": "Date is required.",
- // TODO New key - Add a translation
"submission.sections.upload.form.date-required": "Datum krävs.",
// "submission.sections.upload.form.date-required-from": "Grant access from date is required.",
- // TODO New key - Add a translation
"submission.sections.upload.form.date-required-from": "Du måste ange från vilket datum den skall vara tillgänglig.",
// "submission.sections.upload.form.date-required-until": "Grant access until date is required.",
- // TODO New key - Add a translation
"submission.sections.upload.form.date-required-until": "Du måste ange till vilket datum den skall vara tillgänglig.",
// "submission.sections.upload.form.from-label": "Grant access from",
- // TODO New key - Add a translation
"submission.sections.upload.form.from-label": "Tillåt åtkomst från",
// "submission.sections.upload.form.from-hint": "Select the date from which the related access condition is applied",
- // TODO New key - Add a translation
"submission.sections.upload.form.from-hint": "Välj datum från när villkoren för åtkomst skall gälla",
// "submission.sections.upload.form.from-placeholder": "From",
- // TODO New key - Add a translation
"submission.sections.upload.form.from-placeholder": "Från",
// "submission.sections.upload.form.group-label": "Group",
- // TODO New key - Add a translation
"submission.sections.upload.form.group-label": "Grupp",
// "submission.sections.upload.form.group-required": "Group is required.",
- // TODO New key - Add a translation
"submission.sections.upload.form.group-required": "Du måste välja en grupp.",
// "submission.sections.upload.form.until-label": "Grant access until",
- // TODO New key - Add a translation
"submission.sections.upload.form.until-label": "Bevilja åtkomst till",
// "submission.sections.upload.form.until-hint": "Select the date until which the related access condition is applied",
- // TODO New key - Add a translation
"submission.sections.upload.form.until-hint": "Välj datum till när villkoren för åtkomst skall gälla",
// "submission.sections.upload.form.until-placeholder": "Until",
- // TODO New key - Add a translation
"submission.sections.upload.form.until-placeholder": "Till",
// "submission.sections.upload.header.policy.default.nolist": "Uploaded files in the {{collectionName}} collection will be accessible according to the following group(s):",
- // TODO New key - Add a translation
"submission.sections.upload.header.policy.default.nolist": "Uppladdade filer i samlingen {{collectionName}} kommer att vara åtkomliga för följande grupp(er):",
// "submission.sections.upload.header.policy.default.withlist": "Please note that uploaded files in the {{collectionName}} collection will be accessible, in addition to what is explicitly decided for the single file, with the following group(s):",
- // TODO New key - Add a translation
"submission.sections.upload.header.policy.default.withlist": "Notera att uppladdade filer i samlingen {{collectionName}} också kommer att vara åtkompliga för följande grupp(er):",
// "submission.sections.upload.info": "Here you will find all the files currently in the item. You can update the file metadata and access conditions or upload additional files just dragging & dropping them everywhere in the page",
- // TODO New key - Add a translation
"submission.sections.upload.info": "Här visas samtliga filer som ingår i posten. Du kan uppdatera filernas metadata och villkor för åtkomst, samt ladda upp nya filer genom att dra och släppa dem här",
// "submission.sections.upload.no-entry": "No",
- // TODO New key - Add a translation
"submission.sections.upload.no-entry": "Nej",
// "submission.sections.upload.no-file-uploaded": "No file uploaded yet.",
- // TODO New key - Add a translation
"submission.sections.upload.no-file-uploaded": "Inga filer har laddats upp.",
// "submission.sections.upload.save-metadata": "Save metadata",
- // TODO New key - Add a translation
"submission.sections.upload.save-metadata": "Spara metadata",
// "submission.sections.upload.undo": "Cancel",
- // TODO New key - Add a translation
"submission.sections.upload.undo": "Avbryt",
// "submission.sections.upload.upload-failed": "Upload failed",
- // TODO New key - Add a translation
"submission.sections.upload.upload-failed": "Uppladdningen misslyckades",
// "submission.sections.upload.upload-successful": "Upload successful",
- // TODO New key - Add a translation
"submission.sections.upload.upload-successful": "Uppladdningen lyckades",
// "submission.sections.accesses.form.discoverable-description": "When checked, this item will be discoverable in search/browse. When unchecked, the item will only be available via a direct link and will never appear in search/browse.",
- // TODO New key - Add a translation
"submission.sections.accesses.form.discoverable-description": "När denna är markerad kommer posten att vara sökbar och visas i listor. I annat fall så kommer den bara att kunna nås med en direktlänk.",
// "submission.sections.accesses.form.discoverable-label": "Discoverable",
- // TODO New key - Add a translation
"submission.sections.accesses.form.discoverable-label": "Synlig och sökbar",
// "submission.sections.accesses.form.access-condition-label": "Access condition type",
- // TODO New key - Add a translation
"submission.sections.accesses.form.access-condition-label": "Typ av villkor för åtkomst",
// "submission.sections.accesses.form.access-condition-hint": "Select an access condition to apply on the item once it is deposited",
- // TODO New key - Add a translation
"submission.sections.accesses.form.access-condition-hint": "Välj typ av åtkomst som skall gälla när posten har deponerats",
// "submission.sections.accesses.form.date-required": "Date is required.",
- // TODO New key - Add a translation
"submission.sections.accesses.form.date-required": "Du måste ange datum.",
// "submission.sections.accesses.form.date-required-from": "Grant access from date is required.",
- // TODO New key - Add a translation
"submission.sections.accesses.form.date-required-from": "Du måste ange datum från när villkoren skall gälla.",
// "submission.sections.accesses.form.date-required-until": "Grant access until date is required.",
- // TODO New key - Add a translation
"submission.sections.accesses.form.date-required-until": "Du måste ange datum till när villkoren skall gälla.",
// "submission.sections.accesses.form.from-label": "Grant access from",
- // TODO New key - Add a translation
"submission.sections.accesses.form.from-label": "Bevilja åtkomst från",
// "submission.sections.accesses.form.from-hint": "Select the date from which the related access condition is applied",
- // TODO New key - Add a translation
"submission.sections.accesses.form.from-hint": "Välj datum från när villkoren för åtkomst skall gälla",
// "submission.sections.accesses.form.from-placeholder": "From",
- // TODO New key - Add a translation
"submission.sections.accesses.form.from-placeholder": "Från",
// "submission.sections.accesses.form.group-label": "Group",
- // TODO New key - Add a translation
"submission.sections.accesses.form.group-label": "Grupp",
// "submission.sections.accesses.form.group-required": "Group is required.",
- // TODO New key - Add a translation
"submission.sections.accesses.form.group-required": "Du måste välja grupp.",
// "submission.sections.accesses.form.until-label": "Grant access until",
- // TODO New key - Add a translation
"submission.sections.accesses.form.until-label": "Bevilja åtkomst till",
// "submission.sections.accesses.form.until-hint": "Select the date until which the related access condition is applied",
- // TODO New key - Add a translation
"submission.sections.accesses.form.until-hint": "Välj datum till när villkoren för åtkomst skall gälla",
// "submission.sections.accesses.form.until-placeholder": "Until",
- // TODO New key - Add a translation
"submission.sections.accesses.form.until-placeholder": "Till",
// "submission.submit.breadcrumbs": "New submission",
- // TODO New key - Add a translation
"submission.submit.breadcrumbs": "Nytt bidrag",
// "submission.submit.title": "New submission",
- // TODO New key - Add a translation
"submission.submit.title": "Nytt bidrag",
// "submission.workflow.generic.delete": "Delete",
- // TODO New key - Add a translation
"submission.workflow.generic.delete": "Radera",
// "submission.workflow.generic.delete-help": "If you would to discard this item, select \"Delete\". You will then be asked to confirm it.",
- // TODO New key - Add a translation
"submission.workflow.generic.delete-help": "Välj \"Radera\" om du vill ta bort detta bidrag. Du kommer att få bekräfta detta.",
// "submission.workflow.generic.edit": "Edit",
- // TODO New key - Add a translation
"submission.workflow.generic.edit": "Redigera",
// "submission.workflow.generic.edit-help": "Select this option to change the item's metadata.",
- // TODO New key - Add a translation
"submission.workflow.generic.edit-help": "Redigera postens metadata.",
// "submission.workflow.generic.view": "View",
- // TODO New key - Add a translation
"submission.workflow.generic.view": "Visa",
// "submission.workflow.generic.view-help": "Select this option to view the item's metadata.",
- // TODO New key - Add a translation
"submission.workflow.generic.view-help": "Visa postens metadata.",
// "submission.workflow.tasks.claimed.approve": "Approve",
- // TODO New key - Add a translation
"submission.workflow.tasks.claimed.approve": "Godkänn",
// "submission.workflow.tasks.claimed.approve_help": "If you have reviewed the item and it is suitable for inclusion in the collection, select \"Approve\".",
- // TODO New key - Add a translation
"submission.workflow.tasks.claimed.approve_help": "Om du har granskat posten och funnit att den kan ingå i samlingen, välj \"Godkänn\".",
// "submission.workflow.tasks.claimed.edit": "Edit",
- // TODO New key - Add a translation
"submission.workflow.tasks.claimed.edit": "Redigera",
// "submission.workflow.tasks.claimed.edit_help": "Select this option to change the item's metadata.",
- // TODO New key - Add a translation
"submission.workflow.tasks.claimed.edit_help": "Redigera postens metadata.",
// "submission.workflow.tasks.claimed.reject.reason.info": "Please enter your reason for rejecting the submission into the box below, indicating whether the submitter may fix a problem and resubmit.",
- // TODO New key - Add a translation
"submission.workflow.tasks.claimed.reject.reason.info": "Ange orsaken till att du inte godkänner bidraget i rutan nedan, samt om uppladdaren skall ändra något och skicka in igen.",
// "submission.workflow.tasks.claimed.reject.reason.placeholder": "Describe the reason of reject",
- // TODO New key - Add a translation
"submission.workflow.tasks.claimed.reject.reason.placeholder": "Beskriv orsak",
// "submission.workflow.tasks.claimed.reject.reason.submit": "Reject item",
- // TODO New key - Add a translation
"submission.workflow.tasks.claimed.reject.reason.submit": "Godkänn inte bidrag",
// "submission.workflow.tasks.claimed.reject.reason.title": "Reason",
- // TODO New key - Add a translation
"submission.workflow.tasks.claimed.reject.reason.title": "Orsak",
// "submission.workflow.tasks.claimed.reject.submit": "Reject",
- // TODO New key - Add a translation
"submission.workflow.tasks.claimed.reject.submit": "Neka",
// "submission.workflow.tasks.claimed.reject_help": "If you have reviewed the item and found it is not suitable for inclusion in the collection, select \"Reject\". You will then be asked to enter a message indicating why the item is unsuitable, and whether the submitter should change something and resubmit.",
- // TODO New key - Add a translation
"submission.workflow.tasks.claimed.reject_help": "Om du har granskat posten och funnit att den inte uppfyller villkoren för att ingå i samlingen, välj \"Neka\". Du kommer du att få ange orsaken till detta, samt om uppladdaren skall ändra något och försöka igen.",
// "submission.workflow.tasks.claimed.return": "Return to pool",
- // TODO New key - Add a translation
"submission.workflow.tasks.claimed.return": "Returnera till uppladdningspoolen",
// "submission.workflow.tasks.claimed.return_help": "Return the task to the pool so that another user may perform the task.",
- // TODO New key - Add a translation
"submission.workflow.tasks.claimed.return_help": "Returnera till uppladdningspoolen så att den blir tillgänglig för andra användare.",
// "submission.workflow.tasks.generic.error": "Error occurred during operation...",
- // TODO New key - Add a translation
"submission.workflow.tasks.generic.error": "Ett fel har uppstått...",
// "submission.workflow.tasks.generic.processing": "Processing...",
- // TODO New key - Add a translation
"submission.workflow.tasks.generic.processing": "Bearbetar...",
// "submission.workflow.tasks.generic.submitter": "Submitter",
- // TODO New key - Add a translation
"submission.workflow.tasks.generic.submitter": "Uppladdare",
// "submission.workflow.tasks.generic.success": "Operation successful",
- // TODO New key - Add a translation
"submission.workflow.tasks.generic.success": "Operationen lyckades",
@@ -7846,81 +6102,63 @@
"submission.workflow.tasks.pool.claim": "Claim",
// "submission.workflow.tasks.pool.claim_help": "Assign this task to yourself.",
- // TODO New key - Add a translation
"submission.workflow.tasks.pool.claim_help": "Ta denna uppgift själv.",
// "submission.workflow.tasks.pool.hide-detail": "Hide detail",
- // TODO New key - Add a translation
"submission.workflow.tasks.pool.hide-detail": "Göm detaljvy",
// "submission.workflow.tasks.pool.show-detail": "Show detail",
- // TODO New key - Add a translation
"submission.workflow.tasks.pool.show-detail": "Visa detaljvy",
// "thumbnail.default.alt": "Thumbnail Image",
- // TODO New key - Add a translation
"thumbnail.default.alt": "Bild (thumbnail)",
// "thumbnail.default.placeholder": "No Thumbnail Available",
- // TODO New key - Add a translation
"thumbnail.default.placeholder": "Bild saknas",
// "thumbnail.project.alt": "Project Logo",
- // TODO New key - Add a translation
"thumbnail.project.alt": "Projekt logotyp",
// "thumbnail.project.placeholder": "Project Placeholder Image",
- // TODO New key - Add a translation
"thumbnail.project.placeholder": "Projekt bild (platshållare)",
// "thumbnail.orgunit.alt": "OrgUnit Logo",
- // TODO New key - Add a translation
"thumbnail.orgunit.alt": "Organisationens logotyp",
// "thumbnail.orgunit.placeholder": "OrgUnit Placeholder Image",
- // TODO New key - Add a translation
"thumbnail.orgunit.placeholder": "Organisationens bild (platshållare)",
// "thumbnail.person.alt": "Profile Picture",
- // TODO New key - Add a translation
"thumbnail.person.alt": "Profilbild",
// "thumbnail.person.placeholder": "No Profile Picture Available",
- // TODO New key - Add a translation
"thumbnail.person.placeholder": "Profilbild saknas",
// "title": "DSpace",
- // TODO New key - Add a translation
"title": "DSpace",
// "vocabulary-treeview.header": "Hierarchical tree view",
- // TODO New key - Add a translation
"vocabulary-treeview.header": "Hierarkisk trädvy",
// "vocabulary-treeview.load-more": "Load more",
- // TODO New key - Add a translation
"vocabulary-treeview.load-more": "Ladda fler",
// "vocabulary-treeview.search.form.reset": "Reset",
- // TODO New key - Add a translation
"vocabulary-treeview.search.form.reset": "Återställ",
// "vocabulary-treeview.search.form.search": "Search",
- // TODO New key - Add a translation
"vocabulary-treeview.search.form.search": "Sök",
// "vocabulary-treeview.search.no-result": "There were no items to show",
- // TODO New key - Add a translation
"vocabulary-treeview.search.no-result": "Det finns inga poster att visa",
// "vocabulary-treeview.tree.description.nsi": "The Norwegian Science Index",
- // TODO New key - Add a translation
"vocabulary-treeview.tree.description.nsi": "The Norwegian Science Index",
// "vocabulary-treeview.tree.description.srsc": "Research Subject Categories",
@@ -7930,149 +6168,114 @@
// "uploader.browse": "browse",
- // TODO New key - Add a translation
"uploader.browse": "sök efter filen på din dator",
// "uploader.drag-message": "Drag & Drop your files here",
- // TODO New key - Add a translation
"uploader.drag-message": "Dra och släpp filerna här",
// "uploader.delete.btn-title": "Delete",
- // TODO New key - Add a translation
"uploader.delete.btn-title": "Radera",
// "uploader.or": ", or ",
- // TODO New key - Add a translation
"uploader.or": ", eller ",
// "uploader.processing": "Processing",
- // TODO New key - Add a translation
"uploader.processing": "Bearbetar",
// "uploader.queue-length": "Queue length",
- // TODO New key - Add a translation
"uploader.queue-length": "Kölängd",
// "virtual-metadata.delete-item.info": "Select the types for which you want to save the virtual metadata as real metadata",
- // TODO New key - Add a translation
"virtual-metadata.delete-item.info": "Välj vilka typer ",
// "virtual-metadata.delete-item.modal-head": "The virtual metadata of this relation",
- // TODO New key - Add a translation
"virtual-metadata.delete-item.modal-head": "Denna relations virtuella metadata",
// "virtual-metadata.delete-relationship.modal-head": "Select the items for which you want to save the virtual metadata as real metadata",
- // TODO New key - Add a translation
"virtual-metadata.delete-relationship.modal-head": "Välj poster som dessa metadata skall sparas för",
// "workspace.search.results.head": "Your submissions",
- // TODO New key - Add a translation
"workspace.search.results.head": "Dina registreringar",
// "workflowAdmin.search.results.head": "Administer Workflow",
- // TODO New key - Add a translation
"workflowAdmin.search.results.head": "Administrera arbetsflöde",
// "workflow.search.results.head": "Workflow tasks",
- // TODO New key - Add a translation
"workflow.search.results.head": "Uppgifter",
// "workflow-item.edit.breadcrumbs": "Edit workflowitem",
- // TODO New key - Add a translation
"workflow-item.edit.breadcrumbs": "Redigera post i arbetsflöde",
// "workflow-item.edit.title": "Edit workflowitem",
- // TODO New key - Add a translation
"workflow-item.edit.title": "Redigera post i arbetsflöde",
// "workflow-item.delete.notification.success.title": "Deleted",
- // TODO New key - Add a translation
"workflow-item.delete.notification.success.title": "Raderad",
// "workflow-item.delete.notification.success.content": "This workflow item was successfully deleted",
- // TODO New key - Add a translation
"workflow-item.delete.notification.success.content": "Posten har raderats",
// "workflow-item.delete.notification.error.title": "Something went wrong",
- // TODO New key - Add a translation
"workflow-item.delete.notification.error.title": "Något gick fel",
// "workflow-item.delete.notification.error.content": "The workflow item could not be deleted",
- // TODO New key - Add a translation
"workflow-item.delete.notification.error.content": "Posten kunde inte raderas",
// "workflow-item.delete.title": "Delete workflow item",
- // TODO New key - Add a translation
"workflow-item.delete.title": "Radera post i arbetsflöde",
// "workflow-item.delete.header": "Delete workflow item",
- // TODO New key - Add a translation
"workflow-item.delete.header": "Radera post i arbetsflöde",
// "workflow-item.delete.button.cancel": "Cancel",
- // TODO New key - Add a translation
"workflow-item.delete.button.cancel": "Avbryt",
// "workflow-item.delete.button.confirm": "Delete",
- // TODO New key - Add a translation
"workflow-item.delete.button.confirm": "Radera",
// "workflow-item.send-back.notification.success.title": "Sent back to submitter",
- // TODO New key - Add a translation
"workflow-item.send-back.notification.success.title": "Skicka tillbaka till uppladdare",
// "workflow-item.send-back.notification.success.content": "This workflow item was successfully sent back to the submitter",
- // TODO New key - Add a translation
"workflow-item.send-back.notification.success.content": "Posten i arbetsflödet har skickats tillbaka till uppladdaren",
// "workflow-item.send-back.notification.error.title": "Something went wrong",
- // TODO New key - Add a translation
"workflow-item.send-back.notification.error.title": "Något gick fel",
// "workflow-item.send-back.notification.error.content": "The workflow item could not be sent back to the submitter",
- // TODO New key - Add a translation
"workflow-item.send-back.notification.error.content": "Posten i arbetsflödet kunde inte skickas tillbaka",
// "workflow-item.send-back.title": "Send workflow item back to submitter",
- // TODO New key - Add a translation
"workflow-item.send-back.title": "Skicka tillbaka post i arbetsflödet till uppladdare",
// "workflow-item.send-back.header": "Send workflow item back to submitter",
- // TODO New key - Add a translation
"workflow-item.send-back.header": "Skicka tillbaka post i arbetsflödet till uppladdare",
// "workflow-item.send-back.button.cancel": "Cancel",
- // TODO New key - Add a translation
"workflow-item.send-back.button.cancel": "Avbryt",
// "workflow-item.send-back.button.confirm": "Send back",
- // TODO New key - Add a translation
"workflow-item.send-back.button.confirm": "Skicka tillbaka",
// "workflow-item.view.breadcrumbs": "Workflow View",
- // TODO New key - Add a translation
"workflow-item.view.breadcrumbs": "Arbetsflöde",
// "idle-modal.header": "Session will expire soon",
- // TODO New key - Add a translation
"idle-modal.header": "Sessionen kommer att upphöra snart",
// "idle-modal.info": "For security reasons, user sessions expire after {{ timeToExpire }} minutes of inactivity. Your session will expire soon. Would you like to extend it or log out?",
- // TODO New key - Add a translation
"idle-modal.info": "Sessionen kommer att upphöra efter {{ timeToExpire }} minuters inaktivitet. Vill du fortsätta eller logga ut?",
// "idle-modal.log-out": "Log out",
- // TODO New key - Add a translation
"idle-modal.log-out": "Logga ut",
// "idle-modal.extend-session": "Extend session"
- // TODO New key - Add a translation
"idle-modal.extend-session": "Fortsätt"
}