Fix #4523: Fixed translated in Greek class messages in framework requirements view, which they should not be translated

This commit is contained in:
Vasilis Lourdas
2023-05-28 09:06:40 +03:00
committed by GitHub
parent 99a426ba9f
commit 4af7dcf290
2 changed files with 3 additions and 2 deletions

View File

@@ -5,6 +5,7 @@ Version 1.1.29 under development
--------------------------------
- Bug #4516: PHP 8 compatibility: Allow union types and intersection types in action declarations (wtommyw)
- Bug #4523: Fixed translated in Greek class messages in framework requirements view, which they should not be translated (lourdas)
Version 1.1.28 February 28, 2023
--------------------------------

View File

@@ -43,7 +43,7 @@
<td>
<?php echo $requirement[0]; ?>
</td>
<td class="<?php echo $requirement[2] ? 'πέρασε' : ($requirement[1] ? 'απέτυχε' : 'προειδοποίηση'); ?>">
<td class="<?php echo $requirement[2] ? 'passed' : ($requirement[1] ? 'failed' : 'warning'); ?>">
<?php echo $requirement[2] ? 'Πέρασε' : ($requirement[1] ? 'Απέτυχε' : 'Προειδοποίηση'); ?>
</td>
<td>
@@ -72,4 +72,4 @@
</div><!-- page -->
</body>
</html>
</html>