diff --git a/src/components/license/AAttributionEditor.vue b/src/components/license/AAttributionEditor.vue index 75198e3890bb6bb39b0362b7a061d1df87d4c582..1913a90e84b94176c1a02ca2ffe5710329e48955 100644 --- a/src/components/license/AAttributionEditor.vue +++ b/src/components/license/AAttributionEditor.vue @@ -1,7 +1,7 @@ <template> <FormGroup v-slot="controlAttributes" - :label="t('image.license')" + :label="t('licensing.fields.license')" :errors="errors.forField('licenseId')" > <select v-model="licenseId" class="form-control" required v-bind="controlAttributes"> @@ -18,7 +18,7 @@ <FormGroup v-slot="controlAttributes" - :label="t('image.credits')" + :label="t('licensing.fields.credits')" :errors="[...errors.forField('credits'), needsAuthorError]" > <input @@ -44,7 +44,7 @@ :required="selectedLicense?.requiresExpressPermissionForPublication" v-bind="controlAttributes" /> - {{ t('image.isUseExplicitlyGrantedByAuthor') }} + {{ t('licensing.fields.isUseExplicitlyGrantedByAuthor') }} </label> </FormGroup> </template> diff --git a/src/i18n/de.js b/src/i18n/de.js index 9f9009294f399b28b38f0a8b58eac1cfcbb1cf7a..c7489864eba4ab2ebea80cf3c261f4174b1d9f58 100644 --- a/src/i18n/de.js +++ b/src/i18n/de.js @@ -663,6 +663,15 @@ export default { }, }, + licensing: { + singular: 'Lizenzierung', + fields: { + license: 'Lizenz', + credits: 'Urheber:in', + isUseExplicitlyGrantedByAuthor: 'Urheber:in erlaubt Veröffentlichung', + }, + }, + imageManipulation: { processingImage: 'Das Bild wird geladen.', aspectRatioError: 'Bitte schneide das Bild auf das erforderliche Seitenverhältnis zu.', @@ -676,18 +685,15 @@ export default { image: { altText: 'Alternativtext (für Screenreader)', - license: 'Lizenz', - credits: 'Bildnachweis / Urheber:in', - isUseExplicitlyGrantedByAuthor: 'Autor:in erlaubt Veröffentlichung', }, license: { moreAbout: 'Mehr zu dieser Lizenz...', validation: { requiresExpressPermissionForPublication: - 'Die Lizenz erfordert eine explizite Zustimmung zur Veröffentlichung seitens des:der Autor:in.', + 'Die Lizenz erfordert eine explizite Zustimmung zur Veröffentlichung seitens des:der Urheber:in.', requiresCredits: - 'Die Lizenz erfordert die Nennung des:der Autor:in. Bitte gib deren Namen an.', + 'Die Lizenz erfordert die Nennung des:der Urheber:in. Bitte gib deren Namen an.', }, }, diff --git a/src/i18n/en.js b/src/i18n/en.js index fe5e127716dcaf1b514342320a940866c3901c3b..a2ba66dbf37123bfcdafb48631774e0ea91e3389 100644 --- a/src/i18n/en.js +++ b/src/i18n/en.js @@ -660,6 +660,15 @@ export default { }, }, + licensing: { + singular: 'Licensing', + fields: { + license: 'License', + credits: 'Author', + isUseExplicitlyGrantedByAuthor: 'Use was explicitly granted by author', + }, + }, + imageManipulation: { processingImage: 'The image is being loaded', aspectRatioError: 'Please crop the image to the required aspect ratio.', @@ -673,9 +682,6 @@ export default { image: { altText: 'Alternative Text (for screen readers)', - license: 'License', - credits: 'Credits / Author', - isUseExplicitlyGrantedByAuthor: 'Use was explicitly granted by author', }, license: {