Skip to content

Commit

Permalink
FIX: Incorrect Tooltips
Browse files Browse the repository at this point in the history
  • Loading branch information
aljawaid committed Sep 16, 2023
1 parent d05f402 commit d1ea2d2
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 3 deletions.
1 change: 1 addition & 0 deletions Locale/de_DE/translations.php
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,7 @@
'PHP Extension' => 'PHP-Erweiterung',
'Required Extension' => 'Erforderliche Erweiterung',
'Optional' => 'Wahlweise',
'Optional Extension' => 'Wahlweise Erweiterung',
'Missing PDO Extension' => 'Fehlende PDO-Erweiterung',
'MySQL Detected' => 'MySQL Erkannt',
'PostgreSQL Detected' => 'PostgreSQL Erkannt',
Expand Down
1 change: 1 addition & 0 deletions Locale/en_GB/translations.php
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,7 @@
'PHP Extension' => 'PHP Extension',
'Required Extension' => 'Required Extension',
'Optional' => 'Optional',
'Optional Extension' => 'Optional Extension',
'Missing PDO Extension' => 'Missing PDO Extension',
'MySQL Detected' => 'MySQL Detected',
'PostgreSQL Detected' => 'PostgreSQL Detected',
Expand Down
1 change: 1 addition & 0 deletions Locale/es_ES/translations.php
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,7 @@
'PHP Extension' => 'Extensión PHP',
'Required Extension' => 'Extensión requerida',
'Optional' => 'Opcional',
'Optional Extension' => 'Opcional Extensión',
'Missing PDO Extension' => 'Falta Extensión PDO',
'MySQL Detected' => 'MySQL Detectado',
'PostgreSQL Detected' => 'PostgreSQL Detectado',
Expand Down
1 change: 1 addition & 0 deletions Locale/fr_FR/translations.php
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,7 @@
'PHP Extension' => 'Extension PHP',
'Required Extension' => 'Extension requise',
'Optional' => 'Optionnel',
'Optional Extension' => 'Optionnel Extension',
'Missing PDO Extension' => 'Extension PDO manquante',
'MySQL Detected' => 'MySQL détecté',
'PostgreSQL Detected' => 'PostgreSQL détecté',
Expand Down
1 change: 1 addition & 0 deletions Locale/translations-starter-template.php
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,7 @@
'PHP Extension' => '',
'Required Extension' => '',
'Optional' => '',
'Optional Extension' => '',
'Missing PDO Extension' => '',
'MySQL Detected' => '',
'PostgreSQL Detected' => '',
Expand Down
6 changes: 3 additions & 3 deletions Template/config/support.php
Original file line number Diff line number Diff line change
Expand Up @@ -879,7 +879,7 @@
<?php if (extension_loaded('zip')): ?>
<span class="tile-pass" title="<?= t('Pass') ?>">&#10004;</span>
<?php else: ?>
<span class="tile-fail-x" title="<?= t('Required Extension') ?>">&#10008;</span>
<span class="tile-fail-x" title="<?= t('Optional Extension') ?>">&#10008;</span>
<?php endif ?>
</span>
</div>
Expand All @@ -899,7 +899,7 @@
<?php if (extension_loaded('ldap')): ?>
<span class="tile-pass" title="<?= t('Pass') ?>">&#10004;</span>
<?php else: ?>
<span class="tile-fail-x" title="<?= t('Required Extension') ?>">&#10008;</span>
<span class="tile-fail-x" title="<?= t('Optional Extension') ?>">&#10008;</span>
<?php endif ?>
</span>
</div>
Expand All @@ -919,7 +919,7 @@
<?php if (extension_loaded('curl')): ?>
<span class="tile-pass" title="<?= t('Pass') ?>">&#10004;</span>
<?php else: ?>
<span class="tile-fail-x" title="<?= t('Required Extension') ?>">&#10008;</span>
<span class="tile-fail-x" title="<?= t('Optional Extension') ?>">&#10008;</span>
<?php endif ?>
</span>
</div>
Expand Down

0 comments on commit d1ea2d2

Please sign in to comment.