mirror of
https://github.com/yiisoft/yii.git
synced 2026-02-20 01:21:22 +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 #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
|
Version 1.1.28 February 28, 2023
|
||||||
--------------------------------
|
--------------------------------
|
||||||
|
|||||||
@@ -43,7 +43,7 @@
|
|||||||
<td>
|
<td>
|
||||||
<?php echo $requirement[0]; ?>
|
<?php echo $requirement[0]; ?>
|
||||||
</td>
|
</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] ? 'Απέτυχε' : 'Προειδοποίηση'); ?>
|
<?php echo $requirement[2] ? 'Πέρασε' : ($requirement[1] ? 'Απέτυχε' : 'Προειδοποίηση'); ?>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
@@ -72,4 +72,4 @@
|
|||||||
|
|
||||||
</div><!-- page -->
|
</div><!-- page -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
Reference in New Issue
Block a user