[Translation] Replaced string $this->lang-line where no echo was used

This commit is contained in:
Andreas
2023-05-14 13:54:10 +02:00
parent ac2cdc6e58
commit b5d4e41806
23 changed files with 136 additions and 136 deletions

View File

@@ -23,7 +23,7 @@
foreach ($dxcc_list->result() as $dxcc) {
echo '<option value=' . $dxcc->adif . '> ' . ucwords(strtolower($dxcc->name)) . ' - ' . $dxcc->prefix;
if ($dxcc->end != null) {
echo ' ('.$this->lang->line('gen_hamradio_deleted_dxcc').')';
echo ' ('.lang('gen_hamradio_deleted_dxcc').')';
}
echo '</option>';
}