@sanity/locale-uk-ua
Version:
Ukrainian / Українська locale/translation for Sanity Studio
78 lines (76 loc) • 6.14 kB
text/typescript
import {removeUndefinedLocaleResources} from 'sanity'
export default removeUndefinedLocaleResources({
/** Text on the field action button to copy a document */
'copy-paste.field-action-copy-button.document.title': 'Копіювати документ',
/** Text on the field action button to copy a field */
'copy-paste.field-action-copy-button.field.title': 'Копіювати поле',
/** Text on the field action button to paste a document */
'copy-paste.field-action-paste-button.document.title': 'Вставити документ',
/** Text on the field action button to paste a field */
'copy-paste.field-action-paste-button.field.title': 'Вставити поле',
/** The error message that is shown when the clipboard is not supported */
'copy-paste.on-copy.validation.clipboard-not-supported.title': 'Ваш браузер не підтримує цю дію',
/** The success message that is shown when a document is copied */
'copy-paste.on-copy.validation.copy-document-success.title':
'Документ "{{fieldNames}}" скопійовано',
/** The success message that is shown when a field is copied */
'copy-paste.on-copy.validation.copy-field_one-success.title': 'Поле "{{fieldName}}" скопійовано',
/** The success message that is shown when a array item is copied */
'copy-paste.on-copy.validation.copy-item_one-success.title': 'Елемент "{{typeName}}" скопійовано',
/** The error message that is shown when there is no value to copy */
'copy-paste.on-copy.validation.no-value.title': 'Порожнє значення, нічого копіювати',
/** --- On copy --- */
/** The error message that is shown when schema types are incompatible */
'copy-paste.on-copy.validation.schema-type-incompatible.title':
'Не вдалося визначити тип схеми для шляху: {{path}}',
/** The validation message that is shown when array types are incompatible */
'copy-paste.on-paste.validation.array-type-incompatible.description':
'Значення типу "{{type}}" не дозволено в цьому масивному полі',
/** The validation message that is shown when array values are incompatible */
'copy-paste.on-paste.validation.array-value-incompatible.description':
'Значення типу "{{type}}" не дозволено в цьому масивному полі',
/** The validation message that is shown when the clipboard is empty */
'copy-paste.on-paste.validation.clipboard-empty.title': 'Нічого вставити',
/** The validation message that is shown when the clipboard item is invalid */
'copy-paste.on-paste.validation.clipboard-invalid.title': 'Недійсний елемент буфера обміну',
/** The success message that is shown when a document is pasted */
'copy-paste.on-paste.validation.document-paste-success.title':
'Документ "{{fieldNames}}" оновлено',
/** The success message that is shown when a field is pasted */
'copy-paste.on-paste.validation.field_one-paste-success.title': 'Поле "{{fieldName}}" оновлено',
/** The validation message that is shown when image files are incompatible */
'copy-paste.on-paste.validation.image-file-incompatible.description':
'"{{sourceSchemaType}}" не дозволено в "{{targetSchemaType}}"',
/** The error message that is shown when the MIME type is not accepted */
'copy-paste.on-paste.validation.mime-type-incompatible.description':
'MIME-тип "{{mimeType}}" не прийнятний для цього поля',
/** The error message that is shown when the MIME type validation fails */
'copy-paste.on-paste.validation.mime-type-validation-failed.description':
'Перевірка MIME-типу не вдалася',
/** The warning message that is shown when not all values can be pasted */
'copy-paste.on-paste.validation.partial-warning.title': 'Не вдалося вставити всі значення',
/** The validation message that is shown when primitive types are incompatible */
'copy-paste.on-paste.validation.primitive-type-incompatible.description':
'Значення типу "{{type}}" не дозволено в цьому полі',
/** --- On paste --- */
/** The validation message that is shown when pasting a value into a read-only target */
'copy-paste.on-paste.validation.read-only-target.description': 'Ціль тільки для читання',
/** The validation message that is shown when reference is incompatible with filter */
'copy-paste.on-paste.validation.reference-filter-incompatible.description':
'Посилання не дозволено в полі посилань відповідно до фільтра',
/** The validation message that is shown when reference types are incompatible */
'copy-paste.on-paste.validation.reference-type-incompatible.description':
'Посилання типу "{{sourceReferenceType}}" не дозволені в полі посилань, яке приймає типи "{{targetReferenceTypes}}"',
/** The validation message that is shown when reference does not exist */
'copy-paste.on-paste.validation.reference-validation-failed.description':
'Документ, на який посилається "{{ref}}", не існує',
/** The validation message that is shown when the source and target schema types are incompatible */
'copy-paste.on-paste.validation.schema-type-incompatible.description':
'Типи схем джерела та призначення не сумісні',
/** The validation message that is shown when schema types are incompatible */
'copy-paste.on-paste.validation.schema-type-incompatible.title':
'Не вдалося визначити тип схеми для шляху: {{path}}',
/** The validation message that is shown when string values are incompatible */
'copy-paste.on-paste.validation.string-value-incompatible.description':
'Значення "{{value}}" не дозволено в "{{allowedStrings}}"',
})