Multilanguage Support for Advanced Logbook

这个提交包含在:
HB9HIL 2023-10-03 15:08:09 +02:00 提交者 GitHub
父节点 59970cc940
当前提交 df5c425509
找不到此签名对应的密钥
GPG 密钥 ID: 4AEE18F83AFDEB23
共有 2 个文件被更改,包括 34 次插入30 次删除

查看文件

@ -29,7 +29,7 @@ $lang['filter_quicksearch_w_sel'] = 'Quicksearch with selected: ';
$lang['filter_search_callsign'] = 'Search Callsign'; $lang['filter_search_callsign'] = 'Search Callsign';
$lang['filter_search_dxcc'] = 'Search DXCC'; $lang['filter_search_dxcc'] = 'Search DXCC';
$lang['filter_search_state'] = 'Search State'; $lang['filter_search_state'] = 'Search State';
$lang['filter_search_gridquare'] = 'Search Gridsquare'; $lang['filter_search_gridsquare'] = 'Search Gridsquare';
$lang['filter_search_cq_zone'] = 'Search CQ Zone'; $lang['filter_search_cq_zone'] = 'Search CQ Zone';
$lang['filter_search_mode'] = 'Search Mode'; $lang['filter_search_mode'] = 'Search Mode';
$lang['filter_search_band'] = 'Search Band'; $lang['filter_search_band'] = 'Search Band';

查看文件

@ -323,34 +323,38 @@ $options = json_decode($options);
<div class="quickfilterbody collapse"> <div class="quickfilterbody collapse">
<div class="mb-2 btn-group"> <div class="mb-2 btn-group">
<span class="h6 mr-1"><?php echo lang('filter_quicksearch_w_sel'); ?></span> <span class="h6 mr-1"><?php echo lang('filter_quicksearch_w_sel'); ?></span>
<?php if (($options->dx->show ?? "true") == "true") { <?php if (($options->dx->show ?? "true") == "true") { ?>
echo '<button type="button" class="btn btn-sm btn-primary mr-1" id="searchCallsign">Search Callsign</button>'; <button type="button" class="btn btn-sm btn-primary mr-1" id="searchCallsign"><?php echo lang('filter_search_callsign'); ?></button><?php
} ?> } ?>
<?php if (($options->dxcc->show ?? "true") == "true") { <?php if (($options->dx->show ?? "true") == "true") { ?>
echo '<button type="button" class="btn btn-sm btn-primary mr-1" id="searchDxcc">Search DXCC</button>'; <button type="button" class="btn btn-sm btn-primary mr-1" id="searchCallsign"><?php echo lang('filter_search_dxcc'); ?></button><?php
} ?> } ?>
<?php if (($options->iota->show ?? "true") == "true") { <?php if (($options->dx->show ?? "true") == "true") { ?>
echo '<button type="button" class="btn btn-sm btn-primary mr-1" id="searchIota">Search IOTA</button>'; <button type="button" class="btn btn-sm btn-primary mr-1" id="searchCallsign"><?php echo lang('filter_search_state'); ?></button><?php
} ?> } ?>
<?php if (($options->state->show ?? "true") == "true") { <?php if (($options->dx->show ?? "true") == "true") { ?>
echo '<button type="button" class="btn btn-sm btn-primary mr-1" id="searchState">Search State</button>'; <button type="button" class="btn btn-sm btn-primary mr-1" id="searchCallsign"><?php echo lang('filter_search_gridsquare'); ?></button><?php
} ?> } ?>
<?php if (($options->refs->show ?? "true") == "true") { <?php if (($options->dx->show ?? "true") == "true") { ?>
echo '<button type="button" class="btn btn-sm btn-primary mr-1" id="searchGridsquare">Search Gridsquare</button>'; <button type="button" class="btn btn-sm btn-primary mr-1" id="searchCallsign"><?php echo lang('filter_search_cq_zone'); ?></button><?php
} ?> } ?>
<?php if (($options->cqzone->show ?? "true") == "true") { <?php if (($options->dx->show ?? "true") == "true") { ?>
echo '<button type="button" class="btn btn-sm btn-primary mr-1" id="searchCqZone">Search CQ Zone</button>'; <button type="button" class="btn btn-sm btn-primary mr-1" id="searchCallsign"><?php echo lang('filter_search_mode'); ?></button><?php
} ?> } ?>
<?php if (($options->mode->show ?? "true") == "true") { <?php if (($options->dx->show ?? "true") == "true") { ?>
echo '<button type="button" class="btn btn-sm btn-primary mr-1" id="searchMode">Search Mode</button>'; <button type="button" class="btn btn-sm btn-primary mr-1" id="searchCallsign"><?php echo lang('filter_search_band'); ?></button><?php
} ?> } ?>
<?php if (($options->band->show ?? "true") == "true") { <?php if (($options->dx->show ?? "true") == "true") { ?>
echo '<button type="button" class="btn btn-sm btn-primary mr-1" id="searchBand">Search Band</button>'; <button type="button" class="btn btn-sm btn-primary mr-1" id="searchCallsign"><?php echo lang('filter_search_iota'); ?></button><?php
} ?> } ?>
<?php if (($options->refs->show ?? "true") == "true") { <?php if (($options->dx->show ?? "true") == "true") { ?>
echo '<button type="button" class="btn btn-sm btn-primary mr-1" id="searchSota">Search SOTA</button>'; <button type="button" class="btn btn-sm btn-primary mr-1" id="searchCallsign"><?php echo lang('filter_search_sota'); ?></button><?php
echo '<button type="button" class="btn btn-sm btn-primary mr-1" id="searchWwff">Search WWFF</button>'; } ?>
echo '<button type="button" class="btn btn-sm btn-primary mr-1" id="searchPota">Search POTA</button>'; <?php if (($options->dx->show ?? "true") == "true") { ?>
<button type="button" class="btn btn-sm btn-primary mr-1" id="searchCallsign"><?php echo lang('filter_search_pota'); ?></button><?php
} ?>
<?php if (($options->dx->show ?? "true") == "true") { ?>
<button type="button" class="btn btn-sm btn-primary mr-1" id="searchCallsign"><?php echo lang('filter_search_wwff'); ?></button><?php
} ?> } ?>
</div> </div>
</div> </div>