mirror of
https://github.com/yiisoft/yii.git
synced 2026-02-19 17:11:23 +01:00
Fix #4523: Fixed translated in Greek class messages in framework requirements view, which they should not be translated
This commit is contained in:
@@ -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
|
||||
--------------------------------
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user