sorry that was bad english

This commit is contained in:
HB9HIL
2025-10-02 20:40:19 +02:00
parent 19672f96db
commit ab624a7d66
4 changed files with 4 additions and 4 deletions

View File

@@ -34,7 +34,7 @@
<div class="mb-3">
<label for="catSelect">
<?= __("Category"); ?>
<span class="ms-1" data-bs-toggle="tooltip" title="<?= __("Contacts is a special note category used in various places of Wavelog to store information about QSO partners. This notes are private and are not shared with other users nor exported to external services.") ?>">
<span class="ms-1" data-bs-toggle="tooltip" title="<?= __("Contacts is a special note category used in various places of Wavelog to store information about QSO partners. These notes are private and are not shared with other users nor exported to external services.") ?>">
<i class="fa fa-question-circle text-info"></i>
</span>
</label>

View File

@@ -41,7 +41,7 @@
<label for="catSelect">
<?= __("Category"); ?>
<?php if ($row->cat == 'Contacts'): ?>
<span class="ms-1" data-bs-toggle="tooltip" title="<?= __("Contacts is a special note category used in various places of Wavelog to store information about QSO partners. This notes are private and are not shared with other users nor exported to external services.") ?>">
<span class="ms-1" data-bs-toggle="tooltip" title="<?= __("Contacts is a special note category used in various places of Wavelog to store information about QSO partners. These notes are private and are not shared with other users nor exported to external services.") ?>">
<i class="fa fa-question-circle text-info"></i>
</span>
<?php endif; ?>

View File

@@ -35,7 +35,7 @@
<button type="button" class="btn btn-sm btn-outline-secondary btn-light category-btn" data-category="<?= htmlspecialchars($category_key) ?>">
<?= htmlspecialchars($category_label); ?>
<?php if ($category_key === 'Contacts'): ?>
<span class="ms-1" data-bs-toggle="tooltip" title="<?= __("Contacts is a special note category used in various places of Wavelog to store information about QSO partners. This notes are private and are not shared with other users nor exported to external services.") ?>">
<span class="ms-1" data-bs-toggle="tooltip" title="<?= __("Contacts is a special note category used in various places of Wavelog to store information about QSO partners. These notes are private and are not shared with other users nor exported to external services.") ?>">
<i class="fa fa-question-circle"></i>
</span>
<?php endif; ?>

View File

@@ -29,7 +29,7 @@
<span style="font-size:1em;">
<?= __("Category"); ?>: <?= __($row->cat); ?>
<?php if ($row->cat == 'Contacts'): ?>
<span class="ms-1" data-bs-toggle="tooltip" title="<?= __("Contacts is a special note category used in various places of Wavelog to store information about QSO partners. This notes are private and are not shared with other users nor exported to external services.") ?>">
<span class="ms-1" data-bs-toggle="tooltip" title="<?= __("Contacts is a special note category used in various places of Wavelog to store information about QSO partners. These notes are private and are not shared with other users nor exported to external services.") ?>">
<i class="fa fa-question-circle text-info"></i>
</span>
<?php endif; ?>