diff --git a/src/app/admin/admin-ldn-services/ldn-service-form/ldn-service-form.component.scss b/src/app/admin/admin-ldn-services/ldn-service-form/ldn-service-form.component.scss
index dbd6a86d6b8..d07e6052800 100644
--- a/src/app/admin/admin-ldn-services/ldn-service-form/ldn-service-form.component.scss
+++ b/src/app/admin/admin-ldn-services/ldn-service-form/ldn-service-form.component.scss
@@ -1,137 +1,11 @@
@import '../../../shared/form/builder/ds-dynamic-form-ui/models/scrollable-dropdown/dynamic-scrollable-dropdown.component';
@import '../../../shared/form/form.component';
-form {
- font-size: 14px;
- position: relative;
-}
-
-input,
-select {
- max-width: 100%;
- width: 100%;
- padding: 8px;
- font-size: 14px;
-}
-
-option:not(:first-child) {
- font-weight: bold;
-}
-
-.trash-button {
- width: 40px;
- height: 40px;
-}
-
textarea {
height: 200px;
resize: none;
}
-.add-pattern-link {
- color: #0048ff;
- cursor: pointer;
-}
-
-.remove-pattern-link {
- color: #e34949;
- cursor: pointer;
- margin-left: 10px;
-}
-
-.status-checkbox {
- margin-top: 5px;
-}
-
-
-.invalid-field {
- border: 1px solid red;
- color: #000000;
-}
-
-.error-text {
- color: red;
- font-size: 0.8em;
- margin-top: 5px;
-}
-
-.toggle-switch {
- display: flex;
- align-items: center;
- opacity: 0.8;
- position: relative;
- width: 60px;
- height: 30px;
- background-color: #ccc;
- border-radius: 15px;
- cursor: pointer;
- transition: background-color 0.3s;
-}
-
-.toggle-switch.checked {
- background-color: #24cc9a;
-}
-
-.slider {
- position: absolute;
- width: 30px;
- height: 30px;
- border-radius: 50%;
- background-color: #fff;
- transition: transform 0.3s;
-}
-
-
-.toggle-switch .slider {
- width: 22px;
- height: 22px;
- border-radius: 50%;
- margin: 0 auto;
-}
-
-.toggle-switch.checked .slider {
- transform: translateX(30px);
-}
-
-.toggle-switch-container {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: flex-end;
- margin-top: 10px;
-}
-
-.small-text {
- font-size: 0.7em;
- color: #888;
-}
-
-.toggle-switch {
- cursor: pointer;
- margin-top: 3px;
- margin-right: 3px
-}
-
-.label-box {
- margin-left: 11px;
-}
-
-.label-box-2 {
- margin-left: 14px;
-}
-
-.label-box-3 {
- margin-left: 5px;
-}
-
-.submission-form-footer {
- border-radius: var(--bs-card-border-radius);
- bottom: 0;
- background-color: var(--bs-gray-400);
- padding: calc(var(--bs-spacer) / 2);
- z-index: calc(var(--ds-submission-footer-z-index) + 1);
-}
-
.marked-for-deletion {
background-color: lighten($red, 30%);
}
@@ -140,4 +14,6 @@ textarea {
z-index: var(--ds-submission-footer-z-index);
}
-
+.ds-form-add-more {
+ margin-left: -12px;
+}
diff --git a/src/app/admin/admin-ldn-services/ldn-service-form/ldn-service-form.component.ts b/src/app/admin/admin-ldn-services/ldn-service-form/ldn-service-form.component.ts
index ea14f0d90ba..f15df49cefd 100644
--- a/src/app/admin/admin-ldn-services/ldn-service-form/ldn-service-form.component.ts
+++ b/src/app/admin/admin-ldn-services/ldn-service-form/ldn-service-form.component.ts
@@ -46,6 +46,7 @@ import {
TranslateService,
} from '@ngx-translate/core';
import { Operation } from 'fast-json-patch';
+import { UiSwitchModule } from 'ngx-ui-switch';
import {
combineLatestWith,
Observable,
@@ -74,6 +75,7 @@ import { notifyPatterns } from '../ldn-services-patterns/ldn-service-coar-patter
NgbDropdownModule,
ReactiveFormsModule,
TranslateModule,
+ UiSwitchModule,
],
})
export class LdnServiceFormComponent implements OnInit, OnDestroy {
diff --git a/src/app/admin/admin-notify-dashboard/admin-notify-detail-modal/admin-notify-detail-modal.component.html b/src/app/admin/admin-notify-dashboard/admin-notify-detail-modal/admin-notify-detail-modal.component.html
index 4aae0141748..e9bb5ec292c 100644
--- a/src/app/admin/admin-notify-dashboard/admin-notify-detail-modal/admin-notify-detail-modal.component.html
+++ b/src/app/admin/admin-notify-dashboard/admin-notify-detail-modal/admin-notify-detail-modal.component.html
@@ -14,7 +14,7 @@
{{'notify-message-modal.title' | translate}}
}
-
diff --git a/src/app/core/cache/builders/build-decorators.ts b/src/app/core/cache/builders/build-decorators.ts
index 81282041076..64a481f0e1f 100644
--- a/src/app/core/cache/builders/build-decorators.ts
+++ b/src/app/core/cache/builders/build-decorators.ts
@@ -135,7 +135,7 @@ export const link =
(
* @param source
*/
export const getLinkDefinitions = (source: GenericConstructor): Map> => {
- return linkMap.get(source);
+ return linkMap.get(source) ?? new Map();
};
/**
diff --git a/src/app/core/coar-notify/notify-info/models/admin-notify-message.model.ts b/src/app/core/coar-notify/notify-info/models/admin-notify-message.model.ts
index cc654016147..033139207f1 100644
--- a/src/app/core/coar-notify/notify-info/models/admin-notify-message.model.ts
+++ b/src/app/core/coar-notify/notify-info/models/admin-notify-message.model.ts
@@ -1,6 +1,5 @@
import {
autoserialize,
- deserialize,
inheritSerialization,
} from 'cerialize';
import { Observable } from 'rxjs';
@@ -8,8 +7,6 @@ import { Observable } from 'rxjs';
import { typedObject } from '../../../cache/builders/build-decorators';
import { ADMIN_NOTIFY_MESSAGE } from '../../../shared/admin-notify-message.resource-type';
import { DSpaceObject } from '../../../shared/dspace-object.model';
-import { GenericConstructor } from '../../../shared/generic-constructor';
-import { ListableObject } from '../../../shared/object-collection/listable-object.model';
import { excludeFromEquals } from '../../../utilities/equals.decorators';
/**
@@ -152,20 +149,4 @@ export class AdminNotifyMessage extends DSpaceObject {
@autoserialize
accessStatus: Observable;
-
-
- @deserialize
- _links: {
- self: {
- href: string;
- };
- };
-
- get self(): string {
- return this._links.self.href;
- }
-
- getRenderTypes(): (string | GenericConstructor)[] {
- return [this.constructor as GenericConstructor];
- }
}
diff --git a/src/app/shared/abstract-component-loader/abstract-component-loader.component.ts b/src/app/shared/abstract-component-loader/abstract-component-loader.component.ts
index d1aa9bbb3fe..ed7a64e60df 100644
--- a/src/app/shared/abstract-component-loader/abstract-component-loader.component.ts
+++ b/src/app/shared/abstract-component-loader/abstract-component-loader.component.ts
@@ -10,6 +10,7 @@ import {
} from '@angular/core';
import { GenericConstructor } from '@dspace/core/shared/generic-constructor';
import {
+ hasNoValue,
hasValue,
isNotEmpty,
} from '@dspace/shared/utils/empty.util';
@@ -109,6 +110,9 @@ export abstract class AbstractComponentLoaderComponent implements OnInit, OnC
*/
public instantiateComponent(): void {
const component: GenericConstructor = this.getComponent();
+ if (hasNoValue(component)) {
+ return;
+ }
const viewContainerRef: ViewContainerRef = this.componentViewContainerRef;
viewContainerRef.clear();
diff --git a/src/assets/i18n/ar.json5 b/src/assets/i18n/ar.json5
index dcd6b4e4f61..104a46900a7 100644
--- a/src/assets/i18n/ar.json5
+++ b/src/assets/i18n/ar.json5
@@ -10469,8 +10469,8 @@
// "ldn-new-service.form.label.inboundPattern": "Supported Pattern",
"ldn-new-service.form.label.inboundPattern": "النمط المدعوم",
- // "ldn-new-service.form.label.addPattern": "+ Add more",
- "ldn-new-service.form.label.addPattern": "+ إضافة المزيد",
+ // "ldn-new-service.form.label.addPattern": "Add more",
+ "ldn-new-service.form.label.addPattern": "إضافة المزيد",
// "ldn-new-service.form.label.removeItemFilter": "Remove",
"ldn-new-service.form.label.removeItemFilter": "إزالة",
// "ldn-register-new-service.breadcrumbs": "New Service",
diff --git a/src/assets/i18n/bn.json5 b/src/assets/i18n/bn.json5
index d62a02a6a35..db5c26c2a01 100644
--- a/src/assets/i18n/bn.json5
+++ b/src/assets/i18n/bn.json5
@@ -10590,8 +10590,8 @@
// "ldn-new-service.form.label.inboundPattern": "Supported Pattern",
"ldn-new-service.form.label.inboundPattern": "সমর্থিত প্যাটার্ন",
- // "ldn-new-service.form.label.addPattern": "+ Add more",
- "ldn-new-service.form.label.addPattern": "+ আরও যোগ করুন",
+ // "ldn-new-service.form.label.addPattern": "Add more",
+ "ldn-new-service.form.label.addPattern": "আরও যোগ করুন",
// "ldn-new-service.form.label.removeItemFilter": "Remove",
"ldn-new-service.form.label.removeItemFilter": "সরান",
// "ldn-register-new-service.breadcrumbs": "New Service",
@@ -11962,4 +11962,4 @@
"admin.edit-user-agreement.title": "Edit User Agreement",
-}
\ No newline at end of file
+}
diff --git a/src/assets/i18n/ca.json5 b/src/assets/i18n/ca.json5
index b7a8a00f421..3bffd257ecc 100644
--- a/src/assets/i18n/ca.json5
+++ b/src/assets/i18n/ca.json5
@@ -10627,8 +10627,8 @@
// "ldn-new-service.form.label.inboundPattern": "Supported Pattern",
"ldn-new-service.form.label.inboundPattern": "Patró Suportat",
- // "ldn-new-service.form.label.addPattern": "+ Add more",
- "ldn-new-service.form.label.addPattern": "+ Afegir més",
+ // "ldn-new-service.form.label.addPattern": "Add more",
+ "ldn-new-service.form.label.addPattern": "Afegir més",
// "ldn-new-service.form.label.removeItemFilter": "Remove",
"ldn-new-service.form.label.removeItemFilter": "Eliminar",
// "ldn-register-new-service.breadcrumbs": "New Service",
diff --git a/src/assets/i18n/cs.json5 b/src/assets/i18n/cs.json5
index 41b778b0719..f8f907d0f56 100644
--- a/src/assets/i18n/cs.json5
+++ b/src/assets/i18n/cs.json5
@@ -10316,8 +10316,8 @@
// "ldn-new-service.form.label.inboundPattern": "Supported Pattern",
"ldn-new-service.form.label.inboundPattern": "Podporovaný vzor",
- // "ldn-new-service.form.label.addPattern": "+ Add more",
- "ldn-new-service.form.label.addPattern": "+ Přidat další",
+ // "ldn-new-service.form.label.addPattern": "Add more",
+ "ldn-new-service.form.label.addPattern": "Přidat další",
// "ldn-new-service.form.label.removeItemFilter": "Remove",
"ldn-new-service.form.label.removeItemFilter": "Odebrat",
// "ldn-register-new-service.breadcrumbs": "New Service",
@@ -11586,4 +11586,4 @@
"admin.edit-user-agreement.title": "Upravit uživatelskou smlouvu",
-}
\ No newline at end of file
+}
diff --git a/src/assets/i18n/de.json5 b/src/assets/i18n/de.json5
index 447e7b3530a..3324c276016 100644
--- a/src/assets/i18n/de.json5
+++ b/src/assets/i18n/de.json5
@@ -10319,8 +10319,8 @@
// "ldn-new-service.form.label.inboundPattern": "Supported Pattern",
"ldn-new-service.form.label.inboundPattern": "Unterstützte Vorlagen",
- // "ldn-new-service.form.label.addPattern": "+ Add more",
- "ldn-new-service.form.label.addPattern": "+ Mehr hinzufügen",
+ // "ldn-new-service.form.label.addPattern": "Add more",
+ "ldn-new-service.form.label.addPattern": "Mehr hinzufügen",
// "ldn-new-service.form.label.removeItemFilter": "Remove",
"ldn-new-service.form.label.removeItemFilter": "Entfernen",
// "ldn-register-new-service.breadcrumbs": "New Service",
diff --git a/src/assets/i18n/el.json5 b/src/assets/i18n/el.json5
index 0d18a22dd11..9d47036a22a 100644
--- a/src/assets/i18n/el.json5
+++ b/src/assets/i18n/el.json5
@@ -11642,9 +11642,9 @@
// "ldn-new-service.form.label.inboundPattern": "Supported Pattern",
// TODO New key - Add a translation
"ldn-new-service.form.label.inboundPattern": "Supported Pattern",
- // "ldn-new-service.form.label.addPattern": "+ Add more",
+ // "ldn-new-service.form.label.addPattern": "Add more",
// TODO New key - Add a translation
- "ldn-new-service.form.label.addPattern": "+ Add more",
+ "ldn-new-service.form.label.addPattern": "Add more",
// "ldn-new-service.form.label.removeItemFilter": "Remove",
// TODO New key - Add a translation
"ldn-new-service.form.label.removeItemFilter": "Remove",
diff --git a/src/assets/i18n/en.json5 b/src/assets/i18n/en.json5
index 8ec3184fa63..3ed38f01e76 100644
--- a/src/assets/i18n/en.json5
+++ b/src/assets/i18n/en.json5
@@ -6892,9 +6892,9 @@
"ldn-new-service.form.error.url": "URL is required",
- "ldn-new-service.form.error.ipRange": "Please enter a valid IP range",
+ "ldn-new-service.form.error.ipRange": "Please enter a valid IP range (note: for single IP, please enter the same value in both fields)",
- "ldn-new-service.form.hint.ipRange": "Please enter a valid IpV4 in both range bounds (note: for single IP, please enter the same value in both fields)",
+ "ldn-new-service.form.hint.ipRange": "Please enter a valid IPv4 in both range bounds (note: for single IP, please enter the same value in both fields)",
"ldn-new-service.form.error.ldnurl": "LDN URL is required",
@@ -6906,7 +6906,7 @@
"ldn-new-service.form.label.inboundPattern": "Supported Pattern",
- "ldn-new-service.form.label.addPattern": "+ Add more",
+ "ldn-new-service.form.label.addPattern": "Add more",
"ldn-new-service.form.label.removeItemFilter": "Remove",
diff --git a/src/assets/i18n/es.json5 b/src/assets/i18n/es.json5
index c70afbcb603..7eedeb59ca4 100644
--- a/src/assets/i18n/es.json5
+++ b/src/assets/i18n/es.json5
@@ -10571,8 +10571,8 @@
// "ldn-new-service.form.label.inboundPattern": "Supported Pattern",
"ldn-new-service.form.label.inboundPattern": "Patrón soportado",
- // "ldn-new-service.form.label.addPattern": "+ Add more",
- "ldn-new-service.form.label.addPattern": "+ Añadir más",
+ // "ldn-new-service.form.label.addPattern": "Add more",
+ "ldn-new-service.form.label.addPattern": "Añadir más",
// "ldn-new-service.form.label.removeItemFilter": "Remove",
"ldn-new-service.form.label.removeItemFilter": "Eliminar",
// "ldn-register-new-service.breadcrumbs": "New Service",
diff --git a/src/assets/i18n/fa.json5 b/src/assets/i18n/fa.json5
index 79d88c06ecb..ca0b27b5250 100644
--- a/src/assets/i18n/fa.json5
+++ b/src/assets/i18n/fa.json5
@@ -1,17 +1,17 @@
{
- // "401.help": "You're not authorized to access this page. You can use the button below to get back to the home page.",
+ //"401.help": "You're not authorized to access this page. You can use the button below to get back to the home page.",
"401.help": "شما مجاز به دسترسی به این صفحه نیستید. از دکمه زیر برای بازگشت به صفحه اصلی میتوانید استفاده کنید.",
- // "401.link.home-page": "Take me to the home page",
+ //"401.link.home-page": "Take me to the home page",
"401.link.home-page": "انتقال به صفحه اصلی",
- // "401.unauthorized": "Unauthorized",
+ //"401.unauthorized": "Unauthorized",
"401.unauthorized": "غیرمجاز",
- // "403.help": "You don't have permission to access this page. You can use the button below to get back to the home page.",
+ //"403.help": "You don't have permission to access this page. You can use the button below to get back to the home page.",
"403.help": "شما اجازه دسترسی به این صفحه را ندارید. از دکمه زیر برای بازگشت به صفحه اصلی میتوانید استفاده کنید.",
- // "403.link.home-page": "Take me to the home page",
+ //"403.link.home-page": "Take me to the home page",
"403.link.home-page": "انتقال به صفحه اصلی",
// "403.forbidden": "Forbidden",
@@ -26,8 +26,8 @@
// "500.link.home-page": "Take me to the home page",
"500.link.home-page": "انتقال به صفحه اصلی",
- // "404.help": "We can't find the page you're looking for. The page may have been moved or deleted. You can use the button below to get back to the home page.",
- // TODO Source message changed - Revise the translation
+
+ // "404.help": "We can't find the page you're looking for. The page may have been moved or deleted. You can use the button below to get back to the home page. ",
"404.help": "ما نمیتوانیم صفحه مورد نظر شما را پیدا کنیم. ممکن است صفحه منتقل یا حذف شده باشد. میتوانید از دکمه زیر برای بازگشت به صفحه اصلی استفاده کنید. ",
// "404.link.home-page": "Take me to the home page",
@@ -51,10 +51,6 @@
// "error-page.orcid.generic-error": "An error occurred during login via ORCID. Make sure you have shared your ORCID account email address with DSpace. If the error persists, contact the administrator",
"error-page.orcid.generic-error": "هنگام ورود از طریق ORCID خطایی روی داد. مطمئن شوید که آدرس ایمیل حساب ORCID خود را با دی اسپیس به اشتراک گذاشتهاید. اگر خطا ادامه داشت، با مدیر تماس بگیرید.",
- // "listelement.badge.access-status": "Access status:",
- // TODO New key - Add a translation
- "listelement.badge.access-status": "Access status:",
-
// "access-status.embargo.listelement.badge": "Embargo",
"access-status.embargo.listelement.badge": "مسدود",
@@ -460,22 +456,6 @@
// "admin.access-control.epeople.table.edit.buttons.remove": "Delete \"{{name}}\"",
"admin.access-control.epeople.table.edit.buttons.remove": "حذف \"{{name}}\"",
- // "admin.access-control.epeople.table.edit.buttons.remove.modal.header": "Delete Group \"{{ dsoName }}\"",
- // TODO New key - Add a translation
- "admin.access-control.epeople.table.edit.buttons.remove.modal.header": "Delete Group \"{{ dsoName }}\"",
-
- // "admin.access-control.epeople.table.edit.buttons.remove.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?",
- // TODO New key - Add a translation
- "admin.access-control.epeople.table.edit.buttons.remove.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?",
-
- // "admin.access-control.epeople.table.edit.buttons.remove.modal.cancel": "Cancel",
- // TODO New key - Add a translation
- "admin.access-control.epeople.table.edit.buttons.remove.modal.cancel": "Cancel",
-
- // "admin.access-control.epeople.table.edit.buttons.remove.modal.confirm": "Delete",
- // TODO New key - Add a translation
- "admin.access-control.epeople.table.edit.buttons.remove.modal.confirm": "Delete",
-
// "admin.access-control.epeople.no-items": "No EPeople to show.",
"admin.access-control.epeople.no-items": "افرادی برای نماش وجود (EPeople) ندارد.",
@@ -668,8 +648,7 @@
// "admin.access-control.groups.form.delete-group.modal.header": "Delete Group \"{{ dsoName }}\"",
"admin.access-control.groups.form.delete-group.modal.header": "حذف گروه \"{{ dsoName }}\"",
- // "admin.access-control.groups.form.delete-group.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?",
- // TODO Source message changed - Revise the translation
+ // "admin.access-control.groups.form.delete-group.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\"",
"admin.access-control.groups.form.delete-group.modal.info": "آیا مطمئن هستید میخواهید گروه \"{{ dsoName }}\" را حذف کنید",
// "admin.access-control.groups.form.delete-group.modal.cancel": "Cancel",
@@ -1015,6 +994,7 @@
// "admin.reports.commons.filters.matches_all": "Matches all specified filters",
"admin.reports.commons.filters.matches_all": "منطبق با همه فیلترهای مشخص شده",
+
// "admin.reports.commons.filters.property": "Item Property Filters",
"admin.reports.commons.filters.property": "فیلترهای ویژگی آیتم",
@@ -1094,548 +1074,596 @@
"admin.reports.commons.filters.bundle": "فیلترهای بسته فایلها",
// "admin.reports.commons.filters.bundle.has_unsupported_bundle": "Has bitstream in an unsupported bundle",
- "admin.reports.commons.filters.bundle.has_unsupported_bundle": "دارای فایل در یک بسته پشتیبانی نشده است",
+ // TODO New key - Add a translation
+ "admin.reports.commons.filters.bundle.has_unsupported_bundle": "Has bitstream in an unsupported bundle",
// "admin.reports.commons.filters.bundle.has_small_thumbnail": "Has unusually small thumbnail",
- "admin.reports.commons.filters.bundle.has_small_thumbnail": "دارای تصویر کوچک غیرمعمول",
+ // TODO New key - Add a translation
+ "admin.reports.commons.filters.bundle.has_small_thumbnail": "Has unusually small thumbnail",
// "admin.reports.commons.filters.bundle.has_original_without_thumbnail": "Has original bitstream without thumbnail",
- "admin.reports.commons.filters.bundle.has_original_without_thumbnail": "دارای فایل اصلی بدون تصویر کوچک",
+ // TODO New key - Add a translation
+ "admin.reports.commons.filters.bundle.has_original_without_thumbnail": "Has original bitstream without thumbnail",
// "admin.reports.commons.filters.bundle.has_invalid_thumbnail_name": "Has invalid thumbnail name (assumes one thumbnail for each original)",
- "admin.reports.commons.filters.bundle.has_invalid_thumbnail_name": "نام تصویر کوچک نامعتبر است (برای هر اصلی یک تصویر کوچک در نظر گرفته شده است)",
+ // TODO New key - Add a translation
+ "admin.reports.commons.filters.bundle.has_invalid_thumbnail_name": "Has invalid thumbnail name (assumes one thumbnail for each original)",
// "admin.reports.commons.filters.bundle.has_non_generated_thumb": "Has non-generated thumbnail",
- "admin.reports.commons.filters.bundle.has_non_generated_thumb": "دارای تصویر کوچک تولید نشده ",
+ // TODO New key - Add a translation
+ "admin.reports.commons.filters.bundle.has_non_generated_thumb": "Has non-generated thumbnail",
// "admin.reports.commons.filters.bundle.no_license": "Doesn't have a license",
- "admin.reports.commons.filters.bundle.no_license": "مجوز ندارد.",
+ // TODO New key - Add a translation
+ "admin.reports.commons.filters.bundle.no_license": "Doesn't have a license",
// "admin.reports.commons.filters.bundle.has_license_documentation": "Has documentation in the license bundle",
- "admin.reports.commons.filters.bundle.has_license_documentation": "دارای مستندات در بسته مجوز است",
+ // TODO New key - Add a translation
+ "admin.reports.commons.filters.bundle.has_license_documentation": "Has documentation in the license bundle",
// "admin.reports.commons.filters.permission": "Permission Filters",
- "admin.reports.commons.filters.permission": "فیلترهای مجوز",
+ // TODO New key - Add a translation
+ "admin.reports.commons.filters.permission": "Permission Filters",
// "admin.reports.commons.filters.permission.has_restricted_original": "Item has Restricted Original Bitstream",
- "admin.reports.commons.filters.permission.has_restricted_original": "آیتم دارای فایل اصلی محدود شده است",
+ // TODO New key - Add a translation
+ "admin.reports.commons.filters.permission.has_restricted_original": "Item has Restricted Original Bitstream",
// "admin.reports.commons.filters.permission.has_restricted_original.tooltip": "Item has at least one original bitstream that is not accessible to Anonymous user",
- "admin.reports.commons.filters.permission.has_restricted_original.tooltip": "آیتم حداقل یک فایل اصلی دارد که برای کاربر ناشناس قابل دسترسی نیست",
+ // TODO New key - Add a translation
+ "admin.reports.commons.filters.permission.has_restricted_original.tooltip": "Item has at least one original bitstream that is not accessible to Anonymous user",
// "admin.reports.commons.filters.permission.has_restricted_thumbnail": "Item has Restricted Thumbnail",
- "admin.reports.commons.filters.permission.has_restricted_thumbnail": "تصویر کوچک آیتم محدود شده است",
+ // TODO New key - Add a translation
+ "admin.reports.commons.filters.permission.has_restricted_thumbnail": "Item has Restricted Thumbnail",
// "admin.reports.commons.filters.permission.has_restricted_thumbnail.tooltip": "Item has at least one thumbnail that is not accessible to Anonymous user",
- "admin.reports.commons.filters.permission.has_restricted_thumbnail.tooltip": "آیتم حداقل یک تصویر کوچک دارد که برای کاربر ناشناس قابل دسترسی نیست",
+ // TODO New key - Add a translation
+ "admin.reports.commons.filters.permission.has_restricted_thumbnail.tooltip": "Item has at least one thumbnail that is not accessible to Anonymous user",
// "admin.reports.commons.filters.permission.has_restricted_metadata": "Item has Restricted Metadata",
- "admin.reports.commons.filters.permission.has_restricted_metadata": "آیتم دارای ابرداده محدود است",
+ // TODO New key - Add a translation
+ "admin.reports.commons.filters.permission.has_restricted_metadata": "Item has Restricted Metadata",
// "admin.reports.commons.filters.permission.has_restricted_metadata.tooltip": "Item has metadata that is not accessible to Anonymous user",
- "admin.reports.commons.filters.permission.has_restricted_metadata.tooltip": "آیتم دارای ابردادهای است که برای کاربر ناشناس قابل دسترسی نیست",
+ // TODO New key - Add a translation
+ "admin.reports.commons.filters.permission.has_restricted_metadata.tooltip": "Item has metadata that is not accessible to Anonymous user",
// "admin.search.breadcrumbs": "Administrative Search",
- "admin.search.breadcrumbs": "جستجوی مدیریتی",
+ // TODO New key - Add a translation
+ "admin.search.breadcrumbs": "Administrative Search",
// "admin.search.collection.edit": "Edit",
- "admin.search.collection.edit": "ویرایش",
+ // TODO New key - Add a translation
+ "admin.search.collection.edit": "Edit",
// "admin.search.community.edit": "Edit",
- "admin.search.community.edit": "ویرایش",
+ // TODO New key - Add a translation
+ "admin.search.community.edit": "Edit",
// "admin.search.item.delete": "Delete",
- "admin.search.item.delete": "حذف",
+ // TODO New key - Add a translation
+ "admin.search.item.delete": "Delete",
// "admin.search.item.edit": "Edit",
- "admin.search.item.edit": "ویرایش",
+ // TODO New key - Add a translation
+ "admin.search.item.edit": "Edit",
// "admin.search.item.make-private": "Make non-discoverable",
- "admin.search.item.make-private": "غیرقابل کشف کردن",
+ // TODO New key - Add a translation
+ "admin.search.item.make-private": "Make non-discoverable",
// "admin.search.item.make-public": "Make discoverable",
- "admin.search.item.make-public": "قابل کشف کردن",
+ // TODO New key - Add a translation
+ "admin.search.item.make-public": "Make discoverable",
// "admin.search.item.move": "Move",
- "admin.search.item.move": "حرکت",
+ // TODO New key - Add a translation
+ "admin.search.item.move": "Move",
// "admin.search.item.reinstate": "Reinstate",
- "admin.search.item.reinstate": "بازگرداندن",
+ // TODO New key - Add a translation
+ "admin.search.item.reinstate": "Reinstate",
// "admin.search.item.withdraw": "Withdraw",
- "admin.search.item.withdraw": "برداشت",
+ // TODO New key - Add a translation
+ "admin.search.item.withdraw": "Withdraw",
// "admin.search.title": "Administrative Search",
- "admin.search.title": "جستجوی مدیریتی",
+ // TODO New key - Add a translation
+ "admin.search.title": "Administrative Search",
// "administrativeView.search.results.head": "Administrative Search",
- "administrativeView.search.results.head": "جستجوی مدیریتی",
+ // TODO New key - Add a translation
+ "administrativeView.search.results.head": "Administrative Search",
// "admin.workflow.breadcrumbs": "Administer Workflow",
- "admin.workflow.breadcrumbs": "مدیریت گردش کار",
+ // TODO New key - Add a translation
+ "admin.workflow.breadcrumbs": "Administer Workflow",
// "admin.workflow.title": "Administer Workflow",
- "admin.workflow.title": "مدیریت گردش کار",
+ // TODO New key - Add a translation
+ "admin.workflow.title": "Administer Workflow",
// "admin.workflow.item.workflow": "Workflow",
- "admin.workflow.item.workflow": "گردش کار",
+ // TODO New key - Add a translation
+ "admin.workflow.item.workflow": "Workflow",
// "admin.workflow.item.workspace": "Workspace",
- "admin.workflow.item.workspace": "فضای کاری",
+ // TODO New key - Add a translation
+ "admin.workflow.item.workspace": "Workspace",
// "admin.workflow.item.delete": "Delete",
- "admin.workflow.item.delete": "حذف",
+ // TODO New key - Add a translation
+ "admin.workflow.item.delete": "Delete",
// "admin.workflow.item.send-back": "Send back",
- "admin.workflow.item.send-back": "ارسال مجدد",
+ // TODO New key - Add a translation
+ "admin.workflow.item.send-back": "Send back",
// "admin.workflow.item.policies": "Policies",
- "admin.workflow.item.policies": "سیاستها",
+ // TODO New key - Add a translation
+ "admin.workflow.item.policies": "Policies",
// "admin.workflow.item.supervision": "Supervision",
- "admin.workflow.item.supervision": "نظارت",
+ // TODO New key - Add a translation
+ "admin.workflow.item.supervision": "Supervision",
// "admin.metadata-import.breadcrumbs": "Import Metadata",
- "admin.metadata-import.breadcrumbs": "وارد کردن ابرداده",
+ // TODO New key - Add a translation
+ "admin.metadata-import.breadcrumbs": "Import Metadata",
// "admin.batch-import.breadcrumbs": "Import Batch",
- "admin.batch-import.breadcrumbs": "وارد کردن دسته ای",
+ // TODO New key - Add a translation
+ "admin.batch-import.breadcrumbs": "Import Batch",
// "admin.metadata-import.title": "Import Metadata",
- "admin.metadata-import.title": "وارد کردن ابرداده",
+ // TODO New key - Add a translation
+ "admin.metadata-import.title": "Import Metadata",
// "admin.batch-import.title": "Import Batch",
- "admin.batch-import.title": "وارد کردن دسته ای",
+ // TODO New key - Add a translation
+ "admin.batch-import.title": "Import Batch",
// "admin.metadata-import.page.header": "Import Metadata",
- "admin.metadata-import.page.header": "وارد کردن ابرداده",
+ // TODO New key - Add a translation
+ "admin.metadata-import.page.header": "Import Metadata",
// "admin.batch-import.page.header": "Import Batch",
- "admin.batch-import.page.header": "وارد کردن دسته ای",
+ // TODO New key - Add a translation
+ "admin.batch-import.page.header": "Import Batch",
// "admin.metadata-import.page.help": "You can drop or browse CSV files that contain batch metadata operations on files here",
- "admin.metadata-import.page.help": "میتوانید فایلهای CSV که حاوی عملیات متادیتای دستهای روی فایلها هستند را اینجا رها یا مرور کنید",
+ // TODO New key - Add a translation
+ "admin.metadata-import.page.help": "You can drop or browse CSV files that contain batch metadata operations on files here",
// "admin.batch-import.page.help": "Select the collection to import into. Then, drop or browse to a Simple Archive Format (SAF) zip file that includes the items to import",
- "admin.batch-import.page.help": "مجموعهای را که میخواهید وارد کنید انتخاب کنید. سپس، فایل زیپ با فرمت آرشیو ساده (SAF) که شامل آیتمهای مورد نظر برای وارد کردن است را رها کنید یا به آن بروید.",
+ // TODO New key - Add a translation
+ "admin.batch-import.page.help": "Select the collection to import into. Then, drop or browse to a Simple Archive Format (SAF) zip file that includes the items to import",
// "admin.batch-import.page.toggle.help": "It is possible to perform import either with file upload or via URL, use above toggle to set the input source",
- "admin.batch-import.page.toggle.help": "انجام واردکردن یا با بارگزاری فایل یا از طریق URL امکانپذیر است، برای تنظیم منبع ورودی از دکمهی بالا استفاده کنید.",
+ // TODO New key - Add a translation
+ "admin.batch-import.page.toggle.help": "It is possible to perform import either with file upload or via URL, use above toggle to set the input source",
// "admin.metadata-import.page.dropMsg": "Drop a metadata CSV to import",
- "admin.metadata-import.page.dropMsg": "برای وارد کردن، یک CSV ابرداده را رها کنید",
+ // TODO New key - Add a translation
+ "admin.metadata-import.page.dropMsg": "Drop a metadata CSV to import",
// "admin.batch-import.page.dropMsg": "Drop a batch ZIP to import",
- "admin.batch-import.page.dropMsg": "برای وارد کردن، یک فایل زیپ دستهای را رها کنید",
+ // TODO New key - Add a translation
+ "admin.batch-import.page.dropMsg": "Drop a batch ZIP to import",
// "admin.metadata-import.page.dropMsgReplace": "Drop to replace the metadata CSV to import",
- "admin.metadata-import.page.dropMsgReplace": "برای جای گزینی ابرداده CSV برای وارد کردن، آن را رها کنید",
+ // TODO New key - Add a translation
+ "admin.metadata-import.page.dropMsgReplace": "Drop to replace the metadata CSV to import",
// "admin.batch-import.page.dropMsgReplace": "Drop to replace the batch ZIP to import",
- "admin.batch-import.page.dropMsgReplace": "برای جایگزینی فایل زیپ وارد شده، آن را رها کنید",
+ // TODO New key - Add a translation
+ "admin.batch-import.page.dropMsgReplace": "Drop to replace the batch ZIP to import",
// "admin.metadata-import.page.button.return": "Back",
- "admin.metadata-import.page.button.return": "برگشت",
+ // TODO New key - Add a translation
+ "admin.metadata-import.page.button.return": "Back",
// "admin.metadata-import.page.button.proceed": "Proceed",
- "admin.metadata-import.page.button.proceed": "ادامه",
+ // TODO New key - Add a translation
+ "admin.metadata-import.page.button.proceed": "Proceed",
// "admin.metadata-import.page.button.select-collection": "Select Collection",
- "admin.metadata-import.page.button.select-collection": "انتخاب مجموعه",
+ // TODO New key - Add a translation
+ "admin.metadata-import.page.button.select-collection": "Select Collection",
// "admin.metadata-import.page.error.addFile": "Select file first!",
- "admin.metadata-import.page.error.addFile": "ابتدا فایل را انتخاب کنید!",
+ // TODO New key - Add a translation
+ "admin.metadata-import.page.error.addFile": "Select file first!",
// "admin.metadata-import.page.error.addFileUrl": "Insert file URL first!",
- "admin.metadata-import.page.error.addFileUrl": "ابتدا آدرس فایل را وارد کنید!",
+ // TODO New key - Add a translation
+ "admin.metadata-import.page.error.addFileUrl": "Insert file URL first!",
// "admin.batch-import.page.error.addFile": "Select ZIP file first!",
- "admin.batch-import.page.error.addFile": "ابتدا فایل زیپ را انتخاب کنید!",
+ // TODO New key - Add a translation
+ "admin.batch-import.page.error.addFile": "Select ZIP file first!",
// "admin.metadata-import.page.toggle.upload": "Upload",
- "admin.metadata-import.page.toggle.upload": "بارگزاری",
+ // TODO New key - Add a translation
+ "admin.metadata-import.page.toggle.upload": "Upload",
// "admin.metadata-import.page.toggle.url": "URL",
+ // TODO New key - Add a translation
"admin.metadata-import.page.toggle.url": "URL",
// "admin.metadata-import.page.urlMsg": "Insert the batch ZIP url to import",
- "admin.metadata-import.page.urlMsg": "آدرس فایل زیپ دستهای را برای وارد کردن وارد کنید",
+ // TODO New key - Add a translation
+ "admin.metadata-import.page.urlMsg": "Insert the batch ZIP url to import",
// "admin.metadata-import.page.validateOnly": "Validate Only",
- "admin.metadata-import.page.validateOnly": "فقط اعتبارسنجی",
+ // TODO New key - Add a translation
+ "admin.metadata-import.page.validateOnly": "Validate Only",
// "admin.metadata-import.page.validateOnly.hint": "When selected, the uploaded CSV will be validated. You will receive a report of detected changes, but no changes will be saved.",
- "admin.metadata-import.page.validateOnly.hint": "پس از انتخاب، فایل CSV بارگزاری شده اعتبارسنجی میشود. گزارشی از تغییرات شناسایی شده دریافت خواهید کرد، اما هیچ تغییری ذخیره نخواهد شد.",
+ // TODO New key - Add a translation
+ "admin.metadata-import.page.validateOnly.hint": "When selected, the uploaded CSV will be validated. You will receive a report of detected changes, but no changes will be saved.",
// "advanced-workflow-action.rating.form.rating.label": "Rating",
- "advanced-workflow-action.rating.form.rating.label": "رتبهبندی",
+ // TODO New key - Add a translation
+ "advanced-workflow-action.rating.form.rating.label": "Rating",
// "advanced-workflow-action.rating.form.rating.error": "You must rate the item",
- "advanced-workflow-action.rating.form.rating.error": "شما باید به آیتم امتیاز دهید",
+ // TODO New key - Add a translation
+ "advanced-workflow-action.rating.form.rating.error": "You must rate the item",
// "advanced-workflow-action.rating.form.review.label": "Review",
- "advanced-workflow-action.rating.form.review.label": "نقد",
+ // TODO New key - Add a translation
+ "advanced-workflow-action.rating.form.review.label": "Review",
// "advanced-workflow-action.rating.form.review.error": "You must enter a review to submit this rating",
- "advanced-workflow-action.rating.form.review.error": "برای ارسال این رتبهبندی، باید نقد خود را وارد کنید",
+ // TODO New key - Add a translation
+ "advanced-workflow-action.rating.form.review.error": "You must enter a review to submit this rating",
// "advanced-workflow-action.rating.description": "Please select a rating below",
- "advanced-workflow-action.rating.description": "لطفا یک رتبه بندی در زیر را انتخاب کنید",
+ // TODO New key - Add a translation
+ "advanced-workflow-action.rating.description": "Please select a rating below",
// "advanced-workflow-action.rating.description-requiredDescription": "Please select a rating below and also add a review",
- "advanced-workflow-action.rating.description-requiredDescription": "لطفا یک رتبه بندی در زیر را انتخاب کنید و همچنین یک نقد اضافه کنید",
+ // TODO New key - Add a translation
+ "advanced-workflow-action.rating.description-requiredDescription": "Please select a rating below and also add a review",
// "advanced-workflow-action.select-reviewer.description-single": "Please select a single reviewer below before submitting",
- "advanced-workflow-action.select-reviewer.description-single": "لطفاً قبل از ارسال، یک داور واحد را در زیر انتخاب کنید",
+ // TODO New key - Add a translation
+ "advanced-workflow-action.select-reviewer.description-single": "Please select a single reviewer below before submitting",
// "advanced-workflow-action.select-reviewer.description-multiple": "Please select one or more reviewers below before submitting",
- "advanced-workflow-action.select-reviewer.description-multiple": "لطفا قبل از ارسال، یک یا چند داور را از زیر انتخاب کنید",
+ // TODO New key - Add a translation
+ "advanced-workflow-action.select-reviewer.description-multiple": "Please select one or more reviewers below before submitting",
// "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.head": "EPeople",
+ // TODO New key - Add a translation
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.head": "EPeople",
// "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.head": "Add EPeople",
- "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.head": "افزودن EPeople",
+ // TODO New key - Add a translation
+ "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.head": "Add EPeople",
// "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.button.see-all": "Browse All",
- "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.button.see-all": "مرور همه",
+ // TODO New key - Add a translation
+ "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.button.see-all": "Browse All",
// "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.headMembers": "Current Members",
- "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.headMembers": "اعضا جاری",
+ // TODO New key - Add a translation
+ "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.headMembers": "Current Members",
// "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.button": "Search",
- "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.button": "جستجو",
+ // TODO New key - Add a translation
+ "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.button": "Search",
// "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.id": "ID",
+ // TODO New key - Add a translation
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.id": "ID",
// "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.name": "Name",
- "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.name": "نام",
+ // TODO New key - Add a translation
+ "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.name": "Name",
// "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.identity": "Identity",
- "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.identity": "هویت",
+ // TODO New key - Add a translation
+ "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.identity": "Identity",
// "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.email": "Email",
- "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.email": "ایمیل",
+ // TODO New key - Add a translation
+ "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.email": "Email",
// "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.netid": "NetID",
+ // TODO New key - Add a translation
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.netid": "NetID",
// "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit": "Remove / Add",
- "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit": "حذف/افزودن",
-
- // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.remove": "Remove member with name \"{{name}}\"",
- "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.remove": "حذف عضو با نام \"{{name}}\"",
-
- // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.addMember": "Successfully added member: \"{{name}}\"",
- "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.addMember": "عضو با موفقیت افزوده شد: \"{{name}}\"",
-
- // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.addMember": "Failed to add member: \"{{name}}\"",
- "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.addMember": "افزودن عضو ناموفق بود: \"{{name}}\"",
-
- // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.deleteMember": "Successfully deleted member: \"{{name}}\"",
- "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.deleteMember": "عضو با موفقیت حذف شد: \"{{name}}\"",
-
- // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.deleteMember": "Failed to delete member: \"{{name}}\"",
- "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.deleteMember": "حذف عضو ناموفق بود: \"{{name}}\"",
-
- // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.add": "Add member with name \"{{name}}\"",
- "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.add": "افزودن عضو با نام \"{{name}}\"",
-
- // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.noActiveGroup": "No current active group, submit a name first.",
- "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.noActiveGroup": "در حال حاضر گروه فعالی وجود ندارد، ابتدا نام را ارسال کنید.",
-
- // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-members-yet": "No members in group yet, search and add.",
- "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-members-yet": "هنوز عضوی در گروه نیست، جستجو و اضافه کنید.",
-
- // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-items": "No EPeople found in that search",
- "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-items": "هیچ EPeople در آن جستجو یافت نشد",
-
- // "advanced-workflow-action.select-reviewer.no-reviewer-selected.error": "No reviewer selected.",
- "advanced-workflow-action.select-reviewer.no-reviewer-selected.error": "داوری انتخاب نشده است",
-
- // "admin.batch-import.page.validateOnly.hint": "When selected, the uploaded ZIP will be validated. You will receive a report of detected changes, but no changes will be saved.",
- "admin.batch-import.page.validateOnly.hint": "پس از انتخاب، فایل زیپ بارگزاری شده اعتبارسنجی میشود. گزارشی از تغییرات شناسایی شده دریافت خواهید کرد، اما هیچ تغییری ذخیره نخواهد شد.",
-
- // "admin.batch-import.page.remove": "remove",
- "admin.batch-import.page.remove": "حذف",
-
- // "audit.data.not-found": "No audits found.",
- // TODO New key - Add a translation
- "audit.data.not-found": "No audits found.",
-
- // "audit.data.self": "self",
- // TODO New key - Add a translation
- "audit.data.self": "self",
-
- // "audit.detail.metadata.field": "Metadata field:",
- // TODO New key - Add a translation
- "audit.detail.metadata.field": "Metadata field:",
-
- // "audit.detail.metadata.value": "Value:",
- // TODO New key - Add a translation
- "audit.detail.metadata.value": "Value:",
-
- // "audit.detail.metadata.authority": "Authority:",
- // TODO New key - Add a translation
- "audit.detail.metadata.authority": "Authority:",
-
- // "audit.detail.metadata.confidence": "Confidence:",
- // TODO New key - Add a translation
- "audit.detail.metadata.confidence": "Confidence:",
-
- // "audit.detail.metadata.place": "Place:",
- // TODO New key - Add a translation
- "audit.detail.metadata.place": "Place:",
-
- // "audit.detail.metadata.action": "Action:",
- // TODO New key - Add a translation
- "audit.detail.metadata.action": "Action:",
-
- // "audit.detail.metadata.checksum": "Checksum:",
- // TODO New key - Add a translation
- "audit.detail.metadata.checksum": "Checksum:",
-
- // "audit.overview.title": "All Audit Logs",
- // TODO New key - Add a translation
- "audit.overview.title": "All Audit Logs",
-
- // "audit.overview.table.id": "Audit ID",
- // TODO New key - Add a translation
- "audit.overview.table.id": "Audit ID",
-
- // "audit.overview.table.objectUUID": "Object ID",
- // TODO New key - Add a translation
- "audit.overview.table.objectUUID": "Object ID",
-
- // "audit.overview.table.objectType": "Object Type",
// TODO New key - Add a translation
- "audit.overview.table.objectType": "Object Type",
+ "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit": "Remove / Add",
- // "audit.overview.table.subjectUUID": "Subject ID",
+ // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.remove": "Remove member with name \"{{name}}\"",
// TODO New key - Add a translation
- "audit.overview.table.subjectUUID": "Subject ID",
+ "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.remove": "Remove member with name \"{{name}}\"",
- // "audit.overview.table.subjectType": "Subject Type",
+ // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.addMember": "Successfully added member: \"{{name}}\"",
// TODO New key - Add a translation
- "audit.overview.table.subjectType": "Subject Type",
+ "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.addMember": "Successfully added member: \"{{name}}\"",
- // "audit.overview.table.entityType": "Audit Type",
+ // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.addMember": "Failed to add member: \"{{name}}\"",
// TODO New key - Add a translation
- "audit.overview.table.entityType": "Audit Type",
+ "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.addMember": "Failed to add member: \"{{name}}\"",
- // "audit.overview.table.eperson": "EPerson",
+ // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.deleteMember": "Successfully deleted member: \"{{name}}\"",
// TODO New key - Add a translation
- "audit.overview.table.eperson": "EPerson",
+ "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.deleteMember": "Successfully deleted member: \"{{name}}\"",
- // "audit.overview.table.other": "Object",
+ // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.deleteMember": "Failed to delete member: \"{{name}}\"",
// TODO New key - Add a translation
- "audit.overview.table.other": "Object",
+ "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.deleteMember": "Failed to delete member: \"{{name}}\"",
- // "audit.overview.table.timestamp": "Time (UTC)",
+ // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.add": "Add member with name \"{{name}}\"",
// TODO New key - Add a translation
- "audit.overview.table.timestamp": "Time (UTC)",
+ "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.add": "Add member with name \"{{name}}\"",
- // "audit.overview.breadcrumbs": "Audit Logs",
+ // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.noActiveGroup": "No current active group, submit a name first.",
// TODO New key - Add a translation
- "audit.overview.breadcrumbs": "Audit Logs",
+ "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.noActiveGroup": "No current active group, submit a name first.",
- // "audit.object.back": "Back",
+ // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-members-yet": "No members in group yet, search and add.",
// TODO New key - Add a translation
- "audit.object.back": "Back",
+ "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-members-yet": "No members in group yet, search and add.",
- // "audit.object.breadcrumbs": "Object Audit Logs",
+ // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-items": "No EPeople found in that search",
// TODO New key - Add a translation
- "audit.object.breadcrumbs": "Object Audit Logs",
+ "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-items": "No EPeople found in that search",
- // "audit.object.overview.title": "Object Audit Logs",
+ // "advanced-workflow-action.select-reviewer.no-reviewer-selected.error": "No reviewer selected.",
// TODO New key - Add a translation
- "audit.object.overview.title": "Object Audit Logs",
+ "advanced-workflow-action.select-reviewer.no-reviewer-selected.error": "No reviewer selected.",
- // "audit.object.logs.label": "Logs for object: ",
+ // "admin.batch-import.page.validateOnly.hint": "When selected, the uploaded ZIP will be validated. You will receive a report of detected changes, but no changes will be saved.",
// TODO New key - Add a translation
- "audit.object.logs.label": "Logs for object: ",
+ "admin.batch-import.page.validateOnly.hint": "When selected, the uploaded ZIP will be validated. You will receive a report of detected changes, but no changes will be saved.",
- // "audit.object.overview.disabled.message": "Audit feature is currently disabled",
+ // "admin.batch-import.page.remove": "remove",
// TODO New key - Add a translation
- "audit.object.overview.disabled.message": "Audit feature is currently disabled",
+ "admin.batch-import.page.remove": "remove",
// "auth.errors.invalid-user": "Invalid email address or password.",
- "auth.errors.invalid-user": "آدرس ایمیل یا رمز عبور نامعتبر",
+ // TODO New key - Add a translation
+ "auth.errors.invalid-user": "Invalid email address or password.",
// "auth.messages.expired": "Your session has expired. Please log in again.",
- "auth.messages.expired": "زمان استفاده از حساب کاربری شما به پایان رسیده است. لطفا دوباره وارد شوید.",
+ // TODO New key - Add a translation
+ "auth.messages.expired": "Your session has expired. Please log in again.",
// "auth.messages.token-refresh-failed": "Refreshing your session token failed. Please log in again.",
- "auth.messages.token-refresh-failed": "بهروزرسانی توکن نشست شما ناموفق بود. لطفاً دوباره وارد شوید.",
+ // TODO New key - Add a translation
+ "auth.messages.token-refresh-failed": "Refreshing your session token failed. Please log in again.",
// "bitstream.download.page": "Now downloading {{bitstream}}...",
- "bitstream.download.page": "درحال دانلود کردن {{bitstream}}...",
+ // TODO New key - Add a translation
+ "bitstream.download.page": "Now downloading {{bitstream}}...",
// "bitstream.download.page.back": "Back",
- "bitstream.download.page.back": "برگشت",
+ // TODO New key - Add a translation
+ "bitstream.download.page.back": "Back",
// "bitstream.edit.authorizations.link": "Edit bitstream's Policies",
- "bitstream.edit.authorizations.link": "ویرایش سیاستهای فایل",
+ // TODO New key - Add a translation
+ "bitstream.edit.authorizations.link": "Edit bitstream's Policies",
// "bitstream.edit.authorizations.title": "Edit bitstream's Policies",
- "bitstream.edit.authorizations.title": "ویرایش سیاستهای فایل",
+ // TODO New key - Add a translation
+ "bitstream.edit.authorizations.title": "Edit bitstream's Policies",
// "bitstream.edit.return": "Back",
- "bitstream.edit.return": "برگشت",
+ // TODO New key - Add a translation
+ "bitstream.edit.return": "Back",
// "bitstream.edit.bitstream": "Bitstream: ",
- "bitstream.edit.bitstream": "فایل: ",
+ // TODO New key - Add a translation
+ "bitstream.edit.bitstream": "Bitstream: ",
// "bitstream.edit.form.description.hint": "Optionally, provide a brief description of the file, for example \"Main article\" or \"Experiment data readings\".",
- "bitstream.edit.form.description.hint": "در صورت تمایل، توضیح مختصری از فایل ارائه دهید، برای مثال \"مقاله اصلی\" یا \"خواندنیهای داده آزمایش\".",
+ // TODO New key - Add a translation
+ "bitstream.edit.form.description.hint": "Optionally, provide a brief description of the file, for example \"Main article\" or \"Experiment data readings\".",
// "bitstream.edit.form.description.label": "Description",
- "bitstream.edit.form.description.label": "توصیف",
+ // TODO New key - Add a translation
+ "bitstream.edit.form.description.label": "Description",
// "bitstream.edit.form.embargo.hint": "The first day from which access is allowed. This date cannot be modified on this form. To set an embargo date for a bitstream, go to the Item Status tab, click Authorizations..., create or edit the bitstream's READ policy, and set the Start Date as desired.",
- "bitstream.edit.form.embargo.hint": "اولین روزی که از آن تاریخ دسترسی مجاز است. این تاریخ در این فرم قابل تغییر نیست. برای تنظیم تاریخ ممنوعیت (قفل فایل) برای یک فایل به زبانه وضعیت آیتم بروید، روی مجوزها... کلیک کنید، سیاست خواندن فایل را ایجاد یا ویرایش کنید و تاریخ شروع را به دلخواه تنظیم کنید.",
+ // TODO New key - Add a translation
+ "bitstream.edit.form.embargo.hint": "The first day from which access is allowed. This date cannot be modified on this form. To set an embargo date for a bitstream, go to the Item Status tab, click Authorizations..., create or edit the bitstream's READ policy, and set the Start Date as desired.",
// "bitstream.edit.form.embargo.label": "Embargo until specific date",
- "bitstream.edit.form.embargo.label": "ممنوعیت (قفل فایل) تا تاریخ مشخص",
+ // TODO New key - Add a translation
+ "bitstream.edit.form.embargo.label": "Embargo until specific date",
// "bitstream.edit.form.fileName.hint": "Change the filename for the bitstream. Note that this will change the display bitstream URL, but old links will still resolve as long as the sequence ID does not change.",
- "bitstream.edit.form.fileName.hint": "نام فایل را تغییر دهید. توجه داشته باشید که این کار آدرس اینترنتی فایل نمایش داده شده را تغییر میدهد، اما لینکهای قدیمی همچنان تا زمانی که شناسه توالی تغییر نکند، قابل مشاهده خواهند بود.",
+ // TODO New key - Add a translation
+ "bitstream.edit.form.fileName.hint": "Change the filename for the bitstream. Note that this will change the display bitstream URL, but old links will still resolve as long as the sequence ID does not change.",
// "bitstream.edit.form.fileName.label": "Filename",
- "bitstream.edit.form.fileName.label": "نام فایل",
+ // TODO New key - Add a translation
+ "bitstream.edit.form.fileName.label": "Filename",
// "bitstream.edit.form.newFormat.label": "Describe new format",
- "bitstream.edit.form.newFormat.label": "توصیف قالب جدید",
+ // TODO New key - Add a translation
+ "bitstream.edit.form.newFormat.label": "Describe new format",
// "bitstream.edit.form.newFormat.hint": "The application you used to create the file, and the version number (for example, \"ACMESoft SuperApp version 1.5\").",
- "bitstream.edit.form.newFormat.hint": "برنامهای که برای ایجاد فایل استفاده کردهاید و شماره نسخه (برای مثال، \"ACMESoft SuperApp version 1.5\").",
+ // TODO New key - Add a translation
+ "bitstream.edit.form.newFormat.hint": "The application you used to create the file, and the version number (for example, \"ACMESoft SuperApp version 1.5\").",
// "bitstream.edit.form.primaryBitstream.label": "Primary File",
- "bitstream.edit.form.primaryBitstream.label": "فایل اصلی",
+ // TODO New key - Add a translation
+ "bitstream.edit.form.primaryBitstream.label": "Primary File",
// "bitstream.edit.form.selectedFormat.hint": "If the format is not in the above list, select \"format not in list\" above and describe it under \"Describe new format\".",
- "bitstream.edit.form.selectedFormat.hint": "اگر قالب مورد نظر در فهرست بالا نیست، گزینه «قالب در فهرست نیست» را در بالا انتخاب کنید و آن را در زیر «توضیح قالب جدید» شرح دهید.",
+ // TODO New key - Add a translation
+ "bitstream.edit.form.selectedFormat.hint": "If the format is not in the above list, select \"format not in list\" above and describe it under \"Describe new format\".",
// "bitstream.edit.form.selectedFormat.label": "Selected Format",
- "bitstream.edit.form.selectedFormat.label": "قالب انتخاب شده",
+ // TODO New key - Add a translation
+ "bitstream.edit.form.selectedFormat.label": "Selected Format",
// "bitstream.edit.form.selectedFormat.unknown": "Format not in list",
- "bitstream.edit.form.selectedFormat.unknown": "قالب در لیست نیست",
+ // TODO New key - Add a translation
+ "bitstream.edit.form.selectedFormat.unknown": "Format not in list",
// "bitstream.edit.notifications.error.format.title": "An error occurred saving the bitstream's format",
- "bitstream.edit.notifications.error.format.title": "خطایی در ذخیره قالب فایل رخ داد",
+ // TODO New key - Add a translation
+ "bitstream.edit.notifications.error.format.title": "An error occurred saving the bitstream's format",
// "bitstream.edit.notifications.error.primaryBitstream.title": "An error occurred saving the primary bitstream",
- "bitstream.edit.notifications.error.primaryBitstream.title": "خطایی در ذخیره فایل اصلی رخ داد",
+ // TODO New key - Add a translation
+ "bitstream.edit.notifications.error.primaryBitstream.title": "An error occurred saving the primary bitstream",
// "bitstream.edit.form.iiifLabel.label": "IIIF Label",
- "bitstream.edit.form.iiifLabel.label": "IIIF برچسب",
+ // TODO New key - Add a translation
+ "bitstream.edit.form.iiifLabel.label": "IIIF Label",
// "bitstream.edit.form.iiifLabel.hint": "Canvas label for this image. If not provided default label will be used.",
- "bitstream.edit.form.iiifLabel.hint": "برچسب بوم نقاشی برای این تصویر. در صورت عدم ارائه، برچسب پیشفرض استفاده خواهد شد.",
+ // TODO New key - Add a translation
+ "bitstream.edit.form.iiifLabel.hint": "Canvas label for this image. If not provided default label will be used.",
// "bitstream.edit.form.iiifToc.label": "IIIF Table of Contents",
- "bitstream.edit.form.iiifToc.label": "فهرست مندرجات IIIF",
+ // TODO New key - Add a translation
+ "bitstream.edit.form.iiifToc.label": "IIIF Table of Contents",
// "bitstream.edit.form.iiifToc.hint": "Adding text here makes this the start of a new table of contents range.",
- "bitstream.edit.form.iiifToc.hint": "افزودن متن در اینجا، این را به شروع یک محدوده جدید از فهرست مندرجات تبدیل میکند.",
+ // TODO New key - Add a translation
+ "bitstream.edit.form.iiifToc.hint": "Adding text here makes this the start of a new table of contents range.",
// "bitstream.edit.form.iiifWidth.label": "IIIF Canvas Width",
- "bitstream.edit.form.iiifWidth.label": "عرض بوم IIIF",
+ // TODO New key - Add a translation
+ "bitstream.edit.form.iiifWidth.label": "IIIF Canvas Width",
// "bitstream.edit.form.iiifWidth.hint": "The canvas width should usually match the image width.",
- "bitstream.edit.form.iiifWidth.hint": "عرض بوم معمولاً باید با عرض تصویر مطابقت داشته باشد.",
+ // TODO New key - Add a translation
+ "bitstream.edit.form.iiifWidth.hint": "The canvas width should usually match the image width.",
// "bitstream.edit.form.iiifHeight.label": "IIIF Canvas Height",
- "bitstream.edit.form.iiifHeight.label": "ارتفاع بوم IIIF",
+ // TODO New key - Add a translation
+ "bitstream.edit.form.iiifHeight.label": "IIIF Canvas Height",
// "bitstream.edit.form.iiifHeight.hint": "The canvas height should usually match the image height.",
- "bitstream.edit.form.iiifHeight.hint": "ارتفاع بوم معمولاً باید با ارتفاع تصویر مطابقت داشته باشد.",
+ // TODO New key - Add a translation
+ "bitstream.edit.form.iiifHeight.hint": "The canvas height should usually match the image height.",
// "bitstream.edit.notifications.saved.content": "Your changes to this bitstream were saved.",
- "bitstream.edit.notifications.saved.content": "تغییرات شما در این فایل ذخیره شد.",
+ // TODO New key - Add a translation
+ "bitstream.edit.notifications.saved.content": "Your changes to this bitstream were saved.",
// "bitstream.edit.notifications.saved.title": "Bitstream saved",
- "bitstream.edit.notifications.saved.title": "فایل ذخیره شد",
+ // TODO New key - Add a translation
+ "bitstream.edit.notifications.saved.title": "Bitstream saved",
// "bitstream.edit.title": "Edit bitstream",
- "bitstream.edit.title": "ویرایش فایل",
+ // TODO New key - Add a translation
+ "bitstream.edit.title": "Edit bitstream",
// "bitstream-request-a-copy.alert.canDownload1": "You already have access to this file. If you want to download the file, click ",
- "bitstream-request-a-copy.alert.canDownload1": "شما از قبل به این فایل دسترسی دارید. اگر میخواهید فایل را دانلود کنید، کلیک کنید ",
+ // TODO New key - Add a translation
+ "bitstream-request-a-copy.alert.canDownload1": "You already have access to this file. If you want to download the file, click ",
// "bitstream-request-a-copy.alert.canDownload2": "here",
- "bitstream-request-a-copy.alert.canDownload2": "اینجا",
+ // TODO New key - Add a translation
+ "bitstream-request-a-copy.alert.canDownload2": "here",
// "bitstream-request-a-copy.header": "Request a copy of the file",
- "bitstream-request-a-copy.header": "درخواست یک کپی از فایل",
+ // TODO New key - Add a translation
+ "bitstream-request-a-copy.header": "Request a copy of the file",
// "bitstream-request-a-copy.intro": "Enter the following information to request a copy for the following item: ",
- "bitstream-request-a-copy.intro": "برای درخواست کپی برای آیتم زیر، اطلاعات زیر را وارد کنید: ",
+ // TODO New key - Add a translation
+ "bitstream-request-a-copy.intro": "Enter the following information to request a copy for the following item: ",
// "bitstream-request-a-copy.intro.bitstream.one": "Requesting the following file: ",
- "bitstream-request-a-copy.intro.bitstream.one": "درخواست فایل زیر: ",
+ // TODO New key - Add a translation
+ "bitstream-request-a-copy.intro.bitstream.one": "Requesting the following file: ",
// "bitstream-request-a-copy.intro.bitstream.all": "Requesting all files. ",
- "bitstream-request-a-copy.intro.bitstream.all": "درخواست همه فایلها. ",
+ // TODO New key - Add a translation
+ "bitstream-request-a-copy.intro.bitstream.all": "Requesting all files. ",
// "bitstream-request-a-copy.name.label": "Name *",
- "bitstream-request-a-copy.name.label": "نام *",
+ // TODO New key - Add a translation
+ "bitstream-request-a-copy.name.label": "Name *",
// "bitstream-request-a-copy.name.error": "The name is required",
- "bitstream-request-a-copy.name.error": "نام موردنیاز است",
+ // TODO New key - Add a translation
+ "bitstream-request-a-copy.name.error": "The name is required",
// "bitstream-request-a-copy.email.label": "Your email address *",
- "bitstream-request-a-copy.email.label": "آدرس ایمیل شما *",
+ // TODO New key - Add a translation
+ "bitstream-request-a-copy.email.label": "Your email address *",
// "bitstream-request-a-copy.email.hint": "This email address is used for sending the file.",
- "bitstream-request-a-copy.email.hint": "این آدرس ایمیل برای ارسال فایل استفاده میشود.",
+ // TODO New key - Add a translation
+ "bitstream-request-a-copy.email.hint": "This email address is used for sending the file.",
// "bitstream-request-a-copy.email.error": "Please enter a valid email address.",
- "bitstream-request-a-copy.email.error": "لطفاً یک آدرس ایمیل معتبر وارد کنید.",
+ // TODO New key - Add a translation
+ "bitstream-request-a-copy.email.error": "Please enter a valid email address.",
// "bitstream-request-a-copy.allfiles.label": "Files",
- "bitstream-request-a-copy.allfiles.label": "فایلها",
+ // TODO New key - Add a translation
+ "bitstream-request-a-copy.allfiles.label": "Files",
// "bitstream-request-a-copy.files-all-false.label": "Only the requested file",
- "bitstream-request-a-copy.files-all-false.label": "فقط فایل درخواست شده",
+ // TODO New key - Add a translation
+ "bitstream-request-a-copy.files-all-false.label": "Only the requested file",
// "bitstream-request-a-copy.files-all-true.label": "All files (of this item) in restricted access",
- "bitstream-request-a-copy.files-all-true.label": "تمام فایلها (از این آیتم) در دسترسی محدود",
+ // TODO New key - Add a translation
+ "bitstream-request-a-copy.files-all-true.label": "All files (of this item) in restricted access",
// "bitstream-request-a-copy.message.label": "Message",
- "bitstream-request-a-copy.message.label": "پیام",
+ // TODO New key - Add a translation
+ "bitstream-request-a-copy.message.label": "Message",
// "bitstream-request-a-copy.return": "Back",
- "bitstream-request-a-copy.return": "برگشت",
+ // TODO New key - Add a translation
+ "bitstream-request-a-copy.return": "Back",
// "bitstream-request-a-copy.submit": "Request copy",
- "bitstream-request-a-copy.submit": "درخواست کپی",
+ // TODO New key - Add a translation
+ "bitstream-request-a-copy.submit": "Request copy",
// "bitstream-request-a-copy.submit.success": "The item request was submitted successfully.",
- "bitstream-request-a-copy.submit.success": "درخواست آیتم با موفقیت ارسال شد.",
+ // TODO New key - Add a translation
+ "bitstream-request-a-copy.submit.success": "The item request was submitted successfully.",
// "bitstream-request-a-copy.submit.error": "Something went wrong with submitting the item request.",
- "bitstream-request-a-copy.submit.error": "مشکلی در ارسال درخواست آیتم پیش آمد.",
+ // TODO New key - Add a translation
+ "bitstream-request-a-copy.submit.error": "Something went wrong with submitting the item request.",
// "bitstream-request-a-copy.access-by-token.warning": "You are viewing this item with the secure access link provided to you by the author or repository staff. It is important not to share this link to unauthorised users.",
- "bitstream-request-a-copy.access-by-token.warning": "شما در حال مشاهده این آیتم با لینک دسترسی امن هستید که توسط نویسنده یا کارکنان مخزن در اختیار شما قرار گرفته است. مهم است که این لینک را با کاربران غیرمجاز به اشتراک نگذارید.",
+ // TODO New key - Add a translation
+ "bitstream-request-a-copy.access-by-token.warning": "You are viewing this item with the secure access link provided to you by the author or repository staff. It is important not to share this link to unauthorised users.",
// "bitstream-request-a-copy.access-by-token.expiry-label": "Access provided by this link will expire on",
- "bitstream-request-a-copy.access-by-token.expiry-label": "دسترسی ارائه شده توسط این لینک در منقضی خواهد شد",
+ // TODO New key - Add a translation
+ "bitstream-request-a-copy.access-by-token.expiry-label": "Access provided by this link will expire on",
// "bitstream-request-a-copy.access-by-token.expired": "Access provided by this link is no longer possible. Access expired on",
- "bitstream-request-a-copy.access-by-token.expired": "دسترسی ارائه شده توسط این لینک دیگر امکانپذیر نیست. دسترسی منقضی شده است ",
+ // TODO New key - Add a translation
+ "bitstream-request-a-copy.access-by-token.expired": "Access provided by this link is no longer possible. Access expired on",
// "bitstream-request-a-copy.access-by-token.not-granted": "Access provided by this link is not possible. Access has either not been granted, or has been revoked.",
- "bitstream-request-a-copy.access-by-token.not-granted": "دسترسی از طریق این لینک امکانپذیر نیست. دسترسی یا اعطا نشده یا لغو شده است.",
+ // TODO New key - Add a translation
+ "bitstream-request-a-copy.access-by-token.not-granted": "Access provided by this link is not possible. Access has either not been granted, or has been revoked.",
// "bitstream-request-a-copy.access-by-token.re-request": "Follow restricted download links to submit a new request for access.",
- "bitstream-request-a-copy.access-by-token.re-request": "برای ارسال درخواست جدید دسترسی، لینکهای دانلود محدود شده را دنبال کنید.",
+ // TODO New key - Add a translation
+ "bitstream-request-a-copy.access-by-token.re-request": "Follow restricted download links to submit a new request for access.",
// "bitstream-request-a-copy.access-by-token.alt-text": "Access to this item is provided by a secure token",
- "bitstream-request-a-copy.access-by-token.alt-text": "دسترسی به این آیتم توسط یک توکن امن فراهم شده است",
+ // TODO New key - Add a translation
+ "bitstream-request-a-copy.access-by-token.alt-text": "Access to this item is provided by a secure token",
// "browse.back.all-results": "All browse results",
"browse.back.all-results": "همه نتایج مرور",
@@ -1802,14 +1830,6 @@
// "browse.title": "Browsing by {{ field }}{{ startsWith }} {{ value }}",
"browse.title": "مرور براساس {{ field }}{{ startsWith }} {{ value }}",
- // "browse.taxonomy.show_next_results": "Show next results",
- // TODO New key - Add a translation
- "browse.taxonomy.show_next_results": "Show next results",
-
- // "browse.taxonomy.show_previous_results": "Show previous results",
- // TODO New key - Add a translation
- "browse.taxonomy.show_previous_results": "Show previous results",
-
// "browse.title.page": "Browsing by {{ field }} {{ value }}",
"browse.title.page": "مرور براساس {{ field }} {{ value }}",
@@ -1862,8 +1882,7 @@
// "collection.delete.notification.fail": "Collection could not be deleted",
"collection.delete.notification.fail": "مجموعه نمیتواند حذف شود",
- // "collection.delete.notification.success": "Successfully started a process to delete this collection",
- // TODO Source message changed - Revise the translation
+ // "collection.delete.notification.success": "Successfully deleted collection",
"collection.delete.notification.success": "مجموعه با موفقیت حذف شد",
// "collection.delete.text": "Are you sure you want to delete collection \"{{ dso }}\"",
@@ -1879,10 +1898,12 @@
"collection.edit.breadcrumbs": "ویرایش مجموعه",
// "collection.edit.tabs.mapper.head": "Item Mapper",
- "collection.edit.tabs.mapper.head": "نگاشت آیتم",
+ // TODO New key - Add a translation
+ "collection.edit.tabs.mapper.head": "Item Mapper",
// "collection.edit.tabs.item-mapper.title": "Collection Edit - Item Mapper",
- "collection.edit.tabs.item-mapper.title": "ویرایش مجموعه- نگاشت آیتم",
+ // TODO New key - Add a translation
+ "collection.edit.tabs.item-mapper.title": "ویرایش مجموعه - Item Mapper",
// "collection.edit.item-mapper.cancel": "Cancel",
"collection.edit.item-mapper.cancel": "لغو",
@@ -1891,755 +1912,916 @@
"collection.edit.item-mapper.collection": "مجموعه: \"{{name}}\"",
// "collection.edit.item-mapper.confirm": "Map selected items",
- "collection.edit.item-mapper.confirm": "نگاشت آیتمهای انتخاب شده",
+ // TODO New key - Add a translation
+ "collection.edit.item-mapper.confirm": "Map selected items",
// "collection.edit.item-mapper.description": "This is the item mapper tool that allows collection administrators to map items from other collections into this collection. You can search for items from other collections and map them, or browse the list of currently mapped items.",
- "collection.edit.item-mapper.description": "این ابزار نگاشت آیتم است که به مدیران مجموعه اجازه میدهد آیتمها را از مجموعههای دیگر به این مجموعه نگاشت کنند. میتوانید آیتمها را از مجموعههای دیگر جستجو کرده و آنها را نگاشت کنید، یا فهرست آیتمهای نگاشتشدهی فعلی را مرور کنید.",
+ // TODO New key - Add a translation
+ "collection.edit.item-mapper.description": "This is the item mapper tool that allows collection administrators to map items from other collections into this collection. You can search for items from other collections and map them, or browse the list of currently mapped items.",
// "collection.edit.item-mapper.head": "Item Mapper - Map Items from Other Collections",
- "collection.edit.item-mapper.head": "نگاشت آیتم - آیتمها را از مجموعههای دیگر نگاشت کنید",
+ // TODO New key - Add a translation
+ "collection.edit.item-mapper.head": "Item Mapper - Map Items from Other Collections",
// "collection.edit.item-mapper.no-search": "Please enter a query to search",
- "collection.edit.item-mapper.no-search": "لطفا یک پرس و جو برای جستجو وارد کنید",
+ // TODO New key - Add a translation
+ "collection.edit.item-mapper.no-search": "Please enter a query to search",
// "collection.edit.item-mapper.notifications.map.error.content": "Errors occurred for mapping of {{amount}} items.",
- "collection.edit.item-mapper.notifications.map.error.content": "{آیتمها رخ داد{amount}} خطا برای نگاشت ",
+ // TODO New key - Add a translation
+ "collection.edit.item-mapper.notifications.map.error.content": "Errors occurred for mapping of {{amount}} items.",
// "collection.edit.item-mapper.notifications.map.error.head": "Mapping errors",
- "collection.edit.item-mapper.notifications.map.error.head": "خطاهای نگاشت",
+ // TODO New key - Add a translation
+ "collection.edit.item-mapper.notifications.map.error.head": "Mapping errors",
// "collection.edit.item-mapper.notifications.map.success.content": "Successfully mapped {{amount}} items.",
- "collection.edit.item-mapper.notifications.map.success.content": "بطور موفق نگاشت {{amount}} آیتمها انجام شد",
+ // TODO New key - Add a translation
+ "collection.edit.item-mapper.notifications.map.success.content": "Successfully mapped {{amount}} items.",
// "collection.edit.item-mapper.notifications.map.success.head": "Mapping completed",
- "collection.edit.item-mapper.notifications.map.success.head": "نگاشت کامل شد",
+ // TODO New key - Add a translation
+ "collection.edit.item-mapper.notifications.map.success.head": "Mapping completed",
// "collection.edit.item-mapper.notifications.unmap.error.content": "Errors occurred for removing the mappings of {{amount}} items.",
- "collection.edit.item-mapper.notifications.unmap.error.content": "خطاهایی در حذف نگاشتهای {{amount}} آیتمها رخ داده است.",
+ // TODO New key - Add a translation
+ "collection.edit.item-mapper.notifications.unmap.error.content": "Errors occurred for removing the mappings of {{amount}} items.",
// "collection.edit.item-mapper.notifications.unmap.error.head": "Remove mapping errors",
- "collection.edit.item-mapper.notifications.unmap.error.head": "حذف خطاهای نگاشت",
+ // TODO New key - Add a translation
+ "collection.edit.item-mapper.notifications.unmap.error.head": "Remove mapping errors",
// "collection.edit.item-mapper.notifications.unmap.success.content": "Successfully removed the mappings of {{amount}} items.",
- "collection.edit.item-mapper.notifications.unmap.success.content": "نگاشتهای {{amount}} آیتمها با موفقیت حذف شدند.",
+ // TODO New key - Add a translation
+ "collection.edit.item-mapper.notifications.unmap.success.content": "Successfully removed the mappings of {{amount}} items.",
// "collection.edit.item-mapper.notifications.unmap.success.head": "Remove mapping completed",
- "collection.edit.item-mapper.notifications.unmap.success.head": "حذف نگاشت کامل شد",
+ // TODO New key - Add a translation
+ "collection.edit.item-mapper.notifications.unmap.success.head": "Remove mapping completed",
// "collection.edit.item-mapper.remove": "Remove selected item mappings",
- "collection.edit.item-mapper.remove": "حذف نگاشتهای آیتم انتخاب شده",
+ // TODO New key - Add a translation
+ "collection.edit.item-mapper.remove": "Remove selected item mappings",
// "collection.edit.item-mapper.search-form.placeholder": "Search items...",
- "collection.edit.item-mapper.search-form.placeholder": "جستجوی آیتمها...",
+ // TODO New key - Add a translation
+ "collection.edit.item-mapper.search-form.placeholder": "Search items...",
// "collection.edit.item-mapper.tabs.browse": "Browse mapped items",
- "collection.edit.item-mapper.tabs.browse": "مرور آیتمهای نگاشت شده",
+ // TODO New key - Add a translation
+ "collection.edit.item-mapper.tabs.browse": "Browse mapped items",
// "collection.edit.item-mapper.tabs.map": "Map new items",
- "collection.edit.item-mapper.tabs.map": "نگاشت آیتمهای جدید",
+ // TODO New key - Add a translation
+ "collection.edit.item-mapper.tabs.map": "Map new items",
// "collection.edit.logo.delete.title": "Delete logo",
- "collection.edit.logo.delete.title": "حذف لوگو",
+ // TODO New key - Add a translation
+ "collection.edit.logo.delete.title": "Delete logo",
// "collection.edit.logo.delete-undo.title": "Undo delete",
- "collection.edit.logo.delete-undo.title": "برگرداندن حذف",
+ // TODO New key - Add a translation
+ "collection.edit.logo.delete-undo.title": "Undo delete",
// "collection.edit.logo.label": "Collection logo",
- "collection.edit.logo.label": "لوگوی مجموعه",
+ // TODO New key - Add a translation
+ "collection.edit.logo.label": "Collection logo",
// "collection.edit.logo.notifications.add.error": "Uploading collection logo failed. Please verify the content before retrying.",
- "collection.edit.logo.notifications.add.error": "بارگزاری لوگوی مجموعه ناموفق بود. لطفاً قبل از تلاش مجدد، محتوا را تأیید کنید.",
+ // TODO New key - Add a translation
+ "collection.edit.logo.notifications.add.error": "Uploading collection logo failed. Please verify the content before retrying.",
// "collection.edit.logo.notifications.add.success": "Uploading collection logo successful.",
- "collection.edit.logo.notifications.add.success": "بارگزاری لوگوی مجموعه موفق بود",
+ // TODO New key - Add a translation
+ "collection.edit.logo.notifications.add.success": "Uploading collection logo successful.",
// "collection.edit.logo.notifications.delete.success.title": "Logo deleted",
- "collection.edit.logo.notifications.delete.success.title": "لوگو حذف شد",
+ // TODO New key - Add a translation
+ "collection.edit.logo.notifications.delete.success.title": "Logo deleted",
// "collection.edit.logo.notifications.delete.success.content": "Successfully deleted the collection's logo",
- "collection.edit.logo.notifications.delete.success.content": "لوگوی مجموعه با موفقیت حذف شد",
+ // TODO New key - Add a translation
+ "collection.edit.logo.notifications.delete.success.content": "Successfully deleted the collection's logo",
// "collection.edit.logo.notifications.delete.error.title": "Error deleting logo",
- "collection.edit.logo.notifications.delete.error.title": "خطای در حذف لگو",
+ // TODO New key - Add a translation
+ "collection.edit.logo.notifications.delete.error.title": "Error deleting logo",
// "collection.edit.logo.upload": "Drop a collection logo to upload",
- "collection.edit.logo.upload": "لوگوی مجموعه را برای آپلود رها کنید",
+ // TODO New key - Add a translation
+ "collection.edit.logo.upload": "Drop a collection logo to upload",
// "collection.edit.notifications.success": "Successfully edited the collection",
- "collection.edit.notifications.success": "مجموعه با موفقیت ویرایش شد",
+ // TODO New key - Add a translation
+ "collection.edit.notifications.success": "Successfully edited the collection",
// "collection.edit.return": "Back",
- "collection.edit.return": "برگشت",
+ // TODO New key - Add a translation
+ "collection.edit.return": "Back",
// "collection.edit.tabs.access-control.head": "Access Control",
- "collection.edit.tabs.access-control.head": "کنترل دسترسی",
+ // TODO New key - Add a translation
+ "collection.edit.tabs.access-control.head": "Access Control",
// "collection.edit.tabs.access-control.title": "Collection Edit - Access Control",
- "collection.edit.tabs.access-control.title": "ویرایش مجموعه- کنترل دسترسی",
+ // TODO New key - Add a translation
+ "collection.edit.tabs.access-control.title": "Collection Edit - Access Control",
// "collection.edit.tabs.curate.head": "Curate",
- "collection.edit.tabs.curate.head": "دست چین",
+ // TODO New key - Add a translation
+ "collection.edit.tabs.curate.head": "Curate",
// "collection.edit.tabs.curate.title": "Collection Edit - Curate",
- "collection.edit.tabs.curate.title": "ویرایش مجموعه- دست چین",
+ // TODO New key - Add a translation
+ "collection.edit.tabs.curate.title": "Collection Edit - Curate",
// "collection.edit.tabs.authorizations.head": "Authorizations",
- "collection.edit.tabs.authorizations.head": "مجوزها",
+ // TODO New key - Add a translation
+ "collection.edit.tabs.authorizations.head": "Authorizations",
// "collection.edit.tabs.authorizations.title": "Collection Edit - Authorizations",
- "collection.edit.tabs.authorizations.title": "ویرایش مجموعه- مجوزها",
+ // TODO New key - Add a translation
+ "collection.edit.tabs.authorizations.title": "Collection Edit - Authorizations",
// "collection.edit.item.authorizations.load-bundle-button": "Load more bundles",
- "collection.edit.item.authorizations.load-bundle-button": "بارگزاری بسته های بیشتر",
+ // TODO New key - Add a translation
+ "collection.edit.item.authorizations.load-bundle-button": "Load more bundles",
// "collection.edit.item.authorizations.load-more-button": "Load more",
- "collection.edit.item.authorizations.load-more-button": "بارگزاری بیشتر",
+ // TODO New key - Add a translation
+ "collection.edit.item.authorizations.load-more-button": "Load more",
// "collection.edit.item.authorizations.show-bitstreams-button": "Show bitstream policies for bundle",
- "collection.edit.item.authorizations.show-bitstreams-button": "نمایش سیساستهای فایل برای بسته",
+ // TODO New key - Add a translation
+ "collection.edit.item.authorizations.show-bitstreams-button": "Show bitstream policies for bundle",
// "collection.edit.tabs.metadata.head": "Edit Metadata",
- "collection.edit.tabs.metadata.head": "ویرایش ابرداده",
+ // TODO New key - Add a translation
+ "collection.edit.tabs.metadata.head": "Edit Metadata",
// "collection.edit.tabs.metadata.title": "Collection Edit - Metadata",
- "collection.edit.tabs.metadata.title": "ویرایش مجموعه- ابرداده",
+ // TODO New key - Add a translation
+ "collection.edit.tabs.metadata.title": "Collection Edit - Metadata",
// "collection.edit.tabs.roles.head": "Assign Roles",
- "collection.edit.tabs.roles.head": "اختصاص نقشها",
+ // TODO New key - Add a translation
+ "collection.edit.tabs.roles.head": "Assign Roles",
// "collection.edit.tabs.roles.title": "Collection Edit - Roles",
- "collection.edit.tabs.roles.title": "ویرایش مجموعه - نقشها",
+ // TODO New key - Add a translation
+ "collection.edit.tabs.roles.title": "Collection Edit - Roles",
// "collection.edit.tabs.source.external": "This collection harvests its content from an external source",
- "collection.edit.tabs.source.external": "این مجموعه محتوای خود را از یک منبع خارجی جمع آوری میکند",
+ // TODO New key - Add a translation
+ "collection.edit.tabs.source.external": "This collection harvests its content from an external source",
// "collection.edit.tabs.source.form.errors.oaiSource.required": "You must provide a set id of the target collection.",
- "collection.edit.tabs.source.form.errors.oaiSource.required": "شما باید یک شناسه id مشخص برای مجموعه هدف فراهم کنید.",
+ // TODO New key - Add a translation
+ "collection.edit.tabs.source.form.errors.oaiSource.required": "You must provide a set id of the target collection.",
// "collection.edit.tabs.source.form.harvestType": "Content being harvested",
- "collection.edit.tabs.source.form.harvestType": "محتوا در حال جمع آوری است",
+ // TODO New key - Add a translation
+ "collection.edit.tabs.source.form.harvestType": "Content being harvested",
// "collection.edit.tabs.source.form.head": "Configure an external source",
- "collection.edit.tabs.source.form.head": "پیکربندی یک منبع خارجی",
+ // TODO New key - Add a translation
+ "collection.edit.tabs.source.form.head": "Configure an external source",
// "collection.edit.tabs.source.form.metadataConfigId": "Metadata Format",
- "collection.edit.tabs.source.form.metadataConfigId": "قالب ابرداده",
+ // TODO New key - Add a translation
+ "collection.edit.tabs.source.form.metadataConfigId": "Metadata Format",
// "collection.edit.tabs.source.form.oaiSetId": "OAI specific set id",
- "collection.edit.tabs.source.form.oaiSetId": "تنظیم شناسه خاص OAI",
+ // TODO New key - Add a translation
+ "collection.edit.tabs.source.form.oaiSetId": "OAI specific set id",
// "collection.edit.tabs.source.form.oaiSource": "OAI Provider",
- "collection.edit.tabs.source.form.oaiSource": "فراهم کننده OAI",
+ // TODO New key - Add a translation
+ "collection.edit.tabs.source.form.oaiSource": "OAI Provider",
// "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_BITSTREAMS": "Harvest metadata and bitstreams (requires ORE support)",
- "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_BITSTREAMS": "جمعآوری فرادادهها و جریانهای بیتی (نیاز به پشتیبانی ORE)",
+ // TODO New key - Add a translation
+ "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_BITSTREAMS": "Harvest metadata and bitstreams (requires ORE support)",
// "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_REF": "Harvest metadata and references to bitstreams (requires ORE support)",
- "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_REF": "جمعآوری لبردادهها و ارجاعات به فایلها (نیاز به پشتیبانی ORE)",
+ // TODO New key - Add a translation
+ "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_REF": "Harvest metadata and references to bitstreams (requires ORE support)",
// "collection.edit.tabs.source.form.options.harvestType.METADATA_ONLY": "Harvest metadata only",
- "collection.edit.tabs.source.form.options.harvestType.METADATA_ONLY": "فقط جمع آوری ابرداده",
+ // TODO New key - Add a translation
+ "collection.edit.tabs.source.form.options.harvestType.METADATA_ONLY": "Harvest metadata only",
// "collection.edit.tabs.source.head": "Content Source",
- "collection.edit.tabs.source.head": "منبع محتوا",
+ // TODO New key - Add a translation
+ "collection.edit.tabs.source.head": "Content Source",
// "collection.edit.tabs.source.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button",
- "collection.edit.tabs.source.notifications.discarded.content": "تغییرات شما لغو شد. برای بازگرداندن تغییرات، روی دکمه «بازگرد» کلیک کنید.",
+ // TODO New key - Add a translation
+ "collection.edit.tabs.source.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button",
// "collection.edit.tabs.source.notifications.discarded.title": "Changes discarded",
- "collection.edit.tabs.source.notifications.discarded.title": "تغییرات لغو شدند",
+ // TODO New key - Add a translation
+ "collection.edit.tabs.source.notifications.discarded.title": "Changes discarded",
// "collection.edit.tabs.source.notifications.invalid.content": "Your changes were not saved. Please make sure all fields are valid before you save.",
- "collection.edit.tabs.source.notifications.invalid.content": "تغییرات شما ذخیره نشد. لطفاً قبل از ذخیره، مطمئن شوید که همه فیلدها معتبر هستند.",
+ // TODO New key - Add a translation
+ "collection.edit.tabs.source.notifications.invalid.content": "Your changes were not saved. Please make sure all fields are valid before you save.",
// "collection.edit.tabs.source.notifications.invalid.title": "Metadata invalid",
- "collection.edit.tabs.source.notifications.invalid.title": "ابرداده نامعتبر",
+ // TODO New key - Add a translation
+ "collection.edit.tabs.source.notifications.invalid.title": "Metadata invalid",
// "collection.edit.tabs.source.notifications.saved.content": "Your changes to this collection's content source were saved.",
- "collection.edit.tabs.source.notifications.saved.content": "تغییرات شما در منبع محتوای این مجموعه ذخیره شد.",
+ // TODO New key - Add a translation
+ "collection.edit.tabs.source.notifications.saved.content": "Your changes to this collection's content source were saved.",
// "collection.edit.tabs.source.notifications.saved.title": "Content Source saved",
- "collection.edit.tabs.source.notifications.saved.title": "منبع محتوا ذخیره شد",
+ // TODO New key - Add a translation
+ "collection.edit.tabs.source.notifications.saved.title": "Content Source saved",
// "collection.edit.tabs.source.title": "Collection Edit - Content Source",
- "collection.edit.tabs.source.title": "ویرایش مجموعه- منبع محتوا",
+ // TODO New key - Add a translation
+ "collection.edit.tabs.source.title": "Collection Edit - Content Source",
// "collection.edit.template.add-button": "Add",
- "collection.edit.template.add-button": "افزودن",
+ // TODO New key - Add a translation
+ "collection.edit.template.add-button": "Add",
// "collection.edit.template.breadcrumbs": "Item template",
- "collection.edit.template.breadcrumbs": "الگوی آیتم",
+ // TODO New key - Add a translation
+ "collection.edit.template.breadcrumbs": "Item template",
// "collection.edit.template.cancel": "Cancel",
- "collection.edit.template.cancel": "لغو",
+ // TODO New key - Add a translation
+ "collection.edit.template.cancel": "Cancel",
// "collection.edit.template.delete-button": "Delete",
- "collection.edit.template.delete-button": "حذف",
+ // TODO New key - Add a translation
+ "collection.edit.template.delete-button": "Delete",
// "collection.edit.template.edit-button": "Edit",
- "collection.edit.template.edit-button": "ویرایش",
+ // TODO New key - Add a translation
+ "collection.edit.template.edit-button": "Edit",
// "collection.edit.template.error": "An error occurred retrieving the template item",
- "collection.edit.template.error": "خطایی در بازیابی آیتم الگو رخ داد",
+ // TODO New key - Add a translation
+ "collection.edit.template.error": "An error occurred retrieving the template item",
// "collection.edit.template.head": "Edit Template Item for Collection \"{{ collection }}\"",
- "collection.edit.template.head": "ویرایش الگوی آیتم برای مجموعه \"{{ collection }}\"",
+ // TODO New key - Add a translation
+ "collection.edit.template.head": "Edit Template Item for Collection \"{{ collection }}\"",
// "collection.edit.template.label": "Template item",
- "collection.edit.template.label": "آیتم الگو",
+ // TODO New key - Add a translation
+ "collection.edit.template.label": "Template item",
// "collection.edit.template.loading": "Loading template item...",
- "collection.edit.template.loading": "بارگزاری آیتم الگو...",
+ // TODO New key - Add a translation
+ "collection.edit.template.loading": "Loading template item...",
// "collection.edit.template.notifications.delete.error": "Failed to delete the item template",
- "collection.edit.template.notifications.delete.error": "حذف آیتم الگو ناموفق بود",
+ // TODO New key - Add a translation
+ "collection.edit.template.notifications.delete.error": "Failed to delete the item template",
// "collection.edit.template.notifications.delete.success": "Successfully deleted the item template",
- "collection.edit.template.notifications.delete.success": "آیتم الگو با موفقیت حذف شد",
+ // TODO New key - Add a translation
+ "collection.edit.template.notifications.delete.success": "Successfully deleted the item template",
// "collection.edit.template.title": "Edit Template Item",
- "collection.edit.template.title": "ویرایش الگوی آیتم",
+ // TODO New key - Add a translation
+ "collection.edit.template.title": "Edit Template Item",
// "collection.form.abstract": "Short Description",
- "collection.form.abstract": "توصیف کوتاه",
+ // TODO New key - Add a translation
+ "collection.form.abstract": "Short Description",
// "collection.form.description": "Introductory text (HTML)",
- "collection.form.description": "متن مقدماتی (HTML)",
-
- // "collection.form.errors.title.required": "Please enter a collection name",
- "collection.form.errors.title.required": "لطفا نام مجموعه را وارد کنید",
-
- // "collection.form.errors.submissionDefinition.required": "Please choose a submission definition for this collection",
// TODO New key - Add a translation
- "collection.form.errors.submissionDefinition.required": "Please choose a submission definition for this collection",
+ "collection.form.description": "Introductory text (HTML)",
- // "collection.form.errors.entityType.required": "Please choose an entity type for this collection",
+ // "collection.form.errors.title.required": "Please enter a collection name",
// TODO New key - Add a translation
- "collection.form.errors.entityType.required": "Please choose an entity type for this collection",
+ "collection.form.errors.title.required": "Please enter a collection name",
// "collection.form.license": "License",
- "collection.form.license": "مجوز",
+ // TODO New key - Add a translation
+ "collection.form.license": "License",
// "collection.form.provenance": "Provenance",
- "collection.form.provenance": "منشأ",
+ // TODO New key - Add a translation
+ "collection.form.provenance": "Provenance",
// "collection.form.rights": "Copyright text (HTML)",
- "collection.form.rights": "متن حق کپی (HTML)",
-
- // "collection.form.sharedWorkspace": "Shared workspace",
// TODO New key - Add a translation
- "collection.form.sharedWorkspace": "Shared workspace",
+ "collection.form.rights": "Copyright text (HTML)",
// "collection.form.tableofcontents": "News (HTML)",
- "collection.form.tableofcontents": "خبر (HTML)",
-
- // "collection.form.title": "Name",
- "collection.form.title": "نام",
-
- // "collection.form.entityType": "Entity Type",
- "collection.form.entityType": "نوع موجودیت",
-
- // "collection.form.errors.entityType.required": "Please choose an entity type for this collection",
// TODO New key - Add a translation
- "collection.form.errors.entityType.required": "Please choose an entity type for this collection",
+ "collection.form.tableofcontents": "News (HTML)",
- // "collection.form.errors.submissionDefinition.required": "Please choose a submission definition for this collection",
- // TODO New key - Add a translation
- "collection.form.errors.submissionDefinition.required": "Please choose a submission definition for this collection",
-
- // "collection.form.submissionDefinition": "Submission definition",
+ // "collection.form.title": "Name",
// TODO New key - Add a translation
- "collection.form.submissionDefinition": "Submission definition",
+ "collection.form.title": "Name",
- // "collection.form.correctionSubmissionDefinition": "Submission definition for correction request",
+ // "collection.form.entityType": "Entity Type",
// TODO New key - Add a translation
- "collection.form.correctionSubmissionDefinition": "Submission definition for correction request",
-
-
+ "collection.form.entityType": "Entity Type",
// "collection.listelement.badge": "Collection",
- "collection.listelement.badge": "مجموعه",
+ // TODO New key - Add a translation
+ "collection.listelement.badge": "Collection",
// "collection.logo": "Collection logo",
- "collection.logo": "لوگوی مجموعه",
+ // TODO New key - Add a translation
+ "collection.logo": "Collection logo",
// "collection.page.browse.search.head": "Search",
- "collection.page.browse.search.head": "جستجو",
+ // TODO New key - Add a translation
+ "collection.page.browse.search.head": "Search",
// "collection.page.edit": "Edit this collection",
- "collection.page.edit": "ویرایش مجموعه",
+ // TODO New key - Add a translation
+ "collection.page.edit": "Edit this collection",
// "collection.page.handle": "Permanent URI for this collection",
- "collection.page.handle": "URI دائمی برای این مجموعه",
+ // TODO New key - Add a translation
+ "collection.page.handle": "Permanent URI for this collection",
// "collection.page.license": "License",
- "collection.page.license": "مجوز",
+ // TODO New key - Add a translation
+ "collection.page.license": "License",
// "collection.page.news": "News",
- "collection.page.news": "خبر",
+ // TODO New key - Add a translation
+ "collection.page.news": "News",
// "collection.page.options": "Options",
- "collection.page.options": "گزینهها",
+ // TODO New key - Add a translation
+ "collection.page.options": "Options",
// "collection.search.breadcrumbs": "Search",
- "collection.search.breadcrumbs": "جستجو",
+ // TODO New key - Add a translation
+ "collection.search.breadcrumbs": "Search",
// "collection.search.results.head": "Search Results",
- "collection.search.results.head": "نتایج جستجو",
+ // TODO New key - Add a translation
+ "collection.search.results.head": "Search Results",
// "collection.select.confirm": "Confirm selected",
- "collection.select.confirm": "تأیید انتخاب شده",
+ // TODO New key - Add a translation
+ "collection.select.confirm": "Confirm selected",
// "collection.select.empty": "No collections to show",
- "collection.select.empty": "هیچ مجموعه ای برای نمایش وجود ندارد",
+ // TODO New key - Add a translation
+ "collection.select.empty": "No collections to show",
// "collection.select.table.selected": "Selected collections",
- "collection.select.table.selected": "مجموعه های انتخاب شده",
+ // TODO New key - Add a translation
+ "collection.select.table.selected": "Selected collections",
// "collection.select.table.select": "Select collection",
- "collection.select.table.select": "انتخاب مجموعه",
+ // TODO New key - Add a translation
+ "collection.select.table.select": "Select collection",
// "collection.select.table.deselect": "Deselect collection",
- "collection.select.table.deselect": "لغو انتخاب مجموعه",
+ // TODO New key - Add a translation
+ "collection.select.table.deselect": "Deselect collection",
// "collection.select.table.title": "Title",
- "collection.select.table.title": "عنوان",
+ // TODO New key - Add a translation
+ "collection.select.table.title": "Title",
// "collection.source.controls.head": "Harvest Controls",
- "collection.source.controls.head": "کنترلهای جمع آوری",
+ // TODO New key - Add a translation
+ "collection.source.controls.head": "Harvest Controls",
// "collection.source.controls.test.submit.error": "Something went wrong with initiating the testing of the settings",
- "collection.source.controls.test.submit.error": "مشکلی در شروع تست تنظیمات پیش آمد",
+ // TODO New key - Add a translation
+ "collection.source.controls.test.submit.error": "Something went wrong with initiating the testing of the settings",
// "collection.source.controls.test.failed": "The script to test the settings has failed",
- "collection.source.controls.test.failed": "اسکریپت برای تست تنظیمات ناموفق بود",
+ // TODO New key - Add a translation
+ "collection.source.controls.test.failed": "The script to test the settings has failed",
// "collection.source.controls.test.completed": "The script to test the settings has successfully finished",
- "collection.source.controls.test.completed": "اسکریپت برای تست تنظیمات با موفقیت به پایان رسید",
+ // TODO New key - Add a translation
+ "collection.source.controls.test.completed": "The script to test the settings has successfully finished",
// "collection.source.controls.test.submit": "Test configuration",
- "collection.source.controls.test.submit": "پیکربندی تست",
+ // TODO New key - Add a translation
+ "collection.source.controls.test.submit": "Test configuration",
// "collection.source.controls.test.running": "Testing configuration...",
- "collection.source.controls.test.running": "پیکربندی آزمایشی...",
+ // TODO New key - Add a translation
+ "collection.source.controls.test.running": "Testing configuration...",
// "collection.source.controls.import.submit.success": "The import has been successfully initiated",
- "collection.source.controls.import.submit.success": "ورود با موفقیت آغاز شد",
+ // TODO New key - Add a translation
+ "collection.source.controls.import.submit.success": "The import has been successfully initiated",
// "collection.source.controls.import.submit.error": "Something went wrong with initiating the import",
- "collection.source.controls.import.submit.error": "Sمشکلی در شروع وارد کردن پیش آمد",
+ // TODO New key - Add a translation
+ "collection.source.controls.import.submit.error": "Something went wrong with initiating the import",
// "collection.source.controls.import.submit": "Import now",
- "collection.source.controls.import.submit": "اکنون وارد کنید",
+ // TODO New key - Add a translation
+ "collection.source.controls.import.submit": "Import now",
// "collection.source.controls.import.running": "Importing...",
- "collection.source.controls.import.running": "در حال وارد کردن...",
+ // TODO New key - Add a translation
+ "collection.source.controls.import.running": "Importing...",
// "collection.source.controls.import.failed": "An error occurred during the import",
- "collection.source.controls.import.failed": "خطایی در هنگام وارد کردن رخ داد",
+ // TODO New key - Add a translation
+ "collection.source.controls.import.failed": "An error occurred during the import",
// "collection.source.controls.import.completed": "The import completed",
- "collection.source.controls.import.completed": "وارد کردن کامل شد",
+ // TODO New key - Add a translation
+ "collection.source.controls.import.completed": "The import completed",
// "collection.source.controls.reset.submit.success": "The reset and reimport has been successfully initiated",
- "collection.source.controls.reset.submit.success": "تنظیم و وارد کردن مجدد با موفقیت آغاز شد",
+ // TODO New key - Add a translation
+ "collection.source.controls.reset.submit.success": "The reset and reimport has been successfully initiated",
// "collection.source.controls.reset.submit.error": "Something went wrong with initiating the reset and reimport",
- "collection.source.controls.reset.submit.error": "مشکلی در شروع تنظیم مجدد و وارد کردن مجدد پیش آمد",
+ // TODO New key - Add a translation
+ "collection.source.controls.reset.submit.error": "Something went wrong with initiating the reset and reimport",
// "collection.source.controls.reset.failed": "An error occurred during the reset and reimport",
- "collection.source.controls.reset.failed": "هنگام تنظیم مجدد و وارد کردن مجدد، خطایی روی داد",
+ // TODO New key - Add a translation
+ "collection.source.controls.reset.failed": "An error occurred during the reset and reimport",
// "collection.source.controls.reset.completed": "The reset and reimport completed",
- "collection.source.controls.reset.completed": "تنظیم مجدد و وارد کردن مجدد تکمیل شد",
+ // TODO New key - Add a translation
+ "collection.source.controls.reset.completed": "The reset and reimport completed",
// "collection.source.controls.reset.submit": "Reset and reimport",
- "collection.source.controls.reset.submit": "تنظیم و وارد کردن مجدد",
+ // TODO New key - Add a translation
+ "collection.source.controls.reset.submit": "Reset and reimport",
// "collection.source.controls.reset.running": "Resetting and reimporting...",
- "collection.source.controls.reset.running": "تنظیم و وارد کردن مجدد ...",
+ // TODO New key - Add a translation
+ "collection.source.controls.reset.running": "Resetting and reimporting...",
// "collection.source.controls.harvest.status": "Harvest status:",
- "collection.source.controls.harvest.status": "وضعیت جمع آوری:",
+ // TODO New key - Add a translation
+ "collection.source.controls.harvest.status": "Harvest status:",
// "collection.source.controls.harvest.start": "Harvest start time:",
- "collection.source.controls.harvest.start": "زمان شروع جمع آوری:",
+ // TODO New key - Add a translation
+ "collection.source.controls.harvest.start": "Harvest start time:",
// "collection.source.controls.harvest.last": "Last time harvested:",
- "collection.source.controls.harvest.last": "آخرین زمان جمع آوری:",
+ // TODO New key - Add a translation
+ "collection.source.controls.harvest.last": "Last time harvested:",
// "collection.source.controls.harvest.message": "Harvest info:",
- "collection.source.controls.harvest.message": "اطلاعات جمع آوری:",
+ // TODO New key - Add a translation
+ "collection.source.controls.harvest.message": "Harvest info:",
// "collection.source.controls.harvest.no-information": "N/A",
+ // TODO New key - Add a translation
"collection.source.controls.harvest.no-information": "N/A",
// "collection.source.update.notifications.error.content": "The provided settings have been tested and didn't work.",
- "collection.source.update.notifications.error.content": "تنظیمات ارائه شده تست شده و جواب نداده است.",
+ // TODO New key - Add a translation
+ "collection.source.update.notifications.error.content": "The provided settings have been tested and didn't work.",
// "collection.source.update.notifications.error.title": "Server Error",
- "collection.source.update.notifications.error.title": "خطای سرور",
+ // TODO New key - Add a translation
+ "collection.source.update.notifications.error.title": "Server Error",
// "communityList.breadcrumbs": "Community List",
- "communityList.breadcrumbs": "لیست جامعه",
+ // TODO New key - Add a translation
+ "communityList.breadcrumbs": "Community List",
// "communityList.tabTitle": "Community List",
- "communityList.tabTitle": "لیست جامعه",
+ // TODO New key - Add a translation
+ "communityList.tabTitle": "Community List",
// "communityList.title": "List of Communities",
- "communityList.title": "لیست جامعه ها",
+ // TODO New key - Add a translation
+ "communityList.title": "List of Communities",
// "communityList.showMore": "Show More",
- "communityList.showMore": "نمایش بیشتر",
+ // TODO New key - Add a translation
+ "communityList.showMore": "Show More",
// "communityList.expand": "Expand {{ name }}",
- "communityList.expand": "گسترش {{ name }}",
+ // TODO New key - Add a translation
+ "communityList.expand": "Expand {{ name }}",
// "communityList.collapse": "Collapse {{ name }}",
- "communityList.collapse": "جمع کردن {{ name }}",
+ // TODO New key - Add a translation
+ "communityList.collapse": "Collapse {{ name }}",
// "community.browse.logo": "Browse for a community logo",
- "community.browse.logo": "جستجوی لوگوی جامعه",
+ // TODO New key - Add a translation
+ "community.browse.logo": "Browse for a community logo",
// "community.subcoms-cols.breadcrumbs": "Subcommunities and Collections",
- "community.subcoms-cols.breadcrumbs": "زیر جامعه ها و مجموعه ها",
+ // TODO New key - Add a translation
+ "community.subcoms-cols.breadcrumbs": "Subcommunities and Collections",
// "community.create.breadcrumbs": "Create Community",
- "community.create.breadcrumbs": "ایجاد جامعه",
+ // TODO New key - Add a translation
+ "community.create.breadcrumbs": "Create Community",
// "community.create.head": "Create a Community",
- "community.create.head": "ایجاد یک جامعه",
+ // TODO New key - Add a translation
+ "community.create.head": "Create a Community",
// "community.create.notifications.success": "Successfully created the community",
- "community.create.notifications.success": "جامعه با موفقیت ایجاد شد",
+ // TODO New key - Add a translation
+ "community.create.notifications.success": "Successfully created the community",
// "community.create.sub-head": "Create a Sub-Community for Community {{ parent }}",
- "community.create.sub-head": "ایجاد یک زیر جامعه برای جامعه {{ parent }}",
+ // TODO New key - Add a translation
+ "community.create.sub-head": "Create a Sub-Community for Community {{ parent }}",
// "community.curate.header": "Curate Community: {{community}}",
- "community.curate.header": "دست چین جامعه: {{community}}",
+ // TODO New key - Add a translation
+ "community.curate.header": "Curate Community: {{community}}",
// "community.delete.cancel": "Cancel",
- "community.delete.cancel": "لغو",
+ // TODO New key - Add a translation
+ "community.delete.cancel": "Cancel",
// "community.delete.confirm": "Confirm",
- "community.delete.confirm": "تایید",
+ // TODO New key - Add a translation
+ "community.delete.confirm": "Confirm",
// "community.delete.processing": "Deleting...",
- "community.delete.processing": "حذف ...",
+ // TODO New key - Add a translation
+ "community.delete.processing": "Deleting...",
// "community.delete.head": "Delete Community",
- "community.delete.head": "حذف جامعه",
+ // TODO New key - Add a translation
+ "community.delete.head": "Delete Community",
// "community.delete.notification.fail": "Community could not be deleted",
- "community.delete.notification.fail": "جامعه نمیتواند حذف شود",
+ // TODO New key - Add a translation
+ "community.delete.notification.fail": "Community could not be deleted",
- // "community.delete.notification.success": "Successfully started a process to delete this community",
- // TODO Source message changed - Revise the translation
- "community.delete.notification.success": "جامعه با موفقیت حذف شد",
+ // "community.delete.notification.success": "Successfully deleted community",
+ // TODO New key - Add a translation
+ "community.delete.notification.success": "Successfully deleted community",
// "community.delete.text": "Are you sure you want to delete community \"{{ dso }}\"",
- "community.delete.text": "آیا مطمئن هستید میخواهید جامعه را حذف کنید \"{{ dso }}\"",
+ // TODO New key - Add a translation
+ "community.delete.text": "Are you sure you want to delete community \"{{ dso }}\"",
// "community.edit.delete": "Delete this community",
- "community.edit.delete": "حذف این جامعه",
+ // TODO New key - Add a translation
+ "community.edit.delete": "Delete this community",
// "community.edit.head": "Edit Community",
- "community.edit.head": "ویرایش جامعه",
+ // TODO New key - Add a translation
+ "community.edit.head": "Edit Community",
// "community.edit.breadcrumbs": "Edit Community",
- "community.edit.breadcrumbs": "ویرایش جامعه",
+ // TODO New key - Add a translation
+ "community.edit.breadcrumbs": "Edit Community",
// "community.edit.logo.delete.title": "Delete logo",
- "community.edit.logo.delete.title": "حذف لوگو",
+ // TODO New key - Add a translation
+ "community.edit.logo.delete.title": "Delete logo",
// "community-collection.edit.logo.delete.title": "Confirm deletion",
- "community-collection.edit.logo.delete.title": "تایید حذف",
+ // TODO New key - Add a translation
+ "community-collection.edit.logo.delete.title": "Confirm deletion",
// "community.edit.logo.delete-undo.title": "Undo delete",
- "community.edit.logo.delete-undo.title": "لغو حذف",
+ // TODO New key - Add a translation
+ "community.edit.logo.delete-undo.title": "Undo delete",
// "community-collection.edit.logo.delete-undo.title": "Undo delete",
- "community-collection.edit.logo.delete-undo.title": "لغو حذف",
+ // TODO New key - Add a translation
+ "community-collection.edit.logo.delete-undo.title": "Undo delete",
// "community.edit.logo.label": "Community logo",
- "community.edit.logo.label": "لوگوی جامعه",
+ // TODO New key - Add a translation
+ "community.edit.logo.label": "Community logo",
// "community.edit.logo.notifications.add.error": "Uploading community logo failed. Please verify the content before retrying.",
- "community.edit.logo.notifications.add.error": "بارگذاری لوگوی جامعه ناموفق بود. لطفاً قبل از تلاش مجدد، محتوا را تأیید کنید.",
+ // TODO New key - Add a translation
+ "community.edit.logo.notifications.add.error": "Uploading community logo failed. Please verify the content before retrying.",
// "community.edit.logo.notifications.add.success": "Upload community logo successful.",
- "community.edit.logo.notifications.add.success": " بارگذاری لوگوی جامعه موفقیت آمیز بود.",
+ // TODO New key - Add a translation
+ "community.edit.logo.notifications.add.success": "Upload community logo successful.",
// "community.edit.logo.notifications.delete.success.title": "Logo deleted",
- "community.edit.logo.notifications.delete.success.title": "لوگو حذف شد",
+ // TODO New key - Add a translation
+ "community.edit.logo.notifications.delete.success.title": "Logo deleted",
// "community.edit.logo.notifications.delete.success.content": "Successfully deleted the community's logo",
- "community.edit.logo.notifications.delete.success.content": "لوگوی جامعه با موفقیت حذف شد",
+ // TODO New key - Add a translation
+ "community.edit.logo.notifications.delete.success.content": "Successfully deleted the community's logo",
// "community.edit.logo.notifications.delete.error.title": "Error deleting logo",
- "community.edit.logo.notifications.delete.error.title": "خطای حذف لوگو",
+ // TODO New key - Add a translation
+ "community.edit.logo.notifications.delete.error.title": "Error deleting logo",
// "community.edit.logo.upload": "Drop a community logo to upload",
- "community.edit.logo.upload": "برای آپلود، لوگوی جامعه را رها کنید",
+ // TODO New key - Add a translation
+ "community.edit.logo.upload": "Drop a community logo to upload",
// "community.edit.notifications.success": "Successfully edited the community",
- "community.edit.notifications.success": "جامعه با موفقیت ویرایش شد",
+ // TODO New key - Add a translation
+ "community.edit.notifications.success": "Successfully edited the community",
// "community.edit.notifications.unauthorized": "You do not have privileges to make this change",
- "community.edit.notifications.unauthorized": "شما حق اعمال این تغییر را ندارید",
+ // TODO New key - Add a translation
+ "community.edit.notifications.unauthorized": "You do not have privileges to make this change",
// "community.edit.notifications.error": "An error occurred while editing the community",
- "community.edit.notifications.error": "خطایی هنگام ویرایش جامعه رخ داد",
+ // TODO New key - Add a translation
+ "community.edit.notifications.error": "An error occurred while editing the community",
// "community.edit.return": "Back",
- "community.edit.return": "برگشت",
+ // TODO New key - Add a translation
+ "community.edit.return": "Back",
// "community.edit.tabs.curate.head": "Curate",
- "community.edit.tabs.curate.head": "دست چین",
+ // TODO New key - Add a translation
+ "community.edit.tabs.curate.head": "Curate",
// "community.edit.tabs.curate.title": "Community Edit - Curate",
- "community.edit.tabs.curate.title": "ویرایش جامعه- دست چین",
+ // TODO New key - Add a translation
+ "community.edit.tabs.curate.title": "Community Edit - Curate",
// "community.edit.tabs.access-control.head": "Access Control",
- "community.edit.tabs.access-control.head": "کنترل دسترسی",
+ // TODO New key - Add a translation
+ "community.edit.tabs.access-control.head": "Access Control",
// "community.edit.tabs.access-control.title": "Community Edit - Access Control",
- "community.edit.tabs.access-control.title": "ویرایش جامعه- کنترل دسترسی",
+ // TODO New key - Add a translation
+ "community.edit.tabs.access-control.title": "Community Edit - Access Control",
// "community.edit.tabs.metadata.head": "Edit Metadata",
- "community.edit.tabs.metadata.head": "ویرایش ابرداده",
+ // TODO New key - Add a translation
+ "community.edit.tabs.metadata.head": "Edit Metadata",
// "community.edit.tabs.metadata.title": "Community Edit - Metadata",
- "community.edit.tabs.metadata.title": "ویرایش جامعه- ابرداده",
+ // TODO New key - Add a translation
+ "community.edit.tabs.metadata.title": "Community Edit - Metadata",
// "community.edit.tabs.roles.head": "Assign Roles",
- "community.edit.tabs.roles.head": "اختصاص نقشها",
+ // TODO New key - Add a translation
+ "community.edit.tabs.roles.head": "Assign Roles",
// "community.edit.tabs.roles.title": "Community Edit - Roles",
- "community.edit.tabs.roles.title": "ویرایش جامعه- نقشها",
+ // TODO New key - Add a translation
+ "community.edit.tabs.roles.title": "Community Edit - Roles",
// "community.edit.tabs.authorizations.head": "Authorizations",
- "community.edit.tabs.authorizations.head": "مجوزها",
+ // TODO New key - Add a translation
+ "community.edit.tabs.authorizations.head": "Authorizations",
// "community.edit.tabs.authorizations.title": "Community Edit - Authorizations",
- "community.edit.tabs.authorizations.title": "ویرایش جامعه- مجوزها",
+ // TODO New key - Add a translation
+ "community.edit.tabs.authorizations.title": "Community Edit - Authorizations",
// "community.listelement.badge": "Community",
- "community.listelement.badge": "جامعه",
+ // TODO New key - Add a translation
+ "community.listelement.badge": "Community",
// "community.logo": "Community logo",
- "community.logo": "لوگوی جامعه",
+ // TODO New key - Add a translation
+ "community.logo": "Community logo",
// "comcol-role.edit.no-group": "None",
- "comcol-role.edit.no-group": "هیچکدام",
+ // TODO New key - Add a translation
+ "comcol-role.edit.no-group": "None",
// "comcol-role.edit.create": "Create",
- "comcol-role.edit.create": "ایجاد",
+ // TODO New key - Add a translation
+ "comcol-role.edit.create": "Create",
// "comcol-role.edit.create.error.title": "Failed to create a group for the '{{ role }}' role",
- "comcol-role.edit.create.error.title": "ایجاد گروه برای نقش '{{ role }}' ناموفق بود",
-
- // "comcol-role.edit.restrict": "Restrict",
- "comcol-role.edit.restrict": "محدود",
-
- // "comcol-role.edit.delete": "Delete",
- "comcol-role.edit.delete": "حذف",
-
- // "comcol-role.edit.delete.error.title": "Failed to delete the '{{ role }}' role's group",
- "comcol-role.edit.delete.error.title": "گروه نقش '{{ role }}' حذف نشد.",
-
- // "comcol-role.edit.delete.modal.header": "Delete Group \"{{ dsoName }}\"",
// TODO New key - Add a translation
- "comcol-role.edit.delete.modal.header": "Delete Group \"{{ dsoName }}\"",
+ "comcol-role.edit.create.error.title": "Failed to create a group for the '{{ role }}' role",
- // "comcol-role.edit.delete.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?",
+ // "comcol-role.edit.restrict": "Restrict",
// TODO New key - Add a translation
- "comcol-role.edit.delete.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?",
+ "comcol-role.edit.restrict": "Restrict",
- // "comcol-role.edit.delete.modal.cancel": "Cancel",
+ // "comcol-role.edit.delete": "Delete",
// TODO New key - Add a translation
- "comcol-role.edit.delete.modal.cancel": "Cancel",
+ "comcol-role.edit.delete": "Delete",
- // "comcol-role.edit.delete.modal.confirm": "Delete",
+ // "comcol-role.edit.delete.error.title": "Failed to delete the '{{ role }}' role's group",
// TODO New key - Add a translation
- "comcol-role.edit.delete.modal.confirm": "Delete",
+ "comcol-role.edit.delete.error.title": "Failed to delete the '{{ role }}' role's group",
// "comcol-role.edit.community-admin.name": "Administrators",
- "comcol-role.edit.community-admin.name": "مدیران",
+ // TODO New key - Add a translation
+ "comcol-role.edit.community-admin.name": "Administrators",
// "comcol-role.edit.collection-admin.name": "Administrators",
- "comcol-role.edit.collection-admin.name": "مدیران",
+ // TODO New key - Add a translation
+ "comcol-role.edit.collection-admin.name": "Administrators",
// "comcol-role.edit.community-admin.description": "Community administrators can create sub-communities or collections, and manage or assign management for those sub-communities or collections. In addition, they decide who can submit items to any sub-collections, edit item metadata (after submission), and add (map) existing items from other collections (subject to authorization).",
- "comcol-role.edit.community-admin.description": "مدیران جامعه میتوانند زیرجامعه ها یا مجموعهها را ایجاد کنند و مدیریت یا اختصاص مدیریت برای آن زیرجامعه ها یا مجموعهها را بر عهده بگیرند. علاوه بر این، آنها تصمیم میگیرند که چه کسی میتواند آیتمها را به هر زیرمجموعه ارسال کند، ابردادههای آیتمها را (پس از ارسال) ویرایش کند و آیتمهای موجود را از مجموعههای دیگر (با مجوز) اضافه کند (نگاشت کند).",
+ // TODO New key - Add a translation
+ "comcol-role.edit.community-admin.description": "Community administrators can create sub-communities or collections, and manage or assign management for those sub-communities or collections. In addition, they decide who can submit items to any sub-collections, edit item metadata (after submission), and add (map) existing items from other collections (subject to authorization).",
// "comcol-role.edit.collection-admin.description": "Collection administrators decide who can submit items to the collection, edit item metadata (after submission), and add (map) existing items from other collections to this collection (subject to authorization for that collection).",
- "comcol-role.edit.collection-admin.description": "مدیران مجموعه تصمیم میگیرند چه کسی میتواند آیتمها را به مجموعه ارسال کند، ابردادههای آیتمها را (پس از ارسال) ویرایش کند، و آیتمهای موجود را از مجموعههای دیگر به این مجموعه اضافه (نگاشت) کند (منوط به مجوز آن مجموعه).",
+ // TODO New key - Add a translation
+ "comcol-role.edit.collection-admin.description": "Collection administrators decide who can submit items to the collection, edit item metadata (after submission), and add (map) existing items from other collections to this collection (subject to authorization for that collection).",
// "comcol-role.edit.submitters.name": "Submitters",
- "comcol-role.edit.submitters.name": "ارسال کنندگان",
+ // TODO New key - Add a translation
+ "comcol-role.edit.submitters.name": "Submitters",
// "comcol-role.edit.submitters.description": "The E-People and Groups that have permission to submit new items to this collection.",
- "comcol-role.edit.submitters.description": "E-Peopleو گروههایی که مجوز ارسال آیتمهای جدید به این مجموعه را دارند.",
+ // TODO New key - Add a translation
+ "comcol-role.edit.submitters.description": "The E-People and Groups that have permission to submit new items to this collection.",
// "comcol-role.edit.item_read.name": "Default item read access",
- "comcol-role.edit.item_read.name": "دسترسی پیش فرض خواندن آیتم",
+ // TODO New key - Add a translation
+ "comcol-role.edit.item_read.name": "Default item read access",
// "comcol-role.edit.item_read.description": "E-People and Groups that can read new items submitted to this collection. Changes to this role are not retroactive. Existing items in the system will still be viewable by those who had read access at the time of their addition.",
- "comcol-role.edit.item_read.description": "E-People و گروههایی که میتوانند آیتم جدید ارسال شده به این مجموعه را بخوانند. تغییرات در این نقش عطف به ماسبق نمیشوند. آیتم موجود در سیستم همچنان توسط کسانی که در زمان اضافه شدن، دسترسی خواندن داشتهاند، قابل مشاهده خواهند بود.",
+ // TODO New key - Add a translation
+ "comcol-role.edit.item_read.description": "E-People and Groups that can read new items submitted to this collection. Changes to this role are not retroactive. Existing items in the system will still be viewable by those who had read access at the time of their addition.",
// "comcol-role.edit.item_read.anonymous-group": "Default read for incoming items is currently set to Anonymous.",
- "comcol-role.edit.item_read.anonymous-group": "خواندن پیشفرض برای آیتمهای ورودی در حال حاضر روی ناشناس تنظیم شده است.",
+ // TODO New key - Add a translation
+ "comcol-role.edit.item_read.anonymous-group": "Default read for incoming items is currently set to Anonymous.",
// "comcol-role.edit.bitstream_read.name": "Default bitstream read access",
- "comcol-role.edit.bitstream_read.name": "دسترسی خواندن پیش فرض فایل",
+ // TODO New key - Add a translation
+ "comcol-role.edit.bitstream_read.name": "Default bitstream read access",
// "comcol-role.edit.bitstream_read.description": "E-People and Groups that can read new bitstreams submitted to this collection. Changes to this role are not retroactive. Existing bitstreams in the system will still be viewable by those who had read access at the time of their addition.",
- "comcol-role.edit.bitstream_read.description": "E-People و گروههایی که میتوانند فایلهای جدید ارسال شده به این مجموعه را بخوانند. تغییرات در این نقش عطف به ماسبق نمیشوند. فایلهای موجود در سیستم همچنان توسط کسانی که در زمان اضافه شدنشان دسترسی خواندن داشتهاند، قابل مشاهده خواهند بود.",
+ // TODO New key - Add a translation
+ "comcol-role.edit.bitstream_read.description": "E-People and Groups that can read new bitstreams submitted to this collection. Changes to this role are not retroactive. Existing bitstreams in the system will still be viewable by those who had read access at the time of their addition.",
// "comcol-role.edit.bitstream_read.anonymous-group": "Default read for incoming bitstreams is currently set to Anonymous.",
- "comcol-role.edit.bitstream_read.anonymous-group": "خواندن پیشفرض برای فایلهای ورودی در حال حاضر روی ناشناس تنظیم شده است.",
+ // TODO New key - Add a translation
+ "comcol-role.edit.bitstream_read.anonymous-group": "Default read for incoming bitstreams is currently set to Anonymous.",
// "comcol-role.edit.editor.name": "Editors",
- "comcol-role.edit.editor.name": "ویرایشگرها",
+ // TODO New key - Add a translation
+ "comcol-role.edit.editor.name": "Editors",
// "comcol-role.edit.editor.description": "Editors are able to edit the metadata of incoming submissions, and then accept or reject them.",
- "comcol-role.edit.editor.description": "ویرایشگرها میتوانند ابردادههای ارسالهای دریافتی را ویرایش کنند و سپس آنها را بپذیرند یا رد کنند.",
+ // TODO New key - Add a translation
+ "comcol-role.edit.editor.description": "Editors are able to edit the metadata of incoming submissions, and then accept or reject them.",
// "comcol-role.edit.finaleditor.name": "Final editors",
- "comcol-role.edit.finaleditor.name": "ویرایشگرهای نهایی",
+ // TODO New key - Add a translation
+ "comcol-role.edit.finaleditor.name": "Final editors",
// "comcol-role.edit.finaleditor.description": "Final editors are able to edit the metadata of incoming submissions, but will not be able to reject them.",
- "comcol-role.edit.finaleditor.description": "ویرایشگرهای نهایی میتوانند ابردادههای ارسالهای دریافتی را ویرایش کنند، اما نمیتوانند آنها را رد کنند.",
+ // TODO New key - Add a translation
+ "comcol-role.edit.finaleditor.description": "Final editors are able to edit the metadata of incoming submissions, but will not be able to reject them.",
// "comcol-role.edit.reviewer.name": "Reviewers",
- "comcol-role.edit.reviewer.name": "داوران",
+ // TODO New key - Add a translation
+ "comcol-role.edit.reviewer.name": "Reviewers",
// "comcol-role.edit.reviewer.description": "Reviewers are able to accept or reject incoming submissions. However, they are not able to edit the submission's metadata.",
- "comcol-role.edit.reviewer.description": "داوران میتوانند ارسالهای دریافتی را بپذیرند یا رد کنند. با این حال، آنها قادر به ویرایش ابردادههای ارسالها نیستند.",
+ // TODO New key - Add a translation
+ "comcol-role.edit.reviewer.description": "Reviewers are able to accept or reject incoming submissions. However, they are not able to edit the submission's metadata.",
// "comcol-role.edit.scorereviewers.name": "Score Reviewers",
- "comcol-role.edit.scorereviewers.name": "داوران امتیاز",
+ // TODO New key - Add a translation
+ "comcol-role.edit.scorereviewers.name": "Score Reviewers",
// "comcol-role.edit.scorereviewers.description": "Reviewers are able to give a score to incoming submissions, this will define whether the submission will be rejected or not.",
- "comcol-role.edit.scorereviewers.description": "داوران میتوانند به ارسالهای دریافتی امتیاز بدهند، این امتیاز مشخص میکند که آیا ارسال رد خواهد شد یا خیر.",
+ // TODO New key - Add a translation
+ "comcol-role.edit.scorereviewers.description": "Reviewers are able to give a score to incoming submissions, this will define whether the submission will be rejected or not.",
// "community.form.abstract": "Short Description",
- "community.form.abstract": "توصیف کوتاه",
+ // TODO New key - Add a translation
+ "community.form.abstract": "Short Description",
// "community.form.description": "Introductory text (HTML)",
- "community.form.description": "متن مقدماتی (HTML)",
+ // TODO New key - Add a translation
+ "community.form.description": "Introductory text (HTML)",
// "community.form.errors.title.required": "Please enter a community name",
- "community.form.errors.title.required": "لطفا یک نام جامعه وارد کنید",
+ // TODO New key - Add a translation
+ "community.form.errors.title.required": "Please enter a community name",
// "community.form.rights": "Copyright text (HTML)",
- "community.form.rights": "متن کپی رایت (HTML)",
+ // TODO New key - Add a translation
+ "community.form.rights": "Copyright text (HTML)",
// "community.form.tableofcontents": "News (HTML)",
- "community.form.tableofcontents": "خبر (HTML)",
+ // TODO New key - Add a translation
+ "community.form.tableofcontents": "News (HTML)",
// "community.form.title": "Name",
- "community.form.title": "نام",
+ // TODO New key - Add a translation
+ "community.form.title": "Name",
// "community.page.edit": "Edit this community",
- "community.page.edit": "ویرایش این جامعه",
+ // TODO New key - Add a translation
+ "community.page.edit": "Edit this community",
// "community.page.handle": "Permanent URI for this community",
- "community.page.handle": " URI دائمی برای این جامعه",
+ // TODO New key - Add a translation
+ "community.page.handle": "Permanent URI for this community",
// "community.page.license": "License",
- "community.page.license": "گواهی",
+ // TODO New key - Add a translation
+ "community.page.license": "License",
// "community.page.news": "News",
- "community.page.news": "خبر",
+ // TODO New key - Add a translation
+ "community.page.news": "News",
// "community.page.options": "Options",
- "community.page.options": "گزینهها",
+ // TODO New key - Add a translation
+ "community.page.options": "Options",
// "community.all-lists.head": "Subcommunities and Collections",
- "community.all-lists.head": "زیر جامعه ها و مجموعه ها",
-
- // "community.search.breadcrumbs": "Search",
- "community.search.breadcrumbs": "جستجو",
-
- // "community.search.results.head": "Search Results",
- "community.search.results.head": "نتایج جستجو",
-
- // "community.sub-collection-list.head": "Collections in this community",
- "community.sub-collection-list.head": "مجموعه ها در این جامعه",
-
- // "community.sub-community-list.head": "Communities in this Community",
- "community.sub-community-list.head": "جامعه ها در این جامعه",
-
- // "confirmation-modal.pending-changes.header": "Unsaved changes",
// TODO New key - Add a translation
- "confirmation-modal.pending-changes.header": "Unsaved changes",
+ "community.all-lists.head": "Subcommunities and Collections",
- // "confirmation-modal.pending-changes.info": "There are unsaved changes. Do you want to leave the page?",
+ // "community.search.breadcrumbs": "Search",
// TODO New key - Add a translation
- "confirmation-modal.pending-changes.info": "There are unsaved changes. Do you want to leave the page?",
+ "community.search.breadcrumbs": "Search",
- // "confirmation-modal.pending-changes.cancel": "Cancel",
+ // "community.search.results.head": "Search Results",
// TODO New key - Add a translation
- "confirmation-modal.pending-changes.cancel": "Cancel",
+ "community.search.results.head": "Search Results",
- // "confirmation-modal.pending-changes.confirm": "Leave",
+ // "community.sub-collection-list.head": "Collections in this community",
// TODO New key - Add a translation
- "confirmation-modal.pending-changes.confirm": "Leave",
+ "community.sub-collection-list.head": "Collections in this community",
- // "context-menu.actions.audit-item.btn": "Audit",
+ // "community.sub-community-list.head": "Communities in this Community",
// TODO New key - Add a translation
- "context-menu.actions.audit-item.btn": "Audit",
+ "community.sub-community-list.head": "Communities in this Community",
// "cookies.consent.accept-all": "Accept all",
- "cookies.consent.accept-all": "پذیرش همه",
+ // TODO New key - Add a translation
+ "cookies.consent.accept-all": "Accept all",
// "cookies.consent.accept-selected": "Accept selected",
- "cookies.consent.accept-selected": "پذیرش انتخاب شده",
+ // TODO New key - Add a translation
+ "cookies.consent.accept-selected": "Accept selected",
// "cookies.consent.app.opt-out.description": "This app is loaded by default (but you can opt out)",
- "cookies.consent.app.opt-out.description": "این برنامه به طور پیشفرض بارگذاری میشود (اما میتوانید صرف نظر کنید)",
+ // TODO New key - Add a translation
+ "cookies.consent.app.opt-out.description": "This app is loaded by default (but you can opt out)",
// "cookies.consent.app.opt-out.title": "(opt-out)",
- "cookies.consent.app.opt-out.title": "(انصراف)",
+ // TODO New key - Add a translation
+ "cookies.consent.app.opt-out.title": "(opt-out)",
// "cookies.consent.app.purpose": "purpose",
- "cookies.consent.app.purpose": "هدف",
+ // TODO New key - Add a translation
+ "cookies.consent.app.purpose": "purpose",
// "cookies.consent.app.required.description": "This application is always required",
- "cookies.consent.app.required.description": "این برنامه همیشه مورد نیاز است",
+ // TODO New key - Add a translation
+ "cookies.consent.app.required.description": "This application is always required",
// "cookies.consent.app.required.title": "(always required)",
- "cookies.consent.app.required.title": "(همیشه موردنیاز)",
+ // TODO New key - Add a translation
+ "cookies.consent.app.required.title": "(always required)",
// "cookies.consent.update": "There were changes since your last visit, please update your consent.",
- "cookies.consent.update": "از آخرین بازدید شما تغییراتی رخ داده است، لطفاً موافقت خود را بهروز کنید.",
+ // TODO New key - Add a translation
+ "cookies.consent.update": "There were changes since your last visit, please update your consent.",
// "cookies.consent.close": "Close",
- "cookies.consent.close": "بستن",
+ // TODO New key - Add a translation
+ "cookies.consent.close": "Close",
// "cookies.consent.decline": "Decline",
- "cookies.consent.decline": "رد",
+ // TODO New key - Add a translation
+ "cookies.consent.decline": "Decline",
// "cookies.consent.decline-all": "Decline all",
- "cookies.consent.decline-all": "رد همه",
+ // TODO New key - Add a translation
+ "cookies.consent.decline-all": "Decline all",
// "cookies.consent.ok": "That's ok",
- "cookies.consent.ok": "اشکالی نداره.",
+ // TODO New key - Add a translation
+ "cookies.consent.ok": "That's ok",
// "cookies.consent.save": "Save",
- "cookies.consent.save": "ذخیره",
+ // TODO New key - Add a translation
+ "cookies.consent.save": "Save",
// "cookies.consent.content-notice.description": "We collect and process your personal information for the following purposes: {purposes}",
- "cookies.consent.content-notice.description": "ما اطلاعات شخصی شما را برای اهداف زیر جمعآوری و پردازش میکنیم: {purposes}",
+ // TODO New key - Add a translation
+ "cookies.consent.content-notice.description": "We collect and process your personal information for the following purposes: {purposes}",
// "cookies.consent.content-notice.learnMore": "Customize",
- "cookies.consent.content-notice.learnMore": "سفارشی سازی",
+ // TODO New key - Add a translation
+ "cookies.consent.content-notice.learnMore": "Customize",
// "cookies.consent.content-modal.description": "Here you can see and customize the information that we collect about you.",
- "cookies.consent.content-modal.description": "در اینجا میتوانید اطلاعاتی را که ما درباره شما جمعآوری میکنیم، مشاهده و سفارشیسازی کنید.",
+ // TODO New key - Add a translation
+ "cookies.consent.content-modal.description": "Here you can see and customize the information that we collect about you.",
// "cookies.consent.content-modal.privacy-policy.name": "privacy policy",
// TODO New key - Add a translation
@@ -2657,14 +2839,6 @@
// TODO New key - Add a translation
"cookies.consent.content-modal.title": "Information that we collect",
- // "cookies.consent.app.title.accessibility": "Accessibility Settings",
- // TODO New key - Add a translation
- "cookies.consent.app.title.accessibility": "Accessibility Settings",
-
- // "cookies.consent.app.description.accessibility": "Required for saving your accessibility settings locally",
- // TODO New key - Add a translation
- "cookies.consent.app.description.accessibility": "Required for saving your accessibility settings locally",
-
// "cookies.consent.app.title.authentication": "Authentication",
// TODO New key - Add a translation
"cookies.consent.app.title.authentication": "Authentication",
@@ -2673,14 +2847,6 @@
// TODO New key - Add a translation
"cookies.consent.app.description.authentication": "Required for signing you in",
- // "cookies.consent.app.title.correlation-id": "Correlation ID",
- // TODO New key - Add a translation
- "cookies.consent.app.title.correlation-id": "Correlation ID",
-
- // "cookies.consent.app.description.correlation-id": "Allow us to track your session in backend logs for support/debugging purposes",
- // TODO New key - Add a translation
- "cookies.consent.app.description.correlation-id": "Allow us to track your session in backend logs for support/debugging purposes",
-
// "cookies.consent.app.title.preferences": "Preferences",
// TODO New key - Add a translation
"cookies.consent.app.title.preferences": "Preferences",
@@ -2830,7 +2996,8 @@
"deny-request-copy.success": "Successfully denied item request",
// "dynamic-list.load-more": "Load more",
- "dynamic-list.load-more": "بارگذاری بیشتر",
+ // TODO New key - Add a translation
+ "dynamic-list.load-more": "Load more",
// "dropdown.clear": "Clear selection",
// TODO New key - Add a translation
@@ -2916,9 +3083,9 @@
// TODO New key - Add a translation
"dso-selector.no-results": "No {{ type }} found",
- // "dso-selector.placeholder": "Search for {{ type }}",
+ // "dso-selector.placeholder": "Search for a {{ type }}",
// TODO New key - Add a translation
- "dso-selector.placeholder": "Search for {{ type }}",
+ "dso-selector.placeholder": "Search for a {{ type }}",
// "dso-selector.placeholder.type.community": "community",
// TODO New key - Add a translation
@@ -2941,7 +3108,8 @@
"dso-selector.set-scope.community.head": "Select a search scope",
// "dso-selector.set-scope.community.button": "Search all of DSpace",
- "dso-selector.set-scope.community.button": "جستجوی همه دی اسپیس",
+ // TODO New key - Add a translation
+ "dso-selector.set-scope.community.button": "Search all of DSpace",
// "dso-selector.set-scope.community.or-divider": "or",
// TODO New key - Add a translation
@@ -3159,26 +3327,6 @@
// TODO New key - Add a translation
"error.item": "Error fetching item",
- // "error.custom-url-conflict.title": "Duplicate custom URL detected",
- // TODO New key - Add a translation
- "error.custom-url-conflict.title": "Duplicate custom URL detected",
-
- // "error.custom-url-conflict.description": "The custom URL \"{{customUrl}}\" is assigned to more than one item. This causes a conflict and the item cannot be displayed.",
- // TODO New key - Add a translation
- "error.custom-url-conflict.description": "The custom URL \"{{customUrl}}\" is assigned to more than one item. This causes a conflict and the item cannot be displayed.",
-
- // "error.custom-url-conflict.admin-action": "Please contact your repository administrator. The following affected items need their dspace.customurl metadata fixed so each value is unique:",
- // TODO New key - Add a translation
- "error.custom-url-conflict.admin-action": "Please contact your repository administrator. The following affected items need their dspace.customurl metadata fixed so each value is unique:",
-
- // "error.custom-url-conflict.edit-link": "Edit \"{{name}}\" ({{uuid}})",
- // TODO New key - Add a translation
- "error.custom-url-conflict.edit-link": "Edit \"{{name}}\" ({{uuid}})",
-
- // "error.custom-url-conflict.no-items-found": "No conflicting items could be retrieved. Please contact your administrator.",
- // TODO New key - Add a translation
- "error.custom-url-conflict.no-items-found": "No conflicting items could be retrieved. Please contact your administrator.",
-
// "error.items": "Error fetching items",
// TODO New key - Add a translation
"error.items": "Error fetching items",
@@ -3219,26 +3367,14 @@
// TODO New key - Add a translation
"error.top-level-communities": "Error fetching top-level communities",
- // "error.validation.license.required": "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.",
+ // "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.required": "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.",
+ "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.",
// "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.",
// TODO New key - Add a translation
"error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.",
- // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.",
- // TODO New key - Add a translation
- "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.",
-
- // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.",
- // TODO New key - Add a translation
- "error.validation.custom-url.empty": "The custom url is required and cannot be empty.",
-
- // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters. Only alphanumeric characters, dashes and underscores are supported.",
- // TODO New key - Add a translation
- "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters. Only alphanumeric characters, dashes and underscores are supported.",
-
// "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.",
// TODO New key - Add a translation
"error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.",
@@ -3311,10 +3447,6 @@
// TODO New key - Add a translation
"footer.copyright": "copyright © 2002-{{ year }}",
- // "footer.link.accessibility": "Accessibility settings",
- // TODO New key - Add a translation
- "footer.link.accessibility": "Accessibility settings",
-
// "footer.link.dspace": "DSpace software",
// TODO New key - Add a translation
"footer.link.dspace": "DSpace software",
@@ -3463,10 +3595,6 @@
// TODO New key - Add a translation
"form.clear-help": "Click here to remove the selected value",
- // "form.copy": "Duplicate",
- // TODO New key - Add a translation
- "form.copy": "Duplicate",
-
// "form.discard": "Discard",
// TODO New key - Add a translation
"form.discard": "Discard",
@@ -3487,18 +3615,6 @@
// TODO New key - Add a translation
"form.first-name": "First name",
- // "form.group.add": "Add",
- // TODO New key - Add a translation
- "form.group.add": "Add",
-
- // "form.group.close": "Close",
- // TODO New key - Add a translation
- "form.group.close": "Close",
-
- // "form.group.set": "Set",
- // TODO New key - Add a translation
- "form.group.set": "Set",
-
// "form.group-collapse": "Collapse",
// TODO New key - Add a translation
"form.group-collapse": "Collapse",
@@ -3561,75 +3677,7 @@
// "form.other-information.orcid": "ORCID",
// TODO New key - Add a translation
- "form.other-information.orcid": "ORCID",
-
- // "form.other-information.person_identifier_orcid": "ORCID",
- // TODO New key - Add a translation
- "form.other-information.person_identifier_orcid": "ORCID",
-
- // "form.other-information.oairecerif_author_affiliation": "Affiliation",
- // TODO New key - Add a translation
- "form.other-information.oairecerif_author_affiliation": "Affiliation",
-
- // "form.other-information.oairecerif_editor_affiliation": "Affiliation",
- // TODO New key - Add a translation
- "form.other-information.oairecerif_editor_affiliation": "Affiliation",
-
- // "form.other-information.person_identifier_orcid": "ORCID iD",
- // TODO New key - Add a translation
- "form.other-information.person_identifier_orcid": "ORCID iD",
-
- // "form.other-information.institution-affiliation-name": "Affiliation(s)",
- // TODO New key - Add a translation
- "form.other-information.institution-affiliation-name": "Affiliation(s)",
-
- // "form.other-information.dc_relation_grantno": "Grant Number",
- // TODO New key - Add a translation
- "form.other-information.dc_relation_grantno": "Grant Number",
-
- // "form.other-information.not-available": "Not available",
- // TODO New key - Add a translation
- "form.other-information.not-available": "Not available",
-
- // "form.other-information.ror_orgunit_id": "ROR ID",
- // TODO New key - Add a translation
- "form.other-information.ror_orgunit_id": "ROR ID",
-
- // "form.other-information.ror_orgunit_type": "ROR type",
- // TODO New key - Add a translation
- "form.other-information.ror_orgunit_type": "ROR type",
-
- // "form.other-information.ror_orgunit_acronym": "ROR acronym",
- // TODO New key - Add a translation
- "form.other-information.ror_orgunit_acronym": "ROR acronym",
-
- // "form.other-information.ror_orgunit_countryName": "ROR country",
- // TODO New key - Add a translation
- "form.other-information.ror_orgunit_countryName": "ROR country",
-
- // "form.entry.source.local": "",
- // TODO New key - Add a translation
- "form.entry.source.local": "",
-
- // "form.entry.source.orcid": "",
- // TODO New key - Add a translation
- "form.entry.source.orcid": "",
-
- // "form.entry.source.ror": "",
- // TODO New key - Add a translation
- "form.entry.source.ror": "",
-
- // "form.entry.source.openaire": "",
- // TODO New key - Add a translation
- "form.entry.source.openaire": "",
-
- // "form.entry.source.zdb": "",
- // TODO New key - Add a translation
- "form.entry.source.zdb": "",
-
- // "form.entry.source.sherpa": "- Sherpa Romeo",
- // TODO New key - Add a translation
- "form.entry.source.sherpa": "- Sherpa Romeo",
+ "form.other-information.orcid": "ORCID",
// "form.remove": "Remove",
// TODO New key - Add a translation
@@ -3644,7 +3692,8 @@
"form.save-help": "Save changes",
// "form.search": "Search",
- "form.search": "جستجو",
+ // TODO New key - Add a translation
+ "form.search": "Search",
// "form.search-help": "Click here to look for an existing correspondence",
// TODO New key - Add a translation
@@ -3666,18 +3715,6 @@
// TODO New key - Add a translation
"form.number-picker.increment": "Increment {{field}}",
- // "form.number-picker.label.Year": "Year",
- // TODO New key - Add a translation
- "form.number-picker.label.Year": "Year",
-
- // "form.number-picker.label.Month": "Month",
- // TODO New key - Add a translation
- "form.number-picker.label.Month": "Month",
-
- // "form.number-picker.label.Day": "Day",
- // TODO New key - Add a translation
- "form.number-picker.label.Day": "Day",
-
// "form.repeatable.sort.tip": "Drop the item in the new position",
// TODO New key - Add a translation
"form.repeatable.sort.tip": "Drop the item in the new position",
@@ -3901,82 +3938,6 @@
// "home.top-level-communities.help": "Select a community to browse its collections.",
"home.top-level-communities.help": "یک جامعه را برای مرور مجموعه های آن انتخاب کنید.",
- // "info.accessibility-settings.breadcrumbs": "Accessibility settings",
- // TODO New key - Add a translation
- "info.accessibility-settings.breadcrumbs": "Accessibility settings",
-
- // "info.accessibility-settings.cookie-warning": "Saving the accessibility settings is currently not possible. Either log in to save the settings in user data, or accept the 'Accessibility Settings' cookie using the 'Cookie Settings' menu at the bottom of the page. Once the cookie has been accepted, you can reload the page to remove this message.",
- // TODO New key - Add a translation
- "info.accessibility-settings.cookie-warning": "Saving the accessibility settings is currently not possible. Either log in to save the settings in user data, or accept the 'Accessibility Settings' cookie using the 'Cookie Settings' menu at the bottom of the page. Once the cookie has been accepted, you can reload the page to remove this message.",
-
- // "info.accessibility-settings.disableNotificationTimeOut.label": "Automatically close notifications after time out",
- // TODO New key - Add a translation
- "info.accessibility-settings.disableNotificationTimeOut.label": "Automatically close notifications after time out",
-
- // "info.accessibility-settings.disableNotificationTimeOut.hint": "When this toggle is activated, notifications will close automatically after the time out passes. When deactivated, notifications will remain open until manually closed.",
- // TODO New key - Add a translation
- "info.accessibility-settings.disableNotificationTimeOut.hint": "When this toggle is activated, notifications will close automatically after the time out passes. When deactivated, notifications will remain open until manually closed.",
-
- // "info.accessibility-settings.failed-notification": "Failed to save accessibility settings",
- // TODO New key - Add a translation
- "info.accessibility-settings.failed-notification": "Failed to save accessibility settings",
-
- // "info.accessibility-settings.invalid-form-notification": "Did not save. The form contains invalid values.",
- // TODO New key - Add a translation
- "info.accessibility-settings.invalid-form-notification": "Did not save. The form contains invalid values.",
-
- // "info.accessibility-settings.liveRegionTimeOut.label": "ARIA Live region time out (in seconds)",
- // TODO New key - Add a translation
- "info.accessibility-settings.liveRegionTimeOut.label": "ARIA Live region time out (in seconds)",
-
- // "info.accessibility-settings.liveRegionTimeOut.hint": "The duration after which a message in the ARIA live region disappears. ARIA live regions are not visible on the page, but provide announcements of notifications (or other actions) to screen readers.",
- // TODO New key - Add a translation
- "info.accessibility-settings.liveRegionTimeOut.hint": "The duration after which a message in the ARIA live region disappears. ARIA live regions are not visible on the page, but provide announcements of notifications (or other actions) to screen readers.",
-
- // "info.accessibility-settings.liveRegionTimeOut.invalid": "Live region time out must be greater than 0",
- // TODO New key - Add a translation
- "info.accessibility-settings.liveRegionTimeOut.invalid": "Live region time out must be greater than 0",
-
- // "info.accessibility-settings.notificationTimeOut.label": "Notification time out (in seconds)",
- // TODO New key - Add a translation
- "info.accessibility-settings.notificationTimeOut.label": "Notification time out (in seconds)",
-
- // "info.accessibility-settings.notificationTimeOut.hint": "The duration after which a notification disappears.",
- // TODO New key - Add a translation
- "info.accessibility-settings.notificationTimeOut.hint": "The duration after which a notification disappears.",
-
- // "info.accessibility-settings.notificationTimeOut.invalid": "Notification time out must be greater than 0",
- // TODO New key - Add a translation
- "info.accessibility-settings.notificationTimeOut.invalid": "Notification time out must be greater than 0",
-
- // "info.accessibility-settings.save-notification.cookie": "Successfully saved settings locally.",
- // TODO New key - Add a translation
- "info.accessibility-settings.save-notification.cookie": "Successfully saved settings locally.",
-
- // "info.accessibility-settings.save-notification.metadata": "Successfully saved settings on the user profile.",
- // TODO New key - Add a translation
- "info.accessibility-settings.save-notification.metadata": "Successfully saved settings on the user profile.",
-
- // "info.accessibility-settings.reset-failed": "Failed to reset. Either log in or accept the 'Accessibility Settings' cookie.",
- // TODO New key - Add a translation
- "info.accessibility-settings.reset-failed": "Failed to reset. Either log in or accept the 'Accessibility Settings' cookie.",
-
- // "info.accessibility-settings.reset-notification": "Successfully reset settings.",
- // TODO New key - Add a translation
- "info.accessibility-settings.reset-notification": "Successfully reset settings.",
-
- // "info.accessibility-settings.reset": "Reset accessibility settings",
- // TODO New key - Add a translation
- "info.accessibility-settings.reset": "Reset accessibility settings",
-
- // "info.accessibility-settings.submit": "Save accessibility settings",
- // TODO New key - Add a translation
- "info.accessibility-settings.submit": "Save accessibility settings",
-
- // "info.accessibility-settings.title": "Accessibility settings",
- // TODO New key - Add a translation
- "info.accessibility-settings.title": "Accessibility settings",
-
// "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": "I have read and I agree to the End User Agreement",
@@ -4109,10 +4070,6 @@
// TODO New key - Add a translation
"item.edit.authorizations.title": "Edit item's Policies",
- // "item.badge.status": "Item status:",
- // TODO New key - Add a translation
- "item.badge.status": "Item status:",
-
// "item.badge.private": "Non-discoverable",
// TODO New key - Add a translation
"item.badge.private": "Non-discoverable",
@@ -4178,15 +4135,16 @@
"item.edit.bitstreams.bundle.load.all": "Load all ({{ total }})",
// "item.edit.bitstreams.bundle.load.more": "Load more",
- "item.edit.bitstreams.bundle.load.more": "بارگذاری بیشتر",
+ // TODO New key - Add a translation
+ "item.edit.bitstreams.bundle.load.more": "Load more",
// "item.edit.bitstreams.bundle.name": "BUNDLE: {{ name }}",
// TODO New key - Add a translation
"item.edit.bitstreams.bundle.name": "BUNDLE: {{ name }}",
- // "item.edit.bitstreams.bundle.table.aria-label": "Bitstreams in the {{ bundle }} Bundle",
+ // "item.edit.bitstreams.bundle.table.aria-label": "Bitstreams in the {{ bundle }} Bundle",
// TODO New key - Add a translation
- "item.edit.bitstreams.bundle.table.aria-label": "Bitstreams in the {{ bundle }} Bundle",
+ "item.edit.bitstreams.bundle.table.aria-label": "Bitstreams in the {{ bundle }} Bundle",
// "item.edit.bitstreams.bundle.tooltip": "You can move a bitstream to a different page by dropping it on the page number.",
// TODO New key - Add a translation
@@ -4317,7 +4275,8 @@
"item.edit.bitstreams.upload-button": "Upload",
// "item.edit.bitstreams.load-more.link": "Load more",
- "item.edit.bitstreams.load-more.link": "بارگذاری بیشتر",
+ // TODO New key - Add a translation
+ "item.edit.bitstreams.load-more.link": "Load more",
// "item.edit.delete.cancel": "Cancel",
// TODO New key - Add a translation
@@ -4339,21 +4298,9 @@
// TODO New key - Add a translation
"item.edit.delete.header": "Delete item: {{ id }}",
- // "item.edit.delete.success": "Successfully started a process to delete this item",
- // TODO New key - Add a translation
- "item.edit.delete.success": "Successfully started a process to delete this item",
-
- // "item.edit.delete.confirmation-title": "Confirm deletion",
- // TODO New key - Add a translation
- "item.edit.delete.confirmation-title": "Confirm deletion",
-
- // "item.edit.delete.confirmation-message": "Are you sure you want to permanently delete this item?",
- // TODO New key - Add a translation
- "item.edit.delete.confirmation-message": "Are you sure you want to permanently delete this item?",
-
- // "item.edit.delete.confirmation-detail": "This item may have been cited, has (or had) a persistent identifier (Handle/DOI), and deleting it may break scholarly references and external links.",
+ // "item.edit.delete.success": "The item has been deleted",
// TODO New key - Add a translation
- "item.edit.delete.confirmation-detail": "This item may have been cited, has (or had) a persistent identifier (Handle/DOI), and deleting it may break scholarly references and external links.",
+ "item.edit.delete.success": "The item has been deleted",
// "item.edit.head": "Edit Item",
// TODO New key - Add a translation
@@ -4491,14 +4438,6 @@
// TODO New key - Add a translation
"item.edit.item-mapper.notifications.add.error.content": "Errors occurred for mapping of item to {{amount}} collections.",
- // "item.edit.item-mapper.notifications.add.error.forbidden.head": "Permission denied",
- // TODO New key - Add a translation
- "item.edit.item-mapper.notifications.add.error.forbidden.head": "Permission denied",
-
- // "item.edit.item-mapper.notifications.add.error.forbidden.content": "You do not have permission to map this item to a collection.",
- // TODO New key - Add a translation
- "item.edit.item-mapper.notifications.add.error.forbidden.content": "You do not have permission to map this item to a collection.",
-
// "item.edit.item-mapper.notifications.add.error.head": "Mapping errors",
// TODO New key - Add a translation
"item.edit.item-mapper.notifications.add.error.head": "Mapping errors",
@@ -4515,14 +4454,6 @@
// TODO New key - Add a translation
"item.edit.item-mapper.notifications.remove.error.content": "Errors occurred for the removal of the mapping to {{amount}} collections.",
- // "item.edit.item-mapper.notifications.remove.error.forbidden.head": "Permission denied",
- // TODO New key - Add a translation
- "item.edit.item-mapper.notifications.remove.error.forbidden.head": "Permission denied",
-
- // "item.edit.item-mapper.notifications.remove.error.forbidden.content": "You do not have permission to remove this item from a collection.",
- // TODO New key - Add a translation
- "item.edit.item-mapper.notifications.remove.error.forbidden.content": "You do not have permission to remove this item from a collection.",
-
// "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": "Removal of mapping errors",
@@ -4559,10 +4490,6 @@
// TODO New key - Add a translation
"item.edit.metadata.edit.language": "Edit language",
- // "item.edit.metadata.edit.authority": "Edit authority",
- // TODO New key - Add a translation
- "item.edit.metadata.edit.authority": "Edit authority",
-
// "item.edit.metadata.edit.value": "Edit value",
// TODO New key - Add a translation
"item.edit.metadata.edit.value": "Edit value",
@@ -4623,14 +4550,6 @@
// TODO New key - Add a translation
"item.edit.metadata.headers.language": "Lang",
- // "item.edit.metadata.headers.security": "Security level",
- // TODO New key - Add a translation
- "item.edit.metadata.headers.security": "Security level",
-
- // "item.edit.metadata.headers.authority": "Authority",
- // TODO New key - Add a translation
- "item.edit.metadata.headers.authority": "Authority",
-
// "item.edit.metadata.headers.value": "Value",
// TODO New key - Add a translation
"item.edit.metadata.headers.value": "Value",
@@ -4943,9 +4862,9 @@
// TODO New key - Add a translation
"item.edit.tabs.metadata.head": "Metadata",
- // "item.edit.tabs.metadata.title": "Item Edit - Metadata",
+ // "item.edit.tabs.metadata.title": "Item Edit - Metadata",
// TODO New key - Add a translation
- "item.edit.tabs.metadata.title": "Item Edit - Metadata",
+ "item.edit.tabs.metadata.title": "Item Edit - Metadata",
// "item.edit.tabs.relationships.head": "Relationships",
// TODO New key - Add a translation
@@ -5047,9 +4966,9 @@
// TODO New key - Add a translation
"item.edit.tabs.status.labels.lastModified": "Last Modified",
- // "item.edit.tabs.status.title": "Item Edit - Status",
+ // "item.edit.tabs.status.title": "Item Edit - Status",
// TODO New key - Add a translation
- "item.edit.tabs.status.title": "Item Edit - Status",
+ "item.edit.tabs.status.title": "Item Edit - Status",
// "item.edit.tabs.versionhistory.head": "Version History",
// TODO New key - Add a translation
@@ -5067,9 +4986,9 @@
// TODO New key - Add a translation
"item.edit.tabs.view.head": "View Item",
- // "item.edit.tabs.view.title": "Item Edit - View",
+ // "item.edit.tabs.view.title": "Item Edit - View",
// TODO New key - Add a translation
- "item.edit.tabs.view.title": "Item Edit - View",
+ "item.edit.tabs.view.title": "Item Edit - View",
// "item.edit.withdraw.cancel": "Cancel",
// TODO New key - Add a translation
@@ -5107,34 +5026,18 @@
// TODO New key - Add a translation
"item.page.description": "Description",
- // "item.page.org-unit": "Organizational Unit",
- // TODO New key - Add a translation
- "item.page.org-unit": "Organizational Unit",
-
// "item.page.org-units": "Organizational Units",
// TODO New key - Add a translation
"item.page.org-units": "Organizational Units",
- // "item.page.project": "Research Project",
- // TODO New key - Add a translation
- "item.page.project": "Research Project",
-
// "item.page.projects": "Research Projects",
// TODO New key - Add a translation
"item.page.projects": "Research Projects",
- // "item.page.publication": "Publications",
- // TODO New key - Add a translation
- "item.page.publication": "Publications",
-
// "item.page.publications": "Publications",
// TODO New key - Add a translation
"item.page.publications": "Publications",
- // "item.page.article": "Article",
- // TODO New key - Add a translation
- "item.page.article": "Article",
-
// "item.page.articles": "Articles",
// TODO New key - Add a translation
"item.page.articles": "Articles",
@@ -5143,10 +5046,6 @@
// TODO New key - Add a translation
"item.page.journal": "Journal",
- // "item.page.journals": "Journals",
- // TODO New key - Add a translation
- "item.page.journals": "Journals",
-
// "item.page.journal-issue": "Journal Issue",
// TODO New key - Add a translation
"item.page.journal-issue": "Journal Issue",
@@ -5187,10 +5086,6 @@
// TODO New key - Add a translation
"item.page.dcterms.spatial": "Geospatial point",
- // "item.page.doi": "DOI",
- // TODO New key - Add a translation
- "item.page.doi": "DOI",
-
// "item.search.results.head": "Item Search Results",
// TODO New key - Add a translation
"item.search.results.head": "Item Search Results",
@@ -5295,10 +5190,6 @@
// TODO New key - Add a translation
"item.page.abstract": "Abstract",
- // "item.page.author": "Author",
- // TODO New key - Add a translation
- "item.page.author": "Author",
-
// "item.page.authors": "Authors",
// TODO New key - Add a translation
"item.page.authors": "Authors",
@@ -5316,15 +5207,16 @@
"item.page.collections.loading": "Loading...",
// "item.page.collections.load-more": "Load more",
- "item.page.collections.load-more": "بارگذاری بیشتر",
+ // TODO New key - Add a translation
+ "item.page.collections.load-more": "Load more",
// "item.page.date": "Date",
// TODO New key - Add a translation
"item.page.date": "Date",
- // "item.page.edit": "Administer",
+ // "item.page.edit": "Edit this item",
// TODO New key - Add a translation
- "item.page.edit": "Administer",
+ "item.page.edit": "Edit this item",
// "item.page.files": "Files",
// TODO New key - Add a translation
@@ -5374,14 +5266,6 @@
// TODO New key - Add a translation
"item.page.orcid.tooltip": "Open ORCID setting page",
- // "item.page.orcid-ico": "ORCID icon",
- // TODO New key - Add a translation
- "item.page.orcid-ico": "ORCID icon",
-
- // "item.page.orcid-profile": "ORCID Profile",
- // TODO New key - Add a translation
- "item.page.orcid-profile": "ORCID Profile",
-
// "item.page.person.search.title": "Articles by this author",
// TODO New key - Add a translation
"item.page.person.search.title": "Articles by this author",
@@ -5410,51 +5294,6 @@
// TODO New key - Add a translation
"item.page.relationships.isOrgUnitOfProject": "Research Projects",
- // "item.page.relationships.RELATION.Person.researchoutputs": "Publications",
- // TODO New key - Add a translation
- "item.page.relationships.RELATION.Person.researchoutputs": "Publications",
-
- // "item.page.relationships.RELATION.Person.projects": "Projects",
- // TODO New key - Add a translation
- "item.page.relationships.RELATION.Person.projects": "Projects",
-
- // "item.page.relationships.RELATION.OrgUnit.rpprojects": "Researchers Projects",
- // TODO New key - Add a translation
- "item.page.relationships.RELATION.OrgUnit.rpprojects": "Researchers Projects",
-
- // "item.page.relationships.RELATION.OrgUnit.publications": "Publications",
- // TODO New key - Add a translation
- "item.page.relationships.RELATION.OrgUnit.publications": "Publications",
-
- // "item.page.relationships.RELATION.OrgUnit.rppublications": "Researchers Publications",
- // TODO New key - Add a translation
- "item.page.relationships.RELATION.OrgUnit.rppublications": "Researchers Publications",
-
- // "item.page.relationships.RELATION.OrgUnit.people": "People",
- // TODO New key - Add a translation
- "item.page.relationships.RELATION.OrgUnit.people": "People",
-
- // "item.page.relationships.RELATION.OrgUnit.projects": "Projects",
- // TODO New key - Add a translation
- "item.page.relationships.RELATION.OrgUnit.projects": "Projects",
-
- // "item.page.relationships.RELATION.OrgUnit.organizations": "Organizations",
- // TODO New key - Add a translation
- "item.page.relationships.RELATION.OrgUnit.organizations": "Organizations",
-
- // "item.page.relationships.RELATION.Project.projects": "Projects",
- // TODO New key - Add a translation
- "item.page.relationships.RELATION.Project.projects": "Projects",
-
- // "item.page.relationships.RELATION.Project.fundings": "Fundings",
- // TODO New key - Add a translation
- "item.page.relationships.RELATION.Project.fundings": "Fundings",
-
- // "item.page.relationships.RELATION.Project.researchoutputs": "Publications",
- // TODO New key - Add a translation
- "item.page.relationships.RELATION.Project.researchoutputs": "Publications",
-
-
// "item.page.subject": "Keywords",
// TODO New key - Add a translation
"item.page.subject": "Keywords",
@@ -5483,14 +5322,6 @@
// TODO New key - Add a translation
"item.page.filesection.license.bundle": "License bundle",
- // "item-page.resolver.invalid-custom-url.title": "Invalid custom URL",
- // TODO New key - Add a translation
- "item-page.resolver.invalid-custom-url.title": "Invalid custom URL",
-
- // "item-page.resolver.invalid-custom-url.message": "The custom URL of this item contains unsupported characters. The item is being displayed using its UUID.",
- // TODO New key - Add a translation
- "item-page.resolver.invalid-custom-url.message": "The custom URL of this item contains unsupported characters. The item is being displayed using its UUID.",
-
// "item.page.return": "Back",
// TODO New key - Add a translation
"item.page.return": "Back",
@@ -5587,22 +5418,6 @@
// TODO New key - Add a translation
"item.preview.oaire.citation.endPage": "Citation end page",
- // "item.preview.dc.relation.hasversion": "Has version",
- // TODO New key - Add a translation
- "item.preview.dc.relation.hasversion": "Has version",
-
- // "item.preview.dc.relation.ispartofseries": "Is part of series",
- // TODO New key - Add a translation
- "item.preview.dc.relation.ispartofseries": "Is part of series",
-
- // "item.preview.dc.rights": "Rights",
- // TODO New key - Add a translation
- "item.preview.dc.rights": "Rights",
-
- // "item.preview.dc.identifier.other": "Other Identifier",
- // TODO New key - Add a translation
- "item.preview.dc.identifier.other": "Other Identifier",
-
// "item.preview.dc.relation.issn": "ISSN",
// TODO New key - Add a translation
"item.preview.dc.relation.issn": "ISSN",
@@ -6015,10 +5830,6 @@
// TODO New key - Add a translation
"itemtemplate.edit.metadata.edit.language": "Edit language",
- // "itemtemplate.edit.metadata.edit.authority": "Edit authority",
- // TODO New key - Add a translation
- "itemtemplate.edit.metadata.edit.authority": "Edit authority",
-
// "itemtemplate.edit.metadata.edit.value": "Edit value",
// TODO New key - Add a translation
"itemtemplate.edit.metadata.edit.value": "Edit value",
@@ -6067,10 +5878,6 @@
// TODO New key - Add a translation
"itemtemplate.edit.metadata.headers.value": "Value",
- // "itemtemplate.edit.metadata.headers.authority": "Authority",
- // TODO New key - Add a translation
- "itemtemplate.edit.metadata.headers.authority": "Authority",
-
// "itemtemplate.edit.metadata.metadatafield": "Edit field",
// TODO New key - Add a translation
"itemtemplate.edit.metadata.metadatafield": "Edit field",
@@ -6139,9 +5946,9 @@
// TODO New key - Add a translation
"journal.page.description": "Description",
- // "journal.page.edit": "Administer",
+ // "journal.page.edit": "Edit this item",
// TODO New key - Add a translation
- "journal.page.edit": "Administer",
+ "journal.page.edit": "Edit this item",
// "journal.page.editor": "Editor-in-Chief",
// TODO New key - Add a translation
@@ -6183,9 +5990,9 @@
// TODO New key - Add a translation
"journalissue.page.description": "Description",
- // "journalissue.page.edit": "Administer",
+ // "journalissue.page.edit": "Edit this item",
// TODO New key - Add a translation
- "journalissue.page.edit": "Administer",
+ "journalissue.page.edit": "Edit this item",
// "journalissue.page.issuedate": "Issue Date",
// TODO New key - Add a translation
@@ -6227,9 +6034,9 @@
// TODO New key - Add a translation
"journalvolume.page.description": "Description",
- // "journalvolume.page.edit": "Administer",
+ // "journalvolume.page.edit": "Edit this item",
// TODO New key - Add a translation
- "journalvolume.page.edit": "Administer",
+ "journalvolume.page.edit": "Edit this item",
// "journalvolume.page.issuedate": "Issue Date",
// TODO New key - Add a translation
@@ -6292,169 +6099,160 @@
"iiif.page.issue": "Issue: ",
// "iiif.page.description": "Description: ",
- "iiif.page.description": "توصیف: ",
-
- // "layout.advanced-attachment.dc.title": "Name",
- // TODO New key - Add a translation
- "layout.advanced-attachment.dc.title": "Name",
-
- // "layout.advanced-attachment.size": "Size",
- // TODO New key - Add a translation
- "layout.advanced-attachment.size": "Size",
-
- // "layout.advanced-attachment.checksum": "Checksum",
- // TODO New key - Add a translation
- "layout.advanced-attachment.checksum": "Checksum",
-
- // "layout.advanced-attachment.checksum.info.MD5": "The MD5 message-digest algorithm can be used to verify the integrity of the file that you have uploaded. You can calculate its value locally via tools that are generally available in each operative system like md5sum",
- // TODO New key - Add a translation
- "layout.advanced-attachment.checksum.info.MD5": "The MD5 message-digest algorithm can be used to verify the integrity of the file that you have uploaded. You can calculate its value locally via tools that are generally available in each operative system like md5sum",
-
- // "layout.advanced-attachment.format": "Format",
- // TODO New key - Add a translation
- "layout.advanced-attachment.format": "Format",
-
- // "layout.advanced-attachment.dc.type": "Type",
- // TODO New key - Add a translation
- "layout.advanced-attachment.dc.type": "Type",
-
- // "layout.advanced-attachment.dc.description": "Description",
- // TODO New key - Add a translation
- "layout.advanced-attachment.dc.description": "Description",
-
- // "layout.advanced-attachment.no_thumbnail": "No Thumbnail Available",
- // TODO New key - Add a translation
- "layout.advanced-attachment.no_thumbnail": "No Thumbnail Available",
-
- // "layout.advanced-attachment.download": "Download",
- // TODO New key - Add a translation
- "layout.advanced-attachment.download": "Download",
-
- // "layout.advanced-attachment.requestACopy": "Request a copy",
- // TODO New key - Add a translation
- "layout.advanced-attachment.requestACopy": "Request a copy",
-
- // "layout.advanced-attachment.viewMore": "View More",
- // TODO New key - Add a translation
- "layout.advanced-attachment.viewMore": "View More",
-
- // "layout.advanced-attachment.label.not-present": "(not present)",
// TODO New key - Add a translation
- "layout.advanced-attachment.label.not-present": "(not present)",
+ "iiif.page.description": "Description: ",
// "loading.bitstream": "Loading bitstream...",
- "loading.bitstream": "بارگزاری فایل...",
+ // TODO New key - Add a translation
+ "loading.bitstream": "Loading bitstream...",
// "loading.bitstreams": "Loading bitstreams...",
- "loading.bitstreams": "بارگزاری فایلها...",
+ // TODO New key - Add a translation
+ "loading.bitstreams": "Loading bitstreams...",
// "loading.browse-by": "Loading items...",
- "loading.browse-by": "بارگزاری آیتمها...",
+ // TODO New key - Add a translation
+ "loading.browse-by": "Loading items...",
// "loading.browse-by-page": "Loading page...",
- "loading.browse-by-page": "بارگزاری صفحه...",
+ // TODO New key - Add a translation
+ "loading.browse-by-page": "Loading page...",
// "loading.collection": "Loading collection...",
- "loading.collection": "بارگزاری مجموعه...",
+ // TODO New key - Add a translation
+ "loading.collection": "Loading collection...",
// "loading.collections": "Loading collections...",
- "loading.collections": "بارگزاری مجموعه ها...",
+ // TODO New key - Add a translation
+ "loading.collections": "Loading collections...",
// "loading.content-source": "Loading content source...",
- "loading.content-source": "بارگزاری محتوای منبع...",
+ // TODO New key - Add a translation
+ "loading.content-source": "Loading content source...",
// "loading.community": "Loading community...",
- "loading.community": "بارگزاری جامعه...",
+ // TODO New key - Add a translation
+ "loading.community": "Loading community...",
// "loading.default": "Loading...",
- "loading.default": "بارگزاری...",
+ // TODO New key - Add a translation
+ "loading.default": "Loading...",
// "loading.item": "Loading item...",
- "loading.item": "بارگزاری آیتم",
+ // TODO New key - Add a translation
+ "loading.item": "Loading item...",
// "loading.items": "Loading items...",
- "loading.items": "بارگزاری آیتمها...",
+ // TODO New key - Add a translation
+ "loading.items": "Loading items...",
// "loading.mydspace-results": "Loading items...",
- "loading.mydspace-results": "بارگزاری آیتمها...",
+ // TODO New key - Add a translation
+ "loading.mydspace-results": "Loading items...",
// "loading.objects": "Loading...",
- "loading.objects": "بارگزاری ...",
+ // TODO New key - Add a translation
+ "loading.objects": "Loading...",
// "loading.recent-submissions": "Loading recent submissions...",
- "loading.recent-submissions": "بارگزاری ارسالهای اخیر ...",
+ // TODO New key - Add a translation
+ "loading.recent-submissions": "Loading recent submissions...",
// "loading.search-results": "Loading search results...",
- "loading.search-results": "بارگزاری نتایج جستجو ...",
+ // TODO New key - Add a translation
+ "loading.search-results": "Loading search results...",
// "loading.sub-collections": "Loading sub-collections...",
- "loading.sub-collections": "بارگزاری زیرمجموعه ...",
+ // TODO New key - Add a translation
+ "loading.sub-collections": "Loading sub-collections...",
// "loading.sub-communities": "Loading sub-communities...",
- "loading.sub-communities": "بارگزاری زیر جامعه ...",
+ // TODO New key - Add a translation
+ "loading.sub-communities": "Loading sub-communities...",
// "loading.top-level-communities": "Loading top-level communities...",
- "loading.top-level-communities": "بارگزاری جامعه های سطح-بالا ...",
+ // TODO New key - Add a translation
+ "loading.top-level-communities": "Loading top-level communities...",
// "login.form.email": "Email address",
- "login.form.email": "آدرس ایمیل",
+ // TODO New key - Add a translation
+ "login.form.email": "Email address",
// "login.form.forgot-password": "Have you forgotten your password?",
- "login.form.forgot-password": "آیا رمز عبور خود را فراموش کردهاید؟",
+ // TODO New key - Add a translation
+ "login.form.forgot-password": "Have you forgotten your password?",
// "login.form.header": "Please log in to DSpace",
- "login.form.header": "لطفا وارد دیاسپیس شوید",
+ // TODO New key - Add a translation
+ "login.form.header": "Please log in to DSpace",
// "login.form.new-user": "New user? Click here to register.",
- "login.form.new-user": "کاربر جدید؟ برای ثبت نام اینجا کلیک کنید.",
+ // TODO New key - Add a translation
+ "login.form.new-user": "New user? Click here to register.",
// "login.form.oidc": "Log in with OIDC",
- "login.form.oidc": "ورود با OIDC",
+ // TODO New key - Add a translation
+ "login.form.oidc": "Log in with OIDC",
// "login.form.orcid": "Log in with ORCID",
- "login.form.orcid": "ورود با ORCID",
+ // TODO New key - Add a translation
+ "login.form.orcid": "Log in with ORCID",
// "login.form.password": "Password",
- "login.form.password": "رمز عبور",
+ // TODO New key - Add a translation
+ "login.form.password": "Password",
// "login.form.saml": "Log in with SAML",
- "login.form.saml": "ورود با SAML",
+ // TODO New key - Add a translation
+ "login.form.saml": "Log in with SAML",
// "login.form.shibboleth": "Log in with Shibboleth",
- "login.form.shibboleth": "ورود با Shibboleth",
+ // TODO New key - Add a translation
+ "login.form.shibboleth": "Log in with Shibboleth",
// "login.form.submit": "Log in",
+ // TODO New key - Add a translation
"login.form.submit": "ورود",
// "login.title": "Login",
+ // TODO New key - Add a translation
"login.title": "ورود",
// "login.breadcrumbs": "Login",
+ // TODO New key - Add a translation
"login.breadcrumbs": "ورود",
// "logout.form.header": "Log out from DSpace",
- "logout.form.header": "خروج از دی اسپیس",
+ // TODO New key - Add a translation
+ "logout.form.header": "Log out from DSpace",
// "logout.form.submit": "Log out",
- "logout.form.submit": "خروج",
+ // TODO New key - Add a translation
+ "logout.form.submit": "Log out",
// "logout.title": "Logout",
- "logout.title": "خروج",
+ // TODO New key - Add a translation
+ "logout.title": "Logout",
// "menu.header.nav.description": "Admin navigation bar",
- "menu.header.nav.description": "نوار راهبری مدیر",
+ // TODO New key - Add a translation
+ "menu.header.nav.description": "Admin navigation bar",
// "menu.header.admin": "Management",
- "menu.header.admin": "مدیریت",
+ // TODO New key - Add a translation
+ "menu.header.admin": "Management",
// "menu.header.image.logo": "Repository logo",
- "menu.header.image.logo": "لوگو مخزن",
+ // TODO New key - Add a translation
+ "menu.header.image.logo": "Repository logo",
// "menu.header.admin.description": "Management menu",
- "menu.header.admin.description": "منوی مدیریت",
+ // TODO New key - Add a translation
+ "menu.header.admin.description": "Management menu",
// "menu.section.access_control": "Access Control",
- "menu.section.access_control": "کنترل دسترسی",
+ // TODO New key - Add a translation
+ "menu.section.access_control": "Access Control",
// "menu.section.access_control_authorizations": "Authorizations",
// TODO New key - Add a translation
@@ -6472,10 +6270,6 @@
// TODO New key - Add a translation
"menu.section.access_control_people": "People",
- // "menu.section.audit": "Audit Logs",
- // TODO New key - Add a translation
- "menu.section.audit": "Audit Logs",
-
// "menu.section.reports": "Reports",
// TODO New key - Add a translation
"menu.section.reports": "Reports",
@@ -6536,7 +6330,7 @@
// "menu.section.browse_global_communities_and_collections": "Communities & Collections",
// TODO New key - Add a translation
- "menu.section.browse_global_communities_and_collections": "Communities & Collections",
+ "menu.section.browse_global_communities_and_collections": "جامعه ها و مجموعه ها",
// "menu.section.browse_global_geospatial_map": "By Geolocation (Map)",
// TODO New key - Add a translation
@@ -6776,22 +6570,6 @@
// TODO New key - Add a translation
"menu.section.workflow": "Administer Workflow",
- // "menu.section.FULL": "Edit",
- // TODO New key - Add a translation
- "menu.section.FULL": "Edit",
-
- // "menu.section.OWNER": "Edit",
- // TODO New key - Add a translation
- "menu.section.OWNER": "Edit",
-
- // "menu.section.DIRECTOR": "Edit",
- // TODO New key - Add a translation
- "menu.section.DIRECTOR": "Edit",
-
- // "menu.section.INVESTIGATOR": "Edit",
- // TODO New key - Add a translation
- "menu.section.INVESTIGATOR": "Edit",
-
// "metadata-export-search.tooltip": "Export search results as CSV",
// TODO New key - Add a translation
"metadata-export-search.tooltip": "Export search results as CSV",
@@ -6804,10 +6582,6 @@
// TODO New key - Add a translation
"metadata-export-search.submit.error": "Starting the export has failed",
- // "metadata.security.level.title": "Metatada security level {{level}}",
- // TODO New key - Add a translation
- "metadata.security.level.title": "Metatada security level {{level}}",
-
// "mydspace.breadcrumbs": "MyDSpace",
// TODO New key - Add a translation
"mydspace.breadcrumbs": "MyDSpace",
@@ -6928,18 +6702,10 @@
// TODO New key - Add a translation
"mydspace.show.workspace": "Your submissions",
- // "mydspace.show.otherWorkspace": "Shared Submissions",
- // TODO New key - Add a translation
- "mydspace.show.otherWorkspace": "Shared Submissions",
-
// "mydspace.show.supervisedWorkspace": "Supervised items",
// TODO New key - Add a translation
"mydspace.show.supervisedWorkspace": "Supervised items",
- // "mydspace.status": "My DSpace status:",
- // TODO New key - Add a translation
- "mydspace.status": "My DSpace status:",
-
// "mydspace.status.mydspaceArchived": "Archived",
// TODO New key - Add a translation
"mydspace.status.mydspaceArchived": "Archived",
@@ -7018,7 +6784,7 @@
// "nav.login": "Log In",
// TODO New key - Add a translation
- "nav.login": "Log In",
+ "nav.login": "ورود",
// "nav.user-profile-menu-and-logout": "User profile menu and log out",
// TODO New key - Add a translation
@@ -7067,10 +6833,6 @@
// TODO New key - Add a translation
"nav.user.description": "User profile bar",
- // "listelement.badge.dso-type": "Item type:",
- // TODO New key - Add a translation
- "listelement.badge.dso-type": "Item type:",
-
// "none.listelement.badge": "Item",
// TODO New key - Add a translation
"none.listelement.badge": "Item",
@@ -7363,10 +7125,6 @@
// TODO New key - Add a translation
"quality-assurance.event.reason": "Reason",
- // "orcid.badge.tooltip": "Connected to ORCID",
- // TODO New key - Add a translation
- "orcid.badge.tooltip": "Connected to ORCID",
-
// "orgunit.listelement.badge": "Organizational Unit",
// TODO New key - Add a translation
"orgunit.listelement.badge": "Organizational Unit",
@@ -7391,9 +7149,9 @@
// TODO New key - Add a translation
"orgunit.page.description": "Description",
- // "orgunit.page.edit": "Administer",
+ // "orgunit.page.edit": "Edit this item",
// TODO New key - Add a translation
- "orgunit.page.edit": "Administer",
+ "orgunit.page.edit": "Edit this item",
// "orgunit.page.id": "ID",
// TODO New key - Add a translation
@@ -7420,13 +7178,16 @@
"pagination.options.description": "Pagination options",
// "pagination.results-per-page": "Results Per Page",
- "pagination.results-per-page": "نتایج در هر صفحه",
+ // TODO New key - Add a translation
+ "pagination.results-per-page": "Results Per Page",
// "pagination.showing.detail": "{{ range }} of {{ total }}",
- "pagination.showing.detail": "{{ range }} از {{ total }}",
+ // TODO New key - Add a translation
+ "pagination.showing.detail": "{{ range }} of {{ total }}",
// "pagination.showing.label": "Now showing ",
- "pagination.showing.label": "در حال نمایش",
+ // TODO New key - Add a translation
+ "pagination.showing.label": "Now showing ",
// "pagination.sort-direction": "Sort Options",
// TODO New key - Add a translation
@@ -7444,9 +7205,9 @@
// TODO New key - Add a translation
"person.page.birthdate": "Birth Date",
- // "person.page.edit": "Administer",
+ // "person.page.edit": "Edit this item",
// TODO New key - Add a translation
- "person.page.edit": "Administer",
+ "person.page.edit": "Edit this item",
// "person.page.email": "Email Address",
// TODO New key - Add a translation
@@ -7800,34 +7561,22 @@
// TODO New key - Add a translation
"process.overview.unknown.user": "Unknown",
- // "process.bulk.delete.error.head": "Error on deleting process",
+ // "process.bulk.delete.error.head": "Error on deleteing process",
// TODO New key - Add a translation
- "process.bulk.delete.error.head": "Error on deleting process",
+ "process.bulk.delete.error.head": "Error on deleteing process",
- // "process.bulk.delete.error.body": "The process with ID {{processId}} could not be deleted. The remaining processes will continue being deleted.",
+ // "process.bulk.delete.error.body": "The process with ID {{processId}} could not be deleted. The remaining processes will continue being deleted. ",
// TODO New key - Add a translation
- "process.bulk.delete.error.body": "The process with ID {{processId}} could not be deleted. The remaining processes will continue being deleted.",
+ "process.bulk.delete.error.body": "The process with ID {{processId}} could not be deleted. The remaining processes will continue being deleted. ",
- // "process.bulk.delete.success": "{{count}} process(es) have been successfully deleted",
+ // "process.bulk.delete.success": "{{count}} process(es) have been succesfully deleted",
// TODO New key - Add a translation
- "process.bulk.delete.success": "{{count}} process(es) have been successfully deleted",
+ "process.bulk.delete.success": "{{count}} process(es) have been succesfully deleted",
// "profile.breadcrumbs": "Update Profile",
// TODO New key - Add a translation
"profile.breadcrumbs": "Update Profile",
- // "profile.card.accessibility.content": "Accessibility settings can be configured on the accessibility settings page.",
- // TODO New key - Add a translation
- "profile.card.accessibility.content": "Accessibility settings can be configured on the accessibility settings page.",
-
- // "profile.card.accessibility.header": "Accessibility",
- // TODO New key - Add a translation
- "profile.card.accessibility.header": "Accessibility",
-
- // "profile.card.accessibility.link": "Go to Accessibility Settings Page",
- // TODO New key - Add a translation
- "profile.card.accessibility.link": "Go to Accessibility Settings Page",
-
// "profile.card.identify": "Identify",
// TODO New key - Add a translation
"profile.card.identify": "Identify",
@@ -7956,9 +7705,9 @@
// TODO New key - Add a translation
"project.page.description": "Description",
- // "project.page.edit": "Administer",
+ // "project.page.edit": "Edit this item",
// TODO New key - Add a translation
- "project.page.edit": "Administer",
+ "project.page.edit": "Edit this item",
// "project.page.expectedcompletion": "Expected Completion",
// TODO New key - Add a translation
@@ -8004,9 +7753,9 @@
// TODO New key - Add a translation
"publication.page.description": "Description",
- // "publication.page.edit": "Administer",
+ // "publication.page.edit": "Edit this item",
// TODO New key - Add a translation
- "publication.page.edit": "Administer",
+ "publication.page.edit": "Edit this item",
// "publication.page.journal-issn": "Journal ISSN",
// TODO New key - Add a translation
@@ -8032,10 +7781,6 @@
// TODO New key - Add a translation
"publication.page.volume-title": "Volume Title",
- // "publication.page.doi": "DOI",
- // TODO New key - Add a translation
- "publication.page.doi": "DOI",
-
// "publication.search.results.head": "Publication Search Results",
// TODO New key - Add a translation
"publication.search.results.head": "Publication Search Results",
@@ -8412,9 +8157,9 @@
// TODO New key - Add a translation
"relationships.Person.isOrgUnitOfPerson.OrgUnit": "Organizational Units",
- // "relationships.Person.isPublicationOfContributor.Publication": "Publications (contributor to)",
+ // "relationships.Person.isPublicationOfContributor.Publication": "Publications",
// TODO New key - Add a translation
- "relationships.Person.isPublicationOfContributor.Publication": "Publications (contributor to)",
+ "relationships.Person.isPublicationOfContributor.Publication": "Publications",
// "relationships.Project.isPublicationOfProject.Publication": "Publications",
// TODO New key - Add a translation
@@ -8448,13 +8193,13 @@
// TODO New key - Add a translation
"relationships.OrgUnit.isPublicationOfAuthor.Publication": "Authored Publications",
- // "relationships.OrgUnit.isPublicationOfContributor.Publication": "Publications (contributor to)",
+ // "relationships.OrgUnit.isPublicationOfContributor.Publication": "Publications",
// TODO New key - Add a translation
- "relationships.OrgUnit.isPublicationOfContributor.Publication": "Publications (contributor to)",
+ "relationships.OrgUnit.isPublicationOfContributor.Publication": "Publications",
- // "relationships.OrgUnit.isProjectOfFundingAgency.Project": "Research Projects (funder of)",
+ // "relationships.OrgUnit.isProjectOfFundingAgency.Project": "Research Projects",
// TODO New key - Add a translation
- "relationships.OrgUnit.isProjectOfFundingAgency.Project": "Research Projects (funder of)",
+ "relationships.OrgUnit.isProjectOfFundingAgency.Project": "Research Projects",
// "relationships.JournalIssue.isJournalVolumeOfIssue.JournalVolume": "Journal Volume",
// TODO New key - Add a translation
@@ -8588,9 +8333,9 @@
// TODO New key - Add a translation
"resource-policies.form.eperson-group-list.select.btn": "Select",
- // "resource-policies.form.eperson-group-list.tab.eperson": "Search for an ePerson",
+ // "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": "Search for an ePerson",
+ "resource-policies.form.eperson-group-list.tab.eperson": "Search for a ePerson",
// "resource-policies.form.eperson-group-list.tab.group": "Search for a group",
// TODO New key - Add a translation
@@ -8712,77 +8457,29 @@
// TODO New key - Add a translation
"resource-policies.table.headers.name": "Name",
- // "resource-policies.table.headers.policyType": "type",
- // TODO New key - Add a translation
- "resource-policies.table.headers.policyType": "type",
-
- // "resource-policies.table.headers.title.for.bitstream": "Policies for Bitstream",
- // TODO New key - Add a translation
- "resource-policies.table.headers.title.for.bitstream": "Policies for Bitstream",
-
- // "resource-policies.table.headers.title.for.bundle": "Policies for Bundle",
- // TODO New key - Add a translation
- "resource-policies.table.headers.title.for.bundle": "Policies for Bundle",
-
- // "resource-policies.table.headers.title.for.item": "Policies for Item",
- // TODO New key - Add a translation
- "resource-policies.table.headers.title.for.item": "Policies for Item",
-
- // "resource-policies.table.headers.title.for.community": "Policies for Community",
- // TODO New key - Add a translation
- "resource-policies.table.headers.title.for.community": "Policies for Community",
-
- // "resource-policies.table.headers.title.for.collection": "Policies for Collection",
- // TODO New key - Add a translation
- "resource-policies.table.headers.title.for.collection": "Policies for Collection",
-
- // "RELATION.Person.researchoutputs.search.results.head": "Research Output",
- // TODO New key - Add a translation
- "RELATION.Person.researchoutputs.search.results.head": "Research Output",
-
- // "RELATION.Person.projects.search.results.head": "Projects",
- // TODO New key - Add a translation
- "RELATION.Person.projects.search.results.head": "Projects",
-
- // "RELATION.Project.researchoutputs.search.results.head": "Publications",
- // TODO New key - Add a translation
- "RELATION.Project.researchoutputs.search.results.head": "Publications",
-
- // "RELATION.Project.fundings.search.results.head": "Fundings",
- // TODO New key - Add a translation
- "RELATION.Project.fundings.search.results.head": "Fundings",
-
- // "RELATION.Project.projects.search.results.head": "Projects",
- // TODO New key - Add a translation
- "RELATION.Project.projects.search.results.head": "Projects",
-
- // "RELATION.OrgUnit.organizations.search.results.head": "Organizations",
- // TODO New key - Add a translation
- "RELATION.OrgUnit.organizations.search.results.head": "Organizations",
-
- // "RELATION.OrgUnit.rppublications.search.results.head": "Researchers Publications",
+ // "resource-policies.table.headers.policyType": "type",
// TODO New key - Add a translation
- "RELATION.OrgUnit.rppublications.search.results.head": "Researchers Publications",
+ "resource-policies.table.headers.policyType": "type",
- // "RELATION.OrgUnit.publications.search.results.head": "Publications",
+ // "resource-policies.table.headers.title.for.bitstream": "Policies for Bitstream",
// TODO New key - Add a translation
- "RELATION.OrgUnit.publications.search.results.head": "Publications",
+ "resource-policies.table.headers.title.for.bitstream": "Policies for Bitstream",
- // "RELATION.OrgUnit.rpprojects.search.results.head": "Researchers Projects",
+ // "resource-policies.table.headers.title.for.bundle": "Policies for Bundle",
// TODO New key - Add a translation
- "RELATION.OrgUnit.rpprojects.search.results.head": "Researchers Projects",
+ "resource-policies.table.headers.title.for.bundle": "Policies for Bundle",
- // "RELATION.OrgUnit.projects.search.results.head": "Projects",
+ // "resource-policies.table.headers.title.for.item": "Policies for Item",
// TODO New key - Add a translation
- "RELATION.OrgUnit.projects.search.results.head": "Projects",
+ "resource-policies.table.headers.title.for.item": "Policies for Item",
- // "RELATION.Project.researchoutputs.search.results.head": "Publications",
+ // "resource-policies.table.headers.title.for.community": "Policies for Community",
// TODO New key - Add a translation
- "RELATION.Project.researchoutputs.search.results.head": "Publications",
+ "resource-policies.table.headers.title.for.community": "Policies for Community",
- // "RELATION.OrgUnit.people.search.results.head": "People",
+ // "resource-policies.table.headers.title.for.collection": "Policies for Collection",
// TODO New key - Add a translation
- "RELATION.OrgUnit.people.search.results.head": "People",
+ "resource-policies.table.headers.title.for.collection": "Policies for Collection",
// "root.skip-to-content": "Skip to main content",
// TODO New key - Add a translation
@@ -8972,14 +8669,6 @@
// TODO New key - Add a translation
"search.filters.filter.creativeDatePublished.label": "Search date published",
- // "search.filters.filter.creativeDatePublished.min.label": "Start",
- // TODO New key - Add a translation
- "search.filters.filter.creativeDatePublished.min.label": "Start",
-
- // "search.filters.filter.creativeDatePublished.max.label": "End",
- // TODO New key - Add a translation
- "search.filters.filter.creativeDatePublished.max.label": "End",
-
// "search.filters.filter.creativeWorkEditor.head": "Editor",
// TODO New key - Add a translation
"search.filters.filter.creativeWorkEditor.head": "Editor",
@@ -9200,14 +8889,6 @@
// TODO New key - Add a translation
"search.filters.filter.organizationFoundingDate.label": "Search date founded",
- // "search.filters.filter.organizationFoundingDate.min.label": "Start",
- // TODO New key - Add a translation
- "search.filters.filter.organizationFoundingDate.min.label": "Start",
-
- // "search.filters.filter.organizationFoundingDate.max.label": "End",
- // TODO New key - Add a translation
- "search.filters.filter.organizationFoundingDate.max.label": "End",
-
// "search.filters.filter.scope.head": "Scope",
// TODO New key - Add a translation
"search.filters.filter.scope.head": "Scope",
@@ -9596,14 +9277,6 @@
// TODO New key - Add a translation
"sorting.person.birthDate.DESC": "Birth Date Descending",
- // "sorting.ownerselection.ASC": "Owner Relevance Ascending",
- // TODO New key - Add a translation
- "sorting.ownerselection.ASC": "Owner Relevance Ascending",
-
- // "sorting.ownerselection.DESC": "Owner Relevance Descending",
- // TODO New key - Add a translation
- "sorting.ownerselection.DESC": "Owner Relevance Descending",
-
// "statistics.title": "Statistics",
"statistics.title": "آمارها",
@@ -9657,10 +9330,6 @@
// TODO New key - Add a translation
"submission.edit.title": "Edit Submission",
- // "submission.edit.item.breadcrumbs": "Edit item",
- // TODO New key - Add a translation
- "submission.edit.item.breadcrumbs": "Edit item",
-
// "submission.general.cancel": "Cancel",
// TODO New key - Add a translation
"submission.general.cancel": "Cancel",
@@ -9697,10 +9366,6 @@
// TODO New key - Add a translation
"submission.general.back.submit": "Back",
- // "submission.general.info.invalid": "The submission is invalid, check missing fields",
- // TODO New key - Add a translation
- "submission.general.info.invalid": "The submission is invalid, check missing fields",
-
// "submission.general.info.saved": "Saved",
// TODO New key - Add a translation
"submission.general.info.saved": "Saved",
@@ -9717,10 +9382,6 @@
// TODO New key - Add a translation
"submission.general.save-later": "Save for later",
- // "submission.general.save-later.edit-item": "Save and return",
- // TODO New key - Add a translation
- "submission.general.save-later.edit-item": "Save and return",
-
// "submission.import-external.page.title": "Import metadata from an external source",
// TODO New key - Add a translation
"submission.import-external.page.title": "Import metadata from an external source",
@@ -9741,9 +9402,9 @@
// TODO New key - Add a translation
"submission.import-external.title.JournalVolume": "Import a journal volume from an external source",
- // "submission.import-external.title.OrgUnit": "Import an organizational unit from an external source",
+ // "submission.import-external.title.OrgUnit": "Import a publisher from an external source",
// TODO New key - Add a translation
- "submission.import-external.title.OrgUnit": "Import an organizational unit from an external source",
+ "submission.import-external.title.OrgUnit": "Import a publisher from an external source",
// "submission.import-external.title.Person": "Import a person from an external source",
// TODO New key - Add a translation
@@ -10240,10 +9901,6 @@
// TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalIssue": "Local Journal Issues ({{ count }})",
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfIssue": "Local Journal Volumes ({{ count }})",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfIssue": "Local Journal Volumes ({{ 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 }})",
@@ -10308,26 +9965,6 @@
// TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournalIssn": "Sherpa Journals by ISSN ({{ count }})",
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPerson": "OpenAlex ({{ count }})",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPerson": "OpenAlex ({{ count }})",
-
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexInstitution": "OpenAlex Search by Institution ({{ count }})",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexInstitution": "OpenAlex Search by Institution ({{ count }})",
-
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPublisher": "OpenAlex Search by Publisher ({{ count }})",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPublisher": "OpenAlex Search by Publisher ({{ count }})",
-
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexFunder": "OpenAlex Search by Funder ({{ count }})",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexFunder": "OpenAlex Search by Funder ({{ count }})",
-
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.dataciteProject": "DataCite Search by Project ({{ count }})",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.search-tab.tab-title.dataciteProject": "DataCite Search by Project ({{ 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": "Search for Funding Agencies",
@@ -10368,10 +10005,6 @@
// TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.title.isFundingAgencyOfProject": "Funder of the Project",
- // "submission.sections.describe.relationship-lookup.title.isPersonOfProject": "Person of the Project",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.title.isPersonOfProject": "Person of the Project",
-
// "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": "Search...",
@@ -10392,10 +10025,6 @@
// TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.title.JournalIssue": "Journal Issues",
- // "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfIssue": "Journal Volumes",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfIssue": "Journal Volumes",
-
// "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfPublication": "Journal Volumes",
// TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.title.isJournalVolumeOfPublication": "Journal Volumes",
@@ -10480,10 +10109,6 @@
// TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.selection-tab.title.isJournalOfPublication": "Selected Journals",
- // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfIssue": "Selected Journal Volume",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfIssue": "Selected Journal Volume",
-
// "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": "Selected Journal Volume",
@@ -10604,26 +10229,6 @@
// TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.selection-tab.title.ror": "Search Results",
- // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPerson": "Search Results",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPerson": "Search Results",
-
- // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexInstitution": "Search Results",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.selection-tab.title.openalexInstitution": "Search Results",
-
- // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPublisher": "Search Results",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPublisher": "Search Results",
-
- // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexFunder": "Search Results",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.selection-tab.title.openalexFunder": "Search Results",
-
- // "submission.sections.describe.relationship-lookup.selection-tab.title.dataciteProject": "Search Results",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.selection-tab.title.dataciteProject": "Search Results",
-
// "submission.sections.describe.relationship-lookup.selection-tab.title": "Search Results",
// TODO New key - Add a translation
"submission.sections.describe.relationship-lookup.selection-tab.title": "Search Results",
@@ -10684,10 +10289,6 @@
// TODO New key - Add a translation
"submission.sections.general.deposit_error_notice": "There was an issue when submitting the item, please try again later.",
- // "submission.sections.general.invalid_state_error": "Cannot save current changes, mandatory fields are missing. Please resolve problems and save again later.",
- // TODO New key - Add a translation
- "submission.sections.general.invalid_state_error": "Cannot save current changes, mandatory fields are missing. Please resolve problems and save again later.",
-
// "submission.sections.general.deposit_success_notice": "Submission deposited successfully.",
// TODO New key - Add a translation
"submission.sections.general.deposit_success_notice": "Submission deposited successfully.",
@@ -10768,10 +10369,6 @@
// TODO New key - Add a translation
"submission.sections.submit.progressbar.CClicense": "Creative commons license",
- // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url",
- // TODO New key - Add a translation
- "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url",
-
// "submission.sections.submit.progressbar.describe.recycle": "Recycle",
// TODO New key - Add a translation
"submission.sections.submit.progressbar.describe.recycle": "Recycle",
@@ -10800,10 +10397,6 @@
// TODO New key - Add a translation
"submission.sections.submit.progressbar.license": "Deposit license",
- // "submission.sections.submit.progressbar.describe.owner": "Owner",
- // TODO New key - Add a translation
- "submission.sections.submit.progressbar.describe.owner": "Owner",
-
// "submission.sections.submit.progressbar.sherpapolicy": "Sherpa policies",
// TODO New key - Add a translation
"submission.sections.submit.progressbar.sherpapolicy": "Sherpa policies",
@@ -10996,18 +10589,6 @@
// TODO New key - Add a translation
"submission.sections.upload.upload-successful": "Upload successful",
- // "submission.sections.custom-url.label.previous-urls": "Previous Urls",
- // TODO New key - Add a translation
- "submission.sections.custom-url.label.previous-urls": "Previous Urls",
-
- // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ",
- // TODO New key - Add a translation
- "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ",
-
- // "submission.sections.custom-url.url.placeholder": "Custom URL",
- // TODO New key - Add a translation
- "submission.sections.custom-url.url.placeholder": "Custom URL",
-
// "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": "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.",
@@ -11196,9 +10777,9 @@
// TODO New key - Add a translation
"submission.sections.sherpa.record.information.uri": "URI",
- // "submission.sections.sherpa.error.message": "There was an error retrieving sherpa information",
+ // "submission.sections.sherpa.error.message": "There was an error retrieving sherpa informations",
// TODO New key - Add a translation
- "submission.sections.sherpa.error.message": "There was an error retrieving sherpa information",
+ "submission.sections.sherpa.error.message": "There was an error retrieving sherpa informations",
// "submission.submit.breadcrumbs": "New submission",
// TODO New key - Add a translation
@@ -11292,9 +10873,9 @@
// TODO New key - Add a translation
"submission.workflow.tasks.claimed.reject.submit": "Reject",
- // "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.",
+ // "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": "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.",
+ "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.",
// "submission.workflow.tasks.claimed.return": "Return to pool",
// TODO New key - Add a translation
@@ -11392,10 +10973,6 @@
// TODO New key - Add a translation
"subscriptions.tooltip": "Subscribe",
- // "subscriptions.manage": "Manage Subscription",
- // TODO New key - Add a translation
- "subscriptions.manage": "Manage Subscription",
-
// "subscriptions.modal.title": "Subscriptions",
// TODO New key - Add a translation
"subscriptions.modal.title": "Subscriptions",
@@ -11620,10 +11197,6 @@
// TODO New key - Add a translation
"workflow.search.results.head": "Workflow tasks",
- // "otherWorkspace.search.results.head": "Shared workspace",
- // TODO New key - Add a translation
- "otherWorkspace.search.results.head": "Shared workspace",
-
// "supervision.search.results.head": "Workflow and Workspace tasks",
// TODO New key - Add a translation
"supervision.search.results.head": "Workflow and Workspace tasks",
@@ -12328,10 +11901,6 @@
// TODO New key - Add a translation
"home.recent-submissions.head": "Recent Submissions",
- // "authority-confidence.search-label": "Search",
- // TODO New key - Add a translation
- "authority-confidence.search-label": "Search",
-
// "listable-notification-object.default-message": "This object couldn't be retrieved",
// TODO New key - Add a translation
"listable-notification-object.default-message": "This object couldn't be retrieved",
@@ -12873,9 +12442,9 @@
// "ldn-new-service.form.label.inboundPattern": "Supported Pattern",
// TODO New key - Add a translation
"ldn-new-service.form.label.inboundPattern": "Supported Pattern",
- // "ldn-new-service.form.label.addPattern": "+ Add more",
+ // "ldn-new-service.form.label.addPattern": "Add more",
// TODO New key - Add a translation
- "ldn-new-service.form.label.addPattern": "+ Add more",
+ "ldn-new-service.form.label.addPattern": "Add more",
// "ldn-new-service.form.label.removeItemFilter": "Remove",
// TODO New key - Add a translation
"ldn-new-service.form.label.removeItemFilter": "Remove",
@@ -13180,21 +12749,21 @@
// TODO New key - Add a translation
"error.validation.coarnotify.invalidfilter": "Invalid filter, try to select another service or none.",
- // "request-status-alert-box.accepted": "The requested {{ offerType }} for {{ serviceName }} has been taken in charge.",
+ // "request-status-alert-box.accepted": "The requested {{ offerType }} for {{ serviceName }} has been taken in charge.",
// TODO New key - Add a translation
- "request-status-alert-box.accepted": "The requested {{ offerType }} for {{ serviceName }} has been taken in charge.",
+ "request-status-alert-box.accepted": "The requested {{ offerType }} for {{ serviceName }} has been taken in charge.",
- // "request-status-alert-box.rejected": "The requested {{ offerType }} for {{ serviceName }} has been rejected.",
+ // "request-status-alert-box.rejected": "The requested {{ offerType }} for {{ serviceName }} has been rejected.",
// TODO New key - Add a translation
- "request-status-alert-box.rejected": "The requested {{ offerType }} for {{ serviceName }} has been rejected.",
+ "request-status-alert-box.rejected": "The requested {{ offerType }} for {{ serviceName }} has been rejected.",
- // "request-status-alert-box.tentative_rejected": "The requested {{ offerType }} for {{ serviceName }} has been tentatively rejected. Revisions are required",
+ // "request-status-alert-box.tentative_rejected": "The requested {{ offerType }} for {{ serviceName }} has been tentatively rejected. Revisions are required",
// TODO New key - Add a translation
- "request-status-alert-box.tentative_rejected": "The requested {{ offerType }} for {{ serviceName }} has been tentatively rejected. Revisions are required",
+ "request-status-alert-box.tentative_rejected": "The requested {{ offerType }} for {{ serviceName }} has been tentatively rejected. Revisions are required",
- // "request-status-alert-box.requested": "The requested {{ offerType }} for {{ serviceName }} is pending.",
+ // "request-status-alert-box.requested": "The requested {{ offerType }} for {{ serviceName }} is pending.",
// TODO New key - Add a translation
- "request-status-alert-box.requested": "The requested {{ offerType }} for {{ serviceName }} is pending.",
+ "request-status-alert-box.requested": "The requested {{ offerType }} for {{ serviceName }} is pending.",
// "ldn-service-button-mark-inbound-deletion": "Mark supported pattern for deletion",
// TODO New key - Add a translation
@@ -13980,25 +13549,21 @@
// TODO New key - Add a translation
"form.date-picker.placeholder.day": "Day",
- // "item.page.license.title": "Rights and licensing",
- // TODO New key - Add a translation
- "item.page.license.title": "Rights and licensing",
-
// "item.page.cc.license.title": "Creative Commons license",
// TODO New key - Add a translation
"item.page.cc.license.title": "Creative Commons license",
- // "item.page.cc.license.disclaimer": "Except where otherwise noted, this item's license is described as",
+ // "item.page.cc.license.disclaimer": "Except where otherwised noted, this item's license is described as",
// TODO New key - Add a translation
- "item.page.cc.license.disclaimer": "Except where otherwise noted, this item's license is described as",
+ "item.page.cc.license.disclaimer": "Except where otherwised noted, this item's license is described as",
- // "file-download-link.download": "Download ",
+ // "browse.search-form.placeholder": "Search the repository",
// TODO New key - Add a translation
- "file-download-link.download": "Download ",
+ "browse.search-form.placeholder": "Search the repository",
- // "file-download-button.download": "Download",
+ // "file-download-link.download": "Download ",
// TODO New key - Add a translation
- "file-download-button.download": "Download",
+ "file-download-link.download": "Download ",
// "register-page.registration.aria.label": "Enter your e-mail address",
// TODO New key - Add a translation
@@ -14016,9 +13581,9 @@
// TODO New key - Add a translation
"live-region.ordering.instructions": "Press spacebar to reorder {{ itemName }}.",
- // "live-region.ordering.status": "{{ itemName }}, grabbed. Current position in list: {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.",
+ // "live-region.ordering.status": "{{ itemName }}, grabbed. Current position in list: {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.",
// TODO New key - Add a translation
- "live-region.ordering.status": "{{ itemName }}, grabbed. Current position in list: {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.",
+ "live-region.ordering.status": "{{ itemName }}, grabbed. Current position in list: {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.",
// "live-region.ordering.moved": "{{ itemName }}, moved to position {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.",
// TODO New key - Add a translation
@@ -14072,9 +13637,9 @@
// TODO New key - Add a translation
"external-login.confirm-email-sent.header": "Confirmation email sent",
- // "external-login.confirm-email-sent.info": " We have sent an email to the provided address to validate your input.
Please follow the instructions in the email to complete the login process.",
+ // "external-login.confirm-email-sent.info": " We have sent an emait to the provided address to validate your input.
Please follow the instructions in the email to complete the login process.",
// TODO New key - Add a translation
- "external-login.confirm-email-sent.info": " We have sent an email to the provided address to validate your input.
Please follow the instructions in the email to complete the login process.",
+ "external-login.confirm-email-sent.info": " We have sent an emait to the provided address to validate your input.
Please follow the instructions in the email to complete the login process.",
// "external-login.provide-email.header": "Provide email",
// TODO New key - Add a translation
@@ -14232,353 +13797,5 @@
// TODO New key - Add a translation
"embargo.listelement.badge": "Embargo until {{ date }}",
- // "metadata-export-search.submit.error.limit-exceeded": "Only the first {{limit}} items will be exported",
- // TODO New key - Add a translation
- "metadata-export-search.submit.error.limit-exceeded": "Only the first {{limit}} items will be exported",
-
- // "file-download-link.request-copy": "Request a copy of ",
- // TODO New key - Add a translation
- "file-download-link.request-copy": "Request a copy of ",
-
- // "file-download-button.request-copy": "Request a copy",
- // TODO New key - Add a translation
- "file-download-button.request-copy": "Request a copy",
-
- // "item.preview.organization.url": "URL",
- // TODO New key - Add a translation
- "item.preview.organization.url": "URL",
-
- // "item.preview.organization.address.addressLocality": "City",
- // TODO New key - Add a translation
- "item.preview.organization.address.addressLocality": "City",
-
- // "item.preview.organization.alternateName": "Alternative name",
- // TODO New key - Add a translation
- "item.preview.organization.alternateName": "Alternative name",
-
- // "metadata-link-view.orcid.logo": "ORCID logo",
- // TODO New key - Add a translation
- "metadata-link-view.orcid.logo": "ORCID logo",
-
- // "metadata-link-view.source.logo": "Source logo",
- // TODO New key - Add a translation
- "metadata-link-view.source.logo": "Source logo",
-
- // "metadata-link-view.popover.label.Person.dc.title": "Fullname",
- // TODO New key - Add a translation
- "metadata-link-view.popover.label.Person.dc.title": "Fullname",
-
- // "metadata-link-view.popover.label.Person.person.affiliation.name": "Main affiliation",
- // TODO New key - Add a translation
- "metadata-link-view.popover.label.Person.person.affiliation.name": "Main affiliation",
-
- // "metadata-link-view.popover.label.Person.person.email": "Email",
- // TODO New key - Add a translation
- "metadata-link-view.popover.label.Person.person.email": "Email",
-
- // "metadata-link-view.popover.label.Person.person.identifier.orcid": "ORCID",
- // TODO New key - Add a translation
- "metadata-link-view.popover.label.Person.person.identifier.orcid": "ORCID",
-
- // "metadata-link-view.popover.label.Person.dc.description.abstract": "Abstract",
- // TODO New key - Add a translation
- "metadata-link-view.popover.label.Person.dc.description.abstract": "Abstract",
-
- // "metadata-link-view.popover.label.Person.person.jobTitle": "Job title",
- // TODO New key - Add a translation
- "metadata-link-view.popover.label.Person.person.jobTitle": "Job title",
-
- // "metadata-link-view.popover.label.other.dc.title": "Title",
- // TODO New key - Add a translation
- "metadata-link-view.popover.label.other.dc.title": "Title",
-
- // "metadata-link-view.popover.label.other.dc.description.abstract": "Description",
- // TODO New key - Add a translation
- "metadata-link-view.popover.label.other.dc.description.abstract": "Description",
-
- // "metadata-link-view.popover.label.more-info": "More info",
- // TODO New key - Add a translation
- "metadata-link-view.popover.label.more-info": "More info",
-
- // "item.page.extended-file-section": "Bitstreams",
- // TODO New key - Add a translation
- "item.page.extended-file-section": "Bitstreams",
-
- // "file.section.name": "Document",
- // TODO New key - Add a translation
- "file.section.name": "Document",
-
- // "file.section.type": "Type",
- // TODO New key - Add a translation
- "file.section.type": "Type",
-
- // "file.section.size": "Size",
- // TODO New key - Add a translation
- "file.section.size": "Size",
-
- // "dataset.page.titleprefix": "Dataset",
- // TODO New key - Add a translation
- "dataset.page.titleprefix": "Dataset",
-
- // "dataset.listelement.badge": "Dataset",
- // TODO New key - Add a translation
- "dataset.listelement.badge": "Dataset",
-
- // "dataset.page.options": "Options",
- // TODO New key - Add a translation
- "dataset.page.options": "Options",
-
- // "dataset.page.edit": "Edit this Dataset",
- // TODO New key - Add a translation
- "dataset.page.edit": "Edit this Dataset",
-
- // "relationships.Dataset.isAuthorOfDataset.Person": "Authors (Persons)",
- // TODO New key - Add a translation
- "relationships.Dataset.isAuthorOfDataset.Person": "Authors (Persons)",
-
- // "relationships.Dataset.isProjectOfDataset.Project": "Research Projects",
- // TODO New key - Add a translation
- "relationships.Dataset.isProjectOfDataset.Project": "Research Projects",
-
- // "relationships.Dataset.isAuthorOfDataset.OrgUnit": "Organizational Units",
- // TODO New key - Add a translation
- "relationships.Dataset.isAuthorOfDataset.OrgUnit": "Organizational Units",
-
- // "relationships.Dataset.isOrgUnitOfDataset.OrgUnit": "Authors (Organizational Units)",
- // TODO New key - Add a translation
- "relationships.Dataset.isOrgUnitOfDataset.OrgUnit": "Authors (Organizational Units)",
-
- // "relationships.Dataset.isPublicationOfDataset.Publication": "Publications",
- // TODO New key - Add a translation
- "relationships.Dataset.isPublicationOfDataset.Publication": "Publications",
-
- // "relationships.Publication.isDatasetOfPublication.Dataset": "Datasets",
- // TODO New key - Add a translation
- "relationships.Publication.isDatasetOfPublication.Dataset": "Datasets",
-
- // "relationships.Person.isDatasetOfAuthor.Dataset": "Datasets",
- // TODO New key - Add a translation
- "relationships.Person.isDatasetOfAuthor.Dataset": "Datasets",
-
- // "relationships.Project.isDatasetOfProject.Dataset": "Datasets",
- // TODO New key - Add a translation
- "relationships.Project.isDatasetOfProject.Dataset": "Datasets",
-
- // "relationships.OrgUnit.isDatasetOfAuthor.Dataset": "Authored Datasets",
- // TODO New key - Add a translation
- "relationships.OrgUnit.isDatasetOfAuthor.Dataset": "Authored Datasets",
-
- // "relationships.OrgUnit.isDatasetOfOrgUnit.Dataset": "Organisation Datasets",
- // TODO New key - Add a translation
- "relationships.OrgUnit.isDatasetOfOrgUnit.Dataset": "Organisation Datasets",
-
- // "submission.sections.describe.relationship-lookup.title.Dataset": "Datasets",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.title.Dataset": "Datasets",
-
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.Dataset": "Local Datasets",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.search-tab.tab-title.Dataset": "Local Datasets",
-
- // "dataset.search.results.head": "Dataset Search Results",
- // TODO New key - Add a translation
- "dataset.search.results.head": "Dataset Search Results",
-
- // "submission.sections.describe.relationship-lookup.title.isAuthorOfDataset": "Authors",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.title.isAuthorOfDataset": "Authors",
-
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isAuthorOfDataset": "Local Authors ({{ count }})",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.search-tab.tab-title.isAuthorOfDataset": "Local Authors ({{ count }})",
-
- // "submission.sections.describe.relationship-lookup.title.isPublicationOfDataset": "Publications",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.title.isPublicationOfDataset": "Publications",
-
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isPublicationOfDataset": "Local Publications ({{ count }})",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.search-tab.tab-title.isPublicationOfDataset": "Local Publications ({{ count }})",
-
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.cinii": "CiNii ({{ count }})",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.search-tab.tab-title.cinii": "CiNii ({{ count }})",
-
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.cinii": "Importing from CiNii",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.external-source.import-modal.head.cinii": "Importing from CiNii",
-
- // "submission.sections.describe.relationship-lookup.selection-tab.title.cinii": "Search Results",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.selection-tab.title.cinii": "Search Results",
-
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.datacite": "DataCite ({{ count }})",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.search-tab.tab-title.datacite": "DataCite ({{ count }})",
-
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.datacite": "Importing from DataCite",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.external-source.import-modal.head.datacite": "Importing from DataCite",
-
- // "submission.sections.describe.relationship-lookup.selection-tab.title.datacite": "Search Results",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.selection-tab.title.datacite": "Search Results",
-
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.doi": "DOI ({{ count }})",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.search-tab.tab-title.doi": "DOI ({{ count }})",
-
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.doi": "Importing from DOI",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.external-source.import-modal.head.doi": "Importing from DOI",
-
- // "submission.sections.describe.relationship-lookup.selection-tab.title.doi": "Search Results",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.selection-tab.title.doi": "Search Results",
-
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.isPublicationOfDataset.title": "Import Remote Publication",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.external-source.import-modal.isPublicationOfDataset.title": "Import Remote Publication",
-
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.isPublicationOfDataset.added.local-entity": "Successfully added local publication to the selection",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.external-source.import-modal.isPublicationOfDataset.added.local-entity": "Successfully added local publication to the selection",
-
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.isPublicationOfDataset.added.new-entity": "Successfully imported and added external publication to the selection",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.external-source.import-modal.isPublicationOfDataset.added.new-entity": "Successfully imported and added external publication to the selection",
-
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfDataset.title": "Import Remote Author",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfDataset.title": "Import Remote Author",
-
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfDataset.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.isAuthorOfDataset.added.local-entity": "Successfully added local author to the selection",
-
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfDataset.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.isAuthorOfDataset.added.new-entity": "Successfully imported and added external author to the selection",
-
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfDataset.title": "Import Remote Project",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfDataset.title": "Import Remote Project",
-
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfDataset.added.local-entity": "Successfully added local project to the selection",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfDataset.added.local-entity": "Successfully added local project to the selection",
-
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfDataset.added.new-entity": "Successfully imported and added external project to the selection",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfDataset.added.new-entity": "Successfully imported and added external project to the selection",
-
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfDataset.title": "Import Remote Organization",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfDataset.title": "Import Remote Organization",
-
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfDataset.added.local-entity": "Successfully added local organization to the selection",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfDataset.added.local-entity": "Successfully added local organization to the selection",
-
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfDataset.added.new-entity": "Successfully imported and added external organization to the selection",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfDataset.added.new-entity": "Successfully imported and added external organization to the selection",
-
- // "admin.edit-cms-metadata.success": "Metadata successfully updated",
- // TODO New key - Add a translation
- "admin.edit-cms-metadata.success": "Metadata successfully updated",
-
- // "admin.edit-cms-metadata.back-button": "Back",
- // TODO New key - Add a translation
- "admin.edit-cms-metadata.back-button": "Back",
-
- // "admin.edit-cms-metadata.save-button": "Save",
- // TODO New key - Add a translation
- "admin.edit-cms-metadata.save-button": "Save",
-
- // "admin.edit-cms-metadata.select-metadata": "Select metadata to edit",
- // TODO New key - Add a translation
- "admin.edit-cms-metadata.select-metadata": "Select metadata to edit",
-
- // "admin.edit-cms-metadata.edit-button": "Edit",
- // TODO New key - Add a translation
- "admin.edit-cms-metadata.edit-button": "Edit",
-
- // "admin.edit-cms-metadata.breadcrumbs": "Edit CMS Metadata",
- // TODO New key - Add a translation
- "admin.edit-cms-metadata.breadcrumbs": "Edit CMS Metadata",
-
- // "admin.edit-cms-metadata.title": "Edit CMS Metadata",
- // TODO New key - Add a translation
- "admin.edit-cms-metadata.title": "Edit CMS Metadata",
-
- // "admin.edit-cms-metadata.error": "An error occurred while updating the metadata",
- // TODO New key - Add a translation
- "admin.edit-cms-metadata.error": "An error occurred while updating the metadata",
-
- // "menu.section.edit-cms-metadata": "Edit CMS Metadata",
- // TODO New key - Add a translation
- "menu.section.edit-cms-metadata": "Edit CMS Metadata",
-
- // "menu.section.cms.edit.metadata.head": "Edit Metadata",
- // TODO New key - Add a translation
- "menu.section.cms.edit.metadata.head": "Edit Metadata",
-
- // "admin.edit-user-agreement.breadcrumbs": "Edit User Agreement",
- // TODO New key - Add a translation
- "admin.edit-user-agreement.breadcrumbs": "Edit User Agreement",
-
- // "admin.edit-user-agreement.confirm.title": "Force acceptance",
- // TODO New key - Add a translation
- "admin.edit-user-agreement.confirm.title": "Force acceptance",
-
- // "admin.edit-user-agreement.confirm.info": "Do you want to force all users to accept the new user agreement?",
- // TODO New key - Add a translation
- "admin.edit-user-agreement.confirm.info": "Do you want to force all users to accept the new user agreement?",
-
- // "admin.edit-user-agreement.confirm.cancel": "Cancel",
- // TODO New key - Add a translation
- "admin.edit-user-agreement.confirm.cancel": "Cancel",
-
- // "admin.edit-user-agreement.confirm.no": "No, update only",
- // TODO New key - Add a translation
- "admin.edit-user-agreement.confirm.no": "No, update only",
-
- // "admin.edit-user-agreement.confirm.yes": "Yes, update and force",
- // TODO New key - Add a translation
- "admin.edit-user-agreement.confirm.yes": "Yes, update and force",
-
- // "menu.section.edit-user-agreement": "Edit User Agreement",
- // TODO New key - Add a translation
- "menu.section.edit-user-agreement": "Edit User Agreement",
-
- // "admin.edit-user-agreement.save-button": "Save",
- // TODO New key - Add a translation
- "admin.edit-user-agreement.save-button": "Save",
-
- // "admin.edit-user-agreement.markdown": "End User Agreement text supports Markdown language.",
- // TODO New key - Add a translation
- "admin.edit-user-agreement.markdown": "End User Agreement text supports Markdown language.",
-
- // "admin.edit-cms-metadata.markdown": "CMS Metadata text supports Markdown language.",
- // TODO New key - Add a translation
- "admin.edit-cms-metadata.markdown": "CMS Metadata text supports Markdown language.",
-
- // "admin.edit-user-agreement.header": "Edit User Agreement",
- // TODO New key - Add a translation
- "admin.edit-user-agreement.header": "Edit User Agreement",
-
- // "admin.edit-user-agreement.success": "User agreement successfully updated",
- // TODO New key - Add a translation
- "admin.edit-user-agreement.success": "User agreement successfully updated",
-
- // "admin.edit-user-agreement.error": "An error occurred while updating the user agreement",
- // TODO New key - Add a translation
- "admin.edit-user-agreement.error": "An error occurred while updating the user agreement",
-
- // "admin.edit-user-agreement.title": "Edit User Agreement",
- // TODO New key - Add a translation
- "admin.edit-user-agreement.title": "Edit User Agreement",
-
-}
\ No newline at end of file
+}
diff --git a/src/assets/i18n/fi.json5 b/src/assets/i18n/fi.json5
index 96e10d26154..12190445639 100644
--- a/src/assets/i18n/fi.json5
+++ b/src/assets/i18n/fi.json5
@@ -11258,9 +11258,9 @@
// "ldn-new-service.form.label.inboundPattern": "Supported Pattern",
// TODO New key - Add a translation
"ldn-new-service.form.label.inboundPattern": "Supported Pattern",
- // "ldn-new-service.form.label.addPattern": "+ Add more",
+ // "ldn-new-service.form.label.addPattern": "Add more",
// TODO New key - Add a translation
- "ldn-new-service.form.label.addPattern": "+ Add more",
+ "ldn-new-service.form.label.addPattern": "Add more",
// "ldn-new-service.form.label.removeItemFilter": "Remove",
// TODO New key - Add a translation
"ldn-new-service.form.label.removeItemFilter": "Remove",
diff --git a/src/assets/i18n/fr.json5 b/src/assets/i18n/fr.json5
index dc42bf67db1..92cc48f4988 100644
--- a/src/assets/i18n/fr.json5
+++ b/src/assets/i18n/fr.json5
@@ -10547,8 +10547,8 @@
// "ldn-new-service.form.label.inboundPattern": "Supported Pattern",
"ldn-new-service.form.label.inboundPattern": "Modèle supporté",
- // "ldn-new-service.form.label.addPattern": "+ Add more",
- "ldn-new-service.form.label.addPattern": "+ Ajouter",
+ // "ldn-new-service.form.label.addPattern": "Add more",
+ "ldn-new-service.form.label.addPattern": "Ajouter",
// "ldn-new-service.form.label.removeItemFilter": "Remove",
"ldn-new-service.form.label.removeItemFilter": "Supprimer",
// "ldn-register-new-service.breadcrumbs": "New Service",
diff --git a/src/assets/i18n/gd.json5 b/src/assets/i18n/gd.json5
index 5efee1166b8..7b8c9e199f8 100644
--- a/src/assets/i18n/gd.json5
+++ b/src/assets/i18n/gd.json5
@@ -12034,9 +12034,9 @@
// "ldn-new-service.form.label.inboundPattern": "Supported Pattern",
// TODO New key - Add a translation
"ldn-new-service.form.label.inboundPattern": "Supported Pattern",
- // "ldn-new-service.form.label.addPattern": "+ Add more",
+ // "ldn-new-service.form.label.addPattern": "Add more",
// TODO New key - Add a translation
- "ldn-new-service.form.label.addPattern": "+ Add more",
+ "ldn-new-service.form.label.addPattern": "Add more",
// "ldn-new-service.form.label.removeItemFilter": "Remove",
// TODO New key - Add a translation
"ldn-new-service.form.label.removeItemFilter": "Remove",
diff --git a/src/assets/i18n/gu.json5 b/src/assets/i18n/gu.json5
index 83e8280c0b4..ba343acfed6 100644
--- a/src/assets/i18n/gu.json5
+++ b/src/assets/i18n/gu.json5
@@ -1,12057 +1,8191 @@
{
- // "401.help": "You're not authorized to access this page. You can use the button below to get back to the home page.",
"401.help": "તમે આ પેજને ઍક્સેસ કરવા માટે અધિકૃત નથી. તમે નીચેના બટનનો ઉપયોગ કરીને હોમ પેજ પર પાછા જઈ શકો છો.",
- // "401.link.home-page": "Take me to the home page",
"401.link.home-page": "મને હોમ પેજ પર લઈ જાઓ",
- // "401.unauthorized": "Unauthorized",
"401.unauthorized": "અનધિકૃત",
- // "403.help": "You don't have permission to access this page. You can use the button below to get back to the home page.",
"403.help": "તમને આ પેજને ઍક્સેસ કરવાની પરવાનગી નથી. તમે નીચેના બટનનો ઉપયોગ કરીને હોમ પેજ પર પાછા જઈ શકો છો.",
- // "403.link.home-page": "Take me to the home page",
"403.link.home-page": "મને હોમ પેજ પર લઈ જાઓ",
- // "403.forbidden": "Forbidden",
"403.forbidden": "પ્રતિબંધિત",
- // "500.page-internal-server-error": "Service unavailable",
"500.page-internal-server-error": "સેવા ઉપલબ્ધ નથી",
- // "500.help": "The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.",
"500.help": "સર્વર અત્યારે જાળવણી ડાઉનટાઇમ અથવા ક્ષમતા સમસ્યાઓને કારણે તમારી વિનંતીને સેવા આપવા માટે અસમર્થ છે. કૃપા કરીને થોડીવાર પછી ફરી પ્રયાસ કરો.",
- // "500.link.home-page": "Take me to the home page",
"500.link.home-page": "મને હોમ પેજ પર લઈ જાઓ",
- // "404.help": "We can't find the page you're looking for. The page may have been moved or deleted. You can use the button below to get back to the home page.",
"404.help": "અમે તે પેજ શોધી શકતા નથી જે તમે શોધી રહ્યા છો. પેજને ખસેડવામાં આવ્યું હશે અથવા કાઢી નાખવામાં આવ્યું હશે. તમે નીચેના બટનનો ઉપયોગ કરીને હોમ પેજ પર પાછા જઈ શકો છો.",
- // "404.link.home-page": "Take me to the home page",
"404.link.home-page": "મને હોમ પેજ પર લઈ જાઓ",
- // "404.page-not-found": "Page not found",
"404.page-not-found": "પેજ મળ્યું નથી",
- // "error-page.description.401": "Unauthorized",
"error-page.description.401": "અનધિકૃત",
- // "error-page.description.403": "Forbidden",
"error-page.description.403": "પ્રતિબંધિત",
- // "error-page.description.500": "Service unavailable",
"error-page.description.500": "સેવા ઉપલબ્ધ નથી",
- // "error-page.description.404": "Page not found",
"error-page.description.404": "પેજ મળ્યું નથી",
- // "error-page.orcid.generic-error": "An error occurred during login via ORCID. Make sure you have shared your ORCID account email address with DSpace. If the error persists, contact the administrator",
"error-page.orcid.generic-error": "ORCID મારફતે લૉગિન દરમિયાન એક ભૂલ આવી. ખાતરી કરો કે તમે DSpace સાથે તમારા ORCID ખાતા ઇમેઇલ સરનામાને શેર કર્યું છે. જો ભૂલ ચાલુ રહે, તો એડમિનિસ્ટ્રેટરને સંપર્ક કરો",
- // "listelement.badge.access-status": "Access status:",
- // TODO New key - Add a translation
- "listelement.badge.access-status": "Access status:",
-
- // "access-status.embargo.listelement.badge": "Embargo",
"access-status.embargo.listelement.badge": "એમ્બાર્ગો",
- // "access-status.metadata.only.listelement.badge": "Metadata only",
"access-status.metadata.only.listelement.badge": "મેટાડેટા માત્ર",
- // "access-status.open.access.listelement.badge": "Open Access",
"access-status.open.access.listelement.badge": "ઓપન ઍક્સેસ",
- // "access-status.restricted.listelement.badge": "Restricted",
"access-status.restricted.listelement.badge": "પ્રતિબંધિત",
- // "access-status.unknown.listelement.badge": "Unknown",
"access-status.unknown.listelement.badge": "અજ્ઞાત",
- // "admin.curation-tasks.breadcrumbs": "System curation tasks",
"admin.curation-tasks.breadcrumbs": "સિસ્ટમ ક્યુરેશન ટાસ્ક્સ",
- // "admin.curation-tasks.title": "System curation tasks",
"admin.curation-tasks.title": "સિસ્ટમ ક્યુરેશન ટાસ્ક્સ",
- // "admin.curation-tasks.header": "System curation tasks",
"admin.curation-tasks.header": "સિસ્ટમ ક્યુરેશન ટાસ્ક્સ",
- // "admin.registries.bitstream-formats.breadcrumbs": "Format registry",
"admin.registries.bitstream-formats.breadcrumbs": "ફોર્મેટ રજિસ્ટ્રી",
- // "admin.registries.bitstream-formats.create.breadcrumbs": "Bitstream format",
"admin.registries.bitstream-formats.create.breadcrumbs": "બિટસ્ટ્રીમ ફોર્મેટ",
- // "admin.registries.bitstream-formats.create.failure.content": "An error occurred while creating the new bitstream format.",
"admin.registries.bitstream-formats.create.failure.content": "નવું બિટસ્ટ્રીમ ફોર્મેટ બનાવતી વખતે એક ભૂલ આવી.",
- // "admin.registries.bitstream-formats.create.failure.head": "Failure",
"admin.registries.bitstream-formats.create.failure.head": "અસફળતા",
- // "admin.registries.bitstream-formats.create.head": "Create bitstream format",
"admin.registries.bitstream-formats.create.head": "બિટસ્ટ્રીમ ફોર્મેટ બનાવો",
- // "admin.registries.bitstream-formats.create.new": "Add a new bitstream format",
"admin.registries.bitstream-formats.create.new": "નવું બિટસ્ટ્રીમ ફોર્મેટ ઉમેરો",
- // "admin.registries.bitstream-formats.create.success.content": "The new bitstream format was successfully created.",
"admin.registries.bitstream-formats.create.success.content": "નવું બિટસ્ટ્રીમ ફોર્મેટ સફળતાપૂર્વક બનાવવામાં આવ્યું.",
- // "admin.registries.bitstream-formats.create.success.head": "Success",
"admin.registries.bitstream-formats.create.success.head": "સફળતા",
- // "admin.registries.bitstream-formats.delete.failure.amount": "Failed to remove {{ amount }} format(s)",
"admin.registries.bitstream-formats.delete.failure.amount": "{{ amount }} ફોર્મેટ(ઓ) દૂર કરવામાં નિષ્ફળ",
- // "admin.registries.bitstream-formats.delete.failure.head": "Failure",
"admin.registries.bitstream-formats.delete.failure.head": "અસફળતા",
- // "admin.registries.bitstream-formats.delete.success.amount": "Successfully removed {{ amount }} format(s)",
"admin.registries.bitstream-formats.delete.success.amount": "{{ amount }} ફોર્મેટ(ઓ) સફળતાપૂર્વક દૂર કરવામાં આવ્યા",
- // "admin.registries.bitstream-formats.delete.success.head": "Success",
"admin.registries.bitstream-formats.delete.success.head": "સફળતા",
- // "admin.registries.bitstream-formats.description": "This list of bitstream formats provides information about known formats and their support level.",
"admin.registries.bitstream-formats.description": "આ બિટસ્ટ્રીમ ફોર્મેટ્સની યાદી જાણીતા ફોર્મેટ્સ અને તેમની સપોર્ટ લેવલ વિશેની માહિતી પ્રદાન કરે છે.",
- // "admin.registries.bitstream-formats.edit.breadcrumbs": "Bitstream format",
"admin.registries.bitstream-formats.edit.breadcrumbs": "બિટસ્ટ્રીમ ફોર્મેટ",
- // "admin.registries.bitstream-formats.edit.description.hint": "",
"admin.registries.bitstream-formats.edit.description.hint": "",
- // "admin.registries.bitstream-formats.edit.description.label": "Description",
"admin.registries.bitstream-formats.edit.description.label": "વર્ણન",
- // "admin.registries.bitstream-formats.edit.extensions.hint": "Extensions are file extensions that are used to automatically identify the format of uploaded files. You can enter several extensions for each format.",
"admin.registries.bitstream-formats.edit.extensions.hint": "એક્સ્ટેન્શન્સ ફાઇલ એક્સ્ટેન્શન્સ છે જે અપલોડ કરેલી ફાઇલોના ફોર્મેટને આપમેળે ઓળખવા માટે વપરાય છે. તમે દરેક ફોર્મેટ માટે અનેક એક્સ્ટેન્શન્સ દાખલ કરી શકો છો.",
- // "admin.registries.bitstream-formats.edit.extensions.label": "File extensions",
"admin.registries.bitstream-formats.edit.extensions.label": "ફાઇલ એક્સ્ટેન્શન્સ",
- // "admin.registries.bitstream-formats.edit.extensions.placeholder": "Enter a file extension without the dot",
"admin.registries.bitstream-formats.edit.extensions.placeholder": "ડોટ વિના ફાઇલ એક્સ્ટેન્શન દાખલ કરો",
- // "admin.registries.bitstream-formats.edit.failure.content": "An error occurred while editing the bitstream format.",
"admin.registries.bitstream-formats.edit.failure.content": "બિટસ્ટ્રીમ ફોર્મેટ સંપાદિત કરતી વખતે એક ભૂલ આવી.",
- // "admin.registries.bitstream-formats.edit.failure.head": "Failure",
"admin.registries.bitstream-formats.edit.failure.head": "અસફળતા",
- // "admin.registries.bitstream-formats.edit.head": "Bitstream format: {{ format }}",
- // TODO New key - Add a translation
- "admin.registries.bitstream-formats.edit.head": "Bitstream format: {{ format }}",
+ "admin.registries.bitstream-formats.edit.head": "બિટસ્ટ્રીમ ફોર્મેટ: {{ format }}",
- // "admin.registries.bitstream-formats.edit.internal.hint": "Formats marked as internal are hidden from the user, and used for administrative purposes.",
"admin.registries.bitstream-formats.edit.internal.hint": "આંતરિક તરીકે ચિહ્નિત ફોર્મેટ્સ વપરાશકર્તા માટે છુપાયેલા છે અને વહીવટી હેતુઓ માટે વપરાય છે.",
- // "admin.registries.bitstream-formats.edit.internal.label": "Internal",
"admin.registries.bitstream-formats.edit.internal.label": "આંતરિક",
- // "admin.registries.bitstream-formats.edit.mimetype.hint": "The MIME type associated with this format, does not have to be unique.",
"admin.registries.bitstream-formats.edit.mimetype.hint": "આ ફોર્મેટ સાથે સંકળાયેલ MIME પ્રકાર, અનન્ય હોવો જરૂરી નથી.",
- // "admin.registries.bitstream-formats.edit.mimetype.label": "MIME Type",
"admin.registries.bitstream-formats.edit.mimetype.label": "MIME પ્રકાર",
- // "admin.registries.bitstream-formats.edit.shortDescription.hint": "A unique name for this format, (e.g. Microsoft Word XP or Microsoft Word 2000)",
"admin.registries.bitstream-formats.edit.shortDescription.hint": "આ ફોર્મેટ માટેનું અનન્ય નામ, (ઉદાહરણ તરીકે, Microsoft Word XP અથવા Microsoft Word 2000)",
- // "admin.registries.bitstream-formats.edit.shortDescription.label": "Name",
"admin.registries.bitstream-formats.edit.shortDescription.label": "નામ",
- // "admin.registries.bitstream-formats.edit.success.content": "The bitstream format was successfully edited.",
"admin.registries.bitstream-formats.edit.success.content": "બિટસ્ટ્રીમ ફોર્મેટ સફળતાપૂર્વક સંપાદિત કરવામાં આવ્યું.",
- // "admin.registries.bitstream-formats.edit.success.head": "Success",
"admin.registries.bitstream-formats.edit.success.head": "સફળતા",
- // "admin.registries.bitstream-formats.edit.supportLevel.hint": "The level of support your institution pledges for this format.",
"admin.registries.bitstream-formats.edit.supportLevel.hint": "આ ફોર્મેટ માટે તમારું સંસ્થા જે સપોર્ટ લેવલ વચન આપે છે.",
- // "admin.registries.bitstream-formats.edit.supportLevel.label": "Support level",
"admin.registries.bitstream-formats.edit.supportLevel.label": "સપોર્ટ લેવલ",
- // "admin.registries.bitstream-formats.head": "Bitstream Format Registry",
"admin.registries.bitstream-formats.head": "બિટસ્ટ્રીમ ફોર્મેટ રજિસ્ટ્રી",
- // "admin.registries.bitstream-formats.no-items": "No bitstream formats to show.",
"admin.registries.bitstream-formats.no-items": "બિટસ્ટ્રીમ ફોર્મેટ્સ બતાવવા માટે નથી.",
- // "admin.registries.bitstream-formats.table.delete": "Delete selected",
"admin.registries.bitstream-formats.table.delete": "પસંદ કરેલને કાઢી નાખો",
- // "admin.registries.bitstream-formats.table.deselect-all": "Deselect all",
"admin.registries.bitstream-formats.table.deselect-all": "બધા પસંદ કરેલને દૂર કરો",
- // "admin.registries.bitstream-formats.table.internal": "internal",
"admin.registries.bitstream-formats.table.internal": "આંતરિક",
- // "admin.registries.bitstream-formats.table.mimetype": "MIME Type",
"admin.registries.bitstream-formats.table.mimetype": "MIME પ્રકાર",
- // "admin.registries.bitstream-formats.table.name": "Name",
"admin.registries.bitstream-formats.table.name": "નામ",
- // "admin.registries.bitstream-formats.table.selected": "Selected bitstream formats",
"admin.registries.bitstream-formats.table.selected": "પસંદ કરેલ બિટસ્ટ્રીમ ફોર્મેટ્સ",
- // "admin.registries.bitstream-formats.table.id": "ID",
"admin.registries.bitstream-formats.table.id": "ID",
- // "admin.registries.bitstream-formats.table.return": "Back",
"admin.registries.bitstream-formats.table.return": "પાછા",
- // "admin.registries.bitstream-formats.table.supportLevel.KNOWN": "Known",
"admin.registries.bitstream-formats.table.supportLevel.KNOWN": "જાણીતું",
- // "admin.registries.bitstream-formats.table.supportLevel.SUPPORTED": "Supported",
"admin.registries.bitstream-formats.table.supportLevel.SUPPORTED": "સપોર્ટેડ",
- // "admin.registries.bitstream-formats.table.supportLevel.UNKNOWN": "Unknown",
"admin.registries.bitstream-formats.table.supportLevel.UNKNOWN": "અજ્ઞાત",
- // "admin.registries.bitstream-formats.table.supportLevel.head": "Support Level",
"admin.registries.bitstream-formats.table.supportLevel.head": "સપોર્ટ લેવલ",
- // "admin.registries.bitstream-formats.title": "Bitstream Format Registry",
"admin.registries.bitstream-formats.title": "બિટસ્ટ્રીમ ફોર્મેટ રજિસ્ટ્રી",
- // "admin.registries.bitstream-formats.select": "Select",
"admin.registries.bitstream-formats.select": "પસંદ કરો",
- // "admin.registries.bitstream-formats.deselect": "Deselect",
"admin.registries.bitstream-formats.deselect": "પસંદ કરેલને દૂર કરો",
- // "admin.registries.metadata.breadcrumbs": "Metadata registry",
"admin.registries.metadata.breadcrumbs": "મેટાડેટા રજિસ્ટ્રી",
- // "admin.registries.metadata.description": "The metadata registry maintains a list of all metadata fields available in the repository. These fields may be divided amongst multiple schemas. However, DSpace requires the qualified Dublin Core schema.",
"admin.registries.metadata.description": "મેટાડેટા રજિસ્ટ્રી રિપોઝિટરીમાં ઉપલબ્ધ તમામ મેટાડેટા ફીલ્ડ્સની યાદી જાળવે છે. આ ફીલ્ડ્સને અનેક સ્કીમા વચ્ચે વિભાજિત કરી શકાય છે. જો કે, DSpace ને લાયક ડબલિન કોર સ્કીમાની જરૂર છે.",
- // "admin.registries.metadata.form.create": "Create metadata schema",
"admin.registries.metadata.form.create": "મેટાડેટા સ્કીમા બનાવો",
- // "admin.registries.metadata.form.edit": "Edit metadata schema",
"admin.registries.metadata.form.edit": "મેટાડેટા સ્કીમા સંપાદિત કરો",
- // "admin.registries.metadata.form.name": "Name",
"admin.registries.metadata.form.name": "નામ",
- // "admin.registries.metadata.form.namespace": "Namespace",
"admin.registries.metadata.form.namespace": "નેમસ્પેસ",
- // "admin.registries.metadata.head": "Metadata Registry",
"admin.registries.metadata.head": "મેટાડેટા રજિસ્ટ્રી",
- // "admin.registries.metadata.schemas.no-items": "No metadata schemas to show.",
"admin.registries.metadata.schemas.no-items": "બતાવવા માટે કોઈ મેટાડેટા સ્કીમા નથી.",
- // "admin.registries.metadata.schemas.select": "Select",
"admin.registries.metadata.schemas.select": "પસંદ કરો",
- // "admin.registries.metadata.schemas.deselect": "Deselect",
"admin.registries.metadata.schemas.deselect": "પસંદ કરેલને દૂર કરો",
- // "admin.registries.metadata.schemas.table.delete": "Delete selected",
"admin.registries.metadata.schemas.table.delete": "પસંદ કરેલને કાઢી નાખો",
- // "admin.registries.metadata.schemas.table.selected": "Selected schemas",
"admin.registries.metadata.schemas.table.selected": "પસંદ કરેલ સ્કીમા",
- // "admin.registries.metadata.schemas.table.id": "ID",
"admin.registries.metadata.schemas.table.id": "ID",
- // "admin.registries.metadata.schemas.table.name": "Name",
"admin.registries.metadata.schemas.table.name": "નામ",
- // "admin.registries.metadata.schemas.table.namespace": "Namespace",
"admin.registries.metadata.schemas.table.namespace": "નેમસ્પેસ",
- // "admin.registries.metadata.title": "Metadata Registry",
"admin.registries.metadata.title": "મેટાડેટા રજિસ્ટ્રી",
- // "admin.registries.schema.breadcrumbs": "Metadata schema",
"admin.registries.schema.breadcrumbs": "મેટાડેટા સ્કીમા",
- // "admin.registries.schema.description": "This is the metadata schema for \"{{namespace}}\".",
"admin.registries.schema.description": "આ {{namespace}} માટેનું મેટાડેટા સ્કીમા છે.",
- // "admin.registries.schema.fields.select": "Select",
"admin.registries.schema.fields.select": "પસંદ કરો",
- // "admin.registries.schema.fields.deselect": "Deselect",
"admin.registries.schema.fields.deselect": "પસંદ કરેલને દૂર કરો",
- // "admin.registries.schema.fields.head": "Schema metadata fields",
"admin.registries.schema.fields.head": "સ્કીમા મેટાડેટા ફીલ્ડ્સ",
- // "admin.registries.schema.fields.no-items": "No metadata fields to show.",
"admin.registries.schema.fields.no-items": "બતાવવા માટે કોઈ મેટાડેટા ફીલ્ડ્સ નથી.",
- // "admin.registries.schema.fields.table.delete": "Delete selected",
"admin.registries.schema.fields.table.delete": "પસંદ કરેલને કાઢી નાખો",
- // "admin.registries.schema.fields.table.field": "Field",
"admin.registries.schema.fields.table.field": "ફીલ્ડ",
- // "admin.registries.schema.fields.table.selected": "Selected metadata fields",
"admin.registries.schema.fields.table.selected": "પસંદ કરેલ મેટાડેટા ફીલ્ડ્સ",
- // "admin.registries.schema.fields.table.id": "ID",
"admin.registries.schema.fields.table.id": "ID",
- // "admin.registries.schema.fields.table.scopenote": "Scope Note",
"admin.registries.schema.fields.table.scopenote": "સ્કોપ નોંધ",
- // "admin.registries.schema.form.create": "Create metadata field",
"admin.registries.schema.form.create": "મેટાડેટા ફીલ્ડ બનાવો",
- // "admin.registries.schema.form.edit": "Edit metadata field",
"admin.registries.schema.form.edit": "મેટાડેટા ફીલ્ડ સંપાદિત કરો",
- // "admin.registries.schema.form.element": "Element",
"admin.registries.schema.form.element": "એલિમેન્ટ",
- // "admin.registries.schema.form.qualifier": "Qualifier",
"admin.registries.schema.form.qualifier": "ક્વોલિફાયર",
- // "admin.registries.schema.form.scopenote": "Scope Note",
"admin.registries.schema.form.scopenote": "સ્કોપ નોંધ",
- // "admin.registries.schema.head": "Metadata Schema",
"admin.registries.schema.head": "મેટાડેટા સ્કીમા",
- // "admin.registries.schema.notification.created": "Successfully created metadata schema \"{{prefix}}\"",
"admin.registries.schema.notification.created": "સફળતાપૂર્વક મેટાડેટા સ્કીમા {{prefix}} બનાવ્યું",
- // "admin.registries.schema.notification.deleted.failure": "Failed to delete {{amount}} metadata schemas",
"admin.registries.schema.notification.deleted.failure": "{{amount}} મેટાડેટા સ્કીમા કાઢી નાખવામાં નિષ્ફળ",
- // "admin.registries.schema.notification.deleted.success": "Successfully deleted {{amount}} metadata schemas",
"admin.registries.schema.notification.deleted.success": "{{amount}} મેટાડેટા સ્કીમા સફળતાપૂર્વક કાઢી નાખ્યા",
- // "admin.registries.schema.notification.edited": "Successfully edited metadata schema \"{{prefix}}\"",
"admin.registries.schema.notification.edited": "સફળતાપૂર્વક મેટાડેટા સ્કીમા {{prefix}} સંપાદિત કર્યું",
- // "admin.registries.schema.notification.failure": "Error",
"admin.registries.schema.notification.failure": "ભૂલ",
- // "admin.registries.schema.notification.field.created": "Successfully created metadata field \"{{field}}\"",
"admin.registries.schema.notification.field.created": "સફળતાપૂર્વક મેટાડેટા ફીલ્ડ {{field}} બનાવ્યું",
- // "admin.registries.schema.notification.field.deleted.failure": "Failed to delete {{amount}} metadata fields",
"admin.registries.schema.notification.field.deleted.failure": "{{amount}} મેટાડેટા ફીલ્ડ્સ કાઢી નાખવામાં નિષ્ફળ",
- // "admin.registries.schema.notification.field.deleted.success": "Successfully deleted {{amount}} metadata fields",
"admin.registries.schema.notification.field.deleted.success": "{{amount}} મેટાડેટા ફીલ્ડ્સ સફળતાપૂર્વક કાઢી નાખ્યા",
- // "admin.registries.schema.notification.field.edited": "Successfully edited metadata field \"{{field}}\"",
"admin.registries.schema.notification.field.edited": "સફળતાપૂર્વક મેટાડેટા ફીલ્ડ {{field}} સંપાદિત કર્યું",
- // "admin.registries.schema.notification.success": "Success",
"admin.registries.schema.notification.success": "સફળતા",
- // "admin.registries.schema.return": "Back",
"admin.registries.schema.return": "પાછા",
- // "admin.registries.schema.title": "Metadata Schema Registry",
"admin.registries.schema.title": "મેટાડેટા સ્કીમા રજિસ્ટ્રી",
- // "admin.access-control.bulk-access.breadcrumbs": "Bulk Access Management",
"admin.access-control.bulk-access.breadcrumbs": "બલ્ક ઍક્સેસ મેનેજમેન્ટ",
- // "administrativeBulkAccess.search.results.head": "Search Results",
"administrativeBulkAccess.search.results.head": "શોધ પરિણામો",
- // "admin.access-control.bulk-access": "Bulk Access Management",
"admin.access-control.bulk-access": "બલ્ક ઍક્સેસ મેનેજમેન્ટ",
- // "admin.access-control.bulk-access.title": "Bulk Access Management",
"admin.access-control.bulk-access.title": "બલ્ક ઍક્સેસ મેનેજમેન્ટ",
- // "admin.access-control.bulk-access-browse.header": "Step 1: Select Objects",
- // TODO New key - Add a translation
- "admin.access-control.bulk-access-browse.header": "Step 1: Select Objects",
+ "admin.access-control.bulk-access-browse.header": "પગલું 1: ઑબ્જેક્ટ્સ પસંદ કરો",
- // "admin.access-control.bulk-access-browse.search.header": "Search",
"admin.access-control.bulk-access-browse.search.header": "શોધ",
- // "admin.access-control.bulk-access-browse.selected.header": "Current selection({{number}})",
"admin.access-control.bulk-access-browse.selected.header": "વર્તમાન પસંદગી({{number}})",
- // "admin.access-control.bulk-access-settings.header": "Step 2: Operation to Perform",
- // TODO New key - Add a translation
- "admin.access-control.bulk-access-settings.header": "Step 2: Operation to Perform",
+ "admin.access-control.bulk-access-settings.header": "પગલું 2: કરવા માટેની ક્રિયા",
- // "admin.access-control.epeople.actions.delete": "Delete EPerson",
"admin.access-control.epeople.actions.delete": "EPerson કાઢી નાખો",
- // "admin.access-control.epeople.actions.impersonate": "Impersonate EPerson",
"admin.access-control.epeople.actions.impersonate": "EPerson તરીકે કામ કરો",
- // "admin.access-control.epeople.actions.reset": "Reset password",
"admin.access-control.epeople.actions.reset": "પાસવર્ડ રીસેટ કરો",
- // "admin.access-control.epeople.actions.stop-impersonating": "Stop impersonating EPerson",
"admin.access-control.epeople.actions.stop-impersonating": "EPerson તરીકે કામ કરવાનું બંધ કરો",
- // "admin.access-control.epeople.breadcrumbs": "EPeople",
"admin.access-control.epeople.breadcrumbs": "EPeople",
- // "admin.access-control.epeople.title": "EPeople",
"admin.access-control.epeople.title": "EPeople",
- // "admin.access-control.epeople.edit.breadcrumbs": "New EPerson",
"admin.access-control.epeople.edit.breadcrumbs": "નવું EPerson",
- // "admin.access-control.epeople.edit.title": "New EPerson",
"admin.access-control.epeople.edit.title": "નવું EPerson",
- // "admin.access-control.epeople.add.breadcrumbs": "Add EPerson",
"admin.access-control.epeople.add.breadcrumbs": "EPerson ઉમેરો",
- // "admin.access-control.epeople.add.title": "Add EPerson",
"admin.access-control.epeople.add.title": "EPerson ઉમેરો",
- // "admin.access-control.epeople.head": "EPeople",
"admin.access-control.epeople.head": "EPeople",
- // "admin.access-control.epeople.search.head": "Search",
"admin.access-control.epeople.search.head": "શોધ",
- // "admin.access-control.epeople.button.see-all": "Browse All",
"admin.access-control.epeople.button.see-all": "બધા બ્રાઉઝ કરો",
- // "admin.access-control.epeople.search.scope.metadata": "Metadata",
"admin.access-control.epeople.search.scope.metadata": "મેટાડેટા",
- // "admin.access-control.epeople.search.scope.email": "Email (exact)",
"admin.access-control.epeople.search.scope.email": "ઇમેઇલ (ચોક્કસ)",
- // "admin.access-control.epeople.search.button": "Search",
"admin.access-control.epeople.search.button": "શોધ",
- // "admin.access-control.epeople.search.placeholder": "Search people...",
"admin.access-control.epeople.search.placeholder": "લોકોને શોધો...",
- // "admin.access-control.epeople.button.add": "Add EPerson",
"admin.access-control.epeople.button.add": "EPerson ઉમેરો",
- // "admin.access-control.epeople.table.id": "ID",
"admin.access-control.epeople.table.id": "ID",
- // "admin.access-control.epeople.table.name": "Name",
"admin.access-control.epeople.table.name": "નામ",
- // "admin.access-control.epeople.table.email": "Email (exact)",
"admin.access-control.epeople.table.email": "ઇમેઇલ (ચોક્કસ)",
- // "admin.access-control.epeople.table.edit": "Edit",
"admin.access-control.epeople.table.edit": "સંપાદિત કરો",
- // "admin.access-control.epeople.table.edit.buttons.edit": "Edit \"{{name}}\"",
"admin.access-control.epeople.table.edit.buttons.edit": "{{name}} ને સંપાદિત કરો",
- // "admin.access-control.epeople.table.edit.buttons.edit-disabled": "You are not authorized to edit this group",
"admin.access-control.epeople.table.edit.buttons.edit-disabled": "તમે આ જૂથને સંપાદિત કરવા માટે અધિકૃત નથી",
- // "admin.access-control.epeople.table.edit.buttons.remove": "Delete \"{{name}}\"",
"admin.access-control.epeople.table.edit.buttons.remove": "{{name}} ને કાઢી નાખો",
- // "admin.access-control.epeople.table.edit.buttons.remove.modal.header": "Delete Group \"{{ dsoName }}\"",
- // TODO New key - Add a translation
- "admin.access-control.epeople.table.edit.buttons.remove.modal.header": "Delete Group \"{{ dsoName }}\"",
-
- // "admin.access-control.epeople.table.edit.buttons.remove.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?",
- // TODO New key - Add a translation
- "admin.access-control.epeople.table.edit.buttons.remove.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?",
-
- // "admin.access-control.epeople.table.edit.buttons.remove.modal.cancel": "Cancel",
- // TODO New key - Add a translation
- "admin.access-control.epeople.table.edit.buttons.remove.modal.cancel": "Cancel",
-
- // "admin.access-control.epeople.table.edit.buttons.remove.modal.confirm": "Delete",
- // TODO New key - Add a translation
- "admin.access-control.epeople.table.edit.buttons.remove.modal.confirm": "Delete",
-
- // "admin.access-control.epeople.no-items": "No EPeople to show.",
"admin.access-control.epeople.no-items": "બતાવવા માટે કોઈ EPeople નથી.",
- // "admin.access-control.epeople.form.create": "Create EPerson",
"admin.access-control.epeople.form.create": "EPerson બનાવો",
- // "admin.access-control.epeople.form.edit": "Edit EPerson",
"admin.access-control.epeople.form.edit": "EPerson સંપાદિત કરો",
- // "admin.access-control.epeople.form.firstName": "First name",
"admin.access-control.epeople.form.firstName": "પ્રથમ નામ",
- // "admin.access-control.epeople.form.lastName": "Last name",
"admin.access-control.epeople.form.lastName": "છેલ્લું નામ",
- // "admin.access-control.epeople.form.email": "Email",
"admin.access-control.epeople.form.email": "ઇમેઇલ",
- // "admin.access-control.epeople.form.emailHint": "Must be a valid email address",
"admin.access-control.epeople.form.emailHint": "માન્ય ઇમેઇલ સરનામું હોવું જોઈએ",
- // "admin.access-control.epeople.form.canLogIn": "Can log in",
"admin.access-control.epeople.form.canLogIn": "લૉગ ઇન કરી શકે છે",
- // "admin.access-control.epeople.form.requireCertificate": "Requires certificate",
"admin.access-control.epeople.form.requireCertificate": "પ્રમાણપત્રની જરૂર છે",
- // "admin.access-control.epeople.form.return": "Back",
"admin.access-control.epeople.form.return": "પાછા",
- // "admin.access-control.epeople.form.notification.created.success": "Successfully created EPerson \"{{name}}\"",
"admin.access-control.epeople.form.notification.created.success": "સફળતાપૂર્વક EPerson {{name}} બનાવ્યું",
- // "admin.access-control.epeople.form.notification.created.failure": "Failed to create EPerson \"{{name}}\"",
"admin.access-control.epeople.form.notification.created.failure": "EPerson {{name}} બનાવવામાં નિષ્ફળ",
- // "admin.access-control.epeople.form.notification.created.failure.emailInUse": "Failed to create EPerson \"{{name}}\", email \"{{email}}\" already in use.",
"admin.access-control.epeople.form.notification.created.failure.emailInUse": "EPerson {{name}} બનાવવામાં નિષ્ફળ, ઇમેઇલ {{email}} પહેલેથી જ વપરાય છે.",
- // "admin.access-control.epeople.form.notification.edited.failure.emailInUse": "Failed to edit EPerson \"{{name}}\", email \"{{email}}\" already in use.",
"admin.access-control.epeople.form.notification.edited.failure.emailInUse": "EPerson {{name}} સંપાદિત કરવામાં નિષ્ફળ, ઇમેઇલ {{email}} પહેલેથી જ વપરાય છે.",
- // "admin.access-control.epeople.form.notification.edited.success": "Successfully edited EPerson \"{{name}}\"",
"admin.access-control.epeople.form.notification.edited.success": "સફળતાપૂર્વક EPerson {{name}} સંપાદિત કર્યું",
- // "admin.access-control.epeople.form.notification.edited.failure": "Failed to edit EPerson \"{{name}}\"",
"admin.access-control.epeople.form.notification.edited.failure": "EPerson {{name}} સંપાદિત કરવામાં નિષ્ફળ",
- // "admin.access-control.epeople.form.notification.deleted.success": "Successfully deleted EPerson \"{{name}}\"",
"admin.access-control.epeople.form.notification.deleted.success": "સફળતાપૂર્વક EPerson {{name}} કાઢી નાખ્યું",
- // "admin.access-control.epeople.form.notification.deleted.failure": "Failed to delete EPerson \"{{name}}\"",
"admin.access-control.epeople.form.notification.deleted.failure": "EPerson {{name}} કાઢી નાખવામાં નિષ્ફળ",
- // "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "Member of these groups:",
- // TODO New key - Add a translation
- "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "Member of these groups:",
+ "admin.access-control.epeople.form.groupsEPersonIsMemberOf": "આ જૂથોના સભ્ય:",
- // "admin.access-control.epeople.form.table.id": "ID",
"admin.access-control.epeople.form.table.id": "ID",
- // "admin.access-control.epeople.form.table.name": "Name",
"admin.access-control.epeople.form.table.name": "નામ",
- // "admin.access-control.epeople.form.table.collectionOrCommunity": "Collection/Community",
"admin.access-control.epeople.form.table.collectionOrCommunity": "સંગ્રહ/સમુદાય",
- // "admin.access-control.epeople.form.memberOfNoGroups": "This EPerson is not a member of any groups",
"admin.access-control.epeople.form.memberOfNoGroups": "આ EPerson કોઈ જૂથનો સભ્ય નથી",
- // "admin.access-control.epeople.form.goToGroups": "Add to groups",
"admin.access-control.epeople.form.goToGroups": "જૂથોમાં ઉમેરો",
- // "admin.access-control.epeople.notification.deleted.failure": "Error occurred when trying to delete EPerson with id \"{{id}}\" with code: \"{{statusCode}}\" and message: \"{{restResponse.errorMessage}}\"",
- // TODO New key - Add a translation
- "admin.access-control.epeople.notification.deleted.failure": "Error occurred when trying to delete EPerson with id \"{{id}}\" with code: \"{{statusCode}}\" and message: \"{{restResponse.errorMessage}}\"",
+ "admin.access-control.epeople.notification.deleted.failure": "ID {{id}} સાથે EPerson કાઢી નાખતી વખતે ભૂલ આવી, કોડ: {{statusCode}} અને મેસેજ: {{restResponse.errorMessage}}",
+
+ "admin.access-control.epeople.notification.deleted.success": "સફળતાપૂર્વક EPerson: {{name}} કાઢી નાખ્યું",
+
+ "admin.access-control.groups.title": "જૂથો",
+
+ "admin.access-control.groups.breadcrumbs": "જૂથો",
+
+ "admin.access-control.groups.singleGroup.breadcrumbs": "જૂથ સંપાદિત કરો",
+
+ "admin.access-control.groups.title.singleGroup": "જૂથ સંપાદિત કરો",
+
+ "admin.access-control.groups.title.addGroup": "નવું જૂથ",
+
+ "admin.access-control.groups.addGroup.breadcrumbs": "નવું જૂથ",
+
+ "admin.access-control.groups.head": "જૂથો",
+
+ "admin.access-control.groups.button.add": "જૂથ ઉમેરો",
+
+ "admin.access-control.groups.search.head": "જૂથો શોધો",
+
+ "admin.access-control.groups.button.see-all": "બધા બ્રાઉઝ કરો",
+
+ "admin.access-control.groups.search.button": "શોધો",
+
+ "admin.access-control.groups.search.placeholder": "જૂથો શોધો...",
+
+ "admin.access-control.groups.table.id": "ID",
+
+ "admin.access-control.groups.table.name": "નામ",
+
+ "admin.access-control.groups.table.collectionOrCommunity": "સંગ્રહ/સમુદાય",
+
+ "admin.access-control.groups.table.members": "સભ્યો",
+
+ "admin.access-control.groups.table.edit": "સંપાદિત કરો",
+
+ "admin.access-control.groups.table.edit.buttons.edit": "{{name}} ને સંપાદિત કરો",
+
+ "admin.access-control.groups.table.edit.buttons.remove": "{{name}} ને કાઢી નાખો",
+
+ "admin.access-control.groups.no-items": "આ નામ અથવા UUID સાથે કોઈ જૂથો મળ્યા નથી",
+
+ "admin.access-control.groups.notification.deleted.success": "સફળતાપૂર્વક જૂથ {{name}} કાઢી નાખ્યું",
+
+ "admin.access-control.groups.notification.deleted.failure.title": "જૂથ {{name}} કાઢી નાખવામાં નિષ્ફળ",
+
+ "admin.access-control.groups.notification.deleted.failure.content": "કારણ: {{cause}}",
+
+ "admin.access-control.groups.form.alert.permanent": "આ જૂથ કાયમી છે, તેથી તેને સંપાદિત અથવા કાઢી શકાતું નથી. તમે આ પૃષ્ઠનો ઉપયોગ કરીને જૂથ સભ્યોને ઉમેરવા અને દૂર કરવા માટે હજુ પણ કરી શકો છો.",
+
+ "admin.access-control.groups.form.alert.workflowGroup": "આ જૂથને સંપાદિત અથવા કાઢી શકાતું નથી કારણ કે તે {{name}} {{comcol}} માં સબમિશન અને વર્કફ્લો પ્રક્રિયામાં ભૂમિકા સાથે મેળ ખાતું છે. તમે તેને {{comcolEditRolesRoute}} પૃષ્ઠના સંપાદન {{comcol}} પર ભૂમિકા સોંપો ટેબમાંથી કાઢી શકો છો. તમે આ પૃષ્ઠનો ઉપયોગ કરીને જૂથ સભ્યોને ઉમેરવા અને દૂર કરવા માટે હજુ પણ કરી શકો છો.",
+
+ "admin.access-control.groups.form.head.create": "જૂથ બનાવો",
+
+ "admin.access-control.groups.form.head.edit": "જૂથ સંપાદિત કરો",
+
+ "admin.access-control.groups.form.groupName": "જૂથનું નામ",
+
+ "admin.access-control.groups.form.groupCommunity": "સમુદાય અથવા સંગ્રહ",
+
+ "admin.access-control.groups.form.groupDescription": "વર્ણન",
+
+ "admin.access-control.groups.form.notification.created.success": "સફળતાપૂર્વક જૂથ {{name}} બનાવ્યું",
+
+ "admin.access-control.groups.form.notification.created.failure": "જૂથ {{name}} બનાવવામાં નિષ્ફળ",
+
+ "admin.access-control.groups.form.notification.created.failure.groupNameInUse": "જૂથ {{name}} બનાવવામાં નિષ્ફળ, ખાતરી કરો કે નામ પહેલેથી જ વપરાય નથી.",
+
+ "admin.access-control.groups.form.notification.edited.failure": "જૂથ {{name}} સંપાદિત કરવામાં નિષ્ફળ",
+
+ "admin.access-control.groups.form.notification.edited.failure.groupNameInUse": "નામ {{name}} પહેલેથી જ વપરાય છે!",
+
+ "admin.access-control.groups.form.notification.edited.success": "સફળતાપૂર્વક જૂથ {{name}} સંપાદિત કર્યું",
+
+ "admin.access-control.groups.form.actions.delete": "જૂથ કાઢી નાખો",
+
+ "admin.access-control.groups.form.delete-group.modal.header": "જૂથ {{ dsoName }} કાઢી નાખો",
+
+ "admin.access-control.groups.form.delete-group.modal.info": "શું તમે ખરેખર જૂથ {{ dsoName }} કાઢી નાખવા માંગો છો?",
+
+ "admin.access-control.groups.form.delete-group.modal.cancel": "રદ કરો",
+
+ "admin.access-control.groups.form.delete-group.modal.confirm": "કાઢી નાખો",
+
+ "admin.access-control.groups.form.notification.deleted.success": "સફળતાપૂર્વક જૂથ {{ name }} કાઢી નાખ્યું",
+
+ "admin.access-control.groups.form.notification.deleted.failure.title": "જૂથ {{ name }} કાઢી નાખવામાં નિષ્ફળ",
+
+ "admin.access-control.groups.form.notification.deleted.failure.content": "કારણ: {{ cause }}",
+
+ "admin.access-control.groups.form.members-list.head": "EPeople",
+
+ "admin.access-control.groups.form.members-list.search.head": "EPeople ઉમેરો",
+
+ "admin.access-control.groups.form.members-list.button.see-all": "બધા બ્રાઉઝ કરો",
+
+ "admin.access-control.groups.form.members-list.headMembers": "વર્તમાન સભ્યો",
+
+ "admin.access-control.groups.form.members-list.search.button": "શોધો",
+
+ "admin.access-control.groups.form.members-list.table.id": "ID",
+
+ "admin.access-control.groups.form.members-list.table.name": "નામ",
+
+ "admin.access-control.groups.form.members-list.table.identity": "ઓળખ",
+
+ "admin.access-control.groups.form.members-list.table.email": "ઇમેઇલ",
+
+ "admin.access-control.groups.form.members-list.table.netid": "NetID",
+
+ "admin.access-control.groups.form.members-list.table.edit": "દૂર કરો / ઉમેરો",
+
+ "admin.access-control.groups.form.members-list.table.edit.buttons.remove": "{{name}} નામના સભ્યને દૂર કરો",
+
+ "admin.access-control.groups.form.members-list.notification.success.addMember": "સફળતાપૂર્વક {{name}} સભ્ય ઉમેર્યું",
+
+ "admin.access-control.groups.form.members-list.notification.failure.addMember": "{{name}} સભ્ય ઉમેરવામાં નિષ્ફળ",
+
+ "admin.access-control.groups.form.members-list.notification.success.deleteMember": "સફળતાપૂર્વક {{name}} સભ્ય કાઢી નાખ્યું",
+
+ "admin.access-control.groups.form.members-list.notification.failure.deleteMember": "{{name}} સભ્ય કાઢી નાખવામાં નિષ્ફળ",
+
+ "admin.access-control.groups.form.members-list.table.edit.buttons.add": "{{name}} નામના સભ્યને ઉમેરો",
+
+ "admin.access-control.groups.form.members-list.notification.failure.noActiveGroup": "કોઈ વર્તમાન સક્રિય જૂથ નથી, પ્રથમ નામ સબમિટ કરો.",
+
+ "admin.access-control.groups.form.members-list.no-members-yet": "જૂથમાં હજી સુધી કોઈ સભ્યો નથી, શોધો અને ઉમેરો.",
+
+ "admin.access-control.groups.form.members-list.no-items": "આ શોધમાં કોઈ EPeople મળ્યા નથી",
+
+ "admin.access-control.groups.form.subgroups-list.notification.failure": "કંઈક ખોટું થયું: {{cause}}",
- // "admin.access-control.epeople.notification.deleted.success": "Successfully deleted EPerson: \"{{name}}\"",
- // TODO New key - Add a translation
- "admin.access-control.epeople.notification.deleted.success": "Successfully deleted EPerson: \"{{name}}\"",
+ "admin.access-control.groups.form.subgroups-list.head": "જૂથો",
+
+ "admin.access-control.groups.form.subgroups-list.search.head": "સબગ્રુપ ઉમેરો",
+
+ "admin.access-control.groups.form.subgroups-list.button.see-all": "બધા બ્રાઉઝ કરો",
+
+ "admin.access-control.groups.form.subgroups-list.headSubgroups": "વર્તમાન સબગ્રુપ્સ",
+
+ "admin.access-control.groups.form.subgroups-list.search.button": "શોધો",
+
+ "admin.access-control.groups.form.subgroups-list.table.id": "ID",
+
+ "admin.access-control.groups.form.subgroups-list.table.name": "નામ",
+
+ "admin.access-control.groups.form.subgroups-list.table.collectionOrCommunity": "સંગ્રહ/સમુદાય",
+
+ "admin.access-control.groups.form.subgroups-list.table.edit": "દૂર કરો / ઉમેરો",
+
+ "admin.access-control.groups.form.subgroups-list.table.edit.buttons.remove": "{{name}} નામના સબગ્રુપને દૂર કરો",
+
+ "admin.access-control.groups.form.subgroups-list.table.edit.buttons.add": "{{name}} નામના સબગ્રુપને ઉમેરો",
+
+ "admin.access-control.groups.form.subgroups-list.notification.success.addSubgroup": "સફળતાપૂર્વક {{name}} સબગ્રુપ ઉમેર્યું",
+
+ "admin.access-control.groups.form.subgroups-list.notification.failure.addSubgroup": "{{name}} સબગ્રુપ ઉમેરવામાં નિષ્ફળ",
+
+ "admin.access-control.groups.form.subgroups-list.notification.success.deleteSubgroup": "સફળતાપૂર્વક {{name}} સબગ્રુપ કાઢી નાખ્યું",
+
+ "admin.access-control.groups.form.subgroups-list.notification.failure.deleteSubgroup": "{{name}} સબગ્રુપ કાઢી નાખવામાં નિષ્ફળ",
+
+ "admin.access-control.groups.form.subgroups-list.notification.failure.noActiveGroup": "કોઈ વર્તમાન સક્રિય જૂથ નથી, પ્રથમ નામ સબમિટ કરો.",
+
+ "admin.access-control.groups.form.subgroups-list.notification.failure.subgroupToAddIsActiveGroup": "આ વર્તમાન જૂથ છે, તેને ઉમેરવામાં નથી.",
+
+ "admin.access-control.groups.form.subgroups-list.no-items": "આ નામ અથવા UUID સાથે કોઈ જૂથો મળ્યા નથી",
+
+ "admin.access-control.groups.form.subgroups-list.no-subgroups-yet": "જૂથમાં હજી સુધી કોઈ સબગ્રુપ્સ નથી.",
+
+ "admin.access-control.groups.form.return": "પાછા",
+
+ "admin.quality-assurance.breadcrumbs": "ગુણવત્તા ખાતરી",
+
+ "admin.notifications.event.breadcrumbs": "ગુણવત્તા ખાતરી સૂચનો",
+
+ "admin.notifications.event.page.title": "ગુણવત્તા ખાતરી સૂચનો",
+
+ "admin.quality-assurance.page.title": "ગુણવત્તા ખાતરી",
+
+ "admin.notifications.source.breadcrumbs": "ગુણવત્તા ખાતરી",
+
+ "admin.access-control.groups.form.tooltip.editGroupPage": "આ પૃષ્ઠ પર, તમે જૂથની ગુણધર્મો અને સભ્યોને ફેરફાર કરી શકો છો. ટોચના વિભાગમાં, તમે જૂથનું નામ અને વર્ણન સંપાદિત કરી શકો છો, જો કે આ સંગ્રહ અથવા સમુદાય માટેનું એડમિન જૂથ હોય, તો જૂથનું નામ અને વર્ણન આપમેળે જનરેટ થાય છે અને તેને સંપાદિત કરી શકાતું નથી. નીચેના વિભાગોમાં, તમે જૂથ સભ્યતાને ફેરફાર કરી શકો છો. વધુ વિગતો માટે [wiki](https://wiki.lyrasis.org/display/DSDOC7x/Create+or+manage+a+user+group) જુઓ.",
+
+ "admin.access-control.groups.form.tooltip.editGroup.addEpeople": "આ જૂથમાં EPerson ઉમેરવા અથવા દૂર કરવા માટે, 'બધા બ્રાઉઝ કરો' બટન પર ક્લિક કરો અથવા નીચેના શોધ બારનો ઉપયોગ કરીને વપરાશકર્તાઓને શોધો (શોધ બારની ડાબી બાજુના ડ્રોપડાઉનનો ઉપયોગ કરીને મેટાડેટા અથવા ઇમેઇલ દ્વારા શોધવાનું પસંદ કરો). પછી નીચેની યાદીમાં દરેક વપરાશકર્તા માટે '+' ચિહ્ન પર ક્લિક કરો જેને તમે ઉમેરવા માંગો છો, અથવા દરેક વપરાશકર્તા માટે કચરો ચિહ્ન પર ક્લિક કરો જેને તમે દૂર કરવા માંગો છો. નીચેની યાદીમાં અનેક પૃષ્ઠો હોઈ શકે છે: આગળના પૃષ્ઠો પર જવા માટે નીચેની યાદી નિયંત્રણોનો ઉપયોગ કરો.",
+
+ "admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "આ જૂથમાં સબગ્રુપ ઉમેરવા અથવા દૂર કરવા માટે, 'બધા બ્રાઉઝ કરો' બટન પર ક્લિક કરો અથવા નીચેના શોધ બારનો ઉપયોગ કરીને જૂથોને શોધો. પછી નીચેની યાદીમાં દરેક જૂથ માટે '+' ચિહ્ન પર ક્લિક કરો જેને તમે ઉમેરવા માંગો છો, અથવા દરેક જૂથ માટે કચરો ચિહ્ન પર ક્લિક કરો જેને તમે દૂર કરવા માંગો છો. નીચેની યાદીમાં અનેક પૃષ્ઠો હોઈ શકે છે: આગળના પૃષ્ઠો પર જવા માટે નીચેની યાદી નિયંત્રણોનો ઉપયોગ કરો.",
+
+ "admin.reports.collections.title": "સંગ્રહ ફિલ્ટર રિપોર્ટ",
+
+ "admin.reports.collections.breadcrumbs": "સંગ્રહ ફિલ્ટર રિપોર્ટ",
+
+ "admin.reports.collections.head": "સંગ્રહ ફિલ્ટર રિપોર્ટ",
+
+ "admin.reports.button.show-collections": "સંગ્રહો બતાવો",
+
+ "admin.reports.collections.collections-report": "સંગ્રહ રિપોર્ટ",
+
+ "admin.reports.collections.item-results": "આઇટમ પરિણામો",
+
+ "admin.reports.collections.community": "સમુદાય",
+
+ "admin.reports.collections.collection": "સંગ્રહ",
+
+ "admin.reports.collections.nb_items": "આઇટમ્સની સંખ્યા",
+
+ "admin.reports.collections.match_all_selected_filters": "બધા પસંદ કરેલ ફિલ્ટર્સ સાથે મેળ ખાતું",
+
+ "admin.reports.items.breadcrumbs": "મેટાડેટા ક્વેરી રિપોર્ટ",
+
+ "admin.reports.items.head": "મેટાડેટા ક્વેરી રિપોર્ટ",
+
+ "admin.reports.items.run": "આઇટમ ક્વેરી ચલાવો",
+
+ "admin.reports.items.section.collectionSelector": "સંગ્રહ પસંદગીકાર",
+
+ "admin.reports.items.section.metadataFieldQueries": "મેટાડેટા ફીલ્ડ ક્વેરીઝ",
+
+ "admin.reports.items.predefinedQueries": "પૂર્વનિર્ધારિત ક્વેરીઝ",
+
+ "admin.reports.items.section.limitPaginateQueries": "ક્વેરીઝ મર્યાદિત/પેજિનેટ",
+
+ "admin.reports.items.limit": "મર્યાદા/",
+
+ "admin.reports.items.offset": "ઓફસેટ",
+
+ "admin.reports.items.wholeRepo": "સંપૂર્ણ રિપોઝિટરી",
+
+ "admin.reports.items.anyField": "કોઈપણ ફીલ્ડ",
+
+ "admin.reports.items.predicate.exists": "અસ્તિત્વમાં છે",
+
+ "admin.reports.items.predicate.doesNotExist": "અસ્તિત્વમાં નથી",
+
+ "admin.reports.items.predicate.equals": "સમાન છે",
+
+ "admin.reports.items.predicate.doesNotEqual": "સમાન નથી",
+
+ "admin.reports.items.predicate.like": "માટે",
+
+ "admin.reports.items.predicate.notLike": "માટે નથી",
+
+ "admin.reports.items.predicate.contains": "સમાવે છે",
+
+ "admin.reports.items.predicate.doesNotContain": "સમાવિષ્ટ નથી",
+
+ "admin.reports.items.predicate.matches": "મેળ ખાતું",
+
+ "admin.reports.items.predicate.doesNotMatch": "મેળ ખાતું નથી",
+
+ "admin.reports.items.preset.new": "નવી ક્વેરી",
+
+ "admin.reports.items.preset.hasNoTitle": "કોઈ શીર્ષક નથી",
+
+ "admin.reports.items.preset.hasNoIdentifierUri": "કોઈ dc.identifier.uri નથી",
+
+ "admin.access-control.epeople.notification.deleted.failure": "ID {{id}} સાથે EPerson કાઢી નાખતી વખતે ભૂલ આવી, કોડ: {{statusCode}} અને મેસેજ: {{restResponse.errorMessage}}",
+
+ "admin.access-control.epeople.notification.deleted.success": "સફળતાપૂર્વક EPerson: {{name}} કાઢી નાખ્યું",
- // "admin.access-control.groups.title": "Groups",
"admin.access-control.groups.title": "જૂથો",
- // "admin.access-control.groups.breadcrumbs": "Groups",
"admin.access-control.groups.breadcrumbs": "જૂથો",
- // "admin.access-control.groups.singleGroup.breadcrumbs": "Edit Group",
"admin.access-control.groups.singleGroup.breadcrumbs": "જૂથ સંપાદિત કરો",
- // "admin.access-control.groups.title.singleGroup": "Edit Group",
"admin.access-control.groups.title.singleGroup": "જૂથ સંપાદિત કરો",
- // "admin.access-control.groups.title.addGroup": "New Group",
"admin.access-control.groups.title.addGroup": "નવું જૂથ",
- // "admin.access-control.groups.addGroup.breadcrumbs": "New Group",
"admin.access-control.groups.addGroup.breadcrumbs": "નવું જૂથ",
- // "admin.access-control.groups.head": "Groups",
"admin.access-control.groups.head": "જૂથો",
- // "admin.access-control.groups.button.add": "Add group",
"admin.access-control.groups.button.add": "જૂથ ઉમેરો",
- // "admin.access-control.groups.search.head": "Search groups",
"admin.access-control.groups.search.head": "જૂથો શોધો",
- // "admin.access-control.groups.button.see-all": "Browse all",
"admin.access-control.groups.button.see-all": "બધા બ્રાઉઝ કરો",
- // "admin.access-control.groups.search.button": "Search",
"admin.access-control.groups.search.button": "શોધો",
- // "admin.access-control.groups.search.placeholder": "Search groups...",
"admin.access-control.groups.search.placeholder": "જૂથો શોધો...",
- // "admin.access-control.groups.table.id": "ID",
"admin.access-control.groups.table.id": "ID",
- // "admin.access-control.groups.table.name": "Name",
"admin.access-control.groups.table.name": "નામ",
- // "admin.access-control.groups.table.collectionOrCommunity": "Collection/Community",
"admin.access-control.groups.table.collectionOrCommunity": "સંગ્રહ/સમુદાય",
- // "admin.access-control.groups.table.members": "Members",
"admin.access-control.groups.table.members": "સભ્યો",
- // "admin.access-control.groups.table.edit": "Edit",
"admin.access-control.groups.table.edit": "સંપાદિત કરો",
- // "admin.access-control.groups.table.edit.buttons.edit": "Edit \"{{name}}\"",
"admin.access-control.groups.table.edit.buttons.edit": "{{name}} ને સંપાદિત કરો",
- // "admin.access-control.groups.table.edit.buttons.remove": "Delete \"{{name}}\"",
"admin.access-control.groups.table.edit.buttons.remove": "{{name}} ને કાઢી નાખો",
- // "admin.access-control.groups.no-items": "No groups found with this in their name or this as UUID",
"admin.access-control.groups.no-items": "આ નામ અથવા UUID સાથે કોઈ જૂથો મળ્યા નથી",
- // "admin.access-control.groups.notification.deleted.success": "Successfully deleted group \"{{name}}\"",
"admin.access-control.groups.notification.deleted.success": "સફળતાપૂર્વક જૂથ {{name}} કાઢી નાખ્યું",
- // "admin.access-control.groups.notification.deleted.failure.title": "Failed to delete group \"{{name}}\"",
"admin.access-control.groups.notification.deleted.failure.title": "જૂથ {{name}} કાઢી નાખવામાં નિષ્ફળ",
- // "admin.access-control.groups.notification.deleted.failure.content": "Cause: \"{{cause}}\"",
- // TODO New key - Add a translation
- "admin.access-control.groups.notification.deleted.failure.content": "Cause: \"{{cause}}\"",
+ "admin.access-control.groups.notification.deleted.failure.content": "કારણ: {{cause}}",
- // "admin.access-control.groups.form.alert.permanent": "This group is permanent, so it can't be edited or deleted. You can still add and remove group members using this page.",
"admin.access-control.groups.form.alert.permanent": "આ જૂથ કાયમી છે, તેથી તેને સંપાદિત અથવા કાઢી શકાતું નથી. તમે આ પૃષ્ઠનો ઉપયોગ કરીને જૂથ સભ્યોને ઉમેરવા અને દૂર કરવા માટે હજુ પણ કરી શકો છો.",
- // "admin.access-control.groups.form.alert.workflowGroup": "This group can’t be modified or deleted because it corresponds to a role in the submission and workflow process in the \"{{name}}\" {{comcol}}. You can delete it from the \"assign roles\" tab on the edit {{comcol}} page. You can still add and remove group members using this page.",
"admin.access-control.groups.form.alert.workflowGroup": "આ જૂથને સંપાદિત અથવા કાઢી શકાતું નથી કારણ કે તે {{name}} {{comcol}} માં સબમિશન અને વર્કફ્લો પ્રક્રિયામાં ભૂમિકા સાથે મેળ ખાતું છે. તમે તેને {{comcolEditRolesRoute}} પૃષ્ઠના સંપાદન {{comcol}} પર ભૂમિકા સોંપો ટેબમાંથી કાઢી શકો છો. તમે આ પૃષ્ઠનો ઉપયોગ કરીને જૂથ સભ્યોને ઉમેરવા અને દૂર કરવા માટે હજુ પણ કરી શકો છો.",
- // "admin.access-control.groups.form.head.create": "Create group",
"admin.access-control.groups.form.head.create": "જૂથ બનાવો",
- // "admin.access-control.groups.form.head.edit": "Edit group",
"admin.access-control.groups.form.head.edit": "જૂથ સંપાદિત કરો",
- // "admin.access-control.groups.form.groupName": "Group name",
"admin.access-control.groups.form.groupName": "જૂથનું નામ",
- // "admin.access-control.groups.form.groupCommunity": "Community or Collection",
"admin.access-control.groups.form.groupCommunity": "સમુદાય અથવા સંગ્રહ",
- // "admin.access-control.groups.form.groupDescription": "Description",
"admin.access-control.groups.form.groupDescription": "વર્ણન",
- // "admin.access-control.groups.form.notification.created.success": "Successfully created Group \"{{name}}\"",
"admin.access-control.groups.form.notification.created.success": "સફળતાપૂર્વક જૂથ {{name}} બનાવ્યું",
- // "admin.access-control.groups.form.notification.created.failure": "Failed to create Group \"{{name}}\"",
"admin.access-control.groups.form.notification.created.failure": "જૂથ {{name}} બનાવવામાં નિષ્ફળ",
- // "admin.access-control.groups.form.notification.created.failure.groupNameInUse": "Failed to create Group with name: \"{{name}}\", make sure the name is not already in use.",
- // TODO New key - Add a translation
- "admin.access-control.groups.form.notification.created.failure.groupNameInUse": "Failed to create Group with name: \"{{name}}\", make sure the name is not already in use.",
+ "admin.access-control.groups.form.notification.created.failure.groupNameInUse": "જૂથ {{name}} બનાવવામાં નિષ્ફળ, ખાતરી કરો કે નામ પહેલેથી જ વપરાય નથી.",
- // "admin.access-control.groups.form.notification.edited.failure": "Failed to edit Group \"{{name}}\"",
"admin.access-control.groups.form.notification.edited.failure": "જૂથ {{name}} સંપાદિત કરવામાં નિષ્ફળ",
- // "admin.access-control.groups.form.notification.edited.failure.groupNameInUse": "Name \"{{name}}\" already in use!",
"admin.access-control.groups.form.notification.edited.failure.groupNameInUse": "નામ {{name}} પહેલેથી જ વપરાય છે!",
- // "admin.access-control.groups.form.notification.edited.success": "Successfully edited Group \"{{name}}\"",
"admin.access-control.groups.form.notification.edited.success": "સફળતાપૂર્વક જૂથ {{name}} સંપાદિત કર્યું",
- // "admin.access-control.groups.form.actions.delete": "Delete Group",
"admin.access-control.groups.form.actions.delete": "જૂથ કાઢી નાખો",
- // "admin.access-control.groups.form.delete-group.modal.header": "Delete Group \"{{ dsoName }}\"",
"admin.access-control.groups.form.delete-group.modal.header": "જૂથ {{ dsoName }} કાઢી નાખો",
- // "admin.access-control.groups.form.delete-group.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?",
"admin.access-control.groups.form.delete-group.modal.info": "શું તમે ખરેખર જૂથ {{ dsoName }} કાઢી નાખવા માંગો છો?",
- // "admin.access-control.groups.form.delete-group.modal.cancel": "Cancel",
"admin.access-control.groups.form.delete-group.modal.cancel": "રદ કરો",
- // "admin.access-control.groups.form.delete-group.modal.confirm": "Delete",
"admin.access-control.groups.form.delete-group.modal.confirm": "કાઢી નાખો",
- // "admin.access-control.groups.form.notification.deleted.success": "Successfully deleted group \"{{ name }}\"",
"admin.access-control.groups.form.notification.deleted.success": "સફળતાપૂર્વક જૂથ {{ name }} કાઢી નાખ્યું",
- // "admin.access-control.groups.form.notification.deleted.failure.title": "Failed to delete group \"{{ name }}\"",
"admin.access-control.groups.form.notification.deleted.failure.title": "જૂથ {{ name }} કાઢી નાખવામાં નિષ્ફળ",
- // "admin.access-control.groups.form.notification.deleted.failure.content": "Cause: \"{{ cause }}\"",
- // TODO New key - Add a translation
- "admin.access-control.groups.form.notification.deleted.failure.content": "Cause: \"{{ cause }}\"",
+ "admin.access-control.groups.form.notification.deleted.failure.content": "કારણ: {{ cause }}",
- // "admin.access-control.groups.form.members-list.head": "EPeople",
"admin.access-control.groups.form.members-list.head": "EPeople",
- // "admin.access-control.groups.form.members-list.search.head": "Add EPeople",
"admin.access-control.groups.form.members-list.search.head": "EPeople ઉમેરો",
- // "admin.access-control.groups.form.members-list.button.see-all": "Browse All",
"admin.access-control.groups.form.members-list.button.see-all": "બધા બ્રાઉઝ કરો",
- // "admin.access-control.groups.form.members-list.headMembers": "Current Members",
"admin.access-control.groups.form.members-list.headMembers": "વર્તમાન સભ્યો",
- // "admin.access-control.groups.form.members-list.search.button": "Search",
"admin.access-control.groups.form.members-list.search.button": "શોધો",
- // "admin.access-control.groups.form.members-list.table.id": "ID",
"admin.access-control.groups.form.members-list.table.id": "ID",
- // "admin.access-control.groups.form.members-list.table.name": "Name",
"admin.access-control.groups.form.members-list.table.name": "નામ",
- // "admin.access-control.groups.form.members-list.table.identity": "Identity",
"admin.access-control.groups.form.members-list.table.identity": "ઓળખ",
- // "admin.access-control.groups.form.members-list.table.email": "Email",
"admin.access-control.groups.form.members-list.table.email": "ઇમેઇલ",
- // "admin.access-control.groups.form.members-list.table.netid": "NetID",
"admin.access-control.groups.form.members-list.table.netid": "NetID",
- // "admin.access-control.groups.form.members-list.table.edit": "Remove / Add",
"admin.access-control.groups.form.members-list.table.edit": "દૂર કરો / ઉમેરો",
- // "admin.access-control.groups.form.members-list.table.edit.buttons.remove": "Remove member with name \"{{name}}\"",
"admin.access-control.groups.form.members-list.table.edit.buttons.remove": "{{name}} નામના સભ્યને દૂર કરો",
- // "admin.access-control.groups.form.members-list.notification.success.addMember": "Successfully added member: \"{{name}}\"",
- // TODO New key - Add a translation
- "admin.access-control.groups.form.members-list.notification.success.addMember": "Successfully added member: \"{{name}}\"",
+ "admin.access-control.groups.form.members-list.notification.success.addMember": "સફળતાપૂર્વક {{name}} સભ્ય ઉમેર્યું",
- // "admin.access-control.groups.form.members-list.notification.failure.addMember": "Failed to add member: \"{{name}}\"",
- // TODO New key - Add a translation
- "admin.access-control.groups.form.members-list.notification.failure.addMember": "Failed to add member: \"{{name}}\"",
+ "admin.access-control.groups.form.members-list.notification.failure.addMember": "{{name}} સભ્ય ઉમેરવામાં નિષ્ફળ",
- // "admin.access-control.groups.form.members-list.notification.success.deleteMember": "Successfully deleted member: \"{{name}}\"",
- // TODO New key - Add a translation
- "admin.access-control.groups.form.members-list.notification.success.deleteMember": "Successfully deleted member: \"{{name}}\"",
+ "admin.access-control.groups.form.members-list.notification.success.deleteMember": "સફળતાપૂર્વક {{name}} સભ્ય કાઢી નાખ્યું",
- // "admin.access-control.groups.form.members-list.notification.failure.deleteMember": "Failed to delete member: \"{{name}}\"",
- // TODO New key - Add a translation
- "admin.access-control.groups.form.members-list.notification.failure.deleteMember": "Failed to delete member: \"{{name}}\"",
+ "admin.access-control.groups.form.members-list.notification.failure.deleteMember": "{{name}} સભ્ય કાઢી નાખવામાં નિષ્ફળ",
- // "admin.access-control.groups.form.members-list.table.edit.buttons.add": "Add member with name \"{{name}}\"",
"admin.access-control.groups.form.members-list.table.edit.buttons.add": "{{name}} નામના સભ્યને ઉમેરો",
- // "admin.access-control.groups.form.members-list.notification.failure.noActiveGroup": "No current active group, submit a name first.",
"admin.access-control.groups.form.members-list.notification.failure.noActiveGroup": "કોઈ વર્તમાન સક્રિય જૂથ નથી, પ્રથમ નામ સબમિટ કરો.",
- // "admin.access-control.groups.form.members-list.no-members-yet": "No members in group yet, search and add.",
"admin.access-control.groups.form.members-list.no-members-yet": "જૂથમાં હજી સુધી કોઈ સભ્યો નથી, શોધો અને ઉમેરો.",
- // "admin.access-control.groups.form.members-list.no-items": "No EPeople found in that search",
"admin.access-control.groups.form.members-list.no-items": "આ શોધમાં કોઈ EPeople મળ્યા નથી",
- // "admin.access-control.groups.form.subgroups-list.notification.failure": "Something went wrong: \"{{cause}}\"",
- // TODO New key - Add a translation
- "admin.access-control.groups.form.subgroups-list.notification.failure": "Something went wrong: \"{{cause}}\"",
+ "admin.access-control.groups.form.subgroups-list.notification.failure": "કંઈક ખોટું થયું: {{cause}}",
- // "admin.access-control.groups.form.subgroups-list.head": "Groups",
"admin.access-control.groups.form.subgroups-list.head": "જૂથો",
- // "admin.access-control.groups.form.subgroups-list.search.head": "Add Subgroup",
"admin.access-control.groups.form.subgroups-list.search.head": "સબગ્રુપ ઉમેરો",
- // "admin.access-control.groups.form.subgroups-list.button.see-all": "Browse All",
"admin.access-control.groups.form.subgroups-list.button.see-all": "બધા બ્રાઉઝ કરો",
- // "admin.access-control.groups.form.subgroups-list.headSubgroups": "Current Subgroups",
"admin.access-control.groups.form.subgroups-list.headSubgroups": "વર્તમાન સબગ્રુપ્સ",
- // "admin.access-control.groups.form.subgroups-list.search.button": "Search",
"admin.access-control.groups.form.subgroups-list.search.button": "શોધો",
- // "admin.access-control.groups.form.subgroups-list.table.id": "ID",
"admin.access-control.groups.form.subgroups-list.table.id": "ID",
- // "admin.access-control.groups.form.subgroups-list.table.name": "Name",
"admin.access-control.groups.form.subgroups-list.table.name": "નામ",
- // "admin.access-control.groups.form.subgroups-list.table.collectionOrCommunity": "Collection/Community",
"admin.access-control.groups.form.subgroups-list.table.collectionOrCommunity": "સંગ્રહ/સમુદાય",
- // "admin.access-control.groups.form.subgroups-list.table.edit": "Remove / Add",
"admin.access-control.groups.form.subgroups-list.table.edit": "દૂર કરો / ઉમેરો",
- // "admin.access-control.groups.form.subgroups-list.table.edit.buttons.remove": "Remove subgroup with name \"{{name}}\"",
"admin.access-control.groups.form.subgroups-list.table.edit.buttons.remove": "{{name}} નામના સબગ્રુપને દૂર કરો",
- // "admin.access-control.groups.form.subgroups-list.table.edit.buttons.add": "Add subgroup with name \"{{name}}\"",
"admin.access-control.groups.form.subgroups-list.table.edit.buttons.add": "{{name}} નામના સબગ્રુપને ઉમેરો",
- // "admin.access-control.groups.form.subgroups-list.notification.success.addSubgroup": "Successfully added subgroup: \"{{name}}\"",
- // TODO New key - Add a translation
- "admin.access-control.groups.form.subgroups-list.notification.success.addSubgroup": "Successfully added subgroup: \"{{name}}\"",
+ "admin.access-control.groups.form.subgroups-list.notification.success.addSubgroup": "સફળતાપૂર્વક {{name}} સબગ્રુપ ઉમેર્યું",
- // "admin.access-control.groups.form.subgroups-list.notification.failure.addSubgroup": "Failed to add subgroup: \"{{name}}\"",
- // TODO New key - Add a translation
- "admin.access-control.groups.form.subgroups-list.notification.failure.addSubgroup": "Failed to add subgroup: \"{{name}}\"",
+ "admin.access-control.groups.form.subgroups-list.notification.failure.addSubgroup": "{{name}} સબગ્રુપ ઉમેરવામાં નિષ્ફળ",
- // "admin.access-control.groups.form.subgroups-list.notification.success.deleteSubgroup": "Successfully deleted subgroup: \"{{name}}\"",
- // TODO New key - Add a translation
- "admin.access-control.groups.form.subgroups-list.notification.success.deleteSubgroup": "Successfully deleted subgroup: \"{{name}}\"",
+ "admin.access-control.groups.form.subgroups-list.notification.success.deleteSubgroup": "સફળતાપૂર્વક {{name}} સબગ્રુપ કાઢી નાખ્યું",
- // "admin.access-control.groups.form.subgroups-list.notification.failure.deleteSubgroup": "Failed to delete subgroup: \"{{name}}\"",
- // TODO New key - Add a translation
- "admin.access-control.groups.form.subgroups-list.notification.failure.deleteSubgroup": "Failed to delete subgroup: \"{{name}}\"",
+ "admin.access-control.groups.form.subgroups-list.notification.failure.deleteSubgroup": "{{name}} સબગ્રુપ કાઢી નાખવામાં નિષ્ફળ",
- // "admin.access-control.groups.form.subgroups-list.notification.failure.noActiveGroup": "No current active group, submit a name first.",
"admin.access-control.groups.form.subgroups-list.notification.failure.noActiveGroup": "કોઈ વર્તમાન સક્રિય જૂથ નથી, પ્રથમ નામ સબમિટ કરો.",
- // "admin.access-control.groups.form.subgroups-list.notification.failure.subgroupToAddIsActiveGroup": "This is the current group, can't be added.",
"admin.access-control.groups.form.subgroups-list.notification.failure.subgroupToAddIsActiveGroup": "આ વર્તમાન જૂથ છે, તેને ઉમેરવામાં નથી.",
- // "admin.access-control.groups.form.subgroups-list.no-items": "No groups found with this in their name or this as UUID",
"admin.access-control.groups.form.subgroups-list.no-items": "આ નામ અથવા UUID સાથે કોઈ જૂથો મળ્યા નથી",
- // "admin.access-control.groups.form.subgroups-list.no-subgroups-yet": "No subgroups in group yet.",
"admin.access-control.groups.form.subgroups-list.no-subgroups-yet": "જૂથમાં હજી સુધી કોઈ સબગ્રુપ્સ નથી.",
- // "admin.access-control.groups.form.return": "Back",
"admin.access-control.groups.form.return": "પાછા",
- // "admin.quality-assurance.breadcrumbs": "Quality Assurance",
"admin.quality-assurance.breadcrumbs": "ગુણવત્તા ખાતરી",
- // "admin.notifications.event.breadcrumbs": "Quality Assurance Suggestions",
"admin.notifications.event.breadcrumbs": "ગુણવત્તા ખાતરી સૂચનો",
- // "admin.notifications.event.page.title": "Quality Assurance Suggestions",
"admin.notifications.event.page.title": "ગુણવત્તા ખાતરી સૂચનો",
- // "admin.quality-assurance.page.title": "Quality Assurance",
"admin.quality-assurance.page.title": "ગુણવત્તા ખાતરી",
- // "admin.notifications.source.breadcrumbs": "Quality Assurance",
"admin.notifications.source.breadcrumbs": "ગુણવત્તા ખાતરી",
- // "admin.access-control.groups.form.tooltip.editGroupPage": "On this page, you can modify the properties and members of a group. In the top section, you can edit the group name and description, unless this is an admin group for a collection or community, in which case the group name and description are auto-generated and cannot be edited. In the following sections, you can edit group membership. See [the wiki](https://wiki.lyrasis.org/display/DSDOC7x/Create+or+manage+a+user+group) for more details.",
- // TODO New key - Add a translation
- "admin.access-control.groups.form.tooltip.editGroupPage": "On this page, you can modify the properties and members of a group. In the top section, you can edit the group name and description, unless this is an admin group for a collection or community, in which case the group name and description are auto-generated and cannot be edited. In the following sections, you can edit group membership. See [the wiki](https://wiki.lyrasis.org/display/DSDOC7x/Create+or+manage+a+user+group) for more details.",
+ "admin.access-control.groups.form.tooltip.editGroupPage": "આ પૃષ્ઠ પર, તમે જૂથની ગુણધર્મો અને સભ્યોને ફેરફાર કરી શકો છો. ટોચના વિભાગમાં, તમે જૂથનું નામ અને વર્ણન સંપાદિત કરી શકો છો, જો કે આ સંગ્રહ અથવા સમુદાય માટેનું એડમિન જૂથ હોય, તો જૂથનું નામ અને વર્ણન આપમેળે જનરેટ થાય છે અને તેને સંપાદિત કરી શકાતું નથી. નીચેના વિભાગોમાં, તમે જૂથ સભ્યતાને ફેરફાર કરી શકો છો. વધુ વિગતો માટે [wiki](https://wiki.lyrasis.org/display/DSDOC7x/Create+or+manage+a+user+group) જુઓ.",
- // "admin.access-control.groups.form.tooltip.editGroup.addEpeople": "To add or remove an EPerson to/from this group, either click the 'Browse All' button or use the search bar below to search for users (use the dropdown to the left of the search bar to choose whether to search by metadata or by email). Then click the plus icon for each user you wish to add in the list below, or the trash can icon for each user you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages.",
- // TODO New key - Add a translation
- "admin.access-control.groups.form.tooltip.editGroup.addEpeople": "To add or remove an EPerson to/from this group, either click the 'Browse All' button or use the search bar below to search for users (use the dropdown to the left of the search bar to choose whether to search by metadata or by email). Then click the plus icon for each user you wish to add in the list below, or the trash can icon for each user you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages.",
+ "admin.access-control.groups.form.tooltip.editGroup.addEpeople": "આ જૂથમાં EPerson ઉમેરવા અથવા દૂર કરવા માટે, 'બધા બ્રાઉઝ કરો' બટન પર ક્લિક કરો અથવા નીચેના શોધ બારનો ઉપયોગ કરીને વપરાશકર્તાઓને શોધો (શોધ બારની ડાબી બાજુના ડ્રોપડાઉનનો ઉપયોગ કરીને મેટાડેટા અથવા ઇમેઇલ દ્વારા શોધવાનું પસંદ કરો). પછી નીચેની યાદીમાં દરેક વપરાશકર્તા માટે '+' ચિહ્ન પર ક્લિક કરો જેને તમે ઉમેરવા માંગો છો, અથવા દરેક વપરાશકર્તા માટે કચરો ચિહ્ન પર ક્લિક કરો જેને તમે દૂર કરવા માંગો છો. નીચેની યાદીમાં અનેક પૃષ્ઠો હોઈ શકે છે: આગળના પૃષ્ઠો પર જવા માટે નીચેની યાદી નિયંત્રણોનો ઉપયોગ કરો.",
- // "admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "To add or remove a Subgroup to/from this group, either click the 'Browse All' button or use the search bar below to search for groups. Then click the plus icon for each group you wish to add in the list below, or the trash can icon for each group you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages.",
- // TODO New key - Add a translation
- "admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "To add or remove a Subgroup to/from this group, either click the 'Browse All' button or use the search bar below to search for groups. Then click the plus icon for each group you wish to add in the list below, or the trash can icon for each group you wish to remove. The list below may have several pages: use the page controls below the list to navigate to the next pages.",
+ "admin.access-control.groups.form.tooltip.editGroup.addSubgroups": "આ જૂથમાં સબગ્રુપ ઉમેરવા અથવા દૂર કરવા માટે, 'બધા બ્રાઉઝ કરો' બટન પર ક્લિક કરો અથવા નીચેના શોધ બારનો ઉપયોગ કરીને જૂથોને શોધો. પછી નીચેની યાદીમાં દરેક જૂથ માટે '+' ચિહ્ન પર ક્લિક કરો જેને તમે ઉમેરવા માંગો છો, અથવા દરેક જૂથ માટે કચરો ચિહ્ન પર ક્લિક કરો જેને તમે દૂર કરવા માંગો છો. નીચેની યાદીમાં અનેક પૃષ્ઠો હોઈ શકે છે: આગળના પૃષ્ઠો પર જવા માટે નીચેની યાદી નિયંત્રણોનો ઉપયોગ કરો.",
- // "admin.reports.collections.title": "Collection Filter Report",
"admin.reports.collections.title": "સંગ્રહ ફિલ્ટર રિપોર્ટ",
- // "admin.reports.collections.breadcrumbs": "Collection Filter Report",
"admin.reports.collections.breadcrumbs": "સંગ્રહ ફિલ્ટર રિપોર્ટ",
- // "admin.reports.collections.head": "Collection Filter Report",
"admin.reports.collections.head": "સંગ્રહ ફિલ્ટર રિપોર્ટ",
- // "admin.reports.button.show-collections": "Show Collections",
"admin.reports.button.show-collections": "સંગ્રહો બતાવો",
- // "admin.reports.collections.collections-report": "Collection Report",
"admin.reports.collections.collections-report": "સંગ્રહ રિપોર્ટ",
- // "admin.reports.collections.item-results": "Item Results",
"admin.reports.collections.item-results": "આઇટમ પરિણામો",
- // "admin.reports.collections.community": "Community",
"admin.reports.collections.community": "સમુદાય",
- // "admin.reports.collections.collection": "Collection",
"admin.reports.collections.collection": "સંગ્રહ",
- // "admin.reports.collections.nb_items": "Nb. Items",
"admin.reports.collections.nb_items": "આઇટમ્સની સંખ્યા",
- // "admin.reports.collections.match_all_selected_filters": "Matching all selected filters",
"admin.reports.collections.match_all_selected_filters": "બધા પસંદ કરેલ ફિલ્ટર્સ સાથે મેળ ખાતું",
- // "admin.reports.items.breadcrumbs": "Metadata Query Report",
"admin.reports.items.breadcrumbs": "મેટાડેટા ક્વેરી રિપોર્ટ",
- // "admin.reports.items.head": "Metadata Query Report",
"admin.reports.items.head": "મેટાડેટા ક્વેરી રિપોર્ટ",
- // "admin.reports.items.run": "Run Item Query",
"admin.reports.items.run": "આઇટમ ક્વેરી ચલાવો",
- // "admin.reports.items.section.collectionSelector": "Collection Selector",
"admin.reports.items.section.collectionSelector": "સંગ્રહ પસંદગીકાર",
- // "admin.reports.items.section.metadataFieldQueries": "Metadata Field Queries",
"admin.reports.items.section.metadataFieldQueries": "મેટાડેટા ફીલ્ડ ક્વેરીઝ",
- // "admin.reports.items.predefinedQueries": "Predefined Queries",
"admin.reports.items.predefinedQueries": "પૂર્વનિર્ધારિત ક્વેરીઝ",
- // "admin.reports.items.section.limitPaginateQueries": "Limit/Paginate Queries",
"admin.reports.items.section.limitPaginateQueries": "ક્વેરીઝ મર્યાદિત/પેજિનેટ",
- // "admin.reports.items.limit": "Limit/",
"admin.reports.items.limit": "મર્યાદા/",
- // "admin.reports.items.offset": "Offset",
"admin.reports.items.offset": "ઓફસેટ",
- // "admin.reports.items.wholeRepo": "Whole Repository",
"admin.reports.items.wholeRepo": "સંપૂર્ણ રિપોઝિટરી",
- // "admin.reports.items.anyField": "Any field",
"admin.reports.items.anyField": "કોઈપણ ફીલ્ડ",
- // "admin.reports.items.predicate.exists": "exists",
"admin.reports.items.predicate.exists": "અસ્તિત્વમાં છે",
- // "admin.reports.items.predicate.doesNotExist": "does not exist",
"admin.reports.items.predicate.doesNotExist": "અસ્તિત્વમાં નથી",
- // "admin.reports.items.predicate.equals": "equals",
"admin.reports.items.predicate.equals": "સમાન છે",
- // "admin.reports.items.predicate.doesNotEqual": "does not equal",
"admin.reports.items.predicate.doesNotEqual": "સમાન નથી",
- // "admin.reports.items.predicate.like": "like",
"admin.reports.items.predicate.like": "માટે",
- // "admin.reports.items.predicate.notLike": "not like",
"admin.reports.items.predicate.notLike": "માટે નથી",
- // "admin.reports.items.predicate.contains": "contains",
"admin.reports.items.predicate.contains": "સમાવે છે",
- // "admin.reports.items.predicate.doesNotContain": "does not contain",
"admin.reports.items.predicate.doesNotContain": "સમાવિષ્ટ નથી",
- // "admin.reports.items.predicate.matches": "matches",
"admin.reports.items.predicate.matches": "મેળ ખાતું",
- // "admin.reports.items.predicate.doesNotMatch": "does not match",
"admin.reports.items.predicate.doesNotMatch": "મેળ ખાતું નથી",
- // "admin.reports.items.preset.new": "New Query",
"admin.reports.items.preset.new": "નવી ક્વેરી",
- // "admin.reports.items.preset.hasNoTitle": "Has No Title",
"admin.reports.items.preset.hasNoTitle": "કોઈ શીર્ષક નથી",
- // "admin.reports.items.preset.hasNoIdentifierUri": "Has No dc.identifier.uri",
"admin.reports.items.preset.hasNoIdentifierUri": "કોઈ dc.identifier.uri નથી",
- // "admin.reports.items.preset.hasCompoundSubject": "Has compound subject",
"admin.reports.items.preset.hasCompoundSubject": "સંયુક્ત વિષય ધરાવે છે",
- // "admin.reports.items.preset.hasCompoundAuthor": "Has compound dc.contributor.author",
"admin.reports.items.preset.hasCompoundAuthor": "સંયુક્ત dc.contributor.author ધરાવે છે",
- // "admin.reports.items.preset.hasCompoundCreator": "Has compound dc.creator",
"admin.reports.items.preset.hasCompoundCreator": "સંયુક્ત dc.creator ધરાવે છે",
- // "admin.reports.items.preset.hasUrlInDescription": "Has URL in dc.description",
"admin.reports.items.preset.hasUrlInDescription": "dc.description માં URL ધરાવે છે",
- // "admin.reports.items.preset.hasFullTextInProvenance": "Has full text in dc.description.provenance",
"admin.reports.items.preset.hasFullTextInProvenance": "dc.description.provenance માં સંપૂર્ણ લખાણ ધરાવે છે",
- // "admin.reports.items.preset.hasNonFullTextInProvenance": "Has non-full text in dc.description.provenance",
"admin.reports.items.preset.hasNonFullTextInProvenance": "dc.description.provenance માં નોન-ફુલ ટેક્સ્ટ ધરાવે છે",
- // "admin.reports.items.preset.hasEmptyMetadata": "Has empty metadata",
"admin.reports.items.preset.hasEmptyMetadata": "ખાલી મેટાડેટા ધરાવે છે",
- // "admin.reports.items.preset.hasUnbreakingDataInDescription": "Has unbreaking metadata in description",
"admin.reports.items.preset.hasUnbreakingDataInDescription": "વર્ણન માં અનબ્રેકિંગ મેટાડેટા ધરાવે છે",
- // "admin.reports.items.preset.hasXmlEntityInMetadata": "Has XML entity in metadata",
"admin.reports.items.preset.hasXmlEntityInMetadata": "મેટાડેટા માં XML એન્ટિટી ધરાવે છે",
- // "admin.reports.items.preset.hasNonAsciiCharInMetadata": "Has non-ascii character in metadata",
"admin.reports.items.preset.hasNonAsciiCharInMetadata": "મેટાડેટા માં નોન-ASCII કૅરેક્ટર ધરાવે છે",
- // "admin.reports.items.number": "No.",
"admin.reports.items.number": "નંબર",
- // "admin.reports.items.id": "UUID",
"admin.reports.items.id": "UUID",
- // "admin.reports.items.collection": "Collection",
"admin.reports.items.collection": "સંગ્રહ",
- // "admin.reports.items.handle": "URI",
"admin.reports.items.handle": "URI",
- // "admin.reports.items.title": "Title",
"admin.reports.items.title": "શીર્ષક",
- // "admin.reports.commons.filters": "Filters",
"admin.reports.commons.filters": "ફિલ્ટર્સ",
- // "admin.reports.commons.additional-data": "Additional data to return",
"admin.reports.commons.additional-data": "વધારાની માહિતી પરત કરો",
- // "admin.reports.commons.previous-page": "Prev Page",
"admin.reports.commons.previous-page": "પાછલા પૃષ્ઠ",
- // "admin.reports.commons.next-page": "Next Page",
"admin.reports.commons.next-page": "આગલા પૃષ્ઠ",
- // "admin.reports.commons.page": "Page",
"admin.reports.commons.page": "પૃષ્ઠ",
- // "admin.reports.commons.of": "of",
"admin.reports.commons.of": "ના",
- // "admin.reports.commons.export": "Export for Metadata Update",
"admin.reports.commons.export": "મેટાડેટા અપડેટ માટે નિકાસ કરો",
- // "admin.reports.commons.filters.deselect_all": "Deselect all filters",
"admin.reports.commons.filters.deselect_all": "બધા ફિલ્ટર્સ દૂર કરો",
- // "admin.reports.commons.filters.select_all": "Select all filters",
"admin.reports.commons.filters.select_all": "બધા ફિલ્ટર્સ પસંદ કરો",
- // "admin.reports.commons.filters.matches_all": "Matches all specified filters",
"admin.reports.commons.filters.matches_all": "બધા નિર્દિષ્ટ ફિલ્ટર્સ સાથે મેળ ખાતું",
- // "admin.reports.commons.filters.property": "Item Property Filters",
"admin.reports.commons.filters.property": "આઇટમ પ્રોપર્ટી ફિલ્ટર્સ",
- // "admin.reports.commons.filters.property.is_item": "Is Item - always true",
"admin.reports.commons.filters.property.is_item": "આઇટમ છે - હંમેશા સાચું",
- // "admin.reports.commons.filters.property.is_withdrawn": "Withdrawn Items",
"admin.reports.commons.filters.property.is_withdrawn": "વિથડ્રોન આઇટમ્સ",
- // "admin.reports.commons.filters.property.is_not_withdrawn": "Available Items - Not Withdrawn",
"admin.reports.commons.filters.property.is_not_withdrawn": "ઉપલબ્ધ આઇટમ્સ - વિથડ્રોન નથી",
- // "admin.reports.commons.filters.property.is_discoverable": "Discoverable Items - Not Private",
"admin.reports.commons.filters.property.is_discoverable": "ડિસ્કવરેબલ આઇટમ્સ - પ્રાઇવેટ નથી",
- // "admin.reports.commons.filters.property.is_not_discoverable": "Not Discoverable - Private Item",
"admin.reports.commons.filters.property.is_not_discoverable": "ડિસ્કવરેબલ નથી - પ્રાઇવેટ આઇટમ",
- // "admin.reports.commons.filters.bitstream": "Basic Bitstream Filters",
"admin.reports.commons.filters.bitstream": "મૂળ બિટસ્ટ્રીમ ફિલ્ટર્સ",
- // "admin.reports.commons.filters.bitstream.has_multiple_originals": "Item has Multiple Original Bitstreams",
"admin.reports.commons.filters.bitstream.has_multiple_originals": "આઇટમમાં અનેક મૂળ બિટસ્ટ્રીમ્સ છે",
- // "admin.reports.commons.filters.bitstream.has_no_originals": "Item has No Original Bitstreams",
"admin.reports.commons.filters.bitstream.has_no_originals": "આઇટમમાં કોઈ મૂળ બિટસ્ટ્રીમ્સ નથી",
- // "admin.reports.commons.filters.bitstream.has_one_original": "Item has One Original Bitstream",
"admin.reports.commons.filters.bitstream.has_one_original": "આઇટમમાં એક મૂળ બિટસ્ટ્રીમ છે",
- // "admin.reports.commons.filters.bitstream_mime": "Bitstream Filters by MIME Type",
- // TODO New key - Add a translation
- "admin.reports.commons.filters.bitstream_mime": "Bitstream Filters by MIME Type",
-
- // "admin.reports.commons.filters.bitstream_mime.has_doc_original": "Item has a Doc Original Bitstream (PDF, Office, Text, HTML, XML, etc)",
"admin.reports.commons.filters.bitstream_mime.has_doc_original": "આઇટમમાં ડોક્યુમેન્ટ ઓરિજિનલ બિટસ્ટ્રીમ છે (PDF, Office, Text, HTML, XML, વગેરે)",
- // "admin.reports.commons.filters.bitstream_mime.has_image_original": "Item has an Image Original Bitstream",
"admin.reports.commons.filters.bitstream_mime.has_image_original": "આઇટમમાં ઇમેજ ઓરિજિનલ બિટસ્ટ્રીમ છે",
- // "admin.reports.commons.filters.bitstream_mime.has_unsupp_type": "Has Other Bitstream Types (not Doc or Image)",
"admin.reports.commons.filters.bitstream_mime.has_unsupp_type": "અન્ય બિટસ્ટ્રીમ પ્રકારો ધરાવે છે (ડોક્યુમેન્ટ અથવા ઇમેજ નથી)",
- // "admin.reports.commons.filters.bitstream_mime.has_mixed_original": "Item has multiple types of Original Bitstreams (Doc, Image, Other)",
"admin.reports.commons.filters.bitstream_mime.has_mixed_original": "આઇટમમાં ઓરિજિનલ બિટસ્ટ્રીમના અનેક પ્રકારો છે (ડોક્યુમેન્ટ, ઇમેજ, અન્ય)",
- // "admin.reports.commons.filters.bitstream_mime.has_pdf_original": "Item has a PDF Original Bitstream",
"admin.reports.commons.filters.bitstream_mime.has_pdf_original": "આઇટમમાં PDF ઓરિજિનલ બિટસ્ટ્રીમ છે",
- // "admin.reports.commons.filters.bitstream_mime.has_jpg_original": "Item has JPG Original Bitstream",
"admin.reports.commons.filters.bitstream_mime.has_jpg_original": "આઇટમમાં JPG ઓરિજિનલ બિટસ્ટ્રીમ છે",
- // "admin.reports.commons.filters.bitstream_mime.has_small_pdf": "Has unusually small PDF",
"admin.reports.commons.filters.bitstream_mime.has_small_pdf": "અસામાન્ય રીતે નાનું PDF ધરાવે છે",
- // "admin.reports.commons.filters.bitstream_mime.has_large_pdf": "Has unusually large PDF",
"admin.reports.commons.filters.bitstream_mime.has_large_pdf": "અસામાન્ય રીતે મોટું PDF ધરાવે છે",
- // "admin.reports.commons.filters.bitstream_mime.has_doc_without_text": "Has document bitstream without TEXT item",
"admin.reports.commons.filters.bitstream_mime.has_doc_without_text": "ટેક્સ્ટ આઇટમ વિના ડોક્યુમેન્ટ બિટસ્ટ્રીમ ધરાવે છે",
- // "admin.reports.commons.filters.mime": "Supported MIME Type Filters",
"admin.reports.commons.filters.mime": "સપોર્ટેડ MIME પ્રકાર ફિલ્ટર્સ",
- // "admin.reports.commons.filters.mime.has_only_supp_image_type": "Item Image Bitstreams are Supported",
"admin.reports.commons.filters.mime.has_only_supp_image_type": "આઇટમ ઇમેજ બિટસ્ટ્રીમ્સ સપોર્ટેડ છે",
- // "admin.reports.commons.filters.mime.has_unsupp_image_type": "Item has Image Bitstream that is Unsupported",
"admin.reports.commons.filters.mime.has_unsupp_image_type": "આઇટમમાં અસપોર્ટેડ ઇમેજ બિટસ્ટ્રીમ છે",
- // "admin.reports.commons.filters.mime.has_only_supp_doc_type": "Item Document Bitstreams are Supported",
"admin.reports.commons.filters.mime.has_only_supp_doc_type": "આઇટમ ડોક્યુમેન્ટ બિટસ્ટ્રીમ્સ સપોર્ટેડ છે",
- // "admin.reports.commons.filters.mime.has_unsupp_doc_type": "Item has Document Bitstream that is Unsupported",
"admin.reports.commons.filters.mime.has_unsupp_doc_type": "આઇટમમાં અસપોર્ટેડ ડોક્યુમેન્ટ બિટસ્ટ્રીમ છે",
- // "admin.reports.commons.filters.bundle": "Bitstream Bundle Filters",
"admin.reports.commons.filters.bundle": "બિટસ્ટ્રીમ બંડલ ફિલ્ટર્સ",
- // "admin.reports.commons.filters.bundle.has_unsupported_bundle": "Has bitstream in an unsupported bundle",
"admin.reports.commons.filters.bundle.has_unsupported_bundle": "અસપોર્ટેડ બંડલમાં બિટસ્ટ્રીમ ધરાવે છે",
- // "admin.reports.commons.filters.bundle.has_small_thumbnail": "Has unusually small thumbnail",
"admin.reports.commons.filters.bundle.has_small_thumbnail": "અસામાન્ય રીતે નાનું થંબનેલ ધરાવે છે",
- // "admin.reports.commons.filters.bundle.has_original_without_thumbnail": "Has original bitstream without thumbnail",
"admin.reports.commons.filters.bundle.has_original_without_thumbnail": "થંબનેલ વિના ઓરિજિનલ બિટસ્ટ્રીમ ધરાવે છે",
- // "admin.reports.commons.filters.bundle.has_invalid_thumbnail_name": "Has invalid thumbnail name (assumes one thumbnail for each original)",
"admin.reports.commons.filters.bundle.has_invalid_thumbnail_name": "અમાન્ય થંબનેલ નામ ધરાવે છે (દરેક ઓરિજિનલ માટે એક થંબનેલ માન્ય છે)",
- // "admin.reports.commons.filters.bundle.has_non_generated_thumb": "Has non-generated thumbnail",
"admin.reports.commons.filters.bundle.has_non_generated_thumb": "જેનરેટ ન થયેલું થંબનેલ ધરાવે છે",
- // "admin.reports.commons.filters.bundle.no_license": "Doesn't have a license",
"admin.reports.commons.filters.bundle.no_license": "લાઇસન્સ નથી",
- // "admin.reports.commons.filters.bundle.has_license_documentation": "Has documentation in the license bundle",
"admin.reports.commons.filters.bundle.has_license_documentation": "લાઇસન્સ બંડલમાં દસ્તાવેજીકરણ ધરાવે છે",
- // "admin.reports.commons.filters.permission": "Permission Filters",
"admin.reports.commons.filters.permission": "પરમિશન ફિલ્ટર્સ",
- // "admin.reports.commons.filters.permission.has_restricted_original": "Item has Restricted Original Bitstream",
"admin.reports.commons.filters.permission.has_restricted_original": "આઇટમમાં પ્રતિબંધિત ઓરિજિનલ બિટસ્ટ્રીમ છે",
- // "admin.reports.commons.filters.permission.has_restricted_original.tooltip": "Item has at least one original bitstream that is not accessible to Anonymous user",
"admin.reports.commons.filters.permission.has_restricted_original.tooltip": "આઇટમમાં ઓછામાં ઓછું એક ઓરિજિનલ બિટસ્ટ્રીમ છે જે અનામી વપરાશકર્તા માટે ઍક્સેસિબલ નથી",
- // "admin.reports.commons.filters.permission.has_restricted_thumbnail": "Item has Restricted Thumbnail",
"admin.reports.commons.filters.permission.has_restricted_thumbnail": "આઇટમમાં પ્રતિબંધિત થંબનેલ છે",
- // "admin.reports.commons.filters.permission.has_restricted_thumbnail.tooltip": "Item has at least one thumbnail that is not accessible to Anonymous user",
"admin.reports.commons.filters.permission.has_restricted_thumbnail.tooltip": "આઇટમમાં ઓછામાં ઓછું એક થંબનેલ છે જે અનામી વપરાશકર્તા માટે ઍક્સેસિબલ નથી",
- // "admin.reports.commons.filters.permission.has_restricted_metadata": "Item has Restricted Metadata",
"admin.reports.commons.filters.permission.has_restricted_metadata": "આઇટમમાં પ્રતિબંધિત મેટાડેટા છે",
- // "admin.reports.commons.filters.permission.has_restricted_metadata.tooltip": "Item has metadata that is not accessible to Anonymous user",
"admin.reports.commons.filters.permission.has_restricted_metadata.tooltip": "આઇટમમાં મેટાડેટા છે જે અનામી વપરાશકર્તા માટે ઍક્સેસિબલ નથી",
- // "admin.search.breadcrumbs": "Administrative Search",
"admin.search.breadcrumbs": "વહીવટી શોધ",
- // "admin.search.collection.edit": "Edit",
"admin.search.collection.edit": "સંપાદિત કરો",
- // "admin.search.community.edit": "Edit",
"admin.search.community.edit": "સંપાદિત કરો",
- // "admin.search.item.delete": "Delete",
"admin.search.item.delete": "કાઢી નાખો",
- // "admin.search.item.edit": "Edit",
"admin.search.item.edit": "સંપાદિત કરો",
- // "admin.search.item.make-private": "Make non-discoverable",
"admin.search.item.make-private": "અપ્રકાશિત બનાવો",
- // "admin.search.item.make-public": "Make discoverable",
"admin.search.item.make-public": "પ્રકાશિત બનાવો",
- // "admin.search.item.move": "Move",
"admin.search.item.move": "ખસેડો",
- // "admin.search.item.reinstate": "Reinstate",
"admin.search.item.reinstate": "ફરી સ્થાપિત કરો",
- // "admin.search.item.withdraw": "Withdraw",
"admin.search.item.withdraw": "પાછું ખેંચો",
- // "admin.search.title": "Administrative Search",
"admin.search.title": "વહીવટી શોધ",
- // "administrativeView.search.results.head": "Administrative Search",
"administrativeView.search.results.head": "વહીવટી શોધ",
- // "admin.workflow.breadcrumbs": "Administer Workflow",
"admin.workflow.breadcrumbs": "વર્કફ્લો વહીવટ",
- // "admin.workflow.title": "Administer Workflow",
"admin.workflow.title": "વર્કફ્લો વહીવટ",
- // "admin.workflow.item.workflow": "Workflow",
"admin.workflow.item.workflow": "વર્કફ્લો",
- // "admin.workflow.item.workspace": "Workspace",
"admin.workflow.item.workspace": "વર્કસ્પેસ",
- // "admin.workflow.item.delete": "Delete",
"admin.workflow.item.delete": "કાઢી નાખો",
- // "admin.workflow.item.send-back": "Send back",
"admin.workflow.item.send-back": "પાછું મોકલો",
- // "admin.workflow.item.policies": "Policies",
"admin.workflow.item.policies": "પોલિસી",
- // "admin.workflow.item.supervision": "Supervision",
"admin.workflow.item.supervision": "સુપરવિઝન",
- // "admin.metadata-import.breadcrumbs": "Import Metadata",
"admin.metadata-import.breadcrumbs": "મેટાડેટા આયાત",
- // "admin.batch-import.breadcrumbs": "Import Batch",
"admin.batch-import.breadcrumbs": "બેચ આયાત",
- // "admin.metadata-import.title": "Import Metadata",
"admin.metadata-import.title": "મેટાડેટા આયાત",
- // "admin.batch-import.title": "Import Batch",
"admin.batch-import.title": "બેચ આયાત",
- // "admin.metadata-import.page.header": "Import Metadata",
"admin.metadata-import.page.header": "મેટાડેટા આયાત",
- // "admin.batch-import.page.header": "Import Batch",
"admin.batch-import.page.header": "બેચ આયાત",
- // "admin.metadata-import.page.help": "You can drop or browse CSV files that contain batch metadata operations on files here",
"admin.metadata-import.page.help": "તમે અહીં બેચ મેટાડેટા ઓપરેશન્સ ધરાવતી CSV ફાઇલો ડ્રોપ અથવા બ્રાઉઝ કરી શકો છો",
- // "admin.batch-import.page.help": "Select the collection to import into. Then, drop or browse to a Simple Archive Format (SAF) zip file that includes the items to import",
"admin.batch-import.page.help": "આયાત કરવા માટે સંગ્રહ પસંદ કરો. પછી, SAF ઝિપ ફાઇલ ડ્રોપ અથવા બ્રાઉઝ કરો જેમાં આયાત કરવા માટેની આઇટમ્સ શામેલ છે",
- // "admin.batch-import.page.toggle.help": "It is possible to perform import either with file upload or via URL, use above toggle to set the input source",
"admin.batch-import.page.toggle.help": "આયાત ફાઇલ અપલોડ અથવા URL દ્વારા કરી શકાય છે, ઇનપુટ સોર્સ સેટ કરવા માટે ઉપરના ટૉગલનો ઉપયોગ કરો",
- // "admin.metadata-import.page.dropMsg": "Drop a metadata CSV to import",
"admin.metadata-import.page.dropMsg": "મેટાડેટા CSV આયાત કરવા માટે ડ્રોપ કરો",
- // "admin.batch-import.page.dropMsg": "Drop a batch ZIP to import",
"admin.batch-import.page.dropMsg": "બેચ ઝિપ આયાત કરવા માટે ડ્રોપ કરો",
- // "admin.metadata-import.page.dropMsgReplace": "Drop to replace the metadata CSV to import",
"admin.metadata-import.page.dropMsgReplace": "મેટાડેટા CSV આયાત કરવા માટે બદલો",
- // "admin.batch-import.page.dropMsgReplace": "Drop to replace the batch ZIP to import",
"admin.batch-import.page.dropMsgReplace": "બેચ ઝિપ આયાત કરવા માટે બદલો",
- // "admin.metadata-import.page.button.return": "Back",
"admin.metadata-import.page.button.return": "પાછા",
- // "admin.metadata-import.page.button.proceed": "Proceed",
"admin.metadata-import.page.button.proceed": "આગળ વધો",
- // "admin.metadata-import.page.button.select-collection": "Select Collection",
"admin.metadata-import.page.button.select-collection": "સંગ્રહ પસંદ કરો",
- // "admin.metadata-import.page.error.addFile": "Select file first!",
"admin.metadata-import.page.error.addFile": "પ્રથમ ફાઇલ પસંદ કરો!",
- // "admin.metadata-import.page.error.addFileUrl": "Insert file URL first!",
"admin.metadata-import.page.error.addFileUrl": "પ્રથમ ફાઇલ URL દાખલ કરો!",
- // "admin.batch-import.page.error.addFile": "Select ZIP file first!",
"admin.batch-import.page.error.addFile": "પ્રથમ ઝિપ ફાઇલ પસંદ કરો!",
- // "admin.metadata-import.page.toggle.upload": "Upload",
"admin.metadata-import.page.toggle.upload": "અપલોડ",
- // "admin.metadata-import.page.toggle.url": "URL",
"admin.metadata-import.page.toggle.url": "URL",
- // "admin.metadata-import.page.urlMsg": "Insert the batch ZIP url to import",
"admin.metadata-import.page.urlMsg": "આયાત કરવા માટે બેચ ઝિપ URL દાખલ કરો",
- // "admin.metadata-import.page.validateOnly": "Validate Only",
"admin.metadata-import.page.validateOnly": "માત્ર માન્ય કરો",
- // "admin.metadata-import.page.validateOnly.hint": "When selected, the uploaded CSV will be validated. You will receive a report of detected changes, but no changes will be saved.",
"admin.metadata-import.page.validateOnly.hint": "જ્યારે પસંદ કરેલ હોય, ત્યારે અપલોડ કરેલ CSV માન્ય કરવામાં આવશે. તમને શોધાયેલા ફેરફારોનો અહેવાલ મળશે, પરંતુ કોઈ ફેરફારો સાચવવામાં આવશે નહીં.",
- // "advanced-workflow-action.rating.form.rating.label": "Rating",
"advanced-workflow-action.rating.form.rating.label": "રેટિંગ",
- // "advanced-workflow-action.rating.form.rating.error": "You must rate the item",
"advanced-workflow-action.rating.form.rating.error": "તમે આઇટમને રેટ કરવું જ જોઈએ",
- // "advanced-workflow-action.rating.form.review.label": "Review",
"advanced-workflow-action.rating.form.review.label": "સમીક્ષા",
- // "advanced-workflow-action.rating.form.review.error": "You must enter a review to submit this rating",
"advanced-workflow-action.rating.form.review.error": "આ રેટિંગ સબમિટ કરવા માટે તમારે સમીક્ષા દાખલ કરવી જ જોઈએ",
- // "advanced-workflow-action.rating.description": "Please select a rating below",
"advanced-workflow-action.rating.description": "કૃપા કરીને નીચે રેટિંગ પસંદ કરો",
- // "advanced-workflow-action.rating.description-requiredDescription": "Please select a rating below and also add a review",
"advanced-workflow-action.rating.description-requiredDescription": "કૃપા કરીને નીચે રેટિંગ પસંદ કરો અને સમીક્ષા ઉમેરો",
- // "advanced-workflow-action.select-reviewer.description-single": "Please select a single reviewer below before submitting",
"advanced-workflow-action.select-reviewer.description-single": "સબમિટ કરતા પહેલા કૃપા કરીને નીચે એક રિવ્યુઅર પસંદ કરો",
- // "advanced-workflow-action.select-reviewer.description-multiple": "Please select one or more reviewers below before submitting",
"advanced-workflow-action.select-reviewer.description-multiple": "સબમિટ કરતા પહેલા કૃપા કરીને એક અથવા વધુ રિવ્યુઅર્સ પસંદ કરો",
- // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.head": "EPeople",
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.head": "EPeople",
- // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.head": "Add EPeople",
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.head": "EPeople ઉમેરો",
- // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.button.see-all": "Browse All",
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.button.see-all": "બધા બ્રાઉઝ કરો",
- // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.headMembers": "Current Members",
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.headMembers": "વર્તમાન સભ્યો",
- // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.button": "Search",
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.search.button": "શોધો",
- // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.id": "ID",
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.id": "ID",
- // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.name": "Name",
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.name": "નામ",
- // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.identity": "Identity",
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.identity": "ઓળખ",
- // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.email": "Email",
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.email": "ઇમેઇલ",
- // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.netid": "NetID",
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.netid": "NetID",
- // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit": "Remove / Add",
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit": "દૂર કરો / ઉમેરો",
- // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.remove": "Remove member with name \"{{name}}\"",
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.remove": "{{name}} નામના સભ્યને દૂર કરો",
- // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.addMember": "Successfully added member: \"{{name}}\"",
- // TODO New key - Add a translation
- "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.addMember": "Successfully added member: \"{{name}}\"",
+ "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.addMember": "સફળતાપૂર્વક {{name}} સભ્ય ઉમેર્યું",
- // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.addMember": "Failed to add member: \"{{name}}\"",
- // TODO New key - Add a translation
- "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.addMember": "Failed to add member: \"{{name}}\"",
+ "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.addMember": "{{name}} સભ્ય ઉમેરવામાં નિષ્ફળ",
- // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.deleteMember": "Successfully deleted member: \"{{name}}\"",
- // TODO New key - Add a translation
- "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.deleteMember": "Successfully deleted member: \"{{name}}\"",
+ "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.success.deleteMember": "સફળતાપૂર્વક {{name}} સભ્ય કાઢી નાખ્યું",
- // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.deleteMember": "Failed to delete member: \"{{name}}\"",
- // TODO New key - Add a translation
- "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.deleteMember": "Failed to delete member: \"{{name}}\"",
+ "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.deleteMember": "{{name}} સભ્ય કાઢી નાખવામાં નિષ્ફળ",
- // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.add": "Add member with name \"{{name}}\"",
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.table.edit.buttons.add": "{{name}} નામના સભ્યને ઉમેરો",
- // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.noActiveGroup": "No current active group, submit a name first.",
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.notification.failure.noActiveGroup": "કોઈ વર્તમાન સક્રિય જૂથ નથી, પ્રથમ નામ સબમિટ કરો.",
- // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-members-yet": "No members in group yet, search and add.",
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-members-yet": "જૂથમાં હજી સુધી કોઈ સભ્યો નથી, શોધો અને ઉમેરો.",
- // "advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-items": "No EPeople found in that search",
"advanced-workflow-action-select-reviewer.groups.form.reviewers-list.no-items": "આ શોધમાં કોઈ EPeople મળ્યા નથી",
- // "advanced-workflow-action.select-reviewer.no-reviewer-selected.error": "No reviewer selected.",
"advanced-workflow-action.select-reviewer.no-reviewer-selected.error": "કોઈ રિવ્યુઅર પસંદ કરેલ નથી.",
- // "admin.batch-import.page.validateOnly.hint": "When selected, the uploaded ZIP will be validated. You will receive a report of detected changes, but no changes will be saved.",
"admin.batch-import.page.validateOnly.hint": "જ્યારે પસંદ કરેલ હોય, ત્યારે અપલોડ કરેલ ઝિપ માન્ય કરવામાં આવશે. તમને શોધાયેલા ફેરફારોનો અહેવાલ મળશે, પરંતુ કોઈ ફેરફારો સાચવવામાં આવશે નહીં.",
- // "admin.batch-import.page.remove": "remove",
"admin.batch-import.page.remove": "દૂર કરો",
- // "audit.data.not-found": "No audits found.",
- // TODO New key - Add a translation
- "audit.data.not-found": "No audits found.",
+ "auth.errors.invalid-user": "અમાન્ય ઇમેઇલ સરનામું અથવા પાસવર્ડ.",
- // "audit.data.self": "self",
- // TODO New key - Add a translation
- "audit.data.self": "self",
+ "auth.messages.expired": "તમારો સત્ર સમાપ્ત થયો છે. કૃપા કરીને ફરી લૉગ ઇન કરો.",
- // "audit.detail.metadata.field": "Metadata field:",
- // TODO New key - Add a translation
- "audit.detail.metadata.field": "Metadata field:",
+ "auth.messages.token-refresh-failed": "તમારા સત્ર ટોકનને રિફ્રેશ કરવામાં નિષ્ફળ. કૃપા કરીને ફરી લૉગ ઇન કરો.",
- // "audit.detail.metadata.value": "Value:",
- // TODO New key - Add a translation
- "audit.detail.metadata.value": "Value:",
+ "bitstream.download.page": "હવે {{bitstream}} ડાઉનલોડ કરી રહ્યા છે...",
- // "audit.detail.metadata.authority": "Authority:",
- // TODO New key - Add a translation
- "audit.detail.metadata.authority": "Authority:",
+ "bitstream.download.page.back": "પાછા",
- // "audit.detail.metadata.confidence": "Confidence:",
- // TODO New key - Add a translation
- "audit.detail.metadata.confidence": "Confidence:",
+ "bitstream.edit.authorizations.link": "બિટસ્ટ્રીમની પોલિસી સંપાદિત કરો",
- // "audit.detail.metadata.place": "Place:",
- // TODO New key - Add a translation
- "audit.detail.metadata.place": "Place:",
+ "bitstream.edit.authorizations.title": "બિટસ્ટ્રીમની પોલિસી સંપાદિત કરો",
- // "audit.detail.metadata.action": "Action:",
- // TODO New key - Add a translation
- "audit.detail.metadata.action": "Action:",
+ "bitstream.edit.return": "પાછા",
- // "audit.detail.metadata.checksum": "Checksum:",
- // TODO New key - Add a translation
- "audit.detail.metadata.checksum": "Checksum:",
+ "bitstream.edit.bitstream": "બિટસ્ટ્રીમ: ",
- // "audit.overview.title": "All Audit Logs",
- // TODO New key - Add a translation
- "audit.overview.title": "All Audit Logs",
+ "bitstream.edit.form.description.hint": "વૈકલ્પિક રીતે, ફાઇલનું સંક્ષિપ્ત વર્ણન પ્રદાન કરો, ઉદાહરણ તરીકે \"મુખ્ય લેખ\" અથવા \"પ્રયોગ ડેટા રીડિંગ્સ\".",
- // "audit.overview.table.id": "Audit ID",
- // TODO New key - Add a translation
- "audit.overview.table.id": "Audit ID",
-
- // "audit.overview.table.objectUUID": "Object ID",
- // TODO New key - Add a translation
- "audit.overview.table.objectUUID": "Object ID",
-
- // "audit.overview.table.objectType": "Object Type",
- // TODO New key - Add a translation
- "audit.overview.table.objectType": "Object Type",
-
- // "audit.overview.table.subjectUUID": "Subject ID",
- // TODO New key - Add a translation
- "audit.overview.table.subjectUUID": "Subject ID",
-
- // "audit.overview.table.subjectType": "Subject Type",
- // TODO New key - Add a translation
- "audit.overview.table.subjectType": "Subject Type",
-
- // "audit.overview.table.entityType": "Audit Type",
- // TODO New key - Add a translation
- "audit.overview.table.entityType": "Audit Type",
-
- // "audit.overview.table.eperson": "EPerson",
- // TODO New key - Add a translation
- "audit.overview.table.eperson": "EPerson",
-
- // "audit.overview.table.other": "Object",
- // TODO New key - Add a translation
- "audit.overview.table.other": "Object",
-
- // "audit.overview.table.timestamp": "Time (UTC)",
- // TODO New key - Add a translation
- "audit.overview.table.timestamp": "Time (UTC)",
-
- // "audit.overview.breadcrumbs": "Audit Logs",
- // TODO New key - Add a translation
- "audit.overview.breadcrumbs": "Audit Logs",
-
- // "audit.object.back": "Back",
- // TODO New key - Add a translation
- "audit.object.back": "Back",
-
- // "audit.object.breadcrumbs": "Object Audit Logs",
- // TODO New key - Add a translation
- "audit.object.breadcrumbs": "Object Audit Logs",
-
- // "audit.object.overview.title": "Object Audit Logs",
- // TODO New key - Add a translation
- "audit.object.overview.title": "Object Audit Logs",
-
- // "audit.object.logs.label": "Logs for object: ",
- // TODO New key - Add a translation
- "audit.object.logs.label": "Logs for object: ",
-
- // "audit.object.overview.disabled.message": "Audit feature is currently disabled",
- // TODO New key - Add a translation
- "audit.object.overview.disabled.message": "Audit feature is currently disabled",
-
- // "auth.errors.invalid-user": "Invalid email address or password.",
- "auth.errors.invalid-user": "અમાન્ય ઇમેઇલ સરનામું અથવા પાસવર્ડ.",
-
- // "auth.messages.expired": "Your session has expired. Please log in again.",
- "auth.messages.expired": "તમારો સત્ર સમાપ્ત થયો છે. કૃપા કરીને ફરી લૉગ ઇન કરો.",
-
- // "auth.messages.token-refresh-failed": "Refreshing your session token failed. Please log in again.",
- "auth.messages.token-refresh-failed": "તમારા સત્ર ટોકનને રિફ્રેશ કરવામાં નિષ્ફળ. કૃપા કરીને ફરી લૉગ ઇન કરો.",
-
- // "bitstream.download.page": "Now downloading {{bitstream}}...",
- "bitstream.download.page": "હવે {{bitstream}} ડાઉનલોડ કરી રહ્યા છે...",
-
- // "bitstream.download.page.back": "Back",
- "bitstream.download.page.back": "પાછા",
-
- // "bitstream.edit.authorizations.link": "Edit bitstream's Policies",
- "bitstream.edit.authorizations.link": "બિટસ્ટ્રીમની પોલિસી સંપાદિત કરો",
-
- // "bitstream.edit.authorizations.title": "Edit bitstream's Policies",
- "bitstream.edit.authorizations.title": "બિટસ્ટ્રીમની પોલિસી સંપાદિત કરો",
-
- // "bitstream.edit.return": "Back",
- "bitstream.edit.return": "પાછા",
-
- // "bitstream.edit.bitstream": "Bitstream: ",
- // TODO New key - Add a translation
- "bitstream.edit.bitstream": "Bitstream: ",
-
- // "bitstream.edit.form.description.hint": "Optionally, provide a brief description of the file, for example \"Main article\" or \"Experiment data readings\".",
- "bitstream.edit.form.description.hint": "વૈકલ્પિક રીતે, ફાઇલનું સંક્ષિપ્ત વર્ણન પ્રદાન કરો, ઉદાહરણ તરીકે \"મુખ્ય લેખ\" અથવા \"પ્રયોગ ડેટા રીડિંગ્સ\".",
-
- // "bitstream.edit.form.description.label": "Description",
"bitstream.edit.form.description.label": "વર્ણન",
- // "bitstream.edit.form.embargo.hint": "The first day from which access is allowed. This date cannot be modified on this form. To set an embargo date for a bitstream, go to the Item Status tab, click Authorizations..., create or edit the bitstream's READ policy, and set the Start Date as desired.",
"bitstream.edit.form.embargo.hint": "પ્રવેશની મંજૂરી આપવામાં આવેલી પ્રથમ તારીખ. આ તારીખને આ ફોર્મ પર ફેરફાર કરી શકાતી નથી. બિટસ્ટ્રીમ માટે એમ્બાર્ગો તારીખ સેટ કરવા માટે, આઇટમ સ્ટેટસ ટેબ પર જાઓ, અધિકૃતતા... ક્લિક કરો, બિટસ્ટ્રીમની READ પોલિસી બનાવો અથવા સંપાદિત કરો, અને ઇચ્છિત પ્રારંભ તારીખ સેટ કરો.",
- // "bitstream.edit.form.embargo.label": "Embargo until specific date",
"bitstream.edit.form.embargo.label": "વિશિષ્ટ તારીખ સુધી એમ્બાર્ગો",
- // "bitstream.edit.form.fileName.hint": "Change the filename for the bitstream. Note that this will change the display bitstream URL, but old links will still resolve as long as the sequence ID does not change.",
"bitstream.edit.form.fileName.hint": "બિટસ્ટ્રીમ માટે ફાઇલનું નામ બદલો. નોંધો કે આ બિટસ્ટ્રીમ URLને પ્રદર્શિત કરશે, પરંતુ જૂના લિંક્સ હજી પણ ઉકેલશે જો ક્રમ ID બદલાતું નથી.",
- // "bitstream.edit.form.fileName.label": "Filename",
"bitstream.edit.form.fileName.label": "ફાઇલનું નામ",
- // "bitstream.edit.form.newFormat.label": "Describe new format",
"bitstream.edit.form.newFormat.label": "નવું ફોર્મેટ વર્ણવો",
- // "bitstream.edit.form.newFormat.hint": "The application you used to create the file, and the version number (for example, \"ACMESoft SuperApp version 1.5\").",
"bitstream.edit.form.newFormat.hint": "ફાઇલ બનાવવા માટે તમે જે એપ્લિકેશનનો ઉપયોગ કર્યો છે, અને સંસ્કરણ નંબર (ઉદાહરણ તરીકે, \"ACMESoft SuperApp version 1.5\").",
- // "bitstream.edit.form.primaryBitstream.label": "Primary File",
"bitstream.edit.form.primaryBitstream.label": "પ્રાથમિક ફાઇલ",
- // "bitstream.edit.form.selectedFormat.hint": "If the format is not in the above list, select \"format not in list\" above and describe it under \"Describe new format\".",
"bitstream.edit.form.selectedFormat.hint": "જો ફોર્મેટ ઉપરની યાદીમાં નથી, ઉપર \"યાદીમાં ફોર્મેટ નથી\" પસંદ કરો અને \"નવું ફોર્મેટ વર્ણવો\" હેઠળ તેને વર્ણવો.",
- // "bitstream.edit.form.selectedFormat.label": "Selected Format",
"bitstream.edit.form.selectedFormat.label": "પસંદ કરેલ ફોર્મેટ",
- // "bitstream.edit.form.selectedFormat.unknown": "Format not in list",
"bitstream.edit.form.selectedFormat.unknown": "યાદીમાં ફોર્મેટ નથી",
- // "bitstream.edit.notifications.error.format.title": "An error occurred saving the bitstream's format",
"bitstream.edit.notifications.error.format.title": "બિટસ્ટ્રીમના ફોર્મેટને સાચવવામાં ભૂલ આવી",
- // "bitstream.edit.notifications.error.primaryBitstream.title": "An error occurred saving the primary bitstream",
"bitstream.edit.notifications.error.primaryBitstream.title": "પ્રાથમિક બિટસ્ટ્રીમને સાચવવામાં ભૂલ આવી",
- // "bitstream.edit.form.iiifLabel.label": "IIIF Label",
"bitstream.edit.form.iiifLabel.label": "IIIF લેબલ",
- // "bitstream.edit.form.iiifLabel.hint": "Canvas label for this image. If not provided default label will be used.",
"bitstream.edit.form.iiifLabel.hint": "આ છબી માટે કેનવાસ લેબલ. જો પ્રદાન ન કરવામાં આવે તો ડિફોલ્ટ લેબલનો ઉપયોગ કરવામાં આવશે.",
- // "bitstream.edit.form.iiifToc.label": "IIIF Table of Contents",
"bitstream.edit.form.iiifToc.label": "IIIF ટેબલ ઓફ કન્ટેન્ટ્સ",
- // "bitstream.edit.form.iiifToc.hint": "Adding text here makes this the start of a new table of contents range.",
"bitstream.edit.form.iiifToc.hint": "અહીં ટેક્સ્ટ ઉમેરવાથી આ નવું ટેબલ ઓફ કન્ટેન્ટ્સ રેન્જનું પ્રારંભ બને છે.",
- // "bitstream.edit.form.iiifWidth.label": "IIIF Canvas Width",
"bitstream.edit.form.iiifWidth.label": "IIIF કેનવાસ પહોળાઈ",
- // "bitstream.edit.form.iiifWidth.hint": "The canvas width should usually match the image width.",
"bitstream.edit.form.iiifWidth.hint": "કેનવાસની પહોળાઈ સામાન્ય રીતે છબીની પહોળાઈ સાથે મેળ ખાતી હોવી જોઈએ.",
- // "bitstream.edit.form.iiifHeight.label": "IIIF Canvas Height",
"bitstream.edit.form.iiifHeight.label": "IIIF કેનવાસ ઊંચાઈ",
- // "bitstream.edit.form.iiifHeight.hint": "The canvas height should usually match the image height.",
"bitstream.edit.form.iiifHeight.hint": "કેનવાસની ઊંચાઈ સામાન્ય રીતે છબીની ઊંચાઈ સાથે મેળ ખાતી હોવી જોઈએ.",
- // "bitstream.edit.notifications.saved.content": "Your changes to this bitstream were saved.",
"bitstream.edit.notifications.saved.content": "આ બિટસ્ટ્રીમ માટેના તમારા ફેરફારો સાચવવામાં આવ્યા.",
- // "bitstream.edit.notifications.saved.title": "Bitstream saved",
"bitstream.edit.notifications.saved.title": "બિટસ્ટ્રીમ સાચવ્યું",
- // "bitstream.edit.title": "Edit bitstream",
"bitstream.edit.title": "બિટસ્ટ્રીમ સંપાદિત કરો",
- // "bitstream-request-a-copy.alert.canDownload1": "You already have access to this file. If you want to download the file, click ",
"bitstream-request-a-copy.alert.canDownload1": "તમને આ ફાઇલ ઍક્સેસ કરવાની મંજૂરી છે. જો તમે ફાઇલ ડાઉનલોડ કરવા માંગો છો, તો ક્લિક કરો ",
- // "bitstream-request-a-copy.alert.canDownload2": "here",
"bitstream-request-a-copy.alert.canDownload2": "અહીં",
- // "bitstream-request-a-copy.header": "Request a copy of the file",
"bitstream-request-a-copy.header": "ફાઇલની નકલ માટે વિનંતી કરો",
- // "bitstream-request-a-copy.intro": "Enter the following information to request a copy for the following item: ",
- // TODO New key - Add a translation
- "bitstream-request-a-copy.intro": "Enter the following information to request a copy for the following item: ",
+ "bitstream-request-a-copy.intro": "નીચેની માહિતી દાખલ કરો જેથી નીચેના આઇટમ માટે નકલની વિનંતી કરી શકાય: ",
- // "bitstream-request-a-copy.intro.bitstream.one": "Requesting the following file: ",
- // TODO New key - Add a translation
- "bitstream-request-a-copy.intro.bitstream.one": "Requesting the following file: ",
+ "bitstream-request-a-copy.intro.bitstream.one": "નીચેની ફાઇલ માટે વિનંતી કરી રહ્યા છે: ",
- // "bitstream-request-a-copy.intro.bitstream.all": "Requesting all files. ",
"bitstream-request-a-copy.intro.bitstream.all": "બધી ફાઇલો માટે વિનંતી કરી રહ્યા છે. ",
- // "bitstream-request-a-copy.name.label": "Name *",
"bitstream-request-a-copy.name.label": "નામ *",
- // "bitstream-request-a-copy.name.error": "The name is required",
"bitstream-request-a-copy.name.error": "નામ જરૂરી છે",
- // "bitstream-request-a-copy.email.label": "Your email address *",
"bitstream-request-a-copy.email.label": "તમારું ઇમેઇલ સરનામું *",
- // "bitstream-request-a-copy.email.hint": "This email address is used for sending the file.",
"bitstream-request-a-copy.email.hint": "આ ઇમેઇલ સરનામું ફાઇલ મોકલવા માટે વપરાય છે.",
- // "bitstream-request-a-copy.email.error": "Please enter a valid email address.",
"bitstream-request-a-copy.email.error": "કૃપા કરીને માન્ય ઇમેઇલ સરનામું દાખલ કરો.",
- // "bitstream-request-a-copy.allfiles.label": "Files",
"bitstream-request-a-copy.allfiles.label": "ફાઇલો",
- // "bitstream-request-a-copy.files-all-false.label": "Only the requested file",
"bitstream-request-a-copy.files-all-false.label": "માત્ર વિનંતી કરેલ ફાઇલ",
- // "bitstream-request-a-copy.files-all-true.label": "All files (of this item) in restricted access",
"bitstream-request-a-copy.files-all-true.label": "આઇટમની બધી ફાઇલો (પ્રતિબંધિત ઍક્સેસમાં)",
- // "bitstream-request-a-copy.message.label": "Message",
"bitstream-request-a-copy.message.label": "સંદેશ",
- // "bitstream-request-a-copy.return": "Back",
"bitstream-request-a-copy.return": "પાછા",
- // "bitstream-request-a-copy.submit": "Request copy",
"bitstream-request-a-copy.submit": "નકલ માટે વિનંતી કરો",
- // "bitstream-request-a-copy.submit.success": "The item request was submitted successfully.",
"bitstream-request-a-copy.submit.success": "આઇટમ વિનંતી સફળતાપૂર્વક સબમિટ કરવામાં આવી.",
- // "bitstream-request-a-copy.submit.error": "Something went wrong with submitting the item request.",
"bitstream-request-a-copy.submit.error": "આઇટમ વિનંતી સબમિટ કરતી વખતે કંઈક ખોટું થયું.",
- // "bitstream-request-a-copy.access-by-token.warning": "You are viewing this item with the secure access link provided to you by the author or repository staff. It is important not to share this link to unauthorised users.",
"bitstream-request-a-copy.access-by-token.warning": "તમે આ આઇટમને સુરક્ષિત ઍક્સેસ લિંક દ્વારા જોઈ રહ્યા છો જે તમને લેખક અથવા રિપોઝિટરી સ્ટાફ દ્વારા પ્રદાન કરવામાં આવી છે. આ લિંકને અનધિકૃત વપરાશકર્તાઓ સાથે શેર ન કરવું મહત્વપૂર્ણ છે.",
- // "bitstream-request-a-copy.access-by-token.expiry-label": "Access provided by this link will expire on",
"bitstream-request-a-copy.access-by-token.expiry-label": "આ લિંક દ્વારા પ્રદાન કરેલ ઍક્સેસ સમાપ્ત થશે",
- // "bitstream-request-a-copy.access-by-token.expired": "Access provided by this link is no longer possible. Access expired on",
"bitstream-request-a-copy.access-by-token.expired": "આ લિંક દ્વારા પ્રદાન કરેલ ઍક્સેસ હવે શક્ય નથી. ઍક્સેસ સમાપ્ત થઈ ગઈ છે",
- // "bitstream-request-a-copy.access-by-token.not-granted": "Access provided by this link is not possible. Access has either not been granted, or has been revoked.",
"bitstream-request-a-copy.access-by-token.not-granted": "આ લિંક દ્વારા પ્રદાન કરેલ ઍક્સેસ શક્ય નથી. ઍક્સેસ είτε મંજુર કરવામાં આવી નથી, είτε રદ કરવામાં આવી છે.",
- // "bitstream-request-a-copy.access-by-token.re-request": "Follow restricted download links to submit a new request for access.",
"bitstream-request-a-copy.access-by-token.re-request": "ઍક્સેસ માટે નવી વિનંતી સબમિટ કરવા માટે પ્રતિબંધિત ડાઉનલોડ લિંક્સને અનુસરો.",
- // "bitstream-request-a-copy.access-by-token.alt-text": "Access to this item is provided by a secure token",
"bitstream-request-a-copy.access-by-token.alt-text": "આ આઇટમ માટે ઍક્સેસ સુરક્ષિત ટોકન દ્વારા પ્રદાન કરવામાં આવે છે",
- // "browse.back.all-results": "All browse results",
"browse.back.all-results": "બધા બ્રાઉઝ પરિણામો",
- // "browse.comcol.by.author": "By Author",
"browse.comcol.by.author": "લેખક દ્વારા",
- // "browse.comcol.by.dateissued": "By Issue Date",
"browse.comcol.by.dateissued": "પ્રકાશન તારીખ દ્વારા",
- // "browse.comcol.by.subject": "By Subject",
"browse.comcol.by.subject": "વિષય દ્વારા",
- // "browse.comcol.by.srsc": "By Subject Category",
"browse.comcol.by.srsc": "વિષય શ્રેણી દ્વારા",
- // "browse.comcol.by.nsi": "By Norwegian Science Index",
"browse.comcol.by.nsi": "નોર્વેજિયન સાયન્સ ઇન્ડેક્સ દ્વારા",
- // "browse.comcol.by.title": "By Title",
"browse.comcol.by.title": "શીર્ષક દ્વારા",
- // "browse.comcol.head": "Browse",
"browse.comcol.head": "બ્રાઉઝ",
- // "browse.empty": "No items to show.",
"browse.empty": "બતાવવા માટે કોઈ આઇટમ્સ નથી.",
- // "browse.metadata.author": "Author",
"browse.metadata.author": "લેખક",
- // "browse.metadata.dateissued": "Issue Date",
"browse.metadata.dateissued": "પ્રકાશન તારીખ",
- // "browse.metadata.subject": "Subject",
"browse.metadata.subject": "વિષય",
- // "browse.metadata.title": "Title",
"browse.metadata.title": "શીર્ષક",
- // "browse.metadata.srsc": "Subject Category",
"browse.metadata.srsc": "વિષય શ્રેણી",
- // "browse.metadata.author.breadcrumbs": "Browse by Author",
"browse.metadata.author.breadcrumbs": "લેખક દ્વારા બ્રાઉઝ કરો",
- // "browse.metadata.dateissued.breadcrumbs": "Browse by Date",
"browse.metadata.dateissued.breadcrumbs": "તારીખ દ્વારા બ્રાઉઝ કરો",
- // "browse.metadata.subject.breadcrumbs": "Browse by Subject",
"browse.metadata.subject.breadcrumbs": "વિષય દ્વારા બ્રાઉઝ કરો",
- // "browse.metadata.srsc.breadcrumbs": "Browse by Subject Category",
"browse.metadata.srsc.breadcrumbs": "વિષય શ્રેણી દ્વારા બ્રાઉઝ કરો",
- // "browse.metadata.srsc.tree.description": "Select a subject to add as search filter",
"browse.metadata.srsc.tree.description": "શોધ ફિલ્ટર તરીકે ઉમેરવા માટે વિષય પસંદ કરો",
- // "browse.metadata.nsi.breadcrumbs": "Browse by Norwegian Science Index",
"browse.metadata.nsi.breadcrumbs": "નોર્વેજિયન સાયન્સ ઇન્ડેક્સ દ્વારા બ્રાઉઝ કરો",
- // "browse.metadata.nsi.tree.description": "Select an index to add as search filter",
"browse.metadata.nsi.tree.description": "શોધ ફિલ્ટર તરીકે ઉમેરવા માટે ઇન્ડેક્સ પસંદ કરો",
- // "browse.metadata.title.breadcrumbs": "Browse by Title",
"browse.metadata.title.breadcrumbs": "શીર્ષક દ્વારા બ્રાઉઝ કરો",
- // "browse.metadata.map": "Browse by Geolocation",
"browse.metadata.map": "ભૌગોલિક સ્થાન દ્વારા બ્રાઉઝ કરો",
- // "browse.metadata.map.breadcrumbs": "Browse by Geolocation",
"browse.metadata.map.breadcrumbs": "ભૌગોલિક સ્થાન દ્વારા બ્રાઉઝ કરો",
- // "browse.metadata.map.count.items": "items",
"browse.metadata.map.count.items": "આઇટમ્સ",
- // "pagination.next.button": "Next",
"pagination.next.button": "આગલું",
- // "pagination.previous.button": "Previous",
"pagination.previous.button": "પાછલું",
- // "pagination.next.button.disabled.tooltip": "No more pages of results",
"pagination.next.button.disabled.tooltip": "કોઈ વધુ પૃષ્ઠો નથી",
- // "pagination.page-number-bar": "Control bar for page navigation, relative to element with ID: ",
- // TODO New key - Add a translation
- "pagination.page-number-bar": "Control bar for page navigation, relative to element with ID: ",
+ "pagination.page-number-bar": "પૃષ્ઠ નેવિગેશન માટે કંટ્રોલ બાર, ID સાથેના તત્વ માટે: ",
- // "browse.startsWith": ", starting with {{ startsWith }}",
"browse.startsWith": ", {{ startsWith }} થી શરૂ થાય છે",
- // "browse.startsWith.choose_start": "(Choose start)",
"browse.startsWith.choose_start": "(શરૂઆત પસંદ કરો)",
- // "browse.startsWith.choose_year": "(Choose year)",
"browse.startsWith.choose_year": "(વર્ષ પસંદ કરો)",
- // "browse.startsWith.choose_year.label": "Choose the issue year",
"browse.startsWith.choose_year.label": "પ્રકાશન વર્ષ પસંદ કરો",
- // "browse.startsWith.jump": "Filter results by year or month",
"browse.startsWith.jump": "વર્ષ અથવા મહિના દ્વારા પરિણામો ફિલ્ટર કરો",
- // "browse.startsWith.months.april": "April",
"browse.startsWith.months.april": "એપ્રિલ",
- // "browse.startsWith.months.august": "August",
"browse.startsWith.months.august": "ઑગસ્ટ",
- // "browse.startsWith.months.december": "December",
"browse.startsWith.months.december": "ડિસેમ્બર",
- // "browse.startsWith.months.february": "February",
"browse.startsWith.months.february": "ફેબ્રુઆરી",
- // "browse.startsWith.months.january": "January",
"browse.startsWith.months.january": "જાન્યુઆરી",
- // "browse.startsWith.months.july": "July",
"browse.startsWith.months.july": "જુલાઈ",
- // "browse.startsWith.months.june": "June",
"browse.startsWith.months.june": "જૂન",
- // "browse.startsWith.months.march": "March",
"browse.startsWith.months.march": "માર્ચ",
- // "browse.startsWith.months.may": "May",
"browse.startsWith.months.may": "મે",
- // "browse.startsWith.months.none": "(Choose month)",
"browse.startsWith.months.none": "(મહિનો પસંદ કરો)",
- // "browse.startsWith.months.none.label": "Choose the issue month",
"browse.startsWith.months.none.label": "પ્રકાશન મહિનો પસંદ કરો",
- // "browse.startsWith.months.november": "November",
"browse.startsWith.months.november": "નવેમ્બર",
- // "browse.startsWith.months.october": "October",
"browse.startsWith.months.october": "ઑક્ટોબર",
- // "browse.startsWith.months.september": "September",
"browse.startsWith.months.september": "સપ્ટેમ્બર",
- // "browse.startsWith.submit": "Browse",
"browse.startsWith.submit": "બ્રાઉઝ",
- // "browse.startsWith.type_date": "Filter results by date",
"browse.startsWith.type_date": "તારીખ દ્વારા પરિણામો ફિલ્ટર કરો",
- // "browse.startsWith.type_date.label": "Or type in a date (year-month) and click on the Browse button",
"browse.startsWith.type_date.label": "અથવા તારીખ (વર્ષ-મહિનો) દાખલ કરો અને બ્રાઉઝ બટન પર ક્લિક કરો",
- // "browse.startsWith.type_text": "Filter results by typing the first few letters",
"browse.startsWith.type_text": "પ્રથમ થોડા અક્ષરો ટાઇપ કરીને પરિણામો ફિલ્ટર કરો",
- // "browse.startsWith.input": "Filter",
"browse.startsWith.input": "ફિલ્ટર",
- // "browse.taxonomy.button": "Browse",
"browse.taxonomy.button": "બ્રાઉઝ",
- // "browse.title": "Browsing by {{ field }}{{ startsWith }} {{ value }}",
"browse.title": "{{ field }}{{ startsWith }} {{ value }} દ્વારા બ્રાઉઝિંગ",
- // "browse.taxonomy.show_next_results": "Show next results",
- // TODO New key - Add a translation
- "browse.taxonomy.show_next_results": "Show next results",
-
- // "browse.taxonomy.show_previous_results": "Show previous results",
- // TODO New key - Add a translation
- "browse.taxonomy.show_previous_results": "Show previous results",
-
- // "browse.title.page": "Browsing by {{ field }} {{ value }}",
"browse.title.page": "{{ field }} {{ value }} દ્વારા બ્રાઉઝિંગ",
- // "search.browse.item-back": "Back to Results",
"search.browse.item-back": "પરિણામો પર પાછા જાઓ",
- // "chips.remove": "Remove chip",
"chips.remove": "ચિપ દૂર કરો",
- // "claimed-approved-search-result-list-element.title": "Approved",
"claimed-approved-search-result-list-element.title": "મંજૂર",
- // "claimed-declined-search-result-list-element.title": "Rejected, sent back to submitter",
"claimed-declined-search-result-list-element.title": "નકારવામાં આવ્યું, સબમિટરને પાછું મોકલવામાં આવ્યું",
- // "claimed-declined-task-search-result-list-element.title": "Declined, sent back to Review Manager's workflow",
"claimed-declined-task-search-result-list-element.title": "નકારવામાં આવ્યું, રિવ્યુ મેનેજરના વર્કફ્લો પર પાછું મોકલવામાં આવ્યું",
- // "collection.create.breadcrumbs": "Create collection",
"collection.create.breadcrumbs": "સંગ્રહ બનાવો",
- // "collection.browse.logo": "Browse for a collection logo",
"collection.browse.logo": "સંગ્રહ લોગો માટે બ્રાઉઝ કરો",
- // "collection.create.head": "Create a Collection",
"collection.create.head": "સંગ્રહ બનાવો",
- // "collection.create.notifications.success": "Successfully created the collection",
"collection.create.notifications.success": "સંગ્રહ સફળતાપૂર્વક બનાવવામાં આવ્યો",
- // "collection.create.sub-head": "Create a Collection for Community {{ parent }}",
"collection.create.sub-head": "સમુદાય {{ parent }} માટે સંગ્રહ બનાવો",
- // "collection.curate.header": "Curate Collection: {{collection}}",
- // TODO New key - Add a translation
- "collection.curate.header": "Curate Collection: {{collection}}",
+ "collection.curate.header": "સંગ્રહ ક્યુરેટ કરો: {{collection}}",
- // "collection.delete.cancel": "Cancel",
"collection.delete.cancel": "રદ કરો",
- // "collection.delete.confirm": "Confirm",
"collection.delete.confirm": "ખાતરી કરો",
- // "collection.delete.processing": "Deleting",
"collection.delete.processing": "કાઢી રહ્યા છે",
- // "collection.delete.head": "Delete Collection",
"collection.delete.head": "સંગ્રહ કાઢી નાખો",
- // "collection.delete.notification.fail": "Collection could not be deleted",
"collection.delete.notification.fail": "સંગ્રહ કાઢી શકાતો નથી",
- // "collection.delete.notification.success": "Successfully started a process to delete this collection",
"collection.delete.notification.success": "સંગ્રહ સફળતાપૂર્વક કાઢી નાખ્યો",
- // "collection.delete.text": "Are you sure you want to delete collection \"{{ dso }}\"",
"collection.delete.text": "શું તમે ખરેખર સંગ્રહ \\\"{{ dso }}\\\" કાઢી નાખવા માંગો છો",
- // "collection.edit.delete": "Delete this collection",
"collection.edit.delete": "આ સંગ્રહ કાઢી નાખો",
- // "collection.edit.head": "Edit Collection",
"collection.edit.head": "સંગ્રહ સંપાદિત કરો",
- // "collection.edit.breadcrumbs": "Edit Collection",
"collection.edit.breadcrumbs": "સંગ્રહ સંપાદિત કરો",
- // "collection.edit.tabs.mapper.head": "Item Mapper",
"collection.edit.tabs.mapper.head": "આઇટમ મેપર",
- // "collection.edit.tabs.item-mapper.title": "Collection Edit - Item Mapper",
"collection.edit.tabs.item-mapper.title": "સંગ્રહ સંપાદન - આઇટમ મેપર",
- // "collection.edit.item-mapper.cancel": "Cancel",
"collection.edit.item-mapper.cancel": "રદ કરો",
- // "collection.edit.item-mapper.collection": "Collection: \"{{name}}\"",
- // TODO New key - Add a translation
- "collection.edit.item-mapper.collection": "Collection: \"{{name}}\"",
+ "collection.edit.item-mapper.collection": "સંગ્રહ: \\\"{{name}}\\\"",
- // "collection.edit.item-mapper.confirm": "Map selected items",
"collection.edit.item-mapper.confirm": "પસંદ કરેલ આઇટમ્સ મેપ કરો",
- // "collection.edit.item-mapper.description": "This is the item mapper tool that allows collection administrators to map items from other collections into this collection. You can search for items from other collections and map them, or browse the list of currently mapped items.",
"collection.edit.item-mapper.description": "આ આઇટમ મેપર ટૂલ છે જે સંગ્રહ વહીવટકર્તાઓને આ સંગ્રહમાં અન્ય સંગ્રહોમાંથી આઇટમ્સ મેપ કરવાની મંજૂરી આપે છે. તમે અન્ય સંગ્રહોમાંથી આઇટમ્સ શોધી શકો છો અને તેમને મેપ કરી શકો છો, અથવા હાલમાં મેપ કરેલ આઇટમ્સની યાદી બ્રાઉઝ કરી શકો છો.",
- // "collection.edit.item-mapper.head": "Item Mapper - Map Items from Other Collections",
"collection.edit.item-mapper.head": "આઇટમ મેપર - અન્ય સંગ્રહોમાંથી આઇટમ્સ મેપ કરો",
- // "collection.edit.item-mapper.no-search": "Please enter a query to search",
"collection.edit.item-mapper.no-search": "કૃપા કરીને શોધ માટે ક્વેરી દાખલ કરો",
- // "collection.edit.item-mapper.notifications.map.error.content": "Errors occurred for mapping of {{amount}} items.",
"collection.edit.item-mapper.notifications.map.error.content": "{{amount}} આઇટમ્સના મેપિંગ માટે ભૂલો આવી.",
- // "collection.edit.item-mapper.notifications.map.error.head": "Mapping errors",
"collection.edit.item-mapper.notifications.map.error.head": "મેપિંગ ભૂલો",
- // "collection.edit.item-mapper.notifications.map.success.content": "Successfully mapped {{amount}} items.",
"collection.edit.item-mapper.notifications.map.success.content": "{{amount}} આઇટમ્સ સફળતાપૂર્વક મેપ કરવામાં આવ્યા.",
- // "collection.edit.item-mapper.notifications.map.success.head": "Mapping completed",
"collection.edit.item-mapper.notifications.map.success.head": "મેપિંગ પૂર્ણ",
- // "collection.edit.item-mapper.notifications.unmap.error.content": "Errors occurred for removing the mappings of {{amount}} items.",
"collection.edit.item-mapper.notifications.unmap.error.content": "{{amount}} આઇટમ્સના મેપિંગ દૂર કરતી વખતે ભૂલો આવી.",
- // "collection.edit.item-mapper.notifications.unmap.error.head": "Remove mapping errors",
"collection.edit.item-mapper.notifications.unmap.error.head": "મેપિંગ દૂર કરવાની ભૂલો",
- // "collection.edit.item-mapper.notifications.unmap.success.content": "Successfully removed the mappings of {{amount}} items.",
"collection.edit.item-mapper.notifications.unmap.success.content": "{{amount}} આઇટમ્સના મેપિંગ સફળતાપૂર્વક દૂર કરવામાં આવ્યા.",
- // "collection.edit.item-mapper.notifications.unmap.success.head": "Remove mapping completed",
"collection.edit.item-mapper.notifications.unmap.success.head": "મેપિંગ દૂર કરવું પૂર્ણ",
- // "collection.edit.item-mapper.remove": "Remove selected item mappings",
"collection.edit.item-mapper.remove": "પસંદ કરેલ આઇટમ મેપિંગ્સ દૂર કરો",
- // "collection.edit.item-mapper.search-form.placeholder": "Search items...",
"collection.edit.item-mapper.search-form.placeholder": "આઇટમ્સ શોધો...",
- // "collection.edit.item-mapper.tabs.browse": "Browse mapped items",
"collection.edit.item-mapper.tabs.browse": "મેપ કરેલ આઇટમ્સ બ્રાઉઝ કરો",
- // "collection.edit.item-mapper.tabs.map": "Map new items",
"collection.edit.item-mapper.tabs.map": "નવા આઇટમ્સ મેપ કરો",
- // "collection.edit.logo.delete.title": "Delete logo",
"collection.edit.logo.delete.title": "લોગો કાઢી નાખો",
- // "collection.edit.logo.delete-undo.title": "Undo delete",
"collection.edit.logo.delete-undo.title": "કાઢી નાખવું રદ કરો",
- // "collection.edit.logo.label": "Collection logo",
"collection.edit.logo.label": "સંગ્રહ લોગો",
- // "collection.edit.logo.notifications.add.error": "Uploading collection logo failed. Please verify the content before retrying.",
"collection.edit.logo.notifications.add.error": "સંગ્રહ લોગો અપલોડ કરવામાં નિષ્ફળ. કૃપા કરીને સામગ્રીને ચકાસો અને ફરી પ્રયાસ કરો.",
- // "collection.edit.logo.notifications.add.success": "Uploading collection logo successful.",
"collection.edit.logo.notifications.add.success": "સંગ્રહ લોગો સફળતાપૂર્વક અપલોડ થયો.",
- // "collection.edit.logo.notifications.delete.success.title": "Logo deleted",
"collection.edit.logo.notifications.delete.success.title": "લોગો કાઢી નાખ્યો",
- // "collection.edit.logo.notifications.delete.success.content": "Successfully deleted the collection's logo",
"collection.edit.logo.notifications.delete.success.content": "સંગ્રહનો લોગો સફળતાપૂર્વક કાઢી નાખ્યો",
- // "collection.edit.logo.notifications.delete.error.title": "Error deleting logo",
"collection.edit.logo.notifications.delete.error.title": "લોગો કાઢી નાખવામાં ભૂલ",
- // "collection.edit.logo.upload": "Drop a collection logo to upload",
"collection.edit.logo.upload": "અપલોડ કરવા માટે સંગ્રહ લોગો ડ્રોપ કરો",
- // "collection.edit.notifications.success": "Successfully edited the collection",
"collection.edit.notifications.success": "સંગ્રહ સફળતાપૂર્વક સંપાદિત કર્યો",
- // "collection.edit.return": "Back",
"collection.edit.return": "પાછા",
- // "collection.edit.tabs.access-control.head": "Access Control",
"collection.edit.tabs.access-control.head": "ઍક્સેસ કંટ્રોલ",
- // "collection.edit.tabs.access-control.title": "Collection Edit - Access Control",
"collection.edit.tabs.access-control.title": "સંગ્રહ સંપાદન - ઍક્સેસ કંટ્રોલ",
- // "collection.edit.tabs.curate.head": "Curate",
"collection.edit.tabs.curate.head": "ક્યુરેટ",
- // "collection.edit.tabs.curate.title": "Collection Edit - Curate",
"collection.edit.tabs.curate.title": "સંગ્રહ સંપાદન - ક્યુરેટ",
- // "collection.edit.tabs.authorizations.head": "Authorizations",
"collection.edit.tabs.authorizations.head": "અધિકૃતતા",
- // "collection.edit.tabs.authorizations.title": "Collection Edit - Authorizations",
"collection.edit.tabs.authorizations.title": "સંગ્રહ સંપાદન - અધિકૃતતા",
- // "collection.edit.item.authorizations.load-bundle-button": "Load more bundles",
"collection.edit.item.authorizations.load-bundle-button": "વધુ બંડલ્સ લોડ કરો",
- // "collection.edit.item.authorizations.load-more-button": "Load more",
"collection.edit.item.authorizations.load-more-button": "વધુ લોડ કરો",
- // "collection.edit.item.authorizations.show-bitstreams-button": "Show bitstream policies for bundle",
"collection.edit.item.authorizations.show-bitstreams-button": "બંડલ માટે બિટસ્ટ્રીમ પોલિસી બતાવો",
- // "collection.edit.tabs.metadata.head": "Edit Metadata",
"collection.edit.tabs.metadata.head": "મેટાડેટા સંપાદિત કરો",
- // "collection.edit.tabs.metadata.title": "Collection Edit - Metadata",
"collection.edit.tabs.metadata.title": "સંગ્રહ સંપાદન - મેટાડેટા",
- // "collection.edit.tabs.roles.head": "Assign Roles",
"collection.edit.tabs.roles.head": "ભૂમિકા સોંપો",
- // "collection.edit.tabs.roles.title": "Collection Edit - Roles",
"collection.edit.tabs.roles.title": "સંગ્રહ સંપાદન - ભૂમિકા",
- // "collection.edit.tabs.source.external": "This collection harvests its content from an external source",
"collection.edit.tabs.source.external": "આ સંગ્રહ તેની સામગ્રી બાહ્ય સ્ત્રોતમાંથી હાર્વેસ્ટ કરે છે",
- // "collection.edit.tabs.source.form.errors.oaiSource.required": "You must provide a set id of the target collection.",
"collection.edit.tabs.source.form.errors.oaiSource.required": "તમારે લક્ષ્ય સંગ્રહનો સેટ id પ્રદાન કરવો જ જોઈએ.",
- // "collection.edit.tabs.source.form.harvestType": "Content being harvested",
"collection.edit.tabs.source.form.harvestType": "હાર્વેસ્ટ થતી સામગ્રી",
- // "collection.edit.tabs.source.form.head": "Configure an external source",
"collection.edit.tabs.source.form.head": "બાહ્ય સ્ત્રોત કૉન્ફિગર કરો",
- // "collection.edit.tabs.source.form.metadataConfigId": "Metadata Format",
"collection.edit.tabs.source.form.metadataConfigId": "મેટાડેટા ફોર્મેટ",
- // "collection.edit.tabs.source.form.oaiSetId": "OAI specific set id",
"collection.edit.tabs.source.form.oaiSetId": "OAI વિશિષ્ટ સેટ id",
- // "collection.edit.tabs.source.form.oaiSource": "OAI Provider",
"collection.edit.tabs.source.form.oaiSource": "OAI પ્રદાતા",
- // "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_BITSTREAMS": "Harvest metadata and bitstreams (requires ORE support)",
"collection.edit.tabs.source.form.options.harvestType.METADATA_AND_BITSTREAMS": "મેટાડેટા અને બિટસ્ટ્રીમ્સ હાર્વેસ્ટ કરો (ORE સપોર્ટ જરૂરી છે)",
- // "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_REF": "Harvest metadata and references to bitstreams (requires ORE support)",
"collection.edit.tabs.source.form.options.harvestType.METADATA_AND_REF": "મેટાડેટા અને બિટસ્ટ્રીમ્સના સંદર્ભો હાર્વેસ્ટ કરો (ORE સપોર્ટ જરૂરી છે)",
- // "collection.edit.tabs.source.form.options.harvestType.METADATA_ONLY": "Harvest metadata only",
- "collection.edit.tabs.source.form.options.harvestType.METADATA_ONLY": "મેટાડેટા માત્ર હાર્વેસ્ટ કરો",
+ "collection.edit.tabs.source.form.options.harvestType.METADATA_ONLY": "મેટાડેટા માત્ર હાર્વેસ્ટ કરો",
+
+ "collection.edit.tabs.source.head": "સામગ્રી સ્ત્રોત",
+
+ "collection.edit.tabs.source.notifications.discarded.content": "તમારા ફેરફારો રદ કરવામાં આવ્યા. તમારા ફેરફારોને ફરી સ્થાપિત કરવા માટે 'Undo' બટન પર ક્લિક કરો",
+
+ "collection.edit.tabs.source.notifications.discarded.title": "ફેરફારો રદ",
+
+ "collection.edit.tabs.source.notifications.invalid.content": "તમારા ફેરફારો સાચવવામાં આવ્યા નથી. કૃપા કરીને ખાતરી કરો કે બધા ફીલ્ડ માન્ય છે પહેલાં તમે સાચવો.",
+
+ "collection.edit.tabs.source.notifications.invalid.title": "મેટાડેટા અમાન્ય",
+
+ "collection.edit.tabs.source.notifications.saved.content": "આ સંગ્રહના સામગ્રી સ્ત્રોત માટેના તમારા ફેરફારો સાચવવામાં આવ્યા.",
+
+ "collection.edit.tabs.source.notifications.saved.title": "સામગ્રી સ્ત્રોત સાચવ્યું",
+
+ "collection.edit.tabs.source.title": "સંગ્રહ સંપાદન - સામગ્રી સ્ત્રોત",
+
+ "collection.edit.template.add-button": "ઉમેરો",
+
+ "collection.edit.template.breadcrumbs": "આઇટમ ટેમ્પલેટ",
+
+ "collection.edit.template.cancel": "રદ કરો",
+
+ "collection.edit.template.delete-button": "કાઢી નાખો",
+
+ "collection.edit.template.edit-button": "સંપાદિત કરો",
+
+ "collection.edit.template.error": "ટેમ્પલેટ આઇટમ મેળવતી વખતે ભૂલ આવી",
+
+ "collection.edit.template.head": "સંગ્રહ \\\"{{ collection }}\\\" માટે ટેમ્પલેટ આઇટમ સંપાદિત કરો",
+
+ "collection.edit.template.label": "ટેમ્પલેટ આઇટમ",
+
+ "collection.edit.template.loading": "ટેમ્પલેટ આઇટમ લોડ કરી રહ્યું છે...",
+
+ "collection.edit.template.notifications.delete.error": "આઇટમ ટેમ્પલેટ કાઢી નાખવામાં નિષ્ફળ",
+
+ "collection.edit.template.notifications.delete.success": "આઇટમ ટેમ્પલેટ સફળતાપૂર્વક કાઢી નાખ્યું",
+
+ "collection.edit.template.title": "ટેમ્પલેટ આઇટમ સંપાદિત કરો",
+
+ "collection.form.abstract": "સંક્ષિપ્ત વર્ણન",
+
+ "collection.form.description": "પરિચયાત્મક લખાણ (HTML)",
+
+ "collection.form.errors.title.required": "કૃપા કરીને સંગ્રહનું નામ દાખલ કરો",
+
+ "collection.form.license": "લાઇસન્સ",
+
+ "collection.form.provenance": "પ્રૂવનન્સ",
+
+ "collection.form.rights": "કૉપિરાઇટ લખાણ (HTML)",
+
+ "collection.form.tableofcontents": "સમાચાર (HTML)",
+
+ "collection.form.title": "નામ",
+
+ "collection.form.entityType": "સત્તા પ્રકાર",
+
+ "collection.listelement.badge": "સંગ્રહ",
+
+ "collection.logo": "સંગ્રહ લોગો",
+
+ "collection.page.browse.search.head": "શોધો",
+
+ "collection.page.edit": "આ સંગ્રહ સંપાદિત કરો",
+
+ "collection.page.handle": "આ સંગ્રહ માટે કાયમી URI",
+
+ "collection.page.license": "લાઇસન્સ",
+
+ "collection.page.news": "સમાચાર",
+
+ "collection.page.options": "વિકલ્પો",
+
+ "collection.search.breadcrumbs": "શોધો",
+
+ "collection.search.results.head": "શોધ પરિણામો",
+
+ "collection.select.confirm": "પસંદ કરેલ ખાતરી કરો",
+
+ "collection.select.empty": "બતાવવા માટે કોઈ સંગ્રહો નથી",
+
+ "collection.select.table.selected": "પસંદ કરેલ સંગ્રહો",
+
+ "collection.select.table.select": "સંગ્રહ પસંદ કરો",
+
+ "collection.select.table.deselect": "સંગ્રહ પસંદ કરેલને દૂર કરો",
+
+ "collection.select.table.title": "શીર્ષક",
+
+ "collection.source.controls.head": "હાર્વેસ્ટ કંટ્રોલ્સ",
+
+ "collection.source.controls.test.submit.error": "સેટિંગ્સની પરીક્ષણ શરૂ કરતી વખતે કંઈક ખોટું થયું",
+
+ "collection.source.controls.test.failed": "સેટિંગ્સની પરીક્ષણ સ્ક્રિપ્ટ નિષ્ફળ થઈ",
+
+ "collection.source.controls.test.completed": "સેટિંગ્સની પરીક્ષણ સ્ક્રિપ્ટ સફળતાપૂર્વક પૂર્ણ થઈ",
+
+ "collection.source.controls.test.submit": "કૉન્ફિગરેશન પરીક્ષણ",
+
+ "collection.source.controls.test.running": "કૉન્ફિગરેશન પરીક્ષણ કરી રહ્યું છે...",
+
+ "collection.source.controls.import.submit.success": "આયાત સફળતાપૂર્વક શરૂ કરવામાં આવી",
+
+ "collection.source.controls.import.submit.error": "આયાત શરૂ કરતી વખતે કંઈક ખોટું થયું",
+
+ "collection.source.controls.import.submit": "હવે આયાત કરો",
+
+ "collection.source.controls.import.running": "આયાત કરી રહ્યું છે...",
+
+ "collection.source.controls.import.failed": "આયાત દરમિયાન ભૂલ આવી",
+
+ "collection.source.controls.import.completed": "આયાત પૂર્ણ",
+
+ "collection.source.controls.reset.submit.success": "રીસેટ અને ફરી આયાત સફળતાપૂર્વક શરૂ કરવામાં આવી",
+
+ "collection.source.controls.reset.submit.error": "રીસેટ અને ફરી આયાત શરૂ કરતી વખતે કંઈક ખોટું થયું",
+
+ "bitstream-request-a-copy.submit": "નકલ માટે વિનંતી કરો",
+
+ "bitstream-request-a-copy.submit.success": "આઇટમ વિનંતી સફળતાપૂર્વક સબમિટ કરવામાં આવી.",
+
+ "bitstream-request-a-copy.submit.error": "આઇટમ વિનંતી સબમિટ કરતી વખતે કંઈક ખોટું થયું.",
+
+ "bitstream-request-a-copy.access-by-token.warning": "તમે આ આઇટમને સુરક્ષિત ઍક્સેસ લિંક દ્વારા જોઈ રહ્યા છો જે તમને લેખક અથવા રિપોઝિટરી સ્ટાફ દ્વારા પ્રદાન કરવામાં આવી છે. આ લિંકને અનધિકૃત વપરાશકર્તાઓ સાથે શેર ન કરવું મહત્વપૂર્ણ છે.",
+
+ "bitstream-request-a-copy.access-by-token.expiry-label": "આ લિંક દ્વારા પ્રદાન કરેલ ઍક્સેસ સમાપ્ત થશે",
+
+ "bitstream-request-a-copy.access-by-token.expired": "આ લિંક દ્વારા પ્રદાન કરેલ ઍક્સેસ હવે શક્ય નથી. ઍક્સેસ સમાપ્ત થઈ ગઈ છે",
+
+ "bitstream-request-a-copy.access-by-token.not-granted": "આ લિંક દ્વારા પ્રદાન કરેલ ઍક્સેસ શક્ય નથી. ઍક્સેસ είτε મંજુર કરવામાં આવી નથી, είτε રદ કરવામાં આવી છે.",
+
+ "bitstream-request-a-copy.access-by-token.re-request": "ઍક્સેસ માટે નવી વિનંતી સબમિટ કરવા માટે પ્રતિબંધિત ડાઉનલોડ લિંક્સને અનુસરો.",
+
+ "bitstream-request-a-copy.access-by-token.alt-text": "આ આઇટમ માટે ઍક્સેસ સુરક્ષિત ટોકન દ્વારા પ્રદાન કરવામાં આવે છે",
+
+ "browse.back.all-results": "બધા બ્રાઉઝ પરિણામો",
+
+ "browse.comcol.by.author": "લેખક દ્વારા",
+
+ "browse.comcol.by.dateissued": "પ્રકાશન તારીખ દ્વારા",
+
+ "browse.comcol.by.subject": "વિષય દ્વારા",
+
+ "browse.comcol.by.srsc": "વિષય શ્રેણી દ્વારા",
+
+ "browse.comcol.by.nsi": "નોર્વેજિયન સાયન્સ ઇન્ડેક્સ દ્વારા",
+
+ "browse.comcol.by.title": "શીર્ષક દ્વારા",
+
+ "browse.comcol.head": "બ્રાઉઝ",
+
+ "browse.empty": "બતાવવા માટે કોઈ આઇટમ્સ નથી.",
+
+ "browse.metadata.author": "લેખક",
+
+ "browse.metadata.dateissued": "પ્રકાશન તારીખ",
+
+ "browse.metadata.subject": "વિષય",
+
+ "browse.metadata.title": "શીર્ષક",
+
+ "browse.metadata.srsc": "વિષય શ્રેણી",
+
+ "browse.metadata.author.breadcrumbs": "લેખક દ્વારા બ્રાઉઝ કરો",
+
+ "browse.metadata.dateissued.breadcrumbs": "તારીખ દ્વારા બ્રાઉઝ કરો",
+
+ "browse.metadata.subject.breadcrumbs": "વિષય દ્વારા બ્રાઉઝ કરો",
+
+ "browse.metadata.srsc.breadcrumbs": "વિષય શ્રેણી દ્વારા બ્રાઉઝ કરો",
+
+ "browse.metadata.srsc.tree.description": "શોધ ફિલ્ટર તરીકે ઉમેરવા માટે વિષય પસંદ કરો",
+
+ "browse.metadata.nsi.breadcrumbs": "નોર્વેજિયન સાયન્સ ઇન્ડેક્સ દ્વારા બ્રાઉઝ કરો",
+
+ "browse.metadata.nsi.tree.description": "શોધ ફિલ્ટર તરીકે ઇન્ડેક્સ પસંદ કરો",
+
+ "browse.metadata.title.breadcrumbs": "શીર્ષક દ્વારા બ્રાઉઝ કરો",
+
+ "browse.metadata.map": "ભૌગોલિક સ્થાન દ્વારા બ્રાઉઝ કરો",
+
+ "browse.metadata.map.breadcrumbs": "ભૌગોલિક સ્થાન દ્વારા બ્રાઉઝ કરો",
+
+ "browse.metadata.map.count.items": "આઇટમ્સ",
+
+ "pagination.next.button": "આગલું",
+
+ "pagination.previous.button": "પાછલું",
+
+ "pagination.next.button.disabled.tooltip": "કોઈ વધુ પૃષ્ઠો નથી",
+
+ "pagination.page-number-bar": "પૃષ્ઠ નેવિગેશન માટે કંટ્રોલ બાર, ID સાથેના તત્વ માટે: ",
+
+ "browse.startsWith": ", {{ startsWith }} થી શરૂ થાય છે",
+
+ "browse.startsWith.choose_start": "(શરૂઆત પસંદ કરો)",
+
+ "browse.startsWith.choose_year": "(વર્ષ પસંદ કરો)",
+
+ "browse.startsWith.choose_year.label": "પ્રકાશન વર્ષ પસંદ કરો",
+
+ "browse.startsWith.jump": "વર્ષ અથવા મહિના દ્વારા પરિણામો ફિલ્ટર કરો",
+
+ "browse.startsWith.months.april": "એપ્રિલ",
+
+ "browse.startsWith.months.august": "ઑગસ્ટ",
+
+ "browse.startsWith.months.december": "ડિસેમ્બર",
+
+ "browse.startsWith.months.february": "ફેબ્રુઆરી",
+
+ "browse.startsWith.months.january": "જાન્યુઆરી",
+
+ "browse.startsWith.months.july": "જુલાઈ",
+
+ "browse.startsWith.months.june": "જૂન",
+
+ "browse.startsWith.months.march": "માર્ચ",
+
+ "browse.startsWith.months.may": "મે",
+
+ "browse.startsWith.months.none": "(મહિનો પસંદ કરો)",
+
+ "browse.startsWith.months.none.label": "પ્રકાશન મહિનો પસંદ કરો",
+
+ "browse.startsWith.months.november": "નવેમ્બર",
+
+ "browse.startsWith.months.october": "ઑક્ટોબર",
+
+ "browse.startsWith.months.september": "સપ્ટેમ્બર",
+
+ "browse.startsWith.submit": "બ્રાઉઝ",
+
+ "browse.startsWith.type_date": "તારીખ દ્વારા પરિણામો ફિલ્ટર કરો",
+
+ "browse.startsWith.type_date.label": "અથવા તારીખ (વર્ષ-મહિનો) દાખલ કરો અને બ્રાઉઝ બટન પર ક્લિક કરો",
+
+ "browse.startsWith.type_text": "પ્રથમ થોડા અક્ષરો ટાઇપ કરીને પરિણામો ફિલ્ટર કરો",
+
+ "browse.startsWith.input": "ફિલ્ટર",
+
+ "browse.taxonomy.button": "બ્રાઉઝ",
+
+ "browse.title": "{{ field }}{{ startsWith }} {{ value }} દ્વારા બ્રાઉઝિંગ",
+
+ "browse.title.page": "{{ field }} {{ value }} દ્વારા બ્રાઉઝિંગ",
+
+ "search.browse.item-back": "પરિણામો પર પાછા જાઓ",
+
+ "chips.remove": "ચિપ દૂર કરો",
+
+ "claimed-approved-search-result-list-element.title": "મંજૂર",
+
+ "claimed-declined-search-result-list-element.title": "નકારવામાં આવ્યું, સબમિટરને પાછું મોકલવામાં આવ્યું",
+
+ "claimed-declined-task-search-result-list-element.title": "નકારવામાં આવ્યું, રિવ્યુ મેનેજરના વર્કફ્લો પર પાછું મોકલવામાં આવ્યું",
+
+ "collection.create.breadcrumbs": "સંગ્રહ બનાવો",
+
+ "collection.browse.logo": "સંગ્રહ લોગો માટે બ્રાઉઝ કરો",
+
+ "collection.create.head": "સંગ્રહ બનાવો",
+
+ "collection.create.notifications.success": "સંગ્રહ સફળતાપૂર્વક બનાવવામાં આવ્યો",
+
+ "collection.create.sub-head": "સમુદાય {{ parent }} માટે સંગ્રહ બનાવો",
+
+ "collection.curate.header": "સંગ્રહ ક્યુરેટ કરો: {{collection}}",
+
+ "collection.delete.cancel": "રદ કરો",
+
+ "collection.delete.confirm": "ખાતરી કરો",
+
+ "collection.delete.processing": "કાઢી રહ્યા છે",
+
+ "collection.delete.head": "સંગ્રહ કાઢી નાખો",
+
+ "collection.delete.notification.fail": "સંગ્રહ કાઢી શકાતો નથી",
+
+ "collection.delete.notification.success": "સંગ્રહ સફળતાપૂર્વક કાઢી નાખ્યો",
+
+ "collection.delete.text": "શું તમે ખરેખર સંગ્રહ \\\"{{ dso }}\\\" કાઢી નાખવા માંગો છો",
+
+ "collection.edit.delete": "આ સંગ્રહ કાઢી નાખો",
+
+ "collection.edit.head": "સંગ્રહ સંપાદિત કરો",
+
+ "collection.edit.breadcrumbs": "સંગ્રહ સંપાદિત કરો",
+
+ "collection.edit.tabs.mapper.head": "આઇટમ મેપર",
+
+ "collection.edit.tabs.item-mapper.title": "સંગ્રહ સંપાદન - આઇટમ મેપર",
+
+ "collection.edit.item-mapper.cancel": "રદ કરો",
+
+ "collection.edit.item-mapper.collection": "સંગ્રહ: \\\"{{name}}\\\"",
+
+ "collection.edit.item-mapper.confirm": "પસંદ કરેલ આઇટમ્સ મેપ કરો",
+
+ "collection.edit.item-mapper.description": "આ આઇટમ મેપર ટૂલ છે જે સંગ્રહ વહીવટકર્તાઓને આ સંગ્રહમાં અન્ય સંગ્રહોમાંથી આઇટમ્સ મેપ કરવાની મંજૂરી આપે છે. તમે અન્ય સંગ્રહોમાંથી આઇટમ્સ શોધી શકો છો અને તેમને મેપ કરી શકો છો, અથવા હાલમાં મેપ કરેલ આઇટમ્સની યાદી બ્રાઉઝ કરી શકો છો.",
+
+ "collection.edit.item-mapper.head": "આઇટમ મેપર - અન્ય સંગ્રહોમાંથી આઇટમ્સ મેપ કરો",
+
+ "collection.edit.item-mapper.no-search": "કૃપા કરીને શોધ માટે ક્વેરી દાખલ કરો",
+
+ "collection.edit.item-mapper.notifications.map.error.content": "{{amount}} આઇટમ્સના મેપિંગ માટે ભૂલો આવી.",
+
+ "collection.edit.item-mapper.notifications.map.error.head": "મેપિંગ ભૂલો",
+
+ "collection.edit.item-mapper.notifications.map.success.content": "{{amount}} આઇટમ્સ સફળતાપૂર્વક મેપ કરવામાં આવ્યા.",
+
+ "collection.edit.item-mapper.notifications.map.success.head": "મેપિંગ પૂર્ણ",
+
+ "collection.edit.item-mapper.notifications.unmap.error.content": "{{amount}} આઇટમ્સના મેપિંગ દૂર કરતી વખતે ભૂલો આવી.",
+
+ "collection.edit.item-mapper.notifications.unmap.error.head": "મેપિંગ દૂર કરવાની ભૂલો",
+
+ "collection.edit.item-mapper.notifications.unmap.success.content": "{{amount}} આઇટમ્સના મેપિંગ સફળતાપૂર્વક દૂર કરવામાં આવ્યા.",
+
+ "collection.edit.item-mapper.notifications.unmap.success.head": "મેપિંગ દૂર કરવું પૂર્ણ",
+
+ "collection.edit.item-mapper.remove": "પસંદ કરેલ આઇટમ મેપિંગ્સ દૂર કરો",
+
+ "collection.edit.item-mapper.search-form.placeholder": "આઇટમ્સ શોધો...",
+
+ "collection.edit.item-mapper.tabs.browse": "મેપ કરેલ આઇટમ્સ બ્રાઉઝ કરો",
+
+ "collection.edit.item-mapper.tabs.map": "નવા આઇટમ્સ મેપ કરો",
+
+ "collection.edit.logo.delete.title": "લોગો કાઢી નાખો",
+
+ "collection.edit.logo.delete-undo.title": "કાઢી નાખવું રદ કરો",
+
+ "collection.edit.logo.label": "સંગ્રહ લોગો",
+
+ "collection.edit.logo.notifications.add.error": "સંગ્રહ લોગો અપલોડ કરવામાં નિષ્ફળ. કૃપા કરીને સામગ્રીને ચકાસો અને ફરી પ્રયાસ કરો.",
+
+ "collection.edit.logo.notifications.add.success": "સંગ્રહ લોગો સફળતાપૂર્વક અપલોડ થયો.",
+
+ "collection.edit.logo.notifications.delete.success.title": "લોગો કાઢી નાખ્યો",
+
+ "collection.edit.logo.notifications.delete.success.content": "સંગ્રહનો લોગો સફળતાપૂર્વક કાઢી નાખ્યો",
+
+ "collection.edit.logo.notifications.delete.error.title": "લોગો કાઢી નાખવામાં ભૂલ",
+
+ "collection.edit.logo.upload": "અપલોડ કરવા માટે સંગ્રહ લોગો ડ્રોપ કરો",
+
+ "collection.edit.notifications.success": "સંગ્રહ સફળતાપૂર્વક સંપાદિત કર્યો",
+
+ "collection.edit.return": "પાછા",
+
+ "collection.edit.tabs.access-control.head": "ઍક્સેસ કંટ્રોલ",
+
+ "collection.edit.tabs.access-control.title": "સંગ્રહ સંપાદન - ઍક્સેસ કંટ્રોલ",
+
+ "collection.edit.tabs.curate.head": "ક્યુરેટ",
+
+ "collection.edit.tabs.curate.title": "સંગ્રહ સંપાદન - ક્યુરેટ",
+
+ "collection.edit.tabs.authorizations.head": "અધિકૃતતા",
+
+ "collection.edit.tabs.authorizations.title": "સંગ્રહ સંપાદન - અધિકૃતતા",
+
+ "collection.edit.item.authorizations.load-bundle-button": "વધુ બંડલ્સ લોડ કરો",
+
+ "collection.edit.item.authorizations.load-more-button": "વધુ લોડ કરો",
+
+ "collection.edit.item.authorizations.show-bitstreams-button": "બંડલ માટે બિટસ્ટ્રીમ પોલિસી બતાવો",
+
+ "collection.edit.tabs.metadata.head": "મેટાડેટા સંપાદિત કરો",
+
+ "collection.edit.tabs.metadata.title": "સંગ્રહ સંપાદન - મેટાડેટા",
+
+ "collection.edit.tabs.roles.head": "ભૂમિકા સોંપો",
+
+ "collection.edit.tabs.roles.title": "સંગ્રહ સંપાદન - ભૂમિકા",
+
+ "collection.edit.tabs.source.external": "આ સંગ્રહ તેની સામગ્રી બાહ્ય સ્ત્રોતમાંથી હાર્વેસ્ટ કરે છે",
+
+ "collection.edit.tabs.source.form.errors.oaiSource.required": "તમારે લક્ષ્ય સંગ્રહનો સેટ id પ્રદાન કરવો જ જોઈએ.",
+
+ "collection.edit.tabs.source.form.harvestType": "હાર્વેસ્ટ થતી સામગ્રી",
+
+ "collection.edit.tabs.source.form.head": "બાહ્ય સ્ત્રોત કૉન્ફિગર કરો",
+
+ "collection.edit.tabs.source.form.metadataConfigId": "મેટાડેટા ફોર્મેટ",
+
+ "collection.edit.tabs.source.form.oaiSetId": "OAI વિશિષ્ટ સેટ id",
+
+ "collection.edit.tabs.source.form.oaiSource": "OAI પ્રદાતા",
+
+ "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_BITSTREAMS": "મેટાડેટા અને બિટસ્ટ્રીમ્સ હાર્વેસ્ટ કરો (ORE સપોર્ટ જરૂરી છે)",
+
+ "collection.edit.tabs.source.form.options.harvestType.METADATA_AND_REF": "મેટાડેટા અને બિટસ્ટ્રીમ્સના સંદર્ભો હાર્વેસ્ટ કરો (ORE સપોર્ટ જરૂરી છે)",
+
+ "collection.edit.tabs.source.form.options.harvestType.METADATA_ONLY": "મેટાડેટા માત્ર હાર્વેસ્ટ કરો",
+
+ "collection.edit.tabs.source.head": "સામગ્રી સ્ત્રોત",
+
+ "collection.edit.tabs.source.notifications.discarded.content": "તમારા ફેરફારો રદ કરવામાં આવ્યા. તમારા ફેરફારોને ફરી સ્થાપિત કરવા માટે 'Undo' બટન પર ક્લિક કરો",
+
+ "collection.edit.tabs.source.notifications.discarded.title": "ફેરફારો રદ",
+
+ "collection.edit.tabs.source.notifications.invalid.content": "તમારા ફેરફારો સાચવવામાં આવ્યા નથી. કૃપા કરીને ખાતરી કરો કે બધા ફીલ્ડ માન્ય છે પહેલાં તમે સાચવો.",
+
+ "collection.edit.tabs.source.notifications.invalid.title": "મેટાડેટા અમાન્ય",
+
+ "collection.edit.tabs.source.notifications.saved.content": "આ સંગ્રહના સામગ્રી સ્ત્રોત માટેના તમારા ફેરફારો સાચવવામાં આવ્યા.",
+
+ "collection.edit.tabs.source.notifications.saved.title": "સામગ્રી સ્ત્રોત સાચવ્યું",
+
+ "collection.edit.tabs.source.title": "સંગ્રહ સંપાદન - સામગ્રી સ્ત્રોત",
+
+ "collection.edit.template.add-button": "ઉમેરો",
+
+ "collection.edit.template.breadcrumbs": "આઇટમ ટેમ્પલેટ",
+
+ "collection.edit.template.cancel": "રદ કરો",
+
+ "collection.edit.template.delete-button": "કાઢી નાખો",
+
+ "collection.edit.template.edit-button": "સંપાદિત કરો",
+
+ "collection.edit.template.error": "ટેમ્પલેટ આઇટમ મેળવતી વખતે ભૂલ આવી",
+
+ "collection.edit.template.head": "સંગ્રહ \\\"{{ collection }}\\\" માટે ટેમ્પલેટ આઇટમ સંપાદિત કરો",
+
+ "collection.edit.template.label": "ટેમ્પલેટ આઇટમ",
+
+ "collection.edit.template.loading": "ટેમ્પલેટ આઇટમ લોડ કરી રહ્યું છે...",
+
+ "collection.edit.template.notifications.delete.error": "આઇટમ ટેમ્પલેટ કાઢી નાખવામાં નિષ્ફળ",
+
+ "collection.edit.template.notifications.delete.success": "આઇટમ ટેમ્પલેટ સફળતાપૂર્વક કાઢી નાખ્યું",
+
+ "collection.edit.template.title": "ટેમ્પલેટ આઇટમ સંપાદિત કરો",
+
+ "collection.form.abstract": "સંક્ષિપ્ત વર્ણન",
+
+ "collection.form.description": "પરિચયાત્મક લખાણ (HTML)",
+
+ "collection.form.errors.title.required": "કૃપા કરીને સંગ્રહનું નામ દાખલ કરો",
+
+ "collection.form.license": "લાઇસન્સ",
+
+ "collection.form.provenance": "પ્રૂવનન્સ",
+
+ "collection.form.rights": "કૉપિરાઇટ લખાણ (HTML)",
+
+ "collection.form.tableofcontents": "સમાચાર (HTML)",
+
+ "collection.form.title": "નામ",
+
+ "collection.form.entityType": "સત્તા પ્રકાર",
+
+ "collection.listelement.badge": "સંગ્રહ",
+
+ "collection.logo": "સંગ્રહ લોગો",
+
+ "collection.page.browse.search.head": "શોધો",
+
+ "collection.page.edit": "આ સંગ્રહ સંપાદિત કરો",
+
+ "collection.page.handle": "આ સંગ્રહ માટે કાયમી URI",
+
+ "collection.page.license": "લાઇસન્સ",
+
+ "collection.page.news": "સમાચાર",
+
+ "collection.page.options": "વિકલ્પો",
+
+ "collection.search.breadcrumbs": "શોધો",
+
+ "collection.search.results.head": "શોધ પરિણામો",
+
+ "collection.select.confirm": "પસંદ કરેલ ખાતરી કરો",
+
+ "collection.select.empty": "બતાવવા માટે કોઈ સંગ્રહો નથી",
+
+ "collection.select.table.selected": "પસંદ કરેલ સંગ્રહો",
+
+ "collection.select.table.select": "સંગ્રહ પસંદ કરો",
+
+ "collection.select.table.deselect": "સંગ્રહ પસંદ કરેલને દૂર કરો",
+
+ "collection.select.table.title": "શીર્ષક",
+
+ "collection.source.controls.head": "હાર્વેસ્ટ કંટ્રોલ્સ",
+
+ "collection.source.controls.test.submit.error": "સેટિંગ્સની પરીક્ષણ શરૂ કરતી વખતે કંઈક ખોટું થયું",
+
+ "collection.source.controls.test.failed": "સેટિંગ્સની પરીક્ષણ સ્ક્રિપ્ટ નિષ્ફળ થઈ",
+
+ "collection.source.controls.test.completed": "સેટિંગ્સની પરીક્ષણ સ્ક્રિપ્ટ સફળતાપૂર્વક પૂર્ણ થઈ",
+
+ "collection.source.controls.test.submit": "કૉન્ફિગરેશન પરીક્ષણ",
+
+ "collection.source.controls.test.running": "કૉન્ફિગરેશન પરીક્ષણ કરી રહ્યું છે...",
+
+ "collection.source.controls.import.submit.success": "આયાત સફળતાપૂર્વક શરૂ કરવામાં આવી",
+
+ "collection.source.controls.import.submit.error": "આયાત શરૂ કરતી વખતે કંઈક ખોટું થયું",
+
+ "collection.source.controls.import.submit": "હવે આયાત કરો",
+
+ "collection.source.controls.import.running": "આયાત કરી રહ્યું છે...",
+
+ "collection.source.controls.import.failed": "આયાત દરમિયાન ભૂલ આવી",
+
+ "collection.source.controls.import.completed": "આયાત પૂર્ણ",
+
+ "collection.source.controls.reset.submit.success": "રીસેટ અને ફરી આયાત સફળતાપૂર્વક શરૂ કરવામાં આવી",
+
+ "collection.source.controls.reset.submit.error": "રીસેટ અને ફરી આયાત શરૂ કરતી વખતે કંઈક ખોટું થયું",
+
+ "collection.source.controls.reset.failed": "રીસેટ અને ફરી આયાત દરમિયાન ભૂલ આવી",
+
+ "collection.source.controls.reset.completed": "રીસેટ અને ફરી આયાત પૂર્ણ",
+
+ "collection.source.controls.reset.submit": "રીસેટ અને ફરી આયાત",
+
+ "collection.source.controls.reset.running": "રીસેટ અને ફરી આયાત કરી રહ્યું છે...",
+
+ "collection.source.controls.harvest.status": "હાર્વેસ્ટ સ્થિતિ:",
+
+ "collection.source.controls.harvest.start": "હાર્વેસ્ટ શરૂ સમય:",
+
+ "collection.source.controls.harvest.last": "છેલ્લો હાર્વેસ્ટ સમય:",
+
+ "collection.source.controls.harvest.message": "હાર્વેસ્ટ માહિતી:",
+
+ "collection.source.controls.harvest.no-information": "N/A",
+
+ "collection.source.update.notifications.error.content": "પ્રદાન કરેલ સેટિંગ્સનું પરીક્ષણ કરવામાં આવ્યું છે અને તે કાર્યરત નથી.",
+
+ "collection.source.update.notifications.error.title": "સર્વર ભૂલ",
+
+ "communityList.breadcrumbs": "સમુદાય યાદી",
+
+ "communityList.tabTitle": "સમુદાય યાદી",
+
+ "communityList.title": "સમુદાયોની યાદી",
+
+ "communityList.showMore": "વધુ બતાવો",
+
+ "communityList.expand": "{{ name }} વિસ્તારો",
+
+ "communityList.collapse": "{{ name }} સંકોચો",
+
+ "community.browse.logo": "સમુદાય લોગો માટે બ્રાઉઝ કરો",
+
+ "community.subcoms-cols.breadcrumbs": "ઉપસમુદાયો અને સંગ્રહો",
+
+ "community.create.breadcrumbs": "સમુદાય બનાવો",
+
+ "community.create.head": "સમુદાય બનાવો",
+
+ "community.create.notifications.success": "સમુદાય સફળતાપૂર્વક બનાવવામાં આવ્યો",
+
+ "community.create.sub-head": "સમુદાય {{ parent }} માટે ઉપસમુદાય બનાવો",
+
+ "community.curate.header": "સમુદાય ક્યુરેટ કરો: {{community}}",
+
+ "community.delete.cancel": "રદ કરો",
+
+ "community.delete.confirm": "ખાતરી કરો",
+
+ "community.delete.processing": "કાઢી રહ્યા છે...",
+
+ "community.delete.head": "સમુદાય કાઢી નાખો",
+
+ "community.delete.notification.fail": "સમુદાય કાઢી શકાતો નથી",
+
+ "community.delete.notification.success": "સમુદાય સફળતાપૂર્વક કાઢી નાખ્યો",
+
+ "community.delete.text": "શું તમે ખરેખર સમુદાય \\\"{{ dso }}\\\" કાઢી નાખવા માંગો છો",
+
+ "community.edit.delete": "આ સમુદાય કાઢી નાખો",
+
+ "community.edit.head": "સમુદાય સંપાદિત કરો",
+
+ "community.edit.breadcrumbs": "સમુદાય સંપાદિત કરો",
+
+ "community.edit.logo.delete.title": "લોગો કાઢી નાખો",
+
+ "community-collection.edit.logo.delete.title": "કાઢી નાખવું ખાતરી કરો",
+
+ "community.edit.logo.delete-undo.title": "કાઢી નાખવું રદ કરો",
+
+ "community-collection.edit.logo.delete-undo.title": "કાઢી નાખવું રદ કરો",
+
+ "community.edit.logo.label": "સમુદાય લોગો",
+
+ "community.edit.logo.notifications.add.error": "સમુદાય લોગો અપલોડ કરવામાં નિષ્ફળ. કૃપા કરીને સામગ્રીને ચકાસો અને ફરી પ્રયાસ કરો.",
+
+ "community.edit.logo.notifications.add.success": "સમુદાય લોગો સફળતાપૂર્વક અપલોડ થયો.",
+
+ "community.edit.logo.notifications.delete.success.title": "લોગો કાઢી નાખ્યો",
+
+ "community.edit.logo.notifications.delete.success.content": "સમુદાયનો લોગો સફળતાપૂર્વક કાઢી નાખ્યો",
+
+ "community.edit.logo.notifications.delete.error.title": "લોગો કાઢી નાખવામાં ભૂલ",
+
+ "community.edit.logo.upload": "અપલોડ કરવા માટે સમુદાય લોગો ડ્રોપ કરો",
+
+ "community.edit.notifications.success": "સમુદાય સફળતાપૂર્વક સંપાદિત કર્યો",
+
+ "community.edit.notifications.unauthorized": "તમને આ ફેરફાર કરવાની પરવાનગી નથી",
+
+ "community.edit.notifications.error": "સમુદાય સંપાદિત કરતી વખતે ભૂલ આવી",
+
+ "community.edit.return": "પાછા",
+
+ "community.edit.tabs.curate.head": "ક્યુરેટ",
+
+ "community.edit.tabs.curate.title": "સમુદાય સંપાદન - ક્યુરેટ",
+
+ "community.edit.tabs.access-control.head": "ઍક્સેસ કંટ્રોલ",
+
+ "community.edit.tabs.access-control.title": "સમુદાય સંપાદન - ઍક્સેસ કંટ્રોલ",
+
+ "community.edit.tabs.metadata.head": "મેટાડેટા સંપાદિત કરો",
+
+ "community.edit.tabs.metadata.title": "સમુદાય સંપાદન - મેટાડેટા",
+
+ "community.edit.tabs.roles.head": "ભૂમિકા સોંપો",
+
+ "community.edit.tabs.roles.title": "સમુદાય સંપાદન - ભૂમિકા",
+
+ "community.edit.tabs.authorizations.head": "અધિકૃતતા",
+
+ "community.edit.tabs.authorizations.title": "સમુદાય સંપાદન - અધિકૃતતા",
+
+ "community.listelement.badge": "સમુદાય",
+
+ "community.logo": "સમુદાય લોગો",
+
+ "comcol-role.edit.no-group": "કોઈ નથી",
+
+ "comcol-role.edit.create": "બનાવો",
+
+ "comcol-role.edit.create.error.title": "'{{ role }}' ભૂમિકા માટે જૂથ બનાવવામાં નિષ્ફળ",
+
+ "comcol-role.edit.restrict": "પ્રતિબંધિત",
+
+ "comcol-role.edit.delete": "કાઢી નાખો",
+
+ "comcol-role.edit.delete.error.title": "'{{ role }}' ભૂમિકા માટેના જૂથને કાઢી નાખવામાં નિષ્ફળ",
+
+ "comcol-role.edit.community-admin.name": "એડમિનિસ્ટ્રેટર્સ",
+
+ "comcol-role.edit.collection-admin.name": "એડમિનિસ્ટ્રેટર્સ",
+
+ "comcol-role.edit.community-admin.description": "સમુદાય એડમિનિસ્ટ્રેટર્સ ઉપસમુદાયો અથવા સંગ્રહો બનાવી શકે છે, અને તે ઉપસમુદાયો અથવા સંગ્રહો માટે મેનેજમેન્ટ સોંપી શકે છે. ઉપરાંત, તેઓ નક્કી કરે છે કે કોણ ઉપસંગ્રહોમાં આઇટમ્સ સબમિટ કરી શકે છે, આઇટમ મેટાડેટા (સબમિશન પછી) સંપાદિત કરી શકે છે, અને અન્ય સંગ્રહોમાંથી (અધિકૃતતા મુજબ) આઇટમ્સ ઉમેરવા (મેપ) કરી શકે છે.",
+
+ "comcol-role.edit.collection-admin.description": "સંગ્રહ એડમિનિસ્ટ્રેટર્સ નક્કી કરે છે કે કોણ સંગ્રહમાં આઇટમ્સ સબમિટ કરી શકે છે, આઇટમ મેટાડેટા (સબમિશન પછી) સંપાદિત કરી શકે છે, અને આ સંગ્રહમાં અન્ય સંગ્રહોમાંથી આઇટમ્સ ઉમેરવા (મેપ) કરી શકે છે (તે સંગ્રહ માટેની અધિકૃતતા મુજબ).",
+
+ "comcol-role.edit.submitters.name": "સબમિટર્સ",
+
+ "comcol-role.edit.submitters.description": "E-People અને જૂથો જેમને આ સંગ્રહમાં નવા આઇટમ્સ સબમિટ કરવાની પરવાનગી છે.",
+
+ "comcol-role.edit.item_read.name": "ડિફોલ્ટ આઇટમ વાંચન ઍક્સેસ",
+
+ "comcol-role.edit.item_read.description": "E-People અને જૂથો જેમને આ સંગ્રહમાં સબમિટ કરેલા નવા આઇટમ્સ વાંચવાની પરવાનગી છે. આ ભૂમિકા માટેના ફેરફારો પાછલા નથી. સિસ્ટમમાંના અસ્તિત્વમાં આવેલા આઇટમ્સ હજી પણ તે સમયે વાંચન ઍક્સેસ ધરાવતા લોકો દ્વારા જોવામાં આવશે.",
+
+ "comcol-role.edit.item_read.anonymous-group": "આવતા આઇટમ્સ માટે ડિફોલ્ટ વાંચન હાલમાં અનામી માટે સેટ છે.",
+
+ "comcol-role.edit.bitstream_read.name": "ડિફોલ્ટ બિટસ્ટ્રીમ વાંચન ઍક્સેસ",
+
+ "comcol-role.edit.bitstream_read.description": "E-People અને જૂથો જેમને આ સંગ્રહમાં સબમિટ કરેલા નવા બિટસ્ટ્રીમ્સ વાંચવાની પરવાનગી છે. આ ભૂમિકા માટેના ફેરફારો પાછલા નથી. સિસ્ટમમાંના અસ્તિત્વમાં આવેલા બિટસ્ટ્રીમ્સ હજી પણ તે સમયે વાંચન ઍક્સેસ ધરાવતા લોકો દ્વારા જોવામાં આવશે.",
+
+ "comcol-role.edit.bitstream_read.anonymous-group": "આવતા બિટસ્ટ્રીમ્સ માટે ડિફોલ્ટ વાંચન હાલમાં અનામી માટે સેટ છે.",
+
+ "comcol-role.edit.editor.name": "સંપાદકો",
+
+ "comcol-role.edit.editor.description": "સંપાદકો આવનારા સબમિશન્સના મેટાડેટા સંપાદિત કરી શકે છે, અને પછી તેમને સ્વીકારી અથવા નકારી શકે છે.",
+
+ "comcol-role.edit.finaleditor.name": "અંતિમ સંપાદકો",
+
+ "comcol-role.edit.finaleditor.description": "અંતિમ સંપાદકો આવનારા સબમિશન્સના મેટાડેટા સંપાદિત કરી શકે છે, પરંતુ તેમને નકારી શકશે નહીં.",
+
+ "comcol-role.edit.reviewer.name": "રિવ્યુઅર્સ",
+
+ "comcol-role.edit.reviewer.description": "રિવ્યુઅર્સ આવનારા સબમિશન્સને સ્વીકારી અથવા નકારી શકે છે. જો કે, તેઓ સબમિશનના મેટાડેટા સંપાદિત કરી શકશે નહીં.",
+
+ "comcol-role.edit.scorereviewers.name": "સ્કોર રિવ્યુઅર્સ",
+
+ "comcol-role.edit.scorereviewers.description": "રિવ્યુઅર્સ આવનારા સબમિશન્સને સ્કોર આપી શકે છે, જે નક્કી કરશે કે સબમિશન નકારવામાં આવશે કે નહીં.",
+
+ "community.form.abstract": "સંક્ષિપ્ત વર્ણન",
+
+ "community.form.description": "પરિચયાત્મક લખાણ (HTML)",
+
+ "community.form.errors.title.required": "કૃપા કરીને સમુદાયનું નામ દાખલ કરો",
+
+ "community.form.rights": "કૉપિરાઇટ લખાણ (HTML)",
+
+ "community.form.tableofcontents": "સમાચાર (HTML)",
+
+ "community.form.title": "નામ",
+
+ "community.page.edit": "આ સમુદાય સંપાદિત કરો",
+
+ "community.page.handle": "આ સમુદાય માટે કાયમી URI",
+
+ "community.page.license": "લાઇસન્સ",
+
+ "community.page.news": "સમાચાર",
+
+ "community.page.options": "વિકલ્પો",
+
+ "community.all-lists.head": "ઉપસમુદાયો અને સંગ્રહો",
+
+ "community.search.breadcrumbs": "શોધો",
+
+ "community.search.results.head": "શોધ પરિણામો",
+
+ "community.sub-collection-list.head": "આ સમુદાયમાં સંગ્રહો",
+
+ "community.sub-community-list.head": "આ સમુદાયમાં સમુદાયો",
+
+ "cookies.consent.accept-all": "બધા સ્વીકારો",
+
+ "cookies.consent.accept-selected": "પસંદ કરેલ સ્વીકારો",
+
+ "cookies.consent.app.opt-out.description": "આ એપ્લિકેશન ડિફોલ્ટ દ્વારા લોડ થાય છે (પરંતુ તમે તેને ઓપ્ટ આઉટ કરી શકો છો)",
+
+ "cookies.consent.app.opt-out.title": "(ઓપ્ટ-આઉટ)",
+
+ "cookies.consent.app.purpose": "હેતુ",
+
+ "cookies.consent.app.required.description": "આ એપ્લિકેશન હંમેશા જરૂરી છે",
+
+ "cookies.consent.app.required.title": "(હંમેશા જરૂરી)",
+
+ "cookies.consent.update": "તમારા છેલ્લા મુલાકાત પછી ફેરફારો થયા છે, કૃપા કરીને તમારી સંમતિ અપડેટ કરો.",
+
+ "cookies.consent.close": "બંધ કરો",
+
+ "cookies.consent.decline": "નકારો",
+
+ "cookies.consent.decline-all": "બધા નકારો",
- // "collection.edit.tabs.source.head": "Content Source",
- "collection.edit.tabs.source.head": "સામગ્રી સ્ત્રોત",
+ "cookies.consent.ok": "તે ઠીક છે",
- // "collection.edit.tabs.source.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button",
- "collection.edit.tabs.source.notifications.discarded.content": "તમારા ફેરફારો રદ કરવામાં આવ્યા. તમારા ફેરફારોને ફરી સ્થાપિત કરવા માટે 'Undo' બટન પર ક્લિક કરો",
+ "cookies.consent.save": "સાચવો",
- // "collection.edit.tabs.source.notifications.discarded.title": "Changes discarded",
- "collection.edit.tabs.source.notifications.discarded.title": "ફેરફારો રદ",
+ "cookies.consent.content-notice.description": "અમે નીચેના હેતુઓ માટે તમારી વ્યક્તિગત માહિતી એકત્રિત અને પ્રક્રિયા કરીએ છીએ: {purposes}",
- // "collection.edit.tabs.source.notifications.invalid.content": "Your changes were not saved. Please make sure all fields are valid before you save.",
- "collection.edit.tabs.source.notifications.invalid.content": "તમારા ફેરફારો સાચવવામાં આવ્યા નથી. કૃપા કરીને ખાતરી કરો કે બધા ફીલ્ડ માન્ય છે પહેલાં તમે સાચવો.",
+ "cookies.consent.content-notice.learnMore": "કસ્ટમાઇઝ કરો",
- // "collection.edit.tabs.source.notifications.invalid.title": "Metadata invalid",
- "collection.edit.tabs.source.notifications.invalid.title": "મેટાડેટા અમાન્ય",
+ "cookies.consent.content-modal.description": "અહીં તમે જોઈ શકો છો અને કસ્ટમાઇઝ કરી શકો છો કે અમે તમારા વિશે કઈ માહિતી એકત્રિત કરીએ છીએ.",
- // "collection.edit.tabs.source.notifications.saved.content": "Your changes to this collection's content source were saved.",
- "collection.edit.tabs.source.notifications.saved.content": "આ સંગ્રહના સામગ્રી સ્ત્રોત માટેના તમારા ફેરફારો સાચવવામાં આવ્યા.",
+ "cookies.consent.content-modal.privacy-policy.name": "ગોપનીયતા નીતિ",
- // "collection.edit.tabs.source.notifications.saved.title": "Content Source saved",
- "collection.edit.tabs.source.notifications.saved.title": "સામગ્રી સ્ત્રોત સાચવ્યું",
+ "cookies.consent.content-modal.privacy-policy.text": "વધુ જાણવા માટે, કૃપા કરીને અમારી {privacyPolicy} વાંચો.",
- // "collection.edit.tabs.source.title": "Collection Edit - Content Source",
- "collection.edit.tabs.source.title": "સંગ્રહ સંપાદન - સામગ્રી સ્ત્રોત",
+ "cookies.consent.content-modal.no-privacy-policy.text": "",
- // "collection.edit.template.add-button": "Add",
- "collection.edit.template.add-button": "ઉમેરો",
+ "cookies.consent.content-modal.title": "અમે જે માહિતી એકત્રિત કરીએ છીએ",
- // "collection.edit.template.breadcrumbs": "Item template",
- "collection.edit.template.breadcrumbs": "આઇટમ ટેમ્પલેટ",
+ "cookies.consent.app.title.authentication": "પ્રમાણન",
- // "collection.edit.template.cancel": "Cancel",
- "collection.edit.template.cancel": "રદ કરો",
+ "cookies.consent.app.description.authentication": "તમને સાઇન ઇન કરવા માટે જરૂરી છે",
- // "collection.edit.template.delete-button": "Delete",
- "collection.edit.template.delete-button": "કાઢી નાખો",
+ "cookies.consent.app.title.preferences": "પસંદગીઓ",
- // "collection.edit.template.edit-button": "Edit",
- "collection.edit.template.edit-button": "સંપાદિત કરો",
+ "cookies.consent.app.description.preferences": "તમારી પસંદગીઓ સાચવવા માટે જરૂરી છે",
- // "collection.edit.template.error": "An error occurred retrieving the template item",
- "collection.edit.template.error": "ટેમ્પલેટ આઇટમ મેળવતી વખતે ભૂલ આવી",
+ "cookies.consent.app.title.acknowledgement": "સ્વીકાર",
- // "collection.edit.template.head": "Edit Template Item for Collection \"{{ collection }}\"",
- "collection.edit.template.head": "સંગ્રહ \\\"{{ collection }}\\\" માટે ટેમ્પલેટ આઇટમ સંપાદિત કરો",
+ "cookies.consent.app.description.acknowledgement": "તમારા સ્વીકાર અને સંમતિઓ સાચવવા માટે જરૂરી છે",
- // "collection.edit.template.label": "Template item",
- "collection.edit.template.label": "ટેમ્પલેટ આઇટમ",
+ "cookies.consent.app.title.google-analytics": "Google Analytics",
- // "collection.edit.template.loading": "Loading template item...",
- "collection.edit.template.loading": "ટેમ્પલેટ આઇટમ લોડ કરી રહ્યું છે...",
+ "cookies.consent.app.description.google-analytics": "અમને આંકડાકીય ડેટા ટ્રેક કરવાની મંજૂરી આપે છે",
- // "collection.edit.template.notifications.delete.error": "Failed to delete the item template",
- "collection.edit.template.notifications.delete.error": "આઇટમ ટેમ્પલેટ કાઢી નાખવામાં નિષ્ફળ",
+ "cookies.consent.app.title.google-recaptcha": "Google reCaptcha",
- // "collection.edit.template.notifications.delete.success": "Successfully deleted the item template",
- "collection.edit.template.notifications.delete.success": "આઇટમ ટેમ્પલેટ સફળતાપૂર્વક કાઢી નાખ્યું",
+ "cookies.consent.app.description.google-recaptcha": "અમે નોંધણી અને પાસવર્ડ પુનઃપ્રાપ્તિ દરમિયાન Google reCAPTCHA સેવા નો ઉપયોગ કરીએ છીએ",
- // "collection.edit.template.title": "Edit Template Item",
- "collection.edit.template.title": "ટેમ્પલેટ આઇટમ સંપાદિત કરો",
+ "cookies.consent.app.title.matomo": "Matomo",
- // "collection.form.abstract": "Short Description",
- "collection.form.abstract": "સંક્ષિપ્ત વર્ણન",
+ "cookies.consent.app.description.matomo": "અમને આંકડાકીય ડેટા ટ્રેક કરવાની મંજૂરી આપે છે",
- // "collection.form.description": "Introductory text (HTML)",
- "collection.form.description": "પરિચયાત્મક લખાણ (HTML)",
+ "cookies.consent.purpose.functional": "કાર્યાત્મક",
- // "collection.form.errors.title.required": "Please enter a collection name",
- "collection.form.errors.title.required": "કૃપા કરીને સંગ્રહનું નામ દાખલ કરો",
+ "cookies.consent.purpose.statistical": "આંકડાકીય",
- // "collection.form.errors.submissionDefinition.required": "Please choose a submission definition for this collection",
- // TODO New key - Add a translation
- "collection.form.errors.submissionDefinition.required": "Please choose a submission definition for this collection",
+ "cookies.consent.purpose.registration-password-recovery": "નોંધણી અને પાસવર્ડ પુનઃપ્રાપ્તિ",
- // "collection.form.errors.entityType.required": "Please choose an entity type for this collection",
- // TODO New key - Add a translation
- "collection.form.errors.entityType.required": "Please choose an entity type for this collection",
+ "cookies.consent.purpose.sharing": "શેરિંગ",
- // "collection.form.license": "License",
- "collection.form.license": "લાઇસન્સ",
+ "curation-task.task.citationpage.label": "સાઇટેશન પેજ જનરેટ કરો",
- // "collection.form.provenance": "Provenance",
- "collection.form.provenance": "પ્રૂવનન્સ",
+ "curation-task.task.checklinks.label": "મેટાડેટામાં લિંક્સ તપાસો",
- // "collection.form.rights": "Copyright text (HTML)",
- "collection.form.rights": "કૉપિરાઇટ લખાણ (HTML)",
+ "curation-task.task.noop.label": "NOOP",
- // "collection.form.sharedWorkspace": "Shared workspace",
- // TODO New key - Add a translation
- "collection.form.sharedWorkspace": "Shared workspace",
+ "curation-task.task.profileformats.label": "પ્રોફાઇલ બિટસ્ટ્રીમ ફોર્મેટ્સ",
- // "collection.form.tableofcontents": "News (HTML)",
- "collection.form.tableofcontents": "સમાચાર (HTML)",
+ "curation-task.task.requiredmetadata.label": "જરૂરી મેટાડેટા માટે તપાસો",
- // "collection.form.title": "Name",
- "collection.form.title": "નામ",
+ "curation-task.task.translate.label": "Microsoft Translator",
- // "collection.form.entityType": "Entity Type",
- "collection.form.entityType": "સત્તા પ્રકાર",
+ "curation-task.task.vscan.label": "વાયરસ સ્કેન",
- // "collection.form.errors.entityType.required": "Please choose an entity type for this collection",
- // TODO New key - Add a translation
- "collection.form.errors.entityType.required": "Please choose an entity type for this collection",
+ "curation-task.task.registerdoi.label": "DOI નોંધણી કરો",
- // "collection.form.errors.submissionDefinition.required": "Please choose a submission definition for this collection",
- // TODO New key - Add a translation
- "collection.form.errors.submissionDefinition.required": "Please choose a submission definition for this collection",
+ "curation.form.task-select.label": "ટાસ્ક:",
- // "collection.form.submissionDefinition": "Submission definition",
- // TODO New key - Add a translation
- "collection.form.submissionDefinition": "Submission definition",
+ "curation.form.submit": "શરૂ કરો",
- // "collection.form.correctionSubmissionDefinition": "Submission definition for correction request",
- // TODO New key - Add a translation
- "collection.form.correctionSubmissionDefinition": "Submission definition for correction request",
+ "curation.form.submit.success.head": "ક્યુરેશન ટાસ્ક સફળતાપૂર્વક શરૂ કરવામાં આવી",
+ "curation.form.submit.success.content": "તમને સંબંધિત પ્રક્રિયા પૃષ્ઠ પર રીડાયરેક્ટ કરવામાં આવશે.",
+ "curation.form.submit.error.head": "ક્યુરેશન ટાસ્ક ચલાવતી વખતે નિષ્ફળ",
- // "collection.listelement.badge": "Collection",
- "collection.listelement.badge": "સંગ્રહ",
+ "curation.form.submit.error.content": "ક્યુરેશન ટાસ્ક શરૂ કરવાનો પ્રયાસ કરતી વખતે ભૂલ આવી.",
- // "collection.logo": "Collection logo",
- "collection.logo": "સંગ્રહ લોગો",
+ "curation.form.submit.error.invalid-handle": "આ ઑબ્જેક્ટ માટે હેન્ડલ નક્કી કરી શક્યો નથી",
- // "collection.page.browse.search.head": "Search",
- "collection.page.browse.search.head": "શોધો",
+ "curation.form.handle.label": "હેન્ડલ:",
- // "collection.page.edit": "Edit this collection",
- "collection.page.edit": "આ સંગ્રહ સંપાદિત કરો",
+ "curation.form.handle.hint": "સૂચન: [તમારા-હેન્ડલ-પ્રિફિક્સ]/0 દાખલ કરો જેથી સમગ્ર સાઇટ પર ટાસ્ક ચલાવી શકાય (બધા ટાસ્ક આ ક્ષમતા સપોર્ટ કરી શકે છે)",
- // "collection.page.handle": "Permanent URI for this collection",
- "collection.page.handle": "આ સંગ્રહ માટે કાયમી URI",
+ "deny-request-copy.email.message": "પ્રિય {{ recipientName }},\\nતમારી વિનંતીનો જવાબ આપતાં મને દુઃખ છે કે હું તમને વિનંતી કરેલ ફાઇલ(ઓ)ની નકલ મોકલી શકું નહીં, દસ્તાવેજ: \\\"{{ itemUrl }}\\\" ({{ itemName }}), જેનો હું લેખક છું.\\n\\nશ્રેષ્ઠ શુભેચ્છાઓ,\\n{{ authorName }} <{{ authorEmail }}>",
- // "collection.page.license": "License",
- "collection.page.license": "લાઇસન્સ",
+ "deny-request-copy.email.subject": "દસ્તાવેજની નકલ માટે વિનંતી",
- // "collection.page.news": "News",
- "collection.page.news": "સમાચાર",
+ "deny-request-copy.error": "ભૂલ આવી",
- // "collection.page.options": "Options",
- "collection.page.options": "વિકલ્પો",
+ "deny-request-copy.header": "દસ્તાવેજની નકલ વિનંતી નકારી",
- // "collection.search.breadcrumbs": "Search",
- "collection.search.breadcrumbs": "શોધો",
+ "deny-request-copy.intro": "આ સંદેશા વિનંતી કરનારને મોકલવામાં આવશે",
- // "collection.search.results.head": "Search Results",
- "collection.search.results.head": "શોધ પરિણામો",
+ "deny-request-copy.success": "આઇટમ વિનંતી સફળતાપૂર્વક નકારી",
- // "collection.select.confirm": "Confirm selected",
- "collection.select.confirm": "પસંદ કરેલ ખાતરી કરો",
+ "dynamic-list.load-more": "વધુ લોડ કરો",
- // "collection.select.empty": "No collections to show",
- "collection.select.empty": "બતાવવા માટે કોઈ સંગ્રહો નથી",
+ "dropdown.clear": "પસંદગી સાફ કરો",
- // "collection.select.table.selected": "Selected collections",
- "collection.select.table.selected": "પસંદ કરેલ સંગ્રહો",
+ "dropdown.clear.tooltip": "પસંદ કરેલ વિકલ્પ દૂર કરો",
- // "collection.select.table.select": "Select collection",
- "collection.select.table.select": "સંગ્રહ પસંદ કરો",
+ "dso.name.untitled": "શીર્ષક વિના",
- // "collection.select.table.deselect": "Deselect collection",
- "collection.select.table.deselect": "સંગ્રહ પસંદ કરેલને દૂર કરો",
+ "dso.name.unnamed": "નામ વિના",
- // "collection.select.table.title": "Title",
- "collection.select.table.title": "શીર્ષક",
+ "dso-selector.create.collection.head": "નવો સંગ્રહ",
- // "collection.source.controls.head": "Harvest Controls",
- "collection.source.controls.head": "હાર્વેસ્ટ કંટ્રોલ્સ",
+ "dso-selector.create.collection.sub-level": "માં નવો સંગ્રહ બનાવો",
- // "collection.source.controls.test.submit.error": "Something went wrong with initiating the testing of the settings",
- "collection.source.controls.test.submit.error": "સેટિંગ્સની પરીક્ષણ શરૂ કરતી વખતે કંઈક ખોટું થયું",
+ "dso-selector.create.community.head": "નવો સમુદાય",
- // "collection.source.controls.test.failed": "The script to test the settings has failed",
- "collection.source.controls.test.failed": "સેટિંગ્સની પરીક્ષણ સ્ક્રિપ્ટ નિષ્ફળ થઈ",
+ "dso-selector.create.community.or-divider": "અથવા",
- // "collection.source.controls.test.completed": "The script to test the settings has successfully finished",
- "collection.source.controls.test.completed": "સેટિંગ્સની પરીક્ષણ સ્ક્રિપ્ટ સફળતાપૂર્વક પૂર્ણ થઈ",
+ "dso-selector.create.community.sub-level": "માં નવો સમુદાય બનાવો",
- // "collection.source.controls.test.submit": "Test configuration",
- "collection.source.controls.test.submit": "કૉન્ફિગરેશન પરીક્ષણ",
+ "dso-selector.create.community.top-level": "ટોપ-લેવલ સમુદાય બનાવો",
- // "collection.source.controls.test.running": "Testing configuration...",
- "collection.source.controls.test.running": "કૉન્ફિગરેશન પરીક્ષણ કરી રહ્યું છે...",
+ "dso-selector.create.item.head": "નવું આઇટમ",
- // "collection.source.controls.import.submit.success": "The import has been successfully initiated",
- "collection.source.controls.import.submit.success": "આયાત સફળતાપૂર્વક શરૂ કરવામાં આવી",
+ "dso-selector.create.item.sub-level": "માં નવું આઇટમ બનાવો",
- // "collection.source.controls.import.submit.error": "Something went wrong with initiating the import",
- "collection.source.controls.import.submit.error": "આયાત શરૂ કરતી વખતે કંઈક ખોટું થયું",
+ "dso-selector.create.submission.head": "નવું સબમિશન",
- // "collection.source.controls.import.submit": "Import now",
- "collection.source.controls.import.submit": "હવે આયાત કરો",
+ "dso-selector.edit.collection.head": "સંગ્રહ સંપાદિત કરો",
- // "collection.source.controls.import.running": "Importing...",
- "collection.source.controls.import.running": "આયાત કરી રહ્યું છે...",
+ "dso-selector.edit.community.head": "સમુદાય સંપાદિત કરો",
- // "collection.source.controls.import.failed": "An error occurred during the import",
- "collection.source.controls.import.failed": "આયાત દરમિયાન ભૂલ આવી",
+ "dso-selector.edit.item.head": "આઇટમ સંપાદિત કરો",
- // "collection.source.controls.import.completed": "The import completed",
- "collection.source.controls.import.completed": "આયાત પૂર્ણ",
+ "dso-selector.error.title": "{{ type }} માટે શોધ કરતી વખતે ભૂલ આવી",
- // "collection.source.controls.reset.submit.success": "The reset and reimport has been successfully initiated",
- "collection.source.controls.reset.submit.success": "રીસેટ અને ફરી આયાત સફળતાપૂર્વક શરૂ કરવામાં આવી",
+ "dso-selector.export-metadata.dspaceobject.head": "મેટાડેટા નિકાસ કરો",
- // "collection.source.controls.reset.submit.error": "Something went wrong with initiating the reset and reimport",
- "collection.source.controls.reset.submit.error": "રીસેટ અને ફરી આયાત શરૂ કરતી વખતે કંઈક ખોટું થયું",
+ "dso-selector.export-batch.dspaceobject.head": "બેચ (ZIP) નિકાસ કરો",
- // "collection.source.controls.reset.failed": "An error occurred during the reset and reimport",
"collection.source.controls.reset.failed": "રીસેટ અને ફરી આયાત દરમિયાન ભૂલ આવી",
- // "collection.source.controls.reset.completed": "The reset and reimport completed",
"collection.source.controls.reset.completed": "રીસેટ અને ફરી આયાત પૂર્ણ",
- // "collection.source.controls.reset.submit": "Reset and reimport",
"collection.source.controls.reset.submit": "રીસેટ અને ફરી આયાત",
- // "collection.source.controls.reset.running": "Resetting and reimporting...",
"collection.source.controls.reset.running": "રીસેટ અને ફરી આયાત કરી રહ્યું છે...",
- // "collection.source.controls.harvest.status": "Harvest status:",
- // TODO New key - Add a translation
- "collection.source.controls.harvest.status": "Harvest status:",
+ "collection.source.controls.harvest.status": "હાર્વેસ્ટ સ્થિતિ:",
- // "collection.source.controls.harvest.start": "Harvest start time:",
- // TODO New key - Add a translation
- "collection.source.controls.harvest.start": "Harvest start time:",
+ "collection.source.controls.harvest.start": "હાર્વેસ્ટ શરૂ સમય:",
- // "collection.source.controls.harvest.last": "Last time harvested:",
- // TODO New key - Add a translation
- "collection.source.controls.harvest.last": "Last time harvested:",
+ "collection.source.controls.harvest.last": "છેલ્લો હાર્વેસ્ટ સમય:",
- // "collection.source.controls.harvest.message": "Harvest info:",
- // TODO New key - Add a translation
- "collection.source.controls.harvest.message": "Harvest info:",
+ "collection.source.controls.harvest.message": "હાર્વેસ્ટ માહિતી:",
- // "collection.source.controls.harvest.no-information": "N/A",
"collection.source.controls.harvest.no-information": "N/A",
- // "collection.source.update.notifications.error.content": "The provided settings have been tested and didn't work.",
"collection.source.update.notifications.error.content": "પ્રદાન કરેલ સેટિંગ્સનું પરીક્ષણ કરવામાં આવ્યું છે અને તે કાર્યરત નથી.",
- // "collection.source.update.notifications.error.title": "Server Error",
"collection.source.update.notifications.error.title": "સર્વર ભૂલ",
- // "communityList.breadcrumbs": "Community List",
"communityList.breadcrumbs": "સમુદાય યાદી",
- // "communityList.tabTitle": "Community List",
"communityList.tabTitle": "સમુદાય યાદી",
- // "communityList.title": "List of Communities",
"communityList.title": "સમુદાયોની યાદી",
- // "communityList.showMore": "Show More",
"communityList.showMore": "વધુ બતાવો",
- // "communityList.expand": "Expand {{ name }}",
"communityList.expand": "{{ name }} વિસ્તારો",
- // "communityList.collapse": "Collapse {{ name }}",
"communityList.collapse": "{{ name }} સંકોચો",
- // "community.browse.logo": "Browse for a community logo",
"community.browse.logo": "સમુદાય લોગો માટે બ્રાઉઝ કરો",
- // "community.subcoms-cols.breadcrumbs": "Subcommunities and Collections",
"community.subcoms-cols.breadcrumbs": "ઉપસમુદાયો અને સંગ્રહો",
- // "community.create.breadcrumbs": "Create Community",
"community.create.breadcrumbs": "સમુદાય બનાવો",
- // "community.create.head": "Create a Community",
"community.create.head": "સમુદાય બનાવો",
- // "community.create.notifications.success": "Successfully created the community",
"community.create.notifications.success": "સમુદાય સફળતાપૂર્વક બનાવવામાં આવ્યો",
- // "community.create.sub-head": "Create a Sub-Community for Community {{ parent }}",
"community.create.sub-head": "સમુદાય {{ parent }} માટે ઉપસમુદાય બનાવો",
- // "community.curate.header": "Curate Community: {{community}}",
- // TODO New key - Add a translation
- "community.curate.header": "Curate Community: {{community}}",
+ "community.curate.header": "સમુદાય ક્યુરેટ કરો: {{community}}",
- // "community.delete.cancel": "Cancel",
"community.delete.cancel": "રદ કરો",
- // "community.delete.confirm": "Confirm",
"community.delete.confirm": "ખાતરી કરો",
- // "community.delete.processing": "Deleting...",
"community.delete.processing": "કાઢી રહ્યા છે...",
- // "community.delete.head": "Delete Community",
"community.delete.head": "સમુદાય કાઢી નાખો",
- // "community.delete.notification.fail": "Community could not be deleted",
"community.delete.notification.fail": "સમુદાય કાઢી શકાતો નથી",
- // "community.delete.notification.success": "Successfully started a process to delete this community",
"community.delete.notification.success": "સમુદાય સફળતાપૂર્વક કાઢી નાખ્યો",
- // "community.delete.text": "Are you sure you want to delete community \"{{ dso }}\"",
"community.delete.text": "શું તમે ખરેખર સમુદાય \\\"{{ dso }}\\\" કાઢી નાખવા માંગો છો",
- // "community.edit.delete": "Delete this community",
"community.edit.delete": "આ સમુદાય કાઢી નાખો",
- // "community.edit.head": "Edit Community",
"community.edit.head": "સમુદાય સંપાદિત કરો",
- // "community.edit.breadcrumbs": "Edit Community",
"community.edit.breadcrumbs": "સમુદાય સંપાદિત કરો",
- // "community.edit.logo.delete.title": "Delete logo",
"community.edit.logo.delete.title": "લોગો કાઢી નાખો",
- // "community-collection.edit.logo.delete.title": "Confirm deletion",
"community-collection.edit.logo.delete.title": "કાઢી નાખવું ખાતરી કરો",
- // "community.edit.logo.delete-undo.title": "Undo delete",
"community.edit.logo.delete-undo.title": "કાઢી નાખવું રદ કરો",
- // "community-collection.edit.logo.delete-undo.title": "Undo delete",
"community-collection.edit.logo.delete-undo.title": "કાઢી નાખવું રદ કરો",
- // "community.edit.logo.label": "Community logo",
"community.edit.logo.label": "સમુદાય લોગો",
- // "community.edit.logo.notifications.add.error": "Uploading community logo failed. Please verify the content before retrying.",
"community.edit.logo.notifications.add.error": "સમુદાય લોગો અપલોડ કરવામાં નિષ્ફળ. કૃપા કરીને સામગ્રીને ચકાસો અને ફરી પ્રયાસ કરો.",
- // "community.edit.logo.notifications.add.success": "Upload community logo successful.",
"community.edit.logo.notifications.add.success": "સમુદાય લોગો સફળતાપૂર્વક અપલોડ થયો.",
- // "community.edit.logo.notifications.delete.success.title": "Logo deleted",
"community.edit.logo.notifications.delete.success.title": "લોગો કાઢી નાખ્યો",
- // "community.edit.logo.notifications.delete.success.content": "Successfully deleted the community's logo",
"community.edit.logo.notifications.delete.success.content": "સમુદાયનો લોગો સફળતાપૂર્વક કાઢી નાખ્યો",
- // "community.edit.logo.notifications.delete.error.title": "Error deleting logo",
"community.edit.logo.notifications.delete.error.title": "લોગો કાઢી નાખવામાં ભૂલ",
- // "community.edit.logo.upload": "Drop a community logo to upload",
"community.edit.logo.upload": "અપલોડ કરવા માટે સમુદાય લોગો ડ્રોપ કરો",
- // "community.edit.notifications.success": "Successfully edited the community",
"community.edit.notifications.success": "સમુદાય સફળતાપૂર્વક સંપાદિત કર્યો",
- // "community.edit.notifications.unauthorized": "You do not have privileges to make this change",
"community.edit.notifications.unauthorized": "તમને આ ફેરફાર કરવાની પરવાનગી નથી",
- // "community.edit.notifications.error": "An error occurred while editing the community",
"community.edit.notifications.error": "સમુદાય સંપાદિત કરતી વખતે ભૂલ આવી",
- // "community.edit.return": "Back",
"community.edit.return": "પાછા",
- // "community.edit.tabs.curate.head": "Curate",
"community.edit.tabs.curate.head": "ક્યુરેટ",
- // "community.edit.tabs.curate.title": "Community Edit - Curate",
"community.edit.tabs.curate.title": "સમુદાય સંપાદન - ક્યુરેટ",
- // "community.edit.tabs.access-control.head": "Access Control",
"community.edit.tabs.access-control.head": "ઍક્સેસ કંટ્રોલ",
- // "community.edit.tabs.access-control.title": "Community Edit - Access Control",
"community.edit.tabs.access-control.title": "સમુદાય સંપાદન - ઍક્સેસ કંટ્રોલ",
- // "community.edit.tabs.metadata.head": "Edit Metadata",
"community.edit.tabs.metadata.head": "મેટાડેટા સંપાદિત કરો",
- // "community.edit.tabs.metadata.title": "Community Edit - Metadata",
"community.edit.tabs.metadata.title": "સમુદાય સંપાદન - મેટાડેટા",
- // "community.edit.tabs.roles.head": "Assign Roles",
"community.edit.tabs.roles.head": "ભૂમિકા સોંપો",
- // "community.edit.tabs.roles.title": "Community Edit - Roles",
"community.edit.tabs.roles.title": "સમુદાય સંપાદન - ભૂમિકા",
- // "community.edit.tabs.authorizations.head": "Authorizations",
"community.edit.tabs.authorizations.head": "અધિકૃતતા",
- // "community.edit.tabs.authorizations.title": "Community Edit - Authorizations",
"community.edit.tabs.authorizations.title": "સમુદાય સંપાદન - અધિકૃતતા",
- // "community.listelement.badge": "Community",
"community.listelement.badge": "સમુદાય",
- // "community.logo": "Community logo",
"community.logo": "સમુદાય લોગો",
- // "comcol-role.edit.no-group": "None",
"comcol-role.edit.no-group": "કોઈ નથી",
- // "comcol-role.edit.create": "Create",
"comcol-role.edit.create": "બનાવો",
- // "comcol-role.edit.create.error.title": "Failed to create a group for the '{{ role }}' role",
"comcol-role.edit.create.error.title": "'{{ role }}' ભૂમિકા માટે જૂથ બનાવવામાં નિષ્ફળ",
- // "comcol-role.edit.restrict": "Restrict",
"comcol-role.edit.restrict": "પ્રતિબંધિત",
- // "comcol-role.edit.delete": "Delete",
"comcol-role.edit.delete": "કાઢી નાખો",
- // "comcol-role.edit.delete.error.title": "Failed to delete the '{{ role }}' role's group",
"comcol-role.edit.delete.error.title": "'{{ role }}' ભૂમિકા માટેના જૂથને કાઢી નાખવામાં નિષ્ફળ",
- // "comcol-role.edit.delete.modal.header": "Delete Group \"{{ dsoName }}\"",
- // TODO New key - Add a translation
- "comcol-role.edit.delete.modal.header": "Delete Group \"{{ dsoName }}\"",
-
- // "comcol-role.edit.delete.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?",
- // TODO New key - Add a translation
- "comcol-role.edit.delete.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?",
-
- // "comcol-role.edit.delete.modal.cancel": "Cancel",
- // TODO New key - Add a translation
- "comcol-role.edit.delete.modal.cancel": "Cancel",
-
- // "comcol-role.edit.delete.modal.confirm": "Delete",
- // TODO New key - Add a translation
- "comcol-role.edit.delete.modal.confirm": "Delete",
-
- // "comcol-role.edit.community-admin.name": "Administrators",
"comcol-role.edit.community-admin.name": "એડમિનિસ્ટ્રેટર્સ",
- // "comcol-role.edit.collection-admin.name": "Administrators",
"comcol-role.edit.collection-admin.name": "એડમિનિસ્ટ્રેટર્સ",
- // "comcol-role.edit.community-admin.description": "Community administrators can create sub-communities or collections, and manage or assign management for those sub-communities or collections. In addition, they decide who can submit items to any sub-collections, edit item metadata (after submission), and add (map) existing items from other collections (subject to authorization).",
"comcol-role.edit.community-admin.description": "સમુદાય એડમિનિસ્ટ્રેટર્સ ઉપસમુદાયો અથવા સંગ્રહો બનાવી શકે છે, અને તે ઉપસમુદાયો અથવા સંગ્રહો માટે મેનેજમેન્ટ સોંપી શકે છે. ઉપરાંત, તેઓ નક્કી કરે છે કે કોણ ઉપસંગ્રહોમાં આઇટમ્સ સબમિટ કરી શકે છે, આઇટમ મેટાડેટા (સબમિશન પછી) સંપાદિત કરી શકે છે, અને અન્ય સંગ્રહોમાંથી (અધિકૃતતા મુજબ) આઇટમ્સ ઉમેરવા (મેપ) કરી શકે છે.",
- // "comcol-role.edit.collection-admin.description": "Collection administrators decide who can submit items to the collection, edit item metadata (after submission), and add (map) existing items from other collections to this collection (subject to authorization for that collection).",
"comcol-role.edit.collection-admin.description": "સંગ્રહ એડમિનિસ્ટ્રેટર્સ નક્કી કરે છે કે કોણ સંગ્રહમાં આઇટમ્સ સબમિટ કરી શકે છે, આઇટમ મેટાડેટા (સબમિશન પછી) સંપાદિત કરી શકે છે, અને આ સંગ્રહમાં અન્ય સંગ્રહોમાંથી આઇટમ્સ ઉમેરવા (મેપ) કરી શકે છે (તે સંગ્રહ માટેની અધિકૃતતા મુજબ).",
- // "comcol-role.edit.submitters.name": "Submitters",
"comcol-role.edit.submitters.name": "સબમિટર્સ",
- // "comcol-role.edit.submitters.description": "The E-People and Groups that have permission to submit new items to this collection.",
"comcol-role.edit.submitters.description": "E-People અને જૂથો જેમને આ સંગ્રહમાં નવા આઇટમ્સ સબમિટ કરવાની પરવાનગી છે.",
- // "comcol-role.edit.item_read.name": "Default item read access",
"comcol-role.edit.item_read.name": "ડિફોલ્ટ આઇટમ વાંચન ઍક્સેસ",
- // "comcol-role.edit.item_read.description": "E-People and Groups that can read new items submitted to this collection. Changes to this role are not retroactive. Existing items in the system will still be viewable by those who had read access at the time of their addition.",
"comcol-role.edit.item_read.description": "E-People અને જૂથો જેમને આ સંગ્રહમાં સબમિટ કરેલા નવા આઇટમ્સ વાંચવાની પરવાનગી છે. આ ભૂમિકા માટેના ફેરફારો પાછલા નથી. સિસ્ટમમાંના અસ્તિત્વમાં આવેલા આઇટમ્સ હજી પણ તે સમયે વાંચન ઍક્સેસ ધરાવતા લોકો દ્વારા જોવામાં આવશે.",
- // "comcol-role.edit.item_read.anonymous-group": "Default read for incoming items is currently set to Anonymous.",
"comcol-role.edit.item_read.anonymous-group": "આવતા આઇટમ્સ માટે ડિફોલ્ટ વાંચન હાલમાં અનામી માટે સેટ છે.",
- // "comcol-role.edit.bitstream_read.name": "Default bitstream read access",
"comcol-role.edit.bitstream_read.name": "ડિફોલ્ટ બિટસ્ટ્રીમ વાંચન ઍક્સેસ",
- // "comcol-role.edit.bitstream_read.description": "E-People and Groups that can read new bitstreams submitted to this collection. Changes to this role are not retroactive. Existing bitstreams in the system will still be viewable by those who had read access at the time of their addition.",
"comcol-role.edit.bitstream_read.description": "E-People અને જૂથો જેમને આ સંગ્રહમાં સબમિટ કરેલા નવા બિટસ્ટ્રીમ્સ વાંચવાની પરવાનગી છે. આ ભૂમિકા માટેના ફેરફારો પાછલા નથી. સિસ્ટમમાંના અસ્તિત્વમાં આવેલા બિટસ્ટ્રીમ્સ હજી પણ તે સમયે વાંચન ઍક્સેસ ધરાવતા લોકો દ્વારા જોવામાં આવશે.",
- // "comcol-role.edit.bitstream_read.anonymous-group": "Default read for incoming bitstreams is currently set to Anonymous.",
"comcol-role.edit.bitstream_read.anonymous-group": "આવતા બિટસ્ટ્રીમ્સ માટે ડિફોલ્ટ વાંચન હાલમાં અનામી માટે સેટ છે.",
- // "comcol-role.edit.editor.name": "Editors",
"comcol-role.edit.editor.name": "સંપાદકો",
- // "comcol-role.edit.editor.description": "Editors are able to edit the metadata of incoming submissions, and then accept or reject them.",
"comcol-role.edit.editor.description": "સંપાદકો આવનારા સબમિશન્સના મેટાડેટા સંપાદિત કરી શકે છે, અને પછી તેમને સ્વીકારી અથવા નકારી શકે છે.",
- // "comcol-role.edit.finaleditor.name": "Final editors",
"comcol-role.edit.finaleditor.name": "અંતિમ સંપાદકો",
- // "comcol-role.edit.finaleditor.description": "Final editors are able to edit the metadata of incoming submissions, but will not be able to reject them.",
"comcol-role.edit.finaleditor.description": "અંતિમ સંપાદકો આવનારા સબમિશન્સના મેટાડેટા સંપાદિત કરી શકે છે, પરંતુ તેમને નકારી શકશે નહીં.",
- // "comcol-role.edit.reviewer.name": "Reviewers",
"comcol-role.edit.reviewer.name": "રિવ્યુઅર્સ",
- // "comcol-role.edit.reviewer.description": "Reviewers are able to accept or reject incoming submissions. However, they are not able to edit the submission's metadata.",
"comcol-role.edit.reviewer.description": "રિવ્યુઅર્સ આવનારા સબમિશન્સને સ્વીકારી અથવા નકારી શકે છે. જો કે, તેઓ સબમિશનના મેટાડેટા સંપાદિત કરી શકશે નહીં.",
- // "comcol-role.edit.scorereviewers.name": "Score Reviewers",
"comcol-role.edit.scorereviewers.name": "સ્કોર રિવ્યુઅર્સ",
- // "comcol-role.edit.scorereviewers.description": "Reviewers are able to give a score to incoming submissions, this will define whether the submission will be rejected or not.",
"comcol-role.edit.scorereviewers.description": "રિવ્યુઅર્સ આવનારા સબમિશન્સને સ્કોર આપી શકે છે, જે નક્કી કરશે કે સબમિશન નકારવામાં આવશે કે નહીં.",
- // "community.form.abstract": "Short Description",
"community.form.abstract": "સંક્ષિપ્ત વર્ણન",
- // "community.form.description": "Introductory text (HTML)",
"community.form.description": "પરિચયાત્મક લખાણ (HTML)",
- // "community.form.errors.title.required": "Please enter a community name",
"community.form.errors.title.required": "કૃપા કરીને સમુદાયનું નામ દાખલ કરો",
- // "community.form.rights": "Copyright text (HTML)",
"community.form.rights": "કૉપિરાઇટ લખાણ (HTML)",
- // "community.form.tableofcontents": "News (HTML)",
"community.form.tableofcontents": "સમાચાર (HTML)",
- // "community.form.title": "Name",
"community.form.title": "નામ",
- // "community.page.edit": "Edit this community",
"community.page.edit": "આ સમુદાય સંપાદિત કરો",
- // "community.page.handle": "Permanent URI for this community",
"community.page.handle": "આ સમુદાય માટે કાયમી URI",
- // "community.page.license": "License",
"community.page.license": "લાઇસન્સ",
- // "community.page.news": "News",
"community.page.news": "સમાચાર",
- // "community.page.options": "Options",
"community.page.options": "વિકલ્પો",
- // "community.all-lists.head": "Subcommunities and Collections",
"community.all-lists.head": "ઉપસમુદાયો અને સંગ્રહો",
- // "community.search.breadcrumbs": "Search",
"community.search.breadcrumbs": "શોધો",
- // "community.search.results.head": "Search Results",
"community.search.results.head": "શોધ પરિણામો",
- // "community.sub-collection-list.head": "Collections in this community",
"community.sub-collection-list.head": "આ સમુદાયમાં સંગ્રહો",
- // "community.sub-community-list.head": "Communities in this Community",
"community.sub-community-list.head": "આ સમુદાયમાં સમુદાયો",
- // "confirmation-modal.pending-changes.header": "Unsaved changes",
- // TODO New key - Add a translation
- "confirmation-modal.pending-changes.header": "Unsaved changes",
-
- // "confirmation-modal.pending-changes.info": "There are unsaved changes. Do you want to leave the page?",
- // TODO New key - Add a translation
- "confirmation-modal.pending-changes.info": "There are unsaved changes. Do you want to leave the page?",
-
- // "confirmation-modal.pending-changes.cancel": "Cancel",
- // TODO New key - Add a translation
- "confirmation-modal.pending-changes.cancel": "Cancel",
-
- // "confirmation-modal.pending-changes.confirm": "Leave",
- // TODO New key - Add a translation
- "confirmation-modal.pending-changes.confirm": "Leave",
-
- // "context-menu.actions.audit-item.btn": "Audit",
- // TODO New key - Add a translation
- "context-menu.actions.audit-item.btn": "Audit",
-
- // "cookies.consent.accept-all": "Accept all",
"cookies.consent.accept-all": "બધા સ્વીકારો",
- // "cookies.consent.accept-selected": "Accept selected",
"cookies.consent.accept-selected": "પસંદ કરેલ સ્વીકારો",
- // "cookies.consent.app.opt-out.description": "This app is loaded by default (but you can opt out)",
"cookies.consent.app.opt-out.description": "આ એપ્લિકેશન ડિફોલ્ટ દ્વારા લોડ થાય છે (પરંતુ તમે તેને ઓપ્ટ આઉટ કરી શકો છો)",
- // "cookies.consent.app.opt-out.title": "(opt-out)",
"cookies.consent.app.opt-out.title": "(ઓપ્ટ-આઉટ)",
- // "cookies.consent.app.purpose": "purpose",
"cookies.consent.app.purpose": "હેતુ",
- // "cookies.consent.app.required.description": "This application is always required",
"cookies.consent.app.required.description": "આ એપ્લિકેશન હંમેશા જરૂરી છે",
- // "cookies.consent.app.required.title": "(always required)",
"cookies.consent.app.required.title": "(હંમેશા જરૂરી)",
- // "cookies.consent.update": "There were changes since your last visit, please update your consent.",
"cookies.consent.update": "તમારા છેલ્લા મુલાકાત પછી ફેરફારો થયા છે, કૃપા કરીને તમારી સંમતિ અપડેટ કરો.",
- // "cookies.consent.close": "Close",
"cookies.consent.close": "બંધ કરો",
- // "cookies.consent.decline": "Decline",
"cookies.consent.decline": "નકારો",
- // "cookies.consent.decline-all": "Decline all",
"cookies.consent.decline-all": "બધા નકારો",
- // "cookies.consent.ok": "That's ok",
"cookies.consent.ok": "તે ઠીક છે",
- // "cookies.consent.save": "Save",
"cookies.consent.save": "સાચવો",
- // "cookies.consent.content-notice.description": "We collect and process your personal information for the following purposes: {purposes}",
- // TODO New key - Add a translation
- "cookies.consent.content-notice.description": "We collect and process your personal information for the following purposes: {purposes}",
+ "cookies.consent.content-notice.description": "અમે નીચેના હેતુઓ માટે તમારી વ્યક્તિગત માહિતી એકત્રિત અને પ્રક્રિયા કરીએ છીએ: {purposes}",
- // "cookies.consent.content-notice.learnMore": "Customize",
"cookies.consent.content-notice.learnMore": "કસ્ટમાઇઝ કરો",
- // "cookies.consent.content-modal.description": "Here you can see and customize the information that we collect about you.",
"cookies.consent.content-modal.description": "અહીં તમે જોઈ શકો છો અને કસ્ટમાઇઝ કરી શકો છો કે અમે તમારા વિશે કઈ માહિતી એકત્રિત કરીએ છીએ.",
- // "cookies.consent.content-modal.privacy-policy.name": "privacy policy",
"cookies.consent.content-modal.privacy-policy.name": "ગોપનીયતા નીતિ",
- // "cookies.consent.content-modal.privacy-policy.text": "To learn more, please read our {privacyPolicy}.",
"cookies.consent.content-modal.privacy-policy.text": "વધુ જાણવા માટે, કૃપા કરીને અમારી {privacyPolicy} વાંચો.",
- // "cookies.consent.content-modal.no-privacy-policy.text": "",
"cookies.consent.content-modal.no-privacy-policy.text": "",
- // "cookies.consent.content-modal.title": "Information that we collect",
"cookies.consent.content-modal.title": "અમે જે માહિતી એકત્રિત કરીએ છીએ",
- // "cookies.consent.app.title.accessibility": "Accessibility Settings",
- // TODO New key - Add a translation
- "cookies.consent.app.title.accessibility": "Accessibility Settings",
-
- // "cookies.consent.app.description.accessibility": "Required for saving your accessibility settings locally",
- // TODO New key - Add a translation
- "cookies.consent.app.description.accessibility": "Required for saving your accessibility settings locally",
-
- // "cookies.consent.app.title.authentication": "Authentication",
"cookies.consent.app.title.authentication": "પ્રમાણન",
- // "cookies.consent.app.description.authentication": "Required for signing you in",
"cookies.consent.app.description.authentication": "તમને સાઇન ઇન કરવા માટે જરૂરી છે",
- // "cookies.consent.app.title.correlation-id": "Correlation ID",
- // TODO New key - Add a translation
- "cookies.consent.app.title.correlation-id": "Correlation ID",
-
- // "cookies.consent.app.description.correlation-id": "Allow us to track your session in backend logs for support/debugging purposes",
- // TODO New key - Add a translation
- "cookies.consent.app.description.correlation-id": "Allow us to track your session in backend logs for support/debugging purposes",
-
- // "cookies.consent.app.title.preferences": "Preferences",
"cookies.consent.app.title.preferences": "પસંદગીઓ",
- // "cookies.consent.app.description.preferences": "Required for saving your preferences",
"cookies.consent.app.description.preferences": "તમારી પસંદગીઓ સાચવવા માટે જરૂરી છે",
- // "cookies.consent.app.title.acknowledgement": "Acknowledgement",
"cookies.consent.app.title.acknowledgement": "સ્વીકાર",
- // "cookies.consent.app.description.acknowledgement": "Required for saving your acknowledgements and consents",
"cookies.consent.app.description.acknowledgement": "તમારા સ્વીકાર અને સંમતિઓ સાચવવા માટે જરૂરી છે",
- // "cookies.consent.app.title.google-analytics": "Google Analytics",
"cookies.consent.app.title.google-analytics": "Google Analytics",
- // "cookies.consent.app.description.google-analytics": "Allows us to track statistical data",
"cookies.consent.app.description.google-analytics": "અમને આંકડાકીય ડેટા ટ્રેક કરવાની મંજૂરી આપે છે",
- // "cookies.consent.app.title.google-recaptcha": "Google reCaptcha",
"cookies.consent.app.title.google-recaptcha": "Google reCaptcha",
- // "cookies.consent.app.description.google-recaptcha": "We use google reCAPTCHA service during registration and password recovery",
"cookies.consent.app.description.google-recaptcha": "અમે નોંધણી અને પાસવર્ડ પુનઃપ્રાપ્તિ દરમિયાન Google reCAPTCHA સેવા નો ઉપયોગ કરીએ છીએ",
- // "cookies.consent.app.title.matomo": "Matomo",
"cookies.consent.app.title.matomo": "Matomo",
- // "cookies.consent.app.description.matomo": "Allows us to track statistical data",
"cookies.consent.app.description.matomo": "અમને આંકડાકીય ડેટા ટ્રેક કરવાની મંજૂરી આપે છે",
- // "cookies.consent.purpose.functional": "Functional",
"cookies.consent.purpose.functional": "કાર્યાત્મક",
- // "cookies.consent.purpose.statistical": "Statistical",
"cookies.consent.purpose.statistical": "આંકડાકીય",
- // "cookies.consent.purpose.registration-password-recovery": "Registration and Password recovery",
"cookies.consent.purpose.registration-password-recovery": "નોંધણી અને પાસવર્ડ પુનઃપ્રાપ્તિ",
- // "cookies.consent.purpose.sharing": "Sharing",
"cookies.consent.purpose.sharing": "શેરિંગ",
- // "curation-task.task.citationpage.label": "Generate Citation Page",
"curation-task.task.citationpage.label": "સાઇટેશન પેજ જનરેટ કરો",
- // "curation-task.task.checklinks.label": "Check Links in Metadata",
"curation-task.task.checklinks.label": "મેટાડેટામાં લિંક્સ તપાસો",
- // "curation-task.task.noop.label": "NOOP",
"curation-task.task.noop.label": "NOOP",
- // "curation-task.task.profileformats.label": "Profile Bitstream Formats",
"curation-task.task.profileformats.label": "પ્રોફાઇલ બિટસ્ટ્રીમ ફોર્મેટ્સ",
- // "curation-task.task.requiredmetadata.label": "Check for Required Metadata",
"curation-task.task.requiredmetadata.label": "જરૂરી મેટાડેટા માટે તપાસો",
- // "curation-task.task.translate.label": "Microsoft Translator",
"curation-task.task.translate.label": "Microsoft Translator",
- // "curation-task.task.vscan.label": "Virus Scan",
"curation-task.task.vscan.label": "વાયરસ સ્કેન",
- // "curation-task.task.registerdoi.label": "Register DOI",
"curation-task.task.registerdoi.label": "DOI નોંધણી કરો",
- // "curation.form.task-select.label": "Task:",
- // TODO New key - Add a translation
- "curation.form.task-select.label": "Task:",
+ "curation.form.task-select.label": "ટાસ્ક:",
- // "curation.form.submit": "Start",
"curation.form.submit": "શરૂ કરો",
- // "curation.form.submit.success.head": "The curation task has been started successfully",
"curation.form.submit.success.head": "ક્યુરેશન ટાસ્ક સફળતાપૂર્વક શરૂ કરવામાં આવી",
- // "curation.form.submit.success.content": "You will be redirected to the corresponding process page.",
"curation.form.submit.success.content": "તમને સંબંધિત પ્રક્રિયા પૃષ્ઠ પર રીડાયરેક્ટ કરવામાં આવશે.",
- // "curation.form.submit.error.head": "Running the curation task failed",
"curation.form.submit.error.head": "ક્યુરેશન ટાસ્ક ચલાવતી વખતે નિષ્ફળ",
- // "curation.form.submit.error.content": "An error occurred when trying to start the curation task.",
"curation.form.submit.error.content": "ક્યુરેશન ટાસ્ક શરૂ કરવાનો પ્રયાસ કરતી વખતે ભૂલ આવી.",
- // "curation.form.submit.error.invalid-handle": "Couldn't determine the handle for this object",
"curation.form.submit.error.invalid-handle": "આ ઑબ્જેક્ટ માટે હેન્ડલ નક્કી કરી શક્યો નથી",
- // "curation.form.handle.label": "Handle:",
- // TODO New key - Add a translation
- "curation.form.handle.label": "Handle:",
+ "curation.form.handle.label": "હેન્ડલ:",
- // "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": "Hint: Enter [your-handle-prefix]/0 to run a task across entire site (not all tasks may support this capability)",
+ "curation.form.handle.hint": "સૂચન: [તમારા-હેન્ડલ-પ્રિફિક્સ]/0 દાખલ કરો જેથી સમગ્ર સાઇટ પર ટાસ્ક ચલાવી શકાય (બધા ટાસ્ક આ ક્ષમતા સપોર્ટ કરી શકે છે)",
- // "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": "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 }}>",
+ "deny-request-copy.email.message": "પ્રિય {{ recipientName }},\\nતમારી વિનંતીનો જવાબ આપતાં મને દુઃખ છે કે હું તમને વિનંતી કરેલ ફાઇલ(ઓ)ની નકલ મોકલી શકું નહીં, દસ્તાવેજ: \\\"{{ itemUrl }}\\\" ({{ itemName }}), જેનો હું લેખક છું.\\n\\nશ્રેષ્ઠ શુભેચ્છાઓ,\\n{{ authorName }} <{{ authorEmail }}>",
- // "deny-request-copy.email.subject": "Request copy of document",
"deny-request-copy.email.subject": "દસ્તાવેજની નકલ માટે વિનંતી",
- // "deny-request-copy.error": "An error occurred",
"deny-request-copy.error": "ભૂલ આવી",
- // "deny-request-copy.header": "Deny document copy request",
"deny-request-copy.header": "દસ્તાવેજની નકલ વિનંતી નકારી",
- // "deny-request-copy.intro": "This message will be sent to the applicant of the request",
"deny-request-copy.intro": "આ સંદેશા વિનંતી કરનારને મોકલવામાં આવશે",
- // "deny-request-copy.success": "Successfully denied item request",
"deny-request-copy.success": "આઇટમ વિનંતી સફળતાપૂર્વક નકારી",
- // "dynamic-list.load-more": "Load more",
"dynamic-list.load-more": "વધુ લોડ કરો",
- // "dropdown.clear": "Clear selection",
"dropdown.clear": "પસંદગી સાફ કરો",
- // "dropdown.clear.tooltip": "Clear the selected option",
"dropdown.clear.tooltip": "પસંદ કરેલ વિકલ્પ દૂર કરો",
- // "dso.name.untitled": "Untitled",
"dso.name.untitled": "શીર્ષક વિના",
- // "dso.name.unnamed": "Unnamed",
"dso.name.unnamed": "નામ વિના",
- // "dso-selector.create.collection.head": "New collection",
"dso-selector.create.collection.head": "નવો સંગ્રહ",
- // "dso-selector.create.collection.sub-level": "Create a new collection in",
"dso-selector.create.collection.sub-level": "માં નવો સંગ્રહ બનાવો",
- // "dso-selector.create.community.head": "New community",
"dso-selector.create.community.head": "નવો સમુદાય",
- // "dso-selector.create.community.or-divider": "or",
"dso-selector.create.community.or-divider": "અથવા",
- // "dso-selector.create.community.sub-level": "Create a new community in",
"dso-selector.create.community.sub-level": "માં નવો સમુદાય બનાવો",
- // "dso-selector.create.community.top-level": "Create a new top-level community",
"dso-selector.create.community.top-level": "ટોપ-લેવલ સમુદાય બનાવો",
- // "dso-selector.create.item.head": "New item",
"dso-selector.create.item.head": "નવું આઇટમ",
- // "dso-selector.create.item.sub-level": "Create a new item in",
"dso-selector.create.item.sub-level": "માં નવું આઇટમ બનાવો",
- // "dso-selector.create.submission.head": "New submission",
"dso-selector.create.submission.head": "નવું સબમિશન",
- // "dso-selector.edit.collection.head": "Edit collection",
"dso-selector.edit.collection.head": "સંગ્રહ સંપાદિત કરો",
- // "dso-selector.edit.community.head": "Edit community",
"dso-selector.edit.community.head": "સમુદાય સંપાદિત કરો",
- // "dso-selector.edit.item.head": "Edit item",
"dso-selector.edit.item.head": "આઇટમ સંપાદિત કરો",
- // "dso-selector.error.title": "An error occurred searching for a {{ type }}",
"dso-selector.error.title": "{{ type }} માટે શોધ કરતી વખતે ભૂલ આવી",
- // "dso-selector.export-metadata.dspaceobject.head": "Export metadata from",
"dso-selector.export-metadata.dspaceobject.head": "મેટાડેટા નિકાસ કરો",
- // "dso-selector.export-batch.dspaceobject.head": "Export Batch (ZIP) from",
"dso-selector.export-batch.dspaceobject.head": "બેચ (ZIP) નિકાસ કરો",
- // "dso-selector.import-batch.dspaceobject.head": "Import batch from",
"dso-selector.import-batch.dspaceobject.head": "બેચ આયાત કરો",
- // "dso-selector.no-results": "No {{ type }} found",
"dso-selector.no-results": "કોઈ {{ type }} મળ્યું નથી",
- // "dso-selector.placeholder": "Search for {{ type }}",
- // TODO Source message changed - Revise the translation
"dso-selector.placeholder": "{{ type }} માટે શોધો",
- // "dso-selector.placeholder.type.community": "community",
"dso-selector.placeholder.type.community": "સમુદાય",
- // "dso-selector.placeholder.type.collection": "collection",
"dso-selector.placeholder.type.collection": "સંગ્રહ",
- // "dso-selector.placeholder.type.item": "item",
"dso-selector.placeholder.type.item": "આઇટમ",
- // "dso-selector.select.collection.head": "Select a collection",
"dso-selector.select.collection.head": "સંગ્રહ પસંદ કરો",
- // "dso-selector.set-scope.community.head": "Select a search scope",
"dso-selector.set-scope.community.head": "શોધ સ્કોપ પસંદ કરો",
- // "dso-selector.set-scope.community.button": "Search all of DSpace",
"dso-selector.set-scope.community.button": "DSpace ના બધા શોધો",
- // "dso-selector.set-scope.community.or-divider": "or",
"dso-selector.set-scope.community.or-divider": "અથવા",
- // "dso-selector.set-scope.community.input-header": "Search for a community or collection",
"dso-selector.set-scope.community.input-header": "સમુદાય અથવા સંગ્રહ માટે શોધો",
- // "dso-selector.claim.item.head": "Profile tips",
"dso-selector.claim.item.head": "પ્રોફાઇલ ટીપ્સ",
- // "dso-selector.claim.item.body": "These are existing profiles that may be related to you. If you recognize yourself in one of these profiles, select it and on the detail page, among the options, choose to claim it. Otherwise you can create a new profile from scratch using the button below.",
"dso-selector.claim.item.body": "આ મોજુદા પ્રોફાઇલ્સ છે જે તમારા સંબંધિત હોઈ શકે છે. જો તમે આ પ્રોફાઇલ્સમાં પોતાને ઓળખો છો, તો તેને પસંદ કરો અને વિગત પૃષ્ઠ પર, વિકલ્પોમાંથી, તેને દાવો કરવા માટે પસંદ કરો. અન્યથા, તમે નીચેના બટનનો ઉપયોગ કરીને નવું પ્રોફાઇલ શરુ કરી શકો છો.",
- // "dso-selector.claim.item.not-mine-label": "None of these are mine",
"dso-selector.claim.item.not-mine-label": "આમાંથી કોઈપણ મારું નથી",
- // "dso-selector.claim.item.create-from-scratch": "Create a new one",
"dso-selector.claim.item.create-from-scratch": "નવું બનાવો",
- // "dso-selector.results-could-not-be-retrieved": "Something went wrong, please refresh again ↻",
"dso-selector.results-could-not-be-retrieved": "કંઈક ખોટું થયું, કૃપા કરીને ફરીથી રિફ્રેશ કરો ↻",
- // "supervision-group-selector.header": "Supervision Group Selector",
"supervision-group-selector.header": "સુપરવિઝન ગ્રુપ સિલેક્ટર",
- // "supervision-group-selector.select.type-of-order.label": "Select a type of Order",
"supervision-group-selector.select.type-of-order.label": "ઓર્ડરનો પ્રકાર પસંદ કરો",
- // "supervision-group-selector.select.type-of-order.option.none": "NONE",
"supervision-group-selector.select.type-of-order.option.none": "કોઈ નથી",
- // "supervision-group-selector.select.type-of-order.option.editor": "EDITOR",
"supervision-group-selector.select.type-of-order.option.editor": "સંપાદક",
- // "supervision-group-selector.select.type-of-order.option.observer": "OBSERVER",
"supervision-group-selector.select.type-of-order.option.observer": "નિરીક્ષક",
- // "supervision-group-selector.select.group.label": "Select a Group",
"supervision-group-selector.select.group.label": "જૂથ પસંદ કરો",
- // "supervision-group-selector.button.cancel": "Cancel",
"supervision-group-selector.button.cancel": "રદ કરો",
- // "supervision-group-selector.button.save": "Save",
"supervision-group-selector.button.save": "સાચવો",
- // "supervision-group-selector.select.type-of-order.error": "Please select a type of order",
"supervision-group-selector.select.type-of-order.error": "કૃપા કરીને ઓર્ડરનો પ્રકાર પસંદ કરો",
- // "supervision-group-selector.select.group.error": "Please select a group",
"supervision-group-selector.select.group.error": "કૃપા કરીને જૂથ પસંદ કરો",
- // "supervision-group-selector.notification.create.success.title": "Successfully created supervision order for group {{ name }}",
"supervision-group-selector.notification.create.success.title": "જૂથ {{ name }} માટે સુપરવિઝન ઓર્ડર સફળતાપૂર્વક બનાવવામાં આવ્યો",
- // "supervision-group-selector.notification.create.failure.title": "Error",
"supervision-group-selector.notification.create.failure.title": "ભૂલ",
- // "supervision-group-selector.notification.create.already-existing": "A supervision order already exists on this item for selected group",
"supervision-group-selector.notification.create.already-existing": "પસંદ કરેલ જૂથ માટે પહેલેથી જ સુપરવિઝન ઓર્ડર અસ્તિત્વમાં છે",
- // "confirmation-modal.export-metadata.header": "Export metadata for {{ dsoName }}",
"confirmation-modal.export-metadata.header": "{{ dsoName }} માટે મેટાડેટા નિકાસ કરો",
- // "confirmation-modal.export-metadata.info": "Are you sure you want to export metadata for {{ dsoName }}",
"confirmation-modal.export-metadata.info": "શું તમે ખરેખર {{ dsoName }} માટે મેટાડેટા નિકાસ કરવા માંગો છો",
- // "confirmation-modal.export-metadata.cancel": "Cancel",
"confirmation-modal.export-metadata.cancel": "રદ કરો",
- // "confirmation-modal.export-metadata.confirm": "Export",
"confirmation-modal.export-metadata.confirm": "નિકાસ કરો",
- // "confirmation-modal.export-batch.header": "Export batch (ZIP) for {{ dsoName }}",
"confirmation-modal.export-batch.header": "{{ dsoName }} માટે બેચ (ZIP) નિકાસ કરો",
- // "confirmation-modal.export-batch.info": "Are you sure you want to export batch (ZIP) for {{ dsoName }}",
"confirmation-modal.export-batch.info": "શું તમે ખરેખર {{ dsoName }} માટે બેચ (ZIP) નિકાસ કરવા માંગો છો",
- // "confirmation-modal.export-batch.cancel": "Cancel",
"confirmation-modal.export-batch.cancel": "રદ કરો",
- // "confirmation-modal.export-batch.confirm": "Export",
"confirmation-modal.export-batch.confirm": "નિકાસ કરો",
- // "confirmation-modal.delete-eperson.header": "Delete EPerson \"{{ dsoName }}\"",
"confirmation-modal.delete-eperson.header": "EPerson \\\"{{ dsoName }}\\\" કાઢી નાખો",
- // "confirmation-modal.delete-eperson.info": "Are you sure you want to delete EPerson \"{{ dsoName }}\"",
"confirmation-modal.delete-eperson.info": "શું તમે ખરેખર EPerson \\\"{{ dsoName }}\\\" કાઢી નાખવા માંગો છો",
- // "confirmation-modal.delete-eperson.cancel": "Cancel",
"confirmation-modal.delete-eperson.cancel": "રદ કરો",
- // "confirmation-modal.delete-eperson.confirm": "Delete",
"confirmation-modal.delete-eperson.confirm": "કાઢી નાખો",
- // "confirmation-modal.delete-community-collection-logo.info": "Are you sure you want to delete the logo?",
"confirmation-modal.delete-community-collection-logo.info": "શું તમે ખરેખર લોગો કાઢી નાખવા માંગો છો?",
- // "confirmation-modal.delete-profile.header": "Delete Profile",
"confirmation-modal.delete-profile.header": "પ્રોફાઇલ કાઢી નાખો",
- // "confirmation-modal.delete-profile.info": "Are you sure you want to delete your profile",
"confirmation-modal.delete-profile.info": "શું તમે ખરેખર તમારું પ્રોફાઇલ કાઢી નાખવા માંગો છો",
- // "confirmation-modal.delete-profile.cancel": "Cancel",
"confirmation-modal.delete-profile.cancel": "રદ કરો",
- // "confirmation-modal.delete-profile.confirm": "Delete",
"confirmation-modal.delete-profile.confirm": "કાઢી નાખો",
- // "confirmation-modal.delete-subscription.header": "Delete Subscription",
"confirmation-modal.delete-subscription.header": "સબ્સ્ક્રિપ્શન કાઢી નાખો",
- // "confirmation-modal.delete-subscription.info": "Are you sure you want to delete subscription for \"{{ dsoName }}\"",
"confirmation-modal.delete-subscription.info": "શું તમે ખરેખર \\\"{{ dsoName }}\\\" માટે સબ્સ્ક્રિપ્શન કાઢી નાખવા માંગો છો",
- // "confirmation-modal.delete-subscription.cancel": "Cancel",
"confirmation-modal.delete-subscription.cancel": "રદ કરો",
- // "confirmation-modal.delete-subscription.confirm": "Delete",
"confirmation-modal.delete-subscription.confirm": "કાઢી નાખો",
- // "confirmation-modal.review-account-info.header": "Save the changes",
"confirmation-modal.review-account-info.header": "ફેરફારો સાચવો",
- // "confirmation-modal.review-account-info.info": "Are you sure you want to save the changes to your profile",
"confirmation-modal.review-account-info.info": "શું તમે ખરેખર તમારા પ્રોફાઇલમાં ફેરફારો સાચવવા માંગો છો",
- // "confirmation-modal.review-account-info.cancel": "Cancel",
"confirmation-modal.review-account-info.cancel": "રદ કરો",
- // "confirmation-modal.review-account-info.confirm": "Confirm",
"confirmation-modal.review-account-info.confirm": "ખાતરી કરો",
- // "confirmation-modal.review-account-info.save": "Save",
"confirmation-modal.review-account-info.save": "સાચવો",
- // "error.bitstream": "Error fetching bitstream",
"error.bitstream": "બિટસ્ટ્રીમ મેળવતી વખતે ભૂલ",
- // "error.browse-by": "Error fetching items",
"error.browse-by": "આઇટમ્સ મેળવતી વખતે ભૂલ",
- // "error.collection": "Error fetching collection",
"error.collection": "સંગ્રહ મેળવતી વખતે ભૂલ",
- // "error.collections": "Error fetching collections",
"error.collections": "સંગ્રહો મેળવતી વખતે ભૂલ",
- // "error.community": "Error fetching community",
"error.community": "સમુદાય મેળવતી વખતે ભૂલ",
- // "error.identifier": "No item found for the identifier",
"error.identifier": "આ ઓળખકર્તા માટે કોઈ આઇટમ મળ્યું નથી",
- // "error.default": "Error",
"error.default": "ભૂલ",
- // "error.item": "Error fetching item",
"error.item": "આઇટમ મેળવતી વખતે ભૂલ",
- // "error.custom-url-conflict.title": "Duplicate custom URL detected",
- // TODO New key - Add a translation
- "error.custom-url-conflict.title": "Duplicate custom URL detected",
-
- // "error.custom-url-conflict.description": "The custom URL \"{{customUrl}}\" is assigned to more than one item. This causes a conflict and the item cannot be displayed.",
- // TODO New key - Add a translation
- "error.custom-url-conflict.description": "The custom URL \"{{customUrl}}\" is assigned to more than one item. This causes a conflict and the item cannot be displayed.",
-
- // "error.custom-url-conflict.admin-action": "Please contact your repository administrator. The following affected items need their dspace.customurl metadata fixed so each value is unique:",
- // TODO New key - Add a translation
- "error.custom-url-conflict.admin-action": "Please contact your repository administrator. The following affected items need their dspace.customurl metadata fixed so each value is unique:",
-
- // "error.custom-url-conflict.edit-link": "Edit \"{{name}}\" ({{uuid}})",
- // TODO New key - Add a translation
- "error.custom-url-conflict.edit-link": "Edit \"{{name}}\" ({{uuid}})",
-
- // "error.custom-url-conflict.no-items-found": "No conflicting items could be retrieved. Please contact your administrator.",
- // TODO New key - Add a translation
- "error.custom-url-conflict.no-items-found": "No conflicting items could be retrieved. Please contact your administrator.",
-
- // "error.items": "Error fetching items",
"error.items": "આઇટમ્સ મેળવતી વખતે ભૂલ",
- // "error.objects": "Error fetching objects",
"error.objects": "વસ્તુઓ મેળવતી વખતે ભૂલ",
- // "error.recent-submissions": "Error fetching recent submissions",
"error.recent-submissions": "તાજેતરના સબમિશન્સ મેળવતી વખતે ભૂલ",
- // "error.profile-groups": "Error retrieving profile groups",
"error.profile-groups": "પ્રોફાઇલ જૂથો મેળવતી વખતે ભૂલ",
- // "error.search-results": "Error fetching search results",
"error.search-results": "શોધ પરિણામો મેળવતી વખતે ભૂલ",
- // "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": "Search query is not valid. Please check Solr query syntax best practices for further information about this error.",
+ "error.invalid-search-query": "શોધ ક્વેરી માન્ય નથી. આ ભૂલ વિશે વધુ માહિતી માટે Solr ક્વેરી સિન્ટેક્સ શ્રેષ્ઠ પ્રથાઓ તપાસો.",
- // "error.sub-collections": "Error fetching sub-collections",
"error.sub-collections": "ઉપ-સંગ્રહો મેળવતી વખતે ભૂલ",
- // "error.sub-communities": "Error fetching sub-communities",
"error.sub-communities": "ઉપ-સમુદાયો મેળવતી વખતે ભૂલ",
- // "error.submission.sections.init-form-error": "An error occurred during section initialize, please check your input-form configuration. Details are below :
",
- // TODO New key - Add a translation
- "error.submission.sections.init-form-error": "An error occurred during section initialize, please check your input-form configuration. Details are below :
",
+ "error.submission.sections.init-form-error": "વિભાગ આરંભ દરમિયાન ભૂલ આવી, કૃપા કરીને તમારા ઇનપુટ-ફોર્મ કૉન્ફિગરેશન તપાસો. વિગતો નીચે છે :
",
- // "error.top-level-communities": "Error fetching top-level communities",
"error.top-level-communities": "ટોપ-લેવલ સમુદાયો મેળવતી વખતે ભૂલ",
- // "error.validation.license.required": "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.required": "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.",
+ "error.validation.license.notgranted": "તમારે તમારા સબમિશનને પૂર્ણ કરવા માટે આ લાઇસન્સ આપવું જ જોઈએ. જો તમે આ સમયે આ લાઇસન્સ આપી શકતા નથી તો તમે તમારું કામ સાચવી શકો છો અને પછીથી પાછા આવી શકો છો અથવા સબમિશન દૂર કરી શકો છો.",
- // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.",
"error.validation.cclicense.required": "તમારે તમારા સબમિશનને પૂર્ણ કરવા માટે આ cclicense આપવું જ જોઈએ. જો તમે આ સમયે cclicense આપી શકતા નથી, તો તમે તમારું કામ સાચવી શકો છો અને પછીથી પાછા આવી શકો છો અથવા સબમિશન દૂર કરી શકો છો.",
- // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.",
- // TODO New key - Add a translation
- "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.",
-
- // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.",
- // TODO New key - Add a translation
- "error.validation.custom-url.empty": "The custom url is required and cannot be empty.",
-
- // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters. Only alphanumeric characters, dashes and underscores are supported.",
- // TODO New key - Add a translation
- "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters. Only alphanumeric characters, dashes and underscores are supported.",
+ "error.validation.pattern": "આ ઇનપુટ વર્તમાન પેટર્ન દ્વારા પ્રતિબંધિત છે: {{ pattern }}.",
- // "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.",
- // TODO New key - Add a translation
- "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.",
-
- // "error.validation.filerequired": "The file upload is mandatory",
"error.validation.filerequired": "ફાઇલ અપલોડ ફરજિયાત છે",
- // "error.validation.required": "This field is required",
"error.validation.required": "આ ફીલ્ડ જરૂરી છે",
- // "error.validation.NotValidEmail": "This is not a valid email",
"error.validation.NotValidEmail": "આ માન્ય ઇમેઇલ નથી",
- // "error.validation.emailTaken": "This email is already taken",
"error.validation.emailTaken": "આ ઇમેઇલ પહેલેથી જ લેવામાં આવી છે",
- // "error.validation.groupExists": "This group already exists",
"error.validation.groupExists": "આ જૂથ પહેલેથી જ અસ્તિત્વમાં છે",
- // "error.validation.metadata.name.invalid-pattern": "This field cannot contain dots, commas or spaces. Please use the Element & Qualifier fields instead",
"error.validation.metadata.name.invalid-pattern": "આ ફીલ્ડમાં ડોટ્સ, કૉમ્મા અથવા જગ્યા હોઈ શકતી નથી. કૃપા કરીને તેના બદલે એલિમેન્ટ અને ક્વોલિફાયર ફીલ્ડનો ઉપયોગ કરો",
- // "error.validation.metadata.name.max-length": "This field may not contain more than 32 characters",
"error.validation.metadata.name.max-length": "આ ફીલ્ડમાં 32 થી વધુ અક્ષરો હોઈ શકતા નથી",
- // "error.validation.metadata.namespace.max-length": "This field may not contain more than 256 characters",
"error.validation.metadata.namespace.max-length": "આ ફીલ્ડમાં 256 થી વધુ અક્ષરો હોઈ શકતા નથી",
- // "error.validation.metadata.element.invalid-pattern": "This field cannot contain dots, commas or spaces. Please use the Qualifier field instead",
"error.validation.metadata.element.invalid-pattern": "આ ફીલ્ડમાં ડોટ્સ, કૉમ્મા અથવા જગ્યા હોઈ શકતી નથી. કૃપા કરીને ક્વોલિફાયર ફીલ્ડનો ઉપયોગ કરો",
- // "error.validation.metadata.element.max-length": "This field may not contain more than 64 characters",
"error.validation.metadata.element.max-length": "આ ફીલ્ડમાં 64 થી વધુ અક્ષરો હોઈ શકતા નથી",
- // "error.validation.metadata.qualifier.invalid-pattern": "This field cannot contain dots, commas or spaces",
"error.validation.metadata.qualifier.invalid-pattern": "આ ફીલ્ડમાં ડોટ્સ, કૉમ્મા અથવા જગ્યા હોઈ શકતી નથી",
- // "error.validation.metadata.qualifier.max-length": "This field may not contain more than 64 characters",
"error.validation.metadata.qualifier.max-length": "આ ફીલ્ડમાં 64 થી વધુ અક્ષરો હોઈ શકતા નથી",
- // "feed.description": "Syndication feed",
"feed.description": "સિન્ડિકેશન ફીડ",
- // "file-download-link.restricted": "Restricted bitstream",
"file-download-link.restricted": "પ્રતિબંધિત બિટસ્ટ્રીમ",
- // "file-download-link.secure-access": "Restricted bitstream available via secure access token",
"file-download-link.secure-access": "સુરક્ષિત ઍક્સેસ ટોકન દ્વારા ઉપલબ્ધ પ્રતિબંધિત બિટસ્ટ્રીમ",
- // "file-section.error.header": "Error obtaining files for this item",
"file-section.error.header": "આ આઇટમ માટે ફાઇલો મેળવતી વખતે ભૂલ",
- // "footer.copyright": "copyright © 2002-{{ year }}",
"footer.copyright": "કૉપિરાઇટ © 2002-{{ year }}",
- // "footer.link.accessibility": "Accessibility settings",
- // TODO New key - Add a translation
- "footer.link.accessibility": "Accessibility settings",
-
- // "footer.link.dspace": "DSpace software",
"footer.link.dspace": "DSpace સોફ્ટવેર",
- // "footer.link.lyrasis": "LYRASIS",
"footer.link.lyrasis": "LYRASIS",
- // "footer.link.cookies": "Cookie settings",
"footer.link.cookies": "કૂકી સેટિંગ્સ",
- // "footer.link.privacy-policy": "Privacy policy",
"footer.link.privacy-policy": "ગોપનીયતા નીતિ",
- // "footer.link.end-user-agreement": "End User Agreement",
"footer.link.end-user-agreement": "અંતિમ વપરાશકર્તા કરાર",
- // "footer.link.feedback": "Send Feedback",
"footer.link.feedback": "પ્રતિસાદ મોકલો",
- // "footer.link.coar-notify-support": "COAR Notify",
"footer.link.coar-notify-support": "COAR Notify",
- // "forgot-email.form.header": "Forgot Password",
"forgot-email.form.header": "પાસવર્ડ ભૂલી ગયા",
- // "forgot-email.form.info": "Enter the email address associated with the account.",
"forgot-email.form.info": "ખાતાની સાથે જોડાયેલ ઇમેઇલ સરનામું દાખલ કરો.",
- // "forgot-email.form.email": "Email Address *",
"forgot-email.form.email": "ઇમેઇલ સરનામું *",
- // "forgot-email.form.email.error.required": "Please fill in an email address",
"forgot-email.form.email.error.required": "કૃપા કરીને ઇમેઇલ સરનામું દાખલ કરો",
- // "forgot-email.form.email.error.not-email-form": "Please fill in a valid email address",
"forgot-email.form.email.error.not-email-form": "કૃપા કરીને માન્ય ઇમેઇલ સરનામું દાખલ કરો",
- // "forgot-email.form.email.hint": "An email will be sent to this address with a further instructions.",
"forgot-email.form.email.hint": "આ સરનામે વધુ સૂચનાઓ સાથે ઇમેઇલ મોકલવામાં આવશે.",
- // "forgot-email.form.submit": "Reset password",
"forgot-email.form.submit": "પાસવર્ડ રીસેટ કરો",
- // "forgot-email.form.success.head": "Password reset email sent",
"forgot-email.form.success.head": "પાસવર્ડ રીસેટ ઇમેઇલ મોકલ્યો",
- // "forgot-email.form.success.content": "An email has been sent to {{ email }} containing a special URL and further instructions.",
"forgot-email.form.success.content": "{{ email }} પર ઇમેઇલ મોકલવામાં આવ્યો છે જેમાં વિશેષ URL અને વધુ સૂચનાઓ શામેલ છે.",
- // "forgot-email.form.error.head": "Error when trying to reset password",
"forgot-email.form.error.head": "પાસવર્ડ રીસેટ કરવાનો પ્રયાસ કરતી વખતે ભૂલ",
- // "forgot-email.form.error.content": "An error occurred when attempting to reset the password for the account associated with the following email address: {{ email }}",
- // TODO New key - Add a translation
- "forgot-email.form.error.content": "An error occurred when attempting to reset the password for the account associated with the following email address: {{ email }}",
+ "forgot-email.form.error.content": "નીચેના ઇમેઇલ સરનામા સાથેના ખાતા માટે પાસવર્ડ રીસેટ કરવાનો પ્રયાસ કરતી વખતે ભૂલ આવી: {{ email }}",
- // "forgot-password.title": "Forgot Password",
"forgot-password.title": "પાસવર્ડ ભૂલી ગયા",
- // "forgot-password.form.head": "Forgot Password",
"forgot-password.form.head": "પાસવર્ડ ભૂલી ગયા",
- // "forgot-password.form.info": "Enter a new password in the box below, and confirm it by typing it again into the second box.",
"forgot-password.form.info": "નીચેના બોક્સમાં નવો પાસવર્ડ દાખલ કરો, અને તેને બીજી બોક્સમાં ફરીથી ટાઇપ કરીને તેની પુષ્ટિ કરો.",
- // "forgot-password.form.card.security": "Security",
"forgot-password.form.card.security": "સુરક્ષા",
- // "forgot-password.form.identification.header": "Identify",
"forgot-password.form.identification.header": "ઓળખો",
- // "forgot-password.form.identification.email": "Email address: ",
- // TODO New key - Add a translation
- "forgot-password.form.identification.email": "Email address: ",
+ "forgot-password.form.identification.email": "ઇમેઇલ સરનામું: ",
- // "forgot-password.form.label.password": "Password",
"forgot-password.form.label.password": "પાસવર્ડ",
- // "forgot-password.form.label.passwordrepeat": "Retype to confirm",
"forgot-password.form.label.passwordrepeat": "પુષ્ટિ કરવા માટે ફરીથી ટાઇપ કરો",
- // "forgot-password.form.error.empty-password": "Please enter a password in the boxes above.",
"forgot-password.form.error.empty-password": "કૃપા કરીને ઉપરના બોક્સમાં પાસવર્ડ દાખલ કરો.",
- // "forgot-password.form.error.matching-passwords": "The passwords do not match.",
"forgot-password.form.error.matching-passwords": "પાસવર્ડ મેળ ખાતા નથી.",
- // "forgot-password.form.notification.error.title": "Error when trying to submit new password",
"forgot-password.form.notification.error.title": "નવો પાસવર્ડ સબમિટ કરવાનો પ્રયાસ કરતી વખતે ભૂલ",
- // "forgot-password.form.notification.success.content": "The password reset was successful. You have been logged in as the created user.",
"forgot-password.form.notification.success.content": "પાસવર્ડ રીસેટ સફળતાપૂર્વક પૂર્ણ થયું. તમે બનાવેલ વપરાશકર્તા તરીકે લૉગ ઇન થયા છો.",
- // "forgot-password.form.notification.success.title": "Password reset completed",
"forgot-password.form.notification.success.title": "પાસવર્ડ રીસેટ પૂર્ણ",
- // "forgot-password.form.submit": "Submit password",
"forgot-password.form.submit": "પાસવર્ડ સબમિટ કરો",
- // "form.add": "Add more",
"form.add": "વધુ ઉમેરો",
- // "form.add-help": "Click here to add the current entry and to add another one",
"form.add-help": "વર્તમાન એન્ટ્રી ઉમેરવા અને વધુ એક ઉમેરવા માટે અહીં ક્લિક કરો",
- // "form.cancel": "Cancel",
"form.cancel": "રદ કરો",
- // "form.clear": "Clear",
"form.clear": "સાફ કરો",
- // "form.clear-help": "Click here to remove the selected value",
"form.clear-help": "પસંદ કરેલ મૂલ્ય દૂર કરવા માટે અહીં ક્લિક કરો",
- // "form.copy": "Duplicate",
- // TODO New key - Add a translation
- "form.copy": "Duplicate",
-
- // "form.discard": "Discard",
"form.discard": "રદ કરો",
- // "form.drag": "Drag",
"form.drag": "ડ્રેગ કરો",
- // "form.edit": "Edit",
"form.edit": "સંપાદિત કરો",
- // "form.edit-help": "Click here to edit the selected value",
"form.edit-help": "પસંદ કરેલ મૂલ્ય સંપાદિત કરવા માટે અહીં ક્લિક કરો",
- // "form.first-name": "First name",
"form.first-name": "પ્રથમ નામ",
- // "form.group.add": "Add",
- // TODO New key - Add a translation
- "form.group.add": "Add",
-
- // "form.group.close": "Close",
- // TODO New key - Add a translation
- "form.group.close": "Close",
-
- // "form.group.set": "Set",
- // TODO New key - Add a translation
- "form.group.set": "Set",
-
- // "form.group-collapse": "Collapse",
"form.group-collapse": "સંકોચો",
- // "form.group-collapse-help": "Click here to collapse",
"form.group-collapse-help": "સંકોચવા માટે અહીં ક્લિક કરો",
- // "form.group-expand": "Expand",
"form.group-expand": "વિસ્તારો",
- // "form.group-expand-help": "Click here to expand and add more elements",
"form.group-expand-help": "વિસ્તારવા અને વધુ તત્વો ઉમેરવા માટે અહીં ક્લિક કરો",
- // "form.last-name": "Last name",
"form.last-name": "છેલ્લું નામ",
- // "form.loading": "Loading...",
"form.loading": "લોડ કરી રહ્યું છે...",
- // "form.lookup": "Lookup",
"form.lookup": "લુકઅપ",
- // "form.lookup-help": "Click here to look up an existing relation",
"form.lookup-help": "અસ્તિત્વમાં રહેલા સંબંધ માટે અહીં ક્લિક કરો",
- // "form.no-results": "No results found",
"form.no-results": "કોઈ પરિણામો મળ્યા નથી",
- // "form.no-value": "No value entered",
"form.no-value": "કોઈ મૂલ્ય દાખલ કરેલ નથી",
- // "form.other-information.email": "Email",
"form.other-information.email": "ઇમેઇલ",
- // "form.other-information.first-name": "First Name",
"form.other-information.first-name": "પ્રથમ નામ",
- // "form.other-information.insolr": "In Solr Index",
"form.other-information.insolr": "સોલર ઇન્ડેક્સમાં",
- // "form.other-information.institution": "Institution",
"form.other-information.institution": "સંસ્થા",
- // "form.other-information.last-name": "Last Name",
"form.other-information.last-name": "છેલ્લું નામ",
- // "form.other-information.orcid": "ORCID",
"form.other-information.orcid": "ORCID",
- // "form.other-information.person_identifier_orcid": "ORCID",
- // TODO New key - Add a translation
- "form.other-information.person_identifier_orcid": "ORCID",
-
- // "form.other-information.oairecerif_author_affiliation": "Affiliation",
- // TODO New key - Add a translation
- "form.other-information.oairecerif_author_affiliation": "Affiliation",
-
- // "form.other-information.oairecerif_editor_affiliation": "Affiliation",
- // TODO New key - Add a translation
- "form.other-information.oairecerif_editor_affiliation": "Affiliation",
-
- // "form.other-information.person_identifier_orcid": "ORCID iD",
- // TODO New key - Add a translation
- "form.other-information.person_identifier_orcid": "ORCID iD",
-
- // "form.other-information.institution-affiliation-name": "Affiliation(s)",
- // TODO New key - Add a translation
- "form.other-information.institution-affiliation-name": "Affiliation(s)",
-
- // "form.other-information.dc_relation_grantno": "Grant Number",
- // TODO New key - Add a translation
- "form.other-information.dc_relation_grantno": "Grant Number",
-
- // "form.other-information.not-available": "Not available",
- // TODO New key - Add a translation
- "form.other-information.not-available": "Not available",
-
- // "form.other-information.ror_orgunit_id": "ROR ID",
- // TODO New key - Add a translation
- "form.other-information.ror_orgunit_id": "ROR ID",
-
- // "form.other-information.ror_orgunit_type": "ROR type",
- // TODO New key - Add a translation
- "form.other-information.ror_orgunit_type": "ROR type",
-
- // "form.other-information.ror_orgunit_acronym": "ROR acronym",
- // TODO New key - Add a translation
- "form.other-information.ror_orgunit_acronym": "ROR acronym",
-
- // "form.other-information.ror_orgunit_countryName": "ROR country",
- // TODO New key - Add a translation
- "form.other-information.ror_orgunit_countryName": "ROR country",
-
- // "form.entry.source.local": "",
- // TODO New key - Add a translation
- "form.entry.source.local": "",
-
- // "form.entry.source.orcid": "",
- // TODO New key - Add a translation
- "form.entry.source.orcid": "",
-
- // "form.entry.source.ror": "",
- // TODO New key - Add a translation
- "form.entry.source.ror": "",
-
- // "form.entry.source.openaire": "",
- // TODO New key - Add a translation
- "form.entry.source.openaire": "",
-
- // "form.entry.source.zdb": "",
- // TODO New key - Add a translation
- "form.entry.source.zdb": "",
-
- // "form.entry.source.sherpa": "- Sherpa Romeo",
- // TODO New key - Add a translation
- "form.entry.source.sherpa": "- Sherpa Romeo",
-
- // "form.remove": "Remove",
"form.remove": "દૂર કરો",
- // "form.save": "Save",
"form.save": "સાચવો",
- // "form.save-help": "Save changes",
"form.save-help": "ફેરફારો સાચવો",
- // "form.search": "Search",
"form.search": "શોધો",
- // "form.search-help": "Click here to look for an existing correspondence",
"form.search-help": "અસ્તિત્વમાં રહેલા પત્રવ્યવહાર માટે અહીં ક્લિક કરો",
- // "form.submit": "Save",
"form.submit": "સાચવો",
- // "form.create": "Create",
"form.create": "બનાવો",
- // "form.number-picker.decrement": "Decrement {{field}}",
"form.number-picker.decrement": "{{field}} ઘટાડો",
- // "form.number-picker.increment": "Increment {{field}}",
"form.number-picker.increment": "{{field}} વધારો",
- // "form.number-picker.label.Year": "Year",
- // TODO New key - Add a translation
- "form.number-picker.label.Year": "Year",
-
- // "form.number-picker.label.Month": "Month",
- // TODO New key - Add a translation
- "form.number-picker.label.Month": "Month",
-
- // "form.number-picker.label.Day": "Day",
- // TODO New key - Add a translation
- "form.number-picker.label.Day": "Day",
-
- // "form.repeatable.sort.tip": "Drop the item in the new position",
"form.repeatable.sort.tip": "આઇટમને નવી સ્થિતિમાં ડ્રોપ કરો",
- // "grant-deny-request-copy.deny": "Deny access request",
"grant-deny-request-copy.deny": "ઍક્સેસ વિનંતી નકારી",
- // "grant-deny-request-copy.revoke": "Revoke access",
"grant-deny-request-copy.revoke": "ઍક્સેસ રદ કરો",
- // "grant-deny-request-copy.email.back": "Back",
"grant-deny-request-copy.email.back": "પાછા",
- // "grant-deny-request-copy.email.message": "Optional additional message",
"grant-deny-request-copy.email.message": "વૈકલ્પિક વધારાનો સંદેશ",
- // "grant-deny-request-copy.email.message.empty": "Please enter a message",
"grant-deny-request-copy.email.message.empty": "કૃપા કરીને સંદેશ દાખલ કરો",
- // "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.info": "આ દસ્તાવેજ પર ઍક્સેસ પ્રતિબંધો દૂર કરવા માટે રિપોઝિટરી વહીવટકર્તાઓને પૂછવા માટે તમે આ પ્રસંગનો ઉપયોગ કરી શકો છો, જેથી આ વિનંતીઓને જવાબ આપવાની જરૂર ન પડે. જો તમે આ પ્રતિબંધો દૂર કરવા માટે રિપોઝિટરી વહીવટકર્તાઓને પૂછવા માંગતા હો, તો કૃપા કરીને નીચેના બોક્સને ચેક કરો.",
- // "grant-deny-request-copy.email.permissions.label": "Change to open access",
"grant-deny-request-copy.email.permissions.label": "ઓપન ઍક્સેસમાં બદલો",
- // "grant-deny-request-copy.email.send": "Send",
"grant-deny-request-copy.email.send": "મોકલો",
- // "grant-deny-request-copy.email.subject": "Subject",
"grant-deny-request-copy.email.subject": "વિષય",
- // "grant-deny-request-copy.email.subject.empty": "Please enter a subject",
"grant-deny-request-copy.email.subject.empty": "કૃપા કરીને વિષય દાખલ કરો",
- // "grant-deny-request-copy.grant": "Grant access request",
"grant-deny-request-copy.grant": "ઍક્સેસ વિનંતી મંજુર કરો",
- // "grant-deny-request-copy.header": "Document copy request",
"grant-deny-request-copy.header": "દસ્તાવેજ નકલ વિનંતી",
- // "grant-deny-request-copy.home-page": "Take me to the home page",
"grant-deny-request-copy.home-page": "મને હોમ પેજ પર લઈ જાઓ",
- // "grant-deny-request-copy.intro1": "If you are one of the authors of the document {{ name }}, then please use one of the options below to respond to the user's request.",
"grant-deny-request-copy.intro1": "જો તમે દસ્તાવેજના લેખકોમાંના એક છો {{ name }}, તો કૃપા કરીને વપરાશકર્તાની વિનંતીનો જવાબ આપવા માટે નીચેના વિકલ્પોનો ઉપયોગ કરો.",
- // "grant-deny-request-copy.intro2": "After choosing an option, you will be presented with a suggested email reply which you may edit.",
"grant-deny-request-copy.intro2": "વિકલ્પ પસંદ કર્યા પછી, તમને સૂચિત ઇમેઇલ જવાબ રજૂ કરવામાં આવશે જે તમે સંપાદિત કરી શકો છો.",
- // "grant-deny-request-copy.previous-decision": "This request was previously granted with a secure access token. You may revoke this access now to immediately invalidate the access token",
"grant-deny-request-copy.previous-decision": "આ વિનંતી અગાઉ સુરક્ષિત ઍક્સેસ ટોકન સાથે મંજુર કરવામાં આવી હતી. તમે આ ઍક્સેસને રદ કરી શકો છો જેથી ઍક્સેસ ટોકન તરત જ અમાન્ય થઈ જાય",
- // "grant-deny-request-copy.processed": "This request has already been processed. You can use the button below to get back to the home page.",
"grant-deny-request-copy.processed": "આ વિનંતી પહેલેથી જ પ્રક્રિયા કરવામાં આવી છે. તમે નીચેના બટનનો ઉપયોગ કરીને હોમ પેજ પર પાછા જઈ શકો છો.",
- // "grant-request-copy.email.subject": "Request copy of document",
"grant-request-copy.email.subject": "દસ્તાવેજની નકલ માટે વિનંતી",
- // "grant-request-copy.error": "An error occurred",
"grant-request-copy.error": "ભૂલ આવી",
- // "grant-request-copy.header": "Grant document copy request",
"grant-request-copy.header": "દસ્તાવેજ નકલ વિનંતી મંજુર કરો",
- // "grant-request-copy.intro.attachment": "A message will be sent to the applicant of the request. The requested document(s) will be attached.",
"grant-request-copy.intro.attachment": "વિનંતી કરનારને સંદેશ મોકલવામાં આવશે. વિનંતી કરેલ દસ્તાવેજ(ઓ) જોડવામાં આવશે.",
- // "grant-request-copy.intro.link": "A message will be sent to the applicant of the request. A secure link providing access to the requested document(s) will be attached. The link will provide access for the duration of time selected in the \"Access Period\" menu below.",
"grant-request-copy.intro.link": "વિનંતી કરનારને સંદેશ મોકલવામાં આવશે. વિનંતી કરેલ દસ્તાવેજ(ઓ)ને ઍક્સેસ પ્રદાન કરતી સુરક્ષિત લિંક જોડવામાં આવશે. લિંક નીચેના \\\"ઍક્સેસ પિરિયડ\\\" મેનુમાં પસંદ કરેલ સમયગાળા માટે ઍક્સેસ પ્રદાન કરશે.",
- // "grant-request-copy.intro.link.preview": "Below is a preview of the link that will be sent to the applicant:",
- // TODO New key - Add a translation
- "grant-request-copy.intro.link.preview": "Below is a preview of the link that will be sent to the applicant:",
+ "grant-request-copy.intro.link.preview": "નીચે વિનંતી કરનારને મોકલવામાં આવનાર લિંકનું પૂર્વાવલોકન છે:",
- // "grant-request-copy.success": "Successfully granted item request",
"grant-request-copy.success": "વિનંતી કરેલ આઇટમ સફળતાપૂર્વક મંજુર કર્યું",
- // "grant-request-copy.access-period.header": "Access period",
"grant-request-copy.access-period.header": "ઍક્સેસ પિરિયડ",
- // "grant-request-copy.access-period.+1DAY": "1 day",
"grant-request-copy.access-period.+1DAY": "1 દિવસ",
- // "grant-request-copy.access-period.+7DAYS": "1 week",
"grant-request-copy.access-period.+7DAYS": "1 અઠવાડિયું",
- // "grant-request-copy.access-period.+1MONTH": "1 month",
"grant-request-copy.access-period.+1MONTH": "1 મહિનો",
- // "grant-request-copy.access-period.+3MONTHS": "3 months",
"grant-request-copy.access-period.+3MONTHS": "3 મહિના",
- // "grant-request-copy.access-period.FOREVER": "Forever",
"grant-request-copy.access-period.FOREVER": "કાયમ માટે",
- // "health.breadcrumbs": "Health",
"health.breadcrumbs": "હેલ્થ",
- // "health-page.heading": "Health",
"health-page.heading": "હેલ્થ",
- // "health-page.info-tab": "Info",
"health-page.info-tab": "માહિતી",
- // "health-page.status-tab": "Status",
"health-page.status-tab": "સ્થિતિ",
- // "health-page.error.msg": "The health check service is temporarily unavailable",
"health-page.error.msg": "હેલ્થ ચેક સેવા તાત્કાલિક ઉપલબ્ધ નથી",
- // "health-page.property.status": "Status code",
"health-page.property.status": "સ્થિતિ કોડ",
- // "health-page.section.db.title": "Database",
"health-page.section.db.title": "ડેટાબેઝ",
- // "health-page.section.geoIp.title": "GeoIp",
"health-page.section.geoIp.title": "GeoIp",
- // "health-page.section.solrAuthorityCore.title": "Solr: authority core",
- // TODO New key - Add a translation
- "health-page.section.solrAuthorityCore.title": "Solr: authority core",
+ "health-page.section.solrAuthorityCore.title": "સોલર: ઓથોરિટી કોર",
- // "health-page.section.solrOaiCore.title": "Solr: oai core",
- // TODO New key - Add a translation
- "health-page.section.solrOaiCore.title": "Solr: oai core",
+ "health-page.section.solrOaiCore.title": "સોલર: oai કોર",
- // "health-page.section.solrSearchCore.title": "Solr: search core",
- // TODO New key - Add a translation
- "health-page.section.solrSearchCore.title": "Solr: search core",
+ "health-page.section.solrSearchCore.title": "સોલર: શોધ કોર",
- // "health-page.section.solrStatisticsCore.title": "Solr: statistics core",
- // TODO New key - Add a translation
- "health-page.section.solrStatisticsCore.title": "Solr: statistics core",
+ "health-page.section.solrStatisticsCore.title": "સોલર: આંકડા કોર",
- // "health-page.section-info.app.title": "Application Backend",
"health-page.section-info.app.title": "એપ્લિકેશન બેકએન્ડ",
- // "health-page.section-info.java.title": "Java",
"health-page.section-info.java.title": "જાવા",
- // "health-page.status": "Status",
"health-page.status": "સ્થિતિ",
- // "health-page.status.ok.info": "Operational",
"health-page.status.ok.info": "સંચાલન",
- // "health-page.status.error.info": "Problems detected",
"health-page.status.error.info": "સમસ્યાઓ શોધવામાં આવી",
- // "health-page.status.warning.info": "Possible issues detected",
"health-page.status.warning.info": "શક્ય સમસ્યાઓ શોધવામાં આવી",
- // "health-page.title": "Health",
"health-page.title": "હેલ્થ",
- // "health-page.section.no-issues": "No issues detected",
"health-page.section.no-issues": "કોઈ સમસ્યાઓ શોધવામાં આવી નથી",
- // "home.description": "",
"home.description": "",
- // "home.breadcrumbs": "Home",
"home.breadcrumbs": "હોમ",
- // "home.search-form.placeholder": "Search the repository ...",
"home.search-form.placeholder": "રિપોઝિટરી શોધો ...",
- // "home.title": "Home",
"home.title": "હોમ",
- // "home.top-level-communities.head": "Communities in DSpace",
"home.top-level-communities.head": "DSpace માં સમુદાયો",
- // "home.top-level-communities.help": "Select a community to browse its collections.",
"home.top-level-communities.help": "તેના સંગ્રહોને બ્રાઉઝ કરવા માટે સમુદાય પસંદ કરો.",
- // "info.accessibility-settings.breadcrumbs": "Accessibility settings",
- // TODO New key - Add a translation
- "info.accessibility-settings.breadcrumbs": "Accessibility settings",
-
- // "info.accessibility-settings.cookie-warning": "Saving the accessibility settings is currently not possible. Either log in to save the settings in user data, or accept the 'Accessibility Settings' cookie using the 'Cookie Settings' menu at the bottom of the page. Once the cookie has been accepted, you can reload the page to remove this message.",
- // TODO New key - Add a translation
- "info.accessibility-settings.cookie-warning": "Saving the accessibility settings is currently not possible. Either log in to save the settings in user data, or accept the 'Accessibility Settings' cookie using the 'Cookie Settings' menu at the bottom of the page. Once the cookie has been accepted, you can reload the page to remove this message.",
-
- // "info.accessibility-settings.disableNotificationTimeOut.label": "Automatically close notifications after time out",
- // TODO New key - Add a translation
- "info.accessibility-settings.disableNotificationTimeOut.label": "Automatically close notifications after time out",
-
- // "info.accessibility-settings.disableNotificationTimeOut.hint": "When this toggle is activated, notifications will close automatically after the time out passes. When deactivated, notifications will remain open until manually closed.",
- // TODO New key - Add a translation
- "info.accessibility-settings.disableNotificationTimeOut.hint": "When this toggle is activated, notifications will close automatically after the time out passes. When deactivated, notifications will remain open until manually closed.",
-
- // "info.accessibility-settings.failed-notification": "Failed to save accessibility settings",
- // TODO New key - Add a translation
- "info.accessibility-settings.failed-notification": "Failed to save accessibility settings",
-
- // "info.accessibility-settings.invalid-form-notification": "Did not save. The form contains invalid values.",
- // TODO New key - Add a translation
- "info.accessibility-settings.invalid-form-notification": "Did not save. The form contains invalid values.",
-
- // "info.accessibility-settings.liveRegionTimeOut.label": "ARIA Live region time out (in seconds)",
- // TODO New key - Add a translation
- "info.accessibility-settings.liveRegionTimeOut.label": "ARIA Live region time out (in seconds)",
-
- // "info.accessibility-settings.liveRegionTimeOut.hint": "The duration after which a message in the ARIA live region disappears. ARIA live regions are not visible on the page, but provide announcements of notifications (or other actions) to screen readers.",
- // TODO New key - Add a translation
- "info.accessibility-settings.liveRegionTimeOut.hint": "The duration after which a message in the ARIA live region disappears. ARIA live regions are not visible on the page, but provide announcements of notifications (or other actions) to screen readers.",
-
- // "info.accessibility-settings.liveRegionTimeOut.invalid": "Live region time out must be greater than 0",
- // TODO New key - Add a translation
- "info.accessibility-settings.liveRegionTimeOut.invalid": "Live region time out must be greater than 0",
-
- // "info.accessibility-settings.notificationTimeOut.label": "Notification time out (in seconds)",
- // TODO New key - Add a translation
- "info.accessibility-settings.notificationTimeOut.label": "Notification time out (in seconds)",
-
- // "info.accessibility-settings.notificationTimeOut.hint": "The duration after which a notification disappears.",
- // TODO New key - Add a translation
- "info.accessibility-settings.notificationTimeOut.hint": "The duration after which a notification disappears.",
-
- // "info.accessibility-settings.notificationTimeOut.invalid": "Notification time out must be greater than 0",
- // TODO New key - Add a translation
- "info.accessibility-settings.notificationTimeOut.invalid": "Notification time out must be greater than 0",
-
- // "info.accessibility-settings.save-notification.cookie": "Successfully saved settings locally.",
- // TODO New key - Add a translation
- "info.accessibility-settings.save-notification.cookie": "Successfully saved settings locally.",
-
- // "info.accessibility-settings.save-notification.metadata": "Successfully saved settings on the user profile.",
- // TODO New key - Add a translation
- "info.accessibility-settings.save-notification.metadata": "Successfully saved settings on the user profile.",
-
- // "info.accessibility-settings.reset-failed": "Failed to reset. Either log in or accept the 'Accessibility Settings' cookie.",
- // TODO New key - Add a translation
- "info.accessibility-settings.reset-failed": "Failed to reset. Either log in or accept the 'Accessibility Settings' cookie.",
-
- // "info.accessibility-settings.reset-notification": "Successfully reset settings.",
- // TODO New key - Add a translation
- "info.accessibility-settings.reset-notification": "Successfully reset settings.",
-
- // "info.accessibility-settings.reset": "Reset accessibility settings",
- // TODO New key - Add a translation
- "info.accessibility-settings.reset": "Reset accessibility settings",
-
- // "info.accessibility-settings.submit": "Save accessibility settings",
- // TODO New key - Add a translation
- "info.accessibility-settings.submit": "Save accessibility settings",
-
- // "info.accessibility-settings.title": "Accessibility settings",
- // TODO New key - Add a translation
- "info.accessibility-settings.title": "Accessibility settings",
-
- // "info.end-user-agreement.accept": "I have read and I agree to the End User Agreement",
"info.end-user-agreement.accept": "મેં અંતિમ વપરાશકર્તા કરાર વાંચ્યો છે અને હું તેને સહમત છું",
- // "info.end-user-agreement.accept.error": "An error occurred accepting the End User Agreement",
"info.end-user-agreement.accept.error": "અંતિમ વપરાશકર્તા કરાર સ્વીકારતી વખતે ભૂલ આવી",
- // "info.end-user-agreement.accept.success": "Successfully updated the End User Agreement",
"info.end-user-agreement.accept.success": "અંતિમ વપરાશકર્તા કરાર સફળતાપૂર્વક અપડેટ કર્યો",
- // "info.end-user-agreement.breadcrumbs": "End User Agreement",
"info.end-user-agreement.breadcrumbs": "અંતિમ વપરાશકર્તા કરાર",
- // "info.end-user-agreement.buttons.cancel": "Cancel",
"info.end-user-agreement.buttons.cancel": "રદ કરો",
- // "info.end-user-agreement.buttons.save": "Save",
"info.end-user-agreement.buttons.save": "સાચવો",
- // "info.end-user-agreement.head": "End User Agreement",
"info.end-user-agreement.head": "અંતિમ વપરાશકર્તા કરાર",
- // "info.end-user-agreement.title": "End User Agreement",
"info.end-user-agreement.title": "અંતિમ વપરાશકર્તા કરાર",
- // "info.end-user-agreement.hosting-country": "the United States",
"info.end-user-agreement.hosting-country": "યુનાઇટેડ સ્ટેટ્સ",
- // "info.privacy.breadcrumbs": "Privacy Statement",
"info.privacy.breadcrumbs": "ગોપનીયતા નિવેદન",
- // "info.privacy.head": "Privacy Statement",
"info.privacy.head": "ગોપનીયતા નિવેદન",
- // "info.privacy.title": "Privacy Statement",
"info.privacy.title": "ગોપનીયતા નિવેદન",
- // "info.feedback.breadcrumbs": "Feedback",
"info.feedback.breadcrumbs": "પ્રતિસાદ",
- // "info.feedback.head": "Feedback",
"info.feedback.head": "પ્રતિસાદ",
- // "info.feedback.title": "Feedback",
"info.feedback.title": "પ્રતિસાદ",
- // "info.feedback.info": "Thanks for sharing your feedback about the DSpace system. Your comments are appreciated!",
"info.feedback.info": "DSpace સિસ્ટમ વિશે તમારો પ્રતિસાદ શેર કરવા બદલ આભાર. તમારી ટિપ્પણીઓની પ્રશંસા કરવામાં આવે છે!",
- // "info.feedback.email_help": "This address will be used to follow up on your feedback.",
"info.feedback.email_help": "આ સરનામું તમારા પ્રતિસાદ પર અનુસરણ કરવા માટે વપરાશે.",
- // "info.feedback.send": "Send Feedback",
"info.feedback.send": "પ્રતિસાદ મોકલો",
- // "info.feedback.comments": "Comments",
"info.feedback.comments": "ટિપ્પણીઓ",
- // "info.feedback.email-label": "Your Email",
"info.feedback.email-label": "તમારું ઇમેઇલ",
- // "info.feedback.create.success": "Feedback Sent Successfully!",
"info.feedback.create.success": "પ્રતિસાદ સફળતાપૂર્વક મોકલ્યો!",
- // "info.feedback.error.email.required": "A valid email address is required",
"info.feedback.error.email.required": "માન્ય ઇમેઇલ સરનામું જરૂરી છે",
- // "info.feedback.error.message.required": "A comment is required",
"info.feedback.error.message.required": "ટિપ્પણી જરૂરી છે",
- // "info.feedback.page-label": "Page",
"info.feedback.page-label": "પૃષ્ઠ",
- // "info.feedback.page_help": "The page related to your feedback",
"info.feedback.page_help": "તમારા પ્રતિસાદ સાથે સંબંધિત પૃષ્ઠ",
- // "info.coar-notify-support.title": "COAR Notify Support",
"info.coar-notify-support.title": "COAR Notify Support",
- // "info.coar-notify-support.breadcrumbs": "COAR Notify Support",
"info.coar-notify-support.breadcrumbs": "COAR Notify Support",
- // "item.alerts.private": "This item is non-discoverable",
"item.alerts.private": "આ આઇટમ નોન-ડિસ્કવરેબલ છે",
- // "item.alerts.withdrawn": "This item has been withdrawn",
"item.alerts.withdrawn": "આ આઇટમ પાછું ખેંચી લેવામાં આવ્યું છે",
- // "item.alerts.reinstate-request": "Request reinstate",
"item.alerts.reinstate-request": "ફરી સ્થાપિત કરવાની વિનંતી કરો",
- // "quality-assurance.event.table.person-who-requested": "Requested by",
"quality-assurance.event.table.person-who-requested": "વિનંતી કરનાર",
- // "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": "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.",
+ "item.edit.authorizations.heading": "આ સંપાદક સાથે તમે આઇટમની પોલિસી જોઈ અને બદલાવી શકો છો, તેમજ વ્યક્તિગત આઇટમ ઘટકોની પોલિસી બદલી શકો છો: બંડલ્સ અને બિટસ્ટ્રીમ્સ. ટૂંકમાં, આઇટમ બંડલ્સનો કન્ટેનર છે, અને બંડલ્સ બિટસ્ટ્રીમ્સના કન્ટેનર છે. કન્ટેનર્સમાં સામાન્ય રીતે ADD/REMOVE/READ/WRITE પોલિસી હોય છે, જ્યારે બિટસ્ટ્રીમ્સમાં માત્ર READ/WRITE પોલિસી હોય છે.",
- // "item.edit.authorizations.title": "Edit item's Policies",
"item.edit.authorizations.title": "આઇટમની પોલિસી સંપાદિત કરો",
- // "item.badge.status": "Item status:",
- // TODO New key - Add a translation
- "item.badge.status": "Item status:",
-
- // "item.badge.private": "Non-discoverable",
"item.badge.private": "નોન-ડિસ્કવરેબલ",
- // "item.badge.withdrawn": "Withdrawn",
"item.badge.withdrawn": "પાછું ખેંચી લેવામાં આવ્યું",
- // "item.bitstreams.upload.bundle": "Bundle",
"item.bitstreams.upload.bundle": "બંડલ",
- // "item.bitstreams.upload.bundle.placeholder": "Select a bundle or input new bundle name",
"item.bitstreams.upload.bundle.placeholder": "બંડલ પસંદ કરો અથવા નવું બંડલ નામ દાખલ કરો",
- // "item.bitstreams.upload.bundle.new": "Create bundle",
"item.bitstreams.upload.bundle.new": "બંડલ બનાવો",
- // "item.bitstreams.upload.bundles.empty": "This item doesn't contain any bundles to upload a bitstream to.",
"item.bitstreams.upload.bundles.empty": "આ આઇટમમાં અપલોડ કરવા માટે કોઈ બંડલ્સ નથી.",
- // "item.bitstreams.upload.cancel": "Cancel",
"item.bitstreams.upload.cancel": "રદ કરો",
- // "item.bitstreams.upload.drop-message": "Drop a file to upload",
"item.bitstreams.upload.drop-message": "અપલોડ કરવા માટે ફાઇલ ડ્રોપ કરો",
- // "item.bitstreams.upload.item": "Item: ",
- // TODO New key - Add a translation
- "item.bitstreams.upload.item": "Item: ",
+ "item.bitstreams.upload.item": "આઇટમ: ",
- // "item.bitstreams.upload.notifications.bundle.created.content": "Successfully created new bundle.",
"item.bitstreams.upload.notifications.bundle.created.content": "નવું બંડલ સફળતાપૂર્વક બનાવવામાં આવ્યું.",
- // "item.bitstreams.upload.notifications.bundle.created.title": "Created bundle",
"item.bitstreams.upload.notifications.bundle.created.title": "બંડલ બનાવ્યું",
- // "item.bitstreams.upload.notifications.upload.failed": "Upload failed. Please verify the content before retrying.",
"item.bitstreams.upload.notifications.upload.failed": "અપલોડ નિષ્ફળ. કૃપા કરીને સામગ્રીને ચકાસો અને ફરી પ્રયાસ કરો.",
- // "item.bitstreams.upload.title": "Upload bitstream",
"item.bitstreams.upload.title": "બિટસ્ટ્રીમ અપલોડ કરો",
- // "item.edit.bitstreams.bundle.edit.buttons.upload": "Upload",
"item.edit.bitstreams.bundle.edit.buttons.upload": "અપલોડ કરો",
- // "item.edit.bitstreams.bundle.displaying": "Currently displaying {{ amount }} bitstreams of {{ total }}.",
"item.edit.bitstreams.bundle.displaying": "હાલમાં {{ amount }} બિટસ્ટ્રીમ્સ {{ total }} માંથી બતાવી રહ્યા છે.",
- // "item.edit.bitstreams.bundle.load.all": "Load all ({{ total }})",
"item.edit.bitstreams.bundle.load.all": "બધા લોડ કરો ({{ total }})",
- // "item.edit.bitstreams.bundle.load.more": "Load more",
"item.edit.bitstreams.bundle.load.more": "વધુ લોડ કરો",
- // "item.edit.bitstreams.bundle.name": "BUNDLE: {{ name }}",
- // TODO New key - Add a translation
- "item.edit.bitstreams.bundle.name": "BUNDLE: {{ name }}",
+ "item.edit.bitstreams.bundle.name": "બંડલ: {{ name }}",
- // "item.edit.bitstreams.bundle.table.aria-label": "Bitstreams in the {{ bundle }} Bundle",
"item.edit.bitstreams.bundle.table.aria-label": "{{ bundle }} બંડલમાં બિટસ્ટ્રીમ્સ",
- // "item.edit.bitstreams.bundle.tooltip": "You can move a bitstream to a different page by dropping it on the page number.",
"item.edit.bitstreams.bundle.tooltip": "તમે બિટસ્ટ્રીમને પૃષ્ઠ નંબર પર ડ્રોપ કરીને તેને અલગ પૃષ્ઠ પર ખસેડી શકો છો.",
- // "item.edit.bitstreams.discard-button": "Discard",
"item.edit.bitstreams.discard-button": "રદ કરો",
- // "item.edit.bitstreams.edit.buttons.download": "Download",
"item.edit.bitstreams.edit.buttons.download": "ડાઉનલોડ કરો",
- // "item.edit.bitstreams.edit.buttons.drag": "Drag",
"item.edit.bitstreams.edit.buttons.drag": "ડ્રેગ કરો",
- // "item.edit.bitstreams.edit.buttons.edit": "Edit",
"item.edit.bitstreams.edit.buttons.edit": "સંપાદિત કરો",
- // "item.edit.bitstreams.edit.buttons.remove": "Remove",
"item.edit.bitstreams.edit.buttons.remove": "દૂર કરો",
- // "item.edit.bitstreams.edit.buttons.undo": "Undo changes",
"item.edit.bitstreams.edit.buttons.undo": "ફેરફારો રદ કરો",
- // "item.edit.bitstreams.edit.live.cancel": "{{ bitstream }} was returned to position {{ toIndex }} and is no longer selected.",
"item.edit.bitstreams.edit.live.cancel": "{{ bitstream }} ને સ્થિતિ {{ toIndex }} પર પાછું લાવવામાં આવ્યું છે અને હવે પસંદ કરેલ નથી.",
- // "item.edit.bitstreams.edit.live.clear": "{{ bitstream }} is no longer selected.",
"item.edit.bitstreams.edit.live.clear": "{{ bitstream }} હવે પસંદ કરેલ નથી.",
- // "item.edit.bitstreams.edit.live.loading": "Waiting for move to complete.",
"item.edit.bitstreams.edit.live.loading": "ખસેડવાનું પૂર્ણ થવાની રાહ જોઈ રહ્યા છે.",
- // "item.edit.bitstreams.edit.live.select": "{{ bitstream }} is selected.",
"item.edit.bitstreams.edit.live.select": "{{ bitstream }} પસંદ કરેલ છે.",
- // "item.edit.bitstreams.edit.live.move": "{{ bitstream }} is now in position {{ toIndex }}.",
"item.edit.bitstreams.edit.live.move": "{{ bitstream }} હવે સ્થિતિ {{ toIndex }} માં છે.",
- // "item.edit.bitstreams.empty": "This item doesn't contain any bitstreams. Click the upload button to create one.",
"item.edit.bitstreams.empty": "આ આઇટમમાં કોઈ બિટસ્ટ્રીમ્સ નથી. એક બનાવવા માટે અપલોડ બટન પર ક્લિક કરો.",
- // "item.edit.bitstreams.info-alert": "Bitstreams can be reordered within their bundles by holding the drag handle and moving the mouse. Alternatively, bitstreams can be moved using the keyboard in the following way: Select the bitstream by pressing enter when the bitstream's drag handle is in focus. Move the bitstream up or down using the arrow keys. Press enter again to confirm the current position of the bitstream.",
- // TODO New key - Add a translation
- "item.edit.bitstreams.info-alert": "Bitstreams can be reordered within their bundles by holding the drag handle and moving the mouse. Alternatively, bitstreams can be moved using the keyboard in the following way: Select the bitstream by pressing enter when the bitstream's drag handle is in focus. Move the bitstream up or down using the arrow keys. Press enter again to confirm the current position of the bitstream.",
+ "item.edit.bitstreams.info-alert": "બિટસ્ટ્રીમ્સને તેમના બંડલ્સમાં ફરીથી ક્રમમાં ગોઠવવા માટે ડ્રેગ હેન્ડલ પકડીને અને માઉસ ખસેડીને ખસેડી શકાય છે. વૈકલ્પિક રીતે, બિટસ્ટ્રીમ્સને કીબોર્ડનો ઉપયોગ કરીને ખસેડી શકાય છે: બિટસ્ટ્રીમના ડ્રેગ હેન્ડલ પર ફોકસ હોવા પર એન્ટર દબાવીને બિટસ્ટ્રીમ પસંદ કરો. બિટસ્ટ્રીમને ખસેડવા માટે એરો કીઝનો ઉપયોગ કરો. બિટસ્ટ્રીમની વર્તમાન સ્થિતિની પુષ્ટિ કરવા માટે ફરીથી એન્ટર દબાવો.",
- // "item.edit.bitstreams.headers.actions": "Actions",
"item.edit.bitstreams.headers.actions": "ક્રિયાઓ",
- // "item.edit.bitstreams.headers.bundle": "Bundle",
"item.edit.bitstreams.headers.bundle": "બંડલ",
- // "item.edit.bitstreams.headers.description": "Description",
"item.edit.bitstreams.headers.description": "વર્ણન",
- // "item.edit.bitstreams.headers.format": "Format",
"item.edit.bitstreams.headers.format": "ફોર્મેટ",
- // "item.edit.bitstreams.headers.name": "Name",
"item.edit.bitstreams.headers.name": "નામ",
- // "item.edit.bitstreams.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button",
"item.edit.bitstreams.notifications.discarded.content": "તમારા ફેરફારો રદ કરવામાં આવ્યા. તમારા ફેરફારોને ફરી સ્થાપિત કરવા માટે 'Undo' બટન પર ક્લિક કરો",
- // "item.edit.bitstreams.notifications.discarded.title": "Changes discarded",
"item.edit.bitstreams.notifications.discarded.title": "ફેરફારો રદ",
- // "item.edit.bitstreams.notifications.move.failed.title": "Error moving bitstreams",
"item.edit.bitstreams.notifications.move.failed.title": "બિટસ્ટ્રીમ્સ ખસેડવામાં ભૂલ",
- // "item.edit.bitstreams.notifications.move.saved.content": "Your move changes to this item's bitstreams and bundles have been saved.",
"item.edit.bitstreams.notifications.move.saved.content": "આ આઇટમના બિટસ્ટ્રીમ્સ અને બંડલ્સ માટેના તમારા ખસેડવાના ફેરફારો સાચવવામાં આવ્યા.",
- // "item.edit.bitstreams.notifications.move.saved.title": "Move changes saved",
"item.edit.bitstreams.notifications.move.saved.title": "ખસેડવાના ફેરફારો સાચવ્યા",
- // "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",
"item.edit.bitstreams.notifications.outdated.content": "તમે હાલમાં જે આઇટમ પર કામ કરી રહ્યા છો તે બીજા વપરાશકર્તા દ્વારા બદલવામાં આવ્યું છે. સંઘર્ષો ટાળવા માટે તમારા વર્તમાન ફેરફારો રદ કરવામાં આવ્યા છે",
- // "item.edit.bitstreams.notifications.outdated.title": "Changes outdated",
"item.edit.bitstreams.notifications.outdated.title": "ફેરફારો જૂના છે",
- // "item.edit.bitstreams.notifications.remove.failed.title": "Error deleting bitstream",
"item.edit.bitstreams.notifications.remove.failed.title": "બિટસ્ટ્રીમ કાઢી નાખવામાં ભૂલ",
- // "item.edit.bitstreams.notifications.remove.saved.content": "Your removal changes to this item's bitstreams have been saved.",
"item.edit.bitstreams.notifications.remove.saved.content": "આ આઇટમના બિટસ્ટ્રીમ્સ માટેના તમારા દૂર કરવાના ફેરફારો સાચવવામાં આવ્યા.",
- // "item.edit.bitstreams.notifications.remove.saved.title": "Removal changes saved",
"item.edit.bitstreams.notifications.remove.saved.title": "દૂર કરવાના ફેરફારો સાચવ્યા",
- // "item.edit.bitstreams.reinstate-button": "Undo",
"item.edit.bitstreams.reinstate-button": "Undo",
- // "item.edit.bitstreams.save-button": "Save",
"item.edit.bitstreams.save-button": "સાચવો",
- // "item.edit.bitstreams.upload-button": "Upload",
"item.edit.bitstreams.upload-button": "અપલોડ કરો",
- // "item.edit.bitstreams.load-more.link": "Load more",
"item.edit.bitstreams.load-more.link": "વધુ લોડ કરો",
- // "item.edit.delete.cancel": "Cancel",
"item.edit.delete.cancel": "રદ કરો",
- // "item.edit.delete.confirm": "Delete",
"item.edit.delete.confirm": "કાઢી નાખો",
- // "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": "Are you sure this item should be completely deleted? Caution: At present, no tombstone would be left.",
+ "item.edit.delete.description": "શું તમે ખરેખર આ આઇટમને સંપૂર્ણપણે કાઢી નાખવા માંગો છો? સાવચેત: હાલમાં, કોઈ ટોમ્બસ્ટોન બાકી રહેશે નહીં.",
- // "item.edit.delete.error": "An error occurred while deleting the item",
"item.edit.delete.error": "આઇટમ કાઢી નાખતી વખતે ભૂલ આવી",
- // "item.edit.delete.header": "Delete item: {{ id }}",
- // TODO New key - Add a translation
- "item.edit.delete.header": "Delete item: {{ id }}",
+ "item.edit.delete.header": "આઇટમ કાઢી નાખો: {{ id }}",
- // "item.edit.delete.success": "Successfully started a process to delete this item",
"item.edit.delete.success": "આઇટમ કાઢી નાખવામાં આવ્યું છે",
- // "item.edit.delete.confirmation-title": "Confirm deletion",
- // TODO New key - Add a translation
- "item.edit.delete.confirmation-title": "Confirm deletion",
-
- // "item.edit.delete.confirmation-message": "Are you sure you want to permanently delete this item?",
- // TODO New key - Add a translation
- "item.edit.delete.confirmation-message": "Are you sure you want to permanently delete this item?",
-
- // "item.edit.delete.confirmation-detail": "This item may have been cited, has (or had) a persistent identifier (Handle/DOI), and deleting it may break scholarly references and external links.",
- // TODO New key - Add a translation
- "item.edit.delete.confirmation-detail": "This item may have been cited, has (or had) a persistent identifier (Handle/DOI), and deleting it may break scholarly references and external links.",
-
- // "item.edit.head": "Edit Item",
"item.edit.head": "આઇટમ સંપાદિત કરો",
- // "item.edit.breadcrumbs": "Edit Item",
"item.edit.breadcrumbs": "આઇટમ સંપાદિત કરો",
- // "item.edit.tabs.disabled.tooltip": "You're not authorized to access this tab",
"item.edit.tabs.disabled.tooltip": "તમે આ ટેબ ઍક્સેસ કરવા માટે અધિકૃત નથી",
- // "item.edit.tabs.mapper.head": "Collection Mapper",
"item.edit.tabs.mapper.head": "સંગ્રહ મેપર",
- // "item.edit.tabs.item-mapper.title": "Item Edit - Collection Mapper",
"item.edit.tabs.item-mapper.title": "આઇટમ સંપાદન - સંગ્રહ મેપર",
- // "item.edit.identifiers.doi.status.UNKNOWN": "Unknown",
"item.edit.identifiers.doi.status.UNKNOWN": "અજ્ઞાત",
- // "item.edit.identifiers.doi.status.TO_BE_REGISTERED": "Queued for registration",
"item.edit.identifiers.doi.status.TO_BE_REGISTERED": "નોંધણી માટે કતારમાં",
- // "item.edit.identifiers.doi.status.TO_BE_RESERVED": "Queued for reservation",
"item.edit.identifiers.doi.status.TO_BE_RESERVED": "રિઝર્વેશન માટે કતારમાં",
- // "item.edit.identifiers.doi.status.IS_REGISTERED": "Registered",
"item.edit.identifiers.doi.status.IS_REGISTERED": "નોંધાયેલ",
- // "item.edit.identifiers.doi.status.IS_RESERVED": "Reserved",
"item.edit.identifiers.doi.status.IS_RESERVED": "રિઝર્વેશન",
- // "item.edit.identifiers.doi.status.UPDATE_RESERVED": "Reserved (update queued)",
"item.edit.identifiers.doi.status.UPDATE_RESERVED": "રિઝર્વેશન (અપડેટ કતારમાં)",
- // "item.edit.identifiers.doi.status.UPDATE_REGISTERED": "Registered (update queued)",
"item.edit.identifiers.doi.status.UPDATE_REGISTERED": "નોંધાયેલ (અપડેટ કતારમાં)",
- // "item.edit.identifiers.doi.status.UPDATE_BEFORE_REGISTRATION": "Queued for update and registration",
"item.edit.identifiers.doi.status.UPDATE_BEFORE_REGISTRATION": "અપડેટ અને નોંધણી માટે કતારમાં",
- // "item.edit.identifiers.doi.status.TO_BE_DELETED": "Queued for deletion",
"item.edit.identifiers.doi.status.TO_BE_DELETED": "કાઢી નાખવા માટે કતારમાં",
- // "item.edit.identifiers.doi.status.DELETED": "Deleted",
"item.edit.identifiers.doi.status.DELETED": "કાઢી નાખ્યું",
- // "item.edit.identifiers.doi.status.PENDING": "Pending (not registered)",
"item.edit.identifiers.doi.status.PENDING": "બાકી (નોંધાયેલ નથી)",
- // "item.edit.identifiers.doi.status.MINTED": "Minted (not registered)",
"item.edit.identifiers.doi.status.MINTED": "મિન્ટેડ (નોંધાયેલ નથી)",
- // "item.edit.tabs.status.buttons.register-doi.label": "Register a new or pending DOI",
"item.edit.tabs.status.buttons.register-doi.label": "નવું અથવા બાકી DOI નોંધણી કરો",
- // "item.edit.tabs.status.buttons.register-doi.button": "Register DOI...",
"item.edit.tabs.status.buttons.register-doi.button": "DOI નોંધણી કરો...",
- // "item.edit.register-doi.header": "Register a new or pending DOI",
"item.edit.register-doi.header": "નવું અથવા બાકી DOI નોંધણી કરો",
- // "item.edit.register-doi.description": "Review any pending identifiers and item metadata below and click Confirm to proceed with DOI registration, or Cancel to back out",
"item.edit.register-doi.description": "કોઈ બાકી ઓળખકર્તાઓ અને આઇટમ મેટાડેટાની નીચે સમીક્ષા કરો અને DOI નોંધણી સાથે આગળ વધવા માટે પુષ્ટિ પર ક્લિક કરો, અથવા રદ કરવા માટે પાછા જાઓ",
- // "item.edit.register-doi.confirm": "Confirm",
"item.edit.register-doi.confirm": "પુષ્ટિ કરો",
- // "item.edit.register-doi.cancel": "Cancel",
"item.edit.register-doi.cancel": "રદ કરો",
- // "item.edit.register-doi.success": "DOI queued for registration successfully.",
"item.edit.register-doi.success": "DOI નોંધણી માટે કતારમાં સફળતાપૂર્વક મૂક્યું.",
- // "item.edit.register-doi.error": "Error registering DOI",
"item.edit.register-doi.error": "DOI નોંધણીમાં ભૂલ",
- // "item.edit.register-doi.to-update": "The following DOI has already been minted and will be queued for registration online",
"item.edit.register-doi.to-update": "નીચે આપેલ DOI પહેલેથી જ મિન્ટેડ છે અને ઓનલાઈન નોંધણી માટે કતારમાં મૂકવામાં આવશે",
- // "item.edit.item-mapper.buttons.add": "Map item to selected collections",
"item.edit.item-mapper.buttons.add": "આઇટમને પસંદ કરેલ સંગ્રહોમાં મેપ કરો",
- // "item.edit.item-mapper.buttons.remove": "Remove item's mapping for selected collections",
"item.edit.item-mapper.buttons.remove": "પસંદ કરેલ સંગ્રહો માટે આઇટમનું મેપિંગ દૂર કરો",
- // "item.edit.item-mapper.cancel": "Cancel",
"item.edit.item-mapper.cancel": "રદ કરો",
- // "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.",
"item.edit.item-mapper.description": "આ આઇટમ મેપર ટૂલ છે જે વહીવટકર્તાઓને આ આઇટમને અન્ય સંગ્રહોમાં મેપ કરવાની મંજૂરી આપે છે. તમે સંગ્રહો શોધી શકો છો અને તેમને મેપ કરી શકો છો, અથવા આઇટમ હાલમાં જે સંગ્રહોમાં મેપ કરેલ છે તેની યાદી બ્રાઉઝ કરી શકો છો.",
- // "item.edit.item-mapper.head": "Item Mapper - Map Item to Collections",
"item.edit.item-mapper.head": "આઇટમ મેપર - આઇટમને સંગ્રહોમાં મેપ કરો",
- // "item.edit.item-mapper.item": "Item: \"{{name}}\"",
- // TODO New key - Add a translation
- "item.edit.item-mapper.item": "Item: \"{{name}}\"",
+ "item.edit.item-mapper.item": "આઇટમ: \\\"{{name}}\\\"",
- // "item.edit.item-mapper.no-search": "Please enter a query to search",
"item.edit.item-mapper.no-search": "કૃપા કરીને શોધ માટે ક્વેરી દાખલ કરો",
- // "item.edit.item-mapper.notifications.add.error.content": "Errors occurred for mapping of item to {{amount}} collections.",
"item.edit.item-mapper.notifications.add.error.content": "આઇટમને {{amount}} સંગ્રહોમાં મેપ કરતી વખતે ભૂલો આવી.",
- // "item.edit.item-mapper.notifications.add.error.forbidden.head": "Permission denied",
- // TODO New key - Add a translation
- "item.edit.item-mapper.notifications.add.error.forbidden.head": "Permission denied",
-
- // "item.edit.item-mapper.notifications.add.error.forbidden.content": "You do not have permission to map this item to a collection.",
- // TODO New key - Add a translation
- "item.edit.item-mapper.notifications.add.error.forbidden.content": "You do not have permission to map this item to a collection.",
-
- // "item.edit.item-mapper.notifications.add.error.head": "Mapping errors",
"item.edit.item-mapper.notifications.add.error.head": "મેપિંગ ભૂલો",
- // "item.edit.item-mapper.notifications.add.success.content": "Successfully mapped item to {{amount}} collections.",
"item.edit.item-mapper.notifications.add.success.content": "આઇટમને {{amount}} સંગ્રહોમાં સફળતાપૂર્વક મેપ કર્યું.",
- // "item.edit.item-mapper.notifications.add.success.head": "Mapping completed",
"item.edit.item-mapper.notifications.add.success.head": "મેપિંગ પૂર્ણ",
- // "item.edit.item-mapper.notifications.remove.error.content": "Errors occurred for the removal of the mapping to {{amount}} collections.",
"item.edit.item-mapper.notifications.remove.error.content": "મેપિંગ {{amount}} સંગ્રહો માટે દૂર કરતી વખતે ભૂલો આવી.",
- // "item.edit.item-mapper.notifications.remove.error.forbidden.head": "Permission denied",
- // TODO New key - Add a translation
- "item.edit.item-mapper.notifications.remove.error.forbidden.head": "Permission denied",
-
- // "item.edit.item-mapper.notifications.remove.error.forbidden.content": "You do not have permission to remove this item from a collection.",
- // TODO New key - Add a translation
- "item.edit.item-mapper.notifications.remove.error.forbidden.content": "You do not have permission to remove this item from a collection.",
-
- // "item.edit.item-mapper.notifications.remove.error.head": "Removal of mapping errors",
"item.edit.item-mapper.notifications.remove.error.head": "મેપિંગ દૂર કરવાની ભૂલો",
- // "item.edit.item-mapper.notifications.remove.success.content": "Successfully removed mapping of item to {{amount}} collections.",
"item.edit.item-mapper.notifications.remove.success.content": "આઇટમનું મેપિંગ {{amount}} સંગ્રહો માટે સફળતાપૂર્વક દૂર કર્યું.",
- // "item.edit.item-mapper.notifications.remove.success.head": "Removal of mapping completed",
"item.edit.item-mapper.notifications.remove.success.head": "મેપિંગ દૂર કરવું પૂર્ણ",
- // "item.edit.item-mapper.search-form.placeholder": "Search collections...",
"item.edit.item-mapper.search-form.placeholder": "સંગ્રહો શોધો...",
- // "item.edit.item-mapper.tabs.browse": "Browse mapped collections",
"item.edit.item-mapper.tabs.browse": "મેપ કરેલ સંગ્રહો બ્રાઉઝ કરો",
- // "item.edit.item-mapper.tabs.map": "Map new collections",
"item.edit.item-mapper.tabs.map": "નવા સંગ્રહો મેપ કરો",
- // "item.edit.metadata.add-button": "Add",
"item.edit.metadata.add-button": "ઉમેરો",
- // "item.edit.metadata.discard-button": "Discard",
"item.edit.metadata.discard-button": "રદ કરો",
- // "item.edit.metadata.edit.language": "Edit language",
"item.edit.metadata.edit.language": "ભાષા સંપાદિત કરો",
- // "item.edit.metadata.edit.authority": "Edit authority",
- // TODO New key - Add a translation
- "item.edit.metadata.edit.authority": "Edit authority",
-
- // "item.edit.metadata.edit.value": "Edit value",
"item.edit.metadata.edit.value": "મૂલ્ય સંપાદિત કરો",
- // "item.edit.metadata.edit.authority.key": "Edit authority key",
"item.edit.metadata.edit.authority.key": "અધિકૃતતા કી સંપાદિત કરો",
- // "item.edit.metadata.edit.buttons.enable-free-text-editing": "Enable free-text editing",
"item.edit.metadata.edit.buttons.enable-free-text-editing": "મફત-ટેક્સ્ટ સંપાદન સક્ષમ કરો",
- // "item.edit.metadata.edit.buttons.disable-free-text-editing": "Disable free-text editing",
"item.edit.metadata.edit.buttons.disable-free-text-editing": "મફત-ટેક્સ્ટ સંપાદન અક્ષમ કરો",
- // "item.edit.metadata.edit.buttons.confirm": "Confirm",
"item.edit.metadata.edit.buttons.confirm": "પુષ્ટિ કરો",
- // "item.edit.metadata.edit.buttons.drag": "Drag to reorder",
"item.edit.metadata.edit.buttons.drag": "ફરીથી ક્રમમાં ગોઠવવા માટે ડ્રેગ કરો",
- // "item.edit.metadata.edit.buttons.edit": "Edit",
"item.edit.metadata.edit.buttons.edit": "સંપાદિત કરો",
- // "item.edit.metadata.edit.buttons.remove": "Remove",
"item.edit.metadata.edit.buttons.remove": "દૂર કરો",
- // "item.edit.metadata.edit.buttons.undo": "Undo changes",
"item.edit.metadata.edit.buttons.undo": "ફેરફારો રદ કરો",
- // "item.edit.metadata.edit.buttons.unedit": "Stop editing",
"item.edit.metadata.edit.buttons.unedit": "સંપાદન બંધ કરો",
- // "item.edit.metadata.edit.buttons.virtual": "This is a virtual metadata value, i.e. a value inherited from a related entity. It can’t be modified directly. Add or remove the corresponding relationship in the \"Relationships\" tab",
"item.edit.metadata.edit.buttons.virtual": "આ વર્ચ્યુઅલ મેટાડેટા મૂલ્ય છે, એટલે કે સંબંધિત સત્તાથી વારસામાં મળેલું મૂલ્ય. તેને સીધા રીતે બદલી શકાતું નથી. 'સંબંધો' ટેબમાં સંબંધ ઉમેરો અથવા દૂર કરો",
- // "item.edit.metadata.empty": "The item currently doesn't contain any metadata. Click Add to start adding a metadata value.",
"item.edit.metadata.empty": "આ આઇટમમાં હાલમાં કોઈ મેટાડેટા નથી. મેટાડેટા મૂલ્ય ઉમેરવાનું શરૂ કરવા માટે ઉમેરો પર ક્લિક કરો.",
- // "item.edit.metadata.headers.edit": "Edit",
"item.edit.metadata.headers.edit": "સંપાદિત કરો",
- // "item.edit.metadata.headers.field": "Field",
"item.edit.metadata.headers.field": "ફીલ્ડ",
- // "item.edit.metadata.headers.language": "Lang",
"item.edit.metadata.headers.language": "ભાષા",
- // "item.edit.metadata.headers.security": "Security level",
- // TODO New key - Add a translation
- "item.edit.metadata.headers.security": "Security level",
-
- // "item.edit.metadata.headers.authority": "Authority",
- // TODO New key - Add a translation
- "item.edit.metadata.headers.authority": "Authority",
-
- // "item.edit.metadata.headers.value": "Value",
"item.edit.metadata.headers.value": "મૂલ્ય",
- // "item.edit.metadata.metadatafield": "Edit field",
"item.edit.metadata.metadatafield": "ફીલ્ડ સંપાદિત કરો",
- // "item.edit.metadata.metadatafield.error": "An error occurred validating the metadata field",
"item.edit.metadata.metadatafield.error": "મેટાડેટા ફીલ્ડ માન્ય કરતી વખતે ભૂલ આવી",
- // "item.edit.metadata.metadatafield.invalid": "Please choose a valid metadata field",
"item.edit.metadata.metadatafield.invalid": "કૃપા કરીને માન્ય મેટાડેટા ફીલ્ડ પસંદ કરો",
- // "item.edit.metadata.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button",
"item.edit.metadata.notifications.discarded.content": "તમારા ફેરફારો રદ કરવામાં આવ્યા. તમારા ફેરફારોને ફરી સ્થાપિત કરવા માટે 'Undo' બટન પર ક્લિક કરો",
- // "item.edit.metadata.notifications.discarded.title": "Changes discarded",
"item.edit.metadata.notifications.discarded.title": "ફેરફારો રદ",
- // "item.edit.metadata.notifications.error.title": "An error occurred",
"item.edit.metadata.notifications.error.title": "ભૂલ આવી",
- // "item.edit.metadata.notifications.invalid.content": "Your changes were not saved. Please make sure all fields are valid before you save.",
"item.edit.metadata.notifications.invalid.content": "તમારા ફેરફારો સાચવવામાં આવ્યા નથી. કૃપા કરીને ખાતરી કરો કે બધા ફીલ્ડ માન્ય છે પહેલાં તમે સાચવો.",
- // "item.edit.metadata.notifications.invalid.title": "Metadata invalid",
"item.edit.metadata.notifications.invalid.title": "મેટાડેટા અમાન્ય",
- // "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",
"item.edit.metadata.notifications.outdated.content": "તમે હાલમાં જે આઇટમ પર કામ કરી રહ્યા છો તે બીજા વપરાશકર્તા દ્વારા બદલવામાં આવ્યું છે. સંઘર્ષો ટાળવા માટે તમારા વર્તમાન ફેરફારો રદ કરવામાં આવ્યા છે",
- // "item.edit.metadata.notifications.outdated.title": "Changes outdated",
"item.edit.metadata.notifications.outdated.title": "ફેરફારો જૂના છે",
- // "item.edit.metadata.notifications.saved.content": "Your changes to this item's metadata were saved.",
"item.edit.metadata.notifications.saved.content": "આ આઇટમના મેટાડેટા માટેના તમારા ફેરફારો સાચવવામાં આવ્યા.",
- // "item.edit.metadata.notifications.saved.title": "Metadata saved",
"item.edit.metadata.notifications.saved.title": "મેટાડેટા સાચવ્યા",
- // "item.edit.metadata.reinstate-button": "Undo",
"item.edit.metadata.reinstate-button": "Undo",
- // "item.edit.metadata.reset-order-button": "Undo reorder",
"item.edit.metadata.reset-order-button": "ફરીથી ક્રમમાં ગોઠવવું Undo",
- // "item.edit.metadata.save-button": "Save",
"item.edit.metadata.save-button": "સાચવો",
- // "item.edit.metadata.authority.label": "Authority: ",
- // TODO New key - Add a translation
- "item.edit.metadata.authority.label": "Authority: ",
+ "item.edit.metadata.authority.label": "અધિકૃતતા: ",
- // "item.edit.metadata.edit.buttons.open-authority-edition": "Unlock the authority key value for manual editing",
"item.edit.metadata.edit.buttons.open-authority-edition": "મેન્યુઅલ સંપાદન માટે અધિકૃતતા કી મૂલ્યને અનલૉક કરો",
- // "item.edit.metadata.edit.buttons.close-authority-edition": "Lock the authority key value for manual editing",
"item.edit.metadata.edit.buttons.close-authority-edition": "મેન્યુઅલ સંપાદન માટે અધિકૃતતા કી મૂલ્યને લૉક કરો",
- // "item.edit.modify.overview.field": "Field",
"item.edit.modify.overview.field": "ફીલ્ડ",
- // "item.edit.modify.overview.language": "Language",
"item.edit.modify.overview.language": "ભાષા",
- // "item.edit.modify.overview.value": "Value",
"item.edit.modify.overview.value": "મૂલ્ય",
- // "item.edit.move.cancel": "Back",
"item.edit.move.cancel": "પાછા",
- // "item.edit.move.save-button": "Save",
"item.edit.move.save-button": "સાચવો",
- // "item.edit.move.discard-button": "Discard",
"item.edit.move.discard-button": "રદ કરો",
- // "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.",
"item.edit.move.description": "આઇટમ ખસેડવા માટે તમે જે સંગ્રહમાં ખસેડવા માંગો છો તે પસંદ કરો. બતાવેલ સંગ્રહોની યાદી સંકોચવા માટે, તમે બોક્સમાં શોધ ક્વેરી દાખલ કરી શકો છો.",
- // "item.edit.move.error": "An error occurred when attempting to move the item",
"item.edit.move.error": "આઇટમ ખસેડવાનો પ્રયાસ કરતી વખતે ભૂલ આવી",
- // "item.edit.move.head": "Move item: {{id}}",
- // TODO New key - Add a translation
- "item.edit.move.head": "Move item: {{id}}",
+ "item.edit.move.head": "આઇટમ ખસેડો: {{id}}",
- // "item.edit.move.inheritpolicies.checkbox": "Inherit policies",
"item.edit.move.inheritpolicies.checkbox": "પોલિસી વારસામાં મેળવો",
- // "item.edit.move.inheritpolicies.description": "Inherit the default policies of the destination collection",
"item.edit.move.inheritpolicies.description": "લક્ષ્ય સંગ્રહની ડિફોલ્ટ પોલિસી વારસામાં મેળવો",
- // "item.edit.move.inheritpolicies.tooltip": "Warning: When enabled, the read access policy for the item and any files associated with the item will be replaced by the default read access policy of the collection. This cannot be undone.",
- // TODO New key - Add a translation
- "item.edit.move.inheritpolicies.tooltip": "Warning: When enabled, the read access policy for the item and any files associated with the item will be replaced by the default read access policy of the collection. This cannot be undone.",
+ "item.edit.move.inheritpolicies.tooltip": "ચેતવણી: સક્ષમ હોવા પર, આઇટમ અને આઇટમ સાથે સંકળાયેલી કોઈપણ ફાઇલો માટેની વાંચન ઍક્સેસ પોલિસી લક્ષ્ય સંગ્રહની ડિફોલ્ટ વાંચન ઍક્સેસ પોલિસી દ્વારા બદલવામાં આવશે. આ પાછું લાવી શકાતું નથી.",
- // "item.edit.move.move": "Move",
"item.edit.move.move": "ખસેડો",
- // "item.edit.move.processing": "Moving...",
"item.edit.move.processing": "ખસેડી રહ્યા છે...",
- // "item.edit.move.search.placeholder": "Enter a search query to look for collections",
"item.edit.move.search.placeholder": "સંગ્રહો શોધવા માટે શોધ ક્વેરી દાખલ કરો",
- // "item.edit.move.success": "The item has been moved successfully",
"item.edit.move.success": "આ આઇટમ સફળતાપૂર્વક ખસેડવામાં આવ્યું છે",
- // "item.edit.move.title": "Move item",
"item.edit.move.title": "આઇટમ ખસેડો",
- // "item.edit.private.cancel": "Cancel",
"item.edit.private.cancel": "રદ કરો",
- // "item.edit.private.confirm": "Make it non-discoverable",
"item.edit.private.confirm": "તેને નોન-ડિસ્કવરેબલ બનાવો",
- // "item.edit.private.description": "Are you sure this item should be made non-discoverable in the archive?",
"item.edit.private.description": "શું તમે ખાતરી કરો છો કે આ આઇટમ આર્કાઇવમાં નોન-ડિસ્કવરેબલ બનાવવું જોઈએ?",
- // "item.edit.private.error": "An error occurred while making the item non-discoverable",
"item.edit.private.error": "આ આઇટમને નોન-ડિસ્કવરેબલ બનાવતી વખતે એક ભૂલ આવી",
- // "item.edit.private.header": "Make item non-discoverable: {{ id }}",
- // TODO New key - Add a translation
- "item.edit.private.header": "Make item non-discoverable: {{ id }}",
+ "item.edit.private.header": "આઇટમ નોન-ડિસ્કવરેબલ બનાવો: {{ id }}",
- // "item.edit.private.success": "The item is now non-discoverable",
"item.edit.private.success": "આ આઇટમ હવે નોન-ડિસ્કવરેબલ છે",
- // "item.edit.public.cancel": "Cancel",
"item.edit.public.cancel": "રદ કરો",
- // "item.edit.public.confirm": "Make it discoverable",
"item.edit.public.confirm": "તેને ડિસ્કવરેબલ બનાવો",
- // "item.edit.public.description": "Are you sure this item should be made discoverable in the archive?",
"item.edit.public.description": "શું તમે ખાતરી કરો છો કે આ આઇટમ આર્કાઇવમાં ડિસ્કવરેબલ બનાવવું જોઈએ?",
- // "item.edit.public.error": "An error occurred while making the item discoverable",
"item.edit.public.error": "આ આઇટમને ડિસ્કવરેબલ બનાવતી વખતે એક ભૂલ આવી",
- // "item.edit.public.header": "Make item discoverable: {{ id }}",
- // TODO New key - Add a translation
- "item.edit.public.header": "Make item discoverable: {{ id }}",
+ "item.edit.public.header": "આઇટમ ડિસ્કવરેબલ બનાવો: {{ id }}",
- // "item.edit.public.success": "The item is now discoverable",
"item.edit.public.success": "આ આઇટમ હવે ડિસ્કવરેબલ છે",
- // "item.edit.reinstate.cancel": "Cancel",
"item.edit.reinstate.cancel": "રદ કરો",
- // "item.edit.reinstate.confirm": "Reinstate",
"item.edit.reinstate.confirm": "ફરી સ્થાપિત કરો",
- // "item.edit.reinstate.description": "Are you sure this item should be reinstated to the archive?",
"item.edit.reinstate.description": "શું તમે ખાતરી કરો છો કે આ આઇટમને આર્કાઇવમાં ફરી સ્થાપિત કરવું જોઈએ?",
- // "item.edit.reinstate.error": "An error occurred while reinstating the item",
"item.edit.reinstate.error": "આ આઇટમને ફરી સ્થાપિત કરતી વખતે એક ભૂલ આવી",
- // "item.edit.reinstate.header": "Reinstate item: {{ id }}",
- // TODO New key - Add a translation
- "item.edit.reinstate.header": "Reinstate item: {{ id }}",
+ "item.edit.reinstate.header": "આઇટમ ફરી સ્થાપિત કરો: {{ id }}",
- // "item.edit.reinstate.success": "The item was reinstated successfully",
"item.edit.reinstate.success": "આ આઇટમ સફળતાપૂર્વક ફરી સ્થાપિત થયું",
- // "item.edit.relationships.discard-button": "Discard",
"item.edit.relationships.discard-button": "રદ કરો",
- // "item.edit.relationships.edit.buttons.add": "Add",
"item.edit.relationships.edit.buttons.add": "ઉમેરો",
- // "item.edit.relationships.edit.buttons.remove": "Remove",
"item.edit.relationships.edit.buttons.remove": "દૂર કરો",
- // "item.edit.relationships.edit.buttons.undo": "Undo changes",
"item.edit.relationships.edit.buttons.undo": "ફેરફારો રદ કરો",
- // "item.edit.relationships.no-relationships": "No relationships",
"item.edit.relationships.no-relationships": "કોઈ સંબંધો નથી",
- // "item.edit.relationships.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button",
"item.edit.relationships.notifications.discarded.content": "તમારા ફેરફારો રદ કરવામાં આવ્યા હતા. તમારા ફેરફારોને ફરી સ્થાપિત કરવા માટે 'Undo' બટન પર ક્લિક કરો",
- // "item.edit.relationships.notifications.discarded.title": "Changes discarded",
"item.edit.relationships.notifications.discarded.title": "ફેરફારો રદ",
- // "item.edit.relationships.notifications.failed.title": "Error editing relationships",
"item.edit.relationships.notifications.failed.title": "સંબંધો સંપાદિત કરતી વખતે ભૂલ",
- // "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",
"item.edit.relationships.notifications.outdated.content": "તમે હાલમાં જે આઇટમ પર કામ કરી રહ્યા છો તે બીજા વપરાશકર્તા દ્વારા બદલવામાં આવ્યું છે. સંઘર્ષો ટાળવા માટે તમારા વર્તમાન ફેરફારો રદ કરવામાં આવ્યા છે",
- // "item.edit.relationships.notifications.outdated.title": "Changes outdated",
"item.edit.relationships.notifications.outdated.title": "ફેરફારો જૂના",
- // "item.edit.relationships.notifications.saved.content": "Your changes to this item's relationships were saved.",
"item.edit.relationships.notifications.saved.content": "આ આઇટમના સંબંધો માટેના તમારા ફેરફારો સાચવવામાં આવ્યા હતા.",
- // "item.edit.relationships.notifications.saved.title": "Relationships saved",
"item.edit.relationships.notifications.saved.title": "સંબંધો સાચવ્યા",
- // "item.edit.relationships.reinstate-button": "Undo",
"item.edit.relationships.reinstate-button": "Undo",
- // "item.edit.relationships.save-button": "Save",
"item.edit.relationships.save-button": "સાચવો",
- // "item.edit.relationships.no-entity-type": "Add 'dspace.entity.type' metadata to enable relationships for this item",
"item.edit.relationships.no-entity-type": "આ આઇટમ માટે સંબંધો સક્ષમ કરવા માટે 'dspace.entity.type' મેટાડેટા ઉમેરો",
- // "item.edit.return": "Back",
"item.edit.return": "પાછા",
- // "item.edit.tabs.bitstreams.head": "Bitstreams",
"item.edit.tabs.bitstreams.head": "બિટસ્ટ્રીમ્સ",
- // "item.edit.tabs.bitstreams.title": "Item Edit - Bitstreams",
"item.edit.tabs.bitstreams.title": "આઇટમ સંપાદન - બિટસ્ટ્રીમ્સ",
- // "item.edit.tabs.curate.head": "Curate",
"item.edit.tabs.curate.head": "ક્યુરેટ",
- // "item.edit.tabs.curate.title": "Item Edit - Curate",
"item.edit.tabs.curate.title": "આઇટમ ક્યુરેટ કરો: {{item}}",
- // "item.edit.curate.title": "Curate Item: {{item}}",
- // TODO New key - Add a translation
- "item.edit.curate.title": "Curate Item: {{item}}",
-
- // "item.edit.tabs.access-control.head": "Access Control",
"item.edit.tabs.access-control.head": "ઍક્સેસ કંટ્રોલ",
- // "item.edit.tabs.access-control.title": "Item Edit - Access Control",
"item.edit.tabs.access-control.title": "આઇટમ સંપાદન - ઍક્સેસ કંટ્રોલ",
- // "item.edit.tabs.metadata.head": "Metadata",
"item.edit.tabs.metadata.head": "મેટાડેટા",
- // "item.edit.tabs.metadata.title": "Item Edit - Metadata",
"item.edit.tabs.metadata.title": "આઇટમ સંપાદન - મેટાડેટા",
- // "item.edit.tabs.relationships.head": "Relationships",
"item.edit.tabs.relationships.head": "સંબંધો",
- // "item.edit.tabs.relationships.title": "Item Edit - Relationships",
"item.edit.tabs.relationships.title": "આઇટમ સંપાદન - સંબંધો",
- // "item.edit.tabs.status.buttons.authorizations.button": "Authorizations...",
"item.edit.tabs.status.buttons.authorizations.button": "અધિકૃતતાઓ...",
- // "item.edit.tabs.status.buttons.authorizations.label": "Edit item's authorization policies",
"item.edit.tabs.status.buttons.authorizations.label": "આઇટમની અધિકૃતતા નીતિઓ સંપાદિત કરો",
- // "item.edit.tabs.status.buttons.delete.button": "Permanently delete",
"item.edit.tabs.status.buttons.delete.button": "કાયમ માટે કાઢી નાખો",
- // "item.edit.tabs.status.buttons.delete.label": "Completely expunge item",
"item.edit.tabs.status.buttons.delete.label": "આઇટમને સંપૂર્ણપણે કાઢી નાખો",
- // "item.edit.tabs.status.buttons.mappedCollections.button": "Mapped collections",
"item.edit.tabs.status.buttons.mappedCollections.button": "મૅપ કરેલ સંગ્રહો",
- // "item.edit.tabs.status.buttons.mappedCollections.label": "Manage mapped collections",
"item.edit.tabs.status.buttons.mappedCollections.label": "મૅપ કરેલ સંગ્રહો મેનેજ કરો",
- // "item.edit.tabs.status.buttons.move.button": "Move this item to a different collection",
"item.edit.tabs.status.buttons.move.button": "આ આઇટમને અલગ સંગ્રહમાં ખસેડો",
- // "item.edit.tabs.status.buttons.move.label": "Move item to another collection",
"item.edit.tabs.status.buttons.move.label": "આઇટમને બીજા સંગ્રહમાં ખસેડો",
- // "item.edit.tabs.status.buttons.private.button": "Make it non-discoverable...",
"item.edit.tabs.status.buttons.private.button": "તેને નોન-ડિસ્કવરેબલ બનાવો...",
- // "item.edit.tabs.status.buttons.private.label": "Make item non-discoverable",
"item.edit.tabs.status.buttons.private.label": "આઇટમને નોન-ડિસ્કવરેબલ બનાવો",
- // "item.edit.tabs.status.buttons.public.button": "Make it discoverable...",
"item.edit.tabs.status.buttons.public.button": "તેને ડિસ્કવરેબલ બનાવો...",
- // "item.edit.tabs.status.buttons.public.label": "Make item discoverable",
"item.edit.tabs.status.buttons.public.label": "આઇટમને ડિસ્કવરેબલ બનાવો",
- // "item.edit.tabs.status.buttons.reinstate.button": "Reinstate...",
"item.edit.tabs.status.buttons.reinstate.button": "ફરી સ્થાપિત કરો...",
- // "item.edit.tabs.status.buttons.reinstate.label": "Reinstate item into the repository",
"item.edit.tabs.status.buttons.reinstate.label": "આઇટમને રિપોઝિટરીમાં ફરી સ્થાપિત કરો",
- // "item.edit.tabs.status.buttons.unauthorized": "You're not authorized to perform this action",
"item.edit.tabs.status.buttons.unauthorized": "તમે આ ક્રિયા કરવા માટે અધિકૃત નથી",
- // "item.edit.tabs.status.buttons.withdraw.button": "Withdraw this item",
"item.edit.tabs.status.buttons.withdraw.button": "આ આઇટમને પાછું ખેંચો",
- // "item.edit.tabs.status.buttons.withdraw.label": "Withdraw item from the repository",
"item.edit.tabs.status.buttons.withdraw.label": "આઇટમને રિપોઝિટરીમાંથી પાછું ખેંચો",
- // "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.",
"item.edit.tabs.status.description": "આઇટમ મેનેજમેન્ટ પેજમાં આપનું સ્વાગત છે. અહીંથી તમે આઇટમને પાછું ખેંચી શકો છો, ફરી સ્થાપિત કરી શકો છો, ખસેડી શકો છો અથવા કાઢી શકો છો. તમે અન્ય ટૅબ પર નવા મેટાડેટા / બિટસ્ટ્રીમ્સને અપડેટ અથવા ઉમેરવા માટે પણ કરી શકો છો.",
- // "item.edit.tabs.status.head": "Status",
"item.edit.tabs.status.head": "સ્થિતિ",
- // "item.edit.tabs.status.labels.handle": "Handle",
"item.edit.tabs.status.labels.handle": "હેન્ડલ",
- // "item.edit.tabs.status.labels.id": "Item Internal ID",
"item.edit.tabs.status.labels.id": "આઇટમ આંતરિક ID",
- // "item.edit.tabs.status.labels.itemPage": "Item Page",
"item.edit.tabs.status.labels.itemPage": "આઇટમ પેજ",
- // "item.edit.tabs.status.labels.lastModified": "Last Modified",
"item.edit.tabs.status.labels.lastModified": "છેલ્લે ફેરફાર",
- // "item.edit.tabs.status.title": "Item Edit - Status",
"item.edit.tabs.status.title": "આઇટમ સંપાદન - સ્થિતિ",
- // "item.edit.tabs.versionhistory.head": "Version History",
"item.edit.tabs.versionhistory.head": "આવૃત્તિ ઇતિહાસ",
- // "item.edit.tabs.versionhistory.title": "Item Edit - Version History",
"item.edit.tabs.versionhistory.title": "આઇટમ સંપાદન - આવૃત્તિ ઇતિહાસ",
- // "item.edit.tabs.versionhistory.under-construction": "Editing or adding new versions is not yet possible in this user interface.",
"item.edit.tabs.versionhistory.under-construction": "આ વપરાશકર્તા ઇન્ટરફેસમાં નવી આવૃત્તિઓ સંપાદિત કરવી અથવા ઉમેરવી હજી શક્ય નથી.",
- // "item.edit.tabs.view.head": "View Item",
"item.edit.tabs.view.head": "આઇટમ જુઓ",
- // "item.edit.tabs.view.title": "Item Edit - View",
"item.edit.tabs.view.title": "આઇટમ સંપાદન - જુઓ",
- // "item.edit.withdraw.cancel": "Cancel",
"item.edit.withdraw.cancel": "રદ કરો",
- // "item.edit.withdraw.confirm": "Withdraw",
"item.edit.withdraw.confirm": "પાછું ખેંચો",
- // "item.edit.withdraw.description": "Are you sure this item should be withdrawn from the archive?",
"item.edit.withdraw.description": "શું તમે ખાતરી કરો છો કે આ આઇટમને આર્કાઇવમાંથી પાછું ખેંચવું જોઈએ?",
- // "item.edit.withdraw.error": "An error occurred while withdrawing the item",
"item.edit.withdraw.error": "આ આઇટમને પાછું ખેંચતી વખતે એક ભૂલ આવી",
- // "item.edit.withdraw.header": "Withdraw item: {{ id }}",
- // TODO New key - Add a translation
- "item.edit.withdraw.header": "Withdraw item: {{ id }}",
+ "item.edit.withdraw.header": "આઇટમ પાછું ખેંચો: {{ id }}",
- // "item.edit.withdraw.success": "The item was withdrawn successfully",
"item.edit.withdraw.success": "આ આઇટમ સફળતાપૂર્વક પાછું ખેંચવામાં આવ્યું",
- // "item.orcid.return": "Back",
"item.orcid.return": "પાછા",
- // "item.listelement.badge": "Item",
"item.listelement.badge": "આઇટમ",
- // "item.page.description": "Description",
"item.page.description": "વર્ણન",
- // "item.page.org-unit": "Organizational Unit",
- // TODO New key - Add a translation
- "item.page.org-unit": "Organizational Unit",
-
- // "item.page.org-units": "Organizational Units",
- // TODO New key - Add a translation
- "item.page.org-units": "Organizational Units",
-
- // "item.page.project": "Research Project",
- // TODO New key - Add a translation
- "item.page.project": "Research Project",
-
- // "item.page.projects": "Research Projects",
- // TODO New key - Add a translation
- "item.page.projects": "Research Projects",
-
- // "item.page.publication": "Publications",
- // TODO New key - Add a translation
- "item.page.publication": "Publications",
-
- // "item.page.publications": "Publications",
- // TODO New key - Add a translation
- "item.page.publications": "Publications",
-
- // "item.page.article": "Article",
- // TODO New key - Add a translation
- "item.page.article": "Article",
-
- // "item.page.articles": "Articles",
- // TODO New key - Add a translation
- "item.page.articles": "Articles",
-
- // "item.page.journal": "Journal",
- // TODO New key - Add a translation
- "item.page.journal": "Journal",
-
- // "item.page.journals": "Journals",
- // TODO New key - Add a translation
- "item.page.journals": "Journals",
-
- // "item.page.journal-issue": "Journal Issue",
- // TODO New key - Add a translation
- "item.page.journal-issue": "Journal Issue",
-
- // "item.page.journal-issues": "Journal Issues",
- // TODO New key - Add a translation
- "item.page.journal-issues": "Journal Issues",
-
- // "item.page.journal-volume": "Journal Volume",
- // TODO New key - Add a translation
- "item.page.journal-volume": "Journal Volume",
-
- // "item.page.journal-volumes": "Journal Volumes",
- // TODO New key - Add a translation
- "item.page.journal-volumes": "Journal Volumes",
-
- // "item.page.journal-issn": "Journal ISSN",
"item.page.journal-issn": "જર્નલ ISSN",
- // "item.page.journal-title": "Journal Title",
"item.page.journal-title": "જર્નલ શીર્ષક",
- // "item.page.publisher": "Publisher",
"item.page.publisher": "પ્રકાશક",
- // "item.page.titleprefix": "Item: ",
- // TODO New key - Add a translation
- "item.page.titleprefix": "Item: ",
+ "item.page.titleprefix": "આઇટમ: ",
- // "item.page.volume-title": "Volume Title",
"item.page.volume-title": "વોલ્યુમ શીર્ષક",
- // "item.page.dcterms.spatial": "Geospatial point",
"item.page.dcterms.spatial": "ભૌગોલિક બિંદુ",
- // "item.page.doi": "DOI",
- // TODO New key - Add a translation
- "item.page.doi": "DOI",
-
- // "item.search.results.head": "Item Search Results",
"item.search.results.head": "આઇટમ શોધ પરિણામો",
- // "item.search.title": "Item Search",
"item.search.title": "આઇટમ શોધ",
- // "item.truncatable-part.show-more": "Show more",
"item.truncatable-part.show-more": "વધુ બતાવો",
- // "item.truncatable-part.show-less": "Collapse",
"item.truncatable-part.show-less": "સંકોચો",
- // "item.qa-event-notification.check.notification-info": "There are {{num}} pending suggestions related to your account",
"item.qa-event-notification.check.notification-info": "તમારા ખાતા સાથે સંબંધિત {{num}} પેન્ડિંગ સૂચનો છે",
- // "item.qa-event-notification-info.check.button": "View",
"item.qa-event-notification-info.check.button": "જુઓ",
- // "mydspace.qa-event-notification.check.notification-info": "There are {{num}} pending suggestions related to your account",
"mydspace.qa-event-notification.check.notification-info": "તમારા ખાતા સાથે સંબંધિત {{num}} પેન્ડિંગ સૂચનો છે",
- // "mydspace.qa-event-notification-info.check.button": "View",
"mydspace.qa-event-notification-info.check.button": "જુઓ",
- // "workflow-item.search.result.delete-supervision.modal.header": "Delete Supervision Order",
"workflow-item.search.result.delete-supervision.modal.header": "સુપરવિઝન ઓર્ડર કાઢી નાખો",
- // "workflow-item.search.result.delete-supervision.modal.info": "Are you sure you want to delete Supervision Order",
"workflow-item.search.result.delete-supervision.modal.info": "શું તમે સુપરવિઝન ઓર્ડર કાઢી નાખવા માંગો છો?",
- // "workflow-item.search.result.delete-supervision.modal.cancel": "Cancel",
"workflow-item.search.result.delete-supervision.modal.cancel": "રદ કરો",
- // "workflow-item.search.result.delete-supervision.modal.confirm": "Delete",
"workflow-item.search.result.delete-supervision.modal.confirm": "કાઢી નાખો",
- // "workflow-item.search.result.notification.deleted.success": "Successfully deleted supervision order \"{{name}}\"",
"workflow-item.search.result.notification.deleted.success": "સુપરવિઝન ઓર્ડર સફળતાપૂર્વક કાઢી નાખ્યો \"{{name}}\"",
- // "workflow-item.search.result.notification.deleted.failure": "Failed to delete supervision order \"{{name}}\"",
"workflow-item.search.result.notification.deleted.failure": "સુપરવિઝન ઓર્ડર કાઢી શક્યો નહીં \"{{name}}\"",
- // "workflow-item.search.result.list.element.supervised-by": "Supervised by:",
- // TODO New key - Add a translation
- "workflow-item.search.result.list.element.supervised-by": "Supervised by:",
+ "workflow-item.search.result.list.element.supervised-by": "સુપરવિઝન દ્વારા:",
- // "workflow-item.search.result.list.element.supervised.remove-tooltip": "Remove supervision group",
"workflow-item.search.result.list.element.supervised.remove-tooltip": "સુપરવિઝન જૂથ દૂર કરો",
- // "confidence.indicator.help-text.accepted": "This authority value has been confirmed as accurate by an interactive user",
"confidence.indicator.help-text.accepted": "આ અધિકૃત મૂલ્યને ઇન્ટરેક્ટિવ વપરાશકર્તા દ્વારા સચોટ તરીકે પુષ્ટિ આપવામાં આવી છે",
- // "confidence.indicator.help-text.uncertain": "Value is singular and valid but has not been seen and accepted by a human so it is still uncertain",
"confidence.indicator.help-text.uncertain": "મૂલ્ય એકલ અને માન્ય છે પરંતુ માનવ દ્વારા જોવામાં અને સ્વીકારવામાં આવ્યું નથી તેથી તે હજી પણ અનિશ્ચિત છે",
- // "confidence.indicator.help-text.ambiguous": "There are multiple matching authority values of equal validity",
"confidence.indicator.help-text.ambiguous": "સમાન માન્યતાના અનેક મેળ ખાતા અધિકૃત મૂલ્યો છે",
- // "confidence.indicator.help-text.notfound": "There are no matching answers in the authority",
"confidence.indicator.help-text.notfound": "અધિકૃતમાં કોઈ મેળ ખાતા જવાબો નથી",
- // "confidence.indicator.help-text.failed": "The authority encountered an internal failure",
"confidence.indicator.help-text.failed": "અધિકૃત આંતરિક નિષ્ફળતા અનુભવી",
- // "confidence.indicator.help-text.rejected": "The authority recommends this submission be rejected",
"confidence.indicator.help-text.rejected": "અધિકૃત આ સબમિશનને નકારી કાઢવાની ભલામણ કરે છે",
- // "confidence.indicator.help-text.novalue": "No reasonable confidence value was returned from the authority",
"confidence.indicator.help-text.novalue": "અધિકૃતમાંથી કોઈ યોગ્ય વિશ્વાસ મૂલ્ય પરત કરવામાં આવ્યું નથી",
- // "confidence.indicator.help-text.unset": "Confidence was never recorded for this value",
"confidence.indicator.help-text.unset": "આ મૂલ્ય માટે વિશ્વાસ ક્યારેય નોંધાયો નથી",
- // "confidence.indicator.help-text.unknown": "Unknown confidence value",
"confidence.indicator.help-text.unknown": "અજ્ઞાત વિશ્વાસ મૂલ્ય",
- // "item.page.abstract": "Abstract",
"item.page.abstract": "અભ્યાસ",
- // "item.page.author": "Author",
"item.page.author": "લેખકો",
- // "item.page.authors": "Authors",
- // TODO New key - Add a translation
- "item.page.authors": "Authors",
-
- // "item.page.citation": "Citation",
"item.page.citation": "ઉલ્લેખ",
- // "item.page.collections": "Collections",
"item.page.collections": "સંગ્રહો",
- // "item.page.collections.loading": "Loading...",
"item.page.collections.loading": "લોડ થઈ રહ્યું છે...",
- // "item.page.collections.load-more": "Load more",
"item.page.collections.load-more": "વધુ લોડ કરો",
- // "item.page.date": "Date",
"item.page.date": "તારીખ",
- // "item.page.edit": "Administer",
"item.page.edit": "આ આઇટમ સંપાદિત કરો",
- // "item.page.files": "Files",
"item.page.files": "ફાઇલો",
- // "item.page.filesection.description": "Description:",
- // TODO New key - Add a translation
- "item.page.filesection.description": "Description:",
+ "item.page.filesection.description": "વર્ણન:",
- // "item.page.filesection.download": "Download",
"item.page.filesection.download": "ડાઉનલોડ",
- // "item.page.filesection.format": "Format:",
- // TODO New key - Add a translation
- "item.page.filesection.format": "Format:",
+ "item.page.filesection.format": "ફોર્મેટ:",
- // "item.page.filesection.name": "Name:",
- // TODO New key - Add a translation
- "item.page.filesection.name": "Name:",
+ "item.page.filesection.name": "નામ:",
- // "item.page.filesection.size": "Size:",
- // TODO New key - Add a translation
- "item.page.filesection.size": "Size:",
+ "item.page.filesection.size": "કદ:",
- // "item.page.journal.search.title": "Articles in this journal",
"item.page.journal.search.title": "આ જર્નલમાં લેખો",
- // "item.page.link.full": "Full item page",
"item.page.link.full": "સંપૂર્ણ આઇટમ પેજ",
- // "item.page.link.simple": "Simple item page",
"item.page.link.simple": "સરળ આઇટમ પેજ",
- // "item.page.options": "Options",
"item.page.options": "વિકલ્પો",
- // "item.page.orcid.title": "ORCID",
"item.page.orcid.title": "ORCID",
- // "item.page.orcid.tooltip": "Open ORCID setting page",
"item.page.orcid.tooltip": "ORCID સેટિંગ પેજ ખોલો",
- // "item.page.orcid-ico": "ORCID icon",
- // TODO New key - Add a translation
- "item.page.orcid-ico": "ORCID icon",
-
- // "item.page.orcid-profile": "ORCID Profile",
- // TODO New key - Add a translation
- "item.page.orcid-profile": "ORCID Profile",
-
- // "item.page.person.search.title": "Articles by this author",
"item.page.person.search.title": "આ લેખક દ્વારા લેખો",
- // "item.page.related-items.view-more": "Show {{ amount }} more",
"item.page.related-items.view-more": "{{ amount }} વધુ બતાવો",
- // "item.page.related-items.view-less": "Hide last {{ amount }}",
"item.page.related-items.view-less": "છેલ્લા {{ amount }} છુપાવો",
- // "item.page.relationships.isAuthorOfPublication": "Publications",
"item.page.relationships.isAuthorOfPublication": "પ્રકાશનો લેખક છે",
- // "item.page.relationships.isJournalOfPublication": "Publications",
"item.page.relationships.isJournalOfPublication": "પ્રકાશનો જર્નલ છે",
- // "item.page.relationships.isOrgUnitOfPerson": "Authors",
"item.page.relationships.isOrgUnitOfPerson": "લેખકો",
- // "item.page.relationships.isOrgUnitOfProject": "Research Projects",
"item.page.relationships.isOrgUnitOfProject": "શોધ પ્રોજેક્ટ્સ",
- // "item.page.relationships.RELATION.Person.researchoutputs": "Publications",
- // TODO New key - Add a translation
- "item.page.relationships.RELATION.Person.researchoutputs": "Publications",
-
- // "item.page.relationships.RELATION.Person.projects": "Projects",
- // TODO New key - Add a translation
- "item.page.relationships.RELATION.Person.projects": "Projects",
-
- // "item.page.relationships.RELATION.OrgUnit.rpprojects": "Researchers Projects",
- // TODO New key - Add a translation
- "item.page.relationships.RELATION.OrgUnit.rpprojects": "Researchers Projects",
-
- // "item.page.relationships.RELATION.OrgUnit.publications": "Publications",
- // TODO New key - Add a translation
- "item.page.relationships.RELATION.OrgUnit.publications": "Publications",
-
- // "item.page.relationships.RELATION.OrgUnit.rppublications": "Researchers Publications",
- // TODO New key - Add a translation
- "item.page.relationships.RELATION.OrgUnit.rppublications": "Researchers Publications",
-
- // "item.page.relationships.RELATION.OrgUnit.people": "People",
- // TODO New key - Add a translation
- "item.page.relationships.RELATION.OrgUnit.people": "People",
-
- // "item.page.relationships.RELATION.OrgUnit.projects": "Projects",
- // TODO New key - Add a translation
- "item.page.relationships.RELATION.OrgUnit.projects": "Projects",
-
- // "item.page.relationships.RELATION.OrgUnit.organizations": "Organizations",
- // TODO New key - Add a translation
- "item.page.relationships.RELATION.OrgUnit.organizations": "Organizations",
-
- // "item.page.relationships.RELATION.Project.projects": "Projects",
- // TODO New key - Add a translation
- "item.page.relationships.RELATION.Project.projects": "Projects",
-
- // "item.page.relationships.RELATION.Project.fundings": "Fundings",
- // TODO New key - Add a translation
- "item.page.relationships.RELATION.Project.fundings": "Fundings",
-
- // "item.page.relationships.RELATION.Project.researchoutputs": "Publications",
- // TODO New key - Add a translation
- "item.page.relationships.RELATION.Project.researchoutputs": "Publications",
-
-
- // "item.page.subject": "Keywords",
"item.page.subject": "કીવર્ડ્સ",
- // "item.page.uri": "URI",
"item.page.uri": "URI",
- // "item.page.bitstreams.view-more": "Show more",
"item.page.bitstreams.view-more": "વધુ બતાવો",
- // "item.page.bitstreams.collapse": "Collapse",
"item.page.bitstreams.collapse": "સંકોચો",
- // "item.page.bitstreams.primary": "Primary",
"item.page.bitstreams.primary": "પ્રાથમિક",
- // "item.page.filesection.original.bundle": "Original bundle",
"item.page.filesection.original.bundle": "મૂળ બંડલ",
- // "item.page.filesection.license.bundle": "License bundle",
"item.page.filesection.license.bundle": "લાઇસન્સ બંડલ",
- // "item-page.resolver.invalid-custom-url.title": "Invalid custom URL",
- // TODO New key - Add a translation
- "item-page.resolver.invalid-custom-url.title": "Invalid custom URL",
-
- // "item-page.resolver.invalid-custom-url.message": "The custom URL of this item contains unsupported characters. The item is being displayed using its UUID.",
- // TODO New key - Add a translation
- "item-page.resolver.invalid-custom-url.message": "The custom URL of this item contains unsupported characters. The item is being displayed using its UUID.",
-
- // "item.page.return": "Back",
"item.page.return": "પાછા",
- // "item.page.version.create": "Create new version",
"item.page.version.create": "નવી આવૃત્તિ બનાવો",
- // "item.page.withdrawn": "Request a withdrawal for this item",
"item.page.withdrawn": "આ આઇટમ માટે વિથડ્રૉલ વિનંતી કરો",
- // "item.page.reinstate": "Request reinstatement",
"item.page.reinstate": "ફરી સ્થાપિત કરવાની વિનંતી કરો",
- // "item.page.version.hasDraft": "A new version cannot be created because there is an in-progress submission in the version history",
"item.page.version.hasDraft": "નવી આવૃત્તિ બનાવી શકાતી નથી કારણ કે આવૃત્તિ ઇતિહાસમાં એક પ્રગતિશીલ સબમિશન છે",
- // "item.page.claim.button": "Claim",
"item.page.claim.button": "દાવો",
- // "item.page.claim.tooltip": "Claim this item as profile",
"item.page.claim.tooltip": "આ આઇટમને પ્રોફાઇલ તરીકે દાવો",
- // "item.page.image.alt.ROR": "ROR logo",
"item.page.image.alt.ROR": "ROR લોગો",
- // "item.preview.dc.identifier.uri": "Identifier:",
- // TODO New key - Add a translation
- "item.preview.dc.identifier.uri": "Identifier:",
+ "item.preview.dc.identifier.uri": "પરિચયકર્તા:",
- // "item.preview.dc.contributor.author": "Authors:",
- // TODO New key - Add a translation
- "item.preview.dc.contributor.author": "Authors:",
+ "item.preview.dc.contributor.author": "લેખકો:",
- // "item.preview.dc.date.issued": "Published date:",
- // TODO New key - Add a translation
- "item.preview.dc.date.issued": "Published date:",
+ "item.preview.dc.date.issued": "પ્રકાશિત તારીખ:",
- // "item.preview.dc.description": "Description:",
- // TODO Source message changed - Revise the translation
"item.preview.dc.description": "વર્ણન:",
- // "item.preview.dc.description.abstract": "Abstract:",
- // TODO New key - Add a translation
- "item.preview.dc.description.abstract": "Abstract:",
+ "item.preview.dc.description.abstract": "અભ્યાસ:",
- // "item.preview.dc.identifier.other": "Other identifier:",
- // TODO New key - Add a translation
- "item.preview.dc.identifier.other": "Other identifier:",
+ "item.preview.dc.identifier.other": "અન્ય પરિચયકર્તા:",
- // "item.preview.dc.language.iso": "Language:",
- // TODO New key - Add a translation
- "item.preview.dc.language.iso": "Language:",
+ "item.preview.dc.language.iso": "ભાષા:",
- // "item.preview.dc.subject": "Subjects:",
- // TODO New key - Add a translation
- "item.preview.dc.subject": "Subjects:",
+ "item.preview.dc.subject": "વિષયો:",
- // "item.preview.dc.title": "Title:",
- // TODO New key - Add a translation
- "item.preview.dc.title": "Title:",
+ "item.preview.dc.title": "શીર્ષક:",
- // "item.preview.dc.type": "Type:",
- // TODO New key - Add a translation
- "item.preview.dc.type": "Type:",
+ "item.preview.dc.type": "પ્રકાર:",
- // "item.preview.oaire.version": "Version",
"item.preview.oaire.version": "આવૃત્તિ",
- // "item.preview.oaire.citation.issue": "Issue",
"item.preview.oaire.citation.issue": "મુદ્દો",
- // "item.preview.oaire.citation.volume": "Volume",
"item.preview.oaire.citation.volume": "વોલ્યુમ",
- // "item.preview.oaire.citation.title": "Citation container",
"item.preview.oaire.citation.title": "ઉલ્લેખ કન્ટેનર",
- // "item.preview.oaire.citation.startPage": "Citation start page",
"item.preview.oaire.citation.startPage": "ઉલ્લેખ પ્રારંભ પૃષ્ઠ",
- // "item.preview.oaire.citation.endPage": "Citation end page",
"item.preview.oaire.citation.endPage": "ઉલ્લેખ અંત પૃષ્ઠ",
- // "item.preview.dc.relation.hasversion": "Has version",
"item.preview.dc.relation.hasversion": "આવૃત્તિ છે",
- // "item.preview.dc.relation.ispartofseries": "Is part of series",
"item.preview.dc.relation.ispartofseries": "શ્રેણીનો ભાગ છે",
- // "item.preview.dc.rights": "Rights",
"item.preview.dc.rights": "હક્કો",
- // "item.preview.dc.identifier.other": "Other Identifier",
- "item.preview.dc.identifier.other": "અન્ય પરિચયકર્તા:",
+ "item.preview.dc.identifier.other": "અન્ય પરિચયકર્તા",
- // "item.preview.dc.relation.issn": "ISSN",
"item.preview.dc.relation.issn": "ISSN",
- // "item.preview.dc.identifier.isbn": "ISBN",
"item.preview.dc.identifier.isbn": "ISBN",
- // "item.preview.dc.identifier": "Identifier:",
- // TODO New key - Add a translation
- "item.preview.dc.identifier": "Identifier:",
+ "item.preview.dc.identifier": "પરિચયકર્તા:",
- // "item.preview.dc.relation.ispartof": "Journal or Series",
"item.preview.dc.relation.ispartof": "જર્નલ અથવા શ્રેણી",
- // "item.preview.dc.identifier.doi": "DOI",
"item.preview.dc.identifier.doi": "DOI",
- // "item.preview.dc.publisher": "Publisher:",
- // TODO New key - Add a translation
- "item.preview.dc.publisher": "Publisher:",
+ "item.preview.dc.publisher": "પ્રકાશક:",
- // "item.preview.person.familyName": "Surname:",
- // TODO New key - Add a translation
- "item.preview.person.familyName": "Surname:",
+ "item.preview.person.familyName": "અટક:",
- // "item.preview.person.givenName": "Name:",
- // TODO New key - Add a translation
- "item.preview.person.givenName": "Name:",
+ "item.preview.person.givenName": "નામ:",
- // "item.preview.person.identifier.orcid": "ORCID:",
"item.preview.person.identifier.orcid": "ORCID:",
- // "item.preview.person.affiliation.name": "Affiliations:",
- // TODO New key - Add a translation
- "item.preview.person.affiliation.name": "Affiliations:",
+ "item.preview.person.affiliation.name": "સંબંધો:",
- // "item.preview.project.funder.name": "Funder:",
- // TODO New key - Add a translation
- "item.preview.project.funder.name": "Funder:",
+ "item.preview.project.funder.name": "ફંડર:",
- // "item.preview.project.funder.identifier": "Funder Identifier:",
- // TODO New key - Add a translation
- "item.preview.project.funder.identifier": "Funder Identifier:",
+ "item.preview.project.funder.identifier": "ફંડર પરિચયકર્તા:",
- // "item.preview.project.investigator": "Project Investigator",
"item.preview.project.investigator": "પ્રોજેક્ટ ઇન્વેસ્ટિગેટર",
- // "item.preview.oaire.awardNumber": "Funding ID:",
- // TODO New key - Add a translation
- "item.preview.oaire.awardNumber": "Funding ID:",
+ "item.preview.oaire.awardNumber": "ફંડિંગ ID:",
- // "item.preview.dc.title.alternative": "Acronym:",
- // TODO New key - Add a translation
- "item.preview.dc.title.alternative": "Acronym:",
+ "item.preview.dc.title.alternative": "અન્ય નામ:",
- // "item.preview.dc.coverage.spatial": "Jurisdiction:",
- // TODO New key - Add a translation
- "item.preview.dc.coverage.spatial": "Jurisdiction:",
+ "item.preview.dc.coverage.spatial": "ક્ષેત્રાધિકાર:",
- // "item.preview.oaire.fundingStream": "Funding Stream:",
- // TODO New key - Add a translation
- "item.preview.oaire.fundingStream": "Funding Stream:",
+ "item.preview.oaire.fundingStream": "ફંડિંગ સ્ટ્રીમ:",
- // "item.preview.oairecerif.identifier.url": "URL",
"item.preview.oairecerif.identifier.url": "URL",
- // "item.preview.organization.address.addressCountry": "Country",
"item.preview.organization.address.addressCountry": "દેશ",
- // "item.preview.organization.foundingDate": "Founding Date",
"item.preview.organization.foundingDate": "સ્થાપના તારીખ",
- // "item.preview.organization.identifier.crossrefid": "Crossref ID",
"item.preview.organization.identifier.crossrefid": "ક્રોસરેફ ID",
- // "item.preview.organization.identifier.isni": "ISNI",
"item.preview.organization.identifier.isni": "ISNI",
- // "item.preview.organization.identifier.ror": "ROR ID",
"item.preview.organization.identifier.ror": "ROR ID",
- // "item.preview.organization.legalName": "Legal Name",
"item.preview.organization.legalName": "કાનૂની નામ",
- // "item.preview.dspace.entity.type": "Entity Type:",
- // TODO New key - Add a translation
- "item.preview.dspace.entity.type": "Entity Type:",
+ "item.preview.dspace.entity.type": "સત્તા પ્રકાર:",
- // "item.preview.creativework.publisher": "Publisher",
"item.preview.creativework.publisher": "પ્રકાશક",
- // "item.preview.creativeworkseries.issn": "ISSN",
"item.preview.creativeworkseries.issn": "ISSN",
- // "item.preview.dc.identifier.issn": "ISSN",
"item.preview.dc.identifier.issn": "ISSN",
- // "item.preview.dc.identifier.openalex": "OpenAlex Identifier",
"item.preview.dc.identifier.openalex": "ઓપનએલેક્સ પરિચયકર્તા",
- // "item.preview.dc.description": "Description",
- "item.preview.dc.description": "વર્ણન:",
+ "item.preview.dc.description": "વર્ણન",
- // "item.select.confirm": "Confirm selected",
"item.select.confirm": "પસંદ કરેલને પુષ્ટિ કરો",
- // "item.select.empty": "No items to show",
"item.select.empty": "બતાવા માટે કોઈ આઇટમ નથી",
- // "item.select.table.selected": "Selected items",
"item.select.table.selected": "પસંદ કરેલ આઇટમ્સ",
- // "item.select.table.select": "Select item",
"item.select.table.select": "આઇટમ પસંદ કરો",
- // "item.select.table.deselect": "Deselect item",
"item.select.table.deselect": "આઇટમ પસંદ ન કરો",
- // "item.select.table.author": "Author",
"item.select.table.author": "લેખક",
- // "item.select.table.collection": "Collection",
"item.select.table.collection": "સંગ્રહ",
- // "item.select.table.title": "Title",
"item.select.table.title": "શીર્ષક",
- // "item.version.history.empty": "There are no other versions for this item yet.",
"item.version.history.empty": "આ આઇટમ માટે હજી સુધી અન્ય આવૃત્તિઓ નથી.",
- // "item.version.history.head": "Version History",
"item.version.history.head": "આવૃત્તિ ઇતિહાસ",
- // "item.version.history.return": "Back",
"item.version.history.return": "પાછા",
- // "item.version.history.selected": "Selected version",
"item.version.history.selected": "પસંદ કરેલ આવૃત્તિ",
- // "item.version.history.selected.alert": "You are currently viewing version {{version}} of the item.",
"item.version.history.selected.alert": "તમે હાલમાં આઇટમની આવૃત્તિ {{version}} જોઈ રહ્યા છો.",
- // "item.version.history.table.version": "Version",
"item.version.history.table.version": "આવૃત્તિ",
- // "item.version.history.table.item": "Item",
"item.version.history.table.item": "આઇટમ",
- // "item.version.history.table.editor": "Editor",
"item.version.history.table.editor": "સંપાદક",
- // "item.version.history.table.date": "Date",
"item.version.history.table.date": "તારીખ",
- // "item.version.history.table.summary": "Summary",
"item.version.history.table.summary": "સારાંશ",
- // "item.version.history.table.workspaceItem": "Workspace item",
"item.version.history.table.workspaceItem": "વર્કસ્પેસ આઇટમ",
- // "item.version.history.table.workflowItem": "Workflow item",
"item.version.history.table.workflowItem": "વર્કફ્લો આઇટમ",
- // "item.version.history.table.actions": "Action",
"item.version.history.table.actions": "ક્રિયા",
- // "item.version.history.table.action.editWorkspaceItem": "Edit workspace item",
"item.version.history.table.action.editWorkspaceItem": "વર્કસ્પેસ આઇટમ સંપાદિત કરો",
- // "item.version.history.table.action.editSummary": "Edit summary",
"item.version.history.table.action.editSummary": "સારાંશ સંપાદિત કરો",
- // "item.version.history.table.action.saveSummary": "Save summary edits",
"item.version.history.table.action.saveSummary": "સારાંશ ફેરફારો સાચવો",
- // "item.version.history.table.action.discardSummary": "Discard summary edits",
"item.version.history.table.action.discardSummary": "સારાંશ ફેરફારો રદ કરો",
- // "item.version.history.table.action.newVersion": "Create new version from this one",
"item.version.history.table.action.newVersion": "આમાંથી નવી આવૃત્તિ બનાવો",
- // "item.version.history.table.action.deleteVersion": "Delete version",
"item.version.history.table.action.deleteVersion": "આવૃત્તિ કાઢી નાખો",
- // "item.version.history.table.action.hasDraft": "A new version cannot be created because there is an in-progress submission in the version history",
"item.version.history.table.action.hasDraft": "નવી આવૃત્તિ બનાવી શકાતી નથી કારણ કે આવૃત્તિ ઇતિહાસમાં એક પ્રગતિશીલ સબમિશન છે",
- // "item.version.notice": "This is not the latest version of this item. The latest version can be found here.",
"item.version.notice": "આ આઇટમની નવીનતમ આવૃત્તિ નથી. નવીનતમ આવૃત્તિ અહીં મળી શકે છે અહીં.",
- // "item.version.create.modal.header": "New version",
"item.version.create.modal.header": "નવી આવૃત્તિ",
- // "item.qa.withdrawn.modal.header": "Request withdrawal",
"item.qa.withdrawn.modal.header": "વિથડ્રૉલ વિનંતી",
- // "item.qa.reinstate.modal.header": "Request reinstate",
"item.qa.reinstate.modal.header": "ફરી સ્થાપિત કરવાની વિનંતી",
- // "item.qa.reinstate.create.modal.header": "New version",
"item.qa.reinstate.create.modal.header": "નવી આવૃત્તિ",
- // "item.version.create.modal.text": "Create a new version for this item",
"item.version.create.modal.text": "આ આઇટમ માટે નવી આવૃત્તિ બનાવો",
- // "item.version.create.modal.text.startingFrom": "starting from version {{version}}",
"item.version.create.modal.text.startingFrom": "આવૃત્તિ {{version}} થી શરૂ",
- // "item.version.create.modal.button.confirm": "Create",
"item.version.create.modal.button.confirm": "બનાવો",
- // "item.version.create.modal.button.confirm.tooltip": "Create new version",
"item.version.create.modal.button.confirm.tooltip": "નવી આવૃત્તિ બનાવો",
- // "item.qa.withdrawn-reinstate.modal.button.confirm.tooltip": "Send request",
"item.qa.withdrawn-reinstate.modal.button.confirm.tooltip": "વિનંતી મોકલો",
- // "qa-withdrown.create.modal.button.confirm": "Withdraw",
"qa-withdrown.create.modal.button.confirm": "વિથડ્રૉલ",
- // "qa-reinstate.create.modal.button.confirm": "Reinstate",
"qa-reinstate.create.modal.button.confirm": "ફરી સ્થાપિત કરો",
- // "item.version.create.modal.button.cancel": "Cancel",
"item.version.create.modal.button.cancel": "રદ કરો",
- // "item.qa.withdrawn-reinstate.create.modal.button.cancel": "Cancel",
"item.qa.withdrawn-reinstate.create.modal.button.cancel": "રદ કરો",
- // "item.version.create.modal.button.cancel.tooltip": "Do not create new version",
"item.version.create.modal.button.cancel.tooltip": "નવી આવૃત્તિ ન બનાવો",
- // "item.qa.withdrawn-reinstate.create.modal.button.cancel.tooltip": "Do not send request",
"item.qa.withdrawn-reinstate.create.modal.button.cancel.tooltip": "વિનંતી ન મોકલો",
- // "item.version.create.modal.form.summary.label": "Summary",
"item.version.create.modal.form.summary.label": "સારાંશ",
- // "qa-withdrawn.create.modal.form.summary.label": "You are requesting to withdraw this item",
"qa-withdrawn.create.modal.form.summary.label": "તમે આ આઇટમને પાછું ખેંચવાની વિનંતી કરી રહ્યા છો",
- // "qa-withdrawn.create.modal.form.summary2.label": "Please enter the reason for the withdrawal",
"qa-withdrawn.create.modal.form.summary2.label": "કૃપા કરીને વિથડ્રૉલ માટેનું કારણ દાખલ કરો",
- // "qa-reinstate.create.modal.form.summary.label": "You are requesting to reinstate this item",
"qa-reinstate.create.modal.form.summary.label": "તમે આ આઇટમને ફરી સ્થાપિત કરવાની વિનંતી કરી રહ્યા છો",
- // "qa-reinstate.create.modal.form.summary2.label": "Please enter the reason for the reinstatment",
"qa-reinstate.create.modal.form.summary2.label": "કૃપા કરીને ફરી સ્થાપન માટેનું કારણ દાખલ કરો",
- // "item.version.create.modal.form.summary.placeholder": "Insert the summary for the new version",
"item.version.create.modal.form.summary.placeholder": "નવી આવૃત્તિ માટેનો સારાંશ દાખલ કરો",
- // "qa-withdrown.modal.form.summary.placeholder": "Enter the reason for the withdrawal",
"qa-withdrown.modal.form.summary.placeholder": "વિથડ્રૉલ માટેનું કારણ દાખલ કરો",
- // "qa-reinstate.modal.form.summary.placeholder": "Enter the reason for the reinstatement",
"qa-reinstate.modal.form.summary.placeholder": "ફરી સ્થાપન માટેનું કારણ દાખલ કરો",
- // "item.version.create.modal.submitted.header": "Creating new version...",
"item.version.create.modal.submitted.header": "નવી આવૃત્તિ બનાવી રહી છે...",
- // "item.qa.withdrawn.modal.submitted.header": "Sending withdrawn request...",
"item.qa.withdrawn.modal.submitted.header": "વિથડ્રૉલ વિનંતી મોકલી રહી છે...",
- // "correction-type.manage-relation.action.notification.reinstate": "Reinstate request sent.",
"correction-type.manage-relation.action.notification.reinstate": "ફરી સ્થાપિત કરવાની વિનંતી મોકલવામાં આવી.",
- // "correction-type.manage-relation.action.notification.withdrawn": "Withdraw request sent.",
"correction-type.manage-relation.action.notification.withdrawn": "વિથડ્રૉલ વિનંતી મોકલવામાં આવી.",
- // "item.version.create.modal.submitted.text": "The new version is being created. This may take some time if the item has a lot of relationships.",
"item.version.create.modal.submitted.text": "નવી આવૃત્તિ બનાવી રહી છે. આમાં થોડો સમય લાગી શકે છે જો આઇટમમાં ઘણા સંબંધો હોય.",
- // "item.version.create.notification.success": "New version has been created with version number {{version}}",
"item.version.create.notification.success": "નવી આવૃત્તિ આવૃત્તિ નંબર {{version}} સાથે બનાવવામાં આવી છે",
- // "item.version.create.notification.failure": "New version has not been created",
"item.version.create.notification.failure": "નવી આવૃત્તિ બનાવવામાં આવી નથી",
- // "item.version.create.notification.inProgress": "A new version cannot be created because there is an in-progress submission in the version history",
"item.version.create.notification.inProgress": "નવી આવૃત્તિ બનાવી શકાતી નથી કારણ કે આવૃત્તિ ઇતિહાસમાં એક પ્રગતિશીલ સબમિશન છે",
- // "item.version.delete.modal.header": "Delete version",
"item.version.delete.modal.header": "આવૃત્તિ કાઢી નાખો",
- // "item.version.delete.modal.text": "Do you want to delete version {{version}}?",
"item.version.delete.modal.text": "શું તમે આવૃત્તિ {{version}} કાઢી નાખવા માંગો છો?",
- // "item.version.delete.modal.button.confirm": "Delete",
"item.version.delete.modal.button.confirm": "કાઢી નાખો",
- // "item.version.delete.modal.button.confirm.tooltip": "Delete this version",
"item.version.delete.modal.button.confirm.tooltip": "આ આવૃત્તિ કાઢી નાખો",
- // "item.version.delete.modal.button.cancel": "Cancel",
"item.version.delete.modal.button.cancel": "રદ કરો",
- // "item.version.delete.modal.button.cancel.tooltip": "Do not delete this version",
"item.version.delete.modal.button.cancel.tooltip": "આ આવૃત્તિ ન કાઢી નાખો",
- // "item.version.delete.notification.success": "Version number {{version}} has been deleted",
"item.version.delete.notification.success": "આવૃત્તિ નંબર {{version}} કાઢી નાખવામાં આવી છે",
- // "item.version.delete.notification.failure": "Version number {{version}} has not been deleted",
"item.version.delete.notification.failure": "આવૃત્તિ નંબર {{version}} કાઢી શકાઈ નથી",
- // "item.version.edit.notification.success": "The summary of version number {{version}} has been changed",
"item.version.edit.notification.success": "આવૃત્તિ નંબર {{version}} નો સારાંશ બદલવામાં આવ્યો છે",
- // "item.version.edit.notification.failure": "The summary of version number {{version}} has not been changed",
"item.version.edit.notification.failure": "આવૃત્તિ નંબર {{version}} નો સારાંશ બદલવામાં આવ્યો નથી",
- // "itemtemplate.edit.metadata.add-button": "Add",
"itemtemplate.edit.metadata.add-button": "ઉમેરો",
- // "itemtemplate.edit.metadata.discard-button": "Discard",
"itemtemplate.edit.metadata.discard-button": "રદ કરો",
- // "itemtemplate.edit.metadata.edit.language": "Edit language",
"itemtemplate.edit.metadata.edit.language": "ભાષા સંપાદિત કરો",
- // "itemtemplate.edit.metadata.edit.authority": "Edit authority",
- // TODO New key - Add a translation
- "itemtemplate.edit.metadata.edit.authority": "Edit authority",
-
- // "itemtemplate.edit.metadata.edit.value": "Edit value",
"itemtemplate.edit.metadata.edit.value": "મૂલ્ય સંપાદિત કરો",
- // "itemtemplate.edit.metadata.edit.buttons.confirm": "Confirm",
"itemtemplate.edit.metadata.edit.buttons.confirm": "પુષ્ટિ કરો",
- // "itemtemplate.edit.metadata.edit.buttons.drag": "Drag to reorder",
"itemtemplate.edit.metadata.edit.buttons.drag": "ફેરફાર કરવા માટે ખેંચો",
- // "itemtemplate.edit.metadata.edit.buttons.edit": "Edit",
"itemtemplate.edit.metadata.edit.buttons.edit": "સંપાદિત કરો",
- // "itemtemplate.edit.metadata.edit.buttons.remove": "Remove",
"itemtemplate.edit.metadata.edit.buttons.remove": "દૂર કરો",
- // "itemtemplate.edit.metadata.edit.buttons.undo": "Undo changes",
"itemtemplate.edit.metadata.edit.buttons.undo": "ફેરફારો રદ કરો",
- // "itemtemplate.edit.metadata.edit.buttons.unedit": "Stop editing",
"itemtemplate.edit.metadata.edit.buttons.unedit": "સંપાદન બંધ કરો",
- // "itemtemplate.edit.metadata.empty": "The item template currently doesn't contain any metadata. Click Add to start adding a metadata value.",
"itemtemplate.edit.metadata.empty": "આઇટમ ટેમ્પલેટમાં હાલમાં કોઈ મેટાડેટા નથી. મેટાડેટા મૂલ્ય ઉમેરવાનું શરૂ કરવા માટે ઉમેરો પર ક્લિક કરો.",
- // "itemtemplate.edit.metadata.headers.edit": "Edit",
"itemtemplate.edit.metadata.headers.edit": "સંપાદિત કરો",
- // "itemtemplate.edit.metadata.headers.field": "Field",
"itemtemplate.edit.metadata.headers.field": "ક્ષેત્ર",
- // "itemtemplate.edit.metadata.headers.language": "Lang",
"itemtemplate.edit.metadata.headers.language": "ભાષા",
- // "itemtemplate.edit.metadata.headers.value": "Value",
"itemtemplate.edit.metadata.headers.value": "મૂલ્ય",
- // "itemtemplate.edit.metadata.headers.authority": "Authority",
- // TODO New key - Add a translation
- "itemtemplate.edit.metadata.headers.authority": "Authority",
-
- // "itemtemplate.edit.metadata.metadatafield": "Edit field",
"itemtemplate.edit.metadata.metadatafield": "ક્ષેત્ર સંપાદિત કરો",
- // "itemtemplate.edit.metadata.metadatafield.error": "An error occurred validating the metadata field",
"itemtemplate.edit.metadata.metadatafield.error": "મેટાડેટા ક્ષેત્ર માન્ય કરતી વખતે ભૂલ આવી",
- // "itemtemplate.edit.metadata.metadatafield.invalid": "Please choose a valid metadata field",
"itemtemplate.edit.metadata.metadatafield.invalid": "કૃપા કરીને માન્ય મેટાડેટા ક્ષેત્ર પસંદ કરો",
- // "itemtemplate.edit.metadata.notifications.discarded.content": "Your changes were discarded. To reinstate your changes click the 'Undo' button",
"itemtemplate.edit.metadata.notifications.discarded.content": "તમારા ફેરફારો રદ કરવામાં આવ્યા હતા. તમારા ફેરફારોને ફરી સ્થાપિત કરવા માટે 'Undo' બટન પર ક્લિક કરો",
- // "itemtemplate.edit.metadata.notifications.discarded.title": "Changes discarded",
"itemtemplate.edit.metadata.notifications.discarded.title": "ફેરફારો રદ",
- // "itemtemplate.edit.metadata.notifications.error.title": "An error occurred",
"itemtemplate.edit.metadata.notifications.error.title": "ભૂલ આવી",
- // "itemtemplate.edit.metadata.notifications.invalid.content": "Your changes were not saved. Please make sure all fields are valid before you save.",
"itemtemplate.edit.metadata.notifications.invalid.content": "તમારા ફેરફારો સાચવવામાં આવ્યા નથી. કૃપા કરીને સાચવતા પહેલા ખાતરી કરો કે બધા ક્ષેત્રો માન્ય છે.",
- // "itemtemplate.edit.metadata.notifications.invalid.title": "Metadata invalid",
"itemtemplate.edit.metadata.notifications.invalid.title": "મેટાડેટા અમાન્ય",
- // "itemtemplate.edit.metadata.notifications.outdated.content": "The item template you're currently working on has been changed by another user. Your current changes are discarded to prevent conflicts",
"itemtemplate.edit.metadata.notifications.outdated.content": "આઇટમ ટેમ્પલેટ તમે હાલમાં કામ કરી રહ્યા છો તે બીજા વપરાશકર્તા દ્વારા બદલવામાં આવ્યું છે. સંઘર્ષો ટાળવા માટે તમારા વર્તમાન ફેરફારો રદ કરવામાં આવ્યા છે",
- // "itemtemplate.edit.metadata.notifications.outdated.title": "Changes outdated",
"itemtemplate.edit.metadata.notifications.outdated.title": "ફેરફારો જૂના",
- // "itemtemplate.edit.metadata.notifications.saved.content": "Your changes to this item template's metadata were saved.",
"itemtemplate.edit.metadata.notifications.saved.content": "આ આઇટમ ટેમ્પલેટના મેટાડેટા માટેના તમારા ફેરફારો સાચવવામાં આવ્યા હતા.",
- // "itemtemplate.edit.metadata.notifications.saved.title": "Metadata saved",
"itemtemplate.edit.metadata.notifications.saved.title": "મેટાડેટા સાચવ્યા",
- // "itemtemplate.edit.metadata.reinstate-button": "Undo",
"itemtemplate.edit.metadata.reinstate-button": "Undo",
- // "itemtemplate.edit.metadata.reset-order-button": "Undo reorder",
"itemtemplate.edit.metadata.reset-order-button": "ફેરફાર રદ કરો",
- // "itemtemplate.edit.metadata.save-button": "Save",
"itemtemplate.edit.metadata.save-button": "સાચવો",
- // "journal.listelement.badge": "Journal",
"journal.listelement.badge": "જર્નલ",
- // "journal.page.description": "Description",
"journal.page.description": "વર્ણન",
- // "journal.page.edit": "Administer",
"journal.page.edit": "આ આઇટમ સંપાદિત કરો",
- // "journal.page.editor": "Editor-in-Chief",
"journal.page.editor": "મુખ્ય સંપાદક",
- // "journal.page.issn": "ISSN",
"journal.page.issn": "ISSN",
- // "journal.page.publisher": "Publisher",
"journal.page.publisher": "પ્રકાશક",
- // "journal.page.options": "Options",
"journal.page.options": "વિકલ્પો",
- // "journal.page.titleprefix": "Journal: ",
- // TODO New key - Add a translation
- "journal.page.titleprefix": "Journal: ",
+ "journal.page.titleprefix": "જર્નલ: ",
- // "journal.search.results.head": "Journal Search Results",
"journal.search.results.head": "જર્નલ શોધ પરિણામો",
- // "journal-relationships.search.results.head": "Journal Search Results",
"journal-relationships.search.results.head": "જર્નલ શોધ પરિણામો",
- // "journal.search.title": "Journal Search",
"journal.search.title": "જર્નલ શોધ",
- // "journalissue.listelement.badge": "Journal Issue",
"journalissue.listelement.badge": "જર્નલ ઇશ્યુ",
- // "journalissue.page.description": "Description",
"journalissue.page.description": "વર્ણન",
- // "journalissue.page.edit": "Administer",
"journalissue.page.edit": "આ આઇટમ સંપાદિત કરો",
- // "journalissue.page.issuedate": "Issue Date",
"journalissue.page.issuedate": "ઇશ્યુ તારીખ",
- // "journalissue.page.journal-issn": "Journal ISSN",
"journalissue.page.journal-issn": "જર્નલ ISSN",
- // "journalissue.page.journal-title": "Journal Title",
"journalissue.page.journal-title": "જર્નલ શીર્ષક",
- // "journalissue.page.keyword": "Keywords",
"journalissue.page.keyword": "કીવર્ડ્સ",
- // "journalissue.page.number": "Number",
"journalissue.page.number": "નંબર",
- // "journalissue.page.options": "Options",
"journalissue.page.options": "વિકલ્પો",
- // "journalissue.page.titleprefix": "Journal Issue: ",
- // TODO New key - Add a translation
- "journalissue.page.titleprefix": "Journal Issue: ",
+ "journalissue.page.titleprefix": "જર્નલ ઇશ્યુ: ",
- // "journalissue.search.results.head": "Journal Issue Search Results",
"journalissue.search.results.head": "જર્નલ ઇશ્યુ શોધ પરિણામો",
- // "journalvolume.listelement.badge": "Journal Volume",
"journalvolume.listelement.badge": "જર્નલ વોલ્યુમ",
- // "journalvolume.page.description": "Description",
"journalvolume.page.description": "વર્ણન",
- // "journalvolume.page.edit": "Administer",
"journalvolume.page.edit": "આ આઇટમ સંપાદિત કરો",
- // "journalvolume.page.issuedate": "Issue Date",
"journalvolume.page.issuedate": "ઇશ્યુ તારીખ",
- // "journalvolume.page.options": "Options",
"journalvolume.page.options": "વિકલ્પો",
- // "journalvolume.page.titleprefix": "Journal Volume: ",
- // TODO New key - Add a translation
- "journalvolume.page.titleprefix": "Journal Volume: ",
+ "journalvolume.page.titleprefix": "જર્નલ વોલ્યુમ: ",
- // "journalvolume.page.volume": "Volume",
"journalvolume.page.volume": "વોલ્યુમ",
- // "journalvolume.search.results.head": "Journal Volume Search Results",
"journalvolume.search.results.head": "જર્નલ વોલ્યુમ શોધ પરિણામો",
- // "iiifsearchable.listelement.badge": "Document Media",
"iiifsearchable.listelement.badge": "દસ્તાવેજ મીડિયા",
- // "iiifsearchable.page.titleprefix": "Document: ",
- // TODO New key - Add a translation
- "iiifsearchable.page.titleprefix": "Document: ",
+ "iiifsearchable.page.titleprefix": "દસ્તાવેજ: ",
- // "iiifsearchable.page.doi": "Permanent Link: ",
- // TODO New key - Add a translation
- "iiifsearchable.page.doi": "Permanent Link: ",
+ "iiifsearchable.page.doi": "કાયમી લિંક: ",
- // "iiifsearchable.page.issue": "Issue: ",
- // TODO New key - Add a translation
- "iiifsearchable.page.issue": "Issue: ",
+ "iiifsearchable.page.issue": "મુદ્દો: ",
- // "iiifsearchable.page.description": "Description: ",
- // TODO New key - Add a translation
- "iiifsearchable.page.description": "Description: ",
+ "iiifsearchable.page.description": "વર્ણન: ",
- // "iiifviewer.fullscreen.notice": "Use full screen for better viewing.",
"iiifviewer.fullscreen.notice": "સારા જોવાના અનુભવ માટે સંપૂર્ણ સ્ક્રીનનો ઉપયોગ કરો.",
- // "iiif.listelement.badge": "Image Media",
"iiif.listelement.badge": "છબી મીડિયા",
- // "iiif.page.titleprefix": "Image: ",
- // TODO New key - Add a translation
- "iiif.page.titleprefix": "Image: ",
-
- // "iiif.page.doi": "Permanent Link: ",
- // TODO New key - Add a translation
- "iiif.page.doi": "Permanent Link: ",
-
- // "iiif.page.issue": "Issue: ",
- // TODO New key - Add a translation
- "iiif.page.issue": "Issue: ",
+ "iiif.page.titleprefix": "છબી: ",
- // "iiif.page.description": "Description: ",
- // TODO New key - Add a translation
- "iiif.page.description": "Description: ",
+ "iiif.page.doi": "કાયમી લિંક: ",
- // "layout.advanced-attachment.dc.title": "Name",
- // TODO New key - Add a translation
- "layout.advanced-attachment.dc.title": "Name",
+ "iiif.page.issue": "મુદ્દો: ",
- // "layout.advanced-attachment.size": "Size",
- // TODO New key - Add a translation
- "layout.advanced-attachment.size": "Size",
+ "iiif.page.description": "વર્ણન: ",
- // "layout.advanced-attachment.checksum": "Checksum",
- // TODO New key - Add a translation
- "layout.advanced-attachment.checksum": "Checksum",
-
- // "layout.advanced-attachment.checksum.info.MD5": "The MD5 message-digest algorithm can be used to verify the integrity of the file that you have uploaded. You can calculate its value locally via tools that are generally available in each operative system like md5sum",
- // TODO New key - Add a translation
- "layout.advanced-attachment.checksum.info.MD5": "The MD5 message-digest algorithm can be used to verify the integrity of the file that you have uploaded. You can calculate its value locally via tools that are generally available in each operative system like md5sum",
-
- // "layout.advanced-attachment.format": "Format",
- // TODO New key - Add a translation
- "layout.advanced-attachment.format": "Format",
-
- // "layout.advanced-attachment.dc.type": "Type",
- // TODO New key - Add a translation
- "layout.advanced-attachment.dc.type": "Type",
-
- // "layout.advanced-attachment.dc.description": "Description",
- // TODO New key - Add a translation
- "layout.advanced-attachment.dc.description": "Description",
-
- // "layout.advanced-attachment.no_thumbnail": "No Thumbnail Available",
- // TODO New key - Add a translation
- "layout.advanced-attachment.no_thumbnail": "No Thumbnail Available",
-
- // "layout.advanced-attachment.download": "Download",
- // TODO New key - Add a translation
- "layout.advanced-attachment.download": "Download",
-
- // "layout.advanced-attachment.requestACopy": "Request a copy",
- // TODO New key - Add a translation
- "layout.advanced-attachment.requestACopy": "Request a copy",
-
- // "layout.advanced-attachment.viewMore": "View More",
- // TODO New key - Add a translation
- "layout.advanced-attachment.viewMore": "View More",
-
- // "layout.advanced-attachment.label.not-present": "(not present)",
- // TODO New key - Add a translation
- "layout.advanced-attachment.label.not-present": "(not present)",
-
- // "loading.bitstream": "Loading bitstream...",
"loading.bitstream": "બિટસ્ટ્રીમ લોડ થઈ રહ્યું છે...",
- // "loading.bitstreams": "Loading bitstreams...",
"loading.bitstreams": "બિટસ્ટ્રીમ્સ લોડ થઈ રહ્યા છે...",
- // "loading.browse-by": "Loading items...",
"loading.browse-by": "આઇટમ્સ લોડ થઈ રહ્યા છે...",
- // "loading.browse-by-page": "Loading page...",
"loading.browse-by-page": "પૃષ્ઠ લોડ થઈ રહ્યું છે...",
- // "loading.collection": "Loading collection...",
"loading.collection": "સંગ્રહ લોડ થઈ રહ્યો છે...",
- // "loading.collections": "Loading collections...",
"loading.collections": "સંગ્રહો લોડ થઈ રહ્યા છે...",
- // "loading.content-source": "Loading content source...",
"loading.content-source": "સામગ્રી સ્ત્રોત લોડ થઈ રહ્યો છે...",
- // "loading.community": "Loading community...",
"loading.community": "સમુદાય લોડ થઈ રહ્યો છે...",
- // "loading.default": "Loading...",
"loading.default": "લોડ થઈ રહ્યું છે...",
- // "loading.item": "Loading item...",
"loading.item": "આઇટમ લોડ થઈ રહ્યું છે...",
- // "loading.items": "Loading items...",
"loading.items": "આઇટમ્સ લોડ થઈ રહ્યા છે...",
- // "loading.mydspace-results": "Loading items...",
"loading.mydspace-results": "આઇટમ્સ લોડ થઈ રહ્યા છે...",
- // "loading.objects": "Loading...",
"loading.objects": "લોડ થઈ રહ્યું છે...",
- // "loading.recent-submissions": "Loading recent submissions...",
"loading.recent-submissions": "તાજેતરના સબમિશન લોડ થઈ રહ્યા છે...",
- // "loading.search-results": "Loading search results...",
"loading.search-results": "શોધ પરિણામો લોડ થઈ રહ્યા છે...",
- // "loading.sub-collections": "Loading sub-collections...",
"loading.sub-collections": "ઉપ-સંગ્રહો લોડ થઈ રહ્યા છે...",
- // "loading.sub-communities": "Loading sub-communities...",
"loading.sub-communities": "ઉપ-સમુદાયો લોડ થઈ રહ્યા છે...",
- // "loading.top-level-communities": "Loading top-level communities...",
"loading.top-level-communities": "ટોપ-લેવલ સમુદાયો લોડ થઈ રહ્યા છે...",
- // "login.form.email": "Email address",
"login.form.email": "ઇમેઇલ સરનામું",
- // "login.form.forgot-password": "Have you forgotten your password?",
"login.form.forgot-password": "શું તમે તમારો પાસવર્ડ ભૂલી ગયા છો?",
- // "login.form.header": "Please log in to DSpace",
"login.form.header": "કૃપા કરીને DSpace માં લોગિન કરો",
- // "login.form.new-user": "New user? Click here to register.",
"login.form.new-user": "નવો વપરાશકર્તા? નોંધણી માટે અહીં ક્લિક કરો.",
- // "login.form.oidc": "Log in with OIDC",
"login.form.oidc": "OIDC સાથે લોગિન કરો",
- // "login.form.orcid": "Log in with ORCID",
"login.form.orcid": "ORCID સાથે લોગિન કરો",
- // "login.form.password": "Password",
"login.form.password": "પાસવર્ડ",
- // "login.form.saml": "Log in with SAML",
"login.form.saml": "SAML સાથે લોગિન કરો",
- // "login.form.shibboleth": "Log in with Shibboleth",
"login.form.shibboleth": "Shibboleth સાથે લોગિન કરો",
- // "login.form.submit": "Log in",
"login.form.submit": "લોગિન કરો",
- // "login.title": "Login",
"login.title": "લોગિન",
- // "login.breadcrumbs": "Login",
"login.breadcrumbs": "લોગિન",
- // "logout.form.header": "Log out from DSpace",
"logout.form.header": "DSpace માંથી લોગ આઉટ કરો",
- // "logout.form.submit": "Log out",
"logout.form.submit": "લોગ આઉટ",
- // "logout.title": "Logout",
"logout.title": "લોગ આઉટ",
- // "menu.header.nav.description": "Admin navigation bar",
"menu.header.nav.description": "એડમિન નેવિગેશન બાર",
- // "menu.header.admin": "Management",
"menu.header.admin": "મેનેજમેન્ટ",
- // "menu.header.image.logo": "Repository logo",
"menu.header.image.logo": "રિપોઝિટરી લોગો",
- // "menu.header.admin.description": "Management menu",
"menu.header.admin.description": "મેનેજમેન્ટ મેનુ",
- // "menu.section.access_control": "Access Control",
"menu.section.access_control": "ઍક્સેસ કંટ્રોલ",
- // "menu.section.access_control_authorizations": "Authorizations",
"menu.section.access_control_authorizations": "અધિકૃતતાઓ",
- // "menu.section.access_control_bulk": "Bulk Access Management",
"menu.section.access_control_bulk": "બલ્ક ઍક્સેસ મેનેજમેન્ટ",
- // "menu.section.access_control_groups": "Groups",
"menu.section.access_control_groups": "ગ્રુપ્સ",
- // "menu.section.access_control_people": "People",
"menu.section.access_control_people": "લોકો",
- // "menu.section.audit": "Audit Logs",
- // TODO New key - Add a translation
- "menu.section.audit": "Audit Logs",
-
- // "menu.section.reports": "Reports",
"menu.section.reports": "અહેવાલો",
- // "menu.section.reports.collections": "Filtered Collections",
"menu.section.reports.collections": "ફિલ્ટર કરેલ સંગ્રહો",
- // "menu.section.reports.queries": "Metadata Query",
"menu.section.reports.queries": "મેટાડેટા ક્વેરી",
- // "menu.section.admin_search": "Admin Search",
"menu.section.admin_search": "એડમિન શોધ",
- // "menu.section.browse_community": "This Community",
"menu.section.browse_community": "આ સમુદાય",
- // "menu.section.browse_community_by_author": "By Author",
"menu.section.browse_community_by_author": "લેખક દ્વારા",
- // "menu.section.browse_community_by_issue_date": "By Issue Date",
"menu.section.browse_community_by_issue_date": "પ્રશ્ન તારીખ દ્વારા",
- // "menu.section.browse_community_by_title": "By Title",
"menu.section.browse_community_by_title": "શીર્ષક દ્વારા",
- // "menu.section.browse_global": "All of DSpace",
"menu.section.browse_global": "DSpace ના બધા",
- // "menu.section.browse_global_by_author": "By Author",
"menu.section.browse_global_by_author": "લેખક દ્વારા",
- // "menu.section.browse_global_by_dateissued": "By Issue Date",
"menu.section.browse_global_by_dateissued": "પ્રશ્ન તારીખ દ્વારા",
- // "menu.section.browse_global_by_subject": "By Subject",
"menu.section.browse_global_by_subject": "વિષય દ્વારા",
- // "menu.section.browse_global_by_srsc": "By Subject Category",
"menu.section.browse_global_by_srsc": "વિષય શ્રેણી દ્વારા",
- // "menu.section.browse_global_by_nsi": "By Norwegian Science Index",
"menu.section.browse_global_by_nsi": "નોર્વેજીયન સાયન્સ ઇન્ડેક્સ દ્વારા",
- // "menu.section.browse_global_by_title": "By Title",
"menu.section.browse_global_by_title": "શીર્ષક દ્વારા",
- // "menu.section.browse_global_communities_and_collections": "Communities & Collections",
"menu.section.browse_global_communities_and_collections": "સમુદાયો અને સંગ્રહો",
- // "menu.section.browse_global_geospatial_map": "By Geolocation (Map)",
"menu.section.browse_global_geospatial_map": "ભૌગોલિક સ્થાન દ્વારા (નકશો)",
- // "menu.section.control_panel": "Control Panel",
"menu.section.control_panel": "કંટ્રોલ પેનલ",
- // "menu.section.curation_task": "Curation Task",
"menu.section.curation_task": "ક્યુરેશન ટાસ્ક",
- // "menu.section.edit": "Edit",
"menu.section.edit": "સંપાદિત કરો",
- // "menu.section.edit_collection": "Collection",
"menu.section.edit_collection": "સંગ્રહ",
- // "menu.section.edit_community": "Community",
"menu.section.edit_community": "સમુદાય",
- // "menu.section.edit_item": "Item",
"menu.section.edit_item": "આઇટમ",
- // "menu.section.export": "Export",
"menu.section.export": "નિકાસ",
- // "menu.section.export_collection": "Collection",
"menu.section.export_collection": "સંગ્રહ",
- // "menu.section.export_community": "Community",
"menu.section.export_community": "સમુદાય",
- // "menu.section.export_item": "Item",
"menu.section.export_item": "આઇટમ",
- // "menu.section.export_metadata": "Metadata",
"menu.section.export_metadata": "મેટાડેટા",
- // "menu.section.export_batch": "Batch Export (ZIP)",
"menu.section.export_batch": "બેચ નિકાસ (ZIP)",
- // "menu.section.icon.access_control": "Access Control menu section",
"menu.section.icon.access_control": "ઍક્સેસ કંટ્રોલ મેનુ વિભાગ",
- // "menu.section.icon.reports": "Reports menu section",
"menu.section.icon.reports": "અહેવાલો મેનુ વિભાગ",
- // "menu.section.icon.admin_search": "Admin search menu section",
"menu.section.icon.admin_search": "એડમિન શોધ મેનુ વિભાગ",
- // "menu.section.icon.control_panel": "Control Panel menu section",
"menu.section.icon.control_panel": "કંટ્રોલ પેનલ મેનુ વિભાગ",
- // "menu.section.icon.curation_tasks": "Curation Task menu section",
"menu.section.icon.curation_tasks": "ક્યુરેશન ટાસ્ક મેનુ વિભાગ",
- // "menu.section.icon.edit": "Edit menu section",
"menu.section.icon.edit": "સંપાદિત કરો મેનુ વિભાગ",
- // "menu.section.icon.export": "Export menu section",
"menu.section.icon.export": "નિકાસ મેનુ વિભાગ",
- // "menu.section.icon.find": "Find menu section",
"menu.section.icon.find": "મેનુ વિભાગ શોધો",
- // "menu.section.icon.health": "Health check menu section",
"menu.section.icon.health": "હેલ્થ ચેક મેનુ વિભાગ",
- // "menu.section.icon.import": "Import menu section",
"menu.section.icon.import": "આયાત મેનુ વિભાગ",
- // "menu.section.icon.new": "New menu section",
"menu.section.icon.new": "નવું મેનુ વિભાગ",
- // "menu.section.icon.pin": "Pin sidebar",
"menu.section.icon.pin": "સાઇડબાર પિન કરો",
- // "menu.section.icon.unpin": "Unpin sidebar",
"menu.section.icon.unpin": "સાઇડબાર અનપિન કરો",
- // "menu.section.icon.notifications": "Notifications menu section",
"menu.section.icon.notifications": "સૂચનાઓ મેનુ વિભાગ",
- // "menu.section.import": "Import",
"menu.section.import": "આયાત",
- // "menu.section.import_batch": "Batch Import (ZIP)",
"menu.section.import_batch": "બેચ આયાત (ZIP)",
- // "menu.section.import_metadata": "Metadata",
"menu.section.import_metadata": "મેટાડેટા",
- // "menu.section.new": "New",
"menu.section.new": "નવું",
- // "menu.section.new_collection": "Collection",
"menu.section.new_collection": "સંગ્રહ",
- // "menu.section.new_community": "Community",
"menu.section.new_community": "સમુદાય",
- // "menu.section.new_item": "Item",
"menu.section.new_item": "આઇટમ",
- // "menu.section.new_item_version": "Item Version",
"menu.section.new_item_version": "આઇટમ આવૃત્તિ",
- // "menu.section.new_process": "Process",
"menu.section.new_process": "પ્રક્રિયા",
- // "menu.section.notifications": "Notifications",
"menu.section.notifications": "સૂચનાઓ",
- // "menu.section.quality-assurance": "Quality Assurance",
"menu.section.quality-assurance": "ગુણવત્તા ખાતરી",
- // "menu.section.notifications_publication-claim": "Publication Claim",
"menu.section.notifications_publication-claim": "પ્રકાશન દાવો",
- // "menu.section.pin": "Pin sidebar",
"menu.section.pin": "સાઇડબાર પિન કરો",
- // "menu.section.unpin": "Unpin sidebar",
"menu.section.unpin": "સાઇડબાર અનપિન કરો",
- // "menu.section.processes": "Processes",
"menu.section.processes": "પ્રક્રિયાઓ",
- // "menu.section.health": "Health",
"menu.section.health": "હેલ્થ",
- // "menu.section.registries": "Registries",
"menu.section.registries": "રજિસ્ટ્રીઓ",
- // "menu.section.registries_format": "Format",
"menu.section.registries_format": "ફોર્મેટ",
- // "menu.section.registries_metadata": "Metadata",
"menu.section.registries_metadata": "મેટાડેટા",
- // "menu.section.statistics": "Statistics",
"menu.section.statistics": "આંકડા",
- // "menu.section.statistics_task": "Statistics Task",
"menu.section.statistics_task": "આંકડા કાર્ય",
- // "menu.section.toggle.access_control": "Toggle Access Control section",
"menu.section.toggle.access_control": "ઍક્સેસ કંટ્રોલ વિભાગ ટૉગલ કરો",
- // "menu.section.toggle.reports": "Toggle Reports section",
"menu.section.toggle.reports": "અહેવાલો વિભાગ ટૉગલ કરો",
- // "menu.section.toggle.control_panel": "Toggle Control Panel section",
"menu.section.toggle.control_panel": "કંટ્રોલ પેનલ વિભાગ ટૉગલ કરો",
- // "menu.section.toggle.curation_task": "Toggle Curation Task section",
"menu.section.toggle.curation_task": "ક્યુરેશન ટાસ્ક વિભાગ ટૉગલ કરો",
- // "menu.section.toggle.edit": "Toggle Edit section",
"menu.section.toggle.edit": "સંપાદન વિભાગ ટૉગલ કરો",
- // "menu.section.toggle.export": "Toggle Export section",
"menu.section.toggle.export": "નિકાસ વિભાગ ટૉગલ કરો",
- // "menu.section.toggle.find": "Toggle Find section",
"menu.section.toggle.find": "વિભાગ શોધો ટૉગલ કરો",
- // "menu.section.toggle.import": "Toggle Import section",
"menu.section.toggle.import": "આયાત વિભાગ ટૉગલ કરો",
- // "menu.section.toggle.new": "Toggle New section",
"menu.section.toggle.new": "નવો વિભાગ ટૉગલ કરો",
- // "menu.section.toggle.registries": "Toggle Registries section",
"menu.section.toggle.registries": "રજિસ્ટ્રીઓ વિભાગ ટૉગલ કરો",
- // "menu.section.toggle.statistics_task": "Toggle Statistics Task section",
"menu.section.toggle.statistics_task": "આંકડા કાર્ય વિભાગ ટૉગલ કરો",
- // "menu.section.workflow": "Administer Workflow",
"menu.section.workflow": "વર્કફ્લો મેનેજ કરો",
- // "menu.section.FULL": "Edit",
- // TODO New key - Add a translation
- "menu.section.FULL": "Edit",
-
- // "menu.section.OWNER": "Edit",
- // TODO New key - Add a translation
- "menu.section.OWNER": "Edit",
-
- // "menu.section.DIRECTOR": "Edit",
- // TODO New key - Add a translation
- "menu.section.DIRECTOR": "Edit",
-
- // "menu.section.INVESTIGATOR": "Edit",
- // TODO New key - Add a translation
- "menu.section.INVESTIGATOR": "Edit",
-
- // "metadata-export-search.tooltip": "Export search results as CSV",
"metadata-export-search.tooltip": "શોધ પરિણામો CSV તરીકે નિકાસ કરો",
- // "metadata-export-search.submit.success": "The export was started successfully",
"metadata-export-search.submit.success": "નિકાસ સફળતાપૂર્વક શરૂ થયું",
- // "metadata-export-search.submit.error": "Starting the export has failed",
"metadata-export-search.submit.error": "નિકાસ શરૂ કરવામાં નિષ્ફળ",
- // "metadata.security.level.title": "Metatada security level {{level}}",
- // TODO New key - Add a translation
- "metadata.security.level.title": "Metatada security level {{level}}",
-
- // "mydspace.breadcrumbs": "MyDSpace",
"mydspace.breadcrumbs": "MyDSpace",
- // "mydspace.description": "",
"mydspace.description": "",
- // "mydspace.messages.controller-help": "Select this option to send a message to item's submitter.",
"mydspace.messages.controller-help": "આ વિકલ્પ પસંદ કરો આઇટમના સબમિટરને સંદેશ મોકલવા માટે.",
- // "mydspace.messages.description-placeholder": "Insert your message here...",
"mydspace.messages.description-placeholder": "તમારો સંદેશ અહીં દાખલ કરો...",
- // "mydspace.messages.hide-msg": "Hide message",
"mydspace.messages.hide-msg": "સંદેશ છુપાવો",
- // "mydspace.messages.mark-as-read": "Mark as read",
"mydspace.messages.mark-as-read": "વાંચેલ તરીકે ચિહ્નિત કરો",
- // "mydspace.messages.mark-as-unread": "Mark as unread",
"mydspace.messages.mark-as-unread": "ન વાંચેલ તરીકે ચિહ્નિત કરો",
- // "mydspace.messages.no-content": "No content.",
"mydspace.messages.no-content": "કોઈ સામગ્રી નથી.",
- // "mydspace.messages.no-messages": "No messages yet.",
"mydspace.messages.no-messages": "હજી સુધી કોઈ સંદેશ નથી.",
- // "mydspace.messages.send-btn": "Send",
"mydspace.messages.send-btn": "મોકલો",
- // "mydspace.messages.show-msg": "Show message",
"mydspace.messages.show-msg": "સંદેશ બતાવો",
- // "mydspace.messages.subject-placeholder": "Subject...",
"mydspace.messages.subject-placeholder": "વિષય...",
- // "mydspace.messages.submitter-help": "Select this option to send a message to controller.",
"mydspace.messages.submitter-help": "આ વિકલ્પ પસંદ કરો નિયંત્રકને સંદેશ મોકલવા માટે.",
- // "mydspace.messages.title": "Messages",
"mydspace.messages.title": "સંદેશો",
- // "mydspace.messages.to": "To",
"mydspace.messages.to": "પ્રતિ",
- // "mydspace.new-submission": "New submission",
"mydspace.new-submission": "નવું સબમિશન",
- // "mydspace.new-submission-external": "Import metadata from external source",
"mydspace.new-submission-external": "બાહ્ય સ્ત્રોતમાંથી મેટાડેટા આયાત કરો",
- // "mydspace.new-submission-external-short": "Import metadata",
"mydspace.new-submission-external-short": "મેટાડેટા આયાત કરો",
- // "mydspace.results.head": "Your submissions",
"mydspace.results.head": "તમારા સબમિશન",
- // "mydspace.results.no-abstract": "No Abstract",
"mydspace.results.no-abstract": "કોઈ અભ્યાસ નથી",
- // "mydspace.results.no-authors": "No Authors",
"mydspace.results.no-authors": "કોઈ લેખકો નથી",
- // "mydspace.results.no-collections": "No Collections",
"mydspace.results.no-collections": "કોઈ સંગ્રહો નથી",
- // "mydspace.results.no-date": "No Date",
"mydspace.results.no-date": "કોઈ તારીખ નથી",
- // "mydspace.results.no-files": "No Files",
"mydspace.results.no-files": "કોઈ ફાઇલો નથી",
- // "mydspace.results.no-results": "There were no items to show",
"mydspace.results.no-results": "બતાવા માટે કોઈ આઇટમ નથી",
- // "mydspace.results.no-title": "No title",
"mydspace.results.no-title": "કોઈ શીર્ષક નથી",
- // "mydspace.results.no-uri": "No URI",
"mydspace.results.no-uri": "કોઈ URI નથી",
- // "mydspace.search-form.placeholder": "Search in MyDSpace...",
"mydspace.search-form.placeholder": "MyDSpace માં શોધો...",
- // "mydspace.show.workflow": "Workflow tasks",
"mydspace.show.workflow": "વર્કફ્લો કાર્ય",
- // "mydspace.show.workspace": "Your submissions",
"mydspace.show.workspace": "તમારા સબમિશન",
- // "mydspace.show.otherWorkspace": "Shared Submissions",
- // TODO New key - Add a translation
- "mydspace.show.otherWorkspace": "Shared Submissions",
-
- // "mydspace.show.supervisedWorkspace": "Supervised items",
"mydspace.show.supervisedWorkspace": "સુપરવિઝ્ડ આઇટમ્સ",
- // "mydspace.status": "My DSpace status:",
- // TODO New key - Add a translation
- "mydspace.status": "My DSpace status:",
-
- // "mydspace.status.mydspaceArchived": "Archived",
"mydspace.status.mydspaceArchived": "આર્કાઇવ્ડ",
- // "mydspace.status.mydspaceValidation": "Validation",
"mydspace.status.mydspaceValidation": "માન્યતા",
- // "mydspace.status.mydspaceWaitingController": "Waiting for reviewer",
"mydspace.status.mydspaceWaitingController": "સમીક્ષકની રાહ જોવી",
- // "mydspace.status.mydspaceWorkflow": "Workflow",
"mydspace.status.mydspaceWorkflow": "વર્કફ્લો",
- // "mydspace.status.mydspaceWorkspace": "Workspace",
"mydspace.status.mydspaceWorkspace": "વર્કસ્પેસ",
- // "mydspace.title": "MyDSpace",
"mydspace.title": "MyDSpace",
- // "mydspace.upload.upload-failed": "Error creating new workspace. Please verify the content uploaded before retry.",
"mydspace.upload.upload-failed": "નવું વર્કસ્પેસ બનાવવામાં ભૂલ. કૃપા કરીને ફરી પ્રયાસ કરતા પહેલા અપલોડ કરેલ સામગ્રીને ચકાસો.",
- // "mydspace.upload.upload-failed-manyentries": "Unprocessable file. Detected too many entries but allowed only one for file.",
"mydspace.upload.upload-failed-manyentries": "અપ્રક્રિય ફાઇલ. ઘણી એન્ટ્રીઓ શોધવામાં આવી છે પરંતુ ફાઇલ માટે માત્ર એક જ મંજૂરી છે.",
- // "mydspace.upload.upload-failed-moreonefile": "Unprocessable request. Only one file is allowed.",
"mydspace.upload.upload-failed-moreonefile": "અપ્રક્રિય વિનંતી. ફક્ત એક જ ફાઇલ મંજૂર છે.",
- // "mydspace.upload.upload-multiple-successful": "{{qty}} new workspace items created.",
"mydspace.upload.upload-multiple-successful": "{{qty}} નવા વર્કસ્પેસ આઇટમ્સ બનાવવામાં આવ્યા.",
- // "mydspace.view-btn": "View",
"mydspace.view-btn": "જુઓ",
- // "nav.expandable-navbar-section-suffix": "(submenu)",
"nav.expandable-navbar-section-suffix": "(ઉપમેનુ)",
- // "notification.suggestion": "We found {{count}} publications in the {{source}} that seems to be related to your profile.
",
"notification.suggestion": "અમે {{source}} માં {{count}} પ્રકાશનો શોધ્યા છે જે તમારા પ્રોફાઇલ સાથે સંબંધિત લાગે છે.
",
- // "notification.suggestion.review": "review the suggestions",
"notification.suggestion.review": "સૂચનોની સમીક્ષા કરો",
- // "notification.suggestion.please": "Please",
"notification.suggestion.please": "કૃપા કરીને",
- // "nav.browse.header": "All of DSpace",
"nav.browse.header": "DSpace ના બધા",
- // "nav.community-browse.header": "By Community",
"nav.community-browse.header": "સમુદાય દ્વારા",
- // "nav.context-help-toggle": "Toggle context help",
"nav.context-help-toggle": "સંદર્ભ મદદ ટૉગલ કરો",
- // "nav.language": "Language switch",
"nav.language": "ભાષા સ્વિચ",
- // "nav.login": "Log In",
"nav.login": "લોગિન",
- // "nav.user-profile-menu-and-logout": "User profile menu and log out",
"nav.user-profile-menu-and-logout": "વપરાશકર્તા પ્રોફાઇલ મેનુ અને લોગ આઉટ",
- // "nav.logout": "Log Out",
"nav.logout": "લોગ આઉટ",
- // "nav.main.description": "Main navigation bar",
"nav.main.description": "મુખ્ય નેવિગેશન બાર",
- // "nav.mydspace": "MyDSpace",
"nav.mydspace": "MyDSpace",
- // "nav.profile": "Profile",
"nav.profile": "પ્રોફાઇલ",
- // "nav.search": "Search",
"nav.search": "શોધો",
- // "nav.search.button": "Submit search",
"nav.search.button": "શોધ સબમિટ કરો",
- // "nav.statistics.header": "Statistics",
"nav.statistics.header": "આંકડા",
- // "nav.stop-impersonating": "Stop impersonating EPerson",
"nav.stop-impersonating": "EPerson નું અનુસરણ બંધ કરો",
- // "nav.subscriptions": "Subscriptions",
"nav.subscriptions": "સબ્સ્ક્રિપ્શન્સ",
- // "nav.toggle": "Toggle navigation",
"nav.toggle": "નેવિગેશન ટૉગલ કરો",
- // "nav.user.description": "User profile bar",
"nav.user.description": "વપરાશકર્તા પ્રોફાઇલ બાર",
- // "listelement.badge.dso-type": "Item type:",
- // TODO New key - Add a translation
- "listelement.badge.dso-type": "Item type:",
-
- // "none.listelement.badge": "Item",
"none.listelement.badge": "આઇટમ",
- // "publication-claim.title": "Publication claim",
"publication-claim.title": "પ્રકાશન દાવો",
- // "publication-claim.source.description": "Below you can see all the sources.",
"publication-claim.source.description": "નીચે તમે બધા સ્ત્રોતો જોઈ શકો છો.",
- // "quality-assurance.title": "Quality Assurance",
"quality-assurance.title": "ગુણવત્તા ખાતરી",
- // "quality-assurance.topics.description": "Below you can see all the topics received from the subscriptions to {{source}}.",
"quality-assurance.topics.description": "નીચે તમે {{source}} માટેની સબ્સ્ક્રિપ્શન્સમાંથી પ્રાપ્ત થયેલા બધા વિષયો જોઈ શકો છો.",
- // "quality-assurance.source.description": "Below you can see all the notification's sources.",
"quality-assurance.source.description": "નીચે તમે સૂચના ના સ્ત્રોતો જોઈ શકો છો.",
- // "quality-assurance.topics": "Current Topics",
"quality-assurance.topics": "વર્તમાન વિષયો",
- // "quality-assurance.source": "Current Sources",
"quality-assurance.source": "વર્તમાન સ્ત્રોતો",
- // "quality-assurance.table.topic": "Topic",
"quality-assurance.table.topic": "વિષય",
- // "quality-assurance.table.source": "Source",
"quality-assurance.table.source": "સ્ત્રોત",
- // "quality-assurance.table.last-event": "Last Event",
"quality-assurance.table.last-event": "છેલ્લી ઘટના",
- // "quality-assurance.table.actions": "Actions",
"quality-assurance.table.actions": "ક્રિયાઓ",
- // "quality-assurance.source-list.button.detail": "Show topics for {{param}}",
"quality-assurance.source-list.button.detail": "{{param}} માટેના વિષયો બતાવો",
- // "quality-assurance.topics-list.button.detail": "Show suggestions for {{param}}",
"quality-assurance.topics-list.button.detail": "{{param}} માટેની સૂચનો બતાવો",
- // "quality-assurance.noTopics": "No topics found.",
"quality-assurance.noTopics": "કોઈ વિષયો મળ્યા નથી.",
- // "quality-assurance.noSource": "No sources found.",
"quality-assurance.noSource": "કોઈ સ્ત્રોતો મળ્યા નથી.",
- // "notifications.events.title": "Quality Assurance Suggestions",
"notifications.events.title": "ગુણવત્તા ખાતરી સૂચનો",
- // "quality-assurance.topic.error.service.retrieve": "An error occurred while loading the Quality Assurance topics",
"quality-assurance.topic.error.service.retrieve": "ગુણવત્તા ખાતરી વિષયો લોડ કરતી વખતે ભૂલ આવી",
- // "quality-assurance.source.error.service.retrieve": "An error occurred while loading the Quality Assurance source",
"quality-assurance.source.error.service.retrieve": "ગુણવત્તા ખાતરી સ્ત્રોત લોડ કરતી વખતે ભૂલ આવી",
- // "quality-assurance.loading": "Loading ...",
"quality-assurance.loading": "લોડ થઈ રહ્યું છે ...",
- // "quality-assurance.events.topic": "Topic:",
- // TODO New key - Add a translation
- "quality-assurance.events.topic": "Topic:",
+ "quality-assurance.events.topic": "વિષય:",
- // "quality-assurance.noEvents": "No suggestions found.",
"quality-assurance.noEvents": "કોઈ સૂચનો મળ્યા નથી.",
- // "quality-assurance.event.table.trust": "Trust",
"quality-assurance.event.table.trust": "વિશ્વાસ",
- // "quality-assurance.event.table.publication": "Publication",
"quality-assurance.event.table.publication": "પ્રકાશન",
- // "quality-assurance.event.table.details": "Details",
"quality-assurance.event.table.details": "વિગતો",
- // "quality-assurance.event.table.project-details": "Project details",
"quality-assurance.event.table.project-details": "પ્રોજેક્ટ વિગતો",
- // "quality-assurance.event.table.reasons": "Reasons",
"quality-assurance.event.table.reasons": "કારણો",
- // "quality-assurance.event.table.actions": "Actions",
"quality-assurance.event.table.actions": "ક્રિયાઓ",
- // "quality-assurance.event.action.accept": "Accept suggestion",
"quality-assurance.event.action.accept": "સૂચન સ્વીકારો",
- // "quality-assurance.event.action.ignore": "Ignore suggestion",
"quality-assurance.event.action.ignore": "સૂચન અવગણો",
- // "quality-assurance.event.action.undo": "Delete",
"quality-assurance.event.action.undo": "કાઢી નાખો",
- // "quality-assurance.event.action.reject": "Reject suggestion",
"quality-assurance.event.action.reject": "સૂચન નકારી કાઢો",
- // "quality-assurance.event.action.import": "Import project and accept suggestion",
"quality-assurance.event.action.import": "પ્રોજેક્ટ આયાત કરો અને સૂચન સ્વીકારો",
- // "quality-assurance.event.table.pidtype": "PID Type:",
- // TODO New key - Add a translation
- "quality-assurance.event.table.pidtype": "PID Type:",
+ "quality-assurance.event.table.pidtype": "PID પ્રકાર:",
- // "quality-assurance.event.table.pidvalue": "PID Value:",
- // TODO New key - Add a translation
- "quality-assurance.event.table.pidvalue": "PID Value:",
+ "quality-assurance.event.table.pidvalue": "PID મૂલ્ય:",
- // "quality-assurance.event.table.subjectValue": "Subject Value:",
- // TODO New key - Add a translation
- "quality-assurance.event.table.subjectValue": "Subject Value:",
+ "quality-assurance.event.table.subjectValue": "વિષય મૂલ્ય:",
- // "quality-assurance.event.table.abstract": "Abstract:",
- // TODO New key - Add a translation
- "quality-assurance.event.table.abstract": "Abstract:",
+ "quality-assurance.event.table.abstract": "અભ્યાસ:",
- // "quality-assurance.event.table.suggestedProject": "OpenAIRE Suggested Project data",
"quality-assurance.event.table.suggestedProject": "OpenAIRE સૂચિત પ્રોજેક્ટ ડેટા",
- // "quality-assurance.event.table.project": "Project title:",
- // TODO New key - Add a translation
- "quality-assurance.event.table.project": "Project title:",
+ "quality-assurance.event.table.project": "પ્રોજેક્ટ શીર્ષક:",
- // "quality-assurance.event.table.acronym": "Acronym:",
- // TODO New key - Add a translation
- "quality-assurance.event.table.acronym": "Acronym:",
+ "quality-assurance.event.table.acronym": "અન્ય નામ:",
- // "quality-assurance.event.table.code": "Code:",
- // TODO New key - Add a translation
- "quality-assurance.event.table.code": "Code:",
+ "quality-assurance.event.table.code": "કોડ:",
- // "quality-assurance.event.table.funder": "Funder:",
- // TODO New key - Add a translation
- "quality-assurance.event.table.funder": "Funder:",
+ "quality-assurance.event.table.funder": "ફંડર:",
- // "quality-assurance.event.table.fundingProgram": "Funding program:",
- // TODO New key - Add a translation
- "quality-assurance.event.table.fundingProgram": "Funding program:",
+ "quality-assurance.event.table.fundingProgram": "ફંડિંગ પ્રોગ્રામ:",
- // "quality-assurance.event.table.jurisdiction": "Jurisdiction:",
- // TODO New key - Add a translation
- "quality-assurance.event.table.jurisdiction": "Jurisdiction:",
+ "quality-assurance.event.table.jurisdiction": "ક્ષેત્રાધિકાર:",
- // "quality-assurance.events.back": "Back to topics",
"quality-assurance.events.back": "વિષયો પર પાછા જાઓ",
- // "quality-assurance.events.back-to-sources": "Back to sources",
"quality-assurance.events.back-to-sources": "સ્ત્રોતો પર પાછા જાઓ",
- // "quality-assurance.event.table.less": "Show less",
"quality-assurance.event.table.less": "ઓછું બતાવો",
- // "quality-assurance.event.table.more": "Show more",
"quality-assurance.event.table.more": "વધુ બતાવો",
- // "quality-assurance.event.project.found": "Bound to the local record:",
- // TODO New key - Add a translation
- "quality-assurance.event.project.found": "Bound to the local record:",
+ "quality-assurance.event.project.found": "સ્થાનિક રેકોર્ડ સાથે જોડાયેલ:",
- // "quality-assurance.event.project.notFound": "No local record found",
"quality-assurance.event.project.notFound": "કોઈ સ્થાનિક રેકોર્ડ મળ્યો નથી",
- // "quality-assurance.event.sure": "Are you sure?",
"quality-assurance.event.sure": "શું તમે ખાતરી કરો છો?",
- // "quality-assurance.event.ignore.description": "This operation can't be undone. Ignore this suggestion?",
"quality-assurance.event.ignore.description": "આ ક્રિયા પાછી ફરી શકશે નહીં. આ સૂચન અવગણો?",
- // "quality-assurance.event.undo.description": "This operation can't be undone!",
"quality-assurance.event.undo.description": "આ ક્રિયા પાછી ફરી શકશે નહીં!",
- // "quality-assurance.event.reject.description": "This operation can't be undone. Reject this suggestion?",
"quality-assurance.event.reject.description": "આ ક્રિયા પાછી ફરી શકશે નહીં. આ સૂચન નકારી કાઢો?",
- // "quality-assurance.event.accept.description": "No DSpace project selected. A new project will be created based on the suggestion data.",
"quality-assurance.event.accept.description": "કોઈ DSpace પ્રોજેક્ટ પસંદ કરેલ નથી. સૂચન ડેટા પર આધારિત નવો પ્રોજેક્ટ બનાવવામાં આવશે.",
- // "quality-assurance.event.action.cancel": "Cancel",
"quality-assurance.event.action.cancel": "રદ કરો",
- // "quality-assurance.event.action.saved": "Your decision has been saved successfully.",
"quality-assurance.event.action.saved": "તમારો નિર્ણય સફળતાપૂર્વક સાચવવામાં આવ્યો છે.",
- // "quality-assurance.event.action.error": "An error has occurred. Your decision has not been saved.",
"quality-assurance.event.action.error": "ભૂલ આવી. તમારો નિર્ણય સાચવવામાં આવ્યો નથી.",
- // "quality-assurance.event.modal.project.title": "Choose a project to bound",
"quality-assurance.event.modal.project.title": "જોડવા માટે પ્રોજેક્ટ પસંદ કરો",
- // "quality-assurance.event.modal.project.publication": "Publication:",
- // TODO New key - Add a translation
- "quality-assurance.event.modal.project.publication": "Publication:",
+ "quality-assurance.event.modal.project.publication": "પ્રકાશન:",
- // "quality-assurance.event.modal.project.bountToLocal": "Bound to the local record:",
- // TODO New key - Add a translation
- "quality-assurance.event.modal.project.bountToLocal": "Bound to the local record:",
+ "quality-assurance.event.modal.project.bountToLocal": "સ્થાનિક રેકોર્ડ સાથે જોડાયેલ:",
- // "quality-assurance.event.modal.project.select": "Project search",
"quality-assurance.event.modal.project.select": "પ્રોજેક્ટ શોધ",
- // "quality-assurance.event.modal.project.search": "Search",
"quality-assurance.event.modal.project.search": "શોધો",
- // "quality-assurance.event.modal.project.clear": "Clear",
"quality-assurance.event.modal.project.clear": "સાફ કરો",
- // "quality-assurance.event.modal.project.cancel": "Cancel",
"quality-assurance.event.modal.project.cancel": "રદ કરો",
- // "quality-assurance.event.modal.project.bound": "Bound project",
"quality-assurance.event.modal.project.bound": "જોડાયેલ પ્રોજેક્ટ",
- // "quality-assurance.event.modal.project.remove": "Remove",
"quality-assurance.event.modal.project.remove": "દૂર કરો",
- // "quality-assurance.event.modal.project.placeholder": "Enter a project name",
"quality-assurance.event.modal.project.placeholder": "પ્રોજેક્ટ નામ દાખલ કરો",
- // "quality-assurance.event.modal.project.notFound": "No project found.",
"quality-assurance.event.modal.project.notFound": "કોઈ પ્રોજેક્ટ મળ્યો નથી.",
- // "quality-assurance.event.project.bounded": "The project has been linked successfully.",
"quality-assurance.event.project.bounded": "પ્રોજેક્ટ સફળતાપૂર્વક જોડાયેલ છે.",
- // "quality-assurance.event.project.removed": "The project has been successfully unlinked.",
"quality-assurance.event.project.removed": "પ્રોજેક્ટ સફળતાપૂર્વક અનલિંક કરવામાં આવ્યો છે.",
- // "quality-assurance.event.project.error": "An error has occurred. No operation performed.",
"quality-assurance.event.project.error": "ભૂલ આવી. કોઈ ક્રિયા કરવામાં આવી નથી.",
- // "quality-assurance.event.reason": "Reason",
"quality-assurance.event.reason": "કારણ",
- // "orcid.badge.tooltip": "Connected to ORCID",
- // TODO New key - Add a translation
- "orcid.badge.tooltip": "Connected to ORCID",
-
- // "orgunit.listelement.badge": "Organizational Unit",
"orgunit.listelement.badge": "સંસ્થાકીય એકમ",
- // "orgunit.listelement.no-title": "Untitled",
"orgunit.listelement.no-title": "શીર્ષક વિના",
- // "orgunit.page.city": "City",
"orgunit.page.city": "શહેર",
- // "orgunit.page.country": "Country",
"orgunit.page.country": "દેશ",
- // "orgunit.page.dateestablished": "Date established",
"orgunit.page.dateestablished": "સ્થાપના તારીખ",
- // "orgunit.page.description": "Description",
"orgunit.page.description": "વર્ણન",
- // "orgunit.page.edit": "Administer",
"orgunit.page.edit": "આ આઇટમ સંપાદિત કરો",
- // "orgunit.page.id": "ID",
"orgunit.page.id": "ID",
- // "orgunit.page.options": "Options",
"orgunit.page.options": "વિકલ્પો",
- // "orgunit.page.titleprefix": "Organizational Unit: ",
- // TODO New key - Add a translation
- "orgunit.page.titleprefix": "Organizational Unit: ",
+ "orgunit.page.titleprefix": "સંસ્થાકીય એકમ: ",
- // "orgunit.page.ror": "ROR Identifier",
"orgunit.page.ror": "ROR Identifier",
- // "orgunit.search.results.head": "Organizational Unit Search Results",
"orgunit.search.results.head": "સંસ્થાકીય એકમ શોધ પરિણામો",
- // "pagination.options.description": "Pagination options",
"pagination.options.description": "પેજિનેશન વિકલ્પો",
- // "pagination.results-per-page": "Results Per Page",
"pagination.results-per-page": "પ્રતિ પૃષ્ઠ પરિણામો",
- // "pagination.showing.detail": "{{ range }} of {{ total }}",
"pagination.showing.detail": "{{ range }} માંથી {{ total }}",
- // "pagination.showing.label": "Now showing ",
"pagination.showing.label": "હાલમાં બતાવી રહ્યા છે ",
- // "pagination.sort-direction": "Sort Options",
"pagination.sort-direction": "સૉર્ટ વિકલ્પો",
- // "person.listelement.badge": "Person",
"person.listelement.badge": "વ્યક્તિ",
- // "person.listelement.no-title": "No name found",
"person.listelement.no-title": "કોઈ નામ મળ્યું નથી",
- // "person.page.birthdate": "Birth Date",
"person.page.birthdate": "જન્મ તારીખ",
- // "person.page.edit": "Administer",
"person.page.edit": "આ આઇટમ સંપાદિત કરો",
- // "person.page.email": "Email Address",
"person.page.email": "ઇમેઇલ સરનામું",
- // "person.page.firstname": "First Name",
"person.page.firstname": "પ્રથમ નામ",
- // "person.page.jobtitle": "Job Title",
"person.page.jobtitle": "નોકરીનું શીર્ષક",
- // "person.page.lastname": "Last Name",
"person.page.lastname": "છેલ્લું નામ",
- // "person.page.name": "Name",
"person.page.name": "નામ",
- // "person.page.link.full": "Show all metadata",
"person.page.link.full": "બધા મેટાડેટા બતાવો",
- // "person.page.options": "Options",
"person.page.options": "વિકલ્પો",
- // "person.page.orcid": "ORCID",
"person.page.orcid": "ORCID",
- // "person.page.staffid": "Staff ID",
"person.page.staffid": "સ્ટાફ ID",
- // "person.page.titleprefix": "Person: ",
- // TODO New key - Add a translation
- "person.page.titleprefix": "Person: ",
+ "person.page.titleprefix": "વ્યક્તિ: ",
- // "person.search.results.head": "Person Search Results",
"person.search.results.head": "વ્યક્તિ શોધ પરિણામો",
- // "person-relationships.search.results.head": "Person Search Results",
"person-relationships.search.results.head": "વ્યક્તિ શોધ પરિણામો",
- // "person.search.title": "Person Search",
"person.search.title": "વ્યક્તિ શોધ",
- // "process.new.select-parameters": "Parameters",
"process.new.select-parameters": "પરિમાણો",
- // "process.new.select-parameter": "Select parameter",
"process.new.select-parameter": "પરિમાણ પસંદ કરો",
- // "process.new.add-parameter": "Add a parameter...",
"process.new.add-parameter": "પરિમાણ ઉમેરો...",
- // "process.new.delete-parameter": "Delete parameter",
"process.new.delete-parameter": "પરિમાણ કાઢી નાખો",
- // "process.new.parameter.label": "Parameter value",
"process.new.parameter.label": "પરિમાણ મૂલ્ય",
- // "process.new.cancel": "Cancel",
"process.new.cancel": "રદ કરો",
- // "process.new.submit": "Save",
"process.new.submit": "સાચવો",
- // "process.new.select-script": "Script",
"process.new.select-script": "સ્ક્રિપ્ટ",
- // "process.new.select-script.placeholder": "Choose a script...",
"process.new.select-script.placeholder": "સ્ક્રિપ્ટ પસંદ કરો...",
- // "process.new.select-script.required": "Script is required",
"process.new.select-script.required": "સ્ક્રિપ્ટ જરૂરી છે",
- // "process.new.parameter.file.upload-button": "Select file...",
"process.new.parameter.file.upload-button": "ફાઇલ પસંદ કરો...",
- // "process.new.parameter.file.required": "Please select a file",
"process.new.parameter.file.required": "કૃપા કરીને ફાઇલ પસંદ કરો",
- // "process.new.parameter.integer.required": "Parameter value is required",
"process.new.parameter.integer.required": "પરિમાણ મૂલ્ય જરૂરી છે",
- // "process.new.parameter.string.required": "Parameter value is required",
"process.new.parameter.string.required": "પરિમાણ મૂલ્ય જરૂરી છે",
- // "process.new.parameter.type.value": "value",
"process.new.parameter.type.value": "મૂલ્ય",
- // "process.new.parameter.type.file": "file",
"process.new.parameter.type.file": "ફાઇલ",
- // "process.new.parameter.required.missing": "The following parameters are required but still missing:",
- // TODO New key - Add a translation
- "process.new.parameter.required.missing": "The following parameters are required but still missing:",
+ "process.new.parameter.required.missing": "નીચેના પરિમાણો જરૂરી છે પરંતુ હજી સુધી ગૂમ છે:",
- // "process.new.notification.success.title": "Success",
"process.new.notification.success.title": "સફળતા",
- // "process.new.notification.success.content": "The process was successfully created",
"process.new.notification.success.content": "પ્રક્રિયા સફળતાપૂર્વક બનાવવામાં આવી",
- // "process.new.notification.error.title": "Error",
"process.new.notification.error.title": "ભૂલ",
- // "process.new.notification.error.content": "An error occurred while creating this process",
"process.new.notification.error.content": "આ પ્રક્રિયા બનાવતી વખતે ભૂલ આવી",
- // "process.new.notification.error.max-upload.content": "The file exceeds the maximum upload size",
"process.new.notification.error.max-upload.content": "ફાઇલ મહત્તમ અપલોડ કદથી વધુ છે",
- // "process.new.header": "Create a new process",
"process.new.header": "નવી પ્રક્રિયા બનાવો",
- // "process.new.title": "Create a new process",
"process.new.title": "નવી પ્રક્રિયા બનાવો",
- // "process.new.breadcrumbs": "Create a new process",
"process.new.breadcrumbs": "નવી પ્રક્રિયા બનાવો",
- // "process.detail.arguments": "Arguments",
"process.detail.arguments": "દલીલો",
- // "process.detail.arguments.empty": "This process doesn't contain any arguments",
"process.detail.arguments.empty": "આ પ્રક્રિયામાં કોઈ દલીલો નથી",
- // "process.detail.back": "Back",
"process.detail.back": "પાછા",
- // "process.detail.output": "Process Output",
"process.detail.output": "પ્રક્રિયા આઉટપુટ",
- // "process.detail.logs.button": "Retrieve process output",
"process.detail.logs.button": "પ્રક્રિયા આઉટપુટ મેળવો",
- // "process.detail.logs.loading": "Retrieving",
"process.detail.logs.loading": "મેળવી રહ્યા છે",
- // "process.detail.logs.none": "This process has no output",
"process.detail.logs.none": "આ પ્રક્રિયામાં કોઈ આઉટપુટ નથી",
- // "process.detail.output-files": "Output Files",
"process.detail.output-files": "આઉટપુટ ફાઇલો",
- // "process.detail.output-files.empty": "This process doesn't contain any output files",
"process.detail.output-files.empty": "આ પ્રક્રિયામાં કોઈ આઉટપુટ ફાઇલો નથી",
- // "process.detail.script": "Script",
"process.detail.script": "સ્ક્રિપ્ટ",
- // "process.detail.title": "Process: {{ id }} - {{ name }}",
- // TODO New key - Add a translation
- "process.detail.title": "Process: {{ id }} - {{ name }}",
+ "process.detail.title": "પ્રક્રિયા: {{ id }} - {{ name }}",
- // "process.detail.start-time": "Start time",
"process.detail.start-time": "પ્રારંભ સમય",
- // "process.detail.end-time": "Finish time",
"process.detail.end-time": "સમાપ્તિ સમય",
- // "process.detail.status": "Status",
"process.detail.status": "સ્થિતિ",
- // "process.detail.create": "Create similar process",
"process.detail.create": "સમાન પ્રક્રિયા બનાવો",
- // "process.detail.actions": "Actions",
"process.detail.actions": "ક્રિયાઓ",
- // "process.detail.delete.button": "Delete process",
"process.detail.delete.button": "પ્રક્રિયા કાઢી નાખો",
- // "process.detail.delete.header": "Delete process",
"process.detail.delete.header": "પ્રક્રિયા કાઢી નાખો",
- // "process.detail.delete.body": "Are you sure you want to delete the current process?",
"process.detail.delete.body": "શું તમે વર્તમાન પ્રક્રિયા કાઢી નાખવા માંગો છો?",
- // "process.detail.delete.cancel": "Cancel",
"process.detail.delete.cancel": "રદ કરો",
- // "process.detail.delete.confirm": "Delete process",
"process.detail.delete.confirm": "પ્રક્રિયા કાઢી નાખો",
- // "process.detail.delete.success": "The process was successfully deleted.",
"process.detail.delete.success": "પ્રક્રિયા સફળતાપૂર્વક કાઢી નાખવામાં આવી.",
- // "process.detail.delete.error": "Something went wrong when deleting the process",
"process.detail.delete.error": "પ્રક્રિયા કાઢી નાખતી વખતે કંઈક ખોટું થયું",
- // "process.detail.refreshing": "Auto-refreshing…",
"process.detail.refreshing": "ઓટો-રિફ્રેશ થઈ રહ્યું છે…",
- // "process.overview.table.completed.info": "Finish time (UTC)",
"process.overview.table.completed.info": "સમાપ્તિ સમય (UTC)",
- // "process.overview.table.completed.title": "Succeeded processes",
"process.overview.table.completed.title": "સફળ પ્રક્રિયાઓ",
- // "process.overview.table.empty": "No matching processes found.",
"process.overview.table.empty": "કોઈ મેળ ખાતી પ્રક્રિયાઓ મળી નથી.",
- // "process.overview.table.failed.info": "Finish time (UTC)",
"process.overview.table.failed.info": "સમાપ્તિ સમય (UTC)",
- // "process.overview.table.failed.title": "Failed processes",
"process.overview.table.failed.title": "નિષ્ફળ પ્રક્રિયાઓ",
- // "process.overview.table.finish": "Finish time (UTC)",
"process.overview.table.finish": "સમાપ્તિ સમય (UTC)",
- // "process.overview.table.id": "Process ID",
"process.overview.table.id": "પ્રક્રિયા ID",
- // "process.overview.table.name": "Name",
"process.overview.table.name": "નામ",
- // "process.overview.table.running.info": "Start time (UTC)",
"process.overview.table.running.info": "પ્રારંભ સમય (UTC)",
- // "process.overview.table.running.title": "Running processes",
"process.overview.table.running.title": "ચાલતી પ્રક્રિયાઓ",
- // "process.overview.table.scheduled.info": "Creation time (UTC)",
"process.overview.table.scheduled.info": "રચના સમય (UTC)",
- // "process.overview.table.scheduled.title": "Scheduled processes",
"process.overview.table.scheduled.title": "નિયત પ્રક્રિયાઓ",
- // "process.overview.table.start": "Start time (UTC)",
"process.overview.table.start": "પ્રારંભ સમય (UTC)",
- // "process.overview.table.status": "Status",
"process.overview.table.status": "સ્થિતિ",
- // "process.overview.table.user": "User",
"process.overview.table.user": "વપરાશકર્તા",
- // "process.overview.title": "Processes Overview",
"process.overview.title": "પ્રક્રિયાઓની ઝાંખી",
- // "process.overview.breadcrumbs": "Processes Overview",
"process.overview.breadcrumbs": "પ્રક્રિયાઓની ઝાંખી",
- // "process.overview.new": "New",
"process.overview.new": "નવું",
- // "process.overview.table.actions": "Actions",
"process.overview.table.actions": "ક્રિયાઓ",
- // "process.overview.delete": "Delete {{count}} processes",
"process.overview.delete": "{{count}} પ્રક્રિયાઓ કાઢી નાખો",
- // "process.overview.delete-process": "Delete process",
"process.overview.delete-process": "પ્રક્રિયા કાઢી નાખો",
- // "process.overview.delete.clear": "Clear delete selection",
"process.overview.delete.clear": "કાઢી નાખવાની પસંદગી સાફ કરો",
- // "process.overview.delete.processing": "{{count}} process(es) are being deleted. Please wait for the deletion to fully complete. Note that this can take a while.",
"process.overview.delete.processing": "{{count}} પ્રક્રિયા(ઓ) કાઢી નાખવામાં આવી રહી છે. કૃપા કરીને સંપૂર્ણ રીતે કાઢી નાખવા માટે રાહ જુઓ. નોંધો કે આમાં થોડો સમય લાગી શકે છે.",
- // "process.overview.delete.body": "Are you sure you want to delete {{count}} process(es)?",
"process.overview.delete.body": "શું તમે ખરેખર {{count}} પ્રક્રિયા(ઓ) કાઢી નાખવા માંગો છો?",
- // "process.overview.delete.header": "Delete processes",
"process.overview.delete.header": "પ્રક્રિયાઓ કાઢી નાખો",
- // "process.overview.unknown.user": "Unknown",
"process.overview.unknown.user": "અજ્ઞાત",
- // "process.bulk.delete.error.head": "Error on deleting process",
"process.bulk.delete.error.head": "પ્રક્રિયા કાઢી નાખવામાં ભૂલ",
- // "process.bulk.delete.error.body": "The process with ID {{processId}} could not be deleted. The remaining processes will continue being deleted.",
"process.bulk.delete.error.body": "પ્રક્રિયા ID {{processId}} સાથેની પ્રક્રિયા કાઢી શકાઈ નથી. બાકી રહેલી પ્રક્રિયાઓ કાઢી નાખવાનું ચાલુ રહેશે.",
- // "process.bulk.delete.success": "{{count}} process(es) have been successfully deleted",
"process.bulk.delete.success": "{{count}} પ્રક્રિયા(ઓ) સફળતાપૂર્વક કાઢી નાખવામાં આવી છે",
- // "profile.breadcrumbs": "Update Profile",
"profile.breadcrumbs": "પ્રોફાઇલ અપડેટ કરો",
- // "profile.card.accessibility.content": "Accessibility settings can be configured on the accessibility settings page.",
- // TODO New key - Add a translation
- "profile.card.accessibility.content": "Accessibility settings can be configured on the accessibility settings page.",
-
- // "profile.card.accessibility.header": "Accessibility",
- // TODO New key - Add a translation
- "profile.card.accessibility.header": "Accessibility",
-
- // "profile.card.accessibility.link": "Go to Accessibility Settings Page",
- // TODO New key - Add a translation
- "profile.card.accessibility.link": "Go to Accessibility Settings Page",
-
- // "profile.card.identify": "Identify",
"profile.card.identify": "ઓળખો",
- // "profile.card.security": "Security",
"profile.card.security": "સુરક્ષા",
- // "profile.form.submit": "Save",
"profile.form.submit": "સાચવો",
- // "profile.groups.head": "Authorization groups you belong to",
"profile.groups.head": "તમે જે અધિકૃતતા જૂથો સાથે જોડાયેલા છો",
- // "profile.special.groups.head": "Authorization special groups you belong to",
"profile.special.groups.head": "તમે જે અધિકૃતતા વિશેષ જૂથો સાથે જોડાયેલા છો",
- // "profile.metadata.form.error.firstname.required": "First Name is required",
"profile.metadata.form.error.firstname.required": "પ્રથમ નામ જરૂરી છે",
- // "profile.metadata.form.error.lastname.required": "Last Name is required",
"profile.metadata.form.error.lastname.required": "છેલ્લું નામ જરૂરી છે",
- // "profile.metadata.form.label.email": "Email Address",
"profile.metadata.form.label.email": "ઇમેઇલ સરનામું",
- // "profile.metadata.form.label.firstname": "First Name",
"profile.metadata.form.label.firstname": "પ્રથમ નામ",
- // "profile.metadata.form.label.language": "Language",
"profile.metadata.form.label.language": "ભાષા",
- // "profile.metadata.form.label.lastname": "Last Name",
"profile.metadata.form.label.lastname": "છેલ્લું નામ",
- // "profile.metadata.form.label.phone": "Contact Telephone",
"profile.metadata.form.label.phone": "સંપર્ક ટેલિફોન",
- // "profile.metadata.form.notifications.success.content": "Your changes to the profile were saved.",
"profile.metadata.form.notifications.success.content": "તમારા પ્રોફાઇલ માટેના ફેરફારો સાચવવામાં આવ્યા હતા.",
- // "profile.metadata.form.notifications.success.title": "Profile saved",
"profile.metadata.form.notifications.success.title": "પ્રોફાઇલ સાચવી",
- // "profile.notifications.warning.no-changes.content": "No changes were made to the Profile.",
"profile.notifications.warning.no-changes.content": "પ્રોફાઇલમાં કોઈ ફેરફારો કરવામાં આવ્યા નથી.",
- // "profile.notifications.warning.no-changes.title": "No changes",
"profile.notifications.warning.no-changes.title": "કોઈ ફેરફારો નથી",
- // "profile.security.form.error.matching-passwords": "The passwords do not match.",
"profile.security.form.error.matching-passwords": "પાસવર્ડ મેળ ખાતા નથી.",
- // "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.",
"profile.security.form.info": "વૈકલ્પિક રીતે, તમે નીચેના બોક્સમાં નવો પાસવર્ડ દાખલ કરી શકો છો અને તેને ફરીથી تایپ કરીને પુષ્ટિ કરી શકો છો.",
- // "profile.security.form.label.password": "Password",
"profile.security.form.label.password": "પાસવર્ડ",
- // "profile.security.form.label.passwordrepeat": "Retype to confirm",
"profile.security.form.label.passwordrepeat": "પુષ્ટિ કરવા માટે ફરીથી تایપ કરો",
- // "profile.security.form.label.current-password": "Current password",
"profile.security.form.label.current-password": "વર્તમાન પાસવર્ડ",
- // "profile.security.form.notifications.success.content": "Your changes to the password were saved.",
"profile.security.form.notifications.success.content": "તમારા પાસવર્ડ માટેના ફેરફારો સાચવવામાં આવ્યા હતા.",
- // "profile.security.form.notifications.success.title": "Password saved",
"profile.security.form.notifications.success.title": "પાસવર્ડ સાચવી",
- // "profile.security.form.notifications.error.title": "Error changing passwords",
"profile.security.form.notifications.error.title": "પાસવર્ડ બદલવામાં ભૂલ",
- // "profile.security.form.notifications.error.change-failed": "An error occurred while trying to change the password. Please check if the current password is correct.",
"profile.security.form.notifications.error.change-failed": "પાસવર્ડ બદલવાનો પ્રયાસ કરતી વખતે ભૂલ આવી. કૃપા કરીને તપાસો કે વર્તમાન પાસવર્ડ સાચો છે કે નહીં.",
- // "profile.security.form.notifications.error.not-same": "The provided passwords are not the same.",
"profile.security.form.notifications.error.not-same": "પ્રદાન કરેલા પાસવર્ડો એકસરખા નથી.",
- // "profile.security.form.notifications.error.general": "Please fill required fields of security form.",
"profile.security.form.notifications.error.general": "કૃપા કરીને સુરક્ષા ફોર્મના જરૂરી ક્ષેત્રો ભરો.",
- // "profile.title": "Update Profile",
"profile.title": "પ્રોફાઇલ અપડેટ કરો",
- // "profile.card.researcher": "Researcher Profile",
"profile.card.researcher": "શોધક પ્રોફાઇલ",
- // "project.listelement.badge": "Research Project",
"project.listelement.badge": "શોધ પ્રોજેક્ટ",
- // "project.page.contributor": "Contributors",
"project.page.contributor": "યોગદાનકર્તાઓ",
- // "project.page.description": "Description",
"project.page.description": "વર્ણન",
- // "project.page.edit": "Administer",
"project.page.edit": "આ આઇટમ સંપાદિત કરો",
- // "project.page.expectedcompletion": "Expected Completion",
"project.page.expectedcompletion": "અપેક્ષિત પૂર્ણતા",
- // "project.page.funder": "Funders",
"project.page.funder": "ફંડર્સ",
- // "project.page.id": "ID",
"project.page.id": "ID",
- // "project.page.keyword": "Keywords",
"project.page.keyword": "કીવર્ડ્સ",
- // "project.page.options": "Options",
"project.page.options": "વિકલ્પો",
- // "project.page.status": "Status",
"project.page.status": "સ્થિતિ",
- // "project.page.titleprefix": "Research Project: ",
- // TODO New key - Add a translation
- "project.page.titleprefix": "Research Project: ",
+ "project.page.titleprefix": "શોધ પ્રોજેક્ટ: ",
- // "project.search.results.head": "Project Search Results",
"project.search.results.head": "પ્રોજેક્ટ શોધ પરિણામો",
- // "project-relationships.search.results.head": "Project Search Results",
"project-relationships.search.results.head": "પ્રોજેક્ટ શોધ પરિણામો",
- // "publication.listelement.badge": "Publication",
"publication.listelement.badge": "પ્રકાશન",
- // "publication.page.description": "Description",
"publication.page.description": "વર્ણન",
- // "publication.page.edit": "Administer",
"publication.page.edit": "આ આઇટમ સંપાદિત કરો",
- // "publication.page.journal-issn": "Journal ISSN",
"publication.page.journal-issn": "જર્નલ ISSN",
- // "publication.page.journal-title": "Journal Title",
"publication.page.journal-title": "જર્નલ શીર્ષક",
- // "publication.page.publisher": "Publisher",
"publication.page.publisher": "પ્રકાશક",
- // "publication.page.options": "Options",
"publication.page.options": "વિકલ્પો",
- // "publication.page.titleprefix": "Publication: ",
- // TODO New key - Add a translation
- "publication.page.titleprefix": "Publication: ",
+ "publication.page.titleprefix": "પ્રકાશન: ",
- // "publication.page.volume-title": "Volume Title",
"publication.page.volume-title": "વોલ્યુમ શીર્ષક",
- // "publication.page.doi": "DOI",
- // TODO New key - Add a translation
- "publication.page.doi": "DOI",
-
- // "publication.search.results.head": "Publication Search Results",
"publication.search.results.head": "પ્રકાશન શોધ પરિણામો",
- // "publication-relationships.search.results.head": "Publication Search Results",
"publication-relationships.search.results.head": "પ્રકાશન શોધ પરિણામો",
- // "publication.search.title": "Publication Search",
"publication.search.title": "પ્રકાશન શોધ",
- // "media-viewer.next": "Next",
"media-viewer.next": "આગલું",
- // "media-viewer.previous": "Previous",
"media-viewer.previous": "પાછલું",
- // "media-viewer.playlist": "Playlist",
"media-viewer.playlist": "પ્લેલિસ્ટ",
- // "suggestion.loading": "Loading ...",
"suggestion.loading": "લોડ થઈ રહ્યું છે ...",
- // "suggestion.title": "Publication Claim",
"suggestion.title": "પ્રકાશન દાવો",
- // "suggestion.title.breadcrumbs": "Publication Claim",
"suggestion.title.breadcrumbs": "પ્રકાશન દાવો",
- // "suggestion.targets.description": "Below you can see all the suggestions ",
"suggestion.targets.description": "નીચે તમે બધા સૂચનો જોઈ શકો છો",
- // "suggestion.targets": "Current Suggestions",
"suggestion.targets": "વર્તમાન સૂચનો",
- // "suggestion.table.name": "Researcher Name",
"suggestion.table.name": "શોધકનું નામ",
- // "suggestion.table.actions": "Actions",
"suggestion.table.actions": "ક્રિયાઓ",
- // "suggestion.button.review": "Review {{ total }} suggestion(s)",
"suggestion.button.review": "{{ total }} સૂચન(ઓ)ની સમીક્ષા કરો",
- // "suggestion.button.review.title": "Review {{ total }} suggestion(s) for ",
"suggestion.button.review.title": "{{ total }} સૂચન(ઓ) માટેની સમીક્ષા કરો",
- // "suggestion.noTargets": "No target found.",
"suggestion.noTargets": "કોઈ લક્ષ્ય મળ્યું નથી.",
- // "suggestion.target.error.service.retrieve": "An error occurred while loading the Suggestion targets",
"suggestion.target.error.service.retrieve": "સૂચન લક્ષ્યો લોડ કરતી વખતે ભૂલ આવી",
- // "suggestion.evidence.type": "Type",
"suggestion.evidence.type": "પ્રકાર",
- // "suggestion.evidence.score": "Score",
"suggestion.evidence.score": "સ્કોર",
- // "suggestion.evidence.notes": "Notes",
"suggestion.evidence.notes": "નોંધો",
- // "suggestion.approveAndImport": "Approve & import",
"suggestion.approveAndImport": "મંજૂર કરો અને આયાત કરો",
- // "suggestion.approveAndImport.success": "The suggestion has been imported successfully. View.",
"suggestion.approveAndImport.success": "સૂચન સફળતાપૂર્વક આયાત કરવામાં આવ્યું છે. જુઓ.",
- // "suggestion.approveAndImport.bulk": "Approve & import Selected",
"suggestion.approveAndImport.bulk": "પસંદ કરેલને મંજૂર કરો અને આયાત કરો",
- // "suggestion.approveAndImport.bulk.success": "{{ count }} suggestions have been imported successfully ",
"suggestion.approveAndImport.bulk.success": "{{ count }} સૂચનો સફળતાપૂર્વક આયાત કરવામાં આવ્યા છે",
- // "suggestion.approveAndImport.bulk.error": "{{ count }} suggestions haven't been imported due to unexpected server errors",
"suggestion.approveAndImport.bulk.error": "અનપેક્ષિત સર્વર ભૂલોને કારણે {{ count }} સૂચનો આયાત કરવામાં આવ્યા નથી",
- // "suggestion.ignoreSuggestion": "Ignore Suggestion",
"suggestion.ignoreSuggestion": "સૂચન અવગણો",
- // "suggestion.ignoreSuggestion.success": "The suggestion has been discarded",
"suggestion.ignoreSuggestion.success": "સૂચન રદ કરવામાં આવ્યું છે",
- // "suggestion.ignoreSuggestion.bulk": "Ignore Suggestion Selected",
"suggestion.ignoreSuggestion.bulk": "પસંદ કરેલ સૂચન અવગણો",
- // "suggestion.ignoreSuggestion.bulk.success": "{{ count }} suggestions have been discarded ",
"suggestion.ignoreSuggestion.bulk.success": "{{ count }} સૂચનો રદ કરવામાં આવ્યા છે",
- // "suggestion.ignoreSuggestion.bulk.error": "{{ count }} suggestions haven't been discarded due to unexpected server errors",
"suggestion.ignoreSuggestion.bulk.error": "અનપેક્ષિત સર્વર ભૂલોને કારણે {{ count }} સૂચનો રદ કરવામાં આવ્યા નથી",
- // "suggestion.seeEvidence": "See evidence",
"suggestion.seeEvidence": "પુરાવા જુઓ",
- // "suggestion.hideEvidence": "Hide evidence",
"suggestion.hideEvidence": "પુરાવા છુપાવો",
- // "suggestion.suggestionFor": "Suggestions for",
"suggestion.suggestionFor": "માટેના સૂચનો",
- // "suggestion.suggestionFor.breadcrumb": "Suggestions for {{ name }}",
"suggestion.suggestionFor.breadcrumb": "{{ name }} માટેના સૂચનો",
- // "suggestion.source.openaire": "OpenAIRE Graph",
"suggestion.source.openaire": "OpenAIRE ગ્રાફ",
- // "suggestion.source.openalex": "OpenAlex",
"suggestion.source.openalex": "OpenAlex",
- // "suggestion.from.source": "from the ",
"suggestion.from.source": "થી",
- // "suggestion.count.missing": "You have no publication claims left",
"suggestion.count.missing": "તમારા પાસે કોઈ પ્રકાશન દાવા બાકી નથી",
- // "suggestion.totalScore": "Total Score",
"suggestion.totalScore": "કુલ સ્કોર",
- // "suggestion.type.openaire": "OpenAIRE",
"suggestion.type.openaire": "OpenAIRE",
- // "register-email.title": "New user registration",
"register-email.title": "નવા વપરાશકર્તા નોંધણી",
- // "register-page.create-profile.header": "Create Profile",
"register-page.create-profile.header": "પ્રોફાઇલ બનાવો",
- // "register-page.create-profile.identification.header": "Identify",
"register-page.create-profile.identification.header": "ઓળખો",
- // "register-page.create-profile.identification.email": "Email Address",
"register-page.create-profile.identification.email": "ઇમેઇલ સરનામું",
- // "register-page.create-profile.identification.first-name": "First Name *",
"register-page.create-profile.identification.first-name": "પ્રથમ નામ *",
- // "register-page.create-profile.identification.first-name.error": "Please fill in a First Name",
"register-page.create-profile.identification.first-name.error": "કૃપા કરીને પ્રથમ નામ ભરો",
- // "register-page.create-profile.identification.last-name": "Last Name *",
"register-page.create-profile.identification.last-name": "છેલ્લું નામ *",
- // "register-page.create-profile.identification.last-name.error": "Please fill in a Last Name",
"register-page.create-profile.identification.last-name.error": "કૃપા કરીને છેલ્લું નામ ભરો",
- // "register-page.create-profile.identification.contact": "Contact Telephone",
"register-page.create-profile.identification.contact": "સંપર્ક ટેલિફોન",
- // "register-page.create-profile.identification.language": "Language",
"register-page.create-profile.identification.language": "ભાષા",
- // "register-page.create-profile.security.header": "Security",
"register-page.create-profile.security.header": "સુરક્ષા",
- // "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.",
"register-page.create-profile.security.info": "કૃપા કરીને નીચેના બોક્સમાં પાસવર્ડ દાખલ કરો અને તેને ફરીથી تایપ કરીને પુષ્ટિ કરો.",
- // "register-page.create-profile.security.label.password": "Password *",
"register-page.create-profile.security.label.password": "પાસવર્ડ *",
- // "register-page.create-profile.security.label.passwordrepeat": "Retype to confirm *",
"register-page.create-profile.security.label.passwordrepeat": "પુષ્ટિ કરવા માટે ફરીથી تایપ કરો *",
- // "register-page.create-profile.security.error.empty-password": "Please enter a password in the box below.",
"register-page.create-profile.security.error.empty-password": "કૃપા કરીને નીચેના બોક્સમાં પાસવર્ડ દાખલ કરો.",
- // "register-page.create-profile.security.error.matching-passwords": "The passwords do not match.",
"register-page.create-profile.security.error.matching-passwords": "પાસવર્ડ મેળ ખાતા નથી.",
- // "register-page.create-profile.submit": "Complete Registration",
"register-page.create-profile.submit": "નોંધણી પૂર્ણ કરો",
- // "register-page.create-profile.submit.error.content": "Something went wrong while registering a new user.",
"register-page.create-profile.submit.error.content": "નવા વપરાશકર્તા નોંધણી કરતી વખતે કંઈક ખોટું થયું.",
- // "register-page.create-profile.submit.error.head": "Registration failed",
"register-page.create-profile.submit.error.head": "નોંધણી નિષ્ફળ",
- // "register-page.create-profile.submit.success.content": "The registration was successful. You have been logged in as the created user.",
"register-page.create-profile.submit.success.content": "નોંધણી સફળ રહી. તમે બનાવેલ વપરાશકર્તા તરીકે લોગિન થયા છો.",
- // "register-page.create-profile.submit.success.head": "Registration completed",
"register-page.create-profile.submit.success.head": "નોંધણી પૂર્ણ",
- // "register-page.registration.header": "New user registration",
"register-page.registration.header": "નવા વપરાશકર્તા નોંધણી",
- // "register-page.registration.info": "Register an account to subscribe to collections for email updates, and submit new items to DSpace.",
"register-page.registration.info": "ઇમેઇલ અપડેટ્સ માટે સંગ્રહો માટે સબ્સ્ક્રાઇબ કરવા અને DSpace માં નવા આઇટમ્સ સબમિટ કરવા માટે એકાઉન્ટ નોંધણી કરો.",
- // "register-page.registration.email": "Email Address *",
"register-page.registration.email": "ઇમેઇલ સરનામું *",
- // "register-page.registration.email.error.required": "Please fill in an email address",
"register-page.registration.email.error.required": "કૃપા કરીને ઇમેઇલ સરનામું ભરો",
- // "register-page.registration.email.error.not-email-form": "Please fill in a valid email address.",
"register-page.registration.email.error.not-email-form": "કૃપા કરીને માન્ય ઇમેઇલ સરનામું ભરો.",
- // "register-page.registration.email.error.not-valid-domain": "Use email with allowed domains: {{ domains }}",
- // TODO New key - Add a translation
- "register-page.registration.email.error.not-valid-domain": "Use email with allowed domains: {{ domains }}",
+ "register-page.registration.email.error.not-valid-domain": "અનુમતિ આપેલ ડોમેઇન સાથે ઇમેઇલનો ઉપયોગ કરો: {{ domains }}",
- // "register-page.registration.email.hint": "This address will be verified and used as your login name.",
"register-page.registration.email.hint": "આ સરનામું ચકાસવામાં આવશે અને તમારા લોગિન નામ તરીકે ઉપયોગમાં લેવામાં આવશે.",
- // "register-page.registration.submit": "Register",
"register-page.registration.submit": "નોંધણી કરો",
- // "register-page.registration.success.head": "Verification email sent",
"register-page.registration.success.head": "ચકાસણી ઇમેઇલ મોકલવામાં આવ્યું",
- // "register-page.registration.success.content": "An email has been sent to {{ email }} containing a special URL and further instructions.",
"register-page.registration.success.content": "{{ email }} પર એક ઇમેઇલ મોકલવામાં આવ્યું છે જેમાં વિશેષ URL અને વધુ સૂચનાઓ છે.",
- // "register-page.registration.error.head": "Error when trying to register email",
"register-page.registration.error.head": "ઇમેઇલ નોંધણી કરવાનો પ્રયાસ કરતી વખતે ભૂલ",
- // "register-page.registration.error.content": "An error occurred when registering the following email address: {{ email }}",
- // TODO New key - Add a translation
- "register-page.registration.error.content": "An error occurred when registering the following email address: {{ email }}",
+ "register-page.registration.error.content": "નીચેના ઇમેઇલ સરનામું નોંધણી કરતી વખતે ભૂલ આવી: {{ email }}",
- // "register-page.registration.error.recaptcha": "Error when trying to authenticate with recaptcha",
"register-page.registration.error.recaptcha": "recaptcha સાથે પ્રમાણિકતા કરવાનો પ્રયાસ કરતી વખતે ભૂલ",
- // "register-page.registration.google-recaptcha.must-accept-cookies": "In order to register you must accept the Registration and Password recovery (Google reCaptcha) cookies.",
"register-page.registration.google-recaptcha.must-accept-cookies": "નોંધણી કરવા માટે તમારે નોંધણી અને પાસવર્ડ પુનઃપ્રાપ્તિ (Google reCaptcha) કૂકીઝ સ્વીકારવી પડશે.",
- // "register-page.registration.error.maildomain": "This email address is not on the list of domains who can register. Allowed domains are {{ domains }}",
"register-page.registration.error.maildomain": "આ ઇમેઇલ સરનામું તે ડોમેઇનની યાદીમાં નથી જે નોંધણી કરી શકે છે. અનુમતિ આપેલ ડોમેઇન છે {{ domains }}",
- // "register-page.registration.google-recaptcha.open-cookie-settings": "Open cookie settings",
"register-page.registration.google-recaptcha.open-cookie-settings": "કૂકી સેટિંગ્સ ખોલો",
- // "register-page.registration.google-recaptcha.notification.title": "Google reCaptcha",
"register-page.registration.google-recaptcha.notification.title": "Google reCaptcha",
- // "register-page.registration.google-recaptcha.notification.message.error": "An error occurred during reCaptcha verification",
"register-page.registration.google-recaptcha.notification.message.error": "reCaptcha ચકાસણી દરમિયાન ભૂલ આવી",
- // "register-page.registration.google-recaptcha.notification.message.expired": "Verification expired. Please verify again.",
"register-page.registration.google-recaptcha.notification.message.expired": "ચકાસણી સમાપ્ત થઈ. કૃપા કરીને ફરીથી ચકાસો.",
- // "register-page.registration.info.maildomain": "Accounts can be registered for mail addresses of the domains",
"register-page.registration.info.maildomain": "એકાઉન્ટ્સને ડોમેઇનના મેલ સરનામા માટે નોંધણી કરી શકાય છે",
- // "relationships.add.error.relationship-type.content": "No suitable match could be found for relationship type {{ type }} between the two items",
"relationships.add.error.relationship-type.content": "સંબંધ પ્રકાર {{ type }} માટે યોગ્ય મેળ નથી મળ્યો બે આઇટમ્સ વચ્ચે",
- // "relationships.add.error.server.content": "The server returned an error",
"relationships.add.error.server.content": "સર્વરે ભૂલ પરત કરી",
- // "relationships.add.error.title": "Unable to add relationship",
"relationships.add.error.title": "સંબંધ ઉમેરવામાં અસમર્થ",
- // "relationships.Publication.isAuthorOfPublication.Person": "Authors (persons)",
- // TODO New key - Add a translation
- "relationships.Publication.isAuthorOfPublication.Person": "Authors (persons)",
+ "relationships.isAuthorOf": "લેખકો",
- // "relationships.Publication.isProjectOfPublication.Project": "Research Projects",
- // TODO New key - Add a translation
- "relationships.Publication.isProjectOfPublication.Project": "Research Projects",
+ "relationships.isAuthorOf.Person": "લેખકો (વ્યક્તિઓ)",
- // "relationships.Publication.isOrgUnitOfPublication.OrgUnit": "Organizational Units",
- // TODO New key - Add a translation
- "relationships.Publication.isOrgUnitOfPublication.OrgUnit": "Organizational Units",
+ "relationships.isAuthorOf.OrgUnit": "લેખકો (સંસ્થાકીય એકમો)",
- // "relationships.Publication.isAuthorOfPublication.OrgUnit": "Authors (organizational units)",
- // TODO New key - Add a translation
- "relationships.Publication.isAuthorOfPublication.OrgUnit": "Authors (organizational units)",
+ "relationships.isIssueOf": "જર્નલ ઇશ્યુઝ",
- // "relationships.Publication.isJournalIssueOfPublication.JournalIssue": "Journal Issue",
- // TODO New key - Add a translation
- "relationships.Publication.isJournalIssueOfPublication.JournalIssue": "Journal Issue",
+ "relationships.isIssueOf.JournalIssue": "જર્નલ ઇશ્યુ",
- // "relationships.Publication.isContributorOfPublication.Person": "Contributor",
- // TODO New key - Add a translation
- "relationships.Publication.isContributorOfPublication.Person": "Contributor",
+ "relationships.isJournalIssueOf": "જર્નલ ઇશ્યુ",
- // "relationships.Publication.isContributorOfPublication.OrgUnit": "Contributor (organizational units)",
- // TODO New key - Add a translation
- "relationships.Publication.isContributorOfPublication.OrgUnit": "Contributor (organizational units)",
+ "relationships.isJournalOf": "જર્નલ્સ",
- // "relationships.Person.isPublicationOfAuthor.Publication": "Publications",
- // TODO New key - Add a translation
- "relationships.Person.isPublicationOfAuthor.Publication": "Publications",
+ "relationships.isJournalVolumeOf": "જર્નલ વોલ્યુમ",
- // "relationships.Person.isProjectOfPerson.Project": "Research Projects",
- // TODO New key - Add a translation
- "relationships.Person.isProjectOfPerson.Project": "Research Projects",
+ "relationships.isOrgUnitOf": "સંસ્થાકીય એકમો",
- // "relationships.Person.isOrgUnitOfPerson.OrgUnit": "Organizational Units",
- // TODO New key - Add a translation
- "relationships.Person.isOrgUnitOfPerson.OrgUnit": "Organizational Units",
+ "relationships.isPersonOf": "લેખકો",
- // "relationships.Person.isPublicationOfContributor.Publication": "Publications (contributor to)",
- // TODO New key - Add a translation
- "relationships.Person.isPublicationOfContributor.Publication": "Publications (contributor to)",
+ "relationships.isProjectOf": "શોધ પ્રોજેક્ટ્સ",
- // "relationships.Project.isPublicationOfProject.Publication": "Publications",
- // TODO New key - Add a translation
- "relationships.Project.isPublicationOfProject.Publication": "Publications",
+ "relationships.isPublicationOf": "પ્રકાશનો",
- // "relationships.Project.isPersonOfProject.Person": "Authors",
- // TODO New key - Add a translation
- "relationships.Project.isPersonOfProject.Person": "Authors",
+ "relationships.isPublicationOfJournalIssue": "લેખો",
- // "relationships.Project.isOrgUnitOfProject.OrgUnit": "Organizational Units",
- // TODO New key - Add a translation
- "relationships.Project.isOrgUnitOfProject.OrgUnit": "Organizational Units",
+ "relationships.isSingleJournalOf": "જર્નલ",
- // "relationships.Project.isFundingAgencyOfProject.OrgUnit": "Funder",
- // TODO New key - Add a translation
- "relationships.Project.isFundingAgencyOfProject.OrgUnit": "Funder",
+ "relationships.isSingleVolumeOf": "જર્નલ વોલ્યુમ",
- // "relationships.OrgUnit.isPublicationOfOrgUnit.Publication": "Organisation Publications",
- // TODO New key - Add a translation
- "relationships.OrgUnit.isPublicationOfOrgUnit.Publication": "Organisation Publications",
+ "relationships.isVolumeOf": "જર્નલ વોલ્યુમ",
- // "relationships.OrgUnit.isPersonOfOrgUnit.Person": "Authors",
- // TODO New key - Add a translation
- "relationships.OrgUnit.isPersonOfOrgUnit.Person": "Authors",
+ "relationships.isVolumeOf.JournalVolume": "જર્નલ વોલ્યુમ",
- // "relationships.OrgUnit.isProjectOfOrgUnit.Project": "Research Projects",
- // TODO New key - Add a translation
- "relationships.OrgUnit.isProjectOfOrgUnit.Project": "Research Projects",
+ "relationships.isContributorOf": "યોગદાનકર્તાઓ",
- // "relationships.OrgUnit.isPublicationOfAuthor.Publication": "Authored Publications",
- // TODO New key - Add a translation
- "relationships.OrgUnit.isPublicationOfAuthor.Publication": "Authored Publications",
+ "relationships.isContributorOf.OrgUnit": "યોગદાનકર્તા (સંસ્થાકીય એકમ)",
- // "relationships.OrgUnit.isPublicationOfContributor.Publication": "Publications (contributor to)",
- // TODO New key - Add a translation
- "relationships.OrgUnit.isPublicationOfContributor.Publication": "Publications (contributor to)",
+ "relationships.isContributorOf.Person": "યોગદાનકર્તા",
- // "relationships.OrgUnit.isProjectOfFundingAgency.Project": "Research Projects (funder of)",
- // TODO New key - Add a translation
- "relationships.OrgUnit.isProjectOfFundingAgency.Project": "Research Projects (funder of)",
+ "relationships.isFundingAgencyOf.OrgUnit": "ફંડર",
- // "relationships.JournalIssue.isJournalVolumeOfIssue.JournalVolume": "Journal Volume",
- // TODO New key - Add a translation
- "relationships.JournalIssue.isJournalVolumeOfIssue.JournalVolume": "Journal Volume",
-
- // "relationships.JournalIssue.isPublicationOfJournalIssue.Publication": "Publications",
- // TODO New key - Add a translation
- "relationships.JournalIssue.isPublicationOfJournalIssue.Publication": "Publications",
-
- // "relationships.JournalVolume.isJournalOfVolume.Journal": "Journals",
- // TODO New key - Add a translation
- "relationships.JournalVolume.isJournalOfVolume.Journal": "Journals",
-
- // "relationships.JournalVolume.isIssueOfJournalVolume.JournalIssue": "Journal Issue",
- // TODO New key - Add a translation
- "relationships.JournalVolume.isIssueOfJournalVolume.JournalIssue": "Journal Issue",
-
- // "relationships.Journal.isVolumeOfJournal.JournalVolume": "Journal Volume",
- // TODO New key - Add a translation
- "relationships.Journal.isVolumeOfJournal.JournalVolume": "Journal Volume",
-
- // "repository.image.logo": "Repository logo",
"repository.image.logo": "રિપોઝિટરી લોગો",
- // "repository.title": "DSpace Repository",
"repository.title": "DSpace રિપોઝિટરી",
- // "repository.title.prefix": "DSpace Repository :: ",
- // TODO New key - Add a translation
- "repository.title.prefix": "DSpace Repository :: ",
+ "repository.title.prefix": "DSpace રિપોઝિટરી :: ",
- // "resource-policies.add.button": "Add",
"resource-policies.add.button": "ઉમેરો",
- // "resource-policies.add.for.": "Add a new policy",
"resource-policies.add.for.": "નવી નીતિ ઉમેરો",
- // "resource-policies.add.for.bitstream": "Add a new Bitstream policy",
"resource-policies.add.for.bitstream": "નવી બિટસ્ટ્રીમ નીતિ ઉમેરો",
- // "resource-policies.add.for.bundle": "Add a new Bundle policy",
"resource-policies.add.for.bundle": "નવી બંડલ નીતિ ઉમેરો",
- // "resource-policies.add.for.item": "Add a new Item policy",
"resource-policies.add.for.item": "નવી આઇટમ નીતિ ઉમેરો",
- // "resource-policies.add.for.community": "Add a new Community policy",
"resource-policies.add.for.community": "નવી સમુદાય નીતિ ઉમેરો",
- // "resource-policies.add.for.collection": "Add a new Collection policy",
"resource-policies.add.for.collection": "નવી સંગ્રહ નીતિ ઉમેરો",
- // "resource-policies.create.page.heading": "Create new resource policy for ",
"resource-policies.create.page.heading": "માટે નવી સંસાધન નીતિ બનાવો",
- // "resource-policies.create.page.failure.content": "An error occurred while creating the resource policy.",
"resource-policies.create.page.failure.content": "સંસાધન નીતિ બનાવતી વખતે ભૂલ આવી.",
- // "resource-policies.create.page.success.content": "Operation successful",
"resource-policies.create.page.success.content": "ક્રિયા સફળતાપૂર્વક પૂર્ણ થઈ",
- // "resource-policies.create.page.title": "Create new resource policy",
"resource-policies.create.page.title": "નવી સંસાધન નીતિ બનાવો",
- // "resource-policies.delete.btn": "Delete selected",
"resource-policies.delete.btn": "પસંદ કરેલને કાઢી નાખો",
- // "resource-policies.delete.btn.title": "Delete selected resource policies",
"resource-policies.delete.btn.title": "પસંદ કરેલ સંસાધન નીતિઓ કાઢી નાખો",
- // "resource-policies.delete.failure.content": "An error occurred while deleting selected resource policies.",
"resource-policies.delete.failure.content": "પસંદ કરેલ સંસાધન નીતિઓ કાઢી નાખતી વખતે ભૂલ આવી.",
- // "resource-policies.delete.success.content": "Operation successful",
"resource-policies.delete.success.content": "ક્રિયા સફળતાપૂર્વક પૂર્ણ થઈ",
- // "resource-policies.edit.page.heading": "Edit resource policy ",
"resource-policies.edit.page.heading": "સંસાધન નીતિ સંપાદિત કરો",
- // "resource-policies.edit.page.failure.content": "An error occurred while editing the resource policy.",
"resource-policies.edit.page.failure.content": "સંસાધન નીતિ સંપાદિત કરતી વખતે ભૂલ આવી.",
- // "resource-policies.edit.page.target-failure.content": "An error occurred while editing the target (ePerson or group) of the resource policy.",
"resource-policies.edit.page.target-failure.content": "સંસાધન નીતિના લક્ષ્ય (ePerson અથવા જૂથ) સંપાદિત કરતી વખતે ભૂલ આવી.",
- // "resource-policies.edit.page.other-failure.content": "An error occurred while editing the resource policy. The target (ePerson or group) has been successfully updated.",
"resource-policies.edit.page.other-failure.content": "સંસાધન નીતિ સંપાદિત કરતી વખતે ભૂલ આવી. લક્ષ્ય (ePerson અથવા જૂથ) સફળતાપૂર્વક અપડેટ થયું છે.",
- // "resource-policies.edit.page.success.content": "Operation successful",
"resource-policies.edit.page.success.content": "ક્રિયા સફળતાપૂર્વક પૂર્ણ થઈ",
- // "resource-policies.edit.page.title": "Edit resource policy",
"resource-policies.edit.page.title": "સંસાધન નીતિ સંપાદિત કરો",
- // "resource-policies.form.action-type.label": "Select the action type",
"resource-policies.form.action-type.label": "ક્રિયા પ્રકાર પસંદ કરો",
- // "resource-policies.form.action-type.required": "You must select the resource policy action.",
"resource-policies.form.action-type.required": "તમારે સંસાધન નીતિ ક્રિયા પસંદ કરવી પડશે.",
- // "resource-policies.form.eperson-group-list.label": "The eperson or group that will be granted the permission",
"resource-policies.form.eperson-group-list.label": "ePerson અથવા જૂથ જેને પરવાનગી આપવામાં આવશે",
- // "resource-policies.form.eperson-group-list.select.btn": "Select",
"resource-policies.form.eperson-group-list.select.btn": "પસંદ કરો",
- // "resource-policies.form.eperson-group-list.tab.eperson": "Search for an ePerson",
- // TODO Source message changed - Revise the translation
"resource-policies.form.eperson-group-list.tab.eperson": "ePerson માટે શોધો",
- // "resource-policies.form.eperson-group-list.tab.group": "Search for a group",
"resource-policies.form.eperson-group-list.tab.group": "જૂથ માટે શોધો",
- // "resource-policies.form.eperson-group-list.table.headers.action": "Action",
"resource-policies.form.eperson-group-list.table.headers.action": "ક્રિયા",
- // "resource-policies.form.eperson-group-list.table.headers.id": "ID",
"resource-policies.form.eperson-group-list.table.headers.id": "ID",
- // "resource-policies.form.eperson-group-list.table.headers.name": "Name",
"resource-policies.form.eperson-group-list.table.headers.name": "નામ",
- // "resource-policies.form.eperson-group-list.modal.header": "Cannot change type",
"resource-policies.form.eperson-group-list.modal.header": "પ્રકાર બદલી શકાતો નથી",
- // "resource-policies.form.eperson-group-list.modal.text1.toGroup": "It is not possible to replace an ePerson with a group.",
"resource-policies.form.eperson-group-list.modal.text1.toGroup": "ePerson ને જૂથ સાથે બદલી શકાતું નથી.",
- // "resource-policies.form.eperson-group-list.modal.text1.toEPerson": "It is not possible to replace a group with an ePerson.",
"resource-policies.form.eperson-group-list.modal.text1.toEPerson": "જૂથને ePerson સાથે બદલી શકાતું નથી.",
- // "resource-policies.form.eperson-group-list.modal.text2": "Delete the current resource policy and create a new one with the desired type.",
"resource-policies.form.eperson-group-list.modal.text2": "વાંછિત પ્રકાર સાથે નવી નીતિ બનાવવા માટે વર્તમાન સંસાધન નીતિ કાઢી નાખો.",
- // "resource-policies.form.eperson-group-list.modal.close": "Ok",
"resource-policies.form.eperson-group-list.modal.close": "બરાબર",
- // "resource-policies.form.date.end.label": "End Date",
"resource-policies.form.date.end.label": "અંતિમ તારીખ",
- // "resource-policies.form.date.start.label": "Start Date",
"resource-policies.form.date.start.label": "પ્રારંભ તારીખ",
- // "resource-policies.form.description.label": "Description",
"resource-policies.form.description.label": "વર્ણન",
- // "resource-policies.form.name.label": "Name",
"resource-policies.form.name.label": "નામ",
- // "resource-policies.form.name.hint": "Max 30 characters",
"resource-policies.form.name.hint": "મહત્તમ 30 અક્ષરો",
- // "resource-policies.form.policy-type.label": "Select the policy type",
"resource-policies.form.policy-type.label": "નીતિનો પ્રકાર પસંદ કરો",
- // "resource-policies.form.policy-type.required": "You must select the resource policy type.",
"resource-policies.form.policy-type.required": "તમારે સંસાધન નીતિનો પ્રકાર પસંદ કરવો પડશે.",
- // "resource-policies.table.headers.action": "Action",
"resource-policies.table.headers.action": "ક્રિયા",
- // "resource-policies.table.headers.date.end": "End Date",
"resource-policies.table.headers.date.end": "અંતિમ તારીખ",
- // "resource-policies.table.headers.date.start": "Start Date",
"resource-policies.table.headers.date.start": "પ્રારંભ તારીખ",
- // "resource-policies.table.headers.edit": "Edit",
"resource-policies.table.headers.edit": "સંપાદિત કરો",
- // "resource-policies.table.headers.edit.group": "Edit group",
"resource-policies.table.headers.edit.group": "જૂથ સંપાદિત કરો",
- // "resource-policies.table.headers.edit.policy": "Edit policy",
"resource-policies.table.headers.edit.policy": "નીતિ સંપાદિત કરો",
- // "resource-policies.table.headers.eperson": "EPerson",
"resource-policies.table.headers.eperson": "ePerson",
- // "resource-policies.table.headers.group": "Group",
"resource-policies.table.headers.group": "જૂથ",
- // "resource-policies.table.headers.select-all": "Select all",
"resource-policies.table.headers.select-all": "બધા પસંદ કરો",
- // "resource-policies.table.headers.deselect-all": "Deselect all",
"resource-policies.table.headers.deselect-all": "બધા પસંદ ન કરો",
- // "resource-policies.table.headers.select": "Select",
"resource-policies.table.headers.select": "પસંદ કરો",
- // "resource-policies.table.headers.deselect": "Deselect",
"resource-policies.table.headers.deselect": "પસંદ ન કરો",
- // "resource-policies.table.headers.id": "ID",
"resource-policies.table.headers.id": "ID",
- // "resource-policies.table.headers.name": "Name",
"resource-policies.table.headers.name": "નામ",
- // "resource-policies.table.headers.policyType": "type",
"resource-policies.table.headers.policyType": "પ્રકાર",
- // "resource-policies.table.headers.title.for.bitstream": "Policies for Bitstream",
"resource-policies.table.headers.title.for.bitstream": "બિટસ્ટ્રીમ માટેની નીતિઓ",
- // "resource-policies.table.headers.title.for.bundle": "Policies for Bundle",
"resource-policies.table.headers.title.for.bundle": "બંડલ માટેની નીતિઓ",
- // "resource-policies.table.headers.title.for.item": "Policies for Item",
"resource-policies.table.headers.title.for.item": "આઇટમ માટેની નીતિઓ",
- // "resource-policies.table.headers.title.for.community": "Policies for Community",
"resource-policies.table.headers.title.for.community": "સમુદાય માટેની નીતિઓ",
- // "resource-policies.table.headers.title.for.collection": "Policies for Collection",
"resource-policies.table.headers.title.for.collection": "સંગ્રહ માટેની નીતિઓ",
- // "RELATION.Person.researchoutputs.search.results.head": "Research Output",
- // TODO New key - Add a translation
- "RELATION.Person.researchoutputs.search.results.head": "Research Output",
-
- // "RELATION.Person.projects.search.results.head": "Projects",
- // TODO New key - Add a translation
- "RELATION.Person.projects.search.results.head": "Projects",
-
- // "RELATION.Project.researchoutputs.search.results.head": "Publications",
- // TODO New key - Add a translation
- "RELATION.Project.researchoutputs.search.results.head": "Publications",
-
- // "RELATION.Project.fundings.search.results.head": "Fundings",
- // TODO New key - Add a translation
- "RELATION.Project.fundings.search.results.head": "Fundings",
-
- // "RELATION.Project.projects.search.results.head": "Projects",
- // TODO New key - Add a translation
- "RELATION.Project.projects.search.results.head": "Projects",
-
- // "RELATION.OrgUnit.organizations.search.results.head": "Organizations",
- // TODO New key - Add a translation
- "RELATION.OrgUnit.organizations.search.results.head": "Organizations",
-
- // "RELATION.OrgUnit.rppublications.search.results.head": "Researchers Publications",
- // TODO New key - Add a translation
- "RELATION.OrgUnit.rppublications.search.results.head": "Researchers Publications",
-
- // "RELATION.OrgUnit.publications.search.results.head": "Publications",
- // TODO New key - Add a translation
- "RELATION.OrgUnit.publications.search.results.head": "Publications",
-
- // "RELATION.OrgUnit.rpprojects.search.results.head": "Researchers Projects",
- // TODO New key - Add a translation
- "RELATION.OrgUnit.rpprojects.search.results.head": "Researchers Projects",
-
- // "RELATION.OrgUnit.projects.search.results.head": "Projects",
- // TODO New key - Add a translation
- "RELATION.OrgUnit.projects.search.results.head": "Projects",
-
- // "RELATION.Project.researchoutputs.search.results.head": "Publications",
- // TODO New key - Add a translation
- "RELATION.Project.researchoutputs.search.results.head": "Publications",
-
- // "RELATION.OrgUnit.people.search.results.head": "People",
- // TODO New key - Add a translation
- "RELATION.OrgUnit.people.search.results.head": "People",
-
- // "root.skip-to-content": "Skip to main content",
"root.skip-to-content": "મુખ્ય સામગ્રી પર જાઓ",
- // "search.description": "",
"search.description": "",
- // "search.switch-configuration.title": "Show",
"search.switch-configuration.title": "બતાવો",
- // "search.title": "Search",
"search.title": "શોધ",
- // "search.breadcrumbs": "Search",
"search.breadcrumbs": "શોધ",
- // "search.search-form.placeholder": "Search the repository ...",
"search.search-form.placeholder": "રિપોઝિટરીમાં શોધો ...",
- // "search.filters.remove": "Remove filter of type {{ type }} with value {{ value }}",
"search.filters.remove": "પ્રકાર {{ type }} સાથેનું મૂલ્ય {{ value }} દૂર કરો",
- // "search.filters.applied.f.title": "Title",
"search.filters.applied.f.title": "શીર્ષક",
- // "search.filters.applied.f.author": "Author",
"search.filters.applied.f.author": "લેખક",
- // "search.filters.applied.f.dateIssued.max": "End date",
"search.filters.applied.f.dateIssued.max": "અંતિમ તારીખ",
- // "search.filters.applied.f.dateIssued.min": "Start date",
"search.filters.applied.f.dateIssued.min": "પ્રારંભ તારીખ",
- // "search.filters.applied.f.dateSubmitted": "Date submitted",
"search.filters.applied.f.dateSubmitted": "સબમિટ તારીખ",
- // "search.filters.applied.f.discoverable": "Non-discoverable",
"search.filters.applied.f.discoverable": "નોન-ડિસ્કવરેબલ",
- // "search.filters.applied.f.entityType": "Item Type",
"search.filters.applied.f.entityType": "આઇટમ પ્રકાર",
- // "search.filters.applied.f.has_content_in_original_bundle": "Has files",
"search.filters.applied.f.has_content_in_original_bundle": "ફાઇલો છે",
- // "search.filters.applied.f.original_bundle_filenames": "File name",
"search.filters.applied.f.original_bundle_filenames": "ફાઇલ નામ",
- // "search.filters.applied.f.original_bundle_descriptions": "File description",
"search.filters.applied.f.original_bundle_descriptions": "ફાઇલ વર્ણન",
- // "search.filters.applied.f.has_geospatial_metadata": "Has geographical location",
+
"search.filters.applied.f.has_geospatial_metadata": "ભૌગોલિક સ્થાન છે",
- // "search.filters.applied.f.itemtype": "Type",
"search.filters.applied.f.itemtype": "પ્રકાર",
- // "search.filters.applied.f.namedresourcetype": "Status",
"search.filters.applied.f.namedresourcetype": "સ્થિતિ",
- // "search.filters.applied.f.subject": "Subject",
"search.filters.applied.f.subject": "વિષય",
- // "search.filters.applied.f.submitter": "Submitter",
"search.filters.applied.f.submitter": "સબમિટર",
- // "search.filters.applied.f.jobTitle": "Job Title",
"search.filters.applied.f.jobTitle": "નોકરીનું શીર્ષક",
- // "search.filters.applied.f.birthDate.max": "End birth date",
"search.filters.applied.f.birthDate.max": "અંતિમ જન્મ તારીખ",
- // "search.filters.applied.f.birthDate.min": "Start birth date",
"search.filters.applied.f.birthDate.min": "પ્રારંભ જન્મ તારીખ",
- // "search.filters.applied.f.supervisedBy": "Supervised by",
"search.filters.applied.f.supervisedBy": "સુપરવિઝન દ્વારા",
- // "search.filters.applied.f.withdrawn": "Withdrawn",
"search.filters.applied.f.withdrawn": "પાછું ખેંચાયેલ",
- // "search.filters.applied.operator.equals": "",
"search.filters.applied.operator.equals": "",
- // "search.filters.applied.operator.notequals": " not equals",
"search.filters.applied.operator.notequals": " સમાન નથી",
- // "search.filters.applied.operator.authority": "",
"search.filters.applied.operator.authority": "",
- // "search.filters.applied.operator.notauthority": " not authority",
"search.filters.applied.operator.notauthority": " અધિકૃત નથી",
- // "search.filters.applied.operator.contains": " contains",
"search.filters.applied.operator.contains": " સમાવે છે",
- // "search.filters.applied.operator.notcontains": " not contains",
"search.filters.applied.operator.notcontains": " સમાવે નથી",
- // "search.filters.applied.operator.query": "",
"search.filters.applied.operator.query": "",
- // "search.filters.applied.f.point": "Coordinates",
"search.filters.applied.f.point": "સ્થાનાંક",
- // "search.filters.filter.title.head": "Title",
"search.filters.filter.title.head": "શીર્ષક",
- // "search.filters.filter.title.placeholder": "Title",
"search.filters.filter.title.placeholder": "શીર્ષક",
- // "search.filters.filter.title.label": "Search Title",
"search.filters.filter.title.label": "શીર્ષક શોધો",
- // "search.filters.filter.author.head": "Author",
"search.filters.filter.author.head": "લેખક",
- // "search.filters.filter.author.placeholder": "Author name",
"search.filters.filter.author.placeholder": "લેખકનું નામ",
- // "search.filters.filter.author.label": "Search author name",
"search.filters.filter.author.label": "લેખકનું નામ શોધો",
- // "search.filters.filter.birthDate.head": "Birth Date",
"search.filters.filter.birthDate.head": "જન્મ તારીખ",
- // "search.filters.filter.birthDate.placeholder": "Birth Date",
"search.filters.filter.birthDate.placeholder": "જન્મ તારીખ",
- // "search.filters.filter.birthDate.label": "Search birth date",
"search.filters.filter.birthDate.label": "જન્મ તારીખ શોધો",
- // "search.filters.filter.collapse": "Collapse filter",
"search.filters.filter.collapse": "ફિલ્ટર સંકોચો",
- // "search.filters.filter.creativeDatePublished.head": "Date Published",
"search.filters.filter.creativeDatePublished.head": "પ્રકાશિત તારીખ",
- // "search.filters.filter.creativeDatePublished.placeholder": "Date Published",
"search.filters.filter.creativeDatePublished.placeholder": "પ્રકાશિત તારીખ",
- // "search.filters.filter.creativeDatePublished.label": "Search date published",
"search.filters.filter.creativeDatePublished.label": "પ્રકાશિત તારીખ શોધો",
- // "search.filters.filter.creativeDatePublished.min.label": "Start",
"search.filters.filter.creativeDatePublished.min.label": "પ્રારંભ",
- // "search.filters.filter.creativeDatePublished.max.label": "End",
"search.filters.filter.creativeDatePublished.max.label": "અંત",
- // "search.filters.filter.creativeWorkEditor.head": "Editor",
"search.filters.filter.creativeWorkEditor.head": "સંપાદક",
- // "search.filters.filter.creativeWorkEditor.placeholder": "Editor",
"search.filters.filter.creativeWorkEditor.placeholder": "સંપાદક",
- // "search.filters.filter.creativeWorkEditor.label": "Search editor",
"search.filters.filter.creativeWorkEditor.label": "સંપાદક શોધો",
- // "search.filters.filter.creativeWorkKeywords.head": "Subject",
"search.filters.filter.creativeWorkKeywords.head": "વિષય",
- // "search.filters.filter.creativeWorkKeywords.placeholder": "Subject",
"search.filters.filter.creativeWorkKeywords.placeholder": "વિષય",
- // "search.filters.filter.creativeWorkKeywords.label": "Search subject",
"search.filters.filter.creativeWorkKeywords.label": "વિષય શોધો",
- // "search.filters.filter.creativeWorkPublisher.head": "Publisher",
"search.filters.filter.creativeWorkPublisher.head": "પ્રકાશક",
- // "search.filters.filter.creativeWorkPublisher.placeholder": "Publisher",
"search.filters.filter.creativeWorkPublisher.placeholder": "પ્રકાશક",
- // "search.filters.filter.creativeWorkPublisher.label": "Search publisher",
"search.filters.filter.creativeWorkPublisher.label": "પ્રકાશક શોધો",
- // "search.filters.filter.dateIssued.head": "Date",
"search.filters.filter.dateIssued.head": "તારીખ",
- // "search.filters.filter.dateIssued.max.placeholder": "Maximum Date",
"search.filters.filter.dateIssued.max.placeholder": "મહત્તમ તારીખ",
- // "search.filters.filter.dateIssued.max.label": "End",
"search.filters.filter.dateIssued.max.label": "અંત",
- // "search.filters.filter.dateIssued.min.placeholder": "Minimum Date",
"search.filters.filter.dateIssued.min.placeholder": "ન્યૂનતમ તારીખ",
- // "search.filters.filter.dateIssued.min.label": "Start",
"search.filters.filter.dateIssued.min.label": "પ્રારંભ",
- // "search.filters.filter.dateSubmitted.head": "Date submitted",
"search.filters.filter.dateSubmitted.head": "સબમિટ તારીખ",
- // "search.filters.filter.dateSubmitted.placeholder": "Date submitted",
"search.filters.filter.dateSubmitted.placeholder": "સબમિટ તારીખ",
- // "search.filters.filter.dateSubmitted.label": "Search date submitted",
"search.filters.filter.dateSubmitted.label": "સબમિટ તારીખ શોધો",
- // "search.filters.filter.discoverable.head": "Non-discoverable",
"search.filters.filter.discoverable.head": "નોન-ડિસ્કવરેબલ",
- // "search.filters.filter.withdrawn.head": "Withdrawn",
"search.filters.filter.withdrawn.head": "પાછું ખેંચાયેલ",
- // "search.filters.filter.entityType.head": "Item Type",
"search.filters.filter.entityType.head": "આઇટમ પ્રકાર",
- // "search.filters.filter.entityType.placeholder": "Item Type",
"search.filters.filter.entityType.placeholder": "આઇટમ પ્રકાર",
- // "search.filters.filter.entityType.label": "Search item type",
"search.filters.filter.entityType.label": "આઇટમ પ્રકાર શોધો",
- // "search.filters.filter.expand": "Expand filter",
"search.filters.filter.expand": "ફિલ્ટર વિસ્તારો",
- // "search.filters.filter.has_content_in_original_bundle.head": "Has files",
"search.filters.filter.has_content_in_original_bundle.head": "ફાઇલો છે",
- // "search.filters.filter.original_bundle_filenames.head": "File name",
"search.filters.filter.original_bundle_filenames.head": "ફાઇલ નામ",
- // "search.filters.filter.has_geospatial_metadata.head": "Has geographical location",
"search.filters.filter.has_geospatial_metadata.head": "ભૌગોલિક સ્થાન છે",
- // "search.filters.filter.original_bundle_filenames.placeholder": "File name",
"search.filters.filter.original_bundle_filenames.placeholder": "ફાઇલ નામ",
- // "search.filters.filter.original_bundle_filenames.label": "Search File name",
"search.filters.filter.original_bundle_filenames.label": "ફાઇલ નામ શોધો",
- // "search.filters.filter.original_bundle_descriptions.head": "File description",
"search.filters.filter.original_bundle_descriptions.head": "ફાઇલ વર્ણન",
- // "search.filters.filter.original_bundle_descriptions.placeholder": "File description",
"search.filters.filter.original_bundle_descriptions.placeholder": "ફાઇલ વર્ણન",
- // "search.filters.filter.original_bundle_descriptions.label": "Search File description",
"search.filters.filter.original_bundle_descriptions.label": "ફાઇલ વર્ણન શોધો",
- // "search.filters.filter.itemtype.head": "Type",
"search.filters.filter.itemtype.head": "પ્રકાર",
- // "search.filters.filter.itemtype.placeholder": "Type",
"search.filters.filter.itemtype.placeholder": "પ્રકાર",
- // "search.filters.filter.itemtype.label": "Search type",
"search.filters.filter.itemtype.label": "પ્રકાર શોધો",
- // "search.filters.filter.jobTitle.head": "Job Title",
"search.filters.filter.jobTitle.head": "નોકરીનું શીર્ષક",
- // "search.filters.filter.jobTitle.placeholder": "Job Title",
"search.filters.filter.jobTitle.placeholder": "નોકરીનું શીર્ષક",
- // "search.filters.filter.jobTitle.label": "Search job title",
"search.filters.filter.jobTitle.label": "નોકરીનું શીર્ષક શોધો",
- // "search.filters.filter.knowsLanguage.head": "Known language",
"search.filters.filter.knowsLanguage.head": "જાણીતી ભાષા",
- // "search.filters.filter.knowsLanguage.placeholder": "Known language",
"search.filters.filter.knowsLanguage.placeholder": "જાણીતી ભાષા",
- // "search.filters.filter.knowsLanguage.label": "Search known language",
"search.filters.filter.knowsLanguage.label": "જાણીતી ભાષા શોધો",
- // "search.filters.filter.namedresourcetype.head": "Status",
"search.filters.filter.namedresourcetype.head": "સ્થિતિ",
- // "search.filters.filter.namedresourcetype.placeholder": "Status",
"search.filters.filter.namedresourcetype.placeholder": "સ્થિતિ",
- // "search.filters.filter.namedresourcetype.label": "Search status",
"search.filters.filter.namedresourcetype.label": "સ્થિતિ શોધો",
- // "search.filters.filter.objectpeople.head": "People",
"search.filters.filter.objectpeople.head": "લોકો",
- // "search.filters.filter.objectpeople.placeholder": "People",
"search.filters.filter.objectpeople.placeholder": "લોકો",
- // "search.filters.filter.objectpeople.label": "Search people",
"search.filters.filter.objectpeople.label": "લોકો શોધો",
- // "search.filters.filter.organizationAddressCountry.head": "Country",
"search.filters.filter.organizationAddressCountry.head": "દેશ",
- // "search.filters.filter.organizationAddressCountry.placeholder": "Country",
"search.filters.filter.organizationAddressCountry.placeholder": "દેશ",
- // "search.filters.filter.organizationAddressCountry.label": "Search country",
"search.filters.filter.organizationAddressCountry.label": "દેશ શોધો",
- // "search.filters.filter.organizationAddressLocality.head": "City",
"search.filters.filter.organizationAddressLocality.head": "શહેર",
- // "search.filters.filter.organizationAddressLocality.placeholder": "City",
"search.filters.filter.organizationAddressLocality.placeholder": "શહેર",
- // "search.filters.filter.organizationAddressLocality.label": "Search city",
"search.filters.filter.organizationAddressLocality.label": "શહેર શોધો",
- // "search.filters.filter.organizationFoundingDate.head": "Date Founded",
"search.filters.filter.organizationFoundingDate.head": "સ્થાપના તારીખ",
- // "search.filters.filter.organizationFoundingDate.placeholder": "Date Founded",
"search.filters.filter.organizationFoundingDate.placeholder": "સ્થાપના તારીખ",
- // "search.filters.filter.organizationFoundingDate.label": "Search date founded",
"search.filters.filter.organizationFoundingDate.label": "સ્થાપના તારીખ શોધો",
- // "search.filters.filter.organizationFoundingDate.min.label": "Start",
- // TODO New key - Add a translation
- "search.filters.filter.organizationFoundingDate.min.label": "Start",
-
- // "search.filters.filter.organizationFoundingDate.max.label": "End",
- // TODO New key - Add a translation
- "search.filters.filter.organizationFoundingDate.max.label": "End",
-
- // "search.filters.filter.scope.head": "Scope",
"search.filters.filter.scope.head": "વિસ્તાર",
- // "search.filters.filter.scope.placeholder": "Scope filter",
"search.filters.filter.scope.placeholder": "વિસ્તાર ફિલ્ટર",
- // "search.filters.filter.scope.label": "Search scope filter",
"search.filters.filter.scope.label": "વિસ્તાર ફિલ્ટર શોધો",
- // "search.filters.filter.show-less": "Collapse",
"search.filters.filter.show-less": "સંકોચો",
- // "search.filters.filter.show-more": "Show more",
"search.filters.filter.show-more": "વધુ બતાવો",
- // "search.filters.filter.subject.head": "Subject",
"search.filters.filter.subject.head": "વિષય",
- // "search.filters.filter.subject.placeholder": "Subject",
"search.filters.filter.subject.placeholder": "વિષય",
- // "search.filters.filter.subject.label": "Search subject",
"search.filters.filter.subject.label": "વિષય શોધો",
- // "search.filters.filter.submitter.head": "Submitter",
"search.filters.filter.submitter.head": "સબમિટર",
- // "search.filters.filter.submitter.placeholder": "Submitter",
"search.filters.filter.submitter.placeholder": "સબમિટર",
- // "search.filters.filter.submitter.label": "Search submitter",
"search.filters.filter.submitter.label": "સબમિટર શોધો",
- // "search.filters.filter.show-tree": "Browse {{ name }} tree",
"search.filters.filter.show-tree": "{{ name }} વૃક્ષ બ્રાઉઝ કરો",
- // "search.filters.filter.funding.head": "Funding",
"search.filters.filter.funding.head": "ફંડિંગ",
- // "search.filters.filter.funding.placeholder": "Funding",
"search.filters.filter.funding.placeholder": "ફંડિંગ",
- // "search.filters.filter.supervisedBy.head": "Supervised By",
"search.filters.filter.supervisedBy.head": "સુપરવિઝન દ્વારા",
- // "search.filters.filter.supervisedBy.placeholder": "Supervised By",
"search.filters.filter.supervisedBy.placeholder": "સુપરવિઝન દ્વારા",
- // "search.filters.filter.supervisedBy.label": "Search Supervised By",
"search.filters.filter.supervisedBy.label": "સુપરવિઝન દ્વારા શોધો",
- // "search.filters.filter.access_status.head": "Access type",
"search.filters.filter.access_status.head": "ઍક્સેસ પ્રકાર",
- // "search.filters.filter.access_status.placeholder": "Access type",
"search.filters.filter.access_status.placeholder": "ઍક્સેસ પ્રકાર",
- // "search.filters.filter.access_status.label": "Search by access type",
"search.filters.filter.access_status.label": "ઍક્સેસ પ્રકાર દ્વારા શોધો",
- // "search.filters.entityType.JournalIssue": "Journal Issue",
"search.filters.entityType.JournalIssue": "જર્નલ ઇશ્યુ",
- // "search.filters.entityType.JournalVolume": "Journal Volume",
"search.filters.entityType.JournalVolume": "જર્નલ વોલ્યુમ",
- // "search.filters.entityType.OrgUnit": "Organizational Unit",
"search.filters.entityType.OrgUnit": "સંસ્થાકીય એકમ",
- // "search.filters.entityType.Person": "Person",
"search.filters.entityType.Person": "વ્યક્તિ",
- // "search.filters.entityType.Project": "Project",
"search.filters.entityType.Project": "પ્રોજેક્ટ",
- // "search.filters.entityType.Publication": "Publication",
"search.filters.entityType.Publication": "પ્રકાશન",
- // "search.filters.has_content_in_original_bundle.true": "Yes",
"search.filters.has_content_in_original_bundle.true": "હા",
- // "search.filters.has_content_in_original_bundle.false": "No",
"search.filters.has_content_in_original_bundle.false": "ના",
- // "search.filters.has_geospatial_metadata.true": "Yes",
"search.filters.has_geospatial_metadata.true": "હા",
- // "search.filters.has_geospatial_metadata.false": "No",
"search.filters.has_geospatial_metadata.false": "ના",
- // "search.filters.discoverable.true": "No",
"search.filters.discoverable.true": "ના",
- // "search.filters.discoverable.false": "Yes",
"search.filters.discoverable.false": "હા",
- // "search.filters.namedresourcetype.Archived": "Archived",
"search.filters.namedresourcetype.Archived": "આર્કાઇવ્ડ",
- // "search.filters.namedresourcetype.Validation": "Validation",
"search.filters.namedresourcetype.Validation": "માન્યતા",
- // "search.filters.namedresourcetype.Waiting for Controller": "Waiting for reviewer",
"search.filters.namedresourcetype.Waiting for Controller": "સમીક્ષકની રાહ જોવી",
- // "search.filters.namedresourcetype.Workflow": "Workflow",
"search.filters.namedresourcetype.Workflow": "વર્કફ્લો",
- // "search.filters.namedresourcetype.Workspace": "Workspace",
"search.filters.namedresourcetype.Workspace": "વર્કસ્પેસ",
- // "search.filters.withdrawn.true": "Yes",
"search.filters.withdrawn.true": "હા",
- // "search.filters.withdrawn.false": "No",
"search.filters.withdrawn.false": "ના",
- // "search.filters.head": "Filters",
"search.filters.head": "ફિલ્ટર્સ",
- // "search.filters.reset": "Reset filters",
"search.filters.reset": "ફિલ્ટર્સ રીસેટ કરો",
- // "search.filters.search.submit": "Submit",
"search.filters.search.submit": "સબમિટ કરો",
- // "search.filters.operator.equals.text": "Equals",
"search.filters.operator.equals.text": "સમાન છે",
- // "search.filters.operator.notequals.text": "Not Equals",
"search.filters.operator.notequals.text": "સમાન નથી",
- // "search.filters.operator.authority.text": "Authority",
"search.filters.operator.authority.text": "અધિકૃત",
- // "search.filters.operator.notauthority.text": "Not Authority",
"search.filters.operator.notauthority.text": "અધિકૃત નથી",
- // "search.filters.operator.contains.text": "Contains",
"search.filters.operator.contains.text": "સમાવે છે",
- // "search.filters.operator.notcontains.text": "Not Contains",
"search.filters.operator.notcontains.text": "સમાવે નથી",
- // "search.filters.operator.query.text": "Query",
"search.filters.operator.query.text": "ક્વેરી",
- // "search.form.search": "Search",
"search.form.search": "શોધો",
- // "search.form.search_dspace": "All repository",
"search.form.search_dspace": "બધા રિપોઝિટરી",
- // "search.form.scope.all": "All of DSpace",
"search.form.scope.all": "બધા DSpace",
- // "search.results.head": "Search Results",
"search.results.head": "શોધ પરિણામો",
- // "search.results.no-results": "Your search returned no results. Having trouble finding what you're looking for? Try putting",
"search.results.no-results": "તમારી શોધે કોઈ પરિણામ આપ્યું નથી. તમે જે શોધી રહ્યા છો તે શોધવામાં મુશ્કેલી છે? પ્રયાસ કરો",
- // "search.results.no-results-link": "quotes around it",
"search.results.no-results-link": "તેની આસપાસ અવતરણ ચિહ્નો મૂકો",
- // "search.results.empty": "Your search returned no results.",
"search.results.empty": "તમારી શોધે કોઈ પરિણામ આપ્યું નથી.",
- // "search.results.geospatial-map.empty": "No results on this page with geospatial locations",
"search.results.geospatial-map.empty": "આ પૃષ્ઠ પર કોઈ ભૌગોલિક સ્થાન સાથેના પરિણામો નથી",
- // "search.results.view-result": "View",
"search.results.view-result": "જુઓ",
- // "search.results.response.500": "An error occurred during query execution, please try again later",
"search.results.response.500": "ક્વેરી અમલમાં ભૂલ આવી, કૃપા કરીને પછીથી ફરી પ્રયાસ કરો",
- // "default.search.results.head": "Search Results",
"default.search.results.head": "શોધ પરિણામો",
- // "default-relationships.search.results.head": "Search Results",
"default-relationships.search.results.head": "શોધ પરિણામો",
- // "search.sidebar.close": "Back to results",
"search.sidebar.close": "પરિણામો પર પાછા જાઓ",
- // "search.sidebar.filters.title": "Filters",
"search.sidebar.filters.title": "ફિલ્ટર્સ",
- // "search.sidebar.open": "Search Tools",
"search.sidebar.open": "શોધ સાધનો",
- // "search.sidebar.results": "results",
"search.sidebar.results": "પરિણામો",
- // "search.sidebar.settings.rpp": "Results per page",
"search.sidebar.settings.rpp": "પ્રતિ પૃષ્ઠ પરિણામો",
- // "search.sidebar.settings.sort-by": "Sort By",
"search.sidebar.settings.sort-by": "દ્વારા ગોઠવો",
- // "search.sidebar.advanced-search.title": "Advanced Search",
"search.sidebar.advanced-search.title": "ઉન્નત શોધ",
- // "search.sidebar.advanced-search.filter-by": "Filter by",
"search.sidebar.advanced-search.filter-by": "દ્વારા ફિલ્ટર કરો",
- // "search.sidebar.advanced-search.filters": "Filters",
"search.sidebar.advanced-search.filters": "ફિલ્ટર્સ",
- // "search.sidebar.advanced-search.operators": "Operators",
"search.sidebar.advanced-search.operators": "ઑપરેટર્સ",
- // "search.sidebar.advanced-search.add": "Add",
"search.sidebar.advanced-search.add": "ઉમેરો",
- // "search.sidebar.settings.title": "Settings",
"search.sidebar.settings.title": "સેટિંગ્સ",
- // "search.view-switch.show-detail": "Show detail",
"search.view-switch.show-detail": "વિગત બતાવો",
- // "search.view-switch.show-grid": "Show as grid",
"search.view-switch.show-grid": "ગ્રિડ તરીકે બતાવો",
- // "search.view-switch.show-list": "Show as list",
"search.view-switch.show-list": "યાદી તરીકે બતાવો",
- // "search.view-switch.show-geospatialMap": "Show as map",
"search.view-switch.show-geospatialMap": "નકશા તરીકે બતાવો",
- // "selectable-list-item-control.deselect": "Deselect item",
"selectable-list-item-control.deselect": "આઇટમ પસંદ ન કરો",
- // "selectable-list-item-control.select": "Select item",
"selectable-list-item-control.select": "આઇટમ પસંદ કરો",
- // "sorting.ASC": "Ascending",
"sorting.ASC": "આરોહી",
- // "sorting.DESC": "Descending",
"sorting.DESC": "અવરોહી",
- // "sorting.dc.title.ASC": "Title Ascending",
"sorting.dc.title.ASC": "શીર્ષક આરોહી",
- // "sorting.dc.title.DESC": "Title Descending",
"sorting.dc.title.DESC": "શીર્ષક અવરોહી",
- // "sorting.score.ASC": "Least Relevant",
"sorting.score.ASC": "ઓછું સંબંધિત",
- // "sorting.score.DESC": "Most Relevant",
"sorting.score.DESC": "વધુ સંબંધિત",
- // "sorting.dc.date.issued.ASC": "Date Issued Ascending",
"sorting.dc.date.issued.ASC": "તારીખ આરોહી જારી",
- // "sorting.dc.date.issued.DESC": "Date Issued Descending",
"sorting.dc.date.issued.DESC": "તારીખ અવરોહી જારી",
- // "sorting.dc.date.accessioned.ASC": "Accessioned Date Ascending",
"sorting.dc.date.accessioned.ASC": "ઍક્સેશન તારીખ આરોહી",
- // "sorting.dc.date.accessioned.DESC": "Accessioned Date Descending",
"sorting.dc.date.accessioned.DESC": "ઍક્સેશન તારીખ અવરોહી",
- // "sorting.lastModified.ASC": "Last modified Ascending",
"sorting.lastModified.ASC": "છેલ્લે ફેરફાર આરોહી",
- // "sorting.lastModified.DESC": "Last modified Descending",
"sorting.lastModified.DESC": "છેલ્લે ફેરફાર અવરોહી",
- // "sorting.person.familyName.ASC": "Surname Ascending",
"sorting.person.familyName.ASC": "અટક આરોહી",
- // "sorting.person.familyName.DESC": "Surname Descending",
"sorting.person.familyName.DESC": "અટક અવરોહી",
- // "sorting.person.givenName.ASC": "Name Ascending",
"sorting.person.givenName.ASC": "નામ આરોહી",
- // "sorting.person.givenName.DESC": "Name Descending",
"sorting.person.givenName.DESC": "નામ અવરોહી",
- // "sorting.person.birthDate.ASC": "Birth Date Ascending",
"sorting.person.birthDate.ASC": "જન્મ તારીખ આરોહી",
- // "sorting.person.birthDate.DESC": "Birth Date Descending",
"sorting.person.birthDate.DESC": "જન્મ તારીખ અવરોહી",
- // "sorting.ownerselection.ASC": "Owner Relevance Ascending",
- // TODO New key - Add a translation
- "sorting.ownerselection.ASC": "Owner Relevance Ascending",
-
- // "sorting.ownerselection.DESC": "Owner Relevance Descending",
- // TODO New key - Add a translation
- "sorting.ownerselection.DESC": "Owner Relevance Descending",
-
- // "statistics.title": "Statistics",
"statistics.title": "આંકડા",
- // "statistics.header": "Statistics for {{ scope }}",
"statistics.header": "{{ scope }} માટેના આંકડા",
- // "statistics.breadcrumbs": "Statistics",
"statistics.breadcrumbs": "આંકડા",
- // "statistics.page.no-data": "No data available",
"statistics.page.no-data": "કોઈ ડેટા ઉપલબ્ધ નથી",
- // "statistics.table.no-data": "No data available",
"statistics.table.no-data": "કોઈ ડેટા ઉપલબ્ધ નથી",
- // "statistics.table.title.TotalVisits": "Total visits",
"statistics.table.title.TotalVisits": "કુલ મુલાકાતો",
- // "statistics.table.title.TotalVisitsPerMonth": "Total visits per month",
"statistics.table.title.TotalVisitsPerMonth": "પ્રતિ મહિનો કુલ મુલાકાતો",
- // "statistics.table.title.TotalDownloads": "File Visits",
"statistics.table.title.TotalDownloads": "ફાઇલ મુલાકાતો",
- // "statistics.table.title.TopCountries": "Top country views",
"statistics.table.title.TopCountries": "ટોપ દેશ દૃશ્યો",
- // "statistics.table.title.TopCities": "Top city views",
"statistics.table.title.TopCities": "ટોપ શહેર દૃશ્યો",
- // "statistics.table.header.views": "Views",
"statistics.table.header.views": "દૃશ્યો",
- // "statistics.table.no-name": "(object name could not be loaded)",
"statistics.table.no-name": "(વસ્તુનું નામ લોડ કરી શકાયું નથી)",
- // "submission.edit.breadcrumbs": "Edit Submission",
"submission.edit.breadcrumbs": "સબમિશન સંપાદિત કરો",
- // "submission.edit.title": "Edit Submission",
"submission.edit.title": "સબમિશન સંપાદિત કરો",
- // "submission.edit.item.breadcrumbs": "Edit item",
- // TODO New key - Add a translation
- "submission.edit.item.breadcrumbs": "Edit item",
-
- // "submission.general.cancel": "Cancel",
"submission.general.cancel": "રદ કરો",
- // "submission.general.cannot_submit": "You don't have permission to make a new submission.",
"submission.general.cannot_submit": "તમને નવું સબમિશન કરવાની પરવાનગી નથી.",
- // "submission.general.deposit": "Deposit",
"submission.general.deposit": "ડિપોઝિટ",
- // "submission.general.discard.confirm.cancel": "Cancel",
"submission.general.discard.confirm.cancel": "રદ કરો",
- // "submission.general.discard.confirm.info": "This operation can't be undone. Are you sure?",
"submission.general.discard.confirm.info": "આ ક્રિયા પાછી ફરી શકશે નહીં. શું તમે ખાતરી કરો છો?",
- // "submission.general.discard.confirm.submit": "Yes, I'm sure",
"submission.general.discard.confirm.submit": "હા, મને ખાતરી છે",
- // "submission.general.discard.confirm.title": "Discard submission",
"submission.general.discard.confirm.title": "સબમિશન રદ કરો",
- // "submission.general.discard.submit": "Discard",
"submission.general.discard.submit": "રદ કરો",
- // "submission.general.back.submit": "Back",
"submission.general.back.submit": "પાછા",
- // "submission.general.info.invalid": "The submission is invalid, check missing fields",
- // TODO New key - Add a translation
- "submission.general.info.invalid": "The submission is invalid, check missing fields",
-
- // "submission.general.info.saved": "Saved",
"submission.general.info.saved": "સાચવ્યું",
- // "submission.general.info.pending-changes": "Unsaved changes",
"submission.general.info.pending-changes": "સાચવેલા ફેરફારો",
- // "submission.general.save": "Save",
"submission.general.save": "સેવ",
- // "submission.general.save-later": "Save for later",
"submission.general.save-later": "પછી માટે સેવ",
- // "submission.general.save-later.edit-item": "Save and return",
- // TODO New key - Add a translation
- "submission.general.save-later.edit-item": "Save and return",
-
- // "submission.import-external.page.title": "Import metadata from an external source",
"submission.import-external.page.title": "બાહ્ય સ્ત્રોતમાંથી મેટાડેટા આયાત કરો",
- // "submission.import-external.title": "Import metadata from an external source",
"submission.import-external.title": "બાહ્ય સ્ત્રોતમાંથી મેટાડેટા આયાત કરો",
- // "submission.import-external.title.Journal": "Import a journal from an external source",
"submission.import-external.title.Journal": "બાહ્ય સ્ત્રોતમાંથી જર્નલ આયાત કરો",
- // "submission.import-external.title.JournalIssue": "Import a journal issue from an external source",
"submission.import-external.title.JournalIssue": "બાહ્ય સ્ત્રોતમાંથી જર્નલ ઇશ્યુ આયાત કરો",
- // "submission.import-external.title.JournalVolume": "Import a journal volume from an external source",
"submission.import-external.title.JournalVolume": "બાહ્ય સ્ત્રોતમાંથી જર્નલ વોલ્યુમ આયાત કરો",
- "submission.import-external.title.OrgUnit": "બાહ્ય સ્ત્રોતમાંથી એક સંગઠનાત્મક એકમ આયાત કરો",
+ "submission.import-external.title.OrgUnit": "બાહ્ય સ્ત્રોતમાંથી પ્રકાશક આયાત કરો",
- // "submission.import-external.title.Person": "Import a person from an external source",
"submission.import-external.title.Person": "બાહ્ય સ્ત્રોતમાંથી વ્યક્તિ આયાત કરો",
- // "submission.import-external.title.Project": "Import a project from an external source",
"submission.import-external.title.Project": "બાહ્ય સ્ત્રોતમાંથી પ્રોજેક્ટ આયાત કરો",
- // "submission.import-external.title.Publication": "Import a publication from an external source",
"submission.import-external.title.Publication": "બાહ્ય સ્ત્રોતમાંથી પ્રકાશન આયાત કરો",
- // "submission.import-external.title.none": "Import metadata from an external source",
"submission.import-external.title.none": "બાહ્ય સ્ત્રોતમાંથી મેટાડેટા આયાત કરો",
- // "submission.import-external.page.hint": "Enter a query above to find items from the web to import in to DSpace.",
"submission.import-external.page.hint": "DSpace માં આયાત કરવા માટે વેબમાંથી વસ્તુઓ શોધવા માટે ઉપર ક્વેરી દાખલ કરો.",
- // "submission.import-external.back-to-my-dspace": "Back to MyDSpace",
"submission.import-external.back-to-my-dspace": "મારા DSpace પર પાછા જાઓ",
- // "submission.import-external.search.placeholder": "Search the external source",
"submission.import-external.search.placeholder": "બાહ્ય સ્ત્રોત શોધો",
- // "submission.import-external.search.button": "Search",
"submission.import-external.search.button": "શોધો",
- // "submission.import-external.search.button.hint": "Write some words to search",
"submission.import-external.search.button.hint": "શોધવા માટે કેટલાક શબ્દો લખો",
- // "submission.import-external.search.source.hint": "Pick an external source",
"submission.import-external.search.source.hint": "બાહ્ય સ્ત્રોત પસંદ કરો",
- // "submission.import-external.source.arxiv": "arXiv",
"submission.import-external.source.arxiv": "arXiv",
- // "submission.import-external.source.ads": "NASA/ADS",
"submission.import-external.source.ads": "NASA/ADS",
- // "submission.import-external.source.cinii": "CiNii",
"submission.import-external.source.cinii": "CiNii",
- // "submission.import-external.source.crossref": "Crossref",
"submission.import-external.source.crossref": "Crossref",
- // "submission.import-external.source.datacite": "DataCite",
"submission.import-external.source.datacite": "DataCite",
- // "submission.import-external.source.dataciteProject": "DataCite",
"submission.import-external.source.dataciteProject": "DataCite",
- // "submission.import-external.source.doi": "DOI",
"submission.import-external.source.doi": "DOI",
- // "submission.import-external.source.scielo": "SciELO",
"submission.import-external.source.scielo": "SciELO",
- // "submission.import-external.source.scopus": "Scopus",
"submission.import-external.source.scopus": "Scopus",
- // "submission.import-external.source.vufind": "VuFind",
"submission.import-external.source.vufind": "VuFind",
- // "submission.import-external.source.wos": "Web Of Science",
"submission.import-external.source.wos": "Web Of Science",
- // "submission.import-external.source.orcidWorks": "ORCID",
"submission.import-external.source.orcidWorks": "ORCID",
- // "submission.import-external.source.epo": "European Patent Office (EPO)",
"submission.import-external.source.epo": "European Patent Office (EPO)",
- // "submission.import-external.source.loading": "Loading ...",
"submission.import-external.source.loading": "લોડ થઈ રહ્યું છે ...",
- // "submission.import-external.source.sherpaJournal": "SHERPA Journals",
"submission.import-external.source.sherpaJournal": "SHERPA Journals",
- // "submission.import-external.source.sherpaJournalIssn": "SHERPA Journals by ISSN",
"submission.import-external.source.sherpaJournalIssn": "ISSN દ્વારા SHERPA Journals",
- // "submission.import-external.source.sherpaPublisher": "SHERPA Publishers",
"submission.import-external.source.sherpaPublisher": "SHERPA Publishers",
- // "submission.import-external.source.openaire": "OpenAIRE Search by Authors",
"submission.import-external.source.openaire": "OpenAIRE Authors દ્વારા શોધો",
- // "submission.import-external.source.openaireTitle": "OpenAIRE Search by Title",
"submission.import-external.source.openaireTitle": "OpenAIRE Title દ્વારા શોધો",
- // "submission.import-external.source.openaireFunding": "OpenAIRE Search by Funder",
"submission.import-external.source.openaireFunding": "OpenAIRE Funding દ્વારા શોધો",
- // "submission.import-external.source.orcid": "ORCID",
"submission.import-external.source.orcid": "ORCID",
- // "submission.import-external.source.pubmed": "Pubmed",
"submission.import-external.source.pubmed": "Pubmed",
- // "submission.import-external.source.pubmedeu": "Pubmed Europe",
"submission.import-external.source.pubmedeu": "Pubmed Europe",
- // "submission.import-external.source.lcname": "Library of Congress Names",
"submission.import-external.source.lcname": "Library of Congress Names",
- // "submission.import-external.source.ror": "Research Organization Registry (ROR)",
"submission.import-external.source.ror": "Research Organization Registry (ROR)",
- // "submission.import-external.source.openalexPublication": "OpenAlex Search by Title",
"submission.import-external.source.openalexPublication": "OpenAlex Title દ્વારા શોધો",
- // "submission.import-external.source.openalexPublicationByAuthorId": "OpenAlex Search by Author ID",
"submission.import-external.source.openalexPublicationByAuthorId": "OpenAlex Author ID દ્વારા શોધો",
- // "submission.import-external.source.openalexPublicationByDOI": "OpenAlex Search by DOI",
"submission.import-external.source.openalexPublicationByDOI": "OpenAlex DOI દ્વારા શોધો",
- // "submission.import-external.source.openalexPerson": "OpenAlex Search by name",
"submission.import-external.source.openalexPerson": "OpenAlex નામ દ્વારા શોધો",
- // "submission.import-external.source.openalexJournal": "OpenAlex Journals",
"submission.import-external.source.openalexJournal": "OpenAlex Journals",
- // "submission.import-external.source.openalexInstitution": "OpenAlex Institutions",
"submission.import-external.source.openalexInstitution": "OpenAlex Institutions",
- // "submission.import-external.source.openalexPublisher": "OpenAlex Publishers",
"submission.import-external.source.openalexPublisher": "OpenAlex Publishers",
- // "submission.import-external.source.openalexFunder": "OpenAlex Funders",
"submission.import-external.source.openalexFunder": "OpenAlex Funders",
- // "submission.import-external.preview.title": "Item Preview",
"submission.import-external.preview.title": "વસ્તુ પૂર્વાવલોકન",
- // "submission.import-external.preview.title.Publication": "Publication Preview",
"submission.import-external.preview.title.Publication": "પ્રકાશન પૂર્વાવલોકન",
- // "submission.import-external.preview.title.none": "Item Preview",
"submission.import-external.preview.title.none": "વસ્તુ પૂર્વાવલોકન",
- // "submission.import-external.preview.title.Journal": "Journal Preview",
"submission.import-external.preview.title.Journal": "જર્નલ પૂર્વાવલોકન",
- // "submission.import-external.preview.title.OrgUnit": "Organizational Unit Preview",
"submission.import-external.preview.title.OrgUnit": "સંસ્થાકીય એકમ પૂર્વાવલોકન",
- // "submission.import-external.preview.title.Person": "Person Preview",
"submission.import-external.preview.title.Person": "વ્યક્તિ પૂર્વાવલોકન",
- // "submission.import-external.preview.title.Project": "Project Preview",
"submission.import-external.preview.title.Project": "પ્રોજેક્ટ પૂર્વાવલોકન",
- // "submission.import-external.preview.subtitle": "The metadata below was imported from an external source. It will be pre-filled when you start the submission.",
"submission.import-external.preview.subtitle": "નીચેની મેટાડેટા બાહ્ય સ્ત્રોતમાંથી આયાત કરવામાં આવી હતી. તમે સબમિશન શરૂ કરશો ત્યારે તે પૂર્વ-ભરવામાં આવશે.",
- // "submission.import-external.preview.button.import": "Start submission",
"submission.import-external.preview.button.import": "સબમિશન શરૂ કરો",
- // "submission.import-external.preview.error.import.title": "Submission error",
"submission.import-external.preview.error.import.title": "સબમિશન ભૂલ",
- // "submission.import-external.preview.error.import.body": "An error occurs during the external source entry import process.",
"submission.import-external.preview.error.import.body": "બાહ્ય સ્ત્રોત એન્ટ્રી આયાત પ્રક્રિયા દરમિયાન ભૂલ થાય છે.",
- // "submission.sections.describe.relationship-lookup.close": "Close",
"submission.sections.describe.relationship-lookup.close": "બંધ કરો",
- // "submission.sections.describe.relationship-lookup.external-source.added": "Successfully added local entry to the selection",
"submission.sections.describe.relationship-lookup.external-source.added": "સ્થાનિક એન્ટ્રી પસંદગીમાં સફળતાપૂર્વક ઉમેરવામાં આવી",
- // "submission.sections.describe.relationship-lookup.external-source.import-button-title.isAuthorOfPublication": "Import remote author",
"submission.sections.describe.relationship-lookup.external-source.import-button-title.isAuthorOfPublication": "દૂરના લેખક આયાત કરો",
- // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal": "Import remote journal",
"submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal": "દૂરના જર્નલ આયાત કરો",
- // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Issue": "Import remote journal issue",
"submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Issue": "દૂરના જર્નલ ઇશ્યુ આયાત કરો",
- // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Volume": "Import remote journal volume",
"submission.sections.describe.relationship-lookup.external-source.import-button-title.Journal Volume": "દૂરના જર્નલ વોલ્યુમ આયાત કરો",
- // "submission.sections.describe.relationship-lookup.external-source.import-button-title.isProjectOfPublication": "Project",
"submission.sections.describe.relationship-lookup.external-source.import-button-title.isProjectOfPublication": "પ્રોજેક્ટ",
- // "submission.sections.describe.relationship-lookup.external-source.import-button-title.none": "Import remote item",
"submission.sections.describe.relationship-lookup.external-source.import-button-title.none": "દૂરની વસ્તુ આયાત કરો",
- // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Event": "Import remote event",
"submission.sections.describe.relationship-lookup.external-source.import-button-title.Event": "દૂરના ઇવેન્ટ આયાત કરો",
- // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Product": "Import remote product",
"submission.sections.describe.relationship-lookup.external-source.import-button-title.Product": "દૂરના પ્રોડક્ટ આયાત કરો",
- // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Equipment": "Import remote equipment",
"submission.sections.describe.relationship-lookup.external-source.import-button-title.Equipment": "દૂરના સાધન આયાત કરો",
- // "submission.sections.describe.relationship-lookup.external-source.import-button-title.OrgUnit": "Import remote organizational unit",
"submission.sections.describe.relationship-lookup.external-source.import-button-title.OrgUnit": "દૂરના સંસ્થાકીય એકમ આયાત કરો",
- // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Funding": "Import remote fund",
"submission.sections.describe.relationship-lookup.external-source.import-button-title.Funding": "દૂરના ફંડ આયાત કરો",
- // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Person": "Import remote person",
"submission.sections.describe.relationship-lookup.external-source.import-button-title.Person": "દૂરના વ્યક્તિ આયાત કરો",
- // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Patent": "Import remote patent",
"submission.sections.describe.relationship-lookup.external-source.import-button-title.Patent": "દૂરના પેટન્ટ આયાત કરો",
- // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Project": "Import remote project",
"submission.sections.describe.relationship-lookup.external-source.import-button-title.Project": "દૂરના પ્રોજેક્ટ આયાત કરો",
- // "submission.sections.describe.relationship-lookup.external-source.import-button-title.Publication": "Import remote publication",
"submission.sections.describe.relationship-lookup.external-source.import-button-title.Publication": "દૂરના પ્રકાશન આયાત કરો",
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.added.new-entity": "New Entity Added!",
"submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.added.new-entity": "નવી એન્ટિટી ઉમેરવામાં આવી!",
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.title": "Project",
"submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfPublication.title": "પ્રોજેક્ટ",
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.title": "Import Remote Author",
"submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.title": "દૂરના લેખક આયાત કરો",
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.local-entity": "Successfully added local author to the selection",
"submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.local-entity": "સફળતાપૂર્વક સ્થાનિક લેખક પસંદગીમાં ઉમેરવામાં આવ્યો",
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.new-entity": "Successfully imported and added external author to the selection",
"submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfPublication.added.new-entity": "સફળતાપૂર્વક બાહ્ય લેખક આયાત કરીને પસંદગીમાં ઉમેરવામાં આવ્યો",
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.authority": "Authority",
"submission.sections.describe.relationship-lookup.external-source.import-modal.authority": "અધિકાર",
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.authority.new": "Import as a new local authority entry",
"submission.sections.describe.relationship-lookup.external-source.import-modal.authority.new": "નવા સ્થાનિક અધિકાર એન્ટ્રી તરીકે આયાત કરો",
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.cancel": "Cancel",
"submission.sections.describe.relationship-lookup.external-source.import-modal.cancel": "રદ કરો",
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.collection": "Select a collection to import new entries to",
"submission.sections.describe.relationship-lookup.external-source.import-modal.collection": "નવી એન્ટ્રીઓ આયાત કરવા માટે કલેક્શન પસંદ કરો",
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.entities": "Entities",
"submission.sections.describe.relationship-lookup.external-source.import-modal.entities": "એન્ટિટીઓ",
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.entities.new": "Import as a new local entity",
"submission.sections.describe.relationship-lookup.external-source.import-modal.entities.new": "નવા સ્થાનિક એન્ટિટી તરીકે આયાત કરો",
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.lcname": "Importing from LC Name",
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.lcname": "LC Name માંથી આયાત કરી રહ્યું છે",
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "Importing from ORCID",
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.orcid": "ORCID માંથી આયાત કરી રહ્યું છે",
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaire": "Importing from OpenAIRE",
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaire": "OpenAIRE માંથી આયાત કરી રહ્યું છે",
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireTitle": "Importing from OpenAIRE",
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireTitle": "OpenAIRE Title માંથી આયાત કરી રહ્યું છે",
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireFunding": "Importing from OpenAIRE",
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.openaireFunding": "OpenAIRE Funding માંથી આયાત કરી રહ્યું છે",
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaJournal": "Importing from Sherpa Journal",
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaJournal": "Sherpa Journal માંથી આયાત કરી રહ્યું છે",
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaPublisher": "Importing from Sherpa Publisher",
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.sherpaPublisher": "Sherpa Publisher માંથી આયાત કરી રહ્યું છે",
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.pubmed": "Importing from PubMed",
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.pubmed": "PubMed માંથી આયાત કરી રહ્યું છે",
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.arxiv": "Importing from arXiv",
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.arxiv": "arXiv માંથી આયાત કરી રહ્યું છે",
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.ror": "Import from ROR",
"submission.sections.describe.relationship-lookup.external-source.import-modal.head.ror": "ROR માંથી આયાત કરો",
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.import": "Import",
"submission.sections.describe.relationship-lookup.external-source.import-modal.import": "આયાત કરો",
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.title": "Import Remote Journal",
"submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.title": "દૂરના જર્નલ આયાત કરો",
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.local-entity": "Successfully added local journal to the selection",
"submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.local-entity": "સફળતાપૂર્વક સ્થાનિક જર્નલ પસંદગીમાં ઉમેરવામાં આવ્યો",
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.new-entity": "Successfully imported and added external journal to the selection",
"submission.sections.describe.relationship-lookup.external-source.import-modal.Journal.added.new-entity": "સફળતાપૂર્વક બાહ્ય જર્નલ આયાત કરીને પસંદગીમાં ઉમેરવામાં આવ્યો",
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.title": "Import Remote Journal Issue",
"submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.title": "દૂરના જર્નલ ઇશ્યુ આયાત કરો",
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.local-entity": "Successfully added local journal issue to the selection",
"submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.local-entity": "સફળતાપૂર્વક સ્થાનિક જર્નલ ઇશ્યુ પસંદગીમાં ઉમેરવામાં આવ્યો",
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.new-entity": "Successfully imported and added external journal issue to the selection",
"submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Issue.added.new-entity": "સફળતાપૂર્વક બાહ્ય જર્નલ ઇશ્યુ આયાત કરીને પસંદગીમાં ઉમેરવામાં આવ્યો",
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.title": "Import Remote Journal Volume",
"submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.title": "દૂરના જર્નલ વોલ્યુમ આયાત કરો",
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.local-entity": "Successfully added local journal volume to the selection",
"submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.local-entity": "સફળતાપૂર્વક સ્થાનિક જર્નલ વોલ્યુમ પસંદગીમાં ઉમેરવામાં આવ્યો",
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.new-entity": "Successfully imported and added external journal volume to the selection",
"submission.sections.describe.relationship-lookup.external-source.import-modal.Journal Volume.added.new-entity": "સફળતાપૂર્વક બાહ્ય જર્નલ વોલ્યુમ આયાત કરીને પસંદગીમાં ઉમેરવામાં આવ્યો",
- // "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": "Select a local match:",
+ "submission.sections.describe.relationship-lookup.external-source.import-modal.select": "સ્થાનિક મેચ પસંદ કરો:",
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.title": "Import Remote Organization",
"submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.title": "દૂરના સંસ્થાકીય એકમ આયાત કરો",
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.local-entity": "Successfully added local organization to the selection",
"submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.local-entity": "સફળતાપૂર્વક સ્થાનિક સંસ્થાકીય એકમ પસંદગીમાં ઉમેરવામાં આવ્યો",
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.new-entity": "Successfully imported and added external organization to the selection",
"submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfProject.added.new-entity": "સફળતાપૂર્વક બાહ્ય સંસ્થાકીય એકમ આયાત કરીને પસંદગીમાં ઉમેરવામાં આવ્યો",
- // "submission.sections.describe.relationship-lookup.search-tab.deselect-all": "Deselect all",
"submission.sections.describe.relationship-lookup.search-tab.deselect-all": "બધા પસંદગીઓ રદ કરો",
- // "submission.sections.describe.relationship-lookup.search-tab.deselect-page": "Deselect page",
"submission.sections.describe.relationship-lookup.search-tab.deselect-page": "પેજ પસંદગીઓ રદ કરો",
- // "submission.sections.describe.relationship-lookup.search-tab.loading": "Loading...",
"submission.sections.describe.relationship-lookup.search-tab.loading": "લોડ થઈ રહ્યું છે...",
- // "submission.sections.describe.relationship-lookup.search-tab.placeholder": "Search query",
"submission.sections.describe.relationship-lookup.search-tab.placeholder": "શોધ ક્વેરી",
- // "submission.sections.describe.relationship-lookup.search-tab.search": "Go",
"submission.sections.describe.relationship-lookup.search-tab.search": "જાઓ",
- // "submission.sections.describe.relationship-lookup.search-tab.search-form.placeholder": "Search...",
"submission.sections.describe.relationship-lookup.search-tab.search-form.placeholder": "શોધો...",
- // "submission.sections.describe.relationship-lookup.search-tab.select-all": "Select all",
"submission.sections.describe.relationship-lookup.search-tab.select-all": "બધા પસંદ કરો",
- // "submission.sections.describe.relationship-lookup.search-tab.select-page": "Select page",
"submission.sections.describe.relationship-lookup.search-tab.select-page": "પેજ પસંદ કરો",
- // "submission.sections.describe.relationship-lookup.selected": "Selected {{ size }} items",
"submission.sections.describe.relationship-lookup.selected": "પસંદ કરેલી {{ size }} વસ્તુઓ",
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isAuthorOfPublication": "Local Authors ({{ count }})",
"submission.sections.describe.relationship-lookup.search-tab.tab-title.isAuthorOfPublication": "સ્થાનિક લેખકો ({{ count }})",
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalOfPublication": "Local Journals ({{ count }})",
"submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalOfPublication": "સ્થાનિક જર્નલ ({{ count }})",
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.Project": "Local Projects ({{ count }})",
"submission.sections.describe.relationship-lookup.search-tab.tab-title.Project": "સ્થાનિક પ્રોજેક્ટ ({{ count }})",
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.Publication": "Local Publications ({{ count }})",
"submission.sections.describe.relationship-lookup.search-tab.tab-title.Publication": "સ્થાનિક પ્રકાશન ({{ count }})",
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.Person": "Local Authors ({{ count }})",
"submission.sections.describe.relationship-lookup.search-tab.tab-title.Person": "સ્થાનિક લેખકો ({{ count }})",
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.OrgUnit": "Local Organizational Units ({{ count }})",
"submission.sections.describe.relationship-lookup.search-tab.tab-title.OrgUnit": "સ્થાનિક સંસ્થાકીય એકમ ({{ count }})",
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataPackage": "Local Data Packages ({{ count }})",
"submission.sections.describe.relationship-lookup.search-tab.tab-title.DataPackage": "સ્થાનિક ડેટા પેકેજ ({{ count }})",
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.DataFile": "Local Data Files ({{ count }})",
"submission.sections.describe.relationship-lookup.search-tab.tab-title.DataFile": "સ્થાનિક ડેટા ફાઇલ ({{ count }})",
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.Journal": "Local Journals ({{ count }})",
"submission.sections.describe.relationship-lookup.search-tab.tab-title.Journal": "સ્થાનિક જર્નલ ({{ count }})",
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalIssueOfPublication": "Local Journal Issues ({{ count }})",
"submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalIssueOfPublication": "સ્થાનિક જર્નલ ઇશ્યુ ({{ count }})",
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalIssue": "Local Journal Issues ({{ count }})",
"submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalIssue": "સ્થાનિક જર્નલ ઇશ્યુ ({{ count }})",
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfIssue": "Local Journal Volumes ({{ count }})",
"submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfIssue": "સ્થાનિક જર્નલ વોલ્યુમ ({{ count }})",
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfPublication": "Local Journal Volumes ({{ count }})",
"submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfPublication": "સ્થાનિક જર્નલ વોલ્યુમ ({{ count }})",
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalVolume": "Local Journal Volumes ({{ count }})",
"submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalVolume": "સ્થાનિક જર્નલ વોલ્યુમ ({{ count }})",
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournal": "Sherpa Journals ({{ count }})",
"submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournal": "Sherpa Journals ({{ count }})",
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaPublisher": "Sherpa Publishers ({{ count }})",
"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 }})",
"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 }})",
"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 }})",
"submission.sections.describe.relationship-lookup.search-tab.tab-title.pubmed": "PubMed ({{ count }})",
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.arxiv": "arXiv ({{ count }})",
"submission.sections.describe.relationship-lookup.search-tab.tab-title.arxiv": "arXiv ({{ count }})",
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.ror": "ROR ({{ count }})",
"submission.sections.describe.relationship-lookup.search-tab.tab-title.ror": "ROR ({{ count }})",
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidWorks": "ORCID ({{ count }})",
"submission.sections.describe.relationship-lookup.search-tab.tab-title.orcidWorks": "ORCID ({{ count }})",
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.crossref": "Crossref ({{ count }})",
"submission.sections.describe.relationship-lookup.search-tab.tab-title.crossref": "Crossref ({{ count }})",
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.scopus": "Scopus ({{ count }})",
"submission.sections.describe.relationship-lookup.search-tab.tab-title.scopus": "Scopus ({{ count }})",
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaire": "OpenAIRE Search by Authors ({{ count }})",
"submission.sections.describe.relationship-lookup.search-tab.tab-title.openaire": "OpenAIRE Authors ({{ count }})",
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireTitle": "OpenAIRE Search by Title ({{ count }})",
"submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireTitle": "OpenAIRE Title ({{ count }})",
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireFunding": "OpenAIRE Search by Funder ({{ count }})",
"submission.sections.describe.relationship-lookup.search-tab.tab-title.openaireFunding": "OpenAIRE Funding ({{ count }})",
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournalIssn": "Sherpa Journals by ISSN ({{ count }})",
"submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournalIssn": "ISSN દ્વારા Sherpa Journals ({{ count }})",
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPerson": "OpenAlex ({{ count }})",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPerson": "OpenAlex ({{ count }})",
-
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexInstitution": "OpenAlex Search by Institution ({{ count }})",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexInstitution": "OpenAlex Search by Institution ({{ count }})",
-
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPublisher": "OpenAlex Search by Publisher ({{ count }})",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPublisher": "OpenAlex Search by Publisher ({{ count }})",
-
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexFunder": "OpenAlex Search by Funder ({{ count }})",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexFunder": "OpenAlex Search by Funder ({{ count }})",
-
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.dataciteProject": "DataCite Search by Project ({{ count }})",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.search-tab.tab-title.dataciteProject": "DataCite Search by Project ({{ count }})",
-
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfPublication": "Search for Funding Agencies",
"submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfPublication": "Funding Agencies માટે શોધો",
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingOfPublication": "Search for Funding",
"submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingOfPublication": "Funding માટે શોધો",
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isChildOrgUnitOf": "Search for Organizational Units",
"submission.sections.describe.relationship-lookup.search-tab.tab-title.isChildOrgUnitOf": "સંસ્થાકીય એકમ માટે શોધો",
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isProjectOfPublication": "Projects",
"submission.sections.describe.relationship-lookup.search-tab.tab-title.isProjectOfPublication": "પ્રોજેક્ટ",
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfProject": "Funder of the Project",
"submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfProject": "પ્રોજેક્ટના ફંડર",
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isPublicationOfAuthor": "Publication of the Author",
"submission.sections.describe.relationship-lookup.search-tab.tab-title.isPublicationOfAuthor": "લેખકના પ્રકાશન",
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isOrgUnitOfProject": "OrgUnit of the Project",
"submission.sections.describe.relationship-lookup.search-tab.tab-title.isOrgUnitOfProject": "પ્રોજેક્ટના સંસ્થાકીય એકમ",
- // "submission.sections.describe.relationship-lookup.selection-tab.title.isProjectOfPublication": "Project",
"submission.sections.describe.relationship-lookup.selection-tab.title.isProjectOfPublication": "પ્રોજેક્ટ",
- // "submission.sections.describe.relationship-lookup.title.isProjectOfPublication": "Projects",
"submission.sections.describe.relationship-lookup.title.isProjectOfPublication": "પ્રોજેક્ટ",
- // "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfProject": "Funder of the Project",
"submission.sections.describe.relationship-lookup.title.isFundingAgencyOfProject": "પ્રોજેક્ટના ફંડર",
- // "submission.sections.describe.relationship-lookup.title.isPersonOfProject": "Person of the Project",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.title.isPersonOfProject": "Person of the Project",
-
- // "submission.sections.describe.relationship-lookup.selection-tab.search-form.placeholder": "Search...",
"submission.sections.describe.relationship-lookup.selection-tab.search-form.placeholder": "શોધો...",
- // "submission.sections.describe.relationship-lookup.selection-tab.tab-title": "Current Selection ({{ count }})",
"submission.sections.describe.relationship-lookup.selection-tab.tab-title": "વર્તમાન પસંદગી ({{ count }})",
- // "submission.sections.describe.relationship-lookup.title.Journal": "Journal",
"submission.sections.describe.relationship-lookup.title.Journal": "જર્નલ",
- // "submission.sections.describe.relationship-lookup.title.isJournalIssueOfPublication": "Journal Issues",
"submission.sections.describe.relationship-lookup.title.isJournalIssueOfPublication": "જર્નલ ઇશ્યુ",
- // "submission.sections.describe.relationship-lookup.title.JournalIssue": "Journal Issues",
"submission.sections.describe.relationship-lookup.title.JournalIssue": "જર્નલ ઇશ્યુ",
- // "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfIssue": "Journal Volumes",
"submission.sections.describe.relationship-lookup.title.isJournalVolumeOfIssue": "જર્નલ વોલ્યુમ",
- // "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfPublication": "Journal Volumes",
"submission.sections.describe.relationship-lookup.title.isJournalVolumeOfPublication": "જર્નલ વોલ્યુમ",
- // "submission.sections.describe.relationship-lookup.title.JournalVolume": "Journal Volumes",
"submission.sections.describe.relationship-lookup.title.JournalVolume": "જર્નલ વોલ્યુમ",
- // "submission.sections.describe.relationship-lookup.title.isJournalOfPublication": "Journals",
"submission.sections.describe.relationship-lookup.title.isJournalOfPublication": "જર્નલ",
- // "submission.sections.describe.relationship-lookup.title.isAuthorOfPublication": "Authors",
"submission.sections.describe.relationship-lookup.title.isAuthorOfPublication": "લેખકો",
- // "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfPublication": "Funding Agency",
"submission.sections.describe.relationship-lookup.title.isFundingAgencyOfPublication": "ફંડિંગ એજન્સી",
- // "submission.sections.describe.relationship-lookup.title.Project": "Projects",
"submission.sections.describe.relationship-lookup.title.Project": "પ્રોજેક્ટ",
- // "submission.sections.describe.relationship-lookup.title.Publication": "Publications",
"submission.sections.describe.relationship-lookup.title.Publication": "પ્રકાશન",
- // "submission.sections.describe.relationship-lookup.title.Person": "Authors",
"submission.sections.describe.relationship-lookup.title.Person": "લેખકો",
- // "submission.sections.describe.relationship-lookup.title.OrgUnit": "Organizational Units",
"submission.sections.describe.relationship-lookup.title.OrgUnit": "સંસ્થાકીય એકમ",
- // "submission.sections.describe.relationship-lookup.title.DataPackage": "Data Packages",
"submission.sections.describe.relationship-lookup.title.DataPackage": "ડેટા પેકેજ",
- // "submission.sections.describe.relationship-lookup.title.DataFile": "Data Files",
"submission.sections.describe.relationship-lookup.title.DataFile": "ડેટા ફાઇલ",
- // "submission.sections.describe.relationship-lookup.title.Funding Agency": "Funding Agency",
"submission.sections.describe.relationship-lookup.title.Funding Agency": "ફંડિંગ એજન્સી",
- // "submission.sections.describe.relationship-lookup.title.isFundingOfPublication": "Funding",
"submission.sections.describe.relationship-lookup.title.isFundingOfPublication": "ફંડિંગ",
- // "submission.sections.describe.relationship-lookup.title.isChildOrgUnitOf": "Parent Organizational Unit",
"submission.sections.describe.relationship-lookup.title.isChildOrgUnitOf": "પેરેન્ટ સંસ્થાકીય એકમ",
- // "submission.sections.describe.relationship-lookup.title.isPublicationOfAuthor": "Publication",
"submission.sections.describe.relationship-lookup.title.isPublicationOfAuthor": "પ્રકાશન",
- // "submission.sections.describe.relationship-lookup.title.isOrgUnitOfProject": "OrgUnit",
"submission.sections.describe.relationship-lookup.title.isOrgUnitOfProject": "સંસ્થાકીય એકમ",
- // "submission.sections.describe.relationship-lookup.search-tab.toggle-dropdown": "Toggle dropdown",
"submission.sections.describe.relationship-lookup.search-tab.toggle-dropdown": "ડ્રોપડાઉન ટૉગલ કરો",
- // "submission.sections.describe.relationship-lookup.selection-tab.settings": "Settings",
"submission.sections.describe.relationship-lookup.selection-tab.settings": "સેટિંગ્સ",
- // "submission.sections.describe.relationship-lookup.selection-tab.no-selection": "Your selection is currently empty.",
"submission.sections.describe.relationship-lookup.selection-tab.no-selection": "તમારી પસંદગી હાલમાં ખાલી છે.",
- // "submission.sections.describe.relationship-lookup.selection-tab.title.isAuthorOfPublication": "Selected Authors",
"submission.sections.describe.relationship-lookup.selection-tab.title.isAuthorOfPublication": "પસંદ કરેલા લેખકો",
- // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalOfPublication": "Selected Journals",
"submission.sections.describe.relationship-lookup.selection-tab.title.isJournalOfPublication": "પસંદ કરેલા જર્નલ",
- // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfIssue": "Selected Journal Volume",
"submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfIssue": "પસંદ કરેલા જર્નલ વોલ્યુમ",
- // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfPublication": "Selected Journal Volume",
"submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfPublication": "પસંદ કરેલા જર્નલ વોલ્યુમ",
- // "submission.sections.describe.relationship-lookup.selection-tab.title.Project": "Selected Projects",
"submission.sections.describe.relationship-lookup.selection-tab.title.Project": "પસંદ કરેલા પ્રોજેક્ટ",
- // "submission.sections.describe.relationship-lookup.selection-tab.title.Publication": "Selected Publications",
"submission.sections.describe.relationship-lookup.selection-tab.title.Publication": "પસંદ કરેલા પ્રકાશન",
- // "submission.sections.describe.relationship-lookup.selection-tab.title.Person": "Selected Authors",
"submission.sections.describe.relationship-lookup.selection-tab.title.Person": "પસંદ કરેલા લેખકો",
- // "submission.sections.describe.relationship-lookup.selection-tab.title.OrgUnit": "Selected Organizational Units",
"submission.sections.describe.relationship-lookup.selection-tab.title.OrgUnit": "પસંદ કરેલા સંસ્થાકીય એકમ",
- // "submission.sections.describe.relationship-lookup.selection-tab.title.DataPackage": "Selected Data Packages",
"submission.sections.describe.relationship-lookup.selection-tab.title.DataPackage": "પસંદ કરેલા ડેટા પેકેજ",
- // "submission.sections.describe.relationship-lookup.selection-tab.title.DataFile": "Selected Data Files",
"submission.sections.describe.relationship-lookup.selection-tab.title.DataFile": "પસંદ કરેલી ડેટા ફાઇલ",
- // "submission.sections.describe.relationship-lookup.selection-tab.title.Journal": "Selected Journals",
"submission.sections.describe.relationship-lookup.selection-tab.title.Journal": "પસંદ કરેલા જર્નલ",
- // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalIssueOfPublication": "Selected Issue",
"submission.sections.describe.relationship-lookup.selection-tab.title.isJournalIssueOfPublication": "પસંદ કરેલા ઇશ્યુ",
- // "submission.sections.describe.relationship-lookup.selection-tab.title.JournalVolume": "Selected Journal Volume",
"submission.sections.describe.relationship-lookup.selection-tab.title.JournalVolume": "પસંદ કરેલા જર્નલ વોલ્યુમ",
- // "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingAgencyOfPublication": "Selected Funding Agency",
"submission.sections.describe.relationship-lookup.selection-tab.title.isFundingAgencyOfPublication": "પસંદ કરેલી ફંડિંગ એજન્સી",
- // "submission.sections.describe.relationship-lookup.selection-tab.title.isFundingOfPublication": "Selected Funding",
"submission.sections.describe.relationship-lookup.selection-tab.title.isFundingOfPublication": "પસંદ કરેલા ફંડિંગ",
- // "submission.sections.describe.relationship-lookup.selection-tab.title.JournalIssue": "Selected Issue",
"submission.sections.describe.relationship-lookup.selection-tab.title.JournalIssue": "પસંદ કરેલા ઇશ્યુ",
- // "submission.sections.describe.relationship-lookup.selection-tab.title.isChildOrgUnitOf": "Selected Organizational Unit",
"submission.sections.describe.relationship-lookup.selection-tab.title.isChildOrgUnitOf": "પસંદ કરેલા સંસ્થાકીય એકમ",
- // "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaJournal": "Search Results",
"submission.sections.describe.relationship-lookup.selection-tab.title.sherpaJournal": "શોધ પરિણામ",
- // "submission.sections.describe.relationship-lookup.selection-tab.title.sherpaPublisher": "Search Results",
"submission.sections.describe.relationship-lookup.selection-tab.title.sherpaPublisher": "શોધ પરિણામ",
- // "submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "Search Results",
"submission.sections.describe.relationship-lookup.selection-tab.title.orcid": "શોધ પરિણામ",
- // "submission.sections.describe.relationship-lookup.selection-tab.title.orcidv2": "Search Results",
"submission.sections.describe.relationship-lookup.selection-tab.title.orcidv2": "શોધ પરિણામ",
- // "submission.sections.describe.relationship-lookup.selection-tab.title.openaire": "Search Results",
"submission.sections.describe.relationship-lookup.selection-tab.title.openaire": "શોધ પરિણામ",
- // "submission.sections.describe.relationship-lookup.selection-tab.title.openaireTitle": "Search Results",
"submission.sections.describe.relationship-lookup.selection-tab.title.openaireTitle": "શોધ પરિણામ",
- // "submission.sections.describe.relationship-lookup.selection-tab.title.openaireFundin": "Search Results",
"submission.sections.describe.relationship-lookup.selection-tab.title.openaireFundin": "શોધ પરિણામ",
- // "submission.sections.describe.relationship-lookup.selection-tab.title.lcname": "Search Results",
"submission.sections.describe.relationship-lookup.selection-tab.title.lcname": "શોધ પરિણામ",
- // "submission.sections.describe.relationship-lookup.selection-tab.title.pubmed": "Search Results",
"submission.sections.describe.relationship-lookup.selection-tab.title.pubmed": "શોધ પરિણામ",
- // "submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "Search Results",
"submission.sections.describe.relationship-lookup.selection-tab.title.arxiv": "શોધ પરિણામ",
- // "submission.sections.describe.relationship-lookup.selection-tab.title.crossref": "Search Results",
"submission.sections.describe.relationship-lookup.selection-tab.title.crossref": "શોધ પરિણામ",
- // "submission.sections.describe.relationship-lookup.selection-tab.title.epo": "Search Results",
"submission.sections.describe.relationship-lookup.selection-tab.title.epo": "શોધ પરિણામ",
- // "submission.sections.describe.relationship-lookup.selection-tab.title.scopus": "Search Results",
"submission.sections.describe.relationship-lookup.selection-tab.title.scopus": "શોધ પરિણામ",
- // "submission.sections.describe.relationship-lookup.selection-tab.title.scielo": "Search Results",
"submission.sections.describe.relationship-lookup.selection-tab.title.scielo": "શોધ પરિણામ",
- // "submission.sections.describe.relationship-lookup.selection-tab.title.wos": "Search Results",
"submission.sections.describe.relationship-lookup.selection-tab.title.wos": "શોધ પરિણામ",
- // "submission.sections.describe.relationship-lookup.selection-tab.title.ror": "Search Results",
"submission.sections.describe.relationship-lookup.selection-tab.title.ror": "શોધ પરિણામ",
- // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPerson": "Search Results",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPerson": "Search Results",
-
- // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexInstitution": "Search Results",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.selection-tab.title.openalexInstitution": "Search Results",
-
- // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPublisher": "Search Results",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPublisher": "Search Results",
-
- // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexFunder": "Search Results",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.selection-tab.title.openalexFunder": "Search Results",
-
- // "submission.sections.describe.relationship-lookup.selection-tab.title.dataciteProject": "Search Results",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.selection-tab.title.dataciteProject": "Search Results",
-
- // "submission.sections.describe.relationship-lookup.selection-tab.title": "Search Results",
"submission.sections.describe.relationship-lookup.selection-tab.title": "શોધ પરિણામ",
- // "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.",
"submission.sections.describe.relationship-lookup.name-variant.notification.content": "શું તમે આ નામ વેરિઅન્ટને ભવિષ્યના સબમિશન માટે ફરીથી ઉપયોગ કરવા માટે સાચવવા માંગો છો? જો તમે નહીં કરો તો તમે તેને આ સબમિશન માટે જ ઉપયોગ કરી શકો છો.",
- // "submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "Save a new name variant",
"submission.sections.describe.relationship-lookup.name-variant.notification.confirm": "નવું નામ વેરિઅન્ટ સાચવો",
- // "submission.sections.describe.relationship-lookup.name-variant.notification.decline": "Use only for this submission",
"submission.sections.describe.relationship-lookup.name-variant.notification.decline": "આ સબમિશન માટે જ ઉપયોગ કરો",
- // "submission.sections.ccLicense.type": "License Type",
"submission.sections.ccLicense.type": "લાઇસન્સ પ્રકાર",
- // "submission.sections.ccLicense.select": "Select a license type…",
"submission.sections.ccLicense.select": "લાઇસન્સ પ્રકાર પસંદ કરો…",
- // "submission.sections.ccLicense.change": "Change your license type…",
"submission.sections.ccLicense.change": "તમારો લાઇસન્સ પ્રકાર બદલો…",
- // "submission.sections.ccLicense.none": "No licenses available",
"submission.sections.ccLicense.none": "કોઈ લાઇસન્સ ઉપલબ્ધ નથી",
- // "submission.sections.ccLicense.option.select": "Select an option…",
"submission.sections.ccLicense.option.select": "એક વિકલ્પ પસંદ કરો…",
- // "submission.sections.ccLicense.link": "You’ve selected the following license:",
- // TODO New key - Add a translation
- "submission.sections.ccLicense.link": "You’ve selected the following license:",
+ "submission.sections.ccLicense.link": "તમે નીચેના લાઇસન્સ પસંદ કર્યું છે:",
- // "submission.sections.ccLicense.confirmation": "I grant the license above",
"submission.sections.ccLicense.confirmation": "હું ઉપરના લાઇસન્સને મંજૂરી આપું છું",
- // "submission.sections.general.add-more": "Add more",
"submission.sections.general.add-more": "વધુ ઉમેરો",
- // "submission.sections.general.cannot_deposit": "Deposit cannot be completed due to errors in the form.
Please fill out all required fields to complete the deposit.",
"submission.sections.general.cannot_deposit": "ફોર્મમાં ભૂલોને કારણે ડિપોઝિટ પૂર્ણ કરી શકાતી નથી.
ડિપોઝિટ પૂર્ણ કરવા માટે કૃપા કરીને બધી જરૂરી ફીલ્ડ્સ ભરો.",
- // "submission.sections.general.collection": "Collection",
"submission.sections.general.collection": "સંગ્રહ",
- // "submission.sections.general.deposit_error_notice": "There was an issue when submitting the item, please try again later.",
"submission.sections.general.deposit_error_notice": "વસ્તુ સબમિટ કરતી વખતે સમસ્યા આવી, કૃપા કરીને પછીથી ફરી પ્રયાસ કરો.",
- // "submission.sections.general.invalid_state_error": "Cannot save current changes, mandatory fields are missing. Please resolve problems and save again later.",
- // TODO New key - Add a translation
- "submission.sections.general.invalid_state_error": "Cannot save current changes, mandatory fields are missing. Please resolve problems and save again later.",
-
- // "submission.sections.general.deposit_success_notice": "Submission deposited successfully.",
"submission.sections.general.deposit_success_notice": "સબમિશન સફળતાપૂર્વક ડિપોઝિટ થયું.",
- // "submission.sections.general.discard_error_notice": "There was an issue when discarding the item, please try again later.",
"submission.sections.general.discard_error_notice": "વસ્તુ રદ કરતી વખતે સમસ્યા આવી, કૃપા કરીને પછીથી ફરી પ્રયાસ કરો.",
- // "submission.sections.general.discard_success_notice": "Submission discarded successfully.",
"submission.sections.general.discard_success_notice": "સબમિશન સફળતાપૂર્વક રદ થયું.",
- // "submission.sections.general.metadata-extracted": "New metadata have been extracted and added to the {{sectionId}} section.",
"submission.sections.general.metadata-extracted": "નવી મેટાડેટા કાઢી અને {{sectionId}} વિભાગમાં ઉમેરવામાં આવી છે.",
- // "submission.sections.general.metadata-extracted-new-section": "New {{sectionId}} section has been added to submission.",
"submission.sections.general.metadata-extracted-new-section": "નવી {{sectionId}} વિભાગ સબમિશનમાં ઉમેરવામાં આવી છે.",
- // "submission.sections.general.no-collection": "No collection found",
"submission.sections.general.no-collection": "કોઈ સંગ્રહ મળ્યો નથી",
- // "submission.sections.general.no-entity": "No entity types found",
"submission.sections.general.no-entity": "કોઈ એન્ટિટી પ્રકારો મળ્યા નથી",
- // "submission.sections.general.no-sections": "No options available",
"submission.sections.general.no-sections": "કોઈ વિકલ્પો ઉપલબ્ધ નથી",
- // "submission.sections.general.save_error_notice": "There was an issue when saving the item, please try again later.",
"submission.sections.general.save_error_notice": "વસ્તુ સાચવતી વખતે સમસ્યા આવી, કૃપા કરીને પછીથી ફરી પ્રયાસ કરો.",
- // "submission.sections.general.save_success_notice": "Submission saved successfully.",
"submission.sections.general.save_success_notice": "સબમિશન સફળતાપૂર્વક સાચવાયું.",
- // "submission.sections.general.search-collection": "Search for a collection",
"submission.sections.general.search-collection": "સંગ્રહ માટે શોધો",
- // "submission.sections.general.sections_not_valid": "There are incomplete sections.",
"submission.sections.general.sections_not_valid": "અપૂર્ણ વિભાગો છે.",
- // "submission.sections.identifiers.info": "The following identifiers will be created for your item:",
- // TODO New key - Add a translation
- "submission.sections.identifiers.info": "The following identifiers will be created for your item:",
+ "submission.sections.identifiers.info": "તમારી વસ્તુ માટે નીચેના ઓળખકર્તાઓ બનાવવામાં આવશે:",
- // "submission.sections.identifiers.no_handle": "No handles have been minted for this item.",
"submission.sections.identifiers.no_handle": "આ વસ્તુ માટે કોઈ હેન્ડલ મિન્ટ કરવામાં આવ્યા નથી.",
- // "submission.sections.identifiers.no_doi": "No DOIs have been minted for this item.",
"submission.sections.identifiers.no_doi": "આ વસ્તુ માટે કોઈ DOI મિન્ટ કરવામાં આવ્યા નથી.",
- // "submission.sections.identifiers.handle_label": "Handle: ",
- // TODO New key - Add a translation
- "submission.sections.identifiers.handle_label": "Handle: ",
+ "submission.sections.identifiers.handle_label": "હેન્ડલ: ",
- // "submission.sections.identifiers.doi_label": "DOI: ",
"submission.sections.identifiers.doi_label": "DOI: ",
- // "submission.sections.identifiers.otherIdentifiers_label": "Other identifiers: ",
- // TODO New key - Add a translation
- "submission.sections.identifiers.otherIdentifiers_label": "Other identifiers: ",
+ "submission.sections.identifiers.otherIdentifiers_label": "અન્ય ઓળખકર્તાઓ: ",
- // "submission.sections.submit.progressbar.accessCondition": "Item access conditions",
"submission.sections.submit.progressbar.accessCondition": "વસ્તુ ઍક્સેસ શરતો",
- // "submission.sections.submit.progressbar.CClicense": "Creative commons license",
"submission.sections.submit.progressbar.CClicense": "ક્રિએટિવ કોમન્સ લાઇસન્સ",
- // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url",
- // TODO New key - Add a translation
- "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url",
-
- // "submission.sections.submit.progressbar.describe.recycle": "Recycle",
"submission.sections.submit.progressbar.describe.recycle": "રીસાયકલ",
- // "submission.sections.submit.progressbar.describe.stepcustom": "Describe",
"submission.sections.submit.progressbar.describe.stepcustom": "વર્ણન કરો",
- // "submission.sections.submit.progressbar.describe.stepone": "Describe",
"submission.sections.submit.progressbar.describe.stepone": "વર્ણન કરો",
- // "submission.sections.submit.progressbar.describe.steptwo": "Describe",
"submission.sections.submit.progressbar.describe.steptwo": "વર્ણન કરો",
- // "submission.sections.submit.progressbar.duplicates": "Potential duplicates",
"submission.sections.submit.progressbar.duplicates": "સંભવિત નકલો",
- // "submission.sections.submit.progressbar.identifiers": "Identifiers",
"submission.sections.submit.progressbar.identifiers": "ઓળખકર્તાઓ",
- // "submission.sections.submit.progressbar.license": "Deposit license",
"submission.sections.submit.progressbar.license": "ડિપોઝિટ લાઇસન્સ",
- // "submission.sections.submit.progressbar.describe.owner": "Owner",
- // TODO New key - Add a translation
- "submission.sections.submit.progressbar.describe.owner": "Owner",
-
- // "submission.sections.submit.progressbar.sherpapolicy": "Sherpa policies",
"submission.sections.submit.progressbar.sherpapolicy": "શેરપા નીતિઓ",
- // "submission.sections.submit.progressbar.upload": "Upload files",
"submission.sections.submit.progressbar.upload": "ફાઇલો અપલોડ કરો",
- // "submission.sections.submit.progressbar.sherpaPolicies": "Publisher open access policy information",
"submission.sections.submit.progressbar.sherpaPolicies": "પ્રકાશક ઓપન ઍક્સેસ નીતિ માહિતી",
- // "submission.sections.sherpa-policy.title-empty": "No publisher policy information available. If your work has an associated ISSN, please enter it above to see any related publisher open access policies.",
"submission.sections.sherpa-policy.title-empty": "કોઈ પ્રકાશક નીતિ માહિતી ઉપલબ્ધ નથી. જો તમારા કાર્ય સાથે સંકળાયેલ ISSN છે, તો કૃપા કરીને ઉપર દાખલ કરો જેથી સંબંધિત પ્રકાશક ઓપન ઍક્સેસ નીતિઓ જોઈ શકાય.",
- // "submission.sections.status.errors.title": "Errors",
"submission.sections.status.errors.title": "ભૂલો",
- // "submission.sections.status.valid.title": "Valid",
"submission.sections.status.valid.title": "માન્ય",
- // "submission.sections.status.warnings.title": "Warnings",
"submission.sections.status.warnings.title": "ચેતવણીઓ",
- // "submission.sections.status.errors.aria": "has errors",
"submission.sections.status.errors.aria": "ભૂલો છે",
- // "submission.sections.status.valid.aria": "is valid",
"submission.sections.status.valid.aria": "માન્ય છે",
- // "submission.sections.status.warnings.aria": "has warnings",
"submission.sections.status.warnings.aria": "ચેતવણીઓ છે",
- // "submission.sections.status.info.title": "Additional Information",
"submission.sections.status.info.title": "વધુ માહિતી",
- // "submission.sections.status.info.aria": "Additional Information",
"submission.sections.status.info.aria": "વધુ માહિતી",
- // "submission.sections.toggle.open": "Open section",
"submission.sections.toggle.open": "વિભાગ ખોલો",
- // "submission.sections.toggle.close": "Close section",
"submission.sections.toggle.close": "વિભાગ બંધ કરો",
- // "submission.sections.toggle.aria.open": "Expand {{sectionHeader}} section",
"submission.sections.toggle.aria.open": "{{sectionHeader}} વિભાગ વિસ્તૃત કરો",
- // "submission.sections.toggle.aria.close": "Collapse {{sectionHeader}} section",
"submission.sections.toggle.aria.close": "{{sectionHeader}} વિભાગ સંકોચો",
- // "submission.sections.upload.primary.make": "Make {{fileName}} the primary bitstream",
"submission.sections.upload.primary.make": "{{fileName}} ને મુખ્ય બિટસ્ટ્રીમ બનાવો",
- // "submission.sections.upload.primary.remove": "Remove {{fileName}} as the primary bitstream",
"submission.sections.upload.primary.remove": "{{fileName}} ને મુખ્ય બિટસ્ટ્રીમ તરીકે દૂર કરો",
- // "submission.sections.upload.delete.confirm.cancel": "Cancel",
"submission.sections.upload.delete.confirm.cancel": "રદ કરો",
- // "submission.sections.upload.delete.confirm.info": "This operation can't be undone. Are you sure?",
"submission.sections.upload.delete.confirm.info": "આ કામગીરી પાછી લઈ શકાતી નથી. શું તમે ખાતરી કરો છો?",
- // "submission.sections.upload.delete.confirm.submit": "Yes, I'm sure",
"submission.sections.upload.delete.confirm.submit": "હા, હું ખાતરી કરું છું",
- // "submission.sections.upload.delete.confirm.title": "Delete bitstream",
"submission.sections.upload.delete.confirm.title": "બિટસ્ટ્રીમ કાઢી નાખો",
- // "submission.sections.upload.delete.submit": "Delete",
"submission.sections.upload.delete.submit": "કાઢી નાખો",
- // "submission.sections.upload.download.title": "Download bitstream",
"submission.sections.upload.download.title": "બિટસ્ટ્રીમ ડાઉનલોડ કરો",
- // "submission.sections.upload.drop-message": "Drop files to attach them to the item",
"submission.sections.upload.drop-message": "વસ્તુ સાથે જોડવા માટે ફાઇલો છોડો",
- // "submission.sections.upload.edit.title": "Edit bitstream",
"submission.sections.upload.edit.title": "બિટસ્ટ્રીમ સંપાદિત કરો",
- // "submission.sections.upload.form.access-condition-label": "Access condition type",
"submission.sections.upload.form.access-condition-label": "ઍક્સેસ શરતો પ્રકાર",
- // "submission.sections.upload.form.access-condition-hint": "Select an access condition to apply on the bitstream once the item is deposited",
"submission.sections.upload.form.access-condition-hint": "વસ્તુ ડિપોઝિટ થયા પછી બિટસ્ટ્રીમ પર લાગુ કરવા માટે ઍક્સેસ શરતો પસંદ કરો",
- // "submission.sections.upload.form.date-required": "Date is required.",
"submission.sections.upload.form.date-required": "તારીખ જરૂરી છે.",
- // "submission.sections.upload.form.date-required-from": "Grant access from date is required.",
"submission.sections.upload.form.date-required-from": "તારીખથી ઍક્સેસ આપો જરૂરી છે.",
- // "submission.sections.upload.form.date-required-until": "Grant access until date is required.",
"submission.sections.upload.form.date-required-until": "તારીખ સુધી ઍક્સેસ આપો જરૂરી છે.",
- // "submission.sections.upload.form.from-label": "Grant access from",
"submission.sections.upload.form.from-label": "તારીખથી ઍક્સેસ આપો",
- // "submission.sections.upload.form.from-hint": "Select the date from which the related access condition is applied",
"submission.sections.upload.form.from-hint": "સંબંધિત ઍક્સેસ શરતો લાગુ થતી તારીખ પસંદ કરો",
- // "submission.sections.upload.form.from-placeholder": "From",
"submission.sections.upload.form.from-placeholder": "થી",
- // "submission.sections.upload.form.group-label": "Group",
"submission.sections.upload.form.group-label": "સમૂહ",
- // "submission.sections.upload.form.group-required": "Group is required.",
"submission.sections.upload.form.group-required": "સમૂહ જરૂરી છે.",
- // "submission.sections.upload.form.until-label": "Grant access until",
"submission.sections.upload.form.until-label": "તારીખ સુધી ઍક્સેસ આપો",
- // "submission.sections.upload.form.until-hint": "Select the date until which the related access condition is applied",
"submission.sections.upload.form.until-hint": "સંબંધિત ઍક્સેસ શરતો લાગુ થતી તારીખ પસંદ કરો",
- // "submission.sections.upload.form.until-placeholder": "Until",
"submission.sections.upload.form.until-placeholder": "સુધી",
- // "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": "Uploaded files in the {{collectionName}} collection will be accessible according to the following group(s):",
+ "submission.sections.upload.header.policy.default.nolist": "{{collectionName}} સંગ્રહમાં અપલોડ કરેલી ફાઇલો નીચેના સમૂહો અનુસાર ઍક્સેસ કરી શકાશે:",
- // "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": "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):",
+ "submission.sections.upload.header.policy.default.withlist": "કૃપા કરીને નોંધો કે {{collectionName}} સંગ્રહમાં અપલોડ કરેલી ફાઇલો, એકલ ફાઇલ માટે સ્પષ્ટપણે નક્કી કરેલા સમૂહો ઉપરાંત, નીચેના સમૂહો સાથે ઍક્સેસ કરી શકાશે:",
- // "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 by dragging & dropping them anywhere on the page.",
"submission.sections.upload.info": "અહીં તમને વસ્તુમાં હાલની બધી ફાઇલો મળશે. તમે ફાઇલ મેટાડેટા અને ઍક્સેસ શરતોને અપડેટ કરી શકો છો અથવા પેજ પર ક્યાંય પણ ડ્રેગ અને ડ્રોપ કરીને વધારાની ફાઇલો અપલોડ કરી શકો છો.",
- // "submission.sections.upload.no-entry": "No",
"submission.sections.upload.no-entry": "ના",
- // "submission.sections.upload.no-file-uploaded": "No file uploaded yet.",
"submission.sections.upload.no-file-uploaded": "હજી સુધી કોઈ ફાઇલ અપલોડ કરવામાં આવી નથી.",
- // "submission.sections.upload.save-metadata": "Save metadata",
"submission.sections.upload.save-metadata": "મેટાડેટા સાચવો",
- // "submission.sections.upload.undo": "Cancel",
"submission.sections.upload.undo": "રદ કરો",
- // "submission.sections.upload.upload-failed": "Upload failed",
"submission.sections.upload.upload-failed": "અપલોડ નિષ્ફળ",
- // "submission.sections.upload.upload-successful": "Upload successful",
"submission.sections.upload.upload-successful": "અપલોડ સફળ",
- // "submission.sections.custom-url.label.previous-urls": "Previous Urls",
- // TODO New key - Add a translation
- "submission.sections.custom-url.label.previous-urls": "Previous Urls",
-
- // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ",
- // TODO New key - Add a translation
- "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ",
-
- // "submission.sections.custom-url.url.placeholder": "Custom URL",
- // TODO New key - Add a translation
- "submission.sections.custom-url.url.placeholder": "Custom URL",
-
- // "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.",
"submission.sections.accesses.form.discoverable-description": "જ્યારે ચકાસવામાં આવે છે, આ વસ્તુ શોધ/બ્રાઉઝમાં શોધી શકાય તેવી હશે. જ્યારે અનચેક કરવામાં આવે છે, વસ્તુ માત્ર સીધી લિંક દ્વારા ઉપલબ્ધ હશે અને ક્યારેય શોધ/બ્રાઉઝમાં દેખાશે નહીં.",
- // "submission.sections.accesses.form.discoverable-label": "Discoverable",
"submission.sections.accesses.form.discoverable-label": "શોધી શકાય તેવી",
- // "submission.sections.accesses.form.access-condition-label": "Access condition type",
"submission.sections.accesses.form.access-condition-label": "ઍક્સેસ શરતો પ્રકાર",
- // "submission.sections.accesses.form.access-condition-hint": "Select an access condition to apply on the item once it is deposited",
"submission.sections.accesses.form.access-condition-hint": "વસ્તુ ડિપોઝિટ થયા પછી વસ્તુ પર લાગુ કરવા માટે ઍક્સેસ શરતો પસંદ કરો",
- // "submission.sections.accesses.form.date-required": "Date is required.",
"submission.sections.accesses.form.date-required": "તારીખ જરૂરી છે.",
- // "submission.sections.accesses.form.date-required-from": "Grant access from date is required.",
"submission.sections.accesses.form.date-required-from": "તારીખથી ઍક્સેસ આપો જરૂરી છે.",
- // "submission.sections.accesses.form.date-required-until": "Grant access until date is required.",
"submission.sections.accesses.form.date-required-until": "તારીખ સુધી ઍક્સેસ આપો જરૂરી છે.",
- // "submission.sections.accesses.form.from-label": "Grant access from",
"submission.sections.accesses.form.from-label": "તારીખથી ઍક્સેસ આપો",
- // "submission.sections.accesses.form.from-hint": "Select the date from which the related access condition is applied",
"submission.sections.accesses.form.from-hint": "સંબંધિત ઍક્સેસ શરતો લાગુ થતી તારીખ પસંદ કરો",
- // "submission.sections.accesses.form.from-placeholder": "From",
"submission.sections.accesses.form.from-placeholder": "થી",
- // "submission.sections.accesses.form.group-label": "Group",
"submission.sections.accesses.form.group-label": "સમૂહ",
- // "submission.sections.accesses.form.group-required": "Group is required.",
"submission.sections.accesses.form.group-required": "સમૂહ જરૂરી છે.",
- // "submission.sections.accesses.form.until-label": "Grant access until",
"submission.sections.accesses.form.until-label": "તારીખ સુધી ઍક્સેસ આપો",
- // "submission.sections.accesses.form.until-hint": "Select the date until which the related access condition is applied",
"submission.sections.accesses.form.until-hint": "સંબંધિત ઍક્સેસ શરતો લાગુ થતી તારીખ પસંદ કરો",
- // "submission.sections.accesses.form.until-placeholder": "Until",
"submission.sections.accesses.form.until-placeholder": "સુધી",
- // "submission.sections.duplicates.none": "No duplicates were detected.",
"submission.sections.duplicates.none": "કોઈ નકલો શોધી નથી.",
- // "submission.sections.duplicates.detected": "Potential duplicates were detected. Please review the list below.",
"submission.sections.duplicates.detected": "સંભવિત નકલો શોધી છે. કૃપા કરીને નીચેની યાદી સમીક્ષા કરો.",
- // "submission.sections.duplicates.in-workspace": "This item is in workspace",
"submission.sections.duplicates.in-workspace": "આ વસ્તુ વર્કસ્પેસમાં છે",
- // "submission.sections.duplicates.in-workflow": "This item is in workflow",
"submission.sections.duplicates.in-workflow": "આ વસ્તુ વર્કફ્લોમાં છે",
- // "submission.sections.license.granted-label": "I confirm the license above",
"submission.sections.license.granted-label": "હું ઉપરના લાઇસન્સને મંજૂરી આપું છું",
- // "submission.sections.license.required": "You must accept the license",
"submission.sections.license.required": "તમારે લાઇસન્સ સ્વીકારવું પડશે",
- // "submission.sections.license.notgranted": "You must accept the license",
"submission.sections.license.notgranted": "તમારે લાઇસન્સ સ્વીકારવું પડશે",
- // "submission.sections.sherpa.publication.information": "Publication information",
"submission.sections.sherpa.publication.information": "પ્રકાશન માહિતી",
- // "submission.sections.sherpa.publication.information.title": "Title",
"submission.sections.sherpa.publication.information.title": "શીર્ષક",
- // "submission.sections.sherpa.publication.information.issns": "ISSNs",
"submission.sections.sherpa.publication.information.issns": "ISSNs",
- // "submission.sections.sherpa.publication.information.url": "URL",
"submission.sections.sherpa.publication.information.url": "URL",
- // "submission.sections.sherpa.publication.information.publishers": "Publisher",
"submission.sections.sherpa.publication.information.publishers": "પ્રકાશક",
- // "submission.sections.sherpa.publication.information.romeoPub": "Romeo Pub",
"submission.sections.sherpa.publication.information.romeoPub": "Romeo Pub",
- // "submission.sections.sherpa.publication.information.zetoPub": "Zeto Pub",
"submission.sections.sherpa.publication.information.zetoPub": "Zeto Pub",
- // "submission.sections.sherpa.publisher.policy": "Publisher Policy",
"submission.sections.sherpa.publisher.policy": "પ્રકાશક નીતિ",
- // "submission.sections.sherpa.publisher.policy.description": "The below information was found via Sherpa Romeo. Based on the policies of your publisher, it provides advice regarding whether an embargo may be necessary and/or which files you are allowed to upload. If you have questions, please contact your site administrator via the feedback form in the footer.",
"submission.sections.sherpa.publisher.policy.description": "નીચેની માહિતી Sherpa Romeo દ્વારા મળી છે. તમારા પ્રકાશકની નીતિઓના આધારે, તે સલાહ આપે છે કે શું એક એમ્બાર્ગો જરૂરી હોઈ શકે છે અને/અથવા તમે કયા ફાઇલો અપલોડ કરી શકો છો. જો તમને પ્રશ્નો હોય, તો કૃપા કરીને ફૂટર માં ફીડબેક ફોર્મ દ્વારા તમારા સાઇટ એડમિનિસ્ટ્રેટરનો સંપર્ક કરો.",
- // "submission.sections.sherpa.publisher.policy.openaccess": "Open Access pathways permitted by this journal's policy are listed below by article version. Click on a pathway for a more detailed view",
"submission.sections.sherpa.publisher.policy.openaccess": "આ જર્નલની નીતિ દ્વારા પરવાનગી આપેલા ઓપન ઍક્સેસ માર્ગો નીચે લેખના સંસ્કરણ દ્વારા સૂચિબદ્ધ છે. વધુ વિગતવાર દૃશ્ય માટે માર્ગ પર ક્લિક કરો",
- // "submission.sections.sherpa.publisher.policy.more.information": "For more information, please see the following links:",
- // TODO New key - Add a translation
- "submission.sections.sherpa.publisher.policy.more.information": "For more information, please see the following links:",
+ "submission.sections.sherpa.publisher.policy.more.information": "વધુ માહિતી માટે, કૃપા કરીને નીચેના લિંક જુઓ:",
- // "submission.sections.sherpa.publisher.policy.version": "Version",
"submission.sections.sherpa.publisher.policy.version": "સંસ્કરણ",
- // "submission.sections.sherpa.publisher.policy.embargo": "Embargo",
"submission.sections.sherpa.publisher.policy.embargo": "એમ્બાર્ગો",
- // "submission.sections.sherpa.publisher.policy.noembargo": "No Embargo",
"submission.sections.sherpa.publisher.policy.noembargo": "કોઈ એમ્બાર્ગો નથી",
- // "submission.sections.sherpa.publisher.policy.nolocation": "None",
"submission.sections.sherpa.publisher.policy.nolocation": "કોઈ નથી",
- // "submission.sections.sherpa.publisher.policy.license": "License",
"submission.sections.sherpa.publisher.policy.license": "લાઇસન્સ",
- // "submission.sections.sherpa.publisher.policy.prerequisites": "Prerequisites",
"submission.sections.sherpa.publisher.policy.prerequisites": "પૂર્વશરતો",
- // "submission.sections.sherpa.publisher.policy.location": "Location",
"submission.sections.sherpa.publisher.policy.location": "સ્થાન",
- // "submission.sections.sherpa.publisher.policy.conditions": "Conditions",
"submission.sections.sherpa.publisher.policy.conditions": "શરતો",
- // "submission.sections.sherpa.publisher.policy.refresh": "Refresh",
"submission.sections.sherpa.publisher.policy.refresh": "રીફ્રેશ",
- // "submission.sections.sherpa.record.information": "Record Information",
"submission.sections.sherpa.record.information": "રેકોર્ડ માહિતી",
- // "submission.sections.sherpa.record.information.id": "ID",
"submission.sections.sherpa.record.information.id": "ID",
- // "submission.sections.sherpa.record.information.date.created": "Date Created",
"submission.sections.sherpa.record.information.date.created": "તારીખ બનાવેલ",
- // "submission.sections.sherpa.record.information.date.modified": "Last Modified",
"submission.sections.sherpa.record.information.date.modified": "છેલ્લે સુધારેલ",
- // "submission.sections.sherpa.record.information.uri": "URI",
"submission.sections.sherpa.record.information.uri": "URI",
- // "submission.sections.sherpa.error.message": "There was an error retrieving sherpa information",
"submission.sections.sherpa.error.message": "Sherpa માહિતી મેળવવામાં ભૂલ આવી",
- // "submission.submit.breadcrumbs": "New submission",
"submission.submit.breadcrumbs": "નવું સબમિશન",
- // "submission.submit.title": "New submission",
"submission.submit.title": "નવું સબમિશન",
- // "submission.workflow.generic.delete": "Delete",
"submission.workflow.generic.delete": "કાઢી નાખો",
- // "submission.workflow.generic.delete-help": "Select this option to discard this item. You will then be asked to confirm it.",
"submission.workflow.generic.delete-help": "આ વસ્તુને રદ કરવા માટે આ વિકલ્પ પસંદ કરો. પછી તમને તેની પુષ્ટિ કરવા માટે પૂછવામાં આવશે.",
- // "submission.workflow.generic.edit": "Edit",
"submission.workflow.generic.edit": "સંપાદિત કરો",
- // "submission.workflow.generic.edit-help": "Select this option to change the item's metadata.",
"submission.workflow.generic.edit-help": "વસ્તુના મેટાડેટા બદલવા માટે આ વિકલ્પ પસંદ કરો.",
- // "submission.workflow.generic.view": "View",
"submission.workflow.generic.view": "જુઓ",
- // "submission.workflow.generic.view-help": "Select this option to view the item's metadata.",
"submission.workflow.generic.view-help": "વસ્તુના મેટાડેટા જોવા માટે આ વિકલ્પ પસંદ કરો.",
- // "submission.workflow.generic.submit_select_reviewer": "Select Reviewer",
"submission.workflow.generic.submit_select_reviewer": "સમીક્ષક પસંદ કરો",
- // "submission.workflow.generic.submit_select_reviewer-help": "",
"submission.workflow.generic.submit_select_reviewer-help": "",
- // "submission.workflow.generic.submit_score": "Rate",
"submission.workflow.generic.submit_score": "મૂલ્યાંકન",
- // "submission.workflow.generic.submit_score-help": "",
"submission.workflow.generic.submit_score-help": "",
- // "submission.workflow.tasks.claimed.approve": "Approve",
"submission.workflow.tasks.claimed.approve": "મંજૂર કરો",
- // "submission.workflow.tasks.claimed.approve_help": "If you have reviewed the item and it is suitable for inclusion in the collection, select \"Approve\".",
"submission.workflow.tasks.claimed.approve_help": "જો તમે વસ્તુની સમીક્ષા કરી છે અને તે સંગ્રહમાં સમાવેશ માટે યોગ્ય છે, તો \\\"મંજૂર કરો\\\" પસંદ કરો.",
- // "submission.workflow.tasks.claimed.edit": "Edit",
"submission.workflow.tasks.claimed.edit": "સંપાદિત કરો",
- // "submission.workflow.tasks.claimed.edit_help": "Select this option to change the item's metadata.",
"submission.workflow.tasks.claimed.edit_help": "વસ્તુના મેટાડેટા બદલવા માટે આ વિકલ્પ પસંદ કરો.",
- // "submission.workflow.tasks.claimed.decline": "Decline",
"submission.workflow.tasks.claimed.decline": "નકારો",
- // "submission.workflow.tasks.claimed.decline_help": "",
"submission.workflow.tasks.claimed.decline_help": "",
- // "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.",
"submission.workflow.tasks.claimed.reject.reason.info": "કૃપા કરીને નીચેના બોક્સમાં સબમિશનને નકારવાના તમારા કારણ દાખલ કરો, જે દર્શાવે છે કે સબમિટર સમસ્યા ઠીક કરી શકે છે અને ફરીથી સબમિટ કરી શકે છે.",
- // "submission.workflow.tasks.claimed.reject.reason.placeholder": "Describe the reason of reject",
"submission.workflow.tasks.claimed.reject.reason.placeholder": "નકારના કારણનું વર્ણન કરો",
- // "submission.workflow.tasks.claimed.reject.reason.submit": "Reject item",
"submission.workflow.tasks.claimed.reject.reason.submit": "વસ્તુ નકારો",
- // "submission.workflow.tasks.claimed.reject.reason.title": "Reason",
"submission.workflow.tasks.claimed.reject.reason.title": "કારણ",
- // "submission.workflow.tasks.claimed.reject.submit": "Reject",
"submission.workflow.tasks.claimed.reject.submit": "નકારો",
- // "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.",
"submission.workflow.tasks.claimed.reject_help": "જો તમે વસ્તુની સમીક્ષા કરી છે અને તે સંગ્રહમાં સમાવેશ માટે યોગ્ય નથી, તો \\\"નકારો\\\" પસંદ કરો. પછી તમને સંદેશ દાખલ કરવા માટે પૂછવામાં આવશે કે વસ્તુ કેમ અનુકૂળ નથી, અને સબમિટરએ કંઈક બદલવું જોઈએ અને ફરીથી સબમિટ કરવું જોઈએ.",
- // "submission.workflow.tasks.claimed.return": "Return to pool",
"submission.workflow.tasks.claimed.return": "પુલ પર પાછા જાઓ",
- // "submission.workflow.tasks.claimed.return_help": "Return the task to the pool so that another user may perform the task.",
"submission.workflow.tasks.claimed.return_help": "ટાસ્કને પુલ પર પાછા આપો જેથી અન્ય વપરાશકર્તા ટાસ્ક કરી શકે.",
- // "submission.workflow.tasks.generic.error": "Error occurred during operation...",
"submission.workflow.tasks.generic.error": "ઓપરેશન દરમિયાન ભૂલ આવી...",
- // "submission.workflow.tasks.generic.processing": "Processing...",
"submission.workflow.tasks.generic.processing": "પ્રક્રિયા...",
- // "submission.workflow.tasks.generic.submitter": "Submitter",
"submission.workflow.tasks.generic.submitter": "સબમિટર",
- // "submission.workflow.tasks.generic.success": "Operation successful",
"submission.workflow.tasks.generic.success": "ઓપરેશન સફળ",
- // "submission.workflow.tasks.pool.claim": "Claim",
"submission.workflow.tasks.pool.claim": "દાવો",
- // "submission.workflow.tasks.pool.claim_help": "Assign this task to yourself.",
"submission.workflow.tasks.pool.claim_help": "આ ટાસ્કને તમારા માટે સોંપો.",
- // "submission.workflow.tasks.pool.hide-detail": "Hide detail",
"submission.workflow.tasks.pool.hide-detail": "વિગત છુપાવો",
- // "submission.workflow.tasks.pool.show-detail": "Show detail",
"submission.workflow.tasks.pool.show-detail": "વિગત બતાવો",
- // "submission.workflow.tasks.duplicates": "potential duplicates were detected for this item. Claim and edit this item to see details.",
"submission.workflow.tasks.duplicates": "આ વસ્તુ માટે સંભવિત નકલો શોધી છે. વિગતો જોવા માટે આ વસ્તુનો દાવો કરો અને સંપાદિત કરો.",
- // "submission.workspace.generic.view": "View",
"submission.workspace.generic.view": "જુઓ",
- // "submission.workspace.generic.view-help": "Select this option to view the item's metadata.",
"submission.workspace.generic.view-help": "વસ્તુના મેટાડેટા જોવા માટે આ વિકલ્પ પસંદ કરો.",
- // "submitter.empty": "N/A",
"submitter.empty": "N/A",
- // "subscriptions.title": "Subscriptions",
"subscriptions.title": "સબ્સ્ક્રિપ્શન્સ",
- // "subscriptions.item": "Subscriptions for items",
"subscriptions.item": "વસ્તુઓ માટે સબ્સ્ક્રિપ્શન્સ",
- // "subscriptions.collection": "Subscriptions for collections",
"subscriptions.collection": "સંગ્રહો માટે સબ્સ્ક્રિપ્શન્સ",
- // "subscriptions.community": "Subscriptions for communities",
"subscriptions.community": "સમુદાયો માટે સબ્સ્ક્રિપ્શન્સ",
- // "subscriptions.subscription_type": "Subscription type",
"subscriptions.subscription_type": "સબ્સ્ક્રિપ્શન પ્રકાર",
- // "subscriptions.frequency": "Subscription frequency",
"subscriptions.frequency": "સબ્સ્ક્રિપ્શન આવર્તન",
- // "subscriptions.frequency.D": "Daily",
"subscriptions.frequency.D": "દૈનિક",
- // "subscriptions.frequency.M": "Monthly",
"subscriptions.frequency.M": "માસિક",
- // "subscriptions.frequency.W": "Weekly",
"subscriptions.frequency.W": "સાપ્તાહિક",
- // "subscriptions.tooltip": "Subscribe",
"subscriptions.tooltip": "સબ્સ્ક્રાઇબ કરો",
- // "subscriptions.manage": "Manage Subscription",
- // TODO New key - Add a translation
- "subscriptions.manage": "Manage Subscription",
+ "subscriptions.unsubscribe": "સબ્સ્ક્રિપ્શન રદ કરો",
- // "subscriptions.modal.title": "Subscriptions",
"subscriptions.modal.title": "સબ્સ્ક્રિપ્શન્સ",
- // "subscriptions.modal.type-frequency": "Type and frequency",
"subscriptions.modal.type-frequency": "પ્રકાર અને આવર્તન",
- // "subscriptions.modal.close": "Close",
"subscriptions.modal.close": "બંધ કરો",
- // "subscriptions.modal.delete-info": "To remove this subscription, please visit the \"Subscriptions\" page under your user profile",
"subscriptions.modal.delete-info": "આ સબ્સ્ક્રિપ્શનને દૂર કરવા માટે, કૃપા કરીને તમારા વપરાશકર્તા પ્રોફાઇલ હેઠળ \\\"સબ્સ્ક્રિપ્શન્સ\\\" પેજ પર જાઓ",
- // "subscriptions.modal.new-subscription-form.type.content": "Content",
"subscriptions.modal.new-subscription-form.type.content": "સામગ્રી",
- // "subscriptions.modal.new-subscription-form.frequency.D": "Daily",
"subscriptions.modal.new-subscription-form.frequency.D": "દૈનિક",
- // "subscriptions.modal.new-subscription-form.frequency.W": "Weekly",
"subscriptions.modal.new-subscription-form.frequency.W": "સાપ્તાહિક",
- // "subscriptions.modal.new-subscription-form.frequency.M": "Monthly",
"subscriptions.modal.new-subscription-form.frequency.M": "માસિક",
- // "subscriptions.modal.new-subscription-form.submit": "Submit",
"subscriptions.modal.new-subscription-form.submit": "સબમિટ કરો",
- // "subscriptions.modal.new-subscription-form.processing": "Processing...",
"subscriptions.modal.new-subscription-form.processing": "પ્રક્રિયા...",
- // "subscriptions.modal.create.success": "Subscribed to {{ type }} successfully.",
"subscriptions.modal.create.success": "{{ type }} માટે સફળતાપૂર્વક સબ્સ્ક્રાઇબ કર્યું.",
- // "subscriptions.modal.delete.success": "Subscription deleted successfully",
"subscriptions.modal.delete.success": "સબ્સ્ક્રિપ્શન સફળતાપૂર્વક દૂર કર્યું",
- // "subscriptions.modal.update.success": "Subscription to {{ type }} updated successfully",
"subscriptions.modal.update.success": "{{ type }} માટે સબ્સ્ક્રિપ્શન સફળતાપૂર્વક અપડેટ કર્યું",
- // "subscriptions.modal.create.error": "An error occurs during the subscription creation",
"subscriptions.modal.create.error": "સબ્સ્ક્રિપ્શન બનાવવાની પ્રક્રિયા દરમિયાન ભૂલ આવી",
- // "subscriptions.modal.delete.error": "An error occurs during the subscription delete",
"subscriptions.modal.delete.error": "સબ્સ્ક્રિપ્શન દૂર કરતી વખતે ભૂલ આવી",
- // "subscriptions.modal.update.error": "An error occurs during the subscription update",
"subscriptions.modal.update.error": "સબ્સ્ક્રિપ્શન અપડેટ કરતી વખતે ભૂલ આવી",
- // "subscriptions.table.dso": "Subject",
"subscriptions.table.dso": "વિષય",
- // "subscriptions.table.subscription_type": "Subscription Type",
"subscriptions.table.subscription_type": "સબ્સ્ક્રિપ્શન પ્રકાર",
- // "subscriptions.table.subscription_frequency": "Subscription Frequency",
"subscriptions.table.subscription_frequency": "સબ્સ્ક્રિપ્શન આવર્તન",
- // "subscriptions.table.action": "Action",
"subscriptions.table.action": "ક્રિયા",
- // "subscriptions.table.edit": "Edit",
"subscriptions.table.edit": "સંપાદિત કરો",
- // "subscriptions.table.delete": "Delete",
"subscriptions.table.delete": "કાઢી નાખો",
- // "subscriptions.table.not-available": "Not available",
"subscriptions.table.not-available": "ઉપલબ્ધ નથી",
- // "subscriptions.table.not-available-message": "The subscribed item has been deleted, or you don't currently have the permission to view it",
"subscriptions.table.not-available-message": "સબ્સ્ક્રાઇબ કરેલી વસ્તુને કાઢી નાખવામાં આવી છે, અથવા તમને હાલમાં તેને જોવા માટે પરવાનગી નથી",
- // "subscriptions.table.empty.message": "You do not have any subscriptions at this time. To subscribe to email updates for a community or collection, use the subscription button on the object's page.",
"subscriptions.table.empty.message": "તમારે આ સમયે કોઈ સબ્સ્ક્રિપ્શન નથી. સમુદાય અથવા સંગ્રહ માટે ઇમેઇલ અપડેટ્સ માટે સબ્સ્ક્રાઇબ કરવા માટે, વસ્તુના પેજ પર સબ્સ્ક્રિપ્શન બટનનો ઉપયોગ કરો.",
- // "thumbnail.default.alt": "Thumbnail Image",
"thumbnail.default.alt": "થંબનેલ છબી",
- // "thumbnail.default.placeholder": "No Thumbnail Available",
"thumbnail.default.placeholder": "કોઈ થંબનેલ ઉપલબ્ધ નથી",
- // "thumbnail.project.alt": "Project Logo",
"thumbnail.project.alt": "પ્રોજેક્ટ લોગો",
- // "thumbnail.project.placeholder": "Project Placeholder Image",
"thumbnail.project.placeholder": "પ્રોજેક્ટ પ્લેસહોલ્ડર છબી",
- // "thumbnail.orgunit.alt": "OrgUnit Logo",
"thumbnail.orgunit.alt": "OrgUnit લોગો",
- // "thumbnail.orgunit.placeholder": "OrgUnit Placeholder Image",
"thumbnail.orgunit.placeholder": "OrgUnit પ્લેસહોલ્ડર છબી",
- // "thumbnail.person.alt": "Profile Picture",
"thumbnail.person.alt": "પ્રોફાઇલ પિક્ચર",
- // "thumbnail.person.placeholder": "No Profile Picture Available",
"thumbnail.person.placeholder": "કોઈ પ્રોફાઇલ પિક્ચર ઉપલબ્ધ નથી",
- // "title": "DSpace",
"title": "DSpace",
- // "vocabulary-treeview.header": "Hierarchical tree view",
"vocabulary-treeview.header": "હાયરાર્કિકલ ટ્રી વ્યૂ",
- // "vocabulary-treeview.load-more": "Load more",
"vocabulary-treeview.load-more": "વધુ લોડ કરો",
- // "vocabulary-treeview.search.form.reset": "Reset",
"vocabulary-treeview.search.form.reset": "રીસેટ",
- // "vocabulary-treeview.search.form.search": "Search",
"vocabulary-treeview.search.form.search": "શોધો",
- // "vocabulary-treeview.search.form.search-placeholder": "Filter results by typing the first few letters",
"vocabulary-treeview.search.form.search-placeholder": "પરિણામોને ફિલ્ટર કરવા માટે પ્રથમ થોડા અક્ષરો લખો",
- // "vocabulary-treeview.search.no-result": "There were no items to show",
"vocabulary-treeview.search.no-result": "દેખાવ માટે કોઈ વસ્તુઓ નહોતી",
- // "vocabulary-treeview.tree.description.nsi": "The Norwegian Science Index",
"vocabulary-treeview.tree.description.nsi": "નોર્વેજિયન સાયન્સ ઇન્ડેક્સ",
- // "vocabulary-treeview.tree.description.srsc": "Research Subject Categories",
"vocabulary-treeview.tree.description.srsc": "રિસર્ચ સબજેક્ટ કેટેગરીઝ",
- // "vocabulary-treeview.info": "Select a subject to add as search filter",
"vocabulary-treeview.info": "શોધ ફિલ્ટર તરીકે ઉમેરવા માટે વિષય પસંદ કરો",
- // "uploader.browse": "browse",
"uploader.browse": "બ્રાઉઝ કરો",
- // "uploader.drag-message": "Drag & Drop your files here",
"uploader.drag-message": "તમારી ફાઇલો અહીં ડ્રેગ અને ડ્રોપ કરો",
- // "uploader.delete.btn-title": "Delete",
"uploader.delete.btn-title": "કાઢી નાખો",
- // "uploader.or": ", or ",
"uploader.or": ", અથવા ",
- // "uploader.processing": "Processing uploaded file(s)... (it's now safe to close this page)",
"uploader.processing": "અપલોડ કરેલી ફાઇલોની પ્રક્રિયા કરી રહ્યું છે... (આ પેજને બંધ કરવું સુરક્ષિત છે)",
- // "uploader.queue-length": "Queue length",
"uploader.queue-length": "કતારની લંબાઈ",
- // "virtual-metadata.delete-item.info": "Select the types for which you want to save the virtual metadata as real metadata",
"virtual-metadata.delete-item.info": "વાસ્તવિક મેટાડેટા તરીકે વર્ચ્યુઅલ મેટાડેટા સાચવવા માટે તમે કયા પ્રકારો પસંદ કરવા માંગો છો તે પસંદ કરો",
- // "virtual-metadata.delete-item.modal-head": "The virtual metadata of this relation",
"virtual-metadata.delete-item.modal-head": "આ સંબંધના વર્ચ્યુઅલ મેટાડેટા",
- // "virtual-metadata.delete-relationship.modal-head": "Select the items for which you want to save the virtual metadata as real metadata",
"virtual-metadata.delete-relationship.modal-head": "વાસ્તવિક મેટાડેટા તરીકે વર્ચ્યુઅલ મેટાડેટા સાચવવા માટે તમે કયા વસ્તુઓ પસંદ કરવા માંગો છો તે પસંદ કરો",
- // "supervisedWorkspace.search.results.head": "Supervised Items",
"supervisedWorkspace.search.results.head": "સુપરવાઇઝ્ડ વસ્તુઓ",
- // "workspace.search.results.head": "Your submissions",
"workspace.search.results.head": "તમારા સબમિશન્સ",
- // "workflowAdmin.search.results.head": "Administer Workflow",
"workflowAdmin.search.results.head": "વર્કફ્લો સંચાલન",
- // "workflow.search.results.head": "Workflow tasks",
"workflow.search.results.head": "વર્કફ્લો ટાસ્ક્સ",
- // "otherWorkspace.search.results.head": "Shared workspace",
- // TODO New key - Add a translation
- "otherWorkspace.search.results.head": "Shared workspace",
-
- // "supervision.search.results.head": "Workflow and Workspace tasks",
"supervision.search.results.head": "વર્કફ્લો અને વર્કસ્પેસ ટાસ્ક્સ",
- // "workflow-item.edit.breadcrumbs": "Edit workflowitem",
"workflow-item.edit.breadcrumbs": "વર્કફ્લો આઇટમ સંપાદિત કરો",
- // "workflow-item.edit.title": "Edit workflowitem",
"workflow-item.edit.title": "વર્કફ્લો આઇટમ સંપાદિત કરો",
- // "workflow-item.delete.notification.success.title": "Deleted",
"workflow-item.delete.notification.success.title": "કાઢી નાખ્યું",
- // "workflow-item.delete.notification.success.content": "This workflow item was successfully deleted",
"workflow-item.delete.notification.success.content": "આ વર્કફ્લો આઇટમ સફળતાપૂર્વક કાઢી નાખવામાં આવ્યું",
- // "workflow-item.delete.notification.error.title": "Something went wrong",
"workflow-item.delete.notification.error.title": "કંઈક ખોટું થયું",
- // "workflow-item.delete.notification.error.content": "The workflow item could not be deleted",
"workflow-item.delete.notification.error.content": "વર્કફ્લો આઇટમને કાઢી શકાતું નથી",
- // "workflow-item.delete.title": "Delete workflow item",
"workflow-item.delete.title": "વર્કફ્લો આઇટમ કાઢી નાખો",
- // "workflow-item.delete.header": "Delete workflow item",
"workflow-item.delete.header": "વર્કફ્લો આઇટમ કાઢી નાખો",
- // "workflow-item.delete.button.cancel": "Cancel",
"workflow-item.delete.button.cancel": "રદ કરો",
- // "workflow-item.delete.button.confirm": "Delete",
"workflow-item.delete.button.confirm": "કાઢી નાખો",
- // "workflow-item.send-back.notification.success.title": "Sent back to submitter",
"workflow-item.send-back.notification.success.title": "સબમિટર પર પાછું મોકલ્યું",
- // "workflow-item.send-back.notification.success.content": "This workflow item was successfully sent back to the submitter",
"workflow-item.send-back.notification.success.content": "આ વર્કફ્લો આઇટમ સફળતાપૂર્વક સબમિટર પર પાછું મોકલવામાં આવ્યું",
- // "workflow-item.send-back.notification.error.title": "Something went wrong",
"workflow-item.send-back.notification.error.title": "કંઈક ખોટું થયું",
- // "workflow-item.send-back.notification.error.content": "The workflow item could not be sent back to the submitter",
"workflow-item.send-back.notification.error.content": "વર્કફ્લો આઇટમને સબમિટર પર પાછું મોકલી શકાતું નથી",
- // "workflow-item.send-back.title": "Send workflow item back to submitter",
"workflow-item.send-back.title": "વર્કફ્લો આઇટમ સબમિટર પર પાછું મોકલો",
- // "workflow-item.send-back.header": "Send workflow item back to submitter",
"workflow-item.send-back.header": "વર્કફ્લો આઇટમ સબમિટર પર પાછું મોકલો",
- // "workflow-item.send-back.button.cancel": "Cancel",
"workflow-item.send-back.button.cancel": "રદ કરો",
- // "workflow-item.send-back.button.confirm": "Send back",
"workflow-item.send-back.button.confirm": "પાછું મોકલો",
- // "workflow-item.view.breadcrumbs": "Workflow View",
"workflow-item.view.breadcrumbs": "વર્કફ્લો દૃશ્ય",
- // "workspace-item.view.breadcrumbs": "Workspace View",
"workspace-item.view.breadcrumbs": "વર્કસ્પેસ દૃશ્ય",
- // "workspace-item.view.title": "Workspace View",
"workspace-item.view.title": "વર્કસ્પેસ દૃશ્ય",
- // "workspace-item.delete.breadcrumbs": "Workspace Delete",
"workspace-item.delete.breadcrumbs": "વર્કસ્પેસ કાઢી નાખો",
- // "workspace-item.delete.header": "Delete workspace item",
"workspace-item.delete.header": "વર્કસ્પેસ આઇટમ કાઢી નાખો",
- // "workspace-item.delete.button.confirm": "Delete",
"workspace-item.delete.button.confirm": "કાઢી નાખો",
- // "workspace-item.delete.button.cancel": "Cancel",
"workspace-item.delete.button.cancel": "રદ કરો",
- // "workspace-item.delete.notification.success.title": "Deleted",
"workspace-item.delete.notification.success.title": "કાઢી નાખ્યું",
- // "workspace-item.delete.title": "This workspace item was successfully deleted",
"workspace-item.delete.title": "આ વર્કસ્પેસ આઇટમ સફળતાપૂર્વક કાઢી નાખવામાં આવ્યું",
- // "workspace-item.delete.notification.error.title": "Something went wrong",
"workspace-item.delete.notification.error.title": "કંઈક ખોટું થયું",
- // "workspace-item.delete.notification.error.content": "The workspace item could not be deleted",
"workspace-item.delete.notification.error.content": "વર્કસ્પેસ આઇટમને કાઢી શકાતું નથી",
- // "workflow-item.advanced.title": "Advanced workflow",
"workflow-item.advanced.title": "ઉન્નત વર્કફ્લો",
- // "workflow-item.selectrevieweraction.notification.success.title": "Selected reviewer",
"workflow-item.selectrevieweraction.notification.success.title": "પસંદ કરેલા સમીક્ષક",
- // "workflow-item.selectrevieweraction.notification.success.content": "The reviewer for this workflow item has been successfully selected",
"workflow-item.selectrevieweraction.notification.success.content": "આ વર્કફ્લો આઇટમ માટે સમીક્ષક સફળતાપૂર્વક પસંદ કરવામાં આવ્યો છે",
- // "workflow-item.selectrevieweraction.notification.error.title": "Something went wrong",
"workflow-item.selectrevieweraction.notification.error.title": "કંઈક ખોટું થયું",
- // "workflow-item.selectrevieweraction.notification.error.content": "Couldn't select the reviewer for this workflow item",
"workflow-item.selectrevieweraction.notification.error.content": "આ વર્કફ્લો આઇટમ માટે સમીક્ષક પસંદ કરી શકાતું નથી",
- // "workflow-item.selectrevieweraction.title": "Select Reviewer",
"workflow-item.selectrevieweraction.title": "સમીક્ષક પસંદ કરો",
- // "workflow-item.selectrevieweraction.header": "Select Reviewer",
"workflow-item.selectrevieweraction.header": "સમીક્ષક પસંદ કરો",
- // "workflow-item.selectrevieweraction.button.cancel": "Cancel",
"workflow-item.selectrevieweraction.button.cancel": "રદ કરો",
- // "workflow-item.selectrevieweraction.button.confirm": "Confirm",
"workflow-item.selectrevieweraction.button.confirm": "પુષ્ટિ કરો",
- // "workflow-item.scorereviewaction.notification.success.title": "Rating review",
"workflow-item.scorereviewaction.notification.success.title": "મૂલ્યાંકન સમીક્ષા",
- // "workflow-item.scorereviewaction.notification.success.content": "The rating for this item workflow item has been successfully submitted",
"workflow-item.scorereviewaction.notification.success.content": "આ આઇટમ વર્કફ્લો આઇટમ માટે મૂલ્યાંકન સફળતાપૂર્વક સબમિટ કર્યું છે",
- // "workflow-item.scorereviewaction.notification.error.title": "Something went wrong",
"workflow-item.scorereviewaction.notification.error.title": "કંઈક ખોટું થયું",
- // "workflow-item.scorereviewaction.notification.error.content": "Couldn't rate this item",
"workflow-item.scorereviewaction.notification.error.content": "આ આઇટમને મૂલ્યાંકન કરી શકાતું નથી",
- // "workflow-item.scorereviewaction.title": "Rate this item",
"workflow-item.scorereviewaction.title": "આ આઇટમને મૂલ્યાંકન કરો",
- // "workflow-item.scorereviewaction.header": "Rate this item",
"workflow-item.scorereviewaction.header": "આ આઇટમને મૂલ્યાંકન કરો",
- // "workflow-item.scorereviewaction.button.cancel": "Cancel",
"workflow-item.scorereviewaction.button.cancel": "રદ કરો",
- // "workflow-item.scorereviewaction.button.confirm": "Confirm",
"workflow-item.scorereviewaction.button.confirm": "પુષ્ટિ કરો",
- // "idle-modal.header": "Session will expire soon",
"idle-modal.header": "સત્ર ટૂંક સમયમાં સમાપ્ત થશે",
- // "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?",
"idle-modal.info": "સુરક્ષા કારણોસર, વપરાશકર્તા સત્રો {{ timeToExpire }} મિનિટની નિષ્ક્રિયતા પછી સમાપ્ત થાય છે. તમારું સત્ર ટૂંક સમયમાં સમાપ્ત થશે. શું તમે તેને વિસ્તૃત કરવા માંગો છો અથવા લોગ આઉટ કરવા માંગો છો?",
- // "idle-modal.log-out": "Log out",
"idle-modal.log-out": "લોગ આઉટ",
- // "idle-modal.extend-session": "Extend session",
"idle-modal.extend-session": "સત્ર વિસ્તૃત કરો",
- // "researcher.profile.action.processing": "Processing...",
"researcher.profile.action.processing": "પ્રક્રિયા...",
- // "researcher.profile.associated": "Researcher profile associated",
"researcher.profile.associated": "રિસર્ચર પ્રોફાઇલ સંકળાયેલ",
- // "researcher.profile.change-visibility.fail": "An unexpected error occurs while changing the profile visibility",
"researcher.profile.change-visibility.fail": "પ્રોફાઇલ દૃશ્યતા બદલતી વખતે અનપેક્ષિત ભૂલ આવી",
- // "researcher.profile.create.new": "Create new",
"researcher.profile.create.new": "નવું બનાવો",
- // "researcher.profile.create.success": "Researcher profile created successfully",
"researcher.profile.create.success": "રિસર્ચર પ્રોફાઇલ સફળતાપૂર્વક બનાવવામાં આવી",
- // "researcher.profile.create.fail": "An error occurs during the researcher profile creation",
"researcher.profile.create.fail": "રિસર્ચર પ્રોફાઇલ બનાવવાની પ્રક્રિયા દરમિયાન ભૂલ આવી",
- // "researcher.profile.delete": "Delete",
"researcher.profile.delete": "કાઢી નાખો",
- // "researcher.profile.expose": "Expose",
"researcher.profile.expose": "પ્રદર્શિત કરો",
- // "researcher.profile.hide": "Hide",
"researcher.profile.hide": "છુપાવો",
- // "researcher.profile.not.associated": "Researcher profile not yet associated",
"researcher.profile.not.associated": "રિસર્ચર પ્રોફાઇલ હજી સુધી સંકળાયેલ નથી",
- // "researcher.profile.view": "View",
"researcher.profile.view": "જુઓ",
- // "researcher.profile.private.visibility": "PRIVATE",
"researcher.profile.private.visibility": "ખાનગી",
- // "researcher.profile.public.visibility": "PUBLIC",
"researcher.profile.public.visibility": "જાહેર",
- // "researcher.profile.status": "Status:",
- // TODO New key - Add a translation
- "researcher.profile.status": "Status:",
+ "researcher.profile.status": "સ્થિતિ:",
- // "researcherprofile.claim.not-authorized": "You are not authorized to claim this item. For more details contact the administrator(s).",
"researcherprofile.claim.not-authorized": "તમે આ આઇટમનો દાવો કરવા માટે અધિકૃત નથી. વધુ વિગતો માટે એડમિનિસ્ટ્રેટરનો સંપર્ક કરો.",
- // "researcherprofile.error.claim.body": "An error occurred while claiming the profile, please try again later",
"researcherprofile.error.claim.body": "પ્રોફાઇલનો દાવો કરતી વખતે ભૂલ આવી, કૃપા કરીને પછીથી ફરી પ્રયાસ કરો",
- // "researcherprofile.error.claim.title": "Error",
"researcherprofile.error.claim.title": "ભૂલ",
- // "researcherprofile.success.claim.body": "Profile claimed with success",
"researcherprofile.success.claim.body": "પ્રોફાઇલનો દાવો સફળતાપૂર્વક થયો",
- // "researcherprofile.success.claim.title": "Success",
"researcherprofile.success.claim.title": "સફળતા",
- // "person.page.orcid.create": "Create an ORCID ID",
"person.page.orcid.create": "ORCID ID બનાવો",
- // "person.page.orcid.granted-authorizations": "Granted authorizations",
"person.page.orcid.granted-authorizations": "મંજૂર કરેલી અધિકૃતતાઓ",
- // "person.page.orcid.grant-authorizations": "Grant authorizations",
"person.page.orcid.grant-authorizations": "અધિકૃતતાઓ આપો",
- // "person.page.orcid.link": "Connect to ORCID ID",
"person.page.orcid.link": "ORCID ID સાથે કનેક્ટ કરો",
- // "person.page.orcid.link.processing": "Linking profile to ORCID...",
"person.page.orcid.link.processing": "પ્રોફાઇલને ORCID સાથે લિંક કરી રહ્યું છે...",
- // "person.page.orcid.link.error.message": "Something went wrong while connecting the profile with ORCID. If the problem persists, contact the administrator.",
"person.page.orcid.link.error.message": "પ્રોફાઇલને ORCID સાથે કનેક્ટ કરતી વખતે કંઈક ખોટું થયું. જો સમસ્યા ચાલુ રહે, તો એડમિનિસ્ટ્રેટરનો સંપર્ક કરો.",
- // "person.page.orcid.orcid-not-linked-message": "The ORCID iD of this profile ({{ orcid }}) has not yet been connected to an account on the ORCID registry or the connection is expired.",
"person.page.orcid.orcid-not-linked-message": "આ પ્રોફાઇલનો ORCID iD ({{ orcid }}) હજી સુધી ORCID રજિસ્ટ્રી સાથે કનેક્ટ થયો નથી અથવા કનેક્શન સમાપ્ત થઈ ગયું છે.",
- // "person.page.orcid.unlink": "Disconnect from ORCID",
"person.page.orcid.unlink": "ORCID થી ડિસકનેક્ટ કરો",
- // "person.page.orcid.unlink.processing": "Processing...",
"person.page.orcid.unlink.processing": "પ્રક્રિયા...",
- // "person.page.orcid.missing-authorizations": "Missing authorizations",
"person.page.orcid.missing-authorizations": "અધિકૃતતાઓ ગુમ છે",
- // "person.page.orcid.missing-authorizations-message": "The following authorizations are missing:",
- // TODO New key - Add a translation
- "person.page.orcid.missing-authorizations-message": "The following authorizations are missing:",
+ "person.page.orcid.missing-authorizations-message": "નીચેની અધિકૃતતાઓ ગુમ છે:",
- // "person.page.orcid.no-missing-authorizations-message": "Great! This box is empty, so you have granted all access rights to use all functions offers by your institution.",
"person.page.orcid.no-missing-authorizations-message": "શાનદાર! આ બોક્સ ખાલી છે, તેથી તમે તમારી સંસ્થા દ્વારા ઓફર કરેલી બધી સુવિધાઓનો ઉપયોગ કરવા માટે બધી ઍક્સેસ અધિકૃતતાઓ આપી છે.",
- // "person.page.orcid.no-orcid-message": "No ORCID iD associated yet. By clicking on the button below it is possible to link this profile with an ORCID account.",
"person.page.orcid.no-orcid-message": "હજી સુધી કોઈ ORCID iD સંકળાયેલ નથી. નીચેના બટન પર ક્લિક કરીને આ પ્રોફાઇલને ORCID એકાઉન્ટ સાથે લિંક કરી શકાય છે.",
- // "person.page.orcid.profile-preferences": "Profile preferences",
"person.page.orcid.profile-preferences": "પ્રોફાઇલ પસંદગીઓ",
- // "person.page.orcid.funding-preferences": "Funding preferences",
"person.page.orcid.funding-preferences": "ફંડિંગ પસંદગીઓ",
- // "person.page.orcid.publications-preferences": "Publication preferences",
"person.page.orcid.publications-preferences": "પ્રકાશન પસંદગીઓ",
- // "person.page.orcid.remove-orcid-message": "If you need to remove your ORCID, please contact the repository administrator",
"person.page.orcid.remove-orcid-message": "જો તમારે તમારો ORCID દૂર કરવાની જરૂર હોય, તો કૃપા કરીને રિપોઝિટરી એડમિનિસ્ટ્રેટરનો સંપર્ક કરો",
- // "person.page.orcid.save.preference.changes": "Update settings",
"person.page.orcid.save.preference.changes": "સેટિંગ્સ અપડેટ કરો",
- // "person.page.orcid.sync-profile.affiliation": "Affiliation",
"person.page.orcid.sync-profile.affiliation": "સંબંધ",
- // "person.page.orcid.sync-profile.biographical": "Biographical data",
"person.page.orcid.sync-profile.biographical": "જીવની માહિતી",
- // "person.page.orcid.sync-profile.education": "Education",
"person.page.orcid.sync-profile.education": "શિક્ષણ",
- // "person.page.orcid.sync-profile.identifiers": "Identifiers",
"person.page.orcid.sync-profile.identifiers": "ઓળખકર્તાઓ",
- // "person.page.orcid.sync-fundings.all": "All fundings",
"person.page.orcid.sync-fundings.all": "બધા ફંડિંગ્સ",
- // "person.page.orcid.sync-fundings.mine": "My fundings",
"person.page.orcid.sync-fundings.mine": "મારા ફંડિંગ્સ",
- // "person.page.orcid.sync-fundings.my_selected": "Selected fundings",
"person.page.orcid.sync-fundings.my_selected": "પસંદ કરેલા ફંડિંગ્સ",
- // "person.page.orcid.sync-fundings.disabled": "Disabled",
"person.page.orcid.sync-fundings.disabled": "અક્ષમ",
- // "person.page.orcid.sync-publications.all": "All publications",
"person.page.orcid.sync-publications.all": "બધા પ્રકાશનો",
- // "person.page.orcid.sync-publications.mine": "My publications",
"person.page.orcid.sync-publications.mine": "મારા પ્રકાશનો",
- // "person.page.orcid.sync-publications.my_selected": "Selected publications",
"person.page.orcid.sync-publications.my_selected": "પસંદ કરેલા પ્રકાશનો",
- // "person.page.orcid.sync-publications.disabled": "Disabled",
"person.page.orcid.sync-publications.disabled": "અક્ષમ",
- // "person.page.orcid.sync-queue.discard": "Discard the change and do not synchronize with the ORCID registry",
"person.page.orcid.sync-queue.discard": "બદલાવ રદ કરો અને ORCID રજિસ્ટ્રી સાથે સુમેળ ન કરો",
- // "person.page.orcid.sync-queue.discard.error": "The discarding of the ORCID queue record failed",
"person.page.orcid.sync-queue.discard.error": "ORCID કતાર રેકોર્ડને રદ કરવામાં નિષ્ફળ",
- // "person.page.orcid.sync-queue.discard.success": "The ORCID queue record have been discarded successfully",
"person.page.orcid.sync-queue.discard.success": "ORCID કતાર રેકોર્ડ સફળતાપૂર્વક રદ કરવામાં આવ્યો",
- // "person.page.orcid.sync-queue.empty-message": "The ORCID queue registry is empty",
"person.page.orcid.sync-queue.empty-message": "ORCID કતાર રજિસ્ટ્રી ખાલી છે",
- // "person.page.orcid.sync-queue.table.header.type": "Type",
"person.page.orcid.sync-queue.table.header.type": "પ્રકાર",
- // "person.page.orcid.sync-queue.table.header.description": "Description",
"person.page.orcid.sync-queue.table.header.description": "વર્ણન",
- // "person.page.orcid.sync-queue.table.header.action": "Action",
"person.page.orcid.sync-queue.table.header.action": "ક્રિયા",
- // "person.page.orcid.sync-queue.description.affiliation": "Affiliations",
"person.page.orcid.sync-queue.description.affiliation": "સંબંધ",
- // "person.page.orcid.sync-queue.description.country": "Country",
"person.page.orcid.sync-queue.description.country": "દેશ",
- // "person.page.orcid.sync-queue.description.education": "Educations",
"person.page.orcid.sync-queue.description.education": "શિક્ષણ",
- // "person.page.orcid.sync-queue.description.external_ids": "External ids",
"person.page.orcid.sync-queue.description.external_ids": "બાહ્ય ઓળખકર્તાઓ",
- // "person.page.orcid.sync-queue.description.other_names": "Other names",
"person.page.orcid.sync-queue.description.other_names": "અન્ય નામો",
- // "person.page.orcid.sync-queue.description.qualification": "Qualifications",
"person.page.orcid.sync-queue.description.qualification": "લાયકાત",
- // "person.page.orcid.sync-queue.description.researcher_urls": "Researcher urls",
"person.page.orcid.sync-queue.description.researcher_urls": "શોધક URLs",
- // "person.page.orcid.sync-queue.description.keywords": "Keywords",
"person.page.orcid.sync-queue.description.keywords": "કીવર્ડ્સ",
- // "person.page.orcid.sync-queue.tooltip.insert": "Add a new entry in the ORCID registry",
"person.page.orcid.sync-queue.tooltip.insert": "ORCID રજિસ્ટ્રીમાં નવી એન્ટ્રી ઉમેરો",
- // "person.page.orcid.sync-queue.tooltip.update": "Update this entry on the ORCID registry",
"person.page.orcid.sync-queue.tooltip.update": "આ એન્ટ્રી ORCID રજિસ્ટ્રી પર અપડેટ કરો",
- // "person.page.orcid.sync-queue.tooltip.delete": "Remove this entry from the ORCID registry",
"person.page.orcid.sync-queue.tooltip.delete": "આ એન્ટ્રી ORCID રજિસ્ટ્રીમાંથી દૂર કરો",
- // "person.page.orcid.sync-queue.tooltip.publication": "Publication",
"person.page.orcid.sync-queue.tooltip.publication": "પ્રકાશન",
- // "person.page.orcid.sync-queue.tooltip.project": "Project",
"person.page.orcid.sync-queue.tooltip.project": "પ્રોજેક્ટ",
- // "person.page.orcid.sync-queue.tooltip.affiliation": "Affiliation",
"person.page.orcid.sync-queue.tooltip.affiliation": "સંબંધ",
- // "person.page.orcid.sync-queue.tooltip.education": "Education",
"person.page.orcid.sync-queue.tooltip.education": "શિક્ષણ",
- // "person.page.orcid.sync-queue.tooltip.qualification": "Qualification",
"person.page.orcid.sync-queue.tooltip.qualification": "લાયકાત",
- // "person.page.orcid.sync-queue.tooltip.other_names": "Other name",
"person.page.orcid.sync-queue.tooltip.other_names": "અન્ય નામ",
- // "person.page.orcid.sync-queue.tooltip.country": "Country",
"person.page.orcid.sync-queue.tooltip.country": "દેશ",
- // "person.page.orcid.sync-queue.tooltip.keywords": "Keyword",
"person.page.orcid.sync-queue.tooltip.keywords": "કીવર્ડ",
- // "person.page.orcid.sync-queue.tooltip.external_ids": "External identifier",
"person.page.orcid.sync-queue.tooltip.external_ids": "બાહ્ય ઓળખકર્તા",
- // "person.page.orcid.sync-queue.tooltip.researcher_urls": "Researcher url",
"person.page.orcid.sync-queue.tooltip.researcher_urls": "શોધક URL",
- // "person.page.orcid.sync-queue.send": "Synchronize with ORCID registry",
"person.page.orcid.sync-queue.send": "ORCID રજિસ્ટ્રી સાથે સુમેળ કરો",
- // "person.page.orcid.sync-queue.send.unauthorized-error.title": "The submission to ORCID failed for missing authorizations.",
"person.page.orcid.sync-queue.send.unauthorized-error.title": "અધિકૃતતાઓ ગુમ થવાને કારણે ORCID પર સબમિશન નિષ્ફળ થયું.",
- // "person.page.orcid.sync-queue.send.unauthorized-error.content": "Click here to grant again the required permissions. If the problem persists, contact the administrator",
"person.page.orcid.sync-queue.send.unauthorized-error.content": "આધિકૃતતાઓ ફરીથી આપવા માટે અહીં ક્લિક કરો. જો સમસ્યા ચાલુ રહે, તો એડમિનિસ્ટ્રેટરનો સંપર્ક કરો",
- // "person.page.orcid.sync-queue.send.bad-request-error": "The submission to ORCID failed because the resource sent to ORCID registry is not valid",
"person.page.orcid.sync-queue.send.bad-request-error": "ORCID પર સબમિશન નિષ્ફળ થયું કારણ કે ORCID રજિસ્ટ્રીને મોકલવામાં આવેલ સંસાધન માન્ય નથી",
- // "person.page.orcid.sync-queue.send.error": "The submission to ORCID failed",
"person.page.orcid.sync-queue.send.error": "ORCID પર સબમિશન નિષ્ફળ થયું",
- // "person.page.orcid.sync-queue.send.conflict-error": "The submission to ORCID failed because the resource is already present on the ORCID registry",
"person.page.orcid.sync-queue.send.conflict-error": "ORCID પર સબમિશન નિષ્ફળ થયું કારણ કે સંસાધન પહેલાથી જ ORCID રજિસ્ટ્રી પર હાજર છે",
- // "person.page.orcid.sync-queue.send.not-found-warning": "The resource does not exists anymore on the ORCID registry.",
"person.page.orcid.sync-queue.send.not-found-warning": "સંસાધન ORCID રજિસ્ટ્રી પર હવે હાજર નથી.",
- // "person.page.orcid.sync-queue.send.success": "The submission to ORCID was completed successfully",
"person.page.orcid.sync-queue.send.success": "ORCID પર સબમિશન સફળતાપૂર્વક પૂર્ણ થયું",
- // "person.page.orcid.sync-queue.send.validation-error": "The data that you want to synchronize with ORCID is not valid",
"person.page.orcid.sync-queue.send.validation-error": "તમે ORCID સાથે સુમેળ કરવા માંગો છો તે ડેટા માન્ય નથી",
- // "person.page.orcid.sync-queue.send.validation-error.amount-currency.required": "The amount's currency is required",
"person.page.orcid.sync-queue.send.validation-error.amount-currency.required": "રકમની કરન્સી જરૂરી છે",
- // "person.page.orcid.sync-queue.send.validation-error.external-id.required": "The resource to be sent requires at least one identifier",
"person.page.orcid.sync-queue.send.validation-error.external-id.required": "મોકલવામાં આવતી સંસાધન માટે ઓછામાં ઓછો એક ઓળખકર્તા જરૂરી છે",
- // "person.page.orcid.sync-queue.send.validation-error.title.required": "The title is required",
"person.page.orcid.sync-queue.send.validation-error.title.required": "શીર્ષક જરૂરી છે",
- // "person.page.orcid.sync-queue.send.validation-error.type.required": "The dc.type is required",
"person.page.orcid.sync-queue.send.validation-error.type.required": "dc.type જરૂરી છે",
- // "person.page.orcid.sync-queue.send.validation-error.start-date.required": "The start date is required",
"person.page.orcid.sync-queue.send.validation-error.start-date.required": "પ્રારંભ તારીખ જરૂરી છે",
- // "person.page.orcid.sync-queue.send.validation-error.funder.required": "The funder is required",
"person.page.orcid.sync-queue.send.validation-error.funder.required": "ફંડર જરૂરી છે",
- // "person.page.orcid.sync-queue.send.validation-error.country.invalid": "Invalid 2 digits ISO 3166 country",
"person.page.orcid.sync-queue.send.validation-error.country.invalid": "અમાન્ય 2 અક્ષરોનો ISO 3166 દેશ",
- // "person.page.orcid.sync-queue.send.validation-error.organization.required": "The organization is required",
"person.page.orcid.sync-queue.send.validation-error.organization.required": "સંસ્થા જરૂરી છે",
- // "person.page.orcid.sync-queue.send.validation-error.organization.name-required": "The organization's name is required",
"person.page.orcid.sync-queue.send.validation-error.organization.name-required": "સંસ્થાનું નામ જરૂરી છે",
- // "person.page.orcid.sync-queue.send.validation-error.publication.date-invalid": "The publication date must be one year after 1900",
"person.page.orcid.sync-queue.send.validation-error.publication.date-invalid": "પ્રકાશન તારીખ 1900 પછીની હોવી જોઈએ",
- // "person.page.orcid.sync-queue.send.validation-error.organization.address-required": "The organization to be sent requires an address",
"person.page.orcid.sync-queue.send.validation-error.organization.address-required": "મોકલવામાં આવતી સંસ્થા માટે સરનામું જરૂરી છે",
- // "person.page.orcid.sync-queue.send.validation-error.organization.city-required": "The address of the organization to be sent requires a city",
"person.page.orcid.sync-queue.send.validation-error.organization.city-required": "મોકલવામાં આવતી સંસ્થાનું સરનામું માટે શહેર જરૂરી છે",
- // "person.page.orcid.sync-queue.send.validation-error.organization.country-required": "The address of the organization to be sent requires a valid 2 digits ISO 3166 country",
"person.page.orcid.sync-queue.send.validation-error.organization.country-required": "મોકલવામાં આવતી સંસ્થાનું સરનામું માટે માન્ય 2 અક્ષરોનો ISO 3166 દેશ જરૂરી છે",
- // "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.required": "An identifier to disambiguate organizations is required. Supported ids are GRID, Ringgold, Legal Entity identifiers (LEIs) and Crossref Funder Registry identifiers",
"person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.required": "સંસ્થાઓને સ્પષ્ટ કરવા માટે એક ઓળખકર્તા જરૂરી છે. સપોર્ટેડ IDs GRID, Ringgold, Legal Entity identifiers (LEIs) અને Crossref Funder Registry identifiers છે",
- // "person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.value-required": "The organization's identifiers requires a value",
"person.page.orcid.sync-queue.send.validation-error.disambiguated-organization.value-required": "સંસ્થાના ઓળખકર્તાઓ માટે મૂલ્ય જરૂરી છે",
- // "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.required": "The organization's identifiers requires a source",
"person.page.orcid.sync-queue.send.validation-error.disambiguation-source.required": "સંસ્થાના ઓળખકર્તાઓ માટે સ્ત્રોત જરૂરી છે",
- // "person.page.orcid.sync-queue.send.validation-error.disambiguation-source.invalid": "The source of one of the organization identifiers is invalid. Supported sources are RINGGOLD, GRID, LEI and FUNDREF",
"person.page.orcid.sync-queue.send.validation-error.disambiguation-source.invalid": "સંસ્થાના એક ઓળખકર્તાના સ્ત્રોત અમાન્ય છે. સપોર્ટેડ સ્ત્રોતો RINGGOLD, GRID, LEI અને FUNDREF છે",
- // "person.page.orcid.synchronization-mode": "Synchronization mode",
"person.page.orcid.synchronization-mode": "સુમેળ સ્થિતિ",
- // "person.page.orcid.synchronization-mode.batch": "Batch",
"person.page.orcid.synchronization-mode.batch": "બેચ",
- // "person.page.orcid.synchronization-mode.label": "Synchronization mode",
"person.page.orcid.synchronization-mode.label": "સુમેળ સ્થિતિ",
- // "person.page.orcid.synchronization-mode-message": "Please select how you would like synchronization to ORCID to occur. The options include \"Manual\" (you must send your data to ORCID manually), or \"Batch\" (the system will send your data to ORCID via a scheduled script).",
"person.page.orcid.synchronization-mode-message": "કૃપા કરીને પસંદ કરો કે તમે ORCID સાથે સુમેળ કેવી રીતે કરવો છે. વિકલ્પોમાં \\\"મેન્યુઅલ\\\" (તમારે તમારો ડેટા ORCID પર મેન્યુઅલી મોકલવો પડશે), અથવા \\\"બેચ\\\" (સિસ્ટમ તમારો ડેટા ORCID પર શેડ્યુલ સ્ક્રિપ્ટ દ્વારા મોકલશે) શામેલ છે.",
- // "person.page.orcid.synchronization-mode-funding-message": "Select whether to send your linked Project entities to your ORCID record's list of funding information.",
"person.page.orcid.synchronization-mode-funding-message": "તમારા ORCID રેકોર્ડની ફંડિંગ માહિતીની યાદીમાં તમારા લિંક કરેલા પ્રોજેક્ટ એન્ટિટીઓને મોકલવા માટે પસંદ કરો.",
- // "person.page.orcid.synchronization-mode-publication-message": "Select whether to send your linked Publication entities to your ORCID record's list of works.",
"person.page.orcid.synchronization-mode-publication-message": "તમારા ORCID રેકોર્ડની કાર્યોની યાદીમાં તમારા લિંક કરેલા પ્રકાશન એન્ટિટીઓને મોકલવા માટે પસંદ કરો.",
- // "person.page.orcid.synchronization-mode-profile-message": "Select whether to send your biographical data or personal identifiers to your ORCID record.",
"person.page.orcid.synchronization-mode-profile-message": "તમારા ORCID રેકોર્ડ પર તમારી જીવની માહિતી અથવા વ્યક્તિગત ઓળખકર્તાઓ મોકલવા માટે પસંદ કરો.",
- // "person.page.orcid.synchronization-settings-update.success": "The synchronization settings have been updated successfully",
"person.page.orcid.synchronization-settings-update.success": "સુમેળ સેટિંગ્સ સફળતાપૂર્વક અપડેટ કરવામાં આવ્યા છે",
- // "person.page.orcid.synchronization-settings-update.error": "The update of the synchronization settings failed",
"person.page.orcid.synchronization-settings-update.error": "સુમેળ સેટિંગ્સ અપડેટ કરવામાં નિષ્ફળ",
- // "person.page.orcid.synchronization-mode.manual": "Manual",
"person.page.orcid.synchronization-mode.manual": "મેન્યુઅલ",
- // "person.page.orcid.scope.authenticate": "Get your ORCID iD",
"person.page.orcid.scope.authenticate": "તમારો ORCID iD મેળવો",
- // "person.page.orcid.scope.read-limited": "Read your information with visibility set to Trusted Parties",
"person.page.orcid.scope.read-limited": "વિશ્વસનીય પક્ષો માટે દૃશ્યતા સાથે તમારી માહિતી વાંચો",
- // "person.page.orcid.scope.activities-update": "Add/update your research activities",
"person.page.orcid.scope.activities-update": "તમારી સંશોધન પ્રવૃત્તિઓ ઉમેરો/અપડેટ કરો",
- // "person.page.orcid.scope.person-update": "Add/update other information about you",
"person.page.orcid.scope.person-update": "તમારા વિશેની અન્ય માહિતી ઉમેરો/અપડેટ કરો",
- // "person.page.orcid.unlink.success": "The disconnection between the profile and the ORCID registry was successful",
"person.page.orcid.unlink.success": "પ્રોફાઇલ અને ORCID રજિસ્ટ્રી વચ્ચેનું ડિસકનેક્શન સફળ રહ્યું",
- // "person.page.orcid.unlink.error": "An error occurred while disconnecting between the profile and the ORCID registry. Try again",
"person.page.orcid.unlink.error": "પ્રોફાઇલ અને ORCID રજિસ્ટ્રી વચ્ચે ડિસકનેક્ટ કરતી વખતે ભૂલ આવી. ફરી પ્રયાસ કરો",
- // "person.orcid.sync.setting": "ORCID Synchronization settings",
"person.orcid.sync.setting": "ORCID સુમેળ સેટિંગ્સ",
- // "person.orcid.registry.queue": "ORCID Registry Queue",
"person.orcid.registry.queue": "ORCID રજિસ્ટ્રી કતાર",
- // "person.orcid.registry.auth": "ORCID Authorizations",
"person.orcid.registry.auth": "ORCID અધિકૃતતાઓ",
- // "person.orcid-tooltip.authenticated": "{{orcid}}",
"person.orcid-tooltip.authenticated": "{{orcid}}",
- // "person.orcid-tooltip.not-authenticated": "{{orcid}} (unconfirmed)",
"person.orcid-tooltip.not-authenticated": "{{orcid}} (અપુષ્ટ)",
- // "home.recent-submissions.head": "Recent Submissions",
"home.recent-submissions.head": "તાજેતરના સબમિશન્સ",
- // "authority-confidence.search-label": "Search",
- // TODO New key - Add a translation
- "authority-confidence.search-label": "Search",
-
- // "listable-notification-object.default-message": "This object couldn't be retrieved",
"listable-notification-object.default-message": "આ આઇટમને મેળવવામાં આવી શક્યું નથી",
- // "system-wide-alert-banner.retrieval.error": "Something went wrong retrieving the system-wide alert banner",
"system-wide-alert-banner.retrieval.error": "સિસ્ટમ-વાઇડ એલર્ટ બેનર મેળવવામાં કંઈક ખોટું થયું",
- // "system-wide-alert-banner.countdown.prefix": "In",
"system-wide-alert-banner.countdown.prefix": "માં",
- // "system-wide-alert-banner.countdown.days": "{{days}} day(s),",
"system-wide-alert-banner.countdown.days": "{{days}} દિવસ(ઓ),",
- // "system-wide-alert-banner.countdown.hours": "{{hours}} hour(s) and",
"system-wide-alert-banner.countdown.hours": "{{hours}} કલાક(ઓ) અને",
- // "system-wide-alert-banner.countdown.minutes": "{{minutes}} minute(s):",
- // TODO New key - Add a translation
- "system-wide-alert-banner.countdown.minutes": "{{minutes}} minute(s):",
+ "system-wide-alert-banner.countdown.minutes": "{{minutes}} મિનિટ(ઓ):",
- // "menu.section.system-wide-alert": "System-wide Alert",
"menu.section.system-wide-alert": "સિસ્ટમ-વાઇડ એલર્ટ",
- // "system-wide-alert.form.header": "System-wide Alert",
"system-wide-alert.form.header": "સિસ્ટમ-વાઇડ એલર્ટ",
- // "system-wide-alert-form.retrieval.error": "Something went wrong retrieving the system-wide alert",
"system-wide-alert-form.retrieval.error": "સિસ્ટમ-વાઇડ એલર્ટ મેળવવામાં કંઈક ખોટું થયું",
- // "system-wide-alert.form.cancel": "Cancel",
"system-wide-alert.form.cancel": "રદ કરો",
- // "system-wide-alert.form.save": "Save",
"system-wide-alert.form.save": "સેવ",
- // "system-wide-alert.form.label.active": "ACTIVE",
"system-wide-alert.form.label.active": "સક્રિય",
- // "system-wide-alert.form.label.inactive": "INACTIVE",
"system-wide-alert.form.label.inactive": "નિષ્ક્રિય",
- // "system-wide-alert.form.error.message": "The system wide alert must have a message",
"system-wide-alert.form.error.message": "સિસ્ટમ-વાઇડ એલર્ટમાં સંદેશ હોવો જોઈએ",
- // "system-wide-alert.form.label.message": "Alert message",
"system-wide-alert.form.label.message": "એલર્ટ સંદેશ",
- // "system-wide-alert.form.label.countdownTo.enable": "Enable a countdown timer",
"system-wide-alert.form.label.countdownTo.enable": "કાઉન્ટડાઉન ટાઇમર સક્રિય કરો",
- // "system-wide-alert.form.label.countdownTo.hint": "Hint: Set a countdown timer. When enabled, a date can be set in the future and the system-wide alert banner will perform a countdown to the set date. When this timer ends, it will disappear from the alert. The server will NOT be automatically stopped.",
- // TODO New key - Add a translation
- "system-wide-alert.form.label.countdownTo.hint": "Hint: Set a countdown timer. When enabled, a date can be set in the future and the system-wide alert banner will perform a countdown to the set date. When this timer ends, it will disappear from the alert. The server will NOT be automatically stopped.",
+ "system-wide-alert.form.label.countdownTo.hint": "હિન્ટ: કાઉન્ટડાઉન ટાઇમર સેટ કરો. જ્યારે સક્રિય થાય છે, ત્યારે ભવિષ્યમાં તારીખ સેટ કરી શકાય છે અને સિસ્ટમ-વાઇડ એલર્ટ બેનર સેટ તારીખ સુધી કાઉન્ટડાઉન કરશે. જ્યારે આ ટાઇમર સમાપ્ત થાય છે, ત્યારે તે એલર્ટમાંથી ગાયબ થઈ જશે. સર્વર આપમેળે બંધ નહીં થાય.",
- // "system-wide-alert-form.select-date-by-calendar": "Select date using calendar",
"system-wide-alert-form.select-date-by-calendar": "કેલેન્ડરનો ઉપયોગ કરીને તારીખ પસંદ કરો",
- // "system-wide-alert.form.label.preview": "System-wide alert preview",
"system-wide-alert.form.label.preview": "સિસ્ટમ-વાઇડ એલર્ટ પૂર્વાવલોકન",
- // "system-wide-alert.form.update.success": "The system-wide alert was successfully updated",
"system-wide-alert.form.update.success": "સિસ્ટમ-વાઇડ એલર્ટ સફળતાપૂર્વક અપડેટ થયું",
- // "system-wide-alert.form.update.error": "Something went wrong when updating the system-wide alert",
"system-wide-alert.form.update.error": "સિસ્ટમ-વાઇડ એલર્ટ અપડેટ કરતી વખતે કંઈક ખોટું થયું",
- // "system-wide-alert.form.create.success": "The system-wide alert was successfully created",
"system-wide-alert.form.create.success": "સિસ્ટમ-વાઇડ એલર્ટ સફળતાપૂર્વક બનાવ્યું",
- // "system-wide-alert.form.create.error": "Something went wrong when creating the system-wide alert",
"system-wide-alert.form.create.error": "સિસ્ટમ-વાઇડ એલર્ટ બનાવતી વખતે કંઈક ખોટું થયું",
- // "admin.system-wide-alert.breadcrumbs": "System-wide Alerts",
"admin.system-wide-alert.breadcrumbs": "સિસ્ટમ-વાઇડ એલર્ટ",
- // "admin.system-wide-alert.title": "System-wide Alerts",
"admin.system-wide-alert.title": "સિસ્ટમ-વાઇડ એલર્ટ",
- // "discover.filters.head": "Discover",
"discover.filters.head": "શોધો",
- // "item-access-control-title": "This form allows you to perform changes to the access conditions of the item's metadata or its bitstreams.",
"item-access-control-title": "આ ફોર્મ તમને આઇટમના મેટાડેટા અથવા તેના બિટસ્ટ્રીમ્સની ઍક્સેસ શરતોમાં ફેરફાર કરવા માટે પરવાનગી આપે છે.",
- // "collection-access-control-title": "This form allows you to perform changes to the access conditions of all the items owned by this collection. Changes may be performed to either all Item metadata or all content (bitstreams).",
"collection-access-control-title": "આ ફોર્મ તમને આ સંગ્રહ દ્વારા માલિકી ધરાવતી બધી આઇટમ્સની ઍક્સેસ શરતોમાં ફેરફાર કરવા માટે પરવાનગી આપે છે. ફેરફારો બધી આઇટમ મેટાડેટા અથવા બધી સામગ્રી (બિટસ્ટ્રીમ્સ) પર કરવામાં આવી શકે છે.",
- // "community-access-control-title": "This form allows you to perform changes to the access conditions of all the items owned by any collection under this community. Changes may be performed to either all Item metadata or all content (bitstreams).",
"community-access-control-title": "આ ફોર્મ તમને આ સમુદાય હેઠળના કોઈપણ સંગ્રહ દ્વારા માલિકી ધરાવતી બધી આઇટમ્સની ઍક્સેસ શરતોમાં ફેરફાર કરવા માટે પરવાનગી આપે છે. ફેરફારો બધી આઇટમ મેટાડેટા અથવા બધી સામગ્રી (બિટસ્ટ્રીમ્સ) પર કરવામાં આવી શકે છે.",
- // "access-control-item-header-toggle": "Item's Metadata",
"access-control-item-header-toggle": "આઇટમના મેટાડેટા",
- // "access-control-item-toggle.enable": "Enable option to perform changes on the item's metadata",
"access-control-item-toggle.enable": "આઇટમના મેટાડેટા પર ફેરફારો કરવા માટે વિકલ્પ સક્રિય કરો",
- // "access-control-item-toggle.disable": "Disable option to perform changes on the item's metadata",
"access-control-item-toggle.disable": "આઇટમના મેટાડેટા પર ફેરફારો કરવા માટે વિકલ્પ નિષ્ક્રિય કરો",
- // "access-control-bitstream-header-toggle": "Bitstreams",
"access-control-bitstream-header-toggle": "બિટસ્ટ્રીમ્સ",
- // "access-control-bitstream-toggle.enable": "Enable option to perform changes on the bitstreams",
"access-control-bitstream-toggle.enable": "બિટસ્ટ્રીમ્સ પર ફેરફારો કરવા માટે વિકલ્પ સક્રિય કરો",
- // "access-control-bitstream-toggle.disable": "Disable option to perform changes on the bitstreams",
"access-control-bitstream-toggle.disable": "બિટસ્ટ્રીમ્સ પર ફેરફારો કરવા માટે વિકલ્પ નિષ્ક્રિય કરો",
- // "access-control-mode": "Mode",
"access-control-mode": "મોડ",
- // "access-control-access-conditions": "Access conditions",
"access-control-access-conditions": "ઍક્સેસ શરતો",
- // "access-control-no-access-conditions-warning-message": "Currently, no access conditions are specified below. If executed, this will replace the current access conditions with the default access conditions inherited from the owning collection.",
"access-control-no-access-conditions-warning-message": "હાલમાં, નીચે કોઈ ઍક્સેસ શરતો નિર્ધારિત નથી. જો અમલમાં મૂકવામાં આવે છે, તો તે વર્તમાન ઍક્સેસ શરતોને માલિકી ધરાવતી સંગ્રહમાંથી વારસામાં મળેલી ડિફોલ્ટ ઍક્સેસ શરતો સાથે બદલી દેશે.",
- // "access-control-replace-all": "Replace access conditions",
"access-control-replace-all": "ઍક્સેસ શરતો બદલો",
- // "access-control-add-to-existing": "Add to existing ones",
"access-control-add-to-existing": "મૌજૂદા શરતોમાં ઉમેરો",
- // "access-control-limit-to-specific": "Limit the changes to specific bitstreams",
"access-control-limit-to-specific": "ફેરફારોને ચોક્કસ બિટસ્ટ્રીમ્સ સુધી મર્યાદિત કરો",
- // "access-control-process-all-bitstreams": "Update all the bitstreams in the item",
"access-control-process-all-bitstreams": "આઇટમમાં બધી બિટસ્ટ્રીમ્સને અપડેટ કરો",
- // "access-control-bitstreams-selected": "bitstreams selected",
"access-control-bitstreams-selected": "પસંદ કરેલી બિટસ્ટ્રીમ્સ",
- // "access-control-bitstreams-select": "Select bitstreams",
"access-control-bitstreams-select": "બિટસ્ટ્રીમ્સ પસંદ કરો",
- // "access-control-cancel": "Cancel",
"access-control-cancel": "રદ કરો",
- // "access-control-execute": "Execute",
"access-control-execute": "અમલમાં મૂકો",
- // "access-control-add-more": "Add more",
"access-control-add-more": "વધુ ઉમેરો",
- // "access-control-remove": "Remove access condition",
"access-control-remove": "ઍક્સેસ શરત દૂર કરો",
- // "access-control-select-bitstreams-modal.title": "Select bitstreams",
"access-control-select-bitstreams-modal.title": "બિટસ્ટ્રીમ્સ પસંદ કરો",
- // "access-control-select-bitstreams-modal.no-items": "No items to show.",
"access-control-select-bitstreams-modal.no-items": "દેખાવ માટે કોઈ વસ્તુઓ નહોતી",
- // "access-control-select-bitstreams-modal.close": "Close",
"access-control-select-bitstreams-modal.close": "બંધ કરો",
- // "access-control-option-label": "Access condition type",
"access-control-option-label": "ઍક્સેસ શરત પ્રકાર",
- // "access-control-option-note": "Choose an access condition to apply to selected objects.",
"access-control-option-note": "પસંદ કરેલી વસ્તુઓ પર લાગુ કરવા માટે ઍક્સેસ શરત પસંદ કરો.",
- // "access-control-option-start-date": "Grant access from",
"access-control-option-start-date": "તારીખથી ઍક્સેસ આપો",
- // "access-control-option-start-date-note": "Select the date from which the related access condition is applied",
"access-control-option-start-date-note": "સંબંધિત ઍક્સેસ શરત લાગુ થતી તારીખ પસંદ કરો",
- // "access-control-option-end-date": "Grant access until",
"access-control-option-end-date": "તારીખ સુધી ઍક્સેસ આપો",
- // "access-control-option-end-date-note": "Select the date until which the related access condition is applied",
"access-control-option-end-date-note": "સંબંધિત ઍક્સેસ શરત લાગુ થતી તારીખ પસંદ કરો",
- // "vocabulary-treeview.search.form.add": "Add",
"vocabulary-treeview.search.form.add": "ઉમેરો",
- // "admin.notifications.publicationclaim.breadcrumbs": "Publication Claim",
"admin.notifications.publicationclaim.breadcrumbs": "પ્રકાશન દાવો",
- // "admin.notifications.publicationclaim.page.title": "Publication Claim",
"admin.notifications.publicationclaim.page.title": "પ્રકાશન દાવો",
- // "coar-notify-support.title": "COAR Notify Protocol",
"coar-notify-support.title": "COAR નોટિફાય પ્રોટોકોલ",
- // "coar-notify-support-title.content": "Here, we fully support the COAR Notify protocol, which is designed to enhance the communication between repositories. To learn more about the COAR Notify protocol, visit the COAR Notify website.",
- // TODO New key - Add a translation
- "coar-notify-support-title.content": "Here, we fully support the COAR Notify protocol, which is designed to enhance the communication between repositories. To learn more about the COAR Notify protocol, visit the COAR Notify website.",
+ "coar-notify-support-title.content": "અહીં, અમે COAR નોટિફાય પ્રોટોકોલને સંપૂર્ણપણે સપોર્ટ કરીએ છીએ, જે રિપોઝિટરીઝ વચ્ચેના સંચારને વધારવા માટે ડિઝાઇન કરવામાં આવ્યું છે. COAR નોટિફાય પ્રોટોકોલ વિશે વધુ જાણવા માટે, COAR નોટિફાય વેબસાઇટ પર મુલાકાત લો.",
- // "coar-notify-support.ldn-inbox.title": "LDN InBox",
"coar-notify-support.ldn-inbox.title": "LDN ઇનબોક્સ",
- // "coar-notify-support.ldn-inbox.content": "For your convenience, our LDN (Linked Data Notifications) InBox is easily accessible at {{ ldnInboxUrl }}. The LDN InBox enables seamless communication and data exchange, ensuring efficient and effective collaboration.",
"coar-notify-support.ldn-inbox.content": "તમારી સુવિધા માટે, અમારી LDN (લિંક્ડ ડેટા નોટિફિકેશન્સ) ઇનબોક્સ સરળતાથી ઉપલબ્ધ છે {{ ldnInboxUrl }}. LDN ઇનબોક્સ સરળ સંચાર અને ડેટા વિનિમયને સક્ષમ બનાવે છે, સુનિશ્ચિત કરે છે કે કાર્યક્ષમ અને અસરકારક સહકાર.",
- // "coar-notify-support.message-moderation.title": "Message Moderation",
"coar-notify-support.message-moderation.title": "સંદેશ મૉડરેશન",
- // "coar-notify-support.message-moderation.content": "To ensure a secure and productive environment, all incoming LDN messages are moderated. If you are planning to exchange information with us, kindly reach out via our dedicated",
"coar-notify-support.message-moderation.content": "સુરક્ષિત અને ઉત્પાદક વાતાવરણ સુનિશ્ચિત કરવા માટે, બધી આવનારી LDN સંદેશાઓનું મૉડરેશન કરવામાં આવે છે. જો તમે અમારી સાથે માહિતી વિનિમય કરવાની યોજના બનાવી રહ્યા છો, તો કૃપા કરીને અમારા સમર્પિત ફીડબેક ફોર્મ દ્વારા સંપર્ક કરો.",
- // "coar-notify-support.message-moderation.feedback-form": " Feedback form.",
- // TODO New key - Add a translation
- "coar-notify-support.message-moderation.feedback-form": " Feedback form.",
-
- // "service.overview.delete.header": "Delete Service",
"service.overview.delete.header": "સેવા કાઢી નાખો",
- // "ldn-registered-services.title": "Registered Services",
"ldn-registered-services.title": "નોંધાયેલ સેવાઓ",
- // "ldn-registered-services.table.name": "Name",
+
"ldn-registered-services.table.name": "નામ",
- // "ldn-registered-services.table.description": "Description",
+
"ldn-registered-services.table.description": "વર્ણન",
- // "ldn-registered-services.table.status": "Status",
+
"ldn-registered-services.table.status": "સ્થિતિ",
- // "ldn-registered-services.table.action": "Action",
+
"ldn-registered-services.table.action": "ક્રિયા",
- // "ldn-registered-services.new": "NEW",
+
"ldn-registered-services.new": "નવી",
- // "ldn-registered-services.new.breadcrumbs": "Registered Services",
+
"ldn-registered-services.new.breadcrumbs": "નોંધાયેલ સેવાઓ",
- // "ldn-service.overview.table.enabled": "Enabled",
"ldn-service.overview.table.enabled": "સક્રિય",
- // "ldn-service.overview.table.disabled": "Disabled",
+
"ldn-service.overview.table.disabled": "નિષ્ક્રિય",
- // "ldn-service.overview.table.clickToEnable": "Click to enable",
+
"ldn-service.overview.table.clickToEnable": "સક્રિય કરવા માટે ક્લિક કરો",
- // "ldn-service.overview.table.clickToDisable": "Click to disable",
+
"ldn-service.overview.table.clickToDisable": "નિષ્ક્રિય કરવા માટે ક્લિક કરો",
- // "ldn-edit-registered-service.title": "Edit Service",
"ldn-edit-registered-service.title": "સેવા સંપાદિત કરો",
- // "ldn-create-service.title": "Create service",
+
"ldn-create-service.title": "સેવા બનાવો",
- // "service.overview.create.modal": "Create Service",
+
"service.overview.create.modal": "સેવા બનાવો",
- // "service.overview.create.body": "Please confirm the creation of this service.",
+
"service.overview.create.body": "કૃપા કરીને આ સેવાની રચનાની પુષ્ટિ કરો.",
- // "ldn-service-status": "Status",
+
"ldn-service-status": "સ્થિતિ",
- // "service.confirm.create": "Create",
+
"service.confirm.create": "બનાવો",
- // "service.refuse.create": "Cancel",
+
"service.refuse.create": "રદ કરો",
- // "ldn-register-new-service.title": "Register a new service",
+
"ldn-register-new-service.title": "નવી સેવા નોંધો",
- // "ldn-new-service.form.label.submit": "Save",
+
"ldn-new-service.form.label.submit": "સેવ",
- // "ldn-new-service.form.label.name": "Name",
+
"ldn-new-service.form.label.name": "નામ",
- // "ldn-new-service.form.label.description": "Description",
+
"ldn-new-service.form.label.description": "વર્ણન",
- // "ldn-new-service.form.label.url": "Service URL",
+
"ldn-new-service.form.label.url": "સેવા URL",
- // "ldn-new-service.form.label.ip-range": "Service IP range",
+
"ldn-new-service.form.label.ip-range": "સેવા IP શ્રેણી",
- // "ldn-new-service.form.label.score": "Level of trust",
+
"ldn-new-service.form.label.score": "વિશ્વાસનું સ્તર",
- // "ldn-new-service.form.label.ldnUrl": "LDN Inbox URL",
+
"ldn-new-service.form.label.ldnUrl": "LDN ઇનબોક્સ URL",
- // "ldn-new-service.form.placeholder.name": "Please provide service name",
+
"ldn-new-service.form.placeholder.name": "કૃપા કરીને સેવાનું નામ આપો",
- // "ldn-new-service.form.placeholder.description": "Please provide a description regarding your service",
+
"ldn-new-service.form.placeholder.description": "કૃપા કરીને તમારી સેવાના વિશે વર્ણન આપો",
- // "ldn-new-service.form.placeholder.url": "Please input the URL for users to check out more information about the service",
+
"ldn-new-service.form.placeholder.url": "વપરાશકર્તાઓને સેવાની વધુ માહિતી તપાસવા માટે URL દાખલ કરો",
- // "ldn-new-service.form.placeholder.lowerIp": "IPv4 range lower bound",
+
"ldn-new-service.form.placeholder.lowerIp": "IPv4 શ્રેણી નીચી સીમા",
- // "ldn-new-service.form.placeholder.upperIp": "IPv4 range upper bound",
+
"ldn-new-service.form.placeholder.upperIp": "IPv4 શ્રેણી ઊંચી સીમા",
- // "ldn-new-service.form.placeholder.ldnUrl": "Please specify the URL of the LDN Inbox",
+
"ldn-new-service.form.placeholder.ldnUrl": "કૃપા કરીને LDN ઇનબોક્સનો URL સ્પષ્ટ કરો",
- // "ldn-new-service.form.placeholder.score": "Please enter a value between 0 and 1. Use the “.” as decimal separator",
+
"ldn-new-service.form.placeholder.score": "કૃપા કરીને 0 અને 1 વચ્ચેનું મૂલ્ય દાખલ કરો. દશાંશ વિભાજક તરીકે “.” નો ઉપયોગ કરો",
- // "ldn-service.form.label.placeholder.default-select": "Select a pattern",
+
"ldn-service.form.label.placeholder.default-select": "પેટર્ન પસંદ કરો",
- // "ldn-service.form.pattern.ack-accept.label": "Acknowledge and Accept",
"ldn-service.form.pattern.ack-accept.label": "સ્વીકારો અને મંજૂર કરો",
- // "ldn-service.form.pattern.ack-accept.description": "This pattern is used to acknowledge and accept a request (offer). It implies an intention to act on the request.",
+
"ldn-service.form.pattern.ack-accept.description": "આ પેટર્ન વિનંતી (ઓફર)ને સ્વીકારવા અને મંજૂર કરવા માટે વપરાય છે. તે વિનંતી પર કાર્ય કરવાની મનોવૃત્તિ દર્શાવે છે.",
- // "ldn-service.form.pattern.ack-accept.category": "Acknowledgements",
+
"ldn-service.form.pattern.ack-accept.category": "સ્વીકાર",
- // "ldn-service.form.pattern.ack-reject.label": "Acknowledge and Reject",
"ldn-service.form.pattern.ack-reject.label": "સ્વીકારો અને નકારો",
- // "ldn-service.form.pattern.ack-reject.description": "This pattern is used to acknowledge and reject a request (offer). It signifies no further action regarding the request.",
+
"ldn-service.form.pattern.ack-reject.description": "આ પેટર્ન વિનંતી (ઓફર)ને સ્વીકારવા અને નકારવા માટે વપરાય છે. તે વિનંતી અંગે કોઈ વધુ ક્રિયા દર્શાવતું નથી.",
- // "ldn-service.form.pattern.ack-reject.category": "Acknowledgements",
+
"ldn-service.form.pattern.ack-reject.category": "સ્વીકાર",
- // "ldn-service.form.pattern.ack-tentative-accept.label": "Acknowledge and Tentatively Accept",
"ldn-service.form.pattern.ack-tentative-accept.label": "સ્વીકારો અને તાત્કાલિક સ્વીકારો",
- // "ldn-service.form.pattern.ack-tentative-accept.description": "This pattern is used to acknowledge and tentatively accept a request (offer). It implies an intention to act, which may change.",
+
"ldn-service.form.pattern.ack-tentative-accept.description": "આ પેટર્ન વિનંતી (ઓફર)ને સ્વીકારવા અને તાત્કાલિક સ્વીકારવા માટે વપરાય છે. તે કાર્ય કરવાની મનોવૃત્તિ દર્શાવે છે, જે બદલાઈ શકે છે.",
- // "ldn-service.form.pattern.ack-tentative-accept.category": "Acknowledgements",
+
"ldn-service.form.pattern.ack-tentative-accept.category": "સ્વીકાર",
- // "ldn-service.form.pattern.ack-tentative-reject.label": "Acknowledge and Tentatively Reject",
"ldn-service.form.pattern.ack-tentative-reject.label": "સ્વીકારો અને તાત્કાલિક નકારો",
- // "ldn-service.form.pattern.ack-tentative-reject.description": "This pattern is used to acknowledge and tentatively reject a request (offer). It signifies no further action, subject to change.",
+
"ldn-service.form.pattern.ack-tentative-reject.description": "આ પેટર્ન વિનંતી (ઓફર)ને સ્વીકારવા અને તાત્કાલિક નકારવા માટે વપરાય છે. તે કોઈ વધુ ક્રિયા દર્શાવતું નથી, જે બદલાઈ શકે છે.",
- // "ldn-service.form.pattern.ack-tentative-reject.category": "Acknowledgements",
+
"ldn-service.form.pattern.ack-tentative-reject.category": "સ્વીકાર",
- // "ldn-service.form.pattern.announce-endorsement.label": "Announce Endorsement",
"ldn-service.form.pattern.announce-endorsement.label": "મંજૂરીની જાહેરાત કરો",
- // "ldn-service.form.pattern.announce-endorsement.description": "This pattern is used to announce the existence of an endorsement, referencing the endorsed resource.",
+
"ldn-service.form.pattern.announce-endorsement.description": "આ પેટર્ન મંજૂરીના અસ્તિત્વની જાહેરાત કરવા માટે વપરાય છે, જે મંજૂર સંસાધનને સંદર્ભ આપે છે.",
- // "ldn-service.form.pattern.announce-endorsement.category": "Announcements",
+
"ldn-service.form.pattern.announce-endorsement.category": "જાહેરાત",
- // "ldn-service.form.pattern.announce-ingest.label": "Announce Ingest",
"ldn-service.form.pattern.announce-ingest.label": "ઇનજેસ્ટની જાહેરાત કરો",
- // "ldn-service.form.pattern.announce-ingest.description": "This pattern is used to announce that a resource has been ingested.",
+
"ldn-service.form.pattern.announce-ingest.description": "આ પેટર્ન એ જાહેરાત કરવા માટે વપરાય છે કે સંસાધન ઇનજેસ્ટ કરવામાં આવ્યું છે.",
- // "ldn-service.form.pattern.announce-ingest.category": "Announcements",
+
"ldn-service.form.pattern.announce-ingest.category": "જાહેરાત",
- // "ldn-service.form.pattern.announce-relationship.label": "Announce Relationship",
"ldn-service.form.pattern.announce-relationship.label": "સંબંધની જાહેરાત કરો",
- // "ldn-service.form.pattern.announce-relationship.description": "This pattern is used to announce a relationship between two resources.",
+
"ldn-service.form.pattern.announce-relationship.description": "આ પેટર્ન બે સંસાધનો વચ્ચેના સંબંધની જાહેરાત કરવા માટે વપરાય છે.",
- // "ldn-service.form.pattern.announce-relationship.category": "Announcements",
+
"ldn-service.form.pattern.announce-relationship.category": "જાહેરાત",
- // "ldn-service.form.pattern.announce-review.label": "Announce Review",
"ldn-service.form.pattern.announce-review.label": "સમીક્ષાની જાહેરાત કરો",
- // "ldn-service.form.pattern.announce-review.description": "This pattern is used to announce the existence of a review, referencing the reviewed resource.",
+
"ldn-service.form.pattern.announce-review.description": "આ પેટર્ન સમીક્ષાના અસ્તિત્વની જાહેરાત કરવા માટે વપરાય છે, જે સમીક્ષિત સંસાધનને સંદર્ભ આપે છે.",
- // "ldn-service.form.pattern.announce-review.category": "Announcements",
+
"ldn-service.form.pattern.announce-review.category": "જાહેરાત",
- // "ldn-service.form.pattern.announce-service-result.label": "Announce Service Result",
"ldn-service.form.pattern.announce-service-result.label": "સેવા પરિણામની જાહેરાત કરો",
- // "ldn-service.form.pattern.announce-service-result.description": "This pattern is used to announce the existence of a 'service result', referencing the relevant resource.",
+
"ldn-service.form.pattern.announce-service-result.description": "આ પેટર્ન 'સેવા પરિણામ'ના અસ્તિત્વની જાહેરાત કરવા માટે વપરાય છે, જે સંબંધિત સંસાધનને સંદર્ભ આપે છે.",
- // "ldn-service.form.pattern.announce-service-result.category": "Announcements",
+
"ldn-service.form.pattern.announce-service-result.category": "જાહેરાત",
- // "ldn-service.form.pattern.request-endorsement.label": "Request Endorsement",
"ldn-service.form.pattern.request-endorsement.label": "મંજૂરીની વિનંતી કરો",
- // "ldn-service.form.pattern.request-endorsement.description": "This pattern is used to request endorsement of a resource owned by the origin system.",
+
"ldn-service.form.pattern.request-endorsement.description": "આ પેટર્ન મૂળ સિસ્ટમ દ્વારા માલિકી ધરાવતી સંસાધન માટે મંજૂરીની વિનંતી કરવા માટે વપરાય છે.",
- // "ldn-service.form.pattern.request-endorsement.category": "Requests",
+
"ldn-service.form.pattern.request-endorsement.category": "વિનંતીઓ",
- // "ldn-service.form.pattern.request-ingest.label": "Request Ingest",
"ldn-service.form.pattern.request-ingest.label": "ઇનજેસ્ટની વિનંતી કરો",
- // "ldn-service.form.pattern.request-ingest.description": "This pattern is used to request that the target system ingest a resource.",
+
"ldn-service.form.pattern.request-ingest.description": "આ પેટર્ન લક્ષ્ય સિસ્ટમને સંસાધન ઇનજેસ્ટ કરવાની વિનંતી કરવા માટે વપરાય છે.",
- // "ldn-service.form.pattern.request-ingest.category": "Requests",
+
"ldn-service.form.pattern.request-ingest.category": "વિનંતીઓ",
- // "ldn-service.form.pattern.request-review.label": "Request Review",
"ldn-service.form.pattern.request-review.label": "સમીક્ષાની વિનંતી કરો",
- // "ldn-service.form.pattern.request-review.description": "This pattern is used to request a review of a resource owned by the origin system.",
+
"ldn-service.form.pattern.request-review.description": "આ પેટર્ન મૂળ સિસ્ટમ દ્વારા માલિકી ધરાવતી સંસાધન માટે સમીક્ષાની વિનંતી કરવા માટે વપરાય છે.",
- // "ldn-service.form.pattern.request-review.category": "Requests",
+
"ldn-service.form.pattern.request-review.category": "વિનંતીઓ",
- // "ldn-service.form.pattern.undo-offer.label": "Undo Offer",
"ldn-service.form.pattern.undo-offer.label": "ઓફર રદ કરો",
- // "ldn-service.form.pattern.undo-offer.description": "This pattern is used to undo (retract) an offer previously made.",
+
"ldn-service.form.pattern.undo-offer.description": "આ પેટર્ન અગાઉ કરવામાં આવેલી ઓફરને રદ (પાછી ખેંચી) કરવા માટે વપરાય છે.",
- // "ldn-service.form.pattern.undo-offer.category": "Undo",
+
"ldn-service.form.pattern.undo-offer.category": "રદ કરો",
- // "ldn-new-service.form.label.placeholder.selectedItemFilter": "No Item Filter Selected",
"ldn-new-service.form.label.placeholder.selectedItemFilter": "કોઈ આઇટમ ફિલ્ટર પસંદ કરેલ નથી",
- // "ldn-new-service.form.label.ItemFilter": "Item Filter",
+
"ldn-new-service.form.label.ItemFilter": "આઇટમ ફિલ્ટર",
- // "ldn-new-service.form.label.automatic": "Automatic",
+
"ldn-new-service.form.label.automatic": "સ્વચાલિત",
- // "ldn-new-service.form.error.name": "Name is required",
+
"ldn-new-service.form.error.name": "નામ જરૂરી છે",
- // "ldn-new-service.form.error.url": "URL is required",
+
"ldn-new-service.form.error.url": "URL જરૂરી છે",
- // "ldn-new-service.form.error.ipRange": "Please enter a valid IP range",
+
"ldn-new-service.form.error.ipRange": "કૃપા કરીને માન્ય IP શ્રેણી દાખલ કરો",
- // "ldn-new-service.form.hint.ipRange": "Please enter a valid IpV4 in both range bounds (note: for single IP, please enter the same value in both fields)",
- // TODO New key - Add a translation
- "ldn-new-service.form.hint.ipRange": "Please enter a valid IpV4 in both range bounds (note: for single IP, please enter the same value in both fields)",
- // "ldn-new-service.form.error.ldnurl": "LDN URL is required",
+
+ "ldn-new-service.form.hint.ipRange": "કૃપા કરીને બંને શ્રેણી સીમાઓમાં માન્ય IpV4 દાખલ કરો (નોંધ: એકલ IP માટે, કૃપા કરીને બંને ક્ષેત્રોમાં એક જ મૂલ્ય દાખલ કરો)",
+
"ldn-new-service.form.error.ldnurl": "LDN URL જરૂરી છે",
- // "ldn-new-service.form.error.patterns": "At least a pattern is required",
+
"ldn-new-service.form.error.patterns": "ઓછામાં ઓછું એક પેટર્ન જરૂરી છે",
- // "ldn-new-service.form.error.score": "Please enter a valid score (between 0 and 1). Use the “.” as decimal separator",
+
"ldn-new-service.form.error.score": "કૃપા કરીને માન્ય સ્કોર દાખલ કરો (0 અને 1 વચ્ચે). દશાંશ વિભાજક તરીકે “.” નો ઉપયોગ કરો",
- // "ldn-new-service.form.label.inboundPattern": "Supported Pattern",
"ldn-new-service.form.label.inboundPattern": "સપોર્ટેડ પેટર્ન",
- // "ldn-new-service.form.label.addPattern": "+ Add more",
- "ldn-new-service.form.label.addPattern": "+ વધુ ઉમેરો",
- // "ldn-new-service.form.label.removeItemFilter": "Remove",
+
+ "ldn-new-service.form.label.addPattern": "વધુ ઉમેરો",
+
"ldn-new-service.form.label.removeItemFilter": "દૂર કરો",
- // "ldn-register-new-service.breadcrumbs": "New Service",
+
"ldn-register-new-service.breadcrumbs": "નવી સેવા",
- // "service.overview.delete.body": "Are you sure you want to delete this service?",
+
"service.overview.delete.body": "શું તમે ખરેખર આ સેવાને કાઢી નાખવા માંગો છો?",
- // "service.overview.edit.body": "Do you confirm the changes?",
+
"service.overview.edit.body": "શું તમે ફેરફારોની પુષ્ટિ કરો છો?",
- // "service.overview.edit.modal": "Edit Service",
+
"service.overview.edit.modal": "સેવા સંપાદિત કરો",
- // "service.detail.update": "Confirm",
+
"service.detail.update": "પુષ્ટિ કરો",
- // "service.detail.return": "Cancel",
+
"service.detail.return": "રદ કરો",
- // "service.overview.reset-form.body": "Are you sure you want to discard the changes and leave?",
+
"service.overview.reset-form.body": "શું તમે ખરેખર ફેરફારોને રદ કરવા અને છોડી દેવા માંગો છો?",
- // "service.overview.reset-form.modal": "Discard Changes",
+
"service.overview.reset-form.modal": "ફેરફારો રદ કરો",
- // "service.overview.reset-form.reset-confirm": "Discard",
+
"service.overview.reset-form.reset-confirm": "રદ કરો",
- // "admin.registries.services-formats.modify.success.head": "Successful Edit",
+
"admin.registries.services-formats.modify.success.head": "સફળ સંપાદન",
- // "admin.registries.services-formats.modify.success.content": "The service has been edited",
+
"admin.registries.services-formats.modify.success.content": "સેવા સંપાદિત કરવામાં આવી છે",
- // "admin.registries.services-formats.modify.failure.head": "Failed Edit",
+
"admin.registries.services-formats.modify.failure.head": "અસફળ સંપાદન",
- // "admin.registries.services-formats.modify.failure.content": "The service has not been edited",
+
"admin.registries.services-formats.modify.failure.content": "સેવા સંપાદિત કરવામાં આવી નથી",
- // "ldn-service-notification.created.success.title": "Successful Create",
+
"ldn-service-notification.created.success.title": "સફળ રચના",
- // "ldn-service-notification.created.success.body": "The service has been created",
+
"ldn-service-notification.created.success.body": "સેવા બનાવવામાં આવી છે",
- // "ldn-service-notification.created.failure.title": "Failed Create",
+
"ldn-service-notification.created.failure.title": "અસફળ રચના",
- // "ldn-service-notification.created.failure.body": "The service has not been created",
+
"ldn-service-notification.created.failure.body": "સેવા બનાવવામાં આવી નથી",
- // "ldn-service-notification.created.warning.title": "Please select at least one Inbound Pattern",
+
"ldn-service-notification.created.warning.title": "કૃપા કરીને ઓછામાં ઓછું એક ઇનબાઉન્ડ પેટર્ન પસંદ કરો",
- // "ldn-enable-service.notification.success.title": "Successful status updated",
+
"ldn-enable-service.notification.success.title": "સફળ સ્થિતિ અપડેટ",
- // "ldn-enable-service.notification.success.content": "The service status has been updated",
+
"ldn-enable-service.notification.success.content": "સેવા સ્થિતિ અપડેટ કરવામાં આવી છે",
- // "ldn-service-delete.notification.success.title": "Successful Deletion",
+
"ldn-service-delete.notification.success.title": "સફળ કાઢી નાખવું",
- // "ldn-service-delete.notification.success.content": "The service has been deleted",
+
"ldn-service-delete.notification.success.content": "સેવા કાઢી નાખવામાં આવી છે",
- // "ldn-service-delete.notification.error.title": "Failed Deletion",
+
"ldn-service-delete.notification.error.title": "અસફળ કાઢી નાખવું",
- // "ldn-service-delete.notification.error.content": "The service has not been deleted",
+
"ldn-service-delete.notification.error.content": "સેવા કાઢી નાખવામાં આવી નથી",
- // "service.overview.reset-form.reset-return": "Cancel",
+
"service.overview.reset-form.reset-return": "રદ કરો",
- // "service.overview.delete": "Delete service",
+
"service.overview.delete": "સેવા કાઢી નાખો",
- // "ldn-edit-service.title": "Edit service",
+
"ldn-edit-service.title": "સેવા સંપાદિત કરો",
- // "ldn-edit-service.form.label.name": "Name",
+
"ldn-edit-service.form.label.name": "નામ",
- // "ldn-edit-service.form.label.description": "Description",
+
"ldn-edit-service.form.label.description": "વર્ણન",
- // "ldn-edit-service.form.label.url": "Service URL",
+
"ldn-edit-service.form.label.url": "સેવા URL",
- // "ldn-edit-service.form.label.ldnUrl": "LDN Inbox URL",
+
"ldn-edit-service.form.label.ldnUrl": "LDN ઇનબોક્સ URL",
- // "ldn-edit-service.form.label.inboundPattern": "Inbound Pattern",
+
"ldn-edit-service.form.label.inboundPattern": "ઇનબાઉન્ડ પેટર્ન",
- // "ldn-edit-service.form.label.noInboundPatternSelected": "No Inbound Pattern",
+
"ldn-edit-service.form.label.noInboundPatternSelected": "કોઈ ઇનબાઉન્ડ પેટર્ન નથી",
- // "ldn-edit-service.form.label.selectedItemFilter": "Selected Item Filter",
+
"ldn-edit-service.form.label.selectedItemFilter": "પસંદ કરેલ આઇટમ ફિલ્ટર",
- // "ldn-edit-service.form.label.selectItemFilter": "No Item Filter",
+
"ldn-edit-service.form.label.selectItemFilter": "કોઈ આઇટમ ફિલ્ટર નથી",
- // "ldn-edit-service.form.label.automatic": "Automatic",
+
"ldn-edit-service.form.label.automatic": "સ્વચાલિત",
- // "ldn-edit-service.form.label.addInboundPattern": "+ Add more",
+
"ldn-edit-service.form.label.addInboundPattern": "+ વધુ ઉમેરો",
- // "ldn-edit-service.form.label.submit": "Save",
+
"ldn-edit-service.form.label.submit": "સેવ",
- // "ldn-edit-service.breadcrumbs": "Edit Service",
+
"ldn-edit-service.breadcrumbs": "સેવા સંપાદિત કરો",
- // "ldn-service.control-constaint-select-none": "Select none",
+
"ldn-service.control-constaint-select-none": "કોઈ પસંદ કરો",
- // "ldn-register-new-service.notification.error.title": "Error",
"ldn-register-new-service.notification.error.title": "ભૂલ",
- // "ldn-register-new-service.notification.error.content": "An error occurred while creating this process",
+
"ldn-register-new-service.notification.error.content": "આ પ્રક્રિયા બનાવતી વખતે ભૂલ આવી",
- // "ldn-register-new-service.notification.success.title": "Success",
+
"ldn-register-new-service.notification.success.title": "સફળતા",
- // "ldn-register-new-service.notification.success.content": "The process was successfully created",
+
"ldn-register-new-service.notification.success.content": "પ્રક્રિયા સફળતાપૂર્વક બનાવવામાં આવી",
- // "submission.sections.notify.info": "The selected service is compatible with the item according to its current status. {{ service.name }}: {{ service.description }}",
- // TODO New key - Add a translation
- "submission.sections.notify.info": "The selected service is compatible with the item according to its current status. {{ service.name }}: {{ service.description }}",
+ "submission.sections.notify.info": "વર્તમાન સ્થિતિ અનુસાર આ આઇટમ સાથે સુસંગત સેવા પસંદ કરેલ છે. {{ service.name }}: {{ service.description }}",
- // "item.page.endorsement": "Endorsement",
"item.page.endorsement": "મંજૂરી",
- // "item.page.places": "Related places",
"item.page.places": "સંબંધિત સ્થળો",
- // "item.page.review": "Review",
"item.page.review": "સમીક્ષા",
- // "item.page.referenced": "Referenced By",
"item.page.referenced": "સંદર્ભ આપેલ",
- // "item.page.supplemented": "Supplemented By",
"item.page.supplemented": "પૂરક",
- // "menu.section.icon.ldn_services": "LDN Services overview",
"menu.section.icon.ldn_services": "LDN સેવાઓની ઝાંખી",
- // "menu.section.services": "LDN Services",
"menu.section.services": "LDN સેવાઓ",
- // "menu.section.services_new": "LDN Service",
"menu.section.services_new": "LDN સેવા",
- // "quality-assurance.topics.description-with-target": "Below you can see all the topics received from the subscriptions to {{source}} in regards to the",
"quality-assurance.topics.description-with-target": "નીચે તમે {{source}} માટે સબ્સ્ક્રિપ્શન્સમાંથી પ્રાપ્ત તમામ વિષયો જોઈ શકો છો",
- // "quality-assurance.events.description": "Below the list of all the suggestions for the selected topic {{topic}}, related to {{source}}.",
+
"quality-assurance.events.description": "નીચે પસંદ કરેલા વિષય {{topic}} માટેની તમામ સૂચનાઓની યાદી છે, જે {{source}} સાથે સંબંધિત છે.",
- // "quality-assurance.events.description-with-topic-and-target": "Below the list of all the suggestions for the selected topic {{topic}}, related to {{source}} and ",
"quality-assurance.events.description-with-topic-and-target": "નીચે પસંદ કરેલા વિષય {{topic}} માટેની તમામ સૂચનાઓની યાદી છે, જે {{source}} અને",
- // "quality-assurance.event.table.event.message.serviceUrl": "Actor:",
- // TODO New key - Add a translation
- "quality-assurance.event.table.event.message.serviceUrl": "Actor:",
+ "quality-assurance.event.table.event.message.serviceUrl": "અભિનયકર્તા:",
- // "quality-assurance.event.table.event.message.link": "Link:",
- // TODO New key - Add a translation
- "quality-assurance.event.table.event.message.link": "Link:",
+ "quality-assurance.event.table.event.message.link": "લિંક:",
- // "service.detail.delete.cancel": "Cancel",
"service.detail.delete.cancel": "રદ કરો",
- // "service.detail.delete.button": "Delete service",
"service.detail.delete.button": "સેવા કાઢી નાખો",
- // "service.detail.delete.header": "Delete service",
"service.detail.delete.header": "સેવા કાઢી નાખો",
- // "service.detail.delete.body": "Are you sure you want to delete the current service?",
"service.detail.delete.body": "શું તમે ખરેખર વર્તમાન સેવાને કાઢી નાખવા માંગો છો?",
- // "service.detail.delete.confirm": "Delete service",
"service.detail.delete.confirm": "સેવા કાઢી નાખો",
- // "service.detail.delete.success": "The service was successfully deleted.",
"service.detail.delete.success": "સેવા સફળતાપૂર્વક કાઢી નાખવામાં આવી.",
- // "service.detail.delete.error": "Something went wrong when deleting the service",
"service.detail.delete.error": "સેવા કાઢી નાખતી વખતે કંઈક ખોટું થયું",
- // "service.overview.table.id": "Services ID",
"service.overview.table.id": "સેવાઓ ID",
- // "service.overview.table.name": "Name",
"service.overview.table.name": "નામ",
- // "service.overview.table.start": "Start time (UTC)",
"service.overview.table.start": "પ્રારંભ સમય (UTC)",
- // "service.overview.table.status": "Status",
"service.overview.table.status": "સ્થિતિ",
- // "service.overview.table.user": "User",
"service.overview.table.user": "વપરાશકર્તા",
- // "service.overview.title": "Services Overview",
"service.overview.title": "સેવાઓની ઝાંખી",
- // "service.overview.breadcrumbs": "Services Overview",
"service.overview.breadcrumbs": "સેવાઓની ઝાંખી",
- // "service.overview.table.actions": "Actions",
"service.overview.table.actions": "ક્રિયાઓ",
- // "service.overview.table.description": "Description",
"service.overview.table.description": "વર્ણન",
- // "submission.sections.submit.progressbar.coarnotify": "COAR Notify",
"submission.sections.submit.progressbar.coarnotify": "COAR નોટિફાય",
- // "submission.section.section-coar-notify.control.request-review.label": "You can request a review to one of the following services",
"submission.section.section-coar-notify.control.request-review.label": "તમે નીચેની સેવાઓમાંથી એક સમીક્ષા માટે વિનંતી કરી શકો છો",
- // "submission.section.section-coar-notify.control.request-endorsement.label": "You can request an Endorsement to one of the following overlay journals",
"submission.section.section-coar-notify.control.request-endorsement.label": "તમે નીચેના ઓવરલે જર્નલ્સમાંથી એક મંજૂરી માટે વિનંતી કરી શકો છો",
- // "submission.section.section-coar-notify.control.request-ingest.label": "You can request to ingest a copy of your submission to one of the following services",
"submission.section.section-coar-notify.control.request-ingest.label": "તમે નીચેની સેવાઓમાંથી એકને તમારી સબમિશનની નકલ ઇનજેસ્ટ કરવા માટે વિનંતી કરી શકો છો",
- // "submission.section.section-coar-notify.dropdown.no-data": "No data available",
"submission.section.section-coar-notify.dropdown.no-data": "કોઈ ડેટા ઉપલબ્ધ નથી",
- // "submission.section.section-coar-notify.dropdown.select-none": "Select none",
"submission.section.section-coar-notify.dropdown.select-none": "કોઈ પસંદ કરો",
- // "submission.section.section-coar-notify.small.notification": "Select a service for {{ pattern }} of this item",
"submission.section.section-coar-notify.small.notification": "આ આઇટમ માટે {{ pattern }} માટે સેવા પસંદ કરો",
- // "submission.section.section-coar-notify.selection.description": "Selected service's description:",
- // TODO New key - Add a translation
- "submission.section.section-coar-notify.selection.description": "Selected service's description:",
+ "submission.section.section-coar-notify.selection.description": "પસંદ કરેલી સેવાની વર્ણન:",
- // "submission.section.section-coar-notify.selection.no-description": "No further information is available",
"submission.section.section-coar-notify.selection.no-description": "કોઈ વધુ માહિતી ઉપલબ્ધ નથી",
- // "submission.section.section-coar-notify.notification.error": "The selected service is not suitable for the current item. Please check the description for details about which record can be managed by this service.",
"submission.section.section-coar-notify.notification.error": "પસંદ કરેલી સેવા વર્તમાન આઇટમ માટે યોગ્ય નથી. કૃપા કરીને તે રેકોર્ડ વિશેની વિગતો તપાસો કે જે આ સેવા દ્વારા સંચાલિત થઈ શકે છે.",
- // "submission.section.section-coar-notify.info.no-pattern": "No configurable patterns found.",
"submission.section.section-coar-notify.info.no-pattern": "કોઈ રૂપરેખાંકિત પેટર્ન મળ્યા નથી.",
- // "error.validation.coarnotify.invalidfilter": "Invalid filter, try to select another service or none.",
"error.validation.coarnotify.invalidfilter": "અમાન્ય ફિલ્ટર, કૃપા કરીને બીજી સેવા અથવા કોઈ પસંદ કરો.",
- // "request-status-alert-box.accepted": "The requested {{ offerType }} for {{ serviceName }} has been taken in charge.",
"request-status-alert-box.accepted": "વિનંતી કરેલ {{ offerType }} માટે {{ serviceName }} સ્વીકારવામાં આવી છે.",
- // "request-status-alert-box.rejected": "The requested {{ offerType }} for {{ serviceName }} has been rejected.",
"request-status-alert-box.rejected": "વિનંતી કરેલ {{ offerType }} માટે {{ serviceName }} નકારી દેવામાં આવી છે.",
- // "request-status-alert-box.tentative_rejected": "The requested {{ offerType }} for {{ serviceName }} has been tentatively rejected. Revisions are required",
"request-status-alert-box.tentative_rejected": "વિનંતી કરેલ {{ offerType }} માટે {{ serviceName }} તાત્કાલિક નકારી દેવામાં આવી છે. સુધારાઓ જરૂરી છે",
- // "request-status-alert-box.requested": "The requested {{ offerType }} for {{ serviceName }} is pending.",
"request-status-alert-box.requested": "વિનંતી કરેલ {{ offerType }} માટે {{ serviceName }} પેન્ડિંગ છે.",
- // "ldn-service-button-mark-inbound-deletion": "Mark supported pattern for deletion",
"ldn-service-button-mark-inbound-deletion": "માર્ક સપોર્ટેડ પેટર્ન માટે ડિલીશન",
- // "ldn-service-button-unmark-inbound-deletion": "Unmark supported pattern for deletion",
"ldn-service-button-unmark-inbound-deletion": "માર્ક સપોર્ટેડ પેટર્ન માટે અનમાર્ક",
- // "ldn-service-input-inbound-item-filter-dropdown": "Select Item filter for the pattern",
"ldn-service-input-inbound-item-filter-dropdown": "પેટર્ન માટે આઇટમ ફિલ્ટર પસંદ કરો",
- // "ldn-service-input-inbound-pattern-dropdown": "Select a pattern for service",
"ldn-service-input-inbound-pattern-dropdown": "સેવા માટે પેટર્ન પસંદ કરો",
- // "ldn-service-overview-select-delete": "Select service for deletion",
"ldn-service-overview-select-delete": "ડિલીશન માટે સેવા પસંદ કરો",
- // "ldn-service-overview-select-edit": "Edit LDN service",
"ldn-service-overview-select-edit": "LDN સેવા સંપાદિત કરો",
- // "ldn-service-overview-close-modal": "Close modal",
"ldn-service-overview-close-modal": "મોડલ બંધ કરો",
- // "ldn-service-usesActorEmailId": "Requires actor email in notifications",
"ldn-service-usesActorEmailId": "સૂચનાઓમાં અભિનયકર્તા ઇમેઇલની જરૂર છે",
- // "ldn-service-usesActorEmailId-description": "If enabled, initial notifications sent will include the submitter email rather than the repository URL. This is usually the case for endorsement or review services.",
"ldn-service-usesActorEmailId-description": "જો સક્રિય છે, તો પ્રારંભિક સૂચનાઓમાં સબમિટર ઇમેઇલ શામેલ હશે, રિપોઝિટરી URL ના બદલે. આ સામાન્ય રીતે મંજૂરી અથવા સમીક્ષા સેવાઓ માટે છે.",
- // "a-common-or_statement.label": "Item type is Journal Article or Dataset",
"a-common-or_statement.label": "આઇટમ પ્રકાર જર્નલ આર્ટિકલ અથવા ડેટાસેટ છે",
- // "always_true_filter.label": "Always true",
"always_true_filter.label": "હંમેશા સાચું",
- // "automatic_processing_collection_filter_16.label": "Automatic processing",
"automatic_processing_collection_filter_16.label": "સ્વચાલિત પ્રક્રિયા",
- // "dc-identifier-uri-contains-doi_condition.label": "URI contains DOI",
"dc-identifier-uri-contains-doi_condition.label": "URI માં DOI શામેલ છે",
- // "doi-filter.label": "DOI filter",
"doi-filter.label": "DOI ફિલ્ટર",
- // "driver-document-type_condition.label": "Document type equals driver",
"driver-document-type_condition.label": "ડોક્યુમેન્ટ પ્રકાર ડ્રાઇવર સમાન છે",
- // "has-at-least-one-bitstream_condition.label": "Has at least one Bitstream",
"has-at-least-one-bitstream_condition.label": "ઓછામાં ઓછું એક બિટસ્ટ્રીમ છે",
- // "has-bitstream_filter.label": "Has Bitstream",
"has-bitstream_filter.label": "બિટસ્ટ્રીમ છે",
- // "has-one-bitstream_condition.label": "Has one Bitstream",
"has-one-bitstream_condition.label": "એક બિટસ્ટ્રીમ છે",
- // "is-archived_condition.label": "Is archived",
"is-archived_condition.label": "આર્કાઇવ્ડ છે",
- // "is-withdrawn_condition.label": "Is withdrawn",
"is-withdrawn_condition.label": "વિથડ્રોન છે",
- // "item-is-public_condition.label": "Item is public",
"item-is-public_condition.label": "આઇટમ જાહેર છે",
- // "journals_ingest_suggestion_collection_filter_18.label": "Journals ingest",
"journals_ingest_suggestion_collection_filter_18.label": "જર્નલ્સ ઇનજેસ્ટ",
- // "title-starts-with-pattern_condition.label": "Title starts with pattern",
"title-starts-with-pattern_condition.label": "શીર્ષક પેટર્ન સાથે શરૂ થાય છે",
- // "type-equals-dataset_condition.label": "Type equals Dataset",
"type-equals-dataset_condition.label": "પ્રકાર ડેટાસેટ સમાન છે",
- // "type-equals-journal-article_condition.label": "Type equals Journal Article",
"type-equals-journal-article_condition.label": "પ્રકાર જર્નલ આર્ટિકલ સમાન છે",
- // "ldn.no-filter.label": "None",
"ldn.no-filter.label": "કોઈ નથી",
- // "admin.notify.dashboard": "Dashboard",
"admin.notify.dashboard": "ડેશબોર્ડ",
- // "menu.section.notify_dashboard": "Dashboard",
"menu.section.notify_dashboard": "ડેશબોર્ડ",
- // "menu.section.coar_notify": "COAR Notify",
"menu.section.coar_notify": "COAR નોટિફાય",
- // "admin-notify-dashboard.title": "Notify Dashboard",
"admin-notify-dashboard.title": "નોટિફાય ડેશબોર્ડ",
- // "admin-notify-dashboard.description": "The Notify dashboard monitor the general usage of the COAR Notify protocol across the repository. In the “Metrics” tab are statistics about usage of the COAR Notify protocol. In the “Logs/Inbound” and “Logs/Outbound” tabs it’s possible to search and check the individual status of each LDN message, either received or sent.",
"admin-notify-dashboard.description": "નોટિફાય ડેશબોર્ડ રિપોઝિટરીમાં COAR નોટિફાય પ્રોટોકોલના સામાન્ય ઉપયોગની મોનિટર કરે છે. “મેટ્રિક્સ” ટેબમાં COAR નોટિફાય પ્રોટોકોલના ઉપયોગ વિશેના આંકડા છે. “લોગ્સ/ઇનબાઉન્ડ” અને “લોગ્સ/આઉટબાઉન્ડ” ટેબમાં દરેક LDN સંદેશાની વ્યક્તિગત સ્થિતિ તપાસવી અને શોધવી શક્ય છે, જે પ્રાપ્ત અથવા મોકલવામાં આવી છે.",
- // "admin-notify-dashboard.metrics": "Metrics",
"admin-notify-dashboard.metrics": "મેટ્રિક્સ",
- // "admin-notify-dashboard.received-ldn": "Number of received LDN",
"admin-notify-dashboard.received-ldn": "પ્રાપ્ત LDN ની સંખ્યા",
- // "admin-notify-dashboard.generated-ldn": "Number of generated LDN",
"admin-notify-dashboard.generated-ldn": "ઉત્પાદિત LDN ની સંખ્યા",
- // "admin-notify-dashboard.NOTIFY.incoming.accepted": "Accepted",
"admin-notify-dashboard.NOTIFY.incoming.accepted": "સ્વીકાર્યું",
- // "admin-notify-dashboard.NOTIFY.incoming.accepted.description": "Accepted inbound notifications",
"admin-notify-dashboard.NOTIFY.incoming.accepted.description": "સ્વીકારેલ ઇનબાઉન્ડ સૂચનાઓ",
- // "admin-notify-logs.NOTIFY.incoming.accepted": "Currently displaying: Accepted notifications",
- // TODO New key - Add a translation
- "admin-notify-logs.NOTIFY.incoming.accepted": "Currently displaying: Accepted notifications",
+ "admin-notify-logs.NOTIFY.incoming.accepted": "હાલમાં દર્શાવેલ: સ્વીકારેલ સૂચનાઓ",
- // "admin-notify-dashboard.NOTIFY.incoming.processed": "Processed LDN",
"admin-notify-dashboard.NOTIFY.incoming.processed": "પ્રક્રિયા કરેલ LDN",
- // "admin-notify-dashboard.NOTIFY.incoming.processed.description": "Processed inbound notifications",
"admin-notify-dashboard.NOTIFY.incoming.processed.description": "પ્રક્રિયા કરેલ ઇનબાઉન્ડ સૂચનાઓ",
- // "admin-notify-logs.NOTIFY.incoming.processed": "Currently displaying: Processed LDN",
- // TODO New key - Add a translation
- "admin-notify-logs.NOTIFY.incoming.processed": "Currently displaying: Processed LDN",
+ "admin-notify-logs.NOTIFY.incoming.processed": "હાલમાં દર્શાવેલ: પ્રક્રિયા કરેલ LDN",
- // "admin-notify-logs.NOTIFY.incoming.failure": "Currently displaying: Failed notifications",
- // TODO New key - Add a translation
- "admin-notify-logs.NOTIFY.incoming.failure": "Currently displaying: Failed notifications",
+ "admin-notify-logs.NOTIFY.incoming.failure": "હાલમાં દર્શાવેલ: નિષ્ફળ સૂચનાઓ",
- // "admin-notify-dashboard.NOTIFY.incoming.failure": "Failure",
"admin-notify-dashboard.NOTIFY.incoming.failure": "નિષ્ફળ",
- // "admin-notify-dashboard.NOTIFY.incoming.failure.description": "Failed inbound notifications",
"admin-notify-dashboard.NOTIFY.incoming.failure.description": "નિષ્ફળ ઇનબાઉન્ડ સૂચનાઓ",
- // "admin-notify-logs.NOTIFY.outgoing.failure": "Currently displaying: Failed notifications",
- // TODO New key - Add a translation
- "admin-notify-logs.NOTIFY.outgoing.failure": "Currently displaying: Failed notifications",
+ "admin-notify-logs.NOTIFY.outgoing.failure": "હાલમાં દર્શાવેલ: નિષ્ફળ સૂચનાઓ",
- // "admin-notify-dashboard.NOTIFY.outgoing.failure": "Failure",
"admin-notify-dashboard.NOTIFY.outgoing.failure": "નિષ્ફળ",
- // "admin-notify-dashboard.NOTIFY.outgoing.failure.description": "Failed outbound notifications",
"admin-notify-dashboard.NOTIFY.outgoing.failure.description": "નિષ્ફળ આઉટબાઉન્ડ સૂચનાઓ",
- // "admin-notify-logs.NOTIFY.incoming.untrusted": "Currently displaying: Untrusted notifications",
- // TODO New key - Add a translation
- "admin-notify-logs.NOTIFY.incoming.untrusted": "Currently displaying: Untrusted notifications",
+ "admin-notify-logs.NOTIFY.incoming.untrusted": "હાલમાં દર્શાવેલ: અવિશ્વસનીય સૂચનાઓ",
- // "admin-notify-dashboard.NOTIFY.incoming.untrusted": "Untrusted",
"admin-notify-dashboard.NOTIFY.incoming.untrusted": "અવિશ્વસનીય",
- // "admin-notify-dashboard.NOTIFY.incoming.untrusted.description": "Inbound notifications not trusted",
"admin-notify-dashboard.NOTIFY.incoming.untrusted.description": "અવિશ્વસનીય ઇનબાઉન્ડ સૂચનાઓ",
- // "admin-notify-logs.NOTIFY.incoming.delivered": "Currently displaying: Delivered notifications",
- // TODO New key - Add a translation
- "admin-notify-logs.NOTIFY.incoming.delivered": "Currently displaying: Delivered notifications",
+ "admin-notify-logs.NOTIFY.incoming.delivered": "હાલમાં દર્શાવેલ: પહોંચાડેલ સૂચનાઓ",
- // "admin-notify-dashboard.NOTIFY.incoming.delivered.description": "Inbound notifications successfully delivered",
"admin-notify-dashboard.NOTIFY.incoming.delivered.description": "સફળતાપૂર્વક પહોંચાડેલ ઇનબાઉન્ડ સૂચનાઓ",
- // "admin-notify-dashboard.NOTIFY.outgoing.delivered": "Delivered",
"admin-notify-dashboard.NOTIFY.outgoing.delivered": "પહોંચાડેલ",
- // "admin-notify-logs.NOTIFY.outgoing.delivered": "Currently displaying: Delivered notifications",
- // TODO New key - Add a translation
- "admin-notify-logs.NOTIFY.outgoing.delivered": "Currently displaying: Delivered notifications",
+ "admin-notify-logs.NOTIFY.outgoing.delivered": "હાલમાં દર્શાવેલ: પહોંચાડેલ સૂચનાઓ",
- // "admin-notify-dashboard.NOTIFY.outgoing.delivered.description": "Outbound notifications successfully delivered",
"admin-notify-dashboard.NOTIFY.outgoing.delivered.description": "સફળતાપૂર્વક પહોંચાડેલ આઉટબાઉન્ડ સૂચનાઓ",
- // "admin-notify-logs.NOTIFY.outgoing.queued": "Currently displaying: Queued notifications",
- // TODO New key - Add a translation
- "admin-notify-logs.NOTIFY.outgoing.queued": "Currently displaying: Queued notifications",
+ "admin-notify-logs.NOTIFY.outgoing.queued": "હાલમાં દર્શાવેલ: કતારમાં સૂચનાઓ",
- // "admin-notify-dashboard.NOTIFY.outgoing.queued.description": "Notifications currently queued",
"admin-notify-dashboard.NOTIFY.outgoing.queued.description": "હાલમાં કતારમાં સૂચનાઓ",
- // "admin-notify-dashboard.NOTIFY.outgoing.queued": "Queued",
"admin-notify-dashboard.NOTIFY.outgoing.queued": "કતારમાં",
- // "admin-notify-logs.NOTIFY.outgoing.queued_for_retry": "Currently displaying: Queued for retry notifications",
- // TODO New key - Add a translation
- "admin-notify-logs.NOTIFY.outgoing.queued_for_retry": "Currently displaying: Queued for retry notifications",
+ "admin-notify-logs.NOTIFY.outgoing.queued_for_retry": "હાલમાં દર્શાવેલ: પુનઃપ્રયાસ માટે કતારમાં સૂચનાઓ",
- // "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry": "Queued for retry",
"admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry": "પુનઃપ્રયાસ માટે કતારમાં",
- // "admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry.description": "Notifications currently queued for retry",
"admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry.description": "હાલમાં પુનઃપ્રયાસ માટે કતારમાં સૂચનાઓ",
- // "admin-notify-dashboard.NOTIFY.incoming.involvedItems": "Items involved",
"admin-notify-dashboard.NOTIFY.incoming.involvedItems": "સંબંધિત આઇટમ્સ",
- // "admin-notify-dashboard.NOTIFY.incoming.involvedItems.description": "Items related to inbound notifications",
"admin-notify-dashboard.NOTIFY.incoming.involvedItems.description": "ઇનબાઉન્ડ સૂચનાઓ સાથે સંબંધિત આઇટમ્સ",
- // "admin-notify-dashboard.NOTIFY.outgoing.involvedItems": "Items involved",
"admin-notify-dashboard.NOTIFY.outgoing.involvedItems": "સંબંધિત આઇટમ્સ",
- // "admin-notify-dashboard.NOTIFY.outgoing.involvedItems.description": "Items related to outbound notifications",
"admin-notify-dashboard.NOTIFY.outgoing.involvedItems.description": "આઉટબાઉન્ડ સૂચનાઓ સાથે સંબંધિત આઇટમ્સ",
- // "admin.notify.dashboard.breadcrumbs": "Dashboard",
"admin.notify.dashboard.breadcrumbs": "ડેશબોર્ડ",
- // "admin.notify.dashboard.inbound": "Inbound messages",
"admin.notify.dashboard.inbound": "ઇનબાઉન્ડ સંદેશાઓ",
- // "admin.notify.dashboard.inbound-logs": "Logs/Inbound",
"admin.notify.dashboard.inbound-logs": "લોગ્સ/ઇનબાઉન્ડ",
- // "admin.notify.dashboard.filter": "Filter: ",
- // TODO New key - Add a translation
- "admin.notify.dashboard.filter": "Filter: ",
+ "admin.notify.dashboard.filter": "ફિલ્ટર: ",
- // "search.filters.applied.f.relateditem": "Related items",
"search.filters.applied.f.relateditem": "સંબંધિત આઇટમ્સ",
- // "search.filters.applied.f.ldn_service": "LDN Service",
"search.filters.applied.f.ldn_service": "LDN સેવા",
- // "search.filters.applied.f.notifyReview": "Notify Review",
"search.filters.applied.f.notifyReview": "નોટિફાય સમીક્ષા",
- // "search.filters.applied.f.notifyEndorsement": "Notify Endorsement",
"search.filters.applied.f.notifyEndorsement": "નોટિફાય મંજૂરી",
- // "search.filters.applied.f.notifyRelation": "Notify Relation",
"search.filters.applied.f.notifyRelation": "નોટિફાય સંબંધ",
- // "search.filters.applied.f.access_status": "Access type",
"search.filters.applied.f.access_status": "ઍક્સેસ પ્રકાર",
- // "search.filters.filter.queue_last_start_time.head": "Last processing time ",
"search.filters.filter.queue_last_start_time.head": "છેલ્લી પ્રક્રિયા સમય ",
- // "search.filters.filter.queue_last_start_time.min.label": "Min range",
"search.filters.filter.queue_last_start_time.min.label": "ન્યૂનતમ શ્રેણી",
- // "search.filters.filter.queue_last_start_time.max.label": "Max range",
"search.filters.filter.queue_last_start_time.max.label": "મહત્તમ શ્રેણી",
- // "search.filters.applied.f.queue_last_start_time.min": "Min range",
"search.filters.applied.f.queue_last_start_time.min": "ન્યૂનતમ શ્રેણી",
- // "search.filters.applied.f.queue_last_start_time.max": "Max range",
"search.filters.applied.f.queue_last_start_time.max": "મહત્તમ શ્રેણી",
- // "admin.notify.dashboard.outbound": "Outbound messages",
"admin.notify.dashboard.outbound": "આઉટબાઉન્ડ સંદેશાઓ",
- // "admin.notify.dashboard.outbound-logs": "Logs/Outbound",
"admin.notify.dashboard.outbound-logs": "લોગ્સ/આઉટબાઉન્ડ",
- // "NOTIFY.incoming.search.results.head": "Incoming",
"NOTIFY.incoming.search.results.head": "ઇનબાઉન્ડ",
- // "search.filters.filter.relateditem.head": "Related item",
"search.filters.filter.relateditem.head": "સંબંધિત આઇટમ",
- // "search.filters.filter.origin.head": "Origin",
"search.filters.filter.origin.head": "મૂળ",
- // "search.filters.filter.ldn_service.head": "LDN Service",
"search.filters.filter.ldn_service.head": "LDN સેવા",
- // "search.filters.filter.target.head": "Target",
"search.filters.filter.target.head": "લક્ષ્ય",
- // "search.filters.filter.queue_status.head": "Queue status",
"search.filters.filter.queue_status.head": "કતાર સ્થિતિ",
- // "search.filters.filter.activity_stream_type.head": "Activity stream type",
"search.filters.filter.activity_stream_type.head": "પ્રવાહ પ્રકાર",
- // "search.filters.filter.coar_notify_type.head": "COAR Notify type",
"search.filters.filter.coar_notify_type.head": "COAR નોટિફાય પ્રકાર",
- // "search.filters.filter.notification_type.head": "Notification type",
"search.filters.filter.notification_type.head": "સૂચના પ્રકાર",
- // "search.filters.filter.relateditem.label": "Search related items",
"search.filters.filter.relateditem.label": "સંબંધિત આઇટમ્સ માટે શોધો",
- // "search.filters.filter.queue_status.label": "Search queue status",
"search.filters.filter.queue_status.label": "કતાર સ્થિતિ માટે શોધો",
- // "search.filters.filter.target.label": "Search target",
"search.filters.filter.target.label": "લક્ષ્ય માટે શોધો",
- // "search.filters.filter.activity_stream_type.label": "Search activity stream type",
"search.filters.filter.activity_stream_type.label": "પ્રવાહ પ્રકાર માટે શોધો",
- // "search.filters.applied.f.queue_status": "Queue Status",
"search.filters.applied.f.queue_status": "કતાર સ્થિતિ",
- // "search.filters.queue_status.0,authority": "Untrusted Ip",
"search.filters.queue_status.0,authority": "અવિશ્વસનીય Ip",
- // "search.filters.queue_status.1,authority": "Queued",
"search.filters.queue_status.1,authority": "કતારમાં",
- // "search.filters.queue_status.2,authority": "Processing",
"search.filters.queue_status.2,authority": "પ્રક્રિયા",
- // "search.filters.queue_status.3,authority": "Processed",
"search.filters.queue_status.3,authority": "પ્રક્રિયા કરેલ",
- // "search.filters.queue_status.4,authority": "Failed",
"search.filters.queue_status.4,authority": "નિષ્ફળ",
- // "search.filters.queue_status.5,authority": "Untrusted",
"search.filters.queue_status.5,authority": "અવિશ્વસનીય",
- // "search.filters.queue_status.6,authority": "Unmapped Action",
"search.filters.queue_status.6,authority": "અનમૅપ્ડ ક્રિયા",
- // "search.filters.queue_status.7,authority": "Queued for retry",
"search.filters.queue_status.7,authority": "પુનઃપ્રયાસ માટે કતારમાં",
- // "search.filters.applied.f.activity_stream_type": "Activity stream type",
"search.filters.applied.f.activity_stream_type": "પ્રવાહ પ્રકાર",
- // "search.filters.applied.f.coar_notify_type": "COAR Notify type",
"search.filters.applied.f.coar_notify_type": "COAR નોટિફાય પ્રકાર",
- // "search.filters.applied.f.notification_type": "Notification type",
"search.filters.applied.f.notification_type": "સૂચના પ્રકાર",
- // "search.filters.filter.coar_notify_type.label": "Search COAR Notify type",
"search.filters.filter.coar_notify_type.label": "COAR નોટિફાય પ્રકાર માટે શોધો",
- // "search.filters.filter.notification_type.label": "Search notification type",
"search.filters.filter.notification_type.label": "સૂચના પ્રકાર માટે શોધો",
- // "search.filters.filter.relateditem.placeholder": "Related items",
"search.filters.filter.relateditem.placeholder": "સંબંધિત આઇટમ્સ",
- // "search.filters.filter.target.placeholder": "Target",
"search.filters.filter.target.placeholder": "લક્ષ્ય",
- // "search.filters.filter.origin.label": "Search source",
"search.filters.filter.origin.label": "મૂળ માટે શોધો",
- // "search.filters.filter.origin.placeholder": "Source",
"search.filters.filter.origin.placeholder": "મૂળ",
- // "search.filters.filter.ldn_service.label": "Search LDN Service",
"search.filters.filter.ldn_service.label": "LDN સેવા માટે શોધો",
- // "search.filters.filter.ldn_service.placeholder": "LDN Service",
"search.filters.filter.ldn_service.placeholder": "LDN સેવા",
- // "search.filters.filter.queue_status.placeholder": "Queue status",
"search.filters.filter.queue_status.placeholder": "કતાર સ્થિતિ",
- // "search.filters.filter.activity_stream_type.placeholder": "Activity stream type",
"search.filters.filter.activity_stream_type.placeholder": "પ્રવાહ પ્રકાર",
- // "search.filters.filter.coar_notify_type.placeholder": "COAR Notify type",
"search.filters.filter.coar_notify_type.placeholder": "COAR નોટિફાય પ્રકાર",
- // "search.filters.filter.notification_type.placeholder": "Notification",
"search.filters.filter.notification_type.placeholder": "સૂચના",
- // "search.filters.filter.notifyRelation.head": "Notify Relation",
"search.filters.filter.notifyRelation.head": "નોટિફાય સંબંધ",
- // "search.filters.filter.notifyRelation.label": "Search Notify Relation",
"search.filters.filter.notifyRelation.label": "નોટિફાય સંબંધ માટે શોધો",
- // "search.filters.filter.notifyRelation.placeholder": "Notify Relation",
"search.filters.filter.notifyRelation.placeholder": "નોટિફાય સંબંધ",
- // "search.filters.filter.notifyReview.head": "Notify Review",
"search.filters.filter.notifyReview.head": "નોટિફાય સમીક્ષા",
- // "search.filters.filter.notifyReview.label": "Search Notify Review",
"search.filters.filter.notifyReview.label": "નોટિફાય સમીક્ષા માટે શોધો",
- // "search.filters.filter.notifyReview.placeholder": "Notify Review",
"search.filters.filter.notifyReview.placeholder": "નોટિફાય સમીક્ષા",
- // "search.filters.coar_notify_type.coar-notify:ReviewAction": "Review action",
"search.filters.coar_notify_type.coar-notify:ReviewAction": "સમીક્ષા ક્રિયા",
- // "search.filters.coar_notify_type.coar-notify:ReviewAction,authority": "Review action",
"search.filters.coar_notify_type.coar-notify:ReviewAction,authority": "સમીક્ષા ક્રિયા",
- // "notify-detail-modal.coar-notify:ReviewAction": "Review action",
"notify-detail-modal.coar-notify:ReviewAction": "સમીક્ષા ક્રિયા",
- // "search.filters.coar_notify_type.coar-notify:EndorsementAction": "Endorsement action",
"search.filters.coar_notify_type.coar-notify:EndorsementAction": "મંજૂરી ક્રિયા",
- // "search.filters.coar_notify_type.coar-notify:EndorsementAction,authority": "Endorsement action",
"search.filters.coar_notify_type.coar-notify:EndorsementAction,authority": "મંજૂરી ક્રિયા",
- // "notify-detail-modal.coar-notify:EndorsementAction": "Endorsement action",
"notify-detail-modal.coar-notify:EndorsementAction": "મંજૂરી ક્રિયા",
- // "search.filters.coar_notify_type.coar-notify:IngestAction": "Ingest action",
"search.filters.coar_notify_type.coar-notify:IngestAction": "ઇનજેસ્ટ ક્રિયા",
- // "search.filters.coar_notify_type.coar-notify:IngestAction,authority": "Ingest action",
"search.filters.coar_notify_type.coar-notify:IngestAction,authority": "ઇનજેસ્ટ ક્રિયા",
- // "notify-detail-modal.coar-notify:IngestAction": "Ingest action",
"notify-detail-modal.coar-notify:IngestAction": "ઇનજેસ્ટ ક્રિયા",
- // "search.filters.coar_notify_type.coar-notify:RelationshipAction": "Relationship action",
"search.filters.coar_notify_type.coar-notify:RelationshipAction": "સંબંધ ક્રિયા",
- // "search.filters.coar_notify_type.coar-notify:RelationshipAction,authority": "Relationship action",
"search.filters.coar_notify_type.coar-notify:RelationshipAction,authority": "સંબંધ ક્રિયા",
- // "notify-detail-modal.coar-notify:RelationshipAction": "Relationship action",
"notify-detail-modal.coar-notify:RelationshipAction": "સંબંધ ક્રિયા",
- // "search.filters.queue_status.QUEUE_STATUS_QUEUED": "Queued",
"search.filters.queue_status.QUEUE_STATUS_QUEUED": "કતારમાં",
- // "notify-detail-modal.QUEUE_STATUS_QUEUED": "Queued",
"notify-detail-modal.QUEUE_STATUS_QUEUED": "કતારમાં",
- // "search.filters.queue_status.QUEUE_STATUS_QUEUED_FOR_RETRY": "Queued for retry",
"search.filters.queue_status.QUEUE_STATUS_QUEUED_FOR_RETRY": "પુનઃપ્રયાસ માટે કતારમાં",
- // "notify-detail-modal.QUEUE_STATUS_QUEUED_FOR_RETRY": "Queued for retry",
"notify-detail-modal.QUEUE_STATUS_QUEUED_FOR_RETRY": "પુનઃપ્રયાસ માટે કતારમાં",
- // "search.filters.queue_status.QUEUE_STATUS_PROCESSING": "Processing",
"search.filters.queue_status.QUEUE_STATUS_PROCESSING": "પ્રક્રિયા",
- // "notify-detail-modal.QUEUE_STATUS_PROCESSING": "Processing",
"notify-detail-modal.QUEUE_STATUS_PROCESSING": "પ્રક્રિયા",
- // "search.filters.queue_status.QUEUE_STATUS_PROCESSED": "Processed",
"search.filters.queue_status.QUEUE_STATUS_PROCESSED": "પ્રક્રિયા કરેલ",
- // "notify-detail-modal.QUEUE_STATUS_PROCESSED": "Processed",
"notify-detail-modal.QUEUE_STATUS_PROCESSED": "પ્રક્રિયા કરેલ",
- // "search.filters.queue_status.QUEUE_STATUS_FAILED": "Failed",
"search.filters.queue_status.QUEUE_STATUS_FAILED": "નિષ્ફળ",
- // "notify-detail-modal.QUEUE_STATUS_FAILED": "Failed",
"notify-detail-modal.QUEUE_STATUS_FAILED": "નિષ્ફળ",
- // "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED": "Untrusted",
"search.filters.queue_status.QUEUE_STATUS_UNTRUSTED": "અવિશ્વસનીય",
- // "search.filters.queue_status.QUEUE_STATUS_UNTRUSTED_IP": "Untrusted Ip",
"search.filters.queue_status.QUEUE_STATUS_UNTRUSTED_IP": "અવિશ્વસનીય Ip",
- // "notify-detail-modal.QUEUE_STATUS_UNTRUSTED": "Untrusted",
"notify-detail-modal.QUEUE_STATUS_UNTRUSTED": "અવિશ્વસનીય",
- // "notify-detail-modal.QUEUE_STATUS_UNTRUSTED_IP": "Untrusted Ip",
"notify-detail-modal.QUEUE_STATUS_UNTRUSTED_IP": "અવિશ્વસનીય Ip",
- // "search.filters.queue_status.QUEUE_STATUS_UNMAPPED_ACTION": "Unmapped Action",
"search.filters.queue_status.QUEUE_STATUS_UNMAPPED_ACTION": "અનમૅપ્ડ ક્રિયા",
- // "notify-detail-modal.QUEUE_STATUS_UNMAPPED_ACTION": "Unmapped Action",
"notify-detail-modal.QUEUE_STATUS_UNMAPPED_ACTION": "અનમૅપ્ડ ક્રિયા",
- // "sorting.queue_last_start_time.DESC": "Last started queue Descending",
"sorting.queue_last_start_time.DESC": "છેલ્લી શરૂ થયેલી કતાર ઉતરતી ક્રમમાં",
- // "sorting.queue_last_start_time.ASC": "Last started queue Ascending",
"sorting.queue_last_start_time.ASC": "છેલ્લી શરૂ થયેલી કતાર ચડતી ક્રમમાં",
- // "sorting.queue_attempts.DESC": "Queue attempted Descending",
"sorting.queue_attempts.DESC": "કતાર પ્રયાસ ઉતરતી ક્રમમાં",
- // "sorting.queue_attempts.ASC": "Queue attempted Ascending",
"sorting.queue_attempts.ASC": "કતાર પ્રયાસ ચડતી ક્રમમાં",
- // "NOTIFY.incoming.involvedItems.search.results.head": "Items involved in incoming LDN",
"NOTIFY.incoming.involvedItems.search.results.head": "ઇનબાઉન્ડ LDN માં સંકળાયેલા આઇટમ્સ",
- // "NOTIFY.outgoing.involvedItems.search.results.head": "Items involved in outgoing LDN",
"NOTIFY.outgoing.involvedItems.search.results.head": "આઉટબાઉન્ડ LDN માં સંકળાયેલા આઇટમ્સ",
- // "type.notify-detail-modal": "Type",
"type.notify-detail-modal": "પ્રકાર",
- // "id.notify-detail-modal": "Id",
"id.notify-detail-modal": "Id",
- // "coarNotifyType.notify-detail-modal": "COAR Notify type",
"coarNotifyType.notify-detail-modal": "COAR નોટિફાય પ્રકાર",
- // "activityStreamType.notify-detail-modal": "Activity stream type",
"activityStreamType.notify-detail-modal": "પ્રવાહ પ્રકાર",
- // "inReplyTo.notify-detail-modal": "In reply to",
"inReplyTo.notify-detail-modal": "જવાબમાં",
- // "object.notify-detail-modal": "Repository Item",
"object.notify-detail-modal": "રિપોઝિટરી આઇટમ",
- // "context.notify-detail-modal": "Repository Item",
"context.notify-detail-modal": "રિપોઝિટરી આઇટમ",
- // "queueAttempts.notify-detail-modal": "Queue attempts",
"queueAttempts.notify-detail-modal": "કતાર પ્રયાસ",
- // "queueLastStartTime.notify-detail-modal": "Queue last started",
"queueLastStartTime.notify-detail-modal": "છેલ્લી કતાર શરૂ",
- // "origin.notify-detail-modal": "LDN Service",
"origin.notify-detail-modal": "LDN સેવા",
- // "target.notify-detail-modal": "LDN Service",
"target.notify-detail-modal": "LDN સેવા",
- // "queueStatusLabel.notify-detail-modal": "Queue status",
"queueStatusLabel.notify-detail-modal": "કતાર સ્થિતિ",
- // "queueTimeout.notify-detail-modal": "Queue timeout",
"queueTimeout.notify-detail-modal": "કતાર સમયમર્યાદા",
- // "notify-message-modal.title": "Message Detail",
"notify-message-modal.title": "સંદેશ વિગત",
- // "notify-message-modal.show-message": "Show message",
"notify-message-modal.show-message": "સંદેશ બતાવો",
- // "notify-message-result.timestamp": "Timestamp",
"notify-message-result.timestamp": "ટાઇમસ્ટેમ્પ",
- // "notify-message-result.repositoryItem": "Repository Item",
"notify-message-result.repositoryItem": "રિપોઝિટરી આઇટમ",
- // "notify-message-result.ldnService": "LDN Service",
"notify-message-result.ldnService": "LDN સેવા",
- // "notify-message-result.type": "Type",
"notify-message-result.type": "પ્રકાર",
- // "notify-message-result.status": "Status",
"notify-message-result.status": "સ્થિતિ",
- // "notify-message-result.action": "Action",
"notify-message-result.action": "ક્રિયા",
- // "notify-message-result.detail": "Detail",
"notify-message-result.detail": "વિગત",
- // "notify-message-result.reprocess": "Reprocess",
"notify-message-result.reprocess": "ફરીથી પ્રક્રિયા",
- // "notify-queue-status.processed": "Processed",
"notify-queue-status.processed": "પ્રક્રિયા કરેલ",
- // "notify-queue-status.failed": "Failed",
"notify-queue-status.failed": "નિષ્ફળ",
- // "notify-queue-status.queue_retry": "Queued for retry",
"notify-queue-status.queue_retry": "પુનઃપ્રયાસ માટે કતારમાં",
- // "notify-queue-status.unmapped_action": "Unmapped action",
"notify-queue-status.unmapped_action": "અનમૅપ્ડ ક્રિયા",
- // "notify-queue-status.processing": "Processing",
"notify-queue-status.processing": "પ્રક્રિયા",
- // "notify-queue-status.queued": "Queued",
"notify-queue-status.queued": "કતારમાં",
- // "notify-queue-status.untrusted": "Untrusted",
"notify-queue-status.untrusted": "અવિશ્વસનીય",
- // "ldnService.notify-detail-modal": "LDN Service",
"ldnService.notify-detail-modal": "LDN સેવા",
- // "relatedItem.notify-detail-modal": "Related Item",
"relatedItem.notify-detail-modal": "સંબંધિત આઇટમ",
- // "search.filters.filter.notifyEndorsement.head": "Notify Endorsement",
"search.filters.filter.notifyEndorsement.head": "નોટિફાય મંજૂરી",
- // "search.filters.filter.notifyEndorsement.placeholder": "Notify Endorsement",
"search.filters.filter.notifyEndorsement.placeholder": "નોટિફાય મંજૂરી",
- // "search.filters.filter.notifyEndorsement.label": "Search Notify Endorsement",
"search.filters.filter.notifyEndorsement.label": "નોટિફાય મંજૂરી માટે શોધો",
- // "form.date-picker.placeholder.year": "Year",
"form.date-picker.placeholder.year": "વર્ષ",
- // "form.date-picker.placeholder.month": "Month",
"form.date-picker.placeholder.month": "મહિનો",
- // "form.date-picker.placeholder.day": "Day",
"form.date-picker.placeholder.day": "દિવસ",
- // "item.page.license.title": "Rights and licensing",
- // TODO New key - Add a translation
- "item.page.license.title": "Rights and licensing",
-
- // "item.page.cc.license.title": "Creative Commons license",
"item.page.cc.license.title": "ક્રિએટિવ કોમન્સ લાઇસન્સ",
- // "item.page.cc.license.disclaimer": "Except where otherwise noted, this item's license is described as",
"item.page.cc.license.disclaimer": "જ્યાં અન્યથા નોંધાયેલ નથી, ત્યાં આ આઇટમનું લાઇસન્સ આ પ્રમાણે વર્ણવવામાં આવ્યું છે",
- // "file-download-link.download": "Download ",
- "file-download-link.download": "ડાઉનલોડ કરો",
+ "browse.search-form.placeholder": "રિપોઝિટરી શોધો",
- // "file-download-button.download": "Download",
- // TODO New key - Add a translation
- "file-download-button.download": "Download",
+ "file-download-link.download": "ડાઉનલોડ કરો",
- // "register-page.registration.aria.label": "Enter your e-mail address",
"register-page.registration.aria.label": "તમારો ઇમેઇલ સરનામું દાખલ કરો",
- // "forgot-email.form.aria.label": "Enter your e-mail address",
"forgot-email.form.aria.label": "તમારો ઇમેઇલ સરનામું દાખલ કરો",
- // "search-facet-option.update.announcement": "The page will be reloaded. Filter {{ filter }} is selected.",
"search-facet-option.update.announcement": "પેજ ફરીથી લોડ થશે. ફિલ્ટર {{ filter }} પસંદ કરેલ છે.",
- // "live-region.ordering.instructions": "Press spacebar to reorder {{ itemName }}.",
"live-region.ordering.instructions": "પુનઃક્રમમાં ગોઠવવા માટે સ્પેસબાર દબાવો {{ itemName }}.",
- // "live-region.ordering.status": "{{ itemName }}, grabbed. Current position in list: {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.",
- // TODO New key - Add a translation
- "live-region.ordering.status": "{{ itemName }}, grabbed. Current position in list: {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.",
+ "live-region.ordering.status": "{{ itemName }}, પકડ્યું. સૂચિમાં વર્તમાન સ્થિતિ: {{ index }} માંથી {{ length }}. સ્થિતિ બદલવા માટે ઉપર અને નીચેના તીર કીઓ દબાવો, છોડવા માટે સ્પેસબાર દબાવો, રદ કરવા માટે એસ્કેપ દબાવો.",
- // "live-region.ordering.moved": "{{ itemName }}, moved to position {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.",
"live-region.ordering.moved": "{{ itemName }}, સ્થિતિમાં ખસેડ્યું {{ index }} માંથી {{ length }}. સ્થિતિ બદલવા માટે ઉપર અને નીચેના તીર કીઓ દબાવો, છોડવા માટે સ્પેસબાર દબાવો, રદ કરવા માટે એસ્કેપ દબાવો.",
- // "live-region.ordering.dropped": "{{ itemName }}, dropped at position {{ index }} of {{ length }}.",
"live-region.ordering.dropped": "{{ itemName }}, સ્થિતિમાં છોડ્યું {{ index }} માંથી {{ length }}.",
- // "dynamic-form-array.sortable-list.label": "Sortable list",
"dynamic-form-array.sortable-list.label": "સૉર્ટેબલ સૂચિ",
- // "external-login.component.or": "or",
"external-login.component.or": "અથવા",
- // "external-login.confirmation.header": "Information needed to complete the login process",
"external-login.confirmation.header": "લૉગિન પ્રક્રિયા પૂર્ણ કરવા માટે માહિતી જરૂરી છે",
- // "external-login.noEmail.informationText": "The information received from {{authMethod}} are not sufficient to complete the login process. Please provide the missing information below, or login via a different method to associate your {{authMethod}} to an existing account.",
"external-login.noEmail.informationText": "{{authMethod}} માંથી પ્રાપ્ત માહિતી લૉગિન પ્રક્રિયા પૂર્ણ કરવા માટે પૂરતી નથી. કૃપા કરીને નીચેની ગુમ થયેલી માહિતી આપો, અથવા {{authMethod}} ને મોજુદા ખાતા સાથે જોડવા માટે અલગ પદ્ધતિથી લૉગિન કરો.",
- // "external-login.haveEmail.informationText": "It seems that you have not yet an account in this system. If this is the case, please confirm the data received from {{authMethod}} and a new account will be created for you. Otherwise, if you already have an account in the system, please update the email address to match the one already in use in the system or login via a different method to associate your {{authMethod}} to your existing account.",
"external-login.haveEmail.informationText": "તમારા પાસે હજી સુધી આ સિસ્ટમમાં એકાઉન્ટ નથી એવું લાગે છે. જો એવું હોય, તો કૃપા કરીને {{authMethod}} માંથી પ્રાપ્ત ડેટાની પુષ્ટિ કરો અને તમારા માટે નવું એકાઉન્ટ બનાવવામાં આવશે. અન્યથા, જો તમારી પાસે પહેલેથી જ સિસ્ટમમાં એકાઉન્ટ છે, તો કૃપા કરીને ઇમેઇલ સરનામું અપડેટ કરો જેથી તે સિસ્ટમમાં પહેલેથી જ ઉપયોગમાં લેવાતા સરનામા સાથે મેળ ખાતું હોય અથવા તમારા મોજુદા ખાતા સાથે {{authMethod}} ને જોડવા માટે અલગ પદ્ધતિથી લૉગિન કરો.",
- // "external-login.confirm-email.header": "Confirm or update email",
"external-login.confirm-email.header": "ઇમેઇલની પુષ્ટિ કરો અથવા અપડેટ કરો",
- // "external-login.confirmation.email-required": "Email is required.",
"external-login.confirmation.email-required": "ઇમેઇલ જરૂરી છે.",
- // "external-login.confirmation.email-label": "User Email",
"external-login.confirmation.email-label": "વપરાશકર્તા ઇમેઇલ",
- // "external-login.confirmation.email-invalid": "Invalid email format.",
"external-login.confirmation.email-invalid": "અમાન્ય ઇમેઇલ ફોર્મેટ.",
- // "external-login.confirm.button.label": "Confirm this email",
"external-login.confirm.button.label": "આ ઇમેઇલની પુષ્ટિ કરો",
- // "external-login.confirm-email-sent.header": "Confirmation email sent",
"external-login.confirm-email-sent.header": "પુષ્ટિ ઇમેઇલ મોકલવામાં આવ્યું",
- // "external-login.confirm-email-sent.info": " We have sent an email to the provided address to validate your input.
Please follow the instructions in the email to complete the login process.",
"external-login.confirm-email-sent.info": "અમે આપેલા સરનામે ઇમેઇલ મોકલ્યો છે.
લૉગિન પ્રક્રિયા પૂર્ણ કરવા માટે ઇમેઇલમાં આપેલા સૂચનોનું અનુસરણ કરો.",
- // "external-login.provide-email.header": "Provide email",
"external-login.provide-email.header": "ઇમેઇલ આપો",
- // "external-login.provide-email.button.label": "Send Verification link",
"external-login.provide-email.button.label": "પુષ્ટિ લિંક મોકલો",
- // "external-login-validation.review-account-info.header": "Review your account information",
"external-login-validation.review-account-info.header": "તમારી ખાતાની માહિતી સમીક્ષા કરો",
- // "external-login-validation.review-account-info.info": "The information received from ORCID differs from the one recorded in your profile.
Please review them and decide if you want to update any of them.After saving you will be redirected to your profile page.",
"external-login-validation.review-account-info.info": "ORCID માંથી પ્રાપ્ત માહિતી તમારી પ્રોફાઇલમાં નોંધાયેલ માહિતીથી અલગ છે.
કૃપા કરીને તેમને સમીક્ષા કરો અને નક્કી કરો કે તમે તેમાંના કોઈને અપડેટ કરવા માંગો છો કે નહીં. સાચવ્યા પછી તમને તમારી પ્રોફાઇલ પેજ પર રીડાયરેક્ટ કરવામાં આવશે.",
- // "external-login-validation.review-account-info.table.header.information": "Information",
"external-login-validation.review-account-info.table.header.information": "માહિતી",
- // "external-login-validation.review-account-info.table.header.received-value": "Received value",
"external-login-validation.review-account-info.table.header.received-value": "પ્રાપ્ત મૂલ્ય",
- // "external-login-validation.review-account-info.table.header.current-value": "Current value",
"external-login-validation.review-account-info.table.header.current-value": "વર્તમાન મૂલ્ય",
- // "external-login-validation.review-account-info.table.header.action": "Override",
"external-login-validation.review-account-info.table.header.action": "ઓવરરાઇડ",
- // "external-login-validation.review-account-info.table.row.not-applicable": "N/A",
"external-login-validation.review-account-info.table.row.not-applicable": "લાગુ નથી",
- // "on-label": "ON",
"on-label": "ચાલુ",
- // "off-label": "OFF",
"off-label": "બંધ",
- // "review-account-info.merge-data.notification.success": "Your account information has been updated successfully",
"review-account-info.merge-data.notification.success": "તમારી ખાતાની માહિતી સફળતાપૂર્વક અપડેટ કરવામાં આવી છે",
- // "review-account-info.merge-data.notification.error": "Something went wrong while updating your account information",
"review-account-info.merge-data.notification.error": "તમારી ખાતાની માહિતી અપડેટ કરતી વખતે કંઈક ખોટું થયું",
- // "review-account-info.alert.error.content": "Something went wrong. Please try again later.",
"review-account-info.alert.error.content": "કંઈક ખોટું થયું. કૃપા કરીને પછીથી ફરી પ્રયાસ કરો.",
- // "external-login-page.provide-email.notifications.error": "Something went wrong.Email address was omitted or the operation is not valid.",
"external-login-page.provide-email.notifications.error": "કંઈક ખોટું થયું. ઇમેઇલ સરનામું છોડી દેવામાં આવ્યું છે અથવા ઓપરેશન માન્ય નથી.",
- // "external-login.error.notification": "There was an error while processing your request. Please try again later.",
"external-login.error.notification": "તમારી વિનંતી પ્રક્રિયા કરતી વખતે ભૂલ આવી. કૃપા કરીને પછીથી ફરી પ્રયાસ કરો.",
- // "external-login.connect-to-existing-account.label": "Connect to an existing user",
"external-login.connect-to-existing-account.label": "મોજુદા વપરાશકર્તા સાથે જોડો",
- // "external-login.modal.label.close": "Close",
"external-login.modal.label.close": "બંધ કરો",
- // "external-login-page.provide-email.create-account.notifications.error.header": "Something went wrong",
"external-login-page.provide-email.create-account.notifications.error.header": "કંઈક ખોટું થયું",
- // "external-login-page.provide-email.create-account.notifications.error.content": "Please check again your email address and try again.",
"external-login-page.provide-email.create-account.notifications.error.content": "કૃપા કરીને તમારું ઇમેઇલ સરનામું ફરીથી તપાસો અને ફરી પ્રયાસ કરો.",
- // "external-login-page.confirm-email.create-account.notifications.error.no-netId": "Something went wrong with this email account. Try again or use a different method to login.",
"external-login-page.confirm-email.create-account.notifications.error.no-netId": "આ ઇમેઇલ ખાતા સાથે કંઈક ખોટું થયું. ફરી પ્રયાસ કરો અથવા લૉગિન માટે અલગ પદ્ધતિનો ઉપયોગ કરો.",
- // "external-login-page.orcid-confirmation.firstname": "First name",
"external-login-page.orcid-confirmation.firstname": "પ્રથમ નામ",
- // "external-login-page.orcid-confirmation.firstname.label": "First name",
"external-login-page.orcid-confirmation.firstname.label": "પ્રથમ નામ",
- // "external-login-page.orcid-confirmation.lastname": "Last name",
"external-login-page.orcid-confirmation.lastname": "છેલ્લું નામ",
- // "external-login-page.orcid-confirmation.lastname.label": "Last name",
"external-login-page.orcid-confirmation.lastname.label": "છેલ્લું નામ",
- // "external-login-page.orcid-confirmation.netid": "Account Identifier",
"external-login-page.orcid-confirmation.netid": "ખાતા ઓળખકર્તા",
- // "external-login-page.orcid-confirmation.netid.placeholder": "xxxx-xxxx-xxxx-xxxx",
"external-login-page.orcid-confirmation.netid.placeholder": "xxxx-xxxx-xxxx-xxxx",
- // "external-login-page.orcid-confirmation.email": "Email",
"external-login-page.orcid-confirmation.email": "ઇમેઇલ",
- // "external-login-page.orcid-confirmation.email.label": "Email",
"external-login-page.orcid-confirmation.email.label": "ઇમેઇલ",
- // "search.filters.access_status.open.access": "Open access",
"search.filters.access_status.open.access": "ઓપન ઍક્સેસ",
- // "search.filters.access_status.restricted": "Restricted access",
"search.filters.access_status.restricted": "પ્રતિબંધિત ઍક્સેસ",
- // "search.filters.access_status.embargo": "Embargoed access",
"search.filters.access_status.embargo": "એમ્બાર્ગો ઍક્સેસ",
- // "search.filters.access_status.metadata.only": "Metadata only",
"search.filters.access_status.metadata.only": "મેટાડેટા માત્ર",
- // "search.filters.access_status.unknown": "Unknown",
"search.filters.access_status.unknown": "અજ્ઞાત",
- // "metadata-export-filtered-items.tooltip": "Export report output as CSV",
"metadata-export-filtered-items.tooltip": "CSV તરીકે રિપોર્ટ આઉટપુટ નિકાસ કરો",
- // "metadata-export-filtered-items.submit.success": "CSV export succeeded.",
"metadata-export-filtered-items.submit.success": "CSV નિકાસ સફળ.",
- // "metadata-export-filtered-items.submit.error": "CSV export failed.",
"metadata-export-filtered-items.submit.error": "CSV નિકાસ નિષ્ફળ.",
- // "metadata-export-filtered-items.columns.warning": "CSV export automatically includes all relevant fields, so selections in this list are not taken into account.",
"metadata-export-filtered-items.columns.warning": "CSV નિકાસ આપમેળે બધી સંબંધિત ફીલ્ડ્સ શામેલ કરે છે, તેથી આ સૂચિમાં પસંદગીઓ ધ્યાનમાં લેવામાં આવતી નથી.",
- // "embargo.listelement.badge": "Embargo until {{ date }}",
"embargo.listelement.badge": "એમ્બાર્ગો સુધી {{ date }}",
- // "metadata-export-search.submit.error.limit-exceeded": "Only the first {{limit}} items will be exported",
"metadata-export-search.submit.error.limit-exceeded": "માત્ર પ્રથમ {{limit}} આઇટમ્સ નિકાસ કરવામાં આવશે",
-
- // "file-download-link.request-copy": "Request a copy of ",
- // TODO New key - Add a translation
- "file-download-link.request-copy": "Request a copy of ",
-
- // "file-download-button.request-copy": "Request a copy",
- // TODO New key - Add a translation
- "file-download-button.request-copy": "Request a copy",
-
- // "item.preview.organization.url": "URL",
- // TODO New key - Add a translation
- "item.preview.organization.url": "URL",
-
- // "item.preview.organization.address.addressLocality": "City",
- // TODO New key - Add a translation
- "item.preview.organization.address.addressLocality": "City",
-
- // "item.preview.organization.alternateName": "Alternative name",
- // TODO New key - Add a translation
- "item.preview.organization.alternateName": "Alternative name",
-
- // "metadata-link-view.orcid.logo": "ORCID logo",
- // TODO New key - Add a translation
- "metadata-link-view.orcid.logo": "ORCID logo",
-
- // "metadata-link-view.source.logo": "Source logo",
- // TODO New key - Add a translation
- "metadata-link-view.source.logo": "Source logo",
-
- // "metadata-link-view.popover.label.Person.dc.title": "Fullname",
- // TODO New key - Add a translation
- "metadata-link-view.popover.label.Person.dc.title": "Fullname",
-
- // "metadata-link-view.popover.label.Person.person.affiliation.name": "Main affiliation",
- // TODO New key - Add a translation
- "metadata-link-view.popover.label.Person.person.affiliation.name": "Main affiliation",
-
- // "metadata-link-view.popover.label.Person.person.email": "Email",
- // TODO New key - Add a translation
- "metadata-link-view.popover.label.Person.person.email": "Email",
-
- // "metadata-link-view.popover.label.Person.person.identifier.orcid": "ORCID",
- // TODO New key - Add a translation
- "metadata-link-view.popover.label.Person.person.identifier.orcid": "ORCID",
-
- // "metadata-link-view.popover.label.Person.dc.description.abstract": "Abstract",
- // TODO New key - Add a translation
- "metadata-link-view.popover.label.Person.dc.description.abstract": "Abstract",
-
- // "metadata-link-view.popover.label.Person.person.jobTitle": "Job title",
- // TODO New key - Add a translation
- "metadata-link-view.popover.label.Person.person.jobTitle": "Job title",
-
- // "metadata-link-view.popover.label.other.dc.title": "Title",
- // TODO New key - Add a translation
- "metadata-link-view.popover.label.other.dc.title": "Title",
-
- // "metadata-link-view.popover.label.other.dc.description.abstract": "Description",
- // TODO New key - Add a translation
- "metadata-link-view.popover.label.other.dc.description.abstract": "Description",
-
- // "metadata-link-view.popover.label.more-info": "More info",
- // TODO New key - Add a translation
- "metadata-link-view.popover.label.more-info": "More info",
-
- // "item.page.extended-file-section": "Bitstreams",
- // TODO New key - Add a translation
- "item.page.extended-file-section": "Bitstreams",
-
- // "file.section.name": "Document",
- // TODO New key - Add a translation
- "file.section.name": "Document",
-
- // "file.section.type": "Type",
- // TODO New key - Add a translation
- "file.section.type": "Type",
-
- // "file.section.size": "Size",
- // TODO New key - Add a translation
- "file.section.size": "Size",
-
- // "dataset.page.titleprefix": "Dataset",
- // TODO New key - Add a translation
- "dataset.page.titleprefix": "Dataset",
-
- // "dataset.listelement.badge": "Dataset",
- // TODO New key - Add a translation
- "dataset.listelement.badge": "Dataset",
-
- // "dataset.page.options": "Options",
- // TODO New key - Add a translation
- "dataset.page.options": "Options",
-
- // "dataset.page.edit": "Edit this Dataset",
- // TODO New key - Add a translation
- "dataset.page.edit": "Edit this Dataset",
-
- // "relationships.Dataset.isAuthorOfDataset.Person": "Authors (Persons)",
- // TODO New key - Add a translation
- "relationships.Dataset.isAuthorOfDataset.Person": "Authors (Persons)",
-
- // "relationships.Dataset.isProjectOfDataset.Project": "Research Projects",
- // TODO New key - Add a translation
- "relationships.Dataset.isProjectOfDataset.Project": "Research Projects",
-
- // "relationships.Dataset.isAuthorOfDataset.OrgUnit": "Organizational Units",
- // TODO New key - Add a translation
- "relationships.Dataset.isAuthorOfDataset.OrgUnit": "Organizational Units",
-
- // "relationships.Dataset.isOrgUnitOfDataset.OrgUnit": "Authors (Organizational Units)",
- // TODO New key - Add a translation
- "relationships.Dataset.isOrgUnitOfDataset.OrgUnit": "Authors (Organizational Units)",
-
- // "relationships.Dataset.isPublicationOfDataset.Publication": "Publications",
- // TODO New key - Add a translation
- "relationships.Dataset.isPublicationOfDataset.Publication": "Publications",
-
- // "relationships.Publication.isDatasetOfPublication.Dataset": "Datasets",
- // TODO New key - Add a translation
- "relationships.Publication.isDatasetOfPublication.Dataset": "Datasets",
-
- // "relationships.Person.isDatasetOfAuthor.Dataset": "Datasets",
- // TODO New key - Add a translation
- "relationships.Person.isDatasetOfAuthor.Dataset": "Datasets",
-
- // "relationships.Project.isDatasetOfProject.Dataset": "Datasets",
- // TODO New key - Add a translation
- "relationships.Project.isDatasetOfProject.Dataset": "Datasets",
-
- // "relationships.OrgUnit.isDatasetOfAuthor.Dataset": "Authored Datasets",
- // TODO New key - Add a translation
- "relationships.OrgUnit.isDatasetOfAuthor.Dataset": "Authored Datasets",
-
- // "relationships.OrgUnit.isDatasetOfOrgUnit.Dataset": "Organisation Datasets",
- // TODO New key - Add a translation
- "relationships.OrgUnit.isDatasetOfOrgUnit.Dataset": "Organisation Datasets",
-
- // "submission.sections.describe.relationship-lookup.title.Dataset": "Datasets",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.title.Dataset": "Datasets",
-
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.Dataset": "Local Datasets",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.search-tab.tab-title.Dataset": "Local Datasets",
-
- // "dataset.search.results.head": "Dataset Search Results",
- // TODO New key - Add a translation
- "dataset.search.results.head": "Dataset Search Results",
-
- // "submission.sections.describe.relationship-lookup.title.isAuthorOfDataset": "Authors",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.title.isAuthorOfDataset": "Authors",
-
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isAuthorOfDataset": "Local Authors ({{ count }})",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.search-tab.tab-title.isAuthorOfDataset": "Local Authors ({{ count }})",
-
- // "submission.sections.describe.relationship-lookup.title.isPublicationOfDataset": "Publications",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.title.isPublicationOfDataset": "Publications",
-
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isPublicationOfDataset": "Local Publications ({{ count }})",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.search-tab.tab-title.isPublicationOfDataset": "Local Publications ({{ count }})",
-
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.cinii": "CiNii ({{ count }})",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.search-tab.tab-title.cinii": "CiNii ({{ count }})",
-
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.cinii": "Importing from CiNii",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.external-source.import-modal.head.cinii": "Importing from CiNii",
-
- // "submission.sections.describe.relationship-lookup.selection-tab.title.cinii": "Search Results",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.selection-tab.title.cinii": "Search Results",
-
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.datacite": "DataCite ({{ count }})",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.search-tab.tab-title.datacite": "DataCite ({{ count }})",
-
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.datacite": "Importing from DataCite",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.external-source.import-modal.head.datacite": "Importing from DataCite",
-
- // "submission.sections.describe.relationship-lookup.selection-tab.title.datacite": "Search Results",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.selection-tab.title.datacite": "Search Results",
-
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.doi": "DOI ({{ count }})",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.search-tab.tab-title.doi": "DOI ({{ count }})",
-
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.doi": "Importing from DOI",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.external-source.import-modal.head.doi": "Importing from DOI",
-
- // "submission.sections.describe.relationship-lookup.selection-tab.title.doi": "Search Results",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.selection-tab.title.doi": "Search Results",
-
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.isPublicationOfDataset.title": "Import Remote Publication",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.external-source.import-modal.isPublicationOfDataset.title": "Import Remote Publication",
-
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.isPublicationOfDataset.added.local-entity": "Successfully added local publication to the selection",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.external-source.import-modal.isPublicationOfDataset.added.local-entity": "Successfully added local publication to the selection",
-
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.isPublicationOfDataset.added.new-entity": "Successfully imported and added external publication to the selection",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.external-source.import-modal.isPublicationOfDataset.added.new-entity": "Successfully imported and added external publication to the selection",
-
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfDataset.title": "Import Remote Author",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfDataset.title": "Import Remote Author",
-
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfDataset.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.isAuthorOfDataset.added.local-entity": "Successfully added local author to the selection",
-
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfDataset.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.isAuthorOfDataset.added.new-entity": "Successfully imported and added external author to the selection",
-
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfDataset.title": "Import Remote Project",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfDataset.title": "Import Remote Project",
-
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfDataset.added.local-entity": "Successfully added local project to the selection",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfDataset.added.local-entity": "Successfully added local project to the selection",
-
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfDataset.added.new-entity": "Successfully imported and added external project to the selection",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfDataset.added.new-entity": "Successfully imported and added external project to the selection",
-
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfDataset.title": "Import Remote Organization",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfDataset.title": "Import Remote Organization",
-
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfDataset.added.local-entity": "Successfully added local organization to the selection",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfDataset.added.local-entity": "Successfully added local organization to the selection",
-
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfDataset.added.new-entity": "Successfully imported and added external organization to the selection",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfDataset.added.new-entity": "Successfully imported and added external organization to the selection",
-
- // "admin.edit-cms-metadata.success": "Metadata successfully updated",
- // TODO New key - Add a translation
- "admin.edit-cms-metadata.success": "Metadata successfully updated",
-
- // "admin.edit-cms-metadata.back-button": "Back",
- // TODO New key - Add a translation
- "admin.edit-cms-metadata.back-button": "Back",
-
- // "admin.edit-cms-metadata.save-button": "Save",
- // TODO New key - Add a translation
- "admin.edit-cms-metadata.save-button": "Save",
-
- // "admin.edit-cms-metadata.select-metadata": "Select metadata to edit",
- // TODO New key - Add a translation
- "admin.edit-cms-metadata.select-metadata": "Select metadata to edit",
-
- // "admin.edit-cms-metadata.edit-button": "Edit",
- // TODO New key - Add a translation
- "admin.edit-cms-metadata.edit-button": "Edit",
-
- // "admin.edit-cms-metadata.breadcrumbs": "Edit CMS Metadata",
- // TODO New key - Add a translation
- "admin.edit-cms-metadata.breadcrumbs": "Edit CMS Metadata",
-
- // "admin.edit-cms-metadata.title": "Edit CMS Metadata",
- // TODO New key - Add a translation
- "admin.edit-cms-metadata.title": "Edit CMS Metadata",
-
- // "admin.edit-cms-metadata.error": "An error occurred while updating the metadata",
- // TODO New key - Add a translation
- "admin.edit-cms-metadata.error": "An error occurred while updating the metadata",
-
- // "menu.section.edit-cms-metadata": "Edit CMS Metadata",
- // TODO New key - Add a translation
- "menu.section.edit-cms-metadata": "Edit CMS Metadata",
-
- // "menu.section.cms.edit.metadata.head": "Edit Metadata",
- // TODO New key - Add a translation
- "menu.section.cms.edit.metadata.head": "Edit Metadata",
-
- // "admin.edit-user-agreement.breadcrumbs": "Edit User Agreement",
- // TODO New key - Add a translation
- "admin.edit-user-agreement.breadcrumbs": "Edit User Agreement",
-
- // "admin.edit-user-agreement.confirm.title": "Force acceptance",
- // TODO New key - Add a translation
- "admin.edit-user-agreement.confirm.title": "Force acceptance",
-
- // "admin.edit-user-agreement.confirm.info": "Do you want to force all users to accept the new user agreement?",
- // TODO New key - Add a translation
- "admin.edit-user-agreement.confirm.info": "Do you want to force all users to accept the new user agreement?",
-
- // "admin.edit-user-agreement.confirm.cancel": "Cancel",
- // TODO New key - Add a translation
- "admin.edit-user-agreement.confirm.cancel": "Cancel",
-
- // "admin.edit-user-agreement.confirm.no": "No, update only",
- // TODO New key - Add a translation
- "admin.edit-user-agreement.confirm.no": "No, update only",
-
- // "admin.edit-user-agreement.confirm.yes": "Yes, update and force",
- // TODO New key - Add a translation
- "admin.edit-user-agreement.confirm.yes": "Yes, update and force",
-
- // "menu.section.edit-user-agreement": "Edit User Agreement",
- // TODO New key - Add a translation
- "menu.section.edit-user-agreement": "Edit User Agreement",
-
- // "admin.edit-user-agreement.save-button": "Save",
- // TODO New key - Add a translation
- "admin.edit-user-agreement.save-button": "Save",
-
- // "admin.edit-user-agreement.markdown": "End User Agreement text supports Markdown language.",
- // TODO New key - Add a translation
- "admin.edit-user-agreement.markdown": "End User Agreement text supports Markdown language.",
-
- // "admin.edit-cms-metadata.markdown": "CMS Metadata text supports Markdown language.",
- // TODO New key - Add a translation
- "admin.edit-cms-metadata.markdown": "CMS Metadata text supports Markdown language.",
-
- // "admin.edit-user-agreement.header": "Edit User Agreement",
- // TODO New key - Add a translation
- "admin.edit-user-agreement.header": "Edit User Agreement",
-
- // "admin.edit-user-agreement.success": "User agreement successfully updated",
- // TODO New key - Add a translation
- "admin.edit-user-agreement.success": "User agreement successfully updated",
-
- // "admin.edit-user-agreement.error": "An error occurred while updating the user agreement",
- // TODO New key - Add a translation
- "admin.edit-user-agreement.error": "An error occurred while updating the user agreement",
-
- // "admin.edit-user-agreement.title": "Edit User Agreement",
- // TODO New key - Add a translation
- "admin.edit-user-agreement.title": "Edit User Agreement",
-
-
-}
\ No newline at end of file
+}
diff --git a/src/assets/i18n/hi.json5 b/src/assets/i18n/hi.json5
index a1700f8bcc0..8d50087271b 100644
--- a/src/assets/i18n/hi.json5
+++ b/src/assets/i18n/hi.json5
@@ -10699,8 +10699,8 @@
// "ldn-new-service.form.label.inboundPattern": "Supported Pattern",
"ldn-new-service.form.label.inboundPattern": "समर्थित पैटर्न",
- // "ldn-new-service.form.label.addPattern": "+ Add more",
- "ldn-new-service.form.label.addPattern": "+ और जोड़ें",
+ // "ldn-new-service.form.label.addPattern": "Add more",
+ "ldn-new-service.form.label.addPattern": "और जोड़ें",
// "ldn-new-service.form.label.removeItemFilter": "Remove",
"ldn-new-service.form.label.removeItemFilter": "हटाएं",
// "ldn-register-new-service.breadcrumbs": "New Service",
diff --git a/src/assets/i18n/hu.json5 b/src/assets/i18n/hu.json5
index b3a3b583294..2a3c4f6f3ed 100644
--- a/src/assets/i18n/hu.json5
+++ b/src/assets/i18n/hu.json5
@@ -10469,8 +10469,8 @@
// "ldn-new-service.form.label.inboundPattern": "Supported Pattern",
"ldn-new-service.form.label.inboundPattern": "Támogatott minta (bejövő)", // Eredeti: "Inbound Pattern" -> Javítva,
- // "ldn-new-service.form.label.addPattern": "+ Add more",
- "ldn-new-service.form.label.addPattern": "+ Továbbiak hozzáadása",
+ // "ldn-new-service.form.label.addPattern": "Add more",
+ "ldn-new-service.form.label.addPattern": "Továbbiak hozzáadása",
// "ldn-new-service.form.label.removeItemFilter": "Remove",
"ldn-new-service.form.label.removeItemFilter": "Eltávolítás",
// "ldn-register-new-service.breadcrumbs": "New Service",
@@ -11829,4 +11829,4 @@
"admin.edit-user-agreement.title": "Edit User Agreement",
-}
\ No newline at end of file
+}
diff --git a/src/assets/i18n/it.json5 b/src/assets/i18n/it.json5
index b704ce8ece1..527c7886a16 100644
--- a/src/assets/i18n/it.json5
+++ b/src/assets/i18n/it.json5
@@ -11312,9 +11312,9 @@
// "ldn-new-service.form.label.inboundPattern": "Supported Pattern",
// TODO New key - Add a translation
"ldn-new-service.form.label.inboundPattern": "Supported Pattern",
- // "ldn-new-service.form.label.addPattern": "+ Add more",
+ // "ldn-new-service.form.label.addPattern": "Add more",
// TODO New key - Add a translation
- "ldn-new-service.form.label.addPattern": "+ Add more",
+ "ldn-new-service.form.label.addPattern": "Add more",
// "ldn-new-service.form.label.removeItemFilter": "Remove",
// TODO New key - Add a translation
"ldn-new-service.form.label.removeItemFilter": "Remove",
diff --git a/src/assets/i18n/ja.json5 b/src/assets/i18n/ja.json5
index 2e7afb8a6d7..d3b4d7a4887 100644
--- a/src/assets/i18n/ja.json5
+++ b/src/assets/i18n/ja.json5
@@ -13750,9 +13750,9 @@
// "ldn-new-service.form.label.inboundPattern": "Supported Pattern",
// TODO New key - Add a translation
"ldn-new-service.form.label.inboundPattern": "Supported Pattern",
- // "ldn-new-service.form.label.addPattern": "+ Add more",
+ // "ldn-new-service.form.label.addPattern": "Add more",
// TODO New key - Add a translation
- "ldn-new-service.form.label.addPattern": "+ Add more",
+ "ldn-new-service.form.label.addPattern": "Add more",
// "ldn-new-service.form.label.removeItemFilter": "Remove",
// TODO New key - Add a translation
"ldn-new-service.form.label.removeItemFilter": "Remove",
diff --git a/src/assets/i18n/kk.json5 b/src/assets/i18n/kk.json5
index 7d3ae32c536..134ff4778dc 100644
--- a/src/assets/i18n/kk.json5
+++ b/src/assets/i18n/kk.json5
@@ -11665,9 +11665,9 @@
// "ldn-new-service.form.label.inboundPattern": "Supported Pattern",
// TODO New key - Add a translation
"ldn-new-service.form.label.inboundPattern": "Supported Pattern",
- // "ldn-new-service.form.label.addPattern": "+ Add more",
+ // "ldn-new-service.form.label.addPattern": "Add more",
// TODO New key - Add a translation
- "ldn-new-service.form.label.addPattern": "+ Add more",
+ "ldn-new-service.form.label.addPattern": "Add more",
// "ldn-new-service.form.label.removeItemFilter": "Remove",
// TODO New key - Add a translation
"ldn-new-service.form.label.removeItemFilter": "Remove",
diff --git a/src/assets/i18n/lv.json5 b/src/assets/i18n/lv.json5
index e7fd284b7fb..343e29b8002 100644
--- a/src/assets/i18n/lv.json5
+++ b/src/assets/i18n/lv.json5
@@ -12715,9 +12715,9 @@
// "ldn-new-service.form.label.inboundPattern": "Supported Pattern",
// TODO New key - Add a translation
"ldn-new-service.form.label.inboundPattern": "Supported Pattern",
- // "ldn-new-service.form.label.addPattern": "+ Add more",
+ // "ldn-new-service.form.label.addPattern": "Add more",
// TODO New key - Add a translation
- "ldn-new-service.form.label.addPattern": "+ Add more",
+ "ldn-new-service.form.label.addPattern": "Add more",
// "ldn-new-service.form.label.removeItemFilter": "Remove",
// TODO New key - Add a translation
"ldn-new-service.form.label.removeItemFilter": "Remove",
diff --git a/src/assets/i18n/ml.json5 b/src/assets/i18n/ml.json5
index 8a05523c4ac..8d643c610c7 100644
--- a/src/assets/i18n/ml.json5
+++ b/src/assets/i18n/ml.json5
@@ -10591,8 +10591,8 @@
// "ldn-new-service.form.label.inboundPattern": "Supported Pattern",
"ldn-new-service.form.label.inboundPattern": "പിന്തുണയ്ക്കുന്ന പാറ്റേൺ",
- // "ldn-new-service.form.label.addPattern": "+ Add more",
- "ldn-new-service.form.label.addPattern": "+ കൂടുതൽ ചേർക്കുക",
+ // "ldn-new-service.form.label.addPattern": "Add more",
+ "ldn-new-service.form.label.addPattern": "കൂടുതൽ ചേർക്കുക",
// "ldn-new-service.form.label.removeItemFilter": "Remove",
"ldn-new-service.form.label.removeItemFilter": "നീക്കം ചെയ്യുക",
// "ldn-register-new-service.breadcrumbs": "New Service",
@@ -11963,4 +11963,4 @@
"admin.edit-user-agreement.title": "Edit User Agreement",
-}
\ No newline at end of file
+}
diff --git a/src/assets/i18n/mr.json5 b/src/assets/i18n/mr.json5
index b37151a4757..e666cc556d7 100644
--- a/src/assets/i18n/mr.json5
+++ b/src/assets/i18n/mr.json5
@@ -10675,8 +10675,8 @@
// "ldn-new-service.form.label.inboundPattern": "Supported Pattern",
"ldn-new-service.form.label.inboundPattern": "समर्थित नमुना",
- // "ldn-new-service.form.label.addPattern": "+ Add more",
- "ldn-new-service.form.label.addPattern": "+ अधिक जोडा",
+ // "ldn-new-service.form.label.addPattern": "Add more",
+ "ldn-new-service.form.label.addPattern": "अधिक जोडा",
// "ldn-new-service.form.label.removeItemFilter": "Remove",
"ldn-new-service.form.label.removeItemFilter": "काढा",
// "ldn-register-new-service.breadcrumbs": "New Service",
@@ -12048,4 +12048,4 @@
"admin.edit-user-agreement.title": "Edit User Agreement",
-}
\ No newline at end of file
+}
diff --git a/src/assets/i18n/nl.json5 b/src/assets/i18n/nl.json5
index bb290598c8a..145de6edb53 100644
--- a/src/assets/i18n/nl.json5
+++ b/src/assets/i18n/nl.json5
@@ -13049,9 +13049,9 @@
// "ldn-new-service.form.label.inboundPattern": "Supported Pattern",
// TODO New key - Add a translation
"ldn-new-service.form.label.inboundPattern": "Supported Pattern",
- // "ldn-new-service.form.label.addPattern": "+ Add more",
+ // "ldn-new-service.form.label.addPattern": "Add more",
// TODO New key - Add a translation
- "ldn-new-service.form.label.addPattern": "+ Add more",
+ "ldn-new-service.form.label.addPattern": "Add more",
// "ldn-new-service.form.label.removeItemFilter": "Remove",
// TODO New key - Add a translation
"ldn-new-service.form.label.removeItemFilter": "Remove",
diff --git a/src/assets/i18n/od.json5 b/src/assets/i18n/od.json5
index ad604372246..f57e01b057a 100644
--- a/src/assets/i18n/od.json5
+++ b/src/assets/i18n/od.json5
@@ -10596,8 +10596,8 @@
// "ldn-new-service.form.label.inboundPattern": "Supported Pattern",
"ldn-new-service.form.label.inboundPattern": "ସମର୍ଥିତ ପ୍ୟାଟର୍ନ୍",
- // "ldn-new-service.form.label.addPattern": "+ Add more",
- "ldn-new-service.form.label.addPattern": "+ ଅଧିକ ଯୋଡନ୍ତୁ",
+ // "ldn-new-service.form.label.addPattern": "Add more",
+ "ldn-new-service.form.label.addPattern": "ଅଧିକ ଯୋଡନ୍ତୁ",
// "ldn-new-service.form.label.removeItemFilter": "Remove",
"ldn-new-service.form.label.removeItemFilter": "ଅପସାରଣ କରନ୍ତୁ",
// "ldn-register-new-service.breadcrumbs": "New Service",
@@ -11968,4 +11968,4 @@
"admin.edit-user-agreement.title": "Edit User Agreement",
-}
\ No newline at end of file
+}
diff --git a/src/assets/i18n/pl.json5 b/src/assets/i18n/pl.json5
index 63081151999..f18a98f0dd9 100644
--- a/src/assets/i18n/pl.json5
+++ b/src/assets/i18n/pl.json5
@@ -10545,8 +10545,8 @@
// "ldn-new-service.form.label.inboundPattern": "Supported Pattern",
"ldn-new-service.form.label.inboundPattern": "Obsługiwany wzorzec",
- // "ldn-new-service.form.label.addPattern": "+ Add more",
- "ldn-new-service.form.label.addPattern": "+ Dodaj więcej",
+ // "ldn-new-service.form.label.addPattern": "Add more",
+ "ldn-new-service.form.label.addPattern": "Dodaj więcej",
// "ldn-new-service.form.label.removeItemFilter": "Remove",
"ldn-new-service.form.label.removeItemFilter": "Usuń",
// "ldn-register-new-service.breadcrumbs": "New Service",
diff --git a/src/assets/i18n/pt-BR.json5 b/src/assets/i18n/pt-BR.json5
index 481371c44d8..7e7e6d3d6d8 100644
--- a/src/assets/i18n/pt-BR.json5
+++ b/src/assets/i18n/pt-BR.json5
@@ -10469,8 +10469,8 @@
// "ldn-new-service.form.label.inboundPattern": "Supported Pattern",
"ldn-new-service.form.label.inboundPattern": "Padrão Suportado",
- // "ldn-new-service.form.label.addPattern": "+ Add more",
- "ldn-new-service.form.label.addPattern": "+ Adicionar mais",
+ // "ldn-new-service.form.label.addPattern": "Add more",
+ "ldn-new-service.form.label.addPattern": "Adicionar mais",
// "ldn-new-service.form.label.removeItemFilter": "Remove",
"ldn-new-service.form.label.removeItemFilter": "Remover",
// "ldn-register-new-service.breadcrumbs": "New Service",
diff --git a/src/assets/i18n/pt-PT.json5 b/src/assets/i18n/pt-PT.json5
index 7fe3f640509..80c0ec6206c 100644
--- a/src/assets/i18n/pt-PT.json5
+++ b/src/assets/i18n/pt-PT.json5
@@ -10638,8 +10638,8 @@
// "ldn-new-service.form.label.inboundPattern": "Supported Pattern",
"ldn-new-service.form.label.inboundPattern": "Padrão suportado",
- // "ldn-new-service.form.label.addPattern": "+ Add more",
- "ldn-new-service.form.label.addPattern": "+ Adicionar mais",
+ // "ldn-new-service.form.label.addPattern": "Add more",
+ "ldn-new-service.form.label.addPattern": "Adicionar mais",
// "ldn-new-service.form.label.removeItemFilter": "Remove",
"ldn-new-service.form.label.removeItemFilter": "Remover",
// "ldn-register-new-service.breadcrumbs": "New Service",
diff --git a/src/assets/i18n/ru.json5 b/src/assets/i18n/ru.json5
index b5dbed6fd45..8266ca73fbf 100644
--- a/src/assets/i18n/ru.json5
+++ b/src/assets/i18n/ru.json5
@@ -1,4 +1,5 @@
{
+
// "401.help": "You're not authorized to access this page. You can use the button below to get back to the home page.",
"401.help": "У вас нет прав доступа к этой странице. Вы можете использовать кнопку ниже, чтобы вернуться на домашнюю страницу.",
@@ -26,8 +27,7 @@
// "500.link.home-page": "Take me to the home page",
"500.link.home-page": "Перейти на домашнюю страницу",
- // "404.help": "We can't find the page you're looking for. The page may have been moved or deleted. You can use the button below to get back to the home page.",
- // TODO Source message changed - Revise the translation
+ // "404.help": "We can't find the page you're looking for. The page may have been moved or deleted. You can use the button below to get back to the home page. ",
"404.help": "Мы не можем найти страницу, которую вы ищете. Возможно, страница была перемещена или удалена. Вы можете использовать кнопку ниже, чтобы вернуться на домашнюю страницу. ",
// "404.link.home-page": "Take me to the home page",
@@ -51,10 +51,6 @@
// "error-page.orcid.generic-error": "An error occurred during login via ORCID. Make sure you have shared your ORCID account email address with DSpace. If the error persists, contact the administrator",
"error-page.orcid.generic-error": "Произошла ошибка при входе через ORCID. Убедитесь, что вы поделились адресом электронной почты своей учетной записи ORCID с DSpace. Если ошибка повторяется, обратитесь к администратору.",
- // "listelement.badge.access-status": "Access status:",
- // TODO New key - Add a translation
- "listelement.badge.access-status": "Access status:",
-
// "access-status.embargo.listelement.badge": "Embargo",
"access-status.embargo.listelement.badge": "Эмбарго",
@@ -460,22 +456,6 @@
// "admin.access-control.epeople.table.edit.buttons.remove": "Delete \"{{name}}\"",
"admin.access-control.epeople.table.edit.buttons.remove": "Удалить \"{{ name }}\"",
- // "admin.access-control.epeople.table.edit.buttons.remove.modal.header": "Delete Group \"{{ dsoName }}\"",
- // TODO New key - Add a translation
- "admin.access-control.epeople.table.edit.buttons.remove.modal.header": "Delete Group \"{{ dsoName }}\"",
-
- // "admin.access-control.epeople.table.edit.buttons.remove.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?",
- // TODO New key - Add a translation
- "admin.access-control.epeople.table.edit.buttons.remove.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?",
-
- // "admin.access-control.epeople.table.edit.buttons.remove.modal.cancel": "Cancel",
- // TODO New key - Add a translation
- "admin.access-control.epeople.table.edit.buttons.remove.modal.cancel": "Cancel",
-
- // "admin.access-control.epeople.table.edit.buttons.remove.modal.confirm": "Delete",
- // TODO New key - Add a translation
- "admin.access-control.epeople.table.edit.buttons.remove.modal.confirm": "Delete",
-
// "admin.access-control.epeople.no-items": "No EPeople to show.",
"admin.access-control.epeople.no-items": "Нет пользователей для отображения.",
@@ -668,8 +648,7 @@
// "admin.access-control.groups.form.delete-group.modal.header": "Delete Group \"{{ dsoName }}\"",
"admin.access-control.groups.form.delete-group.modal.header": "Удалить группу \"{{ dsoName }}\"",
- // "admin.access-control.groups.form.delete-group.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?",
- // TODO Source message changed - Revise the translation
+ // "admin.access-control.groups.form.delete-group.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\"",
"admin.access-control.groups.form.delete-group.modal.info": "Вы уверены, что хотите удалить группу \"{{ dsoName }}\"?",
// "admin.access-control.groups.form.delete-group.modal.cancel": "Cancel",
@@ -1125,10 +1104,6 @@
// "admin.reports.commons.filters.permission.has_restricted_thumbnail.tooltip": "Item has at least one thumbnail that is not accessible to Anonymous user",
"admin.reports.commons.filters.permission.has_restricted_thumbnail.tooltip": "Элемент содержит по крайней мере одну миниатюру, недоступную анонимным пользователям",
- // "admin.reports.commons.filters.permission.has_restricted_metadata": "Item has Restricted Metadata",
- // TODO New key - Add a translation
- "admin.reports.commons.filters.permission.has_restricted_metadata": "Item has Restricted Metadata",
-
// "admin.reports.commons.filters.permission.has_restricted_metadata.tooltip": "Item has metadata that is not accessible to Anonymous user",
"admin.reports.commons.filters.permission.has_restricted_metadata.tooltip": "Элемент содержит метаданные, недоступные анонимным пользователям",
@@ -1213,8 +1188,7 @@
// "admin.metadata-import.page.help": "You can drop or browse CSV files that contain batch metadata operations on files here",
"admin.metadata-import.page.help": "Вы можете перетащить или выбрать CSV-файлы, содержащие пакетные операции с метаданными",
- // "admin.batch-import.page.help": "Select the collection to import into. Then, drop or browse to a Simple Archive Format (SAF) zip file that includes the items to import",
- // TODO Source message changed - Revise the translation
+ // "admin.batch-import.page.help": "Select the Collection to import into. Then, drop or browse to a Simple Archive Format (SAF) zip file that includes the Items to import",
"admin.batch-import.page.help": "Выберите коллекцию для импорта. Затем перетащите или выберите ZIP-файл в формате SAF, содержащий элементы для импорта",
// "admin.batch-import.page.toggle.help": "It is possible to perform import either with file upload or via URL, use above toggle to set the input source",
@@ -1358,106 +1332,6 @@
// "admin.batch-import.page.remove": "remove",
"admin.batch-import.page.remove": "удалить",
- // "audit.data.not-found": "No audits found.",
- // TODO New key - Add a translation
- "audit.data.not-found": "No audits found.",
-
- // "audit.data.self": "self",
- // TODO New key - Add a translation
- "audit.data.self": "self",
-
- // "audit.detail.metadata.field": "Metadata field:",
- // TODO New key - Add a translation
- "audit.detail.metadata.field": "Metadata field:",
-
- // "audit.detail.metadata.value": "Value:",
- // TODO New key - Add a translation
- "audit.detail.metadata.value": "Value:",
-
- // "audit.detail.metadata.authority": "Authority:",
- // TODO New key - Add a translation
- "audit.detail.metadata.authority": "Authority:",
-
- // "audit.detail.metadata.confidence": "Confidence:",
- // TODO New key - Add a translation
- "audit.detail.metadata.confidence": "Confidence:",
-
- // "audit.detail.metadata.place": "Place:",
- // TODO New key - Add a translation
- "audit.detail.metadata.place": "Place:",
-
- // "audit.detail.metadata.action": "Action:",
- // TODO New key - Add a translation
- "audit.detail.metadata.action": "Action:",
-
- // "audit.detail.metadata.checksum": "Checksum:",
- // TODO New key - Add a translation
- "audit.detail.metadata.checksum": "Checksum:",
-
- // "audit.overview.title": "All Audit Logs",
- // TODO New key - Add a translation
- "audit.overview.title": "All Audit Logs",
-
- // "audit.overview.table.id": "Audit ID",
- // TODO New key - Add a translation
- "audit.overview.table.id": "Audit ID",
-
- // "audit.overview.table.objectUUID": "Object ID",
- // TODO New key - Add a translation
- "audit.overview.table.objectUUID": "Object ID",
-
- // "audit.overview.table.objectType": "Object Type",
- // TODO New key - Add a translation
- "audit.overview.table.objectType": "Object Type",
-
- // "audit.overview.table.subjectUUID": "Subject ID",
- // TODO New key - Add a translation
- "audit.overview.table.subjectUUID": "Subject ID",
-
- // "audit.overview.table.subjectType": "Subject Type",
- // TODO New key - Add a translation
- "audit.overview.table.subjectType": "Subject Type",
-
- // "audit.overview.table.entityType": "Audit Type",
- // TODO New key - Add a translation
- "audit.overview.table.entityType": "Audit Type",
-
- // "audit.overview.table.eperson": "EPerson",
- // TODO New key - Add a translation
- "audit.overview.table.eperson": "EPerson",
-
- // "audit.overview.table.other": "Object",
- // TODO New key - Add a translation
- "audit.overview.table.other": "Object",
-
- // "audit.overview.table.timestamp": "Time (UTC)",
- // TODO New key - Add a translation
- "audit.overview.table.timestamp": "Time (UTC)",
-
- // "audit.overview.breadcrumbs": "Audit Logs",
- // TODO New key - Add a translation
- "audit.overview.breadcrumbs": "Audit Logs",
-
- // "audit.object.back": "Back",
- // TODO New key - Add a translation
- "audit.object.back": "Back",
-
- // "audit.object.breadcrumbs": "Object Audit Logs",
- // TODO New key - Add a translation
- "audit.object.breadcrumbs": "Object Audit Logs",
-
- // "audit.object.overview.title": "Object Audit Logs",
- // TODO New key - Add a translation
- "audit.object.overview.title": "Object Audit Logs",
-
- // "audit.object.logs.label": "Logs for object: ",
- // TODO New key - Add a translation
- "audit.object.logs.label": "Logs for object: ",
-
- // "audit.object.overview.disabled.message": "Audit feature is currently disabled",
- // TODO New key - Add a translation
- "audit.object.overview.disabled.message": "Audit feature is currently disabled",
-
// "auth.errors.invalid-user": "Invalid email address or password.",
"auth.errors.invalid-user": "Неверный адрес электронной почты или пароль.",
@@ -1617,30 +1491,6 @@
// "bitstream-request-a-copy.submit.error": "Something went wrong with submitting the item request.",
"bitstream-request-a-copy.submit.error": "Произошла ошибка при отправке запроса элемента.",
- // "bitstream-request-a-copy.access-by-token.warning": "You are viewing this item with the secure access link provided to you by the author or repository staff. It is important not to share this link to unauthorised users.",
- // TODO New key - Add a translation
- "bitstream-request-a-copy.access-by-token.warning": "You are viewing this item with the secure access link provided to you by the author or repository staff. It is important not to share this link to unauthorised users.",
-
- // "bitstream-request-a-copy.access-by-token.expiry-label": "Access provided by this link will expire on",
- // TODO New key - Add a translation
- "bitstream-request-a-copy.access-by-token.expiry-label": "Access provided by this link will expire on",
-
- // "bitstream-request-a-copy.access-by-token.expired": "Access provided by this link is no longer possible. Access expired on",
- // TODO New key - Add a translation
- "bitstream-request-a-copy.access-by-token.expired": "Access provided by this link is no longer possible. Access expired on",
-
- // "bitstream-request-a-copy.access-by-token.not-granted": "Access provided by this link is not possible. Access has either not been granted, or has been revoked.",
- // TODO New key - Add a translation
- "bitstream-request-a-copy.access-by-token.not-granted": "Access provided by this link is not possible. Access has either not been granted, or has been revoked.",
-
- // "bitstream-request-a-copy.access-by-token.re-request": "Follow restricted download links to submit a new request for access.",
- // TODO New key - Add a translation
- "bitstream-request-a-copy.access-by-token.re-request": "Follow restricted download links to submit a new request for access.",
-
- // "bitstream-request-a-copy.access-by-token.alt-text": "Access to this item is provided by a secure token",
- // TODO New key - Add a translation
- "bitstream-request-a-copy.access-by-token.alt-text": "Access to this item is provided by a secure token",
-
// "browse.back.all-results": "All browse results",
"browse.back.all-results": "Все результаты поиска",
@@ -1707,18 +1557,6 @@
// "browse.metadata.title.breadcrumbs": "Browse by Title",
"browse.metadata.title.breadcrumbs": "Просмотр по названию",
- // "browse.metadata.map": "Browse by Geolocation",
- // TODO New key - Add a translation
- "browse.metadata.map": "Browse by Geolocation",
-
- // "browse.metadata.map.breadcrumbs": "Browse by Geolocation",
- // TODO New key - Add a translation
- "browse.metadata.map.breadcrumbs": "Browse by Geolocation",
-
- // "browse.metadata.map.count.items": "items",
- // TODO New key - Add a translation
- "browse.metadata.map.count.items": "items",
-
// "pagination.next.button": "Next",
"pagination.next.button": "Следующая",
@@ -1809,14 +1647,6 @@
// "browse.title": "Browsing by {{ field }}{{ startsWith }} {{ value }}",
"browse.title": "Просмотр по {{ field }} {{ value }}",
- // "browse.taxonomy.show_next_results": "Show next results",
- // TODO New key - Add a translation
- "browse.taxonomy.show_next_results": "Show next results",
-
- // "browse.taxonomy.show_previous_results": "Show previous results",
- // TODO New key - Add a translation
- "browse.taxonomy.show_previous_results": "Show previous results",
-
// "browse.title.page": "Browsing by {{ field }} {{ value }}",
"browse.title.page": "Просмотр по {{ field }} {{ value }}",
@@ -1844,8 +1674,7 @@
// "collection.create.head": "Create a Collection",
"collection.create.head": "Создать коллекцию",
- // "collection.create.notifications.success": "Successfully created the collection",
- // TODO Source message changed - Revise the translation
+ // "collection.create.notifications.success": "Successfully created the Collection",
"collection.create.notifications.success": "Коллекция успешно создана",
// "collection.create.sub-head": "Create a Collection for Community {{ parent }}",
@@ -1869,8 +1698,7 @@
// "collection.delete.notification.fail": "Collection could not be deleted",
"collection.delete.notification.fail": "Не удалось удалить коллекцию",
- // "collection.delete.notification.success": "Successfully started a process to delete this collection",
- // TODO Source message changed - Revise the translation
+ // "collection.delete.notification.success": "Successfully deleted collection",
"collection.delete.notification.success": "Коллекция успешно удалена",
// "collection.delete.text": "Are you sure you want to delete collection \"{{ dso }}\"",
@@ -1954,12 +1782,10 @@
// "collection.edit.logo.label": "Collection logo",
"collection.edit.logo.label": "Логотип коллекции",
- // "collection.edit.logo.notifications.add.error": "Uploading collection logo failed. Please verify the content before retrying.",
- // TODO Source message changed - Revise the translation
+ // "collection.edit.logo.notifications.add.error": "Uploading Collection logo failed. Please verify the content before retrying.",
"collection.edit.logo.notifications.add.error": "Ошибка загрузки логотипа коллекции. Проверьте содержимое и повторите попытку.",
- // "collection.edit.logo.notifications.add.success": "Uploading collection logo successful.",
- // TODO Source message changed - Revise the translation
+ // "collection.edit.logo.notifications.add.success": "Upload Collection logo successful.",
"collection.edit.logo.notifications.add.success": "Логотип коллекции успешно загружен.",
// "collection.edit.logo.notifications.delete.success.title": "Logo deleted",
@@ -1971,12 +1797,10 @@
// "collection.edit.logo.notifications.delete.error.title": "Error deleting logo",
"collection.edit.logo.notifications.delete.error.title": "Ошибка при удалении логотипа",
- // "collection.edit.logo.upload": "Drop a collection logo to upload",
- // TODO Source message changed - Revise the translation
+ // "collection.edit.logo.upload": "Drop a Collection Logo to upload",
"collection.edit.logo.upload": "Перетащите логотип коллекции для загрузки",
- // "collection.edit.notifications.success": "Successfully edited the collection",
- // TODO Source message changed - Revise the translation
+ // "collection.edit.notifications.success": "Successfully edited the Collection",
"collection.edit.notifications.success": "Коллекция успешно отредактирована",
// "collection.edit.return": "Back",
@@ -2105,10 +1929,6 @@
// "collection.edit.template.notifications.delete.error": "Failed to delete the item template",
"collection.edit.template.notifications.delete.error": "Не удалось удалить шаблон элемента.",
- // "collection.edit.template.notifications.delete.success": "Successfully deleted the item template",
- // TODO New key - Add a translation
- "collection.edit.template.notifications.delete.success": "Successfully deleted the item template",
-
// "collection.edit.template.title": "Edit Template Item",
"collection.edit.template.title": "Редактировать шаблон элемента",
@@ -2121,14 +1941,6 @@
// "collection.form.errors.title.required": "Please enter a collection name",
"collection.form.errors.title.required": "Пожалуйста, введите название коллекции",
- // "collection.form.errors.submissionDefinition.required": "Please choose a submission definition for this collection",
- // TODO New key - Add a translation
- "collection.form.errors.submissionDefinition.required": "Please choose a submission definition for this collection",
-
- // "collection.form.errors.entityType.required": "Please choose an entity type for this collection",
- // TODO New key - Add a translation
- "collection.form.errors.entityType.required": "Please choose an entity type for this collection",
-
// "collection.form.license": "License",
"collection.form.license": "Лицензия",
@@ -2138,10 +1950,6 @@
// "collection.form.rights": "Copyright text (HTML)",
"collection.form.rights": "Текст об авторских правах (HTML)",
- // "collection.form.sharedWorkspace": "Shared workspace",
- // TODO New key - Add a translation
- "collection.form.sharedWorkspace": "Shared workspace",
-
// "collection.form.tableofcontents": "News (HTML)",
"collection.form.tableofcontents": "Новости (HTML)",
@@ -2151,24 +1959,6 @@
// "collection.form.entityType": "Entity Type",
"collection.form.entityType": "Тип объекта",
- // "collection.form.errors.entityType.required": "Please choose an entity type for this collection",
- // TODO New key - Add a translation
- "collection.form.errors.entityType.required": "Please choose an entity type for this collection",
-
- // "collection.form.errors.submissionDefinition.required": "Please choose a submission definition for this collection",
- // TODO New key - Add a translation
- "collection.form.errors.submissionDefinition.required": "Please choose a submission definition for this collection",
-
- // "collection.form.submissionDefinition": "Submission definition",
- // TODO New key - Add a translation
- "collection.form.submissionDefinition": "Submission definition",
-
- // "collection.form.correctionSubmissionDefinition": "Submission definition for correction request",
- // TODO New key - Add a translation
- "collection.form.correctionSubmissionDefinition": "Submission definition for correction request",
-
-
-
// "collection.listelement.badge": "Collection",
"collection.listelement.badge": "Коллекция",
@@ -2190,14 +1980,6 @@
// "collection.page.news": "News",
"collection.page.news": "Новости",
- // "collection.page.options": "Options",
- // TODO New key - Add a translation
- "collection.page.options": "Options",
-
- // "collection.search.breadcrumbs": "Search",
- // TODO New key - Add a translation
- "collection.search.breadcrumbs": "Search",
-
// "collection.search.results.head": "Search Results",
"collection.search.results.head": "Результаты поиска",
@@ -2324,8 +2106,7 @@
// "community.create.head": "Create a Community",
"community.create.head": "Создать сообщество",
- // "community.create.notifications.success": "Successfully created the community",
- // TODO Source message changed - Revise the translation
+ // "community.create.notifications.success": "Successfully created the Community",
"community.create.notifications.success": "Сообщество успешно создано",
// "community.create.sub-head": "Create a Sub-Community for Community {{ parent }}",
@@ -2349,8 +2130,7 @@
// "community.delete.notification.fail": "Community could not be deleted",
"community.delete.notification.fail": "Не удалось удалить сообщество",
- // "community.delete.notification.success": "Successfully started a process to delete this community",
- // TODO Source message changed - Revise the translation
+ // "community.delete.notification.success": "Successfully deleted community",
"community.delete.notification.success": "Сообщество успешно удалено",
// "community.delete.text": "Are you sure you want to delete community \"{{ dso }}\"",
@@ -2398,8 +2178,7 @@
// "community.edit.logo.upload": "Drop a community logo to upload",
"community.edit.logo.upload": "Перетащите логотип сообщества для загрузки",
- // "community.edit.notifications.success": "Successfully edited the community",
- // TODO Source message changed - Revise the translation
+ // "community.edit.notifications.success": "Successfully edited the Community",
"community.edit.notifications.success": "Сообщество успешно отредактировано",
// "community.edit.notifications.unauthorized": "You do not have privileges to make this change",
@@ -2465,22 +2244,6 @@
// "comcol-role.edit.delete.error.title": "Failed to delete the '{{ role }}' role's group",
"comcol-role.edit.delete.error.title": "Не удалось удалить группу роли '{{ role }}'",
- // "comcol-role.edit.delete.modal.header": "Delete Group \"{{ dsoName }}\"",
- // TODO New key - Add a translation
- "comcol-role.edit.delete.modal.header": "Delete Group \"{{ dsoName }}\"",
-
- // "comcol-role.edit.delete.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?",
- // TODO New key - Add a translation
- "comcol-role.edit.delete.modal.info": "Are you sure you want to delete Group \"{{ dsoName }}\" and all its associated policies?",
-
- // "comcol-role.edit.delete.modal.cancel": "Cancel",
- // TODO New key - Add a translation
- "comcol-role.edit.delete.modal.cancel": "Cancel",
-
- // "comcol-role.edit.delete.modal.confirm": "Delete",
- // TODO New key - Add a translation
- "comcol-role.edit.delete.modal.confirm": "Delete",
-
// "comcol-role.edit.community-admin.name": "Administrators",
"comcol-role.edit.community-admin.name": "Администраторы",
@@ -2571,47 +2334,18 @@
// "community.page.news": "News",
"community.page.news": "Новости",
- // "community.page.options": "Options",
- // TODO New key - Add a translation
- "community.page.options": "Options",
-
// "community.all-lists.head": "Subcommunities and Collections",
"community.all-lists.head": "Подсообщества и коллекции",
- // "community.search.breadcrumbs": "Search",
- // TODO New key - Add a translation
- "community.search.breadcrumbs": "Search",
-
// "community.search.results.head": "Search Results",
"community.search.results.head": "Результаты поиска",
- // "community.sub-collection-list.head": "Collections in this community",
- // TODO Source message changed - Revise the translation
+ // "community.sub-collection-list.head": "Collections in this Community",
"community.sub-collection-list.head": "Коллекции в этом сообществе",
// "community.sub-community-list.head": "Communities in this Community",
"community.sub-community-list.head": "Сообщества в этом сообществе",
- // "confirmation-modal.pending-changes.header": "Unsaved changes",
- // TODO New key - Add a translation
- "confirmation-modal.pending-changes.header": "Unsaved changes",
-
- // "confirmation-modal.pending-changes.info": "There are unsaved changes. Do you want to leave the page?",
- // TODO New key - Add a translation
- "confirmation-modal.pending-changes.info": "There are unsaved changes. Do you want to leave the page?",
-
- // "confirmation-modal.pending-changes.cancel": "Cancel",
- // TODO New key - Add a translation
- "confirmation-modal.pending-changes.cancel": "Cancel",
-
- // "confirmation-modal.pending-changes.confirm": "Leave",
- // TODO New key - Add a translation
- "confirmation-modal.pending-changes.confirm": "Leave",
-
- // "context-menu.actions.audit-item.btn": "Audit",
- // TODO New key - Add a translation
- "context-menu.actions.audit-item.btn": "Audit",
-
// "cookies.consent.accept-all": "Accept all",
"cookies.consent.accept-all": "Принять всё",
@@ -2633,6 +2367,12 @@
// "cookies.consent.app.required.title": "(always required)",
"cookies.consent.app.required.title": "(всегда требуется)",
+ // "cookies.consent.app.disable-all.description": "Use this switch to enable or disable all services.",
+ "cookies.consent.app.disable-all.description": "Используйте этот переключатель, чтобы включить или отключить все сервисы.",
+
+ // "cookies.consent.app.disable-all.title": "Enable or disable all services",
+ "cookies.consent.app.disable-all.title": "Включить или отключить все сервисы",
+
// "cookies.consent.update": "There were changes since your last visit, please update your consent.",
"cookies.consent.update": "С момента вашего последнего визита произошли изменения, пожалуйста, обновите своё согласие.",
@@ -2642,20 +2382,21 @@
// "cookies.consent.decline": "Decline",
"cookies.consent.decline": "Отклонить",
- // "cookies.consent.decline-all": "Decline all",
- // TODO New key - Add a translation
- "cookies.consent.decline-all": "Decline all",
-
// "cookies.consent.ok": "That's ok",
"cookies.consent.ok": "Хорошо",
// "cookies.consent.save": "Save",
"cookies.consent.save": "Сохранить",
- // "cookies.consent.content-notice.description": "We collect and process your personal information for the following purposes: {purposes}",
- // TODO Source message changed - Revise the translation
+ // "cookies.consent.content-notice.title": "Cookie Consent",
+ "cookies.consent.content-notice.title": "Согласие на использование cookies",
+
+ // "cookies.consent.content-notice.description": "We collect and process your personal information for the following purposes: Authentication, Preferences, Acknowledgement and Statistics.
To learn more, please read our {privacyPolicy}.",
"cookies.consent.content-notice.description": "Мы собираем и обрабатываем вашу личную информацию для следующих целей: Аутентификация, Предпочтения, Подтверждение и Статистика.
Подробнее см. в нашей {privacyPolicy}.",
+ // "cookies.consent.content-notice.description.no-privacy": "We collect and process your personal information for the following purposes: Authentication, Preferences, Acknowledgement and Statistics.",
+ "cookies.consent.content-notice.description.no-privacy": "Мы собираем и обрабатываем вашу личную информацию для следующих целей: Аутентификация, Предпочтения, Подтверждение и Статистика.",
+
// "cookies.consent.content-notice.learnMore": "Customize",
"cookies.consent.content-notice.learnMore": "Настроить",
@@ -2668,20 +2409,14 @@
// "cookies.consent.content-modal.privacy-policy.text": "To learn more, please read our {privacyPolicy}.",
"cookies.consent.content-modal.privacy-policy.text": "Чтобы узнать больше, пожалуйста, прочитайте нашу {privacyPolicy}.",
- // "cookies.consent.content-modal.no-privacy-policy.text": "",
- // TODO New key - Add a translation
- "cookies.consent.content-modal.no-privacy-policy.text": "",
-
// "cookies.consent.content-modal.title": "Information that we collect",
"cookies.consent.content-modal.title": "Информация, которую мы собираем",
- // "cookies.consent.app.title.accessibility": "Accessibility Settings",
- // TODO New key - Add a translation
- "cookies.consent.app.title.accessibility": "Accessibility Settings",
+ // "cookies.consent.content-modal.services": "services",
+ "cookies.consent.content-modal.services": "сервисы",
- // "cookies.consent.app.description.accessibility": "Required for saving your accessibility settings locally",
- // TODO New key - Add a translation
- "cookies.consent.app.description.accessibility": "Required for saving your accessibility settings locally",
+ // "cookies.consent.content-modal.service": "service",
+ "cookies.consent.content-modal.service": "сервис",
// "cookies.consent.app.title.authentication": "Authentication",
"cookies.consent.app.title.authentication": "Аутентификация",
@@ -2689,14 +2424,6 @@
// "cookies.consent.app.description.authentication": "Required for signing you in",
"cookies.consent.app.description.authentication": "Необходимо для входа в систему",
- // "cookies.consent.app.title.correlation-id": "Correlation ID",
- // TODO New key - Add a translation
- "cookies.consent.app.title.correlation-id": "Correlation ID",
-
- // "cookies.consent.app.description.correlation-id": "Allow us to track your session in backend logs for support/debugging purposes",
- // TODO New key - Add a translation
- "cookies.consent.app.description.correlation-id": "Allow us to track your session in backend logs for support/debugging purposes",
-
// "cookies.consent.app.title.preferences": "Preferences",
"cookies.consent.app.title.preferences": "Предпочтения",
@@ -2721,14 +2448,6 @@
// "cookies.consent.app.description.google-recaptcha": "We use google reCAPTCHA service during registration and password recovery",
"cookies.consent.app.description.google-recaptcha": "Мы используем сервис Google reCAPTCHA при регистрации и восстановлении пароля",
- // "cookies.consent.app.title.matomo": "Matomo",
- // TODO New key - Add a translation
- "cookies.consent.app.title.matomo": "Matomo",
-
- // "cookies.consent.app.description.matomo": "Allows us to track statistical data",
- // TODO New key - Add a translation
- "cookies.consent.app.description.matomo": "Allows us to track statistical data",
-
// "cookies.consent.purpose.functional": "Functional",
"cookies.consent.purpose.functional": "Функциональные",
@@ -2812,7 +2531,7 @@
// "dynamic-list.load-more": "Load more",
// TODO New key - Add a translation
- "dynamic-list.load-more": "Load more",
+ "dynamic-list.load-more": "Загрузить ещё",
// "dropdown.clear": "Clear selection",
"dropdown.clear": "Очистить выбор",
@@ -2877,8 +2596,7 @@
// "dso-selector.no-results": "No {{ type }} found",
"dso-selector.no-results": "Не найдено {{ type }}",
- // "dso-selector.placeholder": "Search for {{ type }}",
- // TODO Source message changed - Revise the translation
+ // "dso-selector.placeholder": "Search for a {{ type }}",
"dso-selector.placeholder": "Поиск {{ type }}",
// "dso-selector.placeholder.type.community": "community",
@@ -3022,26 +2740,6 @@
// "confirmation-modal.delete-subscription.confirm": "Delete",
"confirmation-modal.delete-subscription.confirm": "Удалить",
- // "confirmation-modal.review-account-info.header": "Save the changes",
- // TODO New key - Add a translation
- "confirmation-modal.review-account-info.header": "Save the changes",
-
- // "confirmation-modal.review-account-info.info": "Are you sure you want to save the changes to your profile",
- // TODO New key - Add a translation
- "confirmation-modal.review-account-info.info": "Are you sure you want to save the changes to your profile",
-
- // "confirmation-modal.review-account-info.cancel": "Cancel",
- // TODO New key - Add a translation
- "confirmation-modal.review-account-info.cancel": "Cancel",
-
- // "confirmation-modal.review-account-info.confirm": "Confirm",
- // TODO New key - Add a translation
- "confirmation-modal.review-account-info.confirm": "Confirm",
-
- // "confirmation-modal.review-account-info.save": "Save",
- // TODO New key - Add a translation
- "confirmation-modal.review-account-info.save": "Save",
-
// "error.bitstream": "Error fetching bitstream",
"error.bitstream": "Ошибка при получении файла",
@@ -3066,26 +2764,6 @@
// "error.item": "Error fetching item",
"error.item": "Ошибка при получении элемента",
- // "error.custom-url-conflict.title": "Duplicate custom URL detected",
- // TODO New key - Add a translation
- "error.custom-url-conflict.title": "Duplicate custom URL detected",
-
- // "error.custom-url-conflict.description": "The custom URL \"{{customUrl}}\" is assigned to more than one item. This causes a conflict and the item cannot be displayed.",
- // TODO New key - Add a translation
- "error.custom-url-conflict.description": "The custom URL \"{{customUrl}}\" is assigned to more than one item. This causes a conflict and the item cannot be displayed.",
-
- // "error.custom-url-conflict.admin-action": "Please contact your repository administrator. The following affected items need their dspace.customurl metadata fixed so each value is unique:",
- // TODO New key - Add a translation
- "error.custom-url-conflict.admin-action": "Please contact your repository administrator. The following affected items need their dspace.customurl metadata fixed so each value is unique:",
-
- // "error.custom-url-conflict.edit-link": "Edit \"{{name}}\" ({{uuid}})",
- // TODO New key - Add a translation
- "error.custom-url-conflict.edit-link": "Edit \"{{name}}\" ({{uuid}})",
-
- // "error.custom-url-conflict.no-items-found": "No conflicting items could be retrieved. Please contact your administrator.",
- // TODO New key - Add a translation
- "error.custom-url-conflict.no-items-found": "No conflicting items could be retrieved. Please contact your administrator.",
-
// "error.items": "Error fetching items",
"error.items": "Ошибка при получении элементов",
@@ -3097,7 +2775,7 @@
// "error.profile-groups": "Error retrieving profile groups",
// TODO New key - Add a translation
- "error.profile-groups": "Error retrieving profile groups",
+ "error.profile-groups": "Ошибка при получении групп профилей",
// "error.search-results": "Error fetching search results",
"error.search-results": "Ошибка при получении результатов поиска",
@@ -3117,25 +2795,8 @@
// "error.top-level-communities": "Error fetching top-level communities",
"error.top-level-communities": "Ошибка при получении сообществ верхнего уровня",
- // "error.validation.license.required": "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.required": "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.",
-
- // "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.",
- // TODO New key - Add a translation
- "error.validation.cclicense.required": "You must grant this cclicense to complete your submission. If you are unable to grant the cclicense at this time, you may save your work and return later or remove the submission.",
-
- // "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.",
- // TODO New key - Add a translation
- "error.validation.custom-url.conflict": "The custom url has been already used, please try with a new one.",
-
- // "error.validation.custom-url.empty": "The custom url is required and cannot be empty.",
- // TODO New key - Add a translation
- "error.validation.custom-url.empty": "The custom url is required and cannot be empty.",
-
- // "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters. Only alphanumeric characters, dashes and underscores are supported.",
- // TODO New key - Add a translation
- "error.validation.custom-url.invalid-characters": "The custom url contains invalid characters. Only alphanumeric characters, dashes and underscores are supported.",
+ // "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.",
+ "error.validation.license.notgranted": "Вы должны принять эту лицензию для завершения отправки. Если вы не можете сделать это сейчас, сохраните работу и вернитесь позже или удалите отправку.",
// "error.validation.pattern": "This input is restricted by the current pattern: {{ pattern }}.",
"error.validation.pattern": "Это поле ограничено текущим шаблоном: {{ pattern }}.",
@@ -3182,20 +2843,12 @@
// "file-download-link.restricted": "Restricted bitstream",
"file-download-link.restricted": "Ограниченный файл",
- // "file-download-link.secure-access": "Restricted bitstream available via secure access token",
- // TODO New key - Add a translation
- "file-download-link.secure-access": "Restricted bitstream available via secure access token",
-
// "file-section.error.header": "Error obtaining files for this item",
"file-section.error.header": "Ошибка при получении файлов для этого элемента",
// "footer.copyright": "copyright © 2002-{{ year }}",
"footer.copyright": "авторское право © 2002-{{ year }}",
- // "footer.link.accessibility": "Accessibility settings",
- // TODO New key - Add a translation
- "footer.link.accessibility": "Accessibility settings",
-
// "footer.link.dspace": "DSpace software",
"footer.link.dspace": "Программное обеспечение DSpace",
@@ -3307,10 +2960,6 @@
// "form.clear-help": "Click here to remove the selected value",
"form.clear-help": "Нажмите здесь, чтобы удалить выбранное значение",
- // "form.copy": "Duplicate",
- // TODO New key - Add a translation
- "form.copy": "Duplicate",
-
// "form.discard": "Discard",
"form.discard": "Отбросить",
@@ -3326,18 +2975,6 @@
// "form.first-name": "First name",
"form.first-name": "Имя",
- // "form.group.add": "Add",
- // TODO New key - Add a translation
- "form.group.add": "Add",
-
- // "form.group.close": "Close",
- // TODO New key - Add a translation
- "form.group.close": "Close",
-
- // "form.group.set": "Set",
- // TODO New key - Add a translation
- "form.group.set": "Set",
-
// "form.group-collapse": "Collapse",
"form.group-collapse": "Свернуть",
@@ -3386,74 +3023,6 @@
// "form.other-information.orcid": "ORCID",
"form.other-information.orcid": "ORCID",
- // "form.other-information.person_identifier_orcid": "ORCID",
- // TODO New key - Add a translation
- "form.other-information.person_identifier_orcid": "ORCID",
-
- // "form.other-information.oairecerif_author_affiliation": "Affiliation",
- // TODO New key - Add a translation
- "form.other-information.oairecerif_author_affiliation": "Affiliation",
-
- // "form.other-information.oairecerif_editor_affiliation": "Affiliation",
- // TODO New key - Add a translation
- "form.other-information.oairecerif_editor_affiliation": "Affiliation",
-
- // "form.other-information.person_identifier_orcid": "ORCID iD",
- // TODO New key - Add a translation
- "form.other-information.person_identifier_orcid": "ORCID iD",
-
- // "form.other-information.institution-affiliation-name": "Affiliation(s)",
- // TODO New key - Add a translation
- "form.other-information.institution-affiliation-name": "Affiliation(s)",
-
- // "form.other-information.dc_relation_grantno": "Grant Number",
- // TODO New key - Add a translation
- "form.other-information.dc_relation_grantno": "Grant Number",
-
- // "form.other-information.not-available": "Not available",
- // TODO New key - Add a translation
- "form.other-information.not-available": "Not available",
-
- // "form.other-information.ror_orgunit_id": "ROR ID",
- // TODO New key - Add a translation
- "form.other-information.ror_orgunit_id": "ROR ID",
-
- // "form.other-information.ror_orgunit_type": "ROR type",
- // TODO New key - Add a translation
- "form.other-information.ror_orgunit_type": "ROR type",
-
- // "form.other-information.ror_orgunit_acronym": "ROR acronym",
- // TODO New key - Add a translation
- "form.other-information.ror_orgunit_acronym": "ROR acronym",
-
- // "form.other-information.ror_orgunit_countryName": "ROR country",
- // TODO New key - Add a translation
- "form.other-information.ror_orgunit_countryName": "ROR country",
-
- // "form.entry.source.local": "",
- // TODO New key - Add a translation
- "form.entry.source.local": "",
-
- // "form.entry.source.orcid": "",
- // TODO New key - Add a translation
- "form.entry.source.orcid": "",
-
- // "form.entry.source.ror": "",
- // TODO New key - Add a translation
- "form.entry.source.ror": "",
-
- // "form.entry.source.openaire": "",
- // TODO New key - Add a translation
- "form.entry.source.openaire": "",
-
- // "form.entry.source.zdb": "",
- // TODO New key - Add a translation
- "form.entry.source.zdb": "",
-
- // "form.entry.source.sherpa": "- Sherpa Romeo",
- // TODO New key - Add a translation
- "form.entry.source.sherpa": "- Sherpa Romeo",
-
// "form.remove": "Remove",
"form.remove": "Удалить",
@@ -3481,29 +3050,12 @@
// "form.number-picker.increment": "Increment {{field}}",
"form.number-picker.increment": "Увеличить {{field}}",
- // "form.number-picker.label.Year": "Year",
- // TODO New key - Add a translation
- "form.number-picker.label.Year": "Year",
-
- // "form.number-picker.label.Month": "Month",
- // TODO New key - Add a translation
- "form.number-picker.label.Month": "Month",
-
- // "form.number-picker.label.Day": "Day",
- // TODO New key - Add a translation
- "form.number-picker.label.Day": "Day",
-
// "form.repeatable.sort.tip": "Drop the item in the new position",
"form.repeatable.sort.tip": "Переместите элемент на новую позицию",
- // "grant-deny-request-copy.deny": "Deny access request",
- // TODO Source message changed - Revise the translation
+ // "grant-deny-request-copy.deny": "Don't send copy",
"grant-deny-request-copy.deny": "Не отправлять копию",
- // "grant-deny-request-copy.revoke": "Revoke access",
- // TODO New key - Add a translation
- "grant-deny-request-copy.revoke": "Revoke access",
-
// "grant-deny-request-copy.email.back": "Back",
"grant-deny-request-copy.email.back": "Назад",
@@ -3528,8 +3080,7 @@
// "grant-deny-request-copy.email.subject.empty": "Please enter a subject",
"grant-deny-request-copy.email.subject.empty": "Пожалуйста, введите тему",
- // "grant-deny-request-copy.grant": "Grant access request",
- // TODO Source message changed - Revise the translation
+ // "grant-deny-request-copy.grant": "Send copy",
"grant-deny-request-copy.grant": "Отправить копию",
// "grant-deny-request-copy.header": "Document copy request",
@@ -3544,10 +3095,6 @@
// "grant-deny-request-copy.intro2": "After choosing an option, you will be presented with a suggested email reply which you may edit.",
"grant-deny-request-copy.intro2": "После выбора варианта будет предложен текст письма, который вы можете отредактировать.",
- // "grant-deny-request-copy.previous-decision": "This request was previously granted with a secure access token. You may revoke this access now to immediately invalidate the access token",
- // TODO New key - Add a translation
- "grant-deny-request-copy.previous-decision": "This request was previously granted with a secure access token. You may revoke this access now to immediately invalidate the access token",
-
// "grant-deny-request-copy.processed": "This request has already been processed. You can use the button below to get back to the home page.",
"grant-deny-request-copy.processed": "Этот запрос уже обработан. Вы можете использовать кнопку ниже, чтобы вернуться на главную страницу.",
@@ -3560,45 +3107,12 @@
// "grant-request-copy.header": "Grant document copy request",
"grant-request-copy.header": "Разрешить запрос копии документа",
- // "grant-request-copy.intro.attachment": "A 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.attachment": "A message will be sent to the applicant of the request. The requested document(s) will be attached.",
-
- // "grant-request-copy.intro.link": "A message will be sent to the applicant of the request. A secure link providing access to the requested document(s) will be attached. The link will provide access for the duration of time selected in the \"Access Period\" menu below.",
- // TODO New key - Add a translation
- "grant-request-copy.intro.link": "A message will be sent to the applicant of the request. A secure link providing access to the requested document(s) will be attached. The link will provide access for the duration of time selected in the \"Access Period\" menu below.",
-
- // "grant-request-copy.intro.link.preview": "Below is a preview of the link that will be sent to the applicant:",
- // TODO New key - Add a translation
- "grant-request-copy.intro.link.preview": "Below is a preview of the link that will be sent to the applicant:",
+ // "grant-request-copy.intro": "A message will be sent to the applicant of the request. The requested document(s) will be attached.",
+ "grant-request-copy.intro": "Сообщение будет отправлено заявителю. Запрошенные документы будут приложены.",
// "grant-request-copy.success": "Successfully granted item request",
"grant-request-copy.success": "Запрос на предмет успешно выполнен",
- // "grant-request-copy.access-period.header": "Access period",
- // TODO New key - Add a translation
- "grant-request-copy.access-period.header": "Access period",
-
- // "grant-request-copy.access-period.+1DAY": "1 day",
- // TODO New key - Add a translation
- "grant-request-copy.access-period.+1DAY": "1 day",
-
- // "grant-request-copy.access-period.+7DAYS": "1 week",
- // TODO New key - Add a translation
- "grant-request-copy.access-period.+7DAYS": "1 week",
-
- // "grant-request-copy.access-period.+1MONTH": "1 month",
- // TODO New key - Add a translation
- "grant-request-copy.access-period.+1MONTH": "1 month",
-
- // "grant-request-copy.access-period.+3MONTHS": "3 months",
- // TODO New key - Add a translation
- "grant-request-copy.access-period.+3MONTHS": "3 months",
-
- // "grant-request-copy.access-period.FOREVER": "Forever",
- // TODO New key - Add a translation
- "grant-request-copy.access-period.FOREVER": "Forever",
-
// "health.breadcrumbs": "Health",
"health.breadcrumbs": "Проверки",
@@ -3677,87 +3191,11 @@
// "home.top-level-communities.help": "Select a community to browse its collections.",
"home.top-level-communities.help": "Выберите сообщество для просмотра коллекций.",
- // "info.accessibility-settings.breadcrumbs": "Accessibility settings",
- // TODO New key - Add a translation
- "info.accessibility-settings.breadcrumbs": "Accessibility settings",
+ // "info.end-user-agreement.accept": "I have read and I agree to the End User Agreement",
+ "info.end-user-agreement.accept": "Я прочитал и согласен с соглашением конечного пользователя.",
- // "info.accessibility-settings.cookie-warning": "Saving the accessibility settings is currently not possible. Either log in to save the settings in user data, or accept the 'Accessibility Settings' cookie using the 'Cookie Settings' menu at the bottom of the page. Once the cookie has been accepted, you can reload the page to remove this message.",
- // TODO New key - Add a translation
- "info.accessibility-settings.cookie-warning": "Saving the accessibility settings is currently not possible. Either log in to save the settings in user data, or accept the 'Accessibility Settings' cookie using the 'Cookie Settings' menu at the bottom of the page. Once the cookie has been accepted, you can reload the page to remove this message.",
-
- // "info.accessibility-settings.disableNotificationTimeOut.label": "Automatically close notifications after time out",
- // TODO New key - Add a translation
- "info.accessibility-settings.disableNotificationTimeOut.label": "Automatically close notifications after time out",
-
- // "info.accessibility-settings.disableNotificationTimeOut.hint": "When this toggle is activated, notifications will close automatically after the time out passes. When deactivated, notifications will remain open until manually closed.",
- // TODO New key - Add a translation
- "info.accessibility-settings.disableNotificationTimeOut.hint": "When this toggle is activated, notifications will close automatically after the time out passes. When deactivated, notifications will remain open until manually closed.",
-
- // "info.accessibility-settings.failed-notification": "Failed to save accessibility settings",
- // TODO New key - Add a translation
- "info.accessibility-settings.failed-notification": "Failed to save accessibility settings",
-
- // "info.accessibility-settings.invalid-form-notification": "Did not save. The form contains invalid values.",
- // TODO New key - Add a translation
- "info.accessibility-settings.invalid-form-notification": "Did not save. The form contains invalid values.",
-
- // "info.accessibility-settings.liveRegionTimeOut.label": "ARIA Live region time out (in seconds)",
- // TODO New key - Add a translation
- "info.accessibility-settings.liveRegionTimeOut.label": "ARIA Live region time out (in seconds)",
-
- // "info.accessibility-settings.liveRegionTimeOut.hint": "The duration after which a message in the ARIA live region disappears. ARIA live regions are not visible on the page, but provide announcements of notifications (or other actions) to screen readers.",
- // TODO New key - Add a translation
- "info.accessibility-settings.liveRegionTimeOut.hint": "The duration after which a message in the ARIA live region disappears. ARIA live regions are not visible on the page, but provide announcements of notifications (or other actions) to screen readers.",
-
- // "info.accessibility-settings.liveRegionTimeOut.invalid": "Live region time out must be greater than 0",
- // TODO New key - Add a translation
- "info.accessibility-settings.liveRegionTimeOut.invalid": "Live region time out must be greater than 0",
-
- // "info.accessibility-settings.notificationTimeOut.label": "Notification time out (in seconds)",
- // TODO New key - Add a translation
- "info.accessibility-settings.notificationTimeOut.label": "Notification time out (in seconds)",
-
- // "info.accessibility-settings.notificationTimeOut.hint": "The duration after which a notification disappears.",
- // TODO New key - Add a translation
- "info.accessibility-settings.notificationTimeOut.hint": "The duration after which a notification disappears.",
-
- // "info.accessibility-settings.notificationTimeOut.invalid": "Notification time out must be greater than 0",
- // TODO New key - Add a translation
- "info.accessibility-settings.notificationTimeOut.invalid": "Notification time out must be greater than 0",
-
- // "info.accessibility-settings.save-notification.cookie": "Successfully saved settings locally.",
- // TODO New key - Add a translation
- "info.accessibility-settings.save-notification.cookie": "Successfully saved settings locally.",
-
- // "info.accessibility-settings.save-notification.metadata": "Successfully saved settings on the user profile.",
- // TODO New key - Add a translation
- "info.accessibility-settings.save-notification.metadata": "Successfully saved settings on the user profile.",
-
- // "info.accessibility-settings.reset-failed": "Failed to reset. Either log in or accept the 'Accessibility Settings' cookie.",
- // TODO New key - Add a translation
- "info.accessibility-settings.reset-failed": "Failed to reset. Either log in or accept the 'Accessibility Settings' cookie.",
-
- // "info.accessibility-settings.reset-notification": "Successfully reset settings.",
- // TODO New key - Add a translation
- "info.accessibility-settings.reset-notification": "Successfully reset settings.",
-
- // "info.accessibility-settings.reset": "Reset accessibility settings",
- // TODO New key - Add a translation
- "info.accessibility-settings.reset": "Reset accessibility settings",
-
- // "info.accessibility-settings.submit": "Save accessibility settings",
- // TODO New key - Add a translation
- "info.accessibility-settings.submit": "Save accessibility settings",
-
- // "info.accessibility-settings.title": "Accessibility settings",
- // TODO New key - Add a translation
- "info.accessibility-settings.title": "Accessibility settings",
-
- // "info.end-user-agreement.accept": "I have read and I agree to the End User Agreement",
- "info.end-user-agreement.accept": "Я прочитал и согласен с соглашением конечного пользователя.",
-
- // "info.end-user-agreement.accept.error": "An error occurred accepting the End User Agreement",
- "info.end-user-agreement.accept.error": "Произошла ошибка при принятии соглашения конечного пользователя.",
+ // "info.end-user-agreement.accept.error": "An error occurred accepting the End User Agreement",
+ "info.end-user-agreement.accept.error": "Произошла ошибка при принятии соглашения конечного пользователя.",
// "info.end-user-agreement.accept.success": "Successfully updated the End User Agreement",
"info.end-user-agreement.accept.success": "Соглашение конечного пользователя успешно обновлено.",
@@ -3834,14 +3272,6 @@
// "info.coar-notify-support.breadcrumbs": "COAR Notify Support",
"info.coar-notify-support.breadcrumbs": "Поддержка COAR Notify",
- // "item.alerts.private": "This item is non-discoverable",
- // TODO New key - Add a translation
- "item.alerts.private": "This item is non-discoverable",
-
- // "item.alerts.withdrawn": "This item has been withdrawn",
- // TODO New key - Add a translation
- "item.alerts.withdrawn": "This item has been withdrawn",
-
// "item.alerts.reinstate-request": "Request reinstate",
"item.alerts.reinstate-request": "Запрос на восстановление",
@@ -3854,10 +3284,6 @@
// "item.edit.authorizations.title": "Edit item's Policies",
"item.edit.authorizations.title": "Редактировать политики объекта",
- // "item.badge.status": "Item status:",
- // TODO New key - Add a translation
- "item.badge.status": "Item status:",
-
// "item.badge.private": "Non-discoverable",
"item.badge.private": "Приватный",
@@ -3912,8 +3338,7 @@
// "item.edit.bitstreams.bundle.name": "BUNDLE: {{ name }}",
"item.edit.bitstreams.bundle.name": "ПАКЕТ: {{ name }}",
- // "item.edit.bitstreams.bundle.table.aria-label": "Bitstreams in the {{ bundle }} Bundle",
- // TODO Source message changed - Revise the translation
+ // "item.edit.bitstreams.bundle.table.aria-label": "Bitstreams in the {{ bundle }} Bundle",
"item.edit.bitstreams.bundle.table.aria-label": "Файлы в пакете {{ bundle }}",
// "item.edit.bitstreams.bundle.tooltip": "You can move a bitstream to a different page by dropping it on the page number.",
@@ -4014,7 +3439,7 @@
// "item.edit.bitstreams.load-more.link": "Load more",
// TODO New key - Add a translation
- "item.edit.bitstreams.load-more.link": "Load more",
+ "item.edit.bitstreams.load-more.link": "Загрузить ещё",
// "item.edit.delete.cancel": "Cancel",
"item.edit.delete.cancel": "Отмена",
@@ -4031,22 +3456,9 @@
// "item.edit.delete.header": "Delete item: {{ id }}",
"item.edit.delete.header": "Удалить объект: {{ id }}",
- // "item.edit.delete.success": "Successfully started a process to delete this item",
- // TODO Source message changed - Revise the translation
+ // "item.edit.delete.success": "The item has been deleted",
"item.edit.delete.success": "Объект удалён",
- // "item.edit.delete.confirmation-title": "Confirm deletion",
- // TODO New key - Add a translation
- "item.edit.delete.confirmation-title": "Confirm deletion",
-
- // "item.edit.delete.confirmation-message": "Are you sure you want to permanently delete this item?",
- // TODO New key - Add a translation
- "item.edit.delete.confirmation-message": "Are you sure you want to permanently delete this item?",
-
- // "item.edit.delete.confirmation-detail": "This item may have been cited, has (or had) a persistent identifier (Handle/DOI), and deleting it may break scholarly references and external links.",
- // TODO New key - Add a translation
- "item.edit.delete.confirmation-detail": "This item may have been cited, has (or had) a persistent identifier (Handle/DOI), and deleting it may break scholarly references and external links.",
-
// "item.edit.head": "Edit Item",
"item.edit.head": "Редактировать объект",
@@ -4149,14 +3561,6 @@
// "item.edit.item-mapper.notifications.add.error.content": "Errors occurred for mapping of item to {{amount}} collections.",
"item.edit.item-mapper.notifications.add.error.content": "Возникли ошибки при назначении элемента {{ amount }} коллекциям.",
- // "item.edit.item-mapper.notifications.add.error.forbidden.head": "Permission denied",
- // TODO New key - Add a translation
- "item.edit.item-mapper.notifications.add.error.forbidden.head": "Permission denied",
-
- // "item.edit.item-mapper.notifications.add.error.forbidden.content": "You do not have permission to map this item to a collection.",
- // TODO New key - Add a translation
- "item.edit.item-mapper.notifications.add.error.forbidden.content": "You do not have permission to map this item to a collection.",
-
// "item.edit.item-mapper.notifications.add.error.head": "Mapping errors",
"item.edit.item-mapper.notifications.add.error.head": "Ошибки назначения",
@@ -4169,14 +3573,6 @@
// "item.edit.item-mapper.notifications.remove.error.content": "Errors occurred for the removal of the mapping to {{amount}} collections.",
"item.edit.item-mapper.notifications.remove.error.content": "Возникли ошибки при удалении назначения {{ amount }} коллекциям.",
- // "item.edit.item-mapper.notifications.remove.error.forbidden.head": "Permission denied",
- // TODO New key - Add a translation
- "item.edit.item-mapper.notifications.remove.error.forbidden.head": "Permission denied",
-
- // "item.edit.item-mapper.notifications.remove.error.forbidden.content": "You do not have permission to remove this item from a collection.",
- // TODO New key - Add a translation
- "item.edit.item-mapper.notifications.remove.error.forbidden.content": "You do not have permission to remove this item from a collection.",
-
// "item.edit.item-mapper.notifications.remove.error.head": "Removal of mapping errors",
"item.edit.item-mapper.notifications.remove.error.head": "Ошибки удаления назначения",
@@ -4204,10 +3600,6 @@
// "item.edit.metadata.edit.language": "Edit language",
"item.edit.metadata.edit.language": "Редактировать язык",
- // "item.edit.metadata.edit.authority": "Edit authority",
- // TODO New key - Add a translation
- "item.edit.metadata.edit.authority": "Edit authority",
-
// "item.edit.metadata.edit.value": "Edit value",
"item.edit.metadata.edit.value": "Редактировать значение",
@@ -4216,11 +3608,11 @@
// "item.edit.metadata.edit.buttons.enable-free-text-editing": "Enable free-text editing",
// TODO New key - Add a translation
- "item.edit.metadata.edit.buttons.enable-free-text-editing": "Enable free-text editing",
+ "item.edit.metadata.edit.buttons.enable-free-text-editing": "Включить редактирование свободного текста",
// "item.edit.metadata.edit.buttons.disable-free-text-editing": "Disable free-text editing",
// TODO New key - Add a translation
- "item.edit.metadata.edit.buttons.disable-free-text-editing": "Disable free-text editing",
+ "item.edit.metadata.edit.buttons.disable-free-text-editing": "Отключить редактирование свободного текста",
// "item.edit.metadata.edit.buttons.confirm": "Confirm",
"item.edit.metadata.edit.buttons.confirm": "Подтвердить",
@@ -4255,14 +3647,6 @@
// "item.edit.metadata.headers.language": "Lang",
"item.edit.metadata.headers.language": "Язык",
- // "item.edit.metadata.headers.security": "Security level",
- // TODO New key - Add a translation
- "item.edit.metadata.headers.security": "Security level",
-
- // "item.edit.metadata.headers.authority": "Authority",
- // TODO New key - Add a translation
- "item.edit.metadata.headers.authority": "Authority",
-
// "item.edit.metadata.headers.value": "Value",
"item.edit.metadata.headers.value": "Значение",
@@ -4497,8 +3881,7 @@
// "item.edit.tabs.metadata.head": "Metadata",
"item.edit.tabs.metadata.head": "Метаданные",
- // "item.edit.tabs.metadata.title": "Item Edit - Metadata",
- // TODO Source message changed - Revise the translation
+ // "item.edit.tabs.metadata.title": "Item Edit - Metadata",
"item.edit.tabs.metadata.title": "Редактирование элемента: Метаданные",
// "item.edit.tabs.relationships.head": "Relationships",
@@ -4525,8 +3908,7 @@
// "item.edit.tabs.status.buttons.mappedCollections.label": "Manage mapped collections",
"item.edit.tabs.status.buttons.mappedCollections.label": "Управлять связанными коллекциями",
- // "item.edit.tabs.status.buttons.move.button": "Move this item to a different collection",
- // TODO Source message changed - Revise the translation
+ // "item.edit.tabs.status.buttons.move.button": "Move this Item to a different Collection",
"item.edit.tabs.status.buttons.move.button": "Переместить этот элемент в другую коллекцию",
// "item.edit.tabs.status.buttons.move.label": "Move item to another collection",
@@ -4577,8 +3959,7 @@
// "item.edit.tabs.status.labels.lastModified": "Last Modified",
"item.edit.tabs.status.labels.lastModified": "Последнее изменение",
- // "item.edit.tabs.status.title": "Item Edit - Status",
- // TODO Source message changed - Revise the translation
+ // "item.edit.tabs.status.title": "Item Edit - Status",
"item.edit.tabs.status.title": "Редактирование элемента: Статус",
// "item.edit.tabs.versionhistory.head": "Version History",
@@ -4593,8 +3974,7 @@
// "item.edit.tabs.view.head": "View Item",
"item.edit.tabs.view.head": "Просмотр элемента",
- // "item.edit.tabs.view.title": "Item Edit - View",
- // TODO Source message changed - Revise the translation
+ // "item.edit.tabs.view.title": "Item Edit - View",
"item.edit.tabs.view.title": "Редактирование элемента - Просмотр",
// "item.edit.withdraw.cancel": "Cancel",
@@ -4624,62 +4004,6 @@
// "item.page.description": "Description",
"item.page.description": "Описание",
- // "item.page.org-unit": "Organizational Unit",
- // TODO New key - Add a translation
- "item.page.org-unit": "Organizational Unit",
-
- // "item.page.org-units": "Organizational Units",
- // TODO New key - Add a translation
- "item.page.org-units": "Organizational Units",
-
- // "item.page.project": "Research Project",
- // TODO New key - Add a translation
- "item.page.project": "Research Project",
-
- // "item.page.projects": "Research Projects",
- // TODO New key - Add a translation
- "item.page.projects": "Research Projects",
-
- // "item.page.publication": "Publications",
- // TODO New key - Add a translation
- "item.page.publication": "Publications",
-
- // "item.page.publications": "Publications",
- // TODO New key - Add a translation
- "item.page.publications": "Publications",
-
- // "item.page.article": "Article",
- // TODO New key - Add a translation
- "item.page.article": "Article",
-
- // "item.page.articles": "Articles",
- // TODO New key - Add a translation
- "item.page.articles": "Articles",
-
- // "item.page.journal": "Journal",
- // TODO New key - Add a translation
- "item.page.journal": "Journal",
-
- // "item.page.journals": "Journals",
- // TODO New key - Add a translation
- "item.page.journals": "Journals",
-
- // "item.page.journal-issue": "Journal Issue",
- // TODO New key - Add a translation
- "item.page.journal-issue": "Journal Issue",
-
- // "item.page.journal-issues": "Journal Issues",
- // TODO New key - Add a translation
- "item.page.journal-issues": "Journal Issues",
-
- // "item.page.journal-volume": "Journal Volume",
- // TODO New key - Add a translation
- "item.page.journal-volume": "Journal Volume",
-
- // "item.page.journal-volumes": "Journal Volumes",
- // TODO New key - Add a translation
- "item.page.journal-volumes": "Journal Volumes",
-
// "item.page.journal-issn": "Journal ISSN",
"item.page.journal-issn": "ISSN журнала",
@@ -4695,14 +4019,6 @@
// "item.page.volume-title": "Volume Title",
"item.page.volume-title": "Название тома",
- // "item.page.dcterms.spatial": "Geospatial point",
- // TODO New key - Add a translation
- "item.page.dcterms.spatial": "Geospatial point",
-
- // "item.page.doi": "DOI",
- // TODO New key - Add a translation
- "item.page.doi": "DOI",
-
// "item.search.results.head": "Item Search Results",
"item.search.results.head": "Результаты поиска элементов",
@@ -4781,14 +4097,9 @@
// "item.page.abstract": "Abstract",
"item.page.abstract": "Аннотация",
- // "item.page.author": "Author",
- // TODO Source message changed - Revise the translation
+ // "item.page.author": "Authors",
"item.page.author": "Авторы",
- // "item.page.authors": "Authors",
- // TODO New key - Add a translation
- "item.page.authors": "Authors",
-
// "item.page.citation": "Citation",
"item.page.citation": "Цитирование",
@@ -4804,8 +4115,7 @@
// "item.page.date": "Date",
"item.page.date": "Дата",
- // "item.page.edit": "Administer",
- // TODO Source message changed - Revise the translation
+ // "item.page.edit": "Edit this item",
"item.page.edit": "Редактировать этот элемент",
// "item.page.files": "Files",
@@ -4835,24 +4145,12 @@
// "item.page.link.simple": "Simple item page",
"item.page.link.simple": "Простая страница элемента",
- // "item.page.options": "Options",
- // TODO New key - Add a translation
- "item.page.options": "Options",
-
// "item.page.orcid.title": "ORCID",
"item.page.orcid.title": "ORCID",
// "item.page.orcid.tooltip": "Open ORCID setting page",
"item.page.orcid.tooltip": "Открыть страницу настроек ORCID",
- // "item.page.orcid-ico": "ORCID icon",
- // TODO New key - Add a translation
- "item.page.orcid-ico": "ORCID icon",
-
- // "item.page.orcid-profile": "ORCID Profile",
- // TODO New key - Add a translation
- "item.page.orcid-profile": "ORCID Profile",
-
// "item.page.person.search.title": "Articles by this author",
"item.page.person.search.title": "Публикации этого автора",
@@ -4874,51 +4172,6 @@
// "item.page.relationships.isOrgUnitOfProject": "Research Projects",
"item.page.relationships.isOrgUnitOfProject": "Научные проекты",
- // "item.page.relationships.RELATION.Person.researchoutputs": "Publications",
- // TODO New key - Add a translation
- "item.page.relationships.RELATION.Person.researchoutputs": "Publications",
-
- // "item.page.relationships.RELATION.Person.projects": "Projects",
- // TODO New key - Add a translation
- "item.page.relationships.RELATION.Person.projects": "Projects",
-
- // "item.page.relationships.RELATION.OrgUnit.rpprojects": "Researchers Projects",
- // TODO New key - Add a translation
- "item.page.relationships.RELATION.OrgUnit.rpprojects": "Researchers Projects",
-
- // "item.page.relationships.RELATION.OrgUnit.publications": "Publications",
- // TODO New key - Add a translation
- "item.page.relationships.RELATION.OrgUnit.publications": "Publications",
-
- // "item.page.relationships.RELATION.OrgUnit.rppublications": "Researchers Publications",
- // TODO New key - Add a translation
- "item.page.relationships.RELATION.OrgUnit.rppublications": "Researchers Publications",
-
- // "item.page.relationships.RELATION.OrgUnit.people": "People",
- // TODO New key - Add a translation
- "item.page.relationships.RELATION.OrgUnit.people": "People",
-
- // "item.page.relationships.RELATION.OrgUnit.projects": "Projects",
- // TODO New key - Add a translation
- "item.page.relationships.RELATION.OrgUnit.projects": "Projects",
-
- // "item.page.relationships.RELATION.OrgUnit.organizations": "Organizations",
- // TODO New key - Add a translation
- "item.page.relationships.RELATION.OrgUnit.organizations": "Organizations",
-
- // "item.page.relationships.RELATION.Project.projects": "Projects",
- // TODO New key - Add a translation
- "item.page.relationships.RELATION.Project.projects": "Projects",
-
- // "item.page.relationships.RELATION.Project.fundings": "Fundings",
- // TODO New key - Add a translation
- "item.page.relationships.RELATION.Project.fundings": "Fundings",
-
- // "item.page.relationships.RELATION.Project.researchoutputs": "Publications",
- // TODO New key - Add a translation
- "item.page.relationships.RELATION.Project.researchoutputs": "Publications",
-
-
// "item.page.subject": "Keywords",
"item.page.subject": "Ключевые слова",
@@ -4940,14 +4193,6 @@
// "item.page.filesection.license.bundle": "License bundle",
"item.page.filesection.license.bundle": "Пакет лицензий",
- // "item-page.resolver.invalid-custom-url.title": "Invalid custom URL",
- // TODO New key - Add a translation
- "item-page.resolver.invalid-custom-url.title": "Invalid custom URL",
-
- // "item-page.resolver.invalid-custom-url.message": "The custom URL of this item contains unsupported characters. The item is being displayed using its UUID.",
- // TODO New key - Add a translation
- "item-page.resolver.invalid-custom-url.message": "The custom URL of this item contains unsupported characters. The item is being displayed using its UUID.",
-
// "item.page.return": "Back",
"item.page.return": "Назад",
@@ -4981,10 +4226,6 @@
// "item.preview.dc.date.issued": "Published date:",
"item.preview.dc.date.issued": "Дата публикации:",
- // "item.preview.dc.description": "Description:",
- // TODO New key - Add a translation
- "item.preview.dc.description": "Description:",
-
// "item.preview.dc.description.abstract": "Abstract:",
"item.preview.dc.description.abstract": "Резюме:",
@@ -5003,44 +4244,12 @@
// "item.preview.dc.type": "Type:",
"item.preview.dc.type": "Тип:",
- // "item.preview.oaire.version": "Version",
- // TODO New key - Add a translation
- "item.preview.oaire.version": "Version",
-
// "item.preview.oaire.citation.issue": "Issue",
"item.preview.oaire.citation.issue": "Выпуск",
// "item.preview.oaire.citation.volume": "Volume",
"item.preview.oaire.citation.volume": "Том",
- // "item.preview.oaire.citation.title": "Citation container",
- // TODO New key - Add a translation
- "item.preview.oaire.citation.title": "Citation container",
-
- // "item.preview.oaire.citation.startPage": "Citation start page",
- // TODO New key - Add a translation
- "item.preview.oaire.citation.startPage": "Citation start page",
-
- // "item.preview.oaire.citation.endPage": "Citation end page",
- // TODO New key - Add a translation
- "item.preview.oaire.citation.endPage": "Citation end page",
-
- // "item.preview.dc.relation.hasversion": "Has version",
- // TODO New key - Add a translation
- "item.preview.dc.relation.hasversion": "Has version",
-
- // "item.preview.dc.relation.ispartofseries": "Is part of series",
- // TODO New key - Add a translation
- "item.preview.dc.relation.ispartofseries": "Is part of series",
-
- // "item.preview.dc.rights": "Rights",
- // TODO New key - Add a translation
- "item.preview.dc.rights": "Rights",
-
- // "item.preview.dc.identifier.other": "Other Identifier",
- // TODO Source message changed - Revise the translation
- "item.preview.dc.identifier.other": "Другой идентификатор:",
-
// "item.preview.dc.relation.issn": "ISSN",
"item.preview.dc.relation.issn": "ISSN",
@@ -5068,20 +4277,12 @@
// "item.preview.person.identifier.orcid": "ORCID:",
"item.preview.person.identifier.orcid": "ORCID:",
- // "item.preview.person.affiliation.name": "Affiliations:",
- // TODO New key - Add a translation
- "item.preview.person.affiliation.name": "Affiliations:",
-
// "item.preview.project.funder.name": "Funder:",
"item.preview.project.funder.name": "Спонсор:",
// "item.preview.project.funder.identifier": "Funder Identifier:",
"item.preview.project.funder.identifier": "Идентификатор спонсора:",
- // "item.preview.project.investigator": "Project Investigator",
- // TODO New key - Add a translation
- "item.preview.project.investigator": "Project Investigator",
-
// "item.preview.oaire.awardNumber": "Funding ID:",
"item.preview.oaire.awardNumber": "ID финансирования:",
@@ -5118,26 +4319,6 @@
// "item.preview.dspace.entity.type": "Entity Type:",
"item.preview.dspace.entity.type": "Тип сущности:",
- // "item.preview.creativework.publisher": "Publisher",
- // TODO New key - Add a translation
- "item.preview.creativework.publisher": "Publisher",
-
- // "item.preview.creativeworkseries.issn": "ISSN",
- // TODO New key - Add a translation
- "item.preview.creativeworkseries.issn": "ISSN",
-
- // "item.preview.dc.identifier.issn": "ISSN",
- // TODO New key - Add a translation
- "item.preview.dc.identifier.issn": "ISSN",
-
- // "item.preview.dc.identifier.openalex": "OpenAlex Identifier",
- // TODO New key - Add a translation
- "item.preview.dc.identifier.openalex": "OpenAlex Identifier",
-
- // "item.preview.dc.description": "Description",
- // TODO New key - Add a translation
- "item.preview.dc.description": "Description",
-
// "item.select.confirm": "Confirm selected",
"item.select.confirm": "Подтвердить выбранное",
@@ -5357,10 +4538,6 @@
// "itemtemplate.edit.metadata.edit.language": "Edit language",
"itemtemplate.edit.metadata.edit.language": "Изменить язык",
- // "itemtemplate.edit.metadata.edit.authority": "Edit authority",
- // TODO New key - Add a translation
- "itemtemplate.edit.metadata.edit.authority": "Edit authority",
-
// "itemtemplate.edit.metadata.edit.value": "Edit value",
"itemtemplate.edit.metadata.edit.value": "Изменить значение",
@@ -5397,10 +4574,6 @@
// "itemtemplate.edit.metadata.headers.value": "Value",
"itemtemplate.edit.metadata.headers.value": "Значение",
- // "itemtemplate.edit.metadata.headers.authority": "Authority",
- // TODO New key - Add a translation
- "itemtemplate.edit.metadata.headers.authority": "Authority",
-
// "itemtemplate.edit.metadata.metadatafield": "Edit field",
"itemtemplate.edit.metadata.metadatafield": "Редактировать поле",
@@ -5452,8 +4625,7 @@
// "journal.page.description": "Description",
"journal.page.description": "Описание",
- // "journal.page.edit": "Administer",
- // TODO Source message changed - Revise the translation
+ // "journal.page.edit": "Edit this item",
"journal.page.edit": "Редактировать этот элемент",
// "journal.page.editor": "Editor-in-Chief",
@@ -5465,10 +4637,6 @@
// "journal.page.publisher": "Publisher",
"journal.page.publisher": "Издатель",
- // "journal.page.options": "Options",
- // TODO New key - Add a translation
- "journal.page.options": "Options",
-
// "journal.page.titleprefix": "Journal: ",
"journal.page.titleprefix": "Журнал: ",
@@ -5487,8 +4655,7 @@
// "journalissue.page.description": "Description",
"journalissue.page.description": "Описание",
- // "journalissue.page.edit": "Administer",
- // TODO Source message changed - Revise the translation
+ // "journalissue.page.edit": "Edit this item",
"journalissue.page.edit": "Редактировать этот элемент",
// "journalissue.page.issuedate": "Issue Date",
@@ -5506,10 +4673,6 @@
// "journalissue.page.number": "Number",
"journalissue.page.number": "Номер",
- // "journalissue.page.options": "Options",
- // TODO New key - Add a translation
- "journalissue.page.options": "Options",
-
// "journalissue.page.titleprefix": "Journal Issue: ",
"journalissue.page.titleprefix": "Выпуск журнала: ",
@@ -5522,17 +4685,12 @@
// "journalvolume.page.description": "Description",
"journalvolume.page.description": "Описание",
- // "journalvolume.page.edit": "Administer",
- // TODO Source message changed - Revise the translation
+ // "journalvolume.page.edit": "Edit this item",
"journalvolume.page.edit": "Редактировать этот элемент",
// "journalvolume.page.issuedate": "Issue Date",
"journalvolume.page.issuedate": "Дата выпуска",
- // "journalvolume.page.options": "Options",
- // TODO New key - Add a translation
- "journalvolume.page.options": "Options",
-
// "journalvolume.page.titleprefix": "Journal Volume: ",
"journalvolume.page.titleprefix": "Том журнала: ",
@@ -5575,54 +4733,6 @@
// "iiif.page.description": "Description: ",
"iiif.page.description": "Описание: ",
- // "layout.advanced-attachment.dc.title": "Name",
- // TODO New key - Add a translation
- "layout.advanced-attachment.dc.title": "Name",
-
- // "layout.advanced-attachment.size": "Size",
- // TODO New key - Add a translation
- "layout.advanced-attachment.size": "Size",
-
- // "layout.advanced-attachment.checksum": "Checksum",
- // TODO New key - Add a translation
- "layout.advanced-attachment.checksum": "Checksum",
-
- // "layout.advanced-attachment.checksum.info.MD5": "The MD5 message-digest algorithm can be used to verify the integrity of the file that you have uploaded. You can calculate its value locally via tools that are generally available in each operative system like md5sum",
- // TODO New key - Add a translation
- "layout.advanced-attachment.checksum.info.MD5": "The MD5 message-digest algorithm can be used to verify the integrity of the file that you have uploaded. You can calculate its value locally via tools that are generally available in each operative system like md5sum",
-
- // "layout.advanced-attachment.format": "Format",
- // TODO New key - Add a translation
- "layout.advanced-attachment.format": "Format",
-
- // "layout.advanced-attachment.dc.type": "Type",
- // TODO New key - Add a translation
- "layout.advanced-attachment.dc.type": "Type",
-
- // "layout.advanced-attachment.dc.description": "Description",
- // TODO New key - Add a translation
- "layout.advanced-attachment.dc.description": "Description",
-
- // "layout.advanced-attachment.no_thumbnail": "No Thumbnail Available",
- // TODO New key - Add a translation
- "layout.advanced-attachment.no_thumbnail": "No Thumbnail Available",
-
- // "layout.advanced-attachment.download": "Download",
- // TODO New key - Add a translation
- "layout.advanced-attachment.download": "Download",
-
- // "layout.advanced-attachment.requestACopy": "Request a copy",
- // TODO New key - Add a translation
- "layout.advanced-attachment.requestACopy": "Request a copy",
-
- // "layout.advanced-attachment.viewMore": "View More",
- // TODO New key - Add a translation
- "layout.advanced-attachment.viewMore": "View More",
-
- // "layout.advanced-attachment.label.not-present": "(not present)",
- // TODO New key - Add a translation
- "layout.advanced-attachment.label.not-present": "(not present)",
-
// "loading.bitstream": "Loading bitstream...",
"loading.bitstream": "Загрузка потока данных...",
@@ -5698,10 +4808,6 @@
// "login.form.password": "Password",
"login.form.password": "Пароль",
- // "login.form.saml": "Log in with SAML",
- // TODO New key - Add a translation
- "login.form.saml": "Log in with SAML",
-
// "login.form.shibboleth": "Log in with Shibboleth",
"login.form.shibboleth": "Войти через Shibboleth",
@@ -5750,10 +4856,6 @@
// "menu.section.access_control_people": "People",
"menu.section.access_control_people": "Пользователи",
- // "menu.section.audit": "Audit Logs",
- // TODO New key - Add a translation
- "menu.section.audit": "Audit Logs",
-
// "menu.section.reports": "Reports",
"menu.section.reports": "Отчёты",
@@ -5802,10 +4904,6 @@
// "menu.section.browse_global_communities_and_collections": "Communities & Collections",
"menu.section.browse_global_communities_and_collections": "Сообщества и коллекции",
- // "menu.section.browse_global_geospatial_map": "By Geolocation (Map)",
- // TODO New key - Add a translation
- "menu.section.browse_global_geospatial_map": "By Geolocation (Map)",
-
// "menu.section.control_panel": "Control Panel",
"menu.section.control_panel": "Панель управления",
@@ -5878,6 +4976,18 @@
// "menu.section.icon.pin": "Pin sidebar",
"menu.section.icon.pin": "Закрепить боковую панель",
+ // "menu.section.icon.processes": "Processes Health",
+ "menu.section.icon.processes": "Раздел меню состояния процессов",
+
+ // "menu.section.icon.registries": "Registries menu section",
+ "menu.section.icon.registries": "Раздел меню реестров",
+
+ // "menu.section.icon.statistics_task": "Statistics Task menu section",
+ "menu.section.icon.statistics_task": "Раздел меню задач статистики",
+
+ // "menu.section.icon.workflow": "Administer workflow menu section",
+ "menu.section.icon.workflow": "Раздел меню управления рабочим процессом",
+
// "menu.section.icon.unpin": "Unpin sidebar",
"menu.section.icon.unpin": "Открепить боковую панель",
@@ -5983,22 +5093,6 @@
// "menu.section.workflow": "Administer Workflow",
"menu.section.workflow": "Управление рабочим процессом",
- // "menu.section.FULL": "Edit",
- // TODO New key - Add a translation
- "menu.section.FULL": "Edit",
-
- // "menu.section.OWNER": "Edit",
- // TODO New key - Add a translation
- "menu.section.OWNER": "Edit",
-
- // "menu.section.DIRECTOR": "Edit",
- // TODO New key - Add a translation
- "menu.section.DIRECTOR": "Edit",
-
- // "menu.section.INVESTIGATOR": "Edit",
- // TODO New key - Add a translation
- "menu.section.INVESTIGATOR": "Edit",
-
// "metadata-export-search.tooltip": "Export search results as CSV",
"metadata-export-search.tooltip": "Экспорт результатов поиска в CSV",
@@ -6008,10 +5102,6 @@
// "metadata-export-search.submit.error": "Starting the export has failed",
"metadata-export-search.submit.error": "Ошибка при запуске экспорта",
- // "metadata.security.level.title": "Metatada security level {{level}}",
- // TODO New key - Add a translation
- "metadata.security.level.title": "Metatada security level {{level}}",
-
// "mydspace.breadcrumbs": "MyDSpace",
"mydspace.breadcrumbs": "Мой DSpace",
@@ -6102,17 +5192,9 @@
// "mydspace.show.workspace": "Your submissions",
"mydspace.show.workspace": "Ваши отправления",
- // "mydspace.show.otherWorkspace": "Shared Submissions",
- // TODO New key - Add a translation
- "mydspace.show.otherWorkspace": "Shared Submissions",
-
// "mydspace.show.supervisedWorkspace": "Supervised items",
"mydspace.show.supervisedWorkspace": "Кураторские элементы",
- // "mydspace.status": "My DSpace status:",
- // TODO New key - Add a translation
- "mydspace.status": "My DSpace status:",
-
// "mydspace.status.mydspaceArchived": "Archived",
"mydspace.status.mydspaceArchived": "В архиве",
@@ -6209,21 +5291,9 @@
// "nav.user.description": "User profile bar",
"nav.user.description": "Панель профиля пользователя",
- // "listelement.badge.dso-type": "Item type:",
- // TODO New key - Add a translation
- "listelement.badge.dso-type": "Item type:",
-
// "none.listelement.badge": "Item",
"none.listelement.badge": "Элемент",
- // "publication-claim.title": "Publication claim",
- // TODO New key - Add a translation
- "publication-claim.title": "Publication claim",
-
- // "publication-claim.source.description": "Below you can see all the sources.",
- // TODO New key - Add a translation
- "publication-claim.source.description": "Below you can see all the sources.",
-
// "quality-assurance.title": "Quality Assurance",
"quality-assurance.title": "Контроль качества",
@@ -6434,10 +5504,6 @@
// "quality-assurance.event.reason": "Reason",
"quality-assurance.event.reason": "Причина",
- // "orcid.badge.tooltip": "Connected to ORCID",
- // TODO New key - Add a translation
- "orcid.badge.tooltip": "Connected to ORCID",
-
// "orgunit.listelement.badge": "Organizational Unit",
"orgunit.listelement.badge": "Организационное подразделение",
@@ -6456,17 +5522,12 @@
// "orgunit.page.description": "Description",
"orgunit.page.description": "Описание",
- // "orgunit.page.edit": "Administer",
- // TODO Source message changed - Revise the translation
+ // "orgunit.page.edit": "Edit this item",
"orgunit.page.edit": "Редактировать этот элемент",
// "orgunit.page.id": "ID",
"orgunit.page.id": "ID",
- // "orgunit.page.options": "Options",
- // TODO New key - Add a translation
- "orgunit.page.options": "Options",
-
// "orgunit.page.titleprefix": "Organizational Unit: ",
"orgunit.page.titleprefix": "Организационное подразделение: ",
@@ -6500,8 +5561,7 @@
// "person.page.birthdate": "Birth Date",
"person.page.birthdate": "Дата рождения",
- // "person.page.edit": "Administer",
- // TODO Source message changed - Revise the translation
+ // "person.page.edit": "Edit this item",
"person.page.edit": "Редактировать этот элемент",
// "person.page.email": "Email Address",
@@ -6522,10 +5582,6 @@
// "person.page.link.full": "Show all metadata",
"person.page.link.full": "Показать все метаданные",
- // "person.page.options": "Options",
- // TODO New key - Add a translation
- "person.page.options": "Options",
-
// "person.page.orcid": "ORCID",
"person.page.orcid": "ORCID",
@@ -6580,10 +5636,6 @@
// "process.new.parameter.file.required": "Please select a file",
"process.new.parameter.file.required": "Пожалуйста, выберите файл",
- // "process.new.parameter.integer.required": "Parameter value is required",
- // TODO New key - Add a translation
- "process.new.parameter.integer.required": "Parameter value is required",
-
// "process.new.parameter.string.required": "Parameter value is required",
"process.new.parameter.string.required": "Требуется значение параметра",
@@ -6770,33 +5822,18 @@
// "process.overview.unknown.user": "Unknown",
"process.overview.unknown.user": "Неизвестно",
- // "process.bulk.delete.error.head": "Error on deleting process",
- // TODO Source message changed - Revise the translation
+ // "process.bulk.delete.error.head": "Error on deleteing process",
"process.bulk.delete.error.head": "Ошибка при удалении процесса",
- // "process.bulk.delete.error.body": "The process with ID {{processId}} could not be deleted. The remaining processes will continue being deleted.",
- // TODO Source message changed - Revise the translation
+ // "process.bulk.delete.error.body": "The process with ID {{processId}} could not be deleted. The remaining processes will continue being deleted. ",
"process.bulk.delete.error.body": "Не удалось удалить процесс с ID {{processId}}. Остальные процессы будут продолжены к удалению.",
- // "process.bulk.delete.success": "{{count}} process(es) have been successfully deleted",
- // TODO Source message changed - Revise the translation
+ // "process.bulk.delete.success": "{{count}} process(es) have been succesfully deleted",
"process.bulk.delete.success": "{{count}} процесс(ов) были успешно удалены",
// "profile.breadcrumbs": "Update Profile",
"profile.breadcrumbs": "Обновить профиль",
- // "profile.card.accessibility.content": "Accessibility settings can be configured on the accessibility settings page.",
- // TODO New key - Add a translation
- "profile.card.accessibility.content": "Accessibility settings can be configured on the accessibility settings page.",
-
- // "profile.card.accessibility.header": "Accessibility",
- // TODO New key - Add a translation
- "profile.card.accessibility.header": "Accessibility",
-
- // "profile.card.accessibility.link": "Go to Accessibility Settings Page",
- // TODO New key - Add a translation
- "profile.card.accessibility.link": "Go to Accessibility Settings Page",
-
// "profile.card.identify": "Identify",
"profile.card.identify": "Идентификация",
@@ -6893,8 +5930,7 @@
// "project.page.description": "Description",
"project.page.description": "Описание",
- // "project.page.edit": "Administer",
- // TODO Source message changed - Revise the translation
+ // "project.page.edit": "Edit this item",
"project.page.edit": "Редактировать элемент",
// "project.page.expectedcompletion": "Expected Completion",
@@ -6909,10 +5945,6 @@
// "project.page.keyword": "Keywords",
"project.page.keyword": "Ключевые слова",
- // "project.page.options": "Options",
- // TODO New key - Add a translation
- "project.page.options": "Options",
-
// "project.page.status": "Status",
"project.page.status": "Статус",
@@ -6931,8 +5963,7 @@
// "publication.page.description": "Description",
"publication.page.description": "Описание",
- // "publication.page.edit": "Administer",
- // TODO Source message changed - Revise the translation
+ // "publication.page.edit": "Edit this item",
"publication.page.edit": "Редактировать элемент",
// "publication.page.journal-issn": "Journal ISSN",
@@ -6944,20 +5975,12 @@
// "publication.page.publisher": "Publisher",
"publication.page.publisher": "Издатель",
- // "publication.page.options": "Options",
- // TODO New key - Add a translation
- "publication.page.options": "Options",
-
// "publication.page.titleprefix": "Publication: ",
"publication.page.titleprefix": "Публикация: ",
// "publication.page.volume-title": "Volume Title",
"publication.page.volume-title": "Название тома",
- // "publication.page.doi": "DOI",
- // TODO New key - Add a translation
- "publication.page.doi": "DOI",
-
// "publication.search.results.head": "Publication Search Results",
"publication.search.results.head": "Результаты поиска публикаций",
@@ -7063,10 +6086,6 @@
// "suggestion.source.openaire": "OpenAIRE Graph",
"suggestion.source.openaire": "Граф OpenAIRE",
- // "suggestion.source.openalex": "OpenAlex",
- // TODO New key - Add a translation
- "suggestion.source.openalex": "OpenAlex",
-
// "suggestion.from.source": "from the ",
"suggestion.from.source": "из ",
@@ -7211,109 +6230,68 @@
// "relationships.add.error.title": "Unable to add relationship",
"relationships.add.error.title": "Не удалось добавить связь",
- // "relationships.Publication.isAuthorOfPublication.Person": "Authors (persons)",
- // TODO New key - Add a translation
- "relationships.Publication.isAuthorOfPublication.Person": "Authors (persons)",
+ // "relationships.isAuthorOf": "Authors",
+ "relationships.isAuthorOf": "Авторы",
- // "relationships.Publication.isProjectOfPublication.Project": "Research Projects",
- // TODO New key - Add a translation
- "relationships.Publication.isProjectOfPublication.Project": "Research Projects",
+ // "relationships.isAuthorOf.Person": "Authors (persons)",
+ "relationships.isAuthorOf.Person": "Авторы (физические лица)",
- // "relationships.Publication.isOrgUnitOfPublication.OrgUnit": "Organizational Units",
- // TODO New key - Add a translation
- "relationships.Publication.isOrgUnitOfPublication.OrgUnit": "Organizational Units",
+ // "relationships.isAuthorOf.OrgUnit": "Authors (organizational units)",
+ "relationships.isAuthorOf.OrgUnit": "Авторы (организационные единицы)",
- // "relationships.Publication.isAuthorOfPublication.OrgUnit": "Authors (organizational units)",
- // TODO New key - Add a translation
- "relationships.Publication.isAuthorOfPublication.OrgUnit": "Authors (organizational units)",
+ // "relationships.isIssueOf": "Journal Issues",
+ "relationships.isIssueOf": "Выпуски журналов",
- // "relationships.Publication.isJournalIssueOfPublication.JournalIssue": "Journal Issue",
- // TODO New key - Add a translation
- "relationships.Publication.isJournalIssueOfPublication.JournalIssue": "Journal Issue",
+ // "relationships.isIssueOf.JournalIssue": "Journal Issue",
+ "relationships.isIssueOf.JournalIssue": "Выпуск журнала",
- // "relationships.Publication.isContributorOfPublication.Person": "Contributor",
- // TODO New key - Add a translation
- "relationships.Publication.isContributorOfPublication.Person": "Contributor",
+ // "relationships.isJournalIssueOf": "Journal Issue",
+ "relationships.isJournalIssueOf": "Выпуск журнала",
- // "relationships.Publication.isContributorOfPublication.OrgUnit": "Contributor (organizational units)",
- // TODO New key - Add a translation
- "relationships.Publication.isContributorOfPublication.OrgUnit": "Contributor (organizational units)",
+ // "relationships.isJournalOf": "Journals",
+ "relationships.isJournalOf": "Журналы",
- // "relationships.Person.isPublicationOfAuthor.Publication": "Publications",
- // TODO New key - Add a translation
- "relationships.Person.isPublicationOfAuthor.Publication": "Publications",
+ // "relationships.isJournalVolumeOf": "Journal Volume",
+ "relationships.isJournalVolumeOf": "Том журнала",
- // "relationships.Person.isProjectOfPerson.Project": "Research Projects",
- // TODO New key - Add a translation
- "relationships.Person.isProjectOfPerson.Project": "Research Projects",
+ // "relationships.isOrgUnitOf": "Organizational Units",
+ "relationships.isOrgUnitOf": "Организационные единицы",
- // "relationships.Person.isOrgUnitOfPerson.OrgUnit": "Organizational Units",
- // TODO New key - Add a translation
- "relationships.Person.isOrgUnitOfPerson.OrgUnit": "Organizational Units",
+ // "relationships.isPersonOf": "Authors",
+ "relationships.isPersonOf": "Авторы",
- // "relationships.Person.isPublicationOfContributor.Publication": "Publications (contributor to)",
- // TODO New key - Add a translation
- "relationships.Person.isPublicationOfContributor.Publication": "Publications (contributor to)",
+ // "relationships.isProjectOf": "Research Projects",
+ "relationships.isProjectOf": "Научные проекты",
- // "relationships.Project.isPublicationOfProject.Publication": "Publications",
- // TODO New key - Add a translation
- "relationships.Project.isPublicationOfProject.Publication": "Publications",
+ // "relationships.isPublicationOf": "Publications",
+ "relationships.isPublicationOf": "Публикации",
- // "relationships.Project.isPersonOfProject.Person": "Authors",
- // TODO New key - Add a translation
- "relationships.Project.isPersonOfProject.Person": "Authors",
+ // "relationships.isPublicationOfJournalIssue": "Articles",
+ "relationships.isPublicationOfJournalIssue": "Статьи",
- // "relationships.Project.isOrgUnitOfProject.OrgUnit": "Organizational Units",
- // TODO New key - Add a translation
- "relationships.Project.isOrgUnitOfProject.OrgUnit": "Organizational Units",
+ // "relationships.isSingleJournalOf": "Journal",
+ "relationships.isSingleJournalOf": "Журнал",
- // "relationships.Project.isFundingAgencyOfProject.OrgUnit": "Funder",
- // TODO New key - Add a translation
- "relationships.Project.isFundingAgencyOfProject.OrgUnit": "Funder",
+ // "relationships.isSingleVolumeOf": "Journal Volume",
+ "relationships.isSingleVolumeOf": "Том журнала",
- // "relationships.OrgUnit.isPublicationOfOrgUnit.Publication": "Organisation Publications",
- // TODO New key - Add a translation
- "relationships.OrgUnit.isPublicationOfOrgUnit.Publication": "Organisation Publications",
+ // "relationships.isVolumeOf": "Journal Volumes",
+ "relationships.isVolumeOf": "Тома журналов",
- // "relationships.OrgUnit.isPersonOfOrgUnit.Person": "Authors",
- // TODO New key - Add a translation
- "relationships.OrgUnit.isPersonOfOrgUnit.Person": "Authors",
+ // "relationships.isVolumeOf.JournalVolume": "Journal Volume",
+ "relationships.isVolumeOf.JournalVolume": "Том журнала",
- // "relationships.OrgUnit.isProjectOfOrgUnit.Project": "Research Projects",
- // TODO New key - Add a translation
- "relationships.OrgUnit.isProjectOfOrgUnit.Project": "Research Projects",
+ // "relationships.isContributorOf": "Contributors",
+ "relationships.isContributorOf": "Авторы",
- // "relationships.OrgUnit.isPublicationOfAuthor.Publication": "Authored Publications",
- // TODO New key - Add a translation
- "relationships.OrgUnit.isPublicationOfAuthor.Publication": "Authored Publications",
+ // "relationships.isContributorOf.OrgUnit": "Contributor (Organizational Unit)",
+ "relationships.isContributorOf.OrgUnit": "Автор (организационная единица)",
- // "relationships.OrgUnit.isPublicationOfContributor.Publication": "Publications (contributor to)",
- // TODO New key - Add a translation
- "relationships.OrgUnit.isPublicationOfContributor.Publication": "Publications (contributor to)",
+ // "relationships.isContributorOf.Person": "Contributor",
+ "relationships.isContributorOf.Person": "Автор",
- // "relationships.OrgUnit.isProjectOfFundingAgency.Project": "Research Projects (funder of)",
- // TODO New key - Add a translation
- "relationships.OrgUnit.isProjectOfFundingAgency.Project": "Research Projects (funder of)",
-
- // "relationships.JournalIssue.isJournalVolumeOfIssue.JournalVolume": "Journal Volume",
- // TODO New key - Add a translation
- "relationships.JournalIssue.isJournalVolumeOfIssue.JournalVolume": "Journal Volume",
-
- // "relationships.JournalIssue.isPublicationOfJournalIssue.Publication": "Publications",
- // TODO New key - Add a translation
- "relationships.JournalIssue.isPublicationOfJournalIssue.Publication": "Publications",
-
- // "relationships.JournalVolume.isJournalOfVolume.Journal": "Journals",
- // TODO New key - Add a translation
- "relationships.JournalVolume.isJournalOfVolume.Journal": "Journals",
-
- // "relationships.JournalVolume.isIssueOfJournalVolume.JournalIssue": "Journal Issue",
- // TODO New key - Add a translation
- "relationships.JournalVolume.isIssueOfJournalVolume.JournalIssue": "Journal Issue",
-
- // "relationships.Journal.isVolumeOfJournal.JournalVolume": "Journal Volume",
- // TODO New key - Add a translation
- "relationships.Journal.isVolumeOfJournal.JournalVolume": "Journal Volume",
+ // "relationships.isFundingAgencyOf.OrgUnit": "Funder",
+ "relationships.isFundingAgencyOf.OrgUnit": "Финансирующая организация",
// "repository.image.logo": "Repository logo",
"repository.image.logo": "Логотип репозитория",
@@ -7399,8 +6377,7 @@
// "resource-policies.form.eperson-group-list.select.btn": "Select",
"resource-policies.form.eperson-group-list.select.btn": "Выбрать",
- // "resource-policies.form.eperson-group-list.tab.eperson": "Search for an ePerson",
- // TODO Source message changed - Revise the translation
+ // "resource-policies.form.eperson-group-list.tab.eperson": "Search for a ePerson",
"resource-policies.form.eperson-group-list.tab.eperson": "Поиск пользователя",
// "resource-policies.form.eperson-group-list.tab.group": "Search for a group",
@@ -7511,54 +6488,6 @@
// "resource-policies.table.headers.title.for.collection": "Policies for Collection",
"resource-policies.table.headers.title.for.collection": "Политики для коллекции",
- // "RELATION.Person.researchoutputs.search.results.head": "Research Output",
- // TODO New key - Add a translation
- "RELATION.Person.researchoutputs.search.results.head": "Research Output",
-
- // "RELATION.Person.projects.search.results.head": "Projects",
- // TODO New key - Add a translation
- "RELATION.Person.projects.search.results.head": "Projects",
-
- // "RELATION.Project.researchoutputs.search.results.head": "Publications",
- // TODO New key - Add a translation
- "RELATION.Project.researchoutputs.search.results.head": "Publications",
-
- // "RELATION.Project.fundings.search.results.head": "Fundings",
- // TODO New key - Add a translation
- "RELATION.Project.fundings.search.results.head": "Fundings",
-
- // "RELATION.Project.projects.search.results.head": "Projects",
- // TODO New key - Add a translation
- "RELATION.Project.projects.search.results.head": "Projects",
-
- // "RELATION.OrgUnit.organizations.search.results.head": "Organizations",
- // TODO New key - Add a translation
- "RELATION.OrgUnit.organizations.search.results.head": "Organizations",
-
- // "RELATION.OrgUnit.rppublications.search.results.head": "Researchers Publications",
- // TODO New key - Add a translation
- "RELATION.OrgUnit.rppublications.search.results.head": "Researchers Publications",
-
- // "RELATION.OrgUnit.publications.search.results.head": "Publications",
- // TODO New key - Add a translation
- "RELATION.OrgUnit.publications.search.results.head": "Publications",
-
- // "RELATION.OrgUnit.rpprojects.search.results.head": "Researchers Projects",
- // TODO New key - Add a translation
- "RELATION.OrgUnit.rpprojects.search.results.head": "Researchers Projects",
-
- // "RELATION.OrgUnit.projects.search.results.head": "Projects",
- // TODO New key - Add a translation
- "RELATION.OrgUnit.projects.search.results.head": "Projects",
-
- // "RELATION.Project.researchoutputs.search.results.head": "Publications",
- // TODO New key - Add a translation
- "RELATION.Project.researchoutputs.search.results.head": "Publications",
-
- // "RELATION.OrgUnit.people.search.results.head": "People",
- // TODO New key - Add a translation
- "RELATION.OrgUnit.people.search.results.head": "People",
-
// "root.skip-to-content": "Skip to main content",
"root.skip-to-content": "Перейти к основному содержимому",
@@ -7609,9 +6538,6 @@
// "search.filters.applied.f.original_bundle_descriptions": "File description",
"search.filters.applied.f.original_bundle_descriptions": "Описание файла",
- // "search.filters.applied.f.has_geospatial_metadata": "Has geographical location",
- // TODO New key - Add a translation
- "search.filters.applied.f.has_geospatial_metadata": "Has geographical location",
// "search.filters.applied.f.itemtype": "Type",
"search.filters.applied.f.itemtype": "Тип",
@@ -7661,10 +6587,6 @@
// "search.filters.applied.operator.query": "",
"search.filters.applied.operator.query": "",
- // "search.filters.applied.f.point": "Coordinates",
- // TODO New key - Add a translation
- "search.filters.applied.f.point": "Coordinates",
-
// "search.filters.filter.title.head": "Title",
"search.filters.filter.title.head": "Название",
@@ -7704,14 +6626,6 @@
// "search.filters.filter.creativeDatePublished.label": "Search date published",
"search.filters.filter.creativeDatePublished.label": "Поиск по дате публикации",
- // "search.filters.filter.creativeDatePublished.min.label": "Start",
- // TODO New key - Add a translation
- "search.filters.filter.creativeDatePublished.min.label": "Start",
-
- // "search.filters.filter.creativeDatePublished.max.label": "End",
- // TODO New key - Add a translation
- "search.filters.filter.creativeDatePublished.max.label": "End",
-
// "search.filters.filter.creativeWorkEditor.head": "Editor",
"search.filters.filter.creativeWorkEditor.head": "Редактор",
@@ -7787,10 +6701,6 @@
// "search.filters.filter.original_bundle_filenames.head": "File name",
"search.filters.filter.original_bundle_filenames.head": "Имя файла",
- // "search.filters.filter.has_geospatial_metadata.head": "Has geographical location",
- // TODO New key - Add a translation
- "search.filters.filter.has_geospatial_metadata.head": "Has geographical location",
-
// "search.filters.filter.original_bundle_filenames.placeholder": "File name",
"search.filters.filter.original_bundle_filenames.placeholder": "Имя файла",
@@ -7878,14 +6788,6 @@
// "search.filters.filter.organizationFoundingDate.label": "Search date founded",
"search.filters.filter.organizationFoundingDate.label": "Поиск по дате основания",
- // "search.filters.filter.organizationFoundingDate.min.label": "Start",
- // TODO New key - Add a translation
- "search.filters.filter.organizationFoundingDate.min.label": "Start",
-
- // "search.filters.filter.organizationFoundingDate.max.label": "End",
- // TODO New key - Add a translation
- "search.filters.filter.organizationFoundingDate.max.label": "End",
-
// "search.filters.filter.scope.head": "Scope",
"search.filters.filter.scope.head": "Область",
@@ -7937,18 +6839,6 @@
// "search.filters.filter.supervisedBy.label": "Search Supervised By",
"search.filters.filter.supervisedBy.label": "Поиск по контролю",
- // "search.filters.filter.access_status.head": "Access type",
- // TODO New key - Add a translation
- "search.filters.filter.access_status.head": "Access type",
-
- // "search.filters.filter.access_status.placeholder": "Access type",
- // TODO New key - Add a translation
- "search.filters.filter.access_status.placeholder": "Access type",
-
- // "search.filters.filter.access_status.label": "Search by access type",
- // TODO New key - Add a translation
- "search.filters.filter.access_status.label": "Search by access type",
-
// "search.filters.entityType.JournalIssue": "Journal Issue",
"search.filters.entityType.JournalIssue": "Выпуск журнала",
@@ -7973,14 +6863,6 @@
// "search.filters.has_content_in_original_bundle.false": "No",
"search.filters.has_content_in_original_bundle.false": "Нет",
- // "search.filters.has_geospatial_metadata.true": "Yes",
- // TODO New key - Add a translation
- "search.filters.has_geospatial_metadata.true": "Yes",
-
- // "search.filters.has_geospatial_metadata.false": "No",
- // TODO New key - Add a translation
- "search.filters.has_geospatial_metadata.false": "No",
-
// "search.filters.discoverable.true": "No",
"search.filters.discoverable.true": "Нет",
@@ -8059,10 +6941,6 @@
// "search.results.empty": "Your search returned no results.",
"search.results.empty": "По вашему запросу нет результатов.",
- // "search.results.geospatial-map.empty": "No results on this page with geospatial locations",
- // TODO New key - Add a translation
- "search.results.geospatial-map.empty": "No results on this page with geospatial locations",
-
// "search.results.view-result": "View",
"search.results.view-result": "Просмотр",
@@ -8120,10 +6998,6 @@
// "search.view-switch.show-list": "Show as list",
"search.view-switch.show-list": "Показать в виде списка",
- // "search.view-switch.show-geospatialMap": "Show as map",
- // TODO New key - Add a translation
- "search.view-switch.show-geospatialMap": "Show as map",
-
// "selectable-list-item-control.deselect": "Deselect item",
"selectable-list-item-control.deselect": "Снять выделение с элемента",
@@ -8184,14 +7058,6 @@
// "sorting.person.birthDate.DESC": "Birth Date Descending",
"sorting.person.birthDate.DESC": "Дата рождения по убыванию",
- // "sorting.ownerselection.ASC": "Owner Relevance Ascending",
- // TODO New key - Add a translation
- "sorting.ownerselection.ASC": "Owner Relevance Ascending",
-
- // "sorting.ownerselection.DESC": "Owner Relevance Descending",
- // TODO New key - Add a translation
- "sorting.ownerselection.DESC": "Owner Relevance Descending",
-
// "statistics.title": "Statistics",
"statistics.title": "Статистика",
@@ -8234,10 +7100,6 @@
// "submission.edit.title": "Edit Submission",
"submission.edit.title": "Редактировать отправку",
- // "submission.edit.item.breadcrumbs": "Edit item",
- // TODO New key - Add a translation
- "submission.edit.item.breadcrumbs": "Edit item",
-
// "submission.general.cancel": "Cancel",
"submission.general.cancel": "Отмена",
@@ -8265,10 +7127,6 @@
// "submission.general.back.submit": "Back",
"submission.general.back.submit": "Назад",
- // "submission.general.info.invalid": "The submission is invalid, check missing fields",
- // TODO New key - Add a translation
- "submission.general.info.invalid": "The submission is invalid, check missing fields",
-
// "submission.general.info.saved": "Saved",
"submission.general.info.saved": "Сохранено",
@@ -8281,10 +7139,6 @@
// "submission.general.save-later": "Save for later",
"submission.general.save-later": "Сохранить для позже",
- // "submission.general.save-later.edit-item": "Save and return",
- // TODO New key - Add a translation
- "submission.general.save-later.edit-item": "Save and return",
-
// "submission.import-external.page.title": "Import metadata from an external source",
"submission.import-external.page.title": "Импорт метаданных из внешнего источника",
@@ -8300,8 +7154,8 @@
// "submission.import-external.title.JournalVolume": "Import a journal volume from an external source",
"submission.import-external.title.JournalVolume": "Импорт тома журнала из внешнего источника",
- // "submission.import-external.title.OrgUnit": "Импорт организационного подразделения из внешнего источника",
- "submission.import-external.title.OrgUnit": "Импорт организационного подразделения из внешнего источника",
+ // "submission.import-external.title.OrgUnit": "Import a publisher from an external source",
+ "submission.import-external.title.OrgUnit": "Импорт издателя из внешнего источника",
// "submission.import-external.title.Person": "Import a person from an external source",
"submission.import-external.title.Person": "Импорт человека из внешнего источника",
@@ -8348,10 +7202,6 @@
// "submission.import-external.source.datacite": "DataCite",
"submission.import-external.source.datacite": "DataCite",
- // "submission.import-external.source.dataciteProject": "DataCite",
- // TODO New key - Add a translation
- "submission.import-external.source.dataciteProject": "DataCite",
-
// "submission.import-external.source.doi": "DOI",
"submission.import-external.source.doi": "DOI",
@@ -8409,38 +7259,6 @@
// "submission.import-external.source.ror": "Research Organization Registry (ROR)",
"submission.import-external.source.ror": "Реестр научных организаций (ROR)",
- // "submission.import-external.source.openalexPublication": "OpenAlex Search by Title",
- // TODO New key - Add a translation
- "submission.import-external.source.openalexPublication": "OpenAlex Search by Title",
-
- // "submission.import-external.source.openalexPublicationByAuthorId": "OpenAlex Search by Author ID",
- // TODO New key - Add a translation
- "submission.import-external.source.openalexPublicationByAuthorId": "OpenAlex Search by Author ID",
-
- // "submission.import-external.source.openalexPublicationByDOI": "OpenAlex Search by DOI",
- // TODO New key - Add a translation
- "submission.import-external.source.openalexPublicationByDOI": "OpenAlex Search by DOI",
-
- // "submission.import-external.source.openalexPerson": "OpenAlex Search by name",
- // TODO New key - Add a translation
- "submission.import-external.source.openalexPerson": "OpenAlex Search by name",
-
- // "submission.import-external.source.openalexJournal": "OpenAlex Journals",
- // TODO New key - Add a translation
- "submission.import-external.source.openalexJournal": "OpenAlex Journals",
-
- // "submission.import-external.source.openalexInstitution": "OpenAlex Institutions",
- // TODO New key - Add a translation
- "submission.import-external.source.openalexInstitution": "OpenAlex Institutions",
-
- // "submission.import-external.source.openalexPublisher": "OpenAlex Publishers",
- // TODO New key - Add a translation
- "submission.import-external.source.openalexPublisher": "OpenAlex Publishers",
-
- // "submission.import-external.source.openalexFunder": "OpenAlex Funders",
- // TODO New key - Add a translation
- "submission.import-external.source.openalexFunder": "OpenAlex Funders",
-
// "submission.import-external.preview.title": "Item Preview",
"submission.import-external.preview.title": "Предварительный просмотр элемента",
@@ -8690,10 +7508,6 @@
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalIssue": "Local Journal Issues ({{ count }})",
"submission.sections.describe.relationship-lookup.search-tab.tab-title.JournalIssue": "Локальные выпуски журналов ({{ count }})",
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfIssue": "Local Journal Volumes ({{ count }})",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfIssue": "Local Journal Volumes ({{ count }})",
-
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfPublication": "Local Journal Volumes ({{ count }})",
"submission.sections.describe.relationship-lookup.search-tab.tab-title.isJournalVolumeOfPublication": "Локальные тома журналов ({{ count }})",
@@ -8742,26 +7556,6 @@
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournalIssn": "Sherpa Journals by ISSN ({{ count }})",
"submission.sections.describe.relationship-lookup.search-tab.tab-title.sherpaJournalIssn": "Журналы Sherpa по ISSN ({{ count }})",
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPerson": "OpenAlex ({{ count }})",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPerson": "OpenAlex ({{ count }})",
-
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexInstitution": "OpenAlex Search by Institution ({{ count }})",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexInstitution": "OpenAlex Search by Institution ({{ count }})",
-
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPublisher": "OpenAlex Search by Publisher ({{ count }})",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexPublisher": "OpenAlex Search by Publisher ({{ count }})",
-
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexFunder": "OpenAlex Search by Funder ({{ count }})",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.search-tab.tab-title.openalexFunder": "OpenAlex Search by Funder ({{ count }})",
-
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.dataciteProject": "DataCite Search by Project ({{ count }})",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.search-tab.tab-title.dataciteProject": "DataCite Search by Project ({{ count }})",
-
// "submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfPublication": "Search for Funding Agencies",
"submission.sections.describe.relationship-lookup.search-tab.tab-title.isFundingAgencyOfPublication": "Поиск финансирующих агентств",
@@ -8792,10 +7586,6 @@
// "submission.sections.describe.relationship-lookup.title.isFundingAgencyOfProject": "Funder of the Project",
"submission.sections.describe.relationship-lookup.title.isFundingAgencyOfProject": "Финансирующая организация проекта",
- // "submission.sections.describe.relationship-lookup.title.isPersonOfProject": "Person of the Project",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.title.isPersonOfProject": "Person of the Project",
-
// "submission.sections.describe.relationship-lookup.selection-tab.search-form.placeholder": "Search...",
"submission.sections.describe.relationship-lookup.selection-tab.search-form.placeholder": "Поиск...",
@@ -8811,10 +7601,6 @@
// "submission.sections.describe.relationship-lookup.title.JournalIssue": "Journal Issues",
"submission.sections.describe.relationship-lookup.title.JournalIssue": "Выпуски журнала",
- // "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfIssue": "Journal Volumes",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfIssue": "Journal Volumes",
-
// "submission.sections.describe.relationship-lookup.title.isJournalVolumeOfPublication": "Journal Volumes",
"submission.sections.describe.relationship-lookup.title.isJournalVolumeOfPublication": "Тома журнала",
@@ -8878,10 +7664,6 @@
// "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalOfPublication": "Selected Journals",
"submission.sections.describe.relationship-lookup.selection-tab.title.isJournalOfPublication": "Выбранные журналы",
- // "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfIssue": "Selected Journal Volume",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfIssue": "Selected Journal Volume",
-
// "submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfPublication": "Selected Journal Volume",
"submission.sections.describe.relationship-lookup.selection-tab.title.isJournalVolumeOfPublication": "Выбранный том журнала",
@@ -8972,26 +7754,6 @@
// "submission.sections.describe.relationship-lookup.selection-tab.title.ror": "Search Results",
"submission.sections.describe.relationship-lookup.selection-tab.title.ror": "Результаты поиска",
- // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPerson": "Search Results",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPerson": "Search Results",
-
- // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexInstitution": "Search Results",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.selection-tab.title.openalexInstitution": "Search Results",
-
- // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPublisher": "Search Results",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.selection-tab.title.openalexPublisher": "Search Results",
-
- // "submission.sections.describe.relationship-lookup.selection-tab.title.openalexFunder": "Search Results",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.selection-tab.title.openalexFunder": "Search Results",
-
- // "submission.sections.describe.relationship-lookup.selection-tab.title.dataciteProject": "Search Results",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.selection-tab.title.dataciteProject": "Search Results",
-
// "submission.sections.describe.relationship-lookup.selection-tab.title": "Search Results",
"submission.sections.describe.relationship-lookup.selection-tab.title": "Результаты поиска",
@@ -9037,10 +7799,6 @@
// "submission.sections.general.deposit_error_notice": "There was an issue when submitting the item, please try again later.",
"submission.sections.general.deposit_error_notice": "Произошла ошибка при отправке элемента, пожалуйста, попробуйте позже.",
- // "submission.sections.general.invalid_state_error": "Cannot save current changes, mandatory fields are missing. Please resolve problems and save again later.",
- // TODO New key - Add a translation
- "submission.sections.general.invalid_state_error": "Cannot save current changes, mandatory fields are missing. Please resolve problems and save again later.",
-
// "submission.sections.general.deposit_success_notice": "Submission deposited successfully.",
"submission.sections.general.deposit_success_notice": "Отправка успешно сохранена.",
@@ -9101,10 +7859,6 @@
// "submission.sections.submit.progressbar.CClicense": "Creative commons license",
"submission.sections.submit.progressbar.CClicense": "Лицензия Creative Commons",
- // "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url",
- // TODO New key - Add a translation
- "submission.sections.submit.progressbar.CustomUrlStep": "Custom Url",
-
// "submission.sections.submit.progressbar.describe.recycle": "Recycle",
"submission.sections.submit.progressbar.describe.recycle": "Переработать",
@@ -9126,10 +7880,6 @@
// "submission.sections.submit.progressbar.license": "Deposit license",
"submission.sections.submit.progressbar.license": "Лицензия на депозит",
- // "submission.sections.submit.progressbar.describe.owner": "Owner",
- // TODO New key - Add a translation
- "submission.sections.submit.progressbar.describe.owner": "Owner",
-
// "submission.sections.submit.progressbar.sherpapolicy": "Sherpa policies",
"submission.sections.submit.progressbar.sherpapolicy": "Политики Sherpa",
@@ -9274,18 +8024,6 @@
// "submission.sections.upload.upload-successful": "Upload successful",
"submission.sections.upload.upload-successful": "Загрузка прошла успешно",
- // "submission.sections.custom-url.label.previous-urls": "Previous Urls",
- // TODO New key - Add a translation
- "submission.sections.custom-url.label.previous-urls": "Previous Urls",
-
- // "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ",
- // TODO New key - Add a translation
- "submission.sections.custom-url.alert.info": "Define here a custom URL which will be used to reach the item instead of using an internal randomly generated UUID identifier. ",
-
- // "submission.sections.custom-url.url.placeholder": "Custom URL",
- // TODO New key - Add a translation
- "submission.sections.custom-url.url.placeholder": "Custom URL",
-
// "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.",
"submission.sections.accesses.form.discoverable-description": "Если отмечено, элемент будет обнаруживаться при поиске/просмотре. Если не отмечено, элемент будет доступен только по прямой ссылке и не появится в поиске/просмотре.",
@@ -9427,8 +8165,7 @@
// "submission.sections.sherpa.record.information.uri": "URI",
"submission.sections.sherpa.record.information.uri": "URI",
- // "submission.sections.sherpa.error.message": "There was an error retrieving sherpa information",
- // TODO Source message changed - Revise the translation
+ // "submission.sections.sherpa.error.message": "There was an error retrieving sherpa informations",
"submission.sections.sherpa.error.message": "Произошла ошибка при получении информации Sherpa",
// "submission.submit.breadcrumbs": "New submission",
@@ -9500,8 +8237,7 @@
// "submission.workflow.tasks.claimed.reject.submit": "Reject",
"submission.workflow.tasks.claimed.reject.submit": "Отклонить",
- // "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 Source message changed - Revise the translation
+ // "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.",
"submission.workflow.tasks.claimed.reject_help": "Если вы проверили элемент и считаете, что он не подходит для включения в коллекцию, выберите «Отклонить». Затем вас попросят указать причину непригодности и необходимость изменений для повторной отправки.",
// "submission.workflow.tasks.claimed.return": "Return to pool",
@@ -9576,10 +8312,6 @@
// "subscriptions.tooltip": "Subscribe",
"subscriptions.tooltip": "Подписаться",
- // "subscriptions.manage": "Manage Subscription",
- // TODO New key - Add a translation
- "subscriptions.manage": "Manage Subscription",
-
// "subscriptions.modal.title": "Subscriptions",
"subscriptions.modal.title": "Подписки",
@@ -9652,8 +8384,7 @@
// "subscriptions.table.not-available-message": "The subscribed item has been deleted, or you don't currently have the permission to view it",
"subscriptions.table.not-available-message": "Подписанный элемент был удалён или у вас нет прав для его просмотра.",
- // "subscriptions.table.empty.message": "You do not have any subscriptions at this time. To subscribe to email updates for a community or collection, use the subscription button on the object's page.",
- // TODO Source message changed - Revise the translation
+ // "subscriptions.table.empty.message": "You do not have any subscriptions at this time. To subscribe to email updates for a Community or Collection, use the subscription button on the object's page.",
"subscriptions.table.empty.message": "У вас нет подписок. Чтобы подписаться на обновления по электронной почте для сообщества или коллекции, используйте кнопку подписки на странице объекта.",
// "thumbnail.default.alt": "Thumbnail Image",
@@ -9749,10 +8480,6 @@
// "workflow.search.results.head": "Workflow tasks",
"workflow.search.results.head": "Задачи рабочего процесса",
- // "otherWorkspace.search.results.head": "Shared workspace",
- // TODO New key - Add a translation
- "otherWorkspace.search.results.head": "Shared workspace",
-
// "supervision.search.results.head": "Workflow and Workspace tasks",
"supervision.search.results.head": "Задачи рабочего процесса и рабочего пространства",
@@ -10281,10 +9008,6 @@
// "home.recent-submissions.head": "Recent Submissions",
"home.recent-submissions.head": "Последние отправления",
- // "authority-confidence.search-label": "Search",
- // TODO New key - Add a translation
- "authority-confidence.search-label": "Search",
-
// "listable-notification-object.default-message": "This object couldn't be retrieved",
"listable-notification-object.default-message": "Не удалось получить этот объект",
@@ -10503,7 +9226,6 @@
"ldn-registered-services.new": "НОВЫЙ",
// "ldn-registered-services.new.breadcrumbs": "Registered Services",
"ldn-registered-services.new.breadcrumbs": "Зарегистрированные сервисы",
-
// "ldn-service.overview.table.enabled": "Enabled",
"ldn-service.overview.table.enabled": "Включено",
// "ldn-service.overview.table.disabled": "Disabled",
@@ -10513,6 +9235,7 @@
// "ldn-service.overview.table.clickToDisable": "Click to disable",
"ldn-service.overview.table.clickToDisable": "Нажмите, чтобы отключить",
+
// "ldn-edit-registered-service.title": "Edit Service",
"ldn-edit-registered-service.title": "Редактировать сервис",
// "ldn-create-service.title": "Create service",
@@ -10560,6 +9283,7 @@
// "ldn-service.form.label.placeholder.default-select": "Select a pattern",
"ldn-service.form.label.placeholder.default-select": "Выберите шаблон",
+
// "ldn-service.form.pattern.ack-accept.label": "Acknowledge and Accept",
"ldn-service.form.pattern.ack-accept.label": "Подтвердить и принять",
// "ldn-service.form.pattern.ack-accept.description": "This pattern is used to acknowledge and accept a request (offer). It implies an intention to act on the request.",
@@ -10567,6 +9291,7 @@
// "ldn-service.form.pattern.ack-accept.category": "Acknowledgements",
"ldn-service.form.pattern.ack-accept.category": "Подтверждения",
+
// "ldn-service.form.pattern.ack-reject.label": "Acknowledge and Reject",
"ldn-service.form.pattern.ack-reject.label": "Подтвердить и отклонить",
// "ldn-service.form.pattern.ack-reject.description": "This pattern is used to acknowledge and reject a request (offer). It signifies no further action regarding the request.",
@@ -10574,6 +9299,7 @@
// "ldn-service.form.pattern.ack-reject.category": "Acknowledgements",
"ldn-service.form.pattern.ack-reject.category": "Подтверждения",
+
// "ldn-service.form.pattern.ack-tentative-accept.label": "Acknowledge and Tentatively Accept",
"ldn-service.form.pattern.ack-tentative-accept.label": "Подтвердить и предварительно принять",
// "ldn-service.form.pattern.ack-tentative-accept.description": "This pattern is used to acknowledge and tentatively accept a request (offer). It implies an intention to act, which may change.",
@@ -10588,6 +9314,7 @@
// "ldn-service.form.pattern.ack-tentative-reject.category": "Acknowledgements",
"ldn-service.form.pattern.ack-tentative-reject.category": "Подтверждения",
+
// "ldn-service.form.pattern.announce-endorsement.label": "Announce Endorsement",
"ldn-service.form.pattern.announce-endorsement.label": "Объявить об одобрении",
// "ldn-service.form.pattern.announce-endorsement.description": "This pattern is used to announce the existence of an endorsement, referencing the endorsed resource.",
@@ -10602,6 +9329,7 @@
// "ldn-service.form.pattern.announce-ingest.category": "Announcements",
"ldn-service.form.pattern.announce-ingest.category": "Объявления",
+
// "ldn-service.form.pattern.announce-relationship.label": "Announce Relationship",
"ldn-service.form.pattern.announce-relationship.label": "Объявить о взаимосвязи",
// "ldn-service.form.pattern.announce-relationship.description": "This pattern is used to announce a relationship between two resources.",
@@ -10609,6 +9337,7 @@
// "ldn-service.form.pattern.announce-relationship.category": "Announcements",
"ldn-service.form.pattern.announce-relationship.category": "Объявления",
+
// "ldn-service.form.pattern.announce-review.label": "Announce Review",
"ldn-service.form.pattern.announce-review.label": "Объявить о рецензии",
// "ldn-service.form.pattern.announce-review.description": "This pattern is used to announce the existence of a review, referencing the reviewed resource.",
@@ -10616,6 +9345,7 @@
// "ldn-service.form.pattern.announce-review.category": "Announcements",
"ldn-service.form.pattern.announce-review.category": "Объявления",
+
// "ldn-service.form.pattern.announce-service-result.label": "Announce Service Result",
"ldn-service.form.pattern.announce-service-result.label": "Объявить о результате сервиса",
// "ldn-service.form.pattern.announce-service-result.description": "This pattern is used to announce the existence of a 'service result', referencing the relevant resource.",
@@ -10623,6 +9353,7 @@
// "ldn-service.form.pattern.announce-service-result.category": "Announcements",
"ldn-service.form.pattern.announce-service-result.category": "Объявления",
+
// "ldn-service.form.pattern.request-endorsement.label": "Request Endorsement",
"ldn-service.form.pattern.request-endorsement.label": "Запросить одобрение",
// "ldn-service.form.pattern.request-endorsement.description": "This pattern is used to request endorsement of a resource owned by the origin system.",
@@ -10637,6 +9368,7 @@
// "ldn-service.form.pattern.request-ingest.category": "Requests",
"ldn-service.form.pattern.request-ingest.category": "Запросы",
+
// "ldn-service.form.pattern.request-review.label": "Request Review",
"ldn-service.form.pattern.request-review.label": "Запросить рецензию",
// "ldn-service.form.pattern.request-review.description": "This pattern is used to request a review of a resource owned by the origin system.",
@@ -10644,6 +9376,7 @@
// "ldn-service.form.pattern.request-review.category": "Requests",
"ldn-service.form.pattern.request-review.category": "Запросы",
+
// "ldn-service.form.pattern.undo-offer.label": "Undo Offer",
"ldn-service.form.pattern.undo-offer.label": "Отменить предложение",
// "ldn-service.form.pattern.undo-offer.description": "This pattern is used to undo (retract) an offer previously made.",
@@ -10674,8 +9407,8 @@
// "ldn-new-service.form.label.inboundPattern": "Supported Pattern",
"ldn-new-service.form.label.inboundPattern": "Поддерживаемый шаблон",
- // "ldn-new-service.form.label.addPattern": "+ Add more",
- "ldn-new-service.form.label.addPattern": "+ Добавить ещё",
+ // "ldn-new-service.form.label.addPattern": "Add more",
+ "ldn-new-service.form.label.addPattern": "Добавить ещё",
// "ldn-new-service.form.label.removeItemFilter": "Remove",
"ldn-new-service.form.label.removeItemFilter": "Удалить",
// "ldn-register-new-service.breadcrumbs": "New Service",
@@ -10774,10 +9507,6 @@
// "item.page.endorsement": "Endorsement",
"item.page.endorsement": "Подтверждение",
- // "item.page.places": "Related places",
- // TODO New key - Add a translation
- "item.page.places": "Related places",
-
// "item.page.review": "Review",
"item.page.review": "Обзор",
@@ -10798,15 +9527,15 @@
// "quality-assurance.topics.description-with-target": "Below you can see all the topics received from the subscriptions to {{source}} in regards to the",
"quality-assurance.topics.description-with-target": "Ниже вы можете увидеть все темы, полученные из подписок на {{source}} по поводу",
+
// "quality-assurance.events.description": "Below the list of all the suggestions for the selected topic {{topic}}, related to {{source}}.",
"quality-assurance.events.description": "Ниже список всех предложений по выбранной теме {{topic}}, связанной с {{source}}.",
// "quality-assurance.events.description-with-topic-and-target": "Below the list of all the suggestions for the selected topic {{topic}}, related to {{source}} and ",
"quality-assurance.events.description-with-topic-and-target": "Ниже список всех предложений по выбранной теме {{topic}}, связанной с {{source}} и ",
- // "quality-assurance.event.table.event.message.serviceUrl": "Actor:",
- // TODO New key - Add a translation
- "quality-assurance.event.table.event.message.serviceUrl": "Actor:",
+ // "quality-assurance.event.table.event.message.serviceUrl": "Service URL:",
+ "quality-assurance.event.table.event.message.serviceUrl": "URL услуги:",
// "quality-assurance.event.table.event.message.link": "Link:",
"quality-assurance.event.table.event.message.link": "Ссылка:",
@@ -10895,20 +9624,13 @@
// "error.validation.coarnotify.invalidfilter": "Invalid filter, try to select another service or none.",
"error.validation.coarnotify.invalidfilter": "Недопустимый фильтр, попробуйте выбрать другой сервис или не выбирать.",
- // "request-status-alert-box.accepted": "The requested {{ offerType }} for {{ serviceName }} has been taken in charge.",
- // TODO Source message changed - Revise the translation
+ // "request-status-alert-box.accepted": "The requested {{ offerType }} for {{ serviceName }} has been taken in charge.",
"request-status-alert-box.accepted": "Запрошенный {{ offerType }} для {{ serviceName }} был принят.",
- // "request-status-alert-box.rejected": "The requested {{ offerType }} for {{ serviceName }} has been rejected.",
- // TODO Source message changed - Revise the translation
+ // "request-status-alert-box.rejected": "The requested {{ offerType }} for {{ serviceName }} has been rejected.",
"request-status-alert-box.rejected": "Запрошенный {{ offerType }} для {{ serviceName }} был отклонён.",
- // "request-status-alert-box.tentative_rejected": "The requested {{ offerType }} for {{ serviceName }} has been tentatively rejected. Revisions are required",
- // TODO New key - Add a translation
- "request-status-alert-box.tentative_rejected": "The requested {{ offerType }} for {{ serviceName }} has been tentatively rejected. Revisions are required",
-
- // "request-status-alert-box.requested": "The requested {{ offerType }} for {{ serviceName }} is pending.",
- // TODO Source message changed - Revise the translation
+ // "request-status-alert-box.requested": "The requested {{ offerType }} for {{ serviceName }} is pending.",
"request-status-alert-box.requested": "Запрошенный {{ offerType }} для {{ serviceName }} находится в ожидании.",
// "ldn-service-button-mark-inbound-deletion": "Mark supported pattern for deletion",
@@ -10932,14 +9654,6 @@
// "ldn-service-overview-close-modal": "Close modal",
"ldn-service-overview-close-modal": "Закрыть модальное окно",
- // "ldn-service-usesActorEmailId": "Requires actor email in notifications",
- // TODO New key - Add a translation
- "ldn-service-usesActorEmailId": "Requires actor email in notifications",
-
- // "ldn-service-usesActorEmailId-description": "If enabled, initial notifications sent will include the submitter email rather than the repository URL. This is usually the case for endorsement or review services.",
- // TODO New key - Add a translation
- "ldn-service-usesActorEmailId-description": "If enabled, initial notifications sent will include the submitter email rather than the repository URL. This is usually the case for endorsement or review services.",
-
// "a-common-or_statement.label": "Item type is Journal Article or Dataset",
"a-common-or_statement.label": "Тип элемента — статья журнала или набор данных",
@@ -10955,6 +9669,8 @@
// "doi-filter.label": "DOI filter",
"doi-filter.label": "Фильтр DOI",
+
+
// "driver-document-type_condition.label": "Document type equals driver",
"driver-document-type_condition.label": "Тип документа равен driver",
@@ -11054,6 +9770,7 @@
// "admin-notify-logs.NOTIFY.incoming.untrusted": "Currently displaying: Untrusted notifications",
"admin-notify-logs.NOTIFY.incoming.untrusted": "Сейчас отображаются: Недоверенные уведомления",
+
// "admin-notify-dashboard.NOTIFY.incoming.untrusted": "Untrusted",
"admin-notify-dashboard.NOTIFY.incoming.untrusted": "Недоверенный",
@@ -11132,16 +9849,13 @@
// "search.filters.applied.f.notifyRelation": "Notify Relation",
"search.filters.applied.f.notifyRelation": "Уведомление о связи",
- // "search.filters.applied.f.access_status": "Access type",
- // TODO New key - Add a translation
- "search.filters.applied.f.access_status": "Access type",
-
// "search.filters.filter.queue_last_start_time.head": "Last processing time ",
"search.filters.filter.queue_last_start_time.head": "Время последней обработки ",
// "search.filters.filter.queue_last_start_time.min.label": "Min range",
"search.filters.filter.queue_last_start_time.min.label": "Минимальный диапазон",
+
// "search.filters.filter.queue_last_start_time.max.label": "Max range",
"search.filters.filter.queue_last_start_time.max.label": "Максимальный диапазон",
@@ -11495,34 +10209,28 @@
// "form.date-picker.placeholder.year": "Year",
// TODO New key - Add a translation
- "form.date-picker.placeholder.year": "Year",
+ "form.date-picker.placeholder.year": "Год",
// "form.date-picker.placeholder.month": "Month",
// TODO New key - Add a translation
- "form.date-picker.placeholder.month": "Month",
+ "form.date-picker.placeholder.month": "Месяц",
// "form.date-picker.placeholder.day": "Day",
// TODO New key - Add a translation
- "form.date-picker.placeholder.day": "Day",
-
- // "item.page.license.title": "Rights and licensing",
- // TODO New key - Add a translation
- "item.page.license.title": "Rights and licensing",
+ "form.date-picker.placeholder.day": "День",
// "item.page.cc.license.title": "Creative Commons license",
"item.page.cc.license.title": "Лицензия Creative Commons",
- // "item.page.cc.license.disclaimer": "Except where otherwise noted, this item's license is described as",
- // TODO Source message changed - Revise the translation
+ // "item.page.cc.license.disclaimer": "Except where otherwised noted, this item's license is described as",
"item.page.cc.license.disclaimer": "Если не указано иное, лицензия этого элемента описана как",
+ // "browse.search-form.placeholder": "Search the repository",
+ "browse.search-form.placeholder": "Поиск в репозитории",
+
// "file-download-link.download": "Download ",
"file-download-link.download": "Скачать ",
- // "file-download-button.download": "Download",
- // TODO New key - Add a translation
- "file-download-button.download": "Download",
-
// "register-page.registration.aria.label": "Enter your e-mail address",
"register-page.registration.aria.label": "Введите адрес электронной почты",
@@ -11532,573 +10240,30 @@
// "search-facet-option.update.announcement": "The page will be reloaded. Filter {{ filter }} is selected.",
"search-facet-option.update.announcement": "Страница будет перезагружена. Выбран фильтр {{ filter }}.",
+
// "live-region.ordering.instructions": "Press spacebar to reorder {{ itemName }}.",
// TODO New key - Add a translation
- "live-region.ordering.instructions": "Press spacebar to reorder {{ itemName }}.",
+ "live-region.ordering.instructions": "Нажмите пробел, чтобы изменить порядок {{ itemName }}.",
- // "live-region.ordering.status": "{{ itemName }}, grabbed. Current position in list: {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.",
+ // "live-region.ordering.status": "{{ itemName }}, grabbed. Current position in list: {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.",
// TODO New key - Add a translation
- "live-region.ordering.status": "{{ itemName }}, grabbed. Current position in list: {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.",
+ "live-region.ordering.status": "{{ itemName }}, захвачено. Текущая позиция в списке: {{ index }} из {{ length }}. Нажимайте клавиши со стрелками вверх и вниз, чтобы изменить положение, пробел для удаления, Escape для отмены.",
// "live-region.ordering.moved": "{{ itemName }}, moved to position {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.",
// TODO New key - Add a translation
- "live-region.ordering.moved": "{{ itemName }}, moved to position {{ index }} of {{ length }}. Press up and down arrow keys to change position, SpaceBar to drop, Escape to cancel.",
+ "live-region.ordering.moved": "{{ itemName }} перемещен в позицию {{ index }} на {{ length }}. Нажимайте клавиши со стрелками вверх и вниз, чтобы изменить положение, пробел, чтобы опустить, Escape, чтобы отменить.",
// "live-region.ordering.dropped": "{{ itemName }}, dropped at position {{ index }} of {{ length }}.",
// TODO New key - Add a translation
- "live-region.ordering.dropped": "{{ itemName }}, dropped at position {{ index }} of {{ length }}.",
+ "live-region.ordering.dropped": "{{ itemName }}, перемещен в позицию {{ index }} длины {{ length }}.",
// "dynamic-form-array.sortable-list.label": "Sortable list",
// TODO New key - Add a translation
- "dynamic-form-array.sortable-list.label": "Sortable list",
-
- // "external-login.component.or": "or",
- // TODO New key - Add a translation
- "external-login.component.or": "or",
-
- // "external-login.confirmation.header": "Information needed to complete the login process",
- // TODO New key - Add a translation
- "external-login.confirmation.header": "Information needed to complete the login process",
-
- // "external-login.noEmail.informationText": "The information received from {{authMethod}} are not sufficient to complete the login process. Please provide the missing information below, or login via a different method to associate your {{authMethod}} to an existing account.",
- // TODO New key - Add a translation
- "external-login.noEmail.informationText": "The information received from {{authMethod}} are not sufficient to complete the login process. Please provide the missing information below, or login via a different method to associate your {{authMethod}} to an existing account.",
-
- // "external-login.haveEmail.informationText": "It seems that you have not yet an account in this system. If this is the case, please confirm the data received from {{authMethod}} and a new account will be created for you. Otherwise, if you already have an account in the system, please update the email address to match the one already in use in the system or login via a different method to associate your {{authMethod}} to your existing account.",
- // TODO New key - Add a translation
- "external-login.haveEmail.informationText": "It seems that you have not yet an account in this system. If this is the case, please confirm the data received from {{authMethod}} and a new account will be created for you. Otherwise, if you already have an account in the system, please update the email address to match the one already in use in the system or login via a different method to associate your {{authMethod}} to your existing account.",
-
- // "external-login.confirm-email.header": "Confirm or update email",
- // TODO New key - Add a translation
- "external-login.confirm-email.header": "Confirm or update email",
-
- // "external-login.confirmation.email-required": "Email is required.",
- // TODO New key - Add a translation
- "external-login.confirmation.email-required": "Email is required.",
-
- // "external-login.confirmation.email-label": "User Email",
- // TODO New key - Add a translation
- "external-login.confirmation.email-label": "User Email",
-
- // "external-login.confirmation.email-invalid": "Invalid email format.",
- // TODO New key - Add a translation
- "external-login.confirmation.email-invalid": "Invalid email format.",
-
- // "external-login.confirm.button.label": "Confirm this email",
- // TODO New key - Add a translation
- "external-login.confirm.button.label": "Confirm this email",
-
- // "external-login.confirm-email-sent.header": "Confirmation email sent",
- // TODO New key - Add a translation
- "external-login.confirm-email-sent.header": "Confirmation email sent",
-
- // "external-login.confirm-email-sent.info": " We have sent an email to the provided address to validate your input.
Please follow the instructions in the email to complete the login process.",
- // TODO New key - Add a translation
- "external-login.confirm-email-sent.info": " We have sent an email to the provided address to validate your input.
Please follow the instructions in the email to complete the login process.",
-
- // "external-login.provide-email.header": "Provide email",
- // TODO New key - Add a translation
- "external-login.provide-email.header": "Provide email",
-
- // "external-login.provide-email.button.label": "Send Verification link",
- // TODO New key - Add a translation
- "external-login.provide-email.button.label": "Send Verification link",
-
- // "external-login-validation.review-account-info.header": "Review your account information",
- // TODO New key - Add a translation
- "external-login-validation.review-account-info.header": "Review your account information",
-
- // "external-login-validation.review-account-info.info": "The information received from ORCID differs from the one recorded in your profile.
Please review them and decide if you want to update any of them.After saving you will be redirected to your profile page.",
- // TODO New key - Add a translation
- "external-login-validation.review-account-info.info": "The information received from ORCID differs from the one recorded in your profile.
Please review them and decide if you want to update any of them.After saving you will be redirected to your profile page.",
-
- // "external-login-validation.review-account-info.table.header.information": "Information",
- // TODO New key - Add a translation
- "external-login-validation.review-account-info.table.header.information": "Information",
-
- // "external-login-validation.review-account-info.table.header.received-value": "Received value",
- // TODO New key - Add a translation
- "external-login-validation.review-account-info.table.header.received-value": "Received value",
-
- // "external-login-validation.review-account-info.table.header.current-value": "Current value",
- // TODO New key - Add a translation
- "external-login-validation.review-account-info.table.header.current-value": "Current value",
-
- // "external-login-validation.review-account-info.table.header.action": "Override",
- // TODO New key - Add a translation
- "external-login-validation.review-account-info.table.header.action": "Override",
-
- // "external-login-validation.review-account-info.table.row.not-applicable": "N/A",
- // TODO New key - Add a translation
- "external-login-validation.review-account-info.table.row.not-applicable": "N/A",
-
- // "on-label": "ON",
- // TODO New key - Add a translation
- "on-label": "ON",
-
- // "off-label": "OFF",
- // TODO New key - Add a translation
- "off-label": "OFF",
+ "dynamic-form-array.sortable-list.label": "Сортируемый список",
- // "review-account-info.merge-data.notification.success": "Your account information has been updated successfully",
- // TODO New key - Add a translation
- "review-account-info.merge-data.notification.success": "Your account information has been updated successfully",
-
- // "review-account-info.merge-data.notification.error": "Something went wrong while updating your account information",
- // TODO New key - Add a translation
- "review-account-info.merge-data.notification.error": "Something went wrong while updating your account information",
-
- // "review-account-info.alert.error.content": "Something went wrong. Please try again later.",
- // TODO New key - Add a translation
- "review-account-info.alert.error.content": "Something went wrong. Please try again later.",
-
- // "external-login-page.provide-email.notifications.error": "Something went wrong.Email address was omitted or the operation is not valid.",
- // TODO New key - Add a translation
- "external-login-page.provide-email.notifications.error": "Something went wrong.Email address was omitted or the operation is not valid.",
-
- // "external-login.error.notification": "There was an error while processing your request. Please try again later.",
- // TODO New key - Add a translation
- "external-login.error.notification": "There was an error while processing your request. Please try again later.",
-
- // "external-login.connect-to-existing-account.label": "Connect to an existing user",
- // TODO New key - Add a translation
- "external-login.connect-to-existing-account.label": "Connect to an existing user",
-
- // "external-login.modal.label.close": "Close",
- // TODO New key - Add a translation
- "external-login.modal.label.close": "Close",
-
- // "external-login-page.provide-email.create-account.notifications.error.header": "Something went wrong",
- // TODO New key - Add a translation
- "external-login-page.provide-email.create-account.notifications.error.header": "Something went wrong",
-
- // "external-login-page.provide-email.create-account.notifications.error.content": "Please check again your email address and try again.",
- // TODO New key - Add a translation
- "external-login-page.provide-email.create-account.notifications.error.content": "Please check again your email address and try again.",
-
- // "external-login-page.confirm-email.create-account.notifications.error.no-netId": "Something went wrong with this email account. Try again or use a different method to login.",
- // TODO New key - Add a translation
- "external-login-page.confirm-email.create-account.notifications.error.no-netId": "Something went wrong with this email account. Try again or use a different method to login.",
-
- // "external-login-page.orcid-confirmation.firstname": "First name",
- // TODO New key - Add a translation
- "external-login-page.orcid-confirmation.firstname": "First name",
-
- // "external-login-page.orcid-confirmation.firstname.label": "First name",
- // TODO New key - Add a translation
- "external-login-page.orcid-confirmation.firstname.label": "First name",
-
- // "external-login-page.orcid-confirmation.lastname": "Last name",
- // TODO New key - Add a translation
- "external-login-page.orcid-confirmation.lastname": "Last name",
-
- // "external-login-page.orcid-confirmation.lastname.label": "Last name",
- // TODO New key - Add a translation
- "external-login-page.orcid-confirmation.lastname.label": "Last name",
-
- // "external-login-page.orcid-confirmation.netid": "Account Identifier",
- // TODO New key - Add a translation
- "external-login-page.orcid-confirmation.netid": "Account Identifier",
-
- // "external-login-page.orcid-confirmation.netid.placeholder": "xxxx-xxxx-xxxx-xxxx",
- // TODO New key - Add a translation
- "external-login-page.orcid-confirmation.netid.placeholder": "xxxx-xxxx-xxxx-xxxx",
-
- // "external-login-page.orcid-confirmation.email": "Email",
- // TODO New key - Add a translation
- "external-login-page.orcid-confirmation.email": "Email",
-
- // "external-login-page.orcid-confirmation.email.label": "Email",
- // TODO New key - Add a translation
- "external-login-page.orcid-confirmation.email.label": "Email",
-
- // "search.filters.access_status.open.access": "Open access",
- // TODO New key - Add a translation
- "search.filters.access_status.open.access": "Open access",
-
- // "search.filters.access_status.restricted": "Restricted access",
- // TODO New key - Add a translation
- "search.filters.access_status.restricted": "Restricted access",
-
- // "search.filters.access_status.embargo": "Embargoed access",
- // TODO New key - Add a translation
- "search.filters.access_status.embargo": "Embargoed access",
-
- // "search.filters.access_status.metadata.only": "Metadata only",
- // TODO New key - Add a translation
- "search.filters.access_status.metadata.only": "Metadata only",
-
- // "search.filters.access_status.unknown": "Unknown",
- // TODO New key - Add a translation
- "search.filters.access_status.unknown": "Unknown",
-
- // "metadata-export-filtered-items.tooltip": "Export report output as CSV",
- // TODO New key - Add a translation
- "metadata-export-filtered-items.tooltip": "Export report output as CSV",
-
- // "metadata-export-filtered-items.submit.success": "CSV export succeeded.",
- // TODO New key - Add a translation
- "metadata-export-filtered-items.submit.success": "CSV export succeeded.",
-
- // "metadata-export-filtered-items.submit.error": "CSV export failed.",
- // TODO New key - Add a translation
- "metadata-export-filtered-items.submit.error": "CSV export failed.",
-
- // "metadata-export-filtered-items.columns.warning": "CSV export automatically includes all relevant fields, so selections in this list are not taken into account.",
- // TODO New key - Add a translation
- "metadata-export-filtered-items.columns.warning": "CSV export automatically includes all relevant fields, so selections in this list are not taken into account.",
-
- // "embargo.listelement.badge": "Embargo until {{ date }}",
- // TODO New key - Add a translation
- "embargo.listelement.badge": "Embargo until {{ date }}",
-
- // "metadata-export-search.submit.error.limit-exceeded": "Only the first {{limit}} items will be exported",
- // TODO New key - Add a translation
- "metadata-export-search.submit.error.limit-exceeded": "Only the first {{limit}} items will be exported",
-
- // "file-download-link.request-copy": "Request a copy of ",
- // TODO New key - Add a translation
- "file-download-link.request-copy": "Request a copy of ",
-
- // "file-download-button.request-copy": "Request a copy",
- // TODO New key - Add a translation
- "file-download-button.request-copy": "Request a copy",
-
- // "item.preview.organization.url": "URL",
- // TODO New key - Add a translation
- "item.preview.organization.url": "URL",
-
- // "item.preview.organization.address.addressLocality": "City",
- // TODO New key - Add a translation
- "item.preview.organization.address.addressLocality": "City",
-
- // "item.preview.organization.alternateName": "Alternative name",
- // TODO New key - Add a translation
- "item.preview.organization.alternateName": "Alternative name",
-
- // "metadata-link-view.orcid.logo": "ORCID logo",
- // TODO New key - Add a translation
- "metadata-link-view.orcid.logo": "ORCID logo",
-
- // "metadata-link-view.source.logo": "Source logo",
- // TODO New key - Add a translation
- "metadata-link-view.source.logo": "Source logo",
-
- // "metadata-link-view.popover.label.Person.dc.title": "Fullname",
- // TODO New key - Add a translation
- "metadata-link-view.popover.label.Person.dc.title": "Fullname",
-
- // "metadata-link-view.popover.label.Person.person.affiliation.name": "Main affiliation",
- // TODO New key - Add a translation
- "metadata-link-view.popover.label.Person.person.affiliation.name": "Main affiliation",
-
- // "metadata-link-view.popover.label.Person.person.email": "Email",
- // TODO New key - Add a translation
- "metadata-link-view.popover.label.Person.person.email": "Email",
-
- // "metadata-link-view.popover.label.Person.person.identifier.orcid": "ORCID",
- // TODO New key - Add a translation
- "metadata-link-view.popover.label.Person.person.identifier.orcid": "ORCID",
-
- // "metadata-link-view.popover.label.Person.dc.description.abstract": "Abstract",
- // TODO New key - Add a translation
- "metadata-link-view.popover.label.Person.dc.description.abstract": "Abstract",
-
- // "metadata-link-view.popover.label.Person.person.jobTitle": "Job title",
- // TODO New key - Add a translation
- "metadata-link-view.popover.label.Person.person.jobTitle": "Job title",
-
- // "metadata-link-view.popover.label.other.dc.title": "Title",
- // TODO New key - Add a translation
- "metadata-link-view.popover.label.other.dc.title": "Title",
-
- // "metadata-link-view.popover.label.other.dc.description.abstract": "Description",
- // TODO New key - Add a translation
- "metadata-link-view.popover.label.other.dc.description.abstract": "Description",
-
- // "metadata-link-view.popover.label.more-info": "More info",
- // TODO New key - Add a translation
- "metadata-link-view.popover.label.more-info": "More info",
-
- // "item.page.extended-file-section": "Bitstreams",
- // TODO New key - Add a translation
- "item.page.extended-file-section": "Bitstreams",
-
- // "file.section.name": "Document",
- // TODO New key - Add a translation
- "file.section.name": "Document",
-
- // "file.section.type": "Type",
- // TODO New key - Add a translation
- "file.section.type": "Type",
-
- // "file.section.size": "Size",
- // TODO New key - Add a translation
- "file.section.size": "Size",
-
- // "dataset.page.titleprefix": "Dataset",
- // TODO New key - Add a translation
- "dataset.page.titleprefix": "Dataset",
-
- // "dataset.listelement.badge": "Dataset",
- // TODO New key - Add a translation
- "dataset.listelement.badge": "Dataset",
-
- // "dataset.page.options": "Options",
- // TODO New key - Add a translation
- "dataset.page.options": "Options",
-
- // "dataset.page.edit": "Edit this Dataset",
- // TODO New key - Add a translation
- "dataset.page.edit": "Edit this Dataset",
-
- // "relationships.Dataset.isAuthorOfDataset.Person": "Authors (Persons)",
- // TODO New key - Add a translation
- "relationships.Dataset.isAuthorOfDataset.Person": "Authors (Persons)",
-
- // "relationships.Dataset.isProjectOfDataset.Project": "Research Projects",
- // TODO New key - Add a translation
- "relationships.Dataset.isProjectOfDataset.Project": "Research Projects",
-
- // "relationships.Dataset.isAuthorOfDataset.OrgUnit": "Organizational Units",
- // TODO New key - Add a translation
- "relationships.Dataset.isAuthorOfDataset.OrgUnit": "Organizational Units",
-
- // "relationships.Dataset.isOrgUnitOfDataset.OrgUnit": "Authors (Organizational Units)",
- // TODO New key - Add a translation
- "relationships.Dataset.isOrgUnitOfDataset.OrgUnit": "Authors (Organizational Units)",
-
- // "relationships.Dataset.isPublicationOfDataset.Publication": "Publications",
- // TODO New key - Add a translation
- "relationships.Dataset.isPublicationOfDataset.Publication": "Publications",
-
- // "relationships.Publication.isDatasetOfPublication.Dataset": "Datasets",
- // TODO New key - Add a translation
- "relationships.Publication.isDatasetOfPublication.Dataset": "Datasets",
-
- // "relationships.Person.isDatasetOfAuthor.Dataset": "Datasets",
- // TODO New key - Add a translation
- "relationships.Person.isDatasetOfAuthor.Dataset": "Datasets",
-
- // "relationships.Project.isDatasetOfProject.Dataset": "Datasets",
- // TODO New key - Add a translation
- "relationships.Project.isDatasetOfProject.Dataset": "Datasets",
-
- // "relationships.OrgUnit.isDatasetOfAuthor.Dataset": "Authored Datasets",
- // TODO New key - Add a translation
- "relationships.OrgUnit.isDatasetOfAuthor.Dataset": "Authored Datasets",
-
- // "relationships.OrgUnit.isDatasetOfOrgUnit.Dataset": "Organisation Datasets",
- // TODO New key - Add a translation
- "relationships.OrgUnit.isDatasetOfOrgUnit.Dataset": "Organisation Datasets",
-
- // "submission.sections.describe.relationship-lookup.title.Dataset": "Datasets",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.title.Dataset": "Datasets",
-
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.Dataset": "Local Datasets",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.search-tab.tab-title.Dataset": "Local Datasets",
-
- // "dataset.search.results.head": "Dataset Search Results",
- // TODO New key - Add a translation
- "dataset.search.results.head": "Dataset Search Results",
-
- // "submission.sections.describe.relationship-lookup.title.isAuthorOfDataset": "Authors",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.title.isAuthorOfDataset": "Authors",
-
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isAuthorOfDataset": "Local Authors ({{ count }})",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.search-tab.tab-title.isAuthorOfDataset": "Local Authors ({{ count }})",
-
- // "submission.sections.describe.relationship-lookup.title.isPublicationOfDataset": "Publications",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.title.isPublicationOfDataset": "Publications",
-
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.isPublicationOfDataset": "Local Publications ({{ count }})",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.search-tab.tab-title.isPublicationOfDataset": "Local Publications ({{ count }})",
-
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.cinii": "CiNii ({{ count }})",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.search-tab.tab-title.cinii": "CiNii ({{ count }})",
-
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.cinii": "Importing from CiNii",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.external-source.import-modal.head.cinii": "Importing from CiNii",
-
- // "submission.sections.describe.relationship-lookup.selection-tab.title.cinii": "Search Results",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.selection-tab.title.cinii": "Search Results",
-
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.datacite": "DataCite ({{ count }})",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.search-tab.tab-title.datacite": "DataCite ({{ count }})",
-
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.datacite": "Importing from DataCite",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.external-source.import-modal.head.datacite": "Importing from DataCite",
-
- // "submission.sections.describe.relationship-lookup.selection-tab.title.datacite": "Search Results",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.selection-tab.title.datacite": "Search Results",
-
- // "submission.sections.describe.relationship-lookup.search-tab.tab-title.doi": "DOI ({{ count }})",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.search-tab.tab-title.doi": "DOI ({{ count }})",
-
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.head.doi": "Importing from DOI",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.external-source.import-modal.head.doi": "Importing from DOI",
-
- // "submission.sections.describe.relationship-lookup.selection-tab.title.doi": "Search Results",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.selection-tab.title.doi": "Search Results",
-
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.isPublicationOfDataset.title": "Import Remote Publication",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.external-source.import-modal.isPublicationOfDataset.title": "Import Remote Publication",
-
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.isPublicationOfDataset.added.local-entity": "Successfully added local publication to the selection",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.external-source.import-modal.isPublicationOfDataset.added.local-entity": "Successfully added local publication to the selection",
-
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.isPublicationOfDataset.added.new-entity": "Successfully imported and added external publication to the selection",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.external-source.import-modal.isPublicationOfDataset.added.new-entity": "Successfully imported and added external publication to the selection",
-
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfDataset.title": "Import Remote Author",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfDataset.title": "Import Remote Author",
-
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfDataset.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.isAuthorOfDataset.added.local-entity": "Successfully added local author to the selection",
-
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.isAuthorOfDataset.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.isAuthorOfDataset.added.new-entity": "Successfully imported and added external author to the selection",
-
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfDataset.title": "Import Remote Project",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfDataset.title": "Import Remote Project",
+ // "browse.metadata.srsc.tree.descrption": "Select a subject to add as search filter",
+ "browse.metadata.srsc.tree.descrption": "Выберите тему для добавления в качестве фильтра поиска",
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfDataset.added.local-entity": "Successfully added local project to the selection",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfDataset.added.local-entity": "Successfully added local project to the selection",
-
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfDataset.added.new-entity": "Successfully imported and added external project to the selection",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.external-source.import-modal.isProjectOfDataset.added.new-entity": "Successfully imported and added external project to the selection",
-
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfDataset.title": "Import Remote Organization",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfDataset.title": "Import Remote Organization",
-
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfDataset.added.local-entity": "Successfully added local organization to the selection",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfDataset.added.local-entity": "Successfully added local organization to the selection",
-
- // "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfDataset.added.new-entity": "Successfully imported and added external organization to the selection",
- // TODO New key - Add a translation
- "submission.sections.describe.relationship-lookup.external-source.import-modal.isOrgUnitOfDataset.added.new-entity": "Successfully imported and added external organization to the selection",
-
- // "admin.edit-cms-metadata.success": "Metadata successfully updated",
- // TODO New key - Add a translation
- "admin.edit-cms-metadata.success": "Metadata successfully updated",
-
- // "admin.edit-cms-metadata.back-button": "Back",
- // TODO New key - Add a translation
- "admin.edit-cms-metadata.back-button": "Back",
-
- // "admin.edit-cms-metadata.save-button": "Save",
- // TODO New key - Add a translation
- "admin.edit-cms-metadata.save-button": "Save",
-
- // "admin.edit-cms-metadata.select-metadata": "Select metadata to edit",
- // TODO New key - Add a translation
- "admin.edit-cms-metadata.select-metadata": "Select metadata to edit",
-
- // "admin.edit-cms-metadata.edit-button": "Edit",
- // TODO New key - Add a translation
- "admin.edit-cms-metadata.edit-button": "Edit",
-
- // "admin.edit-cms-metadata.breadcrumbs": "Edit CMS Metadata",
- // TODO New key - Add a translation
- "admin.edit-cms-metadata.breadcrumbs": "Edit CMS Metadata",
-
- // "admin.edit-cms-metadata.title": "Edit CMS Metadata",
- // TODO New key - Add a translation
- "admin.edit-cms-metadata.title": "Edit CMS Metadata",
-
- // "admin.edit-cms-metadata.error": "An error occurred while updating the metadata",
- // TODO New key - Add a translation
- "admin.edit-cms-metadata.error": "An error occurred while updating the metadata",
-
- // "menu.section.edit-cms-metadata": "Edit CMS Metadata",
- // TODO New key - Add a translation
- "menu.section.edit-cms-metadata": "Edit CMS Metadata",
-
- // "menu.section.cms.edit.metadata.head": "Edit Metadata",
- // TODO New key - Add a translation
- "menu.section.cms.edit.metadata.head": "Edit Metadata",
-
- // "admin.edit-user-agreement.breadcrumbs": "Edit User Agreement",
- // TODO New key - Add a translation
- "admin.edit-user-agreement.breadcrumbs": "Edit User Agreement",
-
- // "admin.edit-user-agreement.confirm.title": "Force acceptance",
- // TODO New key - Add a translation
- "admin.edit-user-agreement.confirm.title": "Force acceptance",
-
- // "admin.edit-user-agreement.confirm.info": "Do you want to force all users to accept the new user agreement?",
- // TODO New key - Add a translation
- "admin.edit-user-agreement.confirm.info": "Do you want to force all users to accept the new user agreement?",
-
- // "admin.edit-user-agreement.confirm.cancel": "Cancel",
- // TODO New key - Add a translation
- "admin.edit-user-agreement.confirm.cancel": "Cancel",
-
- // "admin.edit-user-agreement.confirm.no": "No, update only",
- // TODO New key - Add a translation
- "admin.edit-user-agreement.confirm.no": "No, update only",
-
- // "admin.edit-user-agreement.confirm.yes": "Yes, update and force",
- // TODO New key - Add a translation
- "admin.edit-user-agreement.confirm.yes": "Yes, update and force",
-
- // "menu.section.edit-user-agreement": "Edit User Agreement",
- // TODO New key - Add a translation
- "menu.section.edit-user-agreement": "Edit User Agreement",
-
- // "admin.edit-user-agreement.save-button": "Save",
- // TODO New key - Add a translation
- "admin.edit-user-agreement.save-button": "Save",
-
- // "admin.edit-user-agreement.markdown": "End User Agreement text supports Markdown language.",
- // TODO New key - Add a translation
- "admin.edit-user-agreement.markdown": "End User Agreement text supports Markdown language.",
-
- // "admin.edit-cms-metadata.markdown": "CMS Metadata text supports Markdown language.",
- // TODO New key - Add a translation
- "admin.edit-cms-metadata.markdown": "CMS Metadata text supports Markdown language.",
-
- // "admin.edit-user-agreement.header": "Edit User Agreement",
- // TODO New key - Add a translation
- "admin.edit-user-agreement.header": "Edit User Agreement",
-
- // "admin.edit-user-agreement.success": "User agreement successfully updated",
- // TODO New key - Add a translation
- "admin.edit-user-agreement.success": "User agreement successfully updated",
-
- // "admin.edit-user-agreement.error": "An error occurred while updating the user agreement",
- // TODO New key - Add a translation
- "admin.edit-user-agreement.error": "An error occurred while updating the user agreement",
-
- // "admin.edit-user-agreement.title": "Edit User Agreement",
- // TODO New key - Add a translation
- "admin.edit-user-agreement.title": "Edit User Agreement",
-}
\ No newline at end of file
+}
diff --git a/src/assets/i18n/sr-cyr.json5 b/src/assets/i18n/sr-cyr.json5
index 9eb87128f7e..5827bbbc16a 100644
--- a/src/assets/i18n/sr-cyr.json5
+++ b/src/assets/i18n/sr-cyr.json5
@@ -11286,9 +11286,9 @@
// "ldn-new-service.form.label.inboundPattern": "Supported Pattern",
// TODO New key - Add a translation
"ldn-new-service.form.label.inboundPattern": "Supported Pattern",
- // "ldn-new-service.form.label.addPattern": "+ Add more",
+ // "ldn-new-service.form.label.addPattern": "Add more",
// TODO New key - Add a translation
- "ldn-new-service.form.label.addPattern": "+ Add more",
+ "ldn-new-service.form.label.addPattern": "Add more",
// "ldn-new-service.form.label.removeItemFilter": "Remove",
// TODO New key - Add a translation
"ldn-new-service.form.label.removeItemFilter": "Remove",
diff --git a/src/assets/i18n/sr-lat.json5 b/src/assets/i18n/sr-lat.json5
index 50cfaf99ac9..5337a903cdf 100644
--- a/src/assets/i18n/sr-lat.json5
+++ b/src/assets/i18n/sr-lat.json5
@@ -11283,9 +11283,9 @@
// "ldn-new-service.form.label.inboundPattern": "Supported Pattern",
// TODO New key - Add a translation
"ldn-new-service.form.label.inboundPattern": "Supported Pattern",
- // "ldn-new-service.form.label.addPattern": "+ Add more",
+ // "ldn-new-service.form.label.addPattern": "Add more",
// TODO New key - Add a translation
- "ldn-new-service.form.label.addPattern": "+ Add more",
+ "ldn-new-service.form.label.addPattern": "Add more",
// "ldn-new-service.form.label.removeItemFilter": "Remove",
// TODO New key - Add a translation
"ldn-new-service.form.label.removeItemFilter": "Remove",
diff --git a/src/assets/i18n/sv.json5 b/src/assets/i18n/sv.json5
index 0498adb3854..542eedaf175 100644
--- a/src/assets/i18n/sv.json5
+++ b/src/assets/i18n/sv.json5
@@ -12084,9 +12084,9 @@
// "ldn-new-service.form.label.inboundPattern": "Supported Pattern",
// TODO New key - Add a translation
"ldn-new-service.form.label.inboundPattern": "Supported Pattern",
- // "ldn-new-service.form.label.addPattern": "+ Add more",
+ // "ldn-new-service.form.label.addPattern": "Add more",
// TODO New key - Add a translation
- "ldn-new-service.form.label.addPattern": "+ Add more",
+ "ldn-new-service.form.label.addPattern": "Add more",
// "ldn-new-service.form.label.removeItemFilter": "Remove",
// TODO New key - Add a translation
"ldn-new-service.form.label.removeItemFilter": "Remove",
diff --git a/src/assets/i18n/sw.json5 b/src/assets/i18n/sw.json5
index 2e7afb8a6d7..d3b4d7a4887 100644
--- a/src/assets/i18n/sw.json5
+++ b/src/assets/i18n/sw.json5
@@ -13750,9 +13750,9 @@
// "ldn-new-service.form.label.inboundPattern": "Supported Pattern",
// TODO New key - Add a translation
"ldn-new-service.form.label.inboundPattern": "Supported Pattern",
- // "ldn-new-service.form.label.addPattern": "+ Add more",
+ // "ldn-new-service.form.label.addPattern": "Add more",
// TODO New key - Add a translation
- "ldn-new-service.form.label.addPattern": "+ Add more",
+ "ldn-new-service.form.label.addPattern": "Add more",
// "ldn-new-service.form.label.removeItemFilter": "Remove",
// TODO New key - Add a translation
"ldn-new-service.form.label.removeItemFilter": "Remove",
diff --git a/src/assets/i18n/ta.json5 b/src/assets/i18n/ta.json5
index 925001d563e..c311337bd99 100644
--- a/src/assets/i18n/ta.json5
+++ b/src/assets/i18n/ta.json5
@@ -10785,8 +10785,8 @@
// "ldn-new-service.form.label.inboundPattern": "Supported Pattern",
"ldn-new-service.form.label.inboundPattern": "ஆதரிக்கப்படும் முறைமை",
- // "ldn-new-service.form.label.addPattern": "+ Add more",
- "ldn-new-service.form.label.addPattern": "+ மேலும் சேர்",
+ // "ldn-new-service.form.label.addPattern": "Add more",
+ "ldn-new-service.form.label.addPattern": "மேலும் சேர்",
// "ldn-new-service.form.label.removeItemFilter": "Remove",
"ldn-new-service.form.label.removeItemFilter": "நீக்கு",
// "ldn-register-new-service.breadcrumbs": "New Service",
@@ -12174,4 +12174,4 @@
"admin.edit-user-agreement.title": "Edit User Agreement",
-}
\ No newline at end of file
+}
diff --git a/src/assets/i18n/te.json5 b/src/assets/i18n/te.json5
index f8b69b5a198..755506838ef 100644
--- a/src/assets/i18n/te.json5
+++ b/src/assets/i18n/te.json5
@@ -10652,8 +10652,8 @@
// "ldn-new-service.form.label.inboundPattern": "Supported Pattern",
"ldn-new-service.form.label.inboundPattern": "మద్దతు ఉన్న నమూనా",
- // "ldn-new-service.form.label.addPattern": "+ Add more",
- "ldn-new-service.form.label.addPattern": "+ మరిన్ని జోడించండి",
+ // "ldn-new-service.form.label.addPattern": "Add more",
+ "ldn-new-service.form.label.addPattern": "మరిన్ని జోడించండి",
// "ldn-new-service.form.label.removeItemFilter": "Remove",
"ldn-new-service.form.label.removeItemFilter": "తొలగించండి",
// "ldn-register-new-service.breadcrumbs": "New Service",
@@ -12024,4 +12024,4 @@
"admin.edit-user-agreement.title": "Edit User Agreement",
-}
\ No newline at end of file
+}
diff --git a/src/assets/i18n/tr.json5 b/src/assets/i18n/tr.json5
index 2b7a91f0079..8b63f30f1f6 100644
--- a/src/assets/i18n/tr.json5
+++ b/src/assets/i18n/tr.json5
@@ -12284,9 +12284,9 @@
// "ldn-new-service.form.label.inboundPattern": "Supported Pattern",
// TODO New key - Add a translation
"ldn-new-service.form.label.inboundPattern": "Supported Pattern",
- // "ldn-new-service.form.label.addPattern": "+ Add more",
+ // "ldn-new-service.form.label.addPattern": "Add more",
// TODO New key - Add a translation
- "ldn-new-service.form.label.addPattern": "+ Add more",
+ "ldn-new-service.form.label.addPattern": "Add more",
// "ldn-new-service.form.label.removeItemFilter": "Remove",
// TODO New key - Add a translation
"ldn-new-service.form.label.removeItemFilter": "Remove",
diff --git a/src/assets/i18n/uk.json5 b/src/assets/i18n/uk.json5
index 0a126744b0e..144ea0a0cb0 100644
--- a/src/assets/i18n/uk.json5
+++ b/src/assets/i18n/uk.json5
@@ -12305,9 +12305,9 @@
// "ldn-new-service.form.label.inboundPattern": "Supported Pattern",
// TODO New key - Add a translation
"ldn-new-service.form.label.inboundPattern": "Supported Pattern",
- // "ldn-new-service.form.label.addPattern": "+ Add more",
+ // "ldn-new-service.form.label.addPattern": "Add more",
// TODO New key - Add a translation
- "ldn-new-service.form.label.addPattern": "+ Add more",
+ "ldn-new-service.form.label.addPattern": "Add more",
// "ldn-new-service.form.label.removeItemFilter": "Remove",
// TODO New key - Add a translation
"ldn-new-service.form.label.removeItemFilter": "Remove",
diff --git a/src/assets/i18n/vi.json5 b/src/assets/i18n/vi.json5
index 8268d2b7169..59506737522 100644
--- a/src/assets/i18n/vi.json5
+++ b/src/assets/i18n/vi.json5
@@ -11508,9 +11508,9 @@
// "ldn-new-service.form.label.inboundPattern": "Supported Pattern",
// TODO New key - Add a translation
"ldn-new-service.form.label.inboundPattern": "Supported Pattern",
- // "ldn-new-service.form.label.addPattern": "+ Add more",
+ // "ldn-new-service.form.label.addPattern": "Add more",
// TODO New key - Add a translation
- "ldn-new-service.form.label.addPattern": "+ Add more",
+ "ldn-new-service.form.label.addPattern": "Add more",
// "ldn-new-service.form.label.removeItemFilter": "Remove",
// TODO New key - Add a translation
"ldn-new-service.form.label.removeItemFilter": "Remove",
diff --git a/src/assets/i18n/zh-TW.json5 b/src/assets/i18n/zh-TW.json5
index e8f5de53b31..8658d84de4b 100644
--- a/src/assets/i18n/zh-TW.json5
+++ b/src/assets/i18n/zh-TW.json5
@@ -10780,7 +10780,7 @@
// "ldn-new-service.form.label.inboundPattern": "Supported Pattern",
"ldn-new-service.form.label.inboundPattern": "支援的模式",
- // "ldn-new-service.form.label.addPattern": "+ Add more",
+ // "ldn-new-service.form.label.addPattern": "Add more",
"ldn-new-service.form.label.addPattern": "增加更多",
// "ldn-new-service.form.label.removeItemFilter": "Remove",
"ldn-new-service.form.label.removeItemFilter": "消除",
@@ -12220,4 +12220,4 @@
"admin.edit-user-agreement.title": "Edit User Agreement",
-}
\ No newline at end of file
+}