Fixed: typo error in accepted-tooltip

Now phrase is retrieved correctly
This commit is contained in:
Cris
2020-04-21 13:36:32 +02:00
parent 872a35c1fd
commit a0bb912f8d
@@ -539,7 +539,7 @@ erteilt_tooltip = function(cell){
// Generates akzeptiert tooltip
akzeptiert_tooltip = function(cell){
if (cell.getRow().getData().akzeptiert_von != null) {
return FHC_PhrasesLib.t("ui", "akzeptiertVon") + cell.getRow().getData().akzeptiert_von;
return FHC_PhrasesLib.t("ui", "angenommenVon") + cell.getRow().getData().akzeptiert_von;
}
}