{{ option.fullString }}
@@ -1821,21 +1882,21 @@ export const Benotungstool = {
- {{ getFreigabeCounter > 0 ? $p.t('benotungstool/freigabecounterPositiv', [getFreigabeCounter]) : '' }}
+ {{ getFreigabeCounter > 0 ? $capitalize($p.t('benotungstool/freigabecounterPositiv', [getFreigabeCounter])) : '' }}
diff --git a/public/js/helpers/debounce.js b/public/js/helpers/debounce.js
new file mode 100644
index 000000000..09529b07c
--- /dev/null
+++ b/public/js/helpers/debounce.js
@@ -0,0 +1,9 @@
+export function debounce(fn, delay) {
+ let timeoutId;
+ return (...args) => {
+ clearTimeout(timeoutId);
+ timeoutId = setTimeout(() => {
+ fn(...args)
+ }, delay);
+ };
+}
diff --git a/system/phrasesupdate.php b/system/phrasesupdate.php
index 58f1ca652..6ae197709 100644
--- a/system/phrasesupdate.php
+++ b/system/phrasesupdate.php
@@ -50878,18 +50878,18 @@ and represent the current state of research on the topic. The prescribed citatio
array(
'app' => 'core',
'category' => 'benotungstool',
- 'phrase' => 'c4note',
+ 'phrase' => 'c4notenvorschlag',
'insertvon' => 'system',
'phrases' => array(
array(
'sprache' => 'German',
- 'text' => 'Punkte/Note',
+ 'text' => 'Notenvorschlag',
'description' => '',
'insertvon' => 'system'
),
array(
'sprache' => 'English',
- 'text' => 'Points/Grade',
+ 'text' => 'Grade Suggestion',
'description' => '',
'insertvon' => 'system'
)
@@ -51763,10 +51763,27 @@ and represent the current state of research on the topic. The prescribed citatio
)
)
),
-
+ array(
+ 'app' => 'core',
+ 'category' => 'benotungstool',
+ 'phrase' => 'c4punkte',
+ 'insertvon' => 'system',
+ 'phrases' => array(
+ array(
+ 'sprache' => 'German',
+ 'text' => 'Punkte',
+ 'description' => '',
+ 'insertvon' => 'system'
+ ),
+ array(
+ 'sprache' => 'English',
+ 'text' => 'Points',
+ 'description' => '',
+ 'insertvon' => 'system'
+ )
+ )
+ ),
// CIS4 GESAMTNOTENEINGABE ENDE ------------------------------------------------------------------------------------
-
-
array(
'app' => 'core',
'category' => 'lehre',