Skip to content
Snippets Groups Projects
Commit 5ceb2bcb authored by ozlemakcicek's avatar ozlemakcicek Committed by Benedikt Heinrichs
Browse files

Fix: Symbol Descriptions In Application Profile Added

parent 3cd82284
No related branches found
No related tags found
2 merge requests!161merge dev into master,!160Fix: Symbol Descriptions In Application Profile Added
......@@ -2,6 +2,7 @@
<b-button-group class="wrapper-input-button">
<b-button
v-if="fixedValueMode"
v-b-tooltip.hover.top="t('lockInfo')"
:disabled="fixedValueDisabled[entryIndex]"
class="innerButton"
variant="outline-secondary"
......@@ -23,8 +24,9 @@
</b-button>
<b-button
v-if="entryIndex === 0"
v-b-tooltip.hover.top="t('plusInfo')"
:disabled="disabledMode || insertNewFieldButtonDisabled"
class="innerButton"
class="innerButton lastButton"
variant="outline-secondary"
@click.prevent="insertNewFields(1)"
>
......@@ -33,7 +35,7 @@
<b-button
v-if="entryIndex !== 0"
:disabled="disabledMode || removeFieldButtonDisabled"
class="innerButton"
class="innerButton lastButton"
variant="outline-secondary"
@click.prevent="removeField(entryIndex)"
>
......@@ -110,4 +112,8 @@ export default defineComponent({
width: 1.2em;
height: 1.2em;
}
.lastButton {
border-bottom-right-radius: inherit !important;
border-top-right-radius: inherit !important;
}
</style>
import type VueI18n from 'vue-i18n';
export default {
en: {
selectPlaceholder: 'Select...',
invisibilityInfo:
'Fields can be hidden to remove non-applicable fields from the metadata view. Mandatory fields can only be hidden if they have a default value that is marked as unchangeable.',
"Hides this field from view during file uploads and metadata editing. Required fields can't be hidden. Visibility can be adjusted later",
lockInfo:
'Locks the default value to prevent changes. Can be unlocked later.',
plusInfo:
'Adds a field of the same type. Duplicate values are not supported. Remove added fields via the minus button. Can be adjusted later.',
},
de: {
selectPlaceholder: 'Auswählen...',
invisibilityInfo:
'Felder können ausgeblendet werden, um nicht zutreffende Felder aus der Metadatenansicht zu entfernen. Pflichtfelder können nur dann ausgeblendet werden, wenn sie einen Standardwert haben, der als nicht änderbar gekennzeichnet ist.',
'Verbirgt dieses Feld beim Hochladen von Dateien und Bearbeiten von Metadaten. Pflichtfelder können nicht verborgen werden. Sichtbarkeit kann später angepasst werden.',
lockInfo:
'Sperrt den Standardwert, um Änderungen zu verhindern. Kann später entsperrt werden.',
plusInfo:
'Fügt ein Feld desselben Typs hinzu. Doppelte Werte werden nicht unterstützt. Hinzugefügte Felder können über den Minus-Button entfernt werden. Kann später angepasst werden.',
},
} as VueI18n.LocaleMessages;
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment