Skip to content

Commit

Permalink
NEW: Add Abbreviation for cURL
Browse files Browse the repository at this point in the history
  • Loading branch information
aljawaid committed Sep 16, 2023
1 parent 04b000b commit 34bd368
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 1 deletion.
1 change: 1 addition & 0 deletions Locale/de_DE/translations.php
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,7 @@
'Sendmail Command' => 'Sendmail-Befehl',
'Server Configuration' => 'Server-Konfiguration',
'Operating System' => 'Betriebssystem',
'Client for URL' => 'Klient für URL',
'Website Address' => 'Adresse der Website',
'Domain' => 'Bereich',
'Server IP Address' => 'Server-IP-Adresse',
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 @@ -188,6 +188,7 @@
'Sendmail Command' => 'Sendmail Command',
'Server Configuration' => 'Server Configuration',
'Operating System' => 'Operating System',
'Client for URL' => 'Client for URL',
'Website Address' => 'Website Address',
'Domain' => 'Domain',
'Server IP Address' => 'Server IP Address',
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 @@ -188,6 +188,7 @@
'Sendmail Command' => 'Comando Sendmail',
'Server Configuration' => 'Configuración del servidor',
'Operating System' => 'Sistema operativo',
'Client for URL' => 'Cliente para URL',
'Website Address' => 'Dirección del sitio web',
'Domain' => 'Dominio',
'Server IP Address' => 'Dirección IP del servidor',
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 @@ -188,6 +188,7 @@
'Sendmail Command' => 'Commande Sendmail',
'Server Configuration' => 'Configuration du serveur',
'Operating System' => 'Système d\'exploitation',
'Client for URL' => 'Client pour l\'URL',
'Website Address' => 'Adresse du site Web',
'Domain' => 'Domaine',
'Server IP Address' => 'Adresse IP du serveur',
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 @@ -197,6 +197,7 @@
'Sendmail Command' => '',
'Server Configuration' => '',
'Operating System' => '',
'Client for URL' => '',
'Website Address' => '',
'Domain' => '',
'Server IP Address' => '',
Expand Down
6 changes: 5 additions & 1 deletion Template/config/support.php
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,11 @@
<span class="data-wrap">
<li class="server-config server-config-title">HTTP Client</li>
<li class="server-value server-config-value border-bottom-thick">
<?= Kanboard\Core\Http\Client::backend() ?>
<?php if (Kanboard\Core\Http\Client::backend() == 'cURL'): ?>
<abbr title="<?= t('Client for URL') ?>"><?= Kanboard\Core\Http\Client::backend() ?></abbr>
<?php else: ?>
<?= Kanboard\Core\Http\Client::backend() ?>
<?php endif ?>
</li>
</span>
<span class="data-wrap">
Expand Down

0 comments on commit 34bd368

Please sign in to comment.