Tab Anrechnungen: Add Phrasen Status, Notiz hinzufügen

This commit is contained in:
ma0068
2025-07-23 11:57:56 +02:00
parent 0be83eedef
commit b1fe60aab0
2 changed files with 26 additions and 2 deletions
@@ -93,9 +93,10 @@ export default {
if (countNotizen > 0){
buttonNotes.innerHTML = countNotizen + this.$p.t('anrechnung', 'existingNotes');
}
else
else {
buttonNotes.innerHTML = '+' + this.$p.t('global', 'notiz');
}
buttonNotes.title = this.$p.t('ui', 'notizHinzufuegen');
buttonNotes.addEventListener('click', (event) =>
this.addNote(cell.getData().anrechnung_id)
);
@@ -138,6 +139,9 @@ export default {
cm.getColumnByField('lehrveranstaltung_bez_kompatibel').component.updateDefinition({
title: this.$p.t('anrechnung', 'lehrveranstaltung_bez_kompatibel'),
});
cm.getColumnByField('status').component.updateDefinition({
title: this.$p.t('global', 'status'),
});
cm.getColumnByField('genehmigt_von').component.updateDefinition({
title: this.$p.t('anrechnung', 'genehmigtVon'),
});
+20
View File
@@ -44516,6 +44516,26 @@ and represent the current state of research on the topic. The prescribed citatio
)
),
// FHC-4 Studierendenverwaltung FHC-ALERTS END
array(
'app' => 'core',
'category' => 'ui',
'phrase' => 'notizHinzufuegen',
'insertvon' => 'system',
'phrases' => array(
array(
'sprache' => 'German',
'text' => 'Notiz hinzufügen',
'description' => '',
'insertvon' => 'system'
),
array(
'sprache' => 'English',
'text' => 'Add note',
'description' => '',
'insertvon' => 'system'
)
)
),
);