UNPKG

@sanity/locale-da-dk

Version:

Danish / Dansk locale/translation for Sanity Studio

96 lines (95 loc) 6.18 kB
import { removeUndefinedLocaleResources } from "sanity"; var validation = removeUndefinedLocaleResources({ /** Array must have exactly "$wantedLength" items, but has more/less */ "array.exact-length": "Skal have pr\xE6cis {{wantedLength}} elementer", /** Portable Text array must have exactly "$wantedLength" blocks, but has more/less */ "array.exact-length_blocks": "Skal have pr\xE6cis {{wantedLength}} blokke", /** Array item is a duplicate, but array wants only unique items */ "array.item-duplicate": "Kan ikke v\xE6re en duplikat", /** Array has more than the maximum of "$maxLength" items */ "array.maximum-length": "M\xE5 h\xF8jst have {{maxLength}} elementer", /** Portable Text array has more than the maximum of "$maxLength" items */ "array.maximum-length_blocks": "M\xE5 h\xF8jst have {{maxLength}} blokke", /** Array has less than the minimum of "$minLength" items */ "array.minimum-length": "Skal have mindst {{minLength}} elementer", /** Portable Text array has less than the minimum of "$minLength" blocks */ "array.minimum-length_blocks": "Skal have mindst {{minLength}} blokke", /** Date is not valid or not in the correct format (ISO-8601) */ "date.invalid-format": "Skal v\xE6re en gyldig ISO-8601 formatteret dato streng", /** Date is later than the given maximum date "$maxDate" */ "date.maximum": "Skal v\xE6re p\xE5 eller f\xF8r {{maxDate}}", /** Date is earlier than the given minimum date "$minDate" */ "date.minimum": "Skal v\xE6re p\xE5 eller efter {{minDate}}", /** A value of incorrect type is found, eg found `number` instead of `string` */ "generic.incorrect-type": 'Forventet type "{{expectedType}}", fik "{{actualType}}"', /** Value is not one of the values specifically allowed */ "generic.not-allowed": "V\xE6rdien matchede ikke nogen tilladte v\xE6rdier", /** Value "$givenValue" is not one of the values specifically allowed */ "generic.not-allowed_hint": 'V\xE6rdien "{{hint}}" matchede ikke nogen tilladte v\xE6rdier', /** A value is expected, but none is provided */ "generic.required": "P\xE5kr\xE6vet", /** Number is less than the given minimum threshold value "$threshold" */ "number.greater-than": "Skal v\xE6re st\xF8rre end {{threshold}}", /** Number is greater than the given maximum threshold value "$threshold" */ "number.less-than": "Skal v\xE6re mindre end {{threshold}}", /** Number is higher than the given maximum value "$maxNumber" */ "number.maximum": "Skal v\xE6re lavere end eller lig med {{maxNumber}}", /** Number has more precision (decimals) than the allowed "$limit" */ "number.maximum-precision": "Maksimal pr\xE6cision er {{limit}}", /** Number is lower than the given minimum value "$minNumber" */ "number.minimum": "Skal v\xE6re st\xF8rre end eller lig med {{minNumber}}", /** Number is not an integer ("whole number") */ "number.non-integer": "Skal v\xE6re et heltal", /** Object is missing a reference to an asset document in its `asset` field */ "object.asset-required": "Asset er p\xE5kr\xE6vet", /** Object is missing a reference to a file asset document in its `asset` field */ "object.asset-required_file": "Fil er p\xE5kr\xE6vet", /** Object is missing a reference to an image asset document in its `asset` field */ "object.asset-required_image": "Billede er p\xE5kr\xE6vet", /** Object is not a reference to a document (eg `{_ref: 'documentId'}`) */ "object.not-reference": "Skal v\xE6re en reference til et dokument", /** Object references a document which is not published */ "object.reference-not-published": "Refereret dokument skal v\xE6re offentliggjort", /** Accessibility label for closing the validation panel */ "panel.close-button-aria-label": "Luk validering", /** Message shown when the validation panel is opened but there are no errors/warnings */ "panel.no-errors-message": "Ingen valideringsfejl", /** Title for the actual "Validation" panel/feature */ "panel.title": "Validering", /** Slug is an object, but is missing a `current` string property */ "slug.missing-current": "Slug skal have en v\xE6rdi", /** Slug is not an object (eg `{current: 'some-slug'}`) */ "slug.not-object": "Slug skal v\xE6re et objekt", /** Slug is already in use somewhere else, but needs to be unique */ "slug.not-unique": "Slug er allerede i brug", /** String is not a valid email address */ "string.email": "Skal v\xE6re en gyldig e-mailadresse", /** String has a different character length than the exact number "$wantedLength" */ "string.exact-length": "Skal v\xE6re pr\xE6cis {{wantedLength}} tegn lang", /** String contains characters that are not in lowercase */ "string.lowercase": "Skal v\xE6re alle sm\xE5 bogstaver", /** String is longer than the limit of "$maxLength" characters */ "string.maximum-length": "Skal v\xE6re h\xF8jst {{maxLength}} tegn lang", /** String is shorter than the limit of "$minLength" characters */ "string.minimum-length": "Skal v\xE6re mindst {{minLength}} tegn lang", /** String does not match the given regular expression, but should */ "string.regex-does-not-match": 'Matcher ikke "{{name}}"-m\xF8nsteret', /** String matches the given regular expression, but should not */ "string.regex-match": 'B\xF8r ikke matche "{{name}}"-m\xF8nsteret', /** String contains characters that are not in uppercase */ "string.uppercase": "Skal v\xE6re alle store bogstaver", /** String contains a protocol/scheme that is not allowed, eg (`ftp`, `mailto`…) */ "string.url.disallowed-scheme": "Matcher ikke tilladte protokoller/skemaer", /** String contains a URL with a username or password specified before the host */ "string.url.includes-credentials": "Brugernavn/kodeord ikke tilladt", /** String is not a valid URL */ "string.url.invalid": "Ikke en gyldig URL", /** String is not an absolute URL (eg it is missing a protocol/host) */ "string.url.not-absolute": "Relative URL'er er ikke tilladt", /** String is not a relative URL (eg it contains a protocol/host) */ "string.url.not-relative": "Kun relative URL'er er tilladt" }); export { validation as default }; //# sourceMappingURL=validation.js.map