diff --git a/.github/workflows/issue_bot.yml b/.github/workflows/issue_bot.yml new file mode 100644 index 000000000..21ab4119f --- /dev/null +++ b/.github/workflows/issue_bot.yml @@ -0,0 +1,25 @@ +name: Issue Bot +on: + schedule: + - cron: "20 */12 * * *" + workflow_dispatch: + +jobs: + close-issues: + runs-on: ubuntu-latest + permissions: + issues: write + steps: + - uses: actions/stale@v9.0.0 + with: + any-of-labels: 'wait 4 close' + exempt-issue-labels: 'hold' + days-before-issue-stale: 5 + days-before-issue-close: 3 + stale-issue-label: 'stale' + stale-issue-message: 'As this issue is marked as “wait 4 close” and there was no activity for 5 days, it is now marked as “stale.” It will be automatically closed in 3 more days.' + close-issue-message: 'This issue was closed because it had been inactive for 3 days since being marked as "stale".' + days-before-pr-stale: -1 + days-before-pr-close: -1 + repo-token: ${{ secrets.GITHUB_TOKEN }} + # debug-only: true diff --git a/.github/workflows/translation.yml b/.github/workflows/translation.yml index 626d90ac4..ec0080da0 100644 --- a/.github/workflows/translation.yml +++ b/.github/workflows/translation.yml @@ -1,12 +1,13 @@ name: Run the po generator script on: + workflow_dispatch: push: branches: - dev jobs: - build: + run_scripts: if: github.repository == 'wavelog/wavelog' runs-on: ubuntu-latest @@ -29,9 +30,13 @@ jobs: run: | git config --global user.name "github-actions" git config --global user.email "github-actions@github.com" - git add . - git commit -m "po/mo updates" - git push + if [[ -n $(git status --porcelain) ]]; then + git add . + git commit -m "po/mo updates" + git push + else + echo "No changes to commit." + fi env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/README.md b/README.md index 865dda99c..04c040620 100644 --- a/README.md +++ b/README.md @@ -51,8 +51,13 @@ Wavelog-support can be reached by creating an issue here at github. If you've an ## Contributing -Special thanks to our contributors, who are part of Wavelog by improving code! -[F4ANS](https://github.com/abarrau), [DG0TM](https://github.com/dg0tm), [DG9VH](https://github.com/dg9vh), [DJ3CE](https://github.com/dj3ce), [R1BLH](https://github.com/r1blh), [BG2ELG](https://github.com/violarulan), [DF1ASH](https://github.com/derFogel), [DB4SCW](https://github.com/DB4SCW) +Special thanks to our contributors, who are part of Wavelog by improving code! + +[F4ANS](https://github.com/abarrau), [DG0TM](https://github.com/dg0tm), [DG9VH](https://github.com/dg9vh), [DJ3CE](https://github.com/dj3ce), [R1BLH](https://github.com/r1blh), [BG2ELG](https://github.com/violarulan), [DF1ASH](https://github.com/derFogel), [DB4SCW](https://github.com/DB4SCW), [VE2HEW](https://github.com/anthonydiiorio) + +Translators: + +[Ondřej Koloničný (OK1CDJ)](https://translate.wavelog.org/user/ok1cdj/), [Michael Skolsky (R1BLH)](https://translate.wavelog.org/user/R1BLH/), [Karuru (BG2ELG)](https://translate.wavelog.org/user/viola/), [Byt3](https://translate.wavelog.org/user/205er/), [BG6HJE](https://translate.wavelog.org/user/BG6HJE/), [Francisco (F4VSE)](https://translate.wavelog.org/user/kikosgc/), [Kim (DG9VH)](https://translate.wavelog.org/user/dg9vh/), [Casper van Lieburg (PA7DX)](https://translate.wavelog.org/user/pa7dx/), [Halil AYYILDIZ (TA2LG)](https://translate.wavelog.org/user/TA2LG/), [Michal Šiman](https://translate.wavelog.org/user/michalsiman/), [DN4BS](https://github.com/dn4bs) If you would like to contribute in any way to Wavelog, it is most appreciated. This has been developed in free time, help coding new features or writing documentation is always useful. diff --git a/application/config/migration.php b/application/config/migration.php index 03983d214..b7a855020 100644 --- a/application/config/migration.php +++ b/application/config/migration.php @@ -22,7 +22,7 @@ $config['migration_enabled'] = TRUE; | */ -$config['migration_version'] = 211; +$config['migration_version'] = 212; /* |-------------------------------------------------------------------------- @@ -37,5 +37,20 @@ $config['migration_version'] = 211; $config['migration_path'] = APPPATH . 'migrations/'; +/* +|-------------------------------------------------------------------------- +| Migration Lockfile +|-------------------------------------------------------------------------- +| +| Path to the migration lockfile. +| This lockfile prevents migrations from running twice +| +*/ +$config['migration_lockfile'] = sys_get_temp_dir() . '/.migration_running'; + +// the maximum age of the lockfile in seconds +$config['migration_lf_maxage'] = 300; + + /* End of file migration.php */ /* Location: ./application/config/migration.php */ diff --git a/application/controllers/Contesting.php b/application/controllers/Contesting.php index d0cad9fd8..ebb3ba55c 100644 --- a/application/controllers/Contesting.php +++ b/application/controllers/Contesting.php @@ -21,6 +21,16 @@ class Contesting extends CI_Controller { $this->load->model('contesting_model'); $this->load->model('bands'); + // Getting the live/post mode from GET command + // 0 = live + // 1 = post (manual) + $get_manual_mode = $this->security->xss_clean($this->input->get('manual')); + if ($get_manual_mode == '0' || $get_manual_mode == '1') { + $data['manual_mode'] = $get_manual_mode; + } else { + show_404(); + } + $data['my_gridsquare'] = $this->stations->find_gridsquare(); $data['radios'] = $this->cat->radios(); $data['modes'] = $this->modes->active(); diff --git a/application/controllers/Debug.php b/application/controllers/Debug.php index 54115cb98..e9af0827a 100644 --- a/application/controllers/Debug.php +++ b/application/controllers/Debug.php @@ -42,9 +42,11 @@ class Debug extends CI_Controller // get mig version from config file $this->load->config('migration'); $data['migration_config'] = $this->config->item('migration_version'); + $data['migration_lockfile'] = $this->config->item('migration_lockfile'); + $data['miglock_lifetime'] = $this->config->item('migration_lf_maxage'); // compare mig versions - if ($data['migration_version'] !== $data['migration_config'] && file_exists('application/cache/.migration_running')) { + if ($data['migration_version'] != $data['migration_config'] && file_exists($data['migration_lockfile'])) { $data['migration_is_uptodate'] = false; } else { $data['migration_is_uptodate'] = true; diff --git a/application/controllers/Lookup.php b/application/controllers/Lookup.php index 563e2cd2e..cc0a9b7a4 100644 --- a/application/controllers/Lookup.php +++ b/application/controllers/Lookup.php @@ -180,8 +180,8 @@ class Lookup extends CI_Controller { public function get_county() { $json = []; - if(!empty($this->input->get("query"))) { - $county = $this->input->get("state"); + if(!empty($this->security->xss_clean($this->input->get("query")))) { + $county = $this->security->xss_clean($this->input->get("state")); $cleanedcounty = explode('(', $county); $cleanedcounty = trim($cleanedcounty[0]); diff --git a/application/controllers/Migrate.php b/application/controllers/Migrate.php index 65bf69dba..d1da26609 100644 --- a/application/controllers/Migrate.php +++ b/application/controllers/Migrate.php @@ -3,6 +3,7 @@ class Migrate extends CI_Controller { public function index() { $this->load->library('Migration'); + $this->load->config('migration'); $result = array(); $latest = $this->migration->latest(); @@ -12,7 +13,7 @@ class Migrate extends CI_Controller { log_message('error', 'Migration failed'); $result['status'] = 'error'; } else { - while (file_exists(APPPATH . 'cache/.migration_running')) { + while (file_exists($this->config->item('migration_lockfile'))) { sleep(1); } $result['status'] = 'success'; diff --git a/application/controllers/Qso.php b/application/controllers/Qso.php index 5463a0681..64b5fc221 100644 --- a/application/controllers/Qso.php +++ b/application/controllers/Qso.php @@ -18,6 +18,16 @@ class QSO extends CI_Controller { $this->load->model('bands'); if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } + // Getting the live/post mode from GET command + // 0 = live + // 1 = post (manual) + $get_manual_mode = $this->security->xss_clean($this->input->get('manual')); + if ($get_manual_mode == '0' || $get_manual_mode == '1') { + $data['manual_mode'] = $get_manual_mode; + } else { + show_404(); + } + $data['active_station_profile'] = $this->stations->find_active(); $data['notice'] = false; @@ -439,7 +449,7 @@ class QSO extends CI_Controller { $this->load->library('sota'); $json = []; - if (!empty($this->input->get("query"))) { + if (!empty($this->security->xss_clean($this->input->get("query")))) { $query = $_GET['query'] ?? FALSE; $json = $this->sota->get($query); } @@ -451,7 +461,7 @@ class QSO extends CI_Controller { public function get_wwff() { $json = []; - if(!empty($this->input->get("query"))) { + if (!empty($this->security->xss_clean($this->input->get("query")))) { $query = isset($_GET['query']) ? $_GET['query'] : FALSE; $wwff = strtoupper($query); @@ -487,7 +497,7 @@ class QSO extends CI_Controller { public function get_pota() { $json = []; - if(!empty($this->input->get("query"))) { + if (!empty($this->security->xss_clean($this->input->get("query")))) { $query = isset($_GET['query']) ? $_GET['query'] : FALSE; $pota = strtoupper($query); @@ -526,7 +536,7 @@ class QSO extends CI_Controller { public function get_dok() { $json = []; - if(!empty($this->input->get("query"))) { + if (!empty($this->security->xss_clean($this->input->get("query")))) { $query = isset($_GET['query']) ? $_GET['query'] : FALSE; $dok = strtoupper($query); diff --git a/application/libraries/Qra.php b/application/libraries/Qra.php index 7b6675638..d14e0ceb1 100644 --- a/application/libraries/Qra.php +++ b/application/libraries/Qra.php @@ -140,7 +140,9 @@ class Qra { } else if ($unit == "N") { $dist *= 0.8684; } - + if ((is_nan($dist)) || !(is_numeric($dist))) { // Special-Case, catch same grid and/or Errors + $dist=0; + } return round($dist, 1); } diff --git a/application/locale/bg_BG/LC_MESSAGES/messages.po b/application/locale/bg_BG/LC_MESSAGES/messages.po index 9606248c7..5731eebae 100644 --- a/application/locale/bg_BG/LC_MESSAGES/messages.po +++ b/application/locale/bg_BG/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-01 15:48+0000\n" +"POT-Creation-Date: 2024-08-06 18:03+0000\n" "PO-Revision-Date: 2024-07-09 13:25+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Bulgarian here for " +"more information." msgstr "" #: application/views/debug/index.php:48 #, php-format +msgid "Current migration is %s" +msgstr "" + +#: application/views/debug/index.php:49 +#, php-format msgid "Migration should be %s" msgstr "" -#: application/views/debug/index.php:53 +#: application/views/debug/index.php:54 msgid "Environment" msgstr "" -#: application/views/debug/index.php:61 +#: application/views/debug/index.php:62 msgid "Total QSO on this instance" msgstr "" -#: application/views/debug/index.php:69 +#: application/views/debug/index.php:70 msgid "Server Information" msgstr "" -#: application/views/debug/index.php:73 +#: application/views/debug/index.php:74 msgid "Server Software" msgstr "" -#: application/views/debug/index.php:78 +#: application/views/debug/index.php:79 msgid "PHP Version" msgstr "" -#: application/views/debug/index.php:84 +#: application/views/debug/index.php:85 msgid "Deprecated" msgstr "" -#: application/views/debug/index.php:91 +#: application/views/debug/index.php:92 msgid "MySQL Version" msgstr "" -#: application/views/debug/index.php:95 +#: application/views/debug/index.php:96 msgid "Codeigniter Version" msgstr "" -#: application/views/debug/index.php:103 +#: application/views/debug/index.php:104 msgid "Folder Permissions" msgstr "" -#: application/views/debug/index.php:105 +#: application/views/debug/index.php:106 msgid "" "This verifies that the folders used by Wavelog have read and write " "permissions by PHP." msgstr "" -#: application/views/debug/index.php:111 application/views/debug/index.php:122 -#: application/views/debug/index.php:133 application/views/debug/index.php:144 -#: application/views/debug/index.php:156 +#: application/views/debug/index.php:112 application/views/debug/index.php:123 +#: application/views/debug/index.php:134 application/views/debug/index.php:145 +#: application/views/debug/index.php:157 msgid "Success" msgstr "" -#: application/views/debug/index.php:113 application/views/debug/index.php:124 -#: application/views/debug/index.php:135 application/views/debug/index.php:146 -#: application/views/debug/index.php:158 +#: application/views/debug/index.php:114 application/views/debug/index.php:125 +#: application/views/debug/index.php:136 application/views/debug/index.php:147 +#: application/views/debug/index.php:159 msgid "Failed" msgstr "" -#: application/views/debug/index.php:168 +#: application/views/debug/index.php:169 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:174 +#: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" -#: application/views/debug/index.php:176 application/views/debug/index.php:193 +#: application/views/debug/index.php:177 application/views/debug/index.php:194 #, php-format msgid "Please edit your %s File:" msgstr "" -#: application/views/debug/index.php:177 +#: application/views/debug/index.php:178 msgid "" "Go to your application/config Folder and compare config.sample.php with your " "config.php" msgstr "" -#: application/views/debug/index.php:178 +#: application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:184 +#: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" msgstr "" -#: application/views/debug/index.php:184 application/views/debug/index.php:201 +#: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" msgstr "" -#: application/views/debug/index.php:191 +#: application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "" -#: application/views/debug/index.php:194 +#: application/views/debug/index.php:195 msgid "This will also enable the 'Keep me logged in' feature." msgstr "" -#: application/views/debug/index.php:195 +#: application/views/debug/index.php:196 #, php-format msgid "" "Change the value of %s to a new encryption key other then " "'flossie1234555541'. Choose a safe and long password. (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:201 +#: application/views/debug/index.php:202 msgid "You do not use the default encryption key" msgstr "" -#: application/views/debug/index.php:208 +#: application/views/debug/index.php:209 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:210 +#: application/views/debug/index.php:211 msgid "" "Here you can migrate existing QSL cards and eQSL cards to the new userdata " "folder." msgstr "" -#: application/views/debug/index.php:223 +#: application/views/debug/index.php:224 msgid "Modules" msgstr "" -#: application/views/debug/index.php:229 application/views/debug/index.php:240 -#: application/views/debug/index.php:251 application/views/debug/index.php:262 -#: application/views/debug/index.php:273 +#: application/views/debug/index.php:230 application/views/debug/index.php:241 +#: application/views/debug/index.php:252 application/views/debug/index.php:263 +#: application/views/debug/index.php:274 msgid "Installed" msgstr "" -#: application/views/debug/index.php:231 application/views/debug/index.php:242 -#: application/views/debug/index.php:253 application/views/debug/index.php:264 -#: application/views/debug/index.php:275 +#: application/views/debug/index.php:232 application/views/debug/index.php:243 +#: application/views/debug/index.php:254 application/views/debug/index.php:265 +#: application/views/debug/index.php:276 msgid "Not Installed" msgstr "" -#: application/views/debug/index.php:282 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:654 msgid "Settings" msgstr "" -#: application/views/debug/index.php:411 +#: application/views/debug/index.php:412 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:415 +#: application/views/debug/index.php:416 msgid "Branch" msgstr "" -#: application/views/debug/index.php:426 application/views/debug/index.php:437 -#: application/views/debug/index.php:447 +#: application/views/debug/index.php:427 application/views/debug/index.php:438 +#: application/views/debug/index.php:448 msgid "n/a" msgstr "" -#: application/views/debug/index.php:432 +#: application/views/debug/index.php:433 msgid "Commit" msgstr "" -#: application/views/debug/index.php:442 +#: application/views/debug/index.php:443 msgid "Tag" msgstr "" -#: application/views/debug/index.php:452 +#: application/views/debug/index.php:453 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:464 +#: application/views/debug/index.php:465 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:466 msgid "Update now" msgstr "" -#: application/views/debug/index.php:483 +#: application/views/debug/index.php:484 msgid "File download date" msgstr "" -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:488 msgid "File" msgstr "" -#: application/views/debug/index.php:488 +#: application/views/debug/index.php:489 msgid "Last update" msgstr "" -#: application/views/debug/index.php:492 +#: application/views/debug/index.php:493 msgid "DXCC update from Club Log" msgstr "" -#: application/views/debug/index.php:494 application/views/debug/index.php:500 -#: application/views/debug/index.php:505 application/views/debug/index.php:510 -#: application/views/debug/index.php:515 application/views/debug/index.php:520 -#: application/views/debug/index.php:525 +#: application/views/debug/index.php:495 application/views/debug/index.php:501 +#: application/views/debug/index.php:506 application/views/debug/index.php:511 +#: application/views/debug/index.php:516 application/views/debug/index.php:521 +#: application/views/debug/index.php:526 #: application/views/station_profile/edit.php:22 msgid "Update" msgstr "" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:499 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:503 +#: application/views/debug/index.php:504 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:508 +#: application/views/debug/index.php:509 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:513 +#: application/views/debug/index.php:514 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:518 +#: application/views/debug/index.php:519 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:523 +#: application/views/debug/index.php:524 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:532 +#: application/views/debug/index.php:533 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:537 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -5497,9 +5517,9 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:549 +#: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:38 +#: application/views/station_profile/create.php:57 #: application/views/station_profile/edit.php:46 #: application/views/station_profile/index.php:42 #: application/views/stationsetup/linkedlocations.php:32 @@ -5507,88 +5527,88 @@ msgstr[1] "" msgid "Station Callsign" msgstr "" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:582 +#: application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:583 application/views/debug/index.php:594 +#: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:628 +#: application/views/debug/index.php:629 msgid "Bulgarian" msgstr "" -#: application/views/debug/index.php:629 +#: application/views/debug/index.php:630 msgid "Chinese (Simplified)" msgstr "" -#: application/views/debug/index.php:630 +#: application/views/debug/index.php:631 msgid "Czech" msgstr "" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:632 msgid "Dutch" msgstr "" -#: application/views/debug/index.php:632 +#: application/views/debug/index.php:633 msgid "English" msgstr "" -#: application/views/debug/index.php:633 +#: application/views/debug/index.php:634 msgid "Finnish" msgstr "" -#: application/views/debug/index.php:634 +#: application/views/debug/index.php:635 msgid "French" msgstr "" -#: application/views/debug/index.php:635 +#: application/views/debug/index.php:636 msgid "German" msgstr "" -#: application/views/debug/index.php:636 +#: application/views/debug/index.php:637 msgid "Greek" msgstr "" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:638 msgid "Italian" msgstr "" -#: application/views/debug/index.php:638 +#: application/views/debug/index.php:639 msgid "Polish" msgstr "" -#: application/views/debug/index.php:639 +#: application/views/debug/index.php:640 msgid "Portuguese" msgstr "" -#: application/views/debug/index.php:640 +#: application/views/debug/index.php:641 msgid "Russian" msgstr "" -#: application/views/debug/index.php:641 +#: application/views/debug/index.php:642 msgid "Spanish" msgstr "" -#: application/views/debug/index.php:642 +#: application/views/debug/index.php:643 msgid "Swedish" msgstr "" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:644 msgid "Turkish" msgstr "" @@ -5807,6 +5827,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:60 +#: application/views/interface_assets/footer.php:2342 +#: application/views/interface_assets/footer.php:2360 +#: application/views/interface_assets/footer.php:2381 +#: application/views/interface_assets/footer.php:2399 #: application/views/qslcard/index.php:66 #: application/views/view_log/qso.php:614 msgid "View" @@ -5967,6 +5991,69 @@ msgstr "" msgid "Version Info" msgstr "" +#: application/views/interface_assets/footer.php:392 +msgid "Description:" +msgstr "" + +#: application/views/interface_assets/footer.php:395 +msgid "Query description" +msgstr "" + +#: application/views/interface_assets/footer.php:411 +msgid "Your query has been saved!" +msgstr "" + +#: application/views/interface_assets/footer.php:413 +#: application/views/search/filter.php:46 +msgid "Edit queries" +msgstr "" + +#: application/views/interface_assets/footer.php:415 +msgid "Stored queries:" +msgstr "" + +#: application/views/interface_assets/footer.php:420 +#: application/views/search/filter.php:60 +msgid "Run Query" +msgstr "" + +#: application/views/interface_assets/footer.php:432 +#: application/views/interface_assets/footer.php:561 +#: application/views/interface_assets/footer.php:625 +msgid "Stored Queries" +msgstr "" + +#: application/views/interface_assets/footer.php:437 +#: application/views/interface_assets/footer.php:630 +msgid "You need to make a query before you search!" +msgstr "" + +#: application/views/interface_assets/footer.php:458 +#: application/views/interface_assets/footer.php:589 +#: application/views/search/filter.php:79 +msgid "Export to ADIF" +msgstr "" + +#: application/views/interface_assets/footer.php:496 +msgid "Warning! Are you sure you want delete this stored query?" +msgstr "" + +#: application/views/interface_assets/footer.php:510 +msgid "The stored query has been deleted!" +msgstr "" + +#: application/views/interface_assets/footer.php:519 +msgid "The stored query could not be deleted. Please try again!" +msgstr "" + +#: application/views/interface_assets/footer.php:545 +msgid "The query description has been updated!" +msgstr "" + +#: application/views/interface_assets/footer.php:549 +msgid "Something went wrong with the save. Please try again!" +msgstr "" + #: application/views/interface_assets/footer.php:672 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " @@ -5974,20 +6061,65 @@ msgid "" "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:1374 -#: application/views/interface_assets/footer.php:1378 -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1518 -#: application/views/interface_assets/footer.php:1522 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1174 +#, php-format +msgid "You're not logged it. Please login" +msgstr "" + +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1384 +#: application/views/interface_assets/footer.php:1387 +#: application/views/interface_assets/footer.php:1524 +#: application/views/interface_assets/footer.php:1528 +#: application/views/interface_assets/footer.php:1531 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1387 +#: application/views/interface_assets/footer.php:1531 msgid "Total count" msgstr "" +#: application/views/interface_assets/footer.php:2118 +msgid "QSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2138 +msgid "Warning! Are you sure you want to delete this QSL card?" +msgstr "" + +#: application/views/interface_assets/footer.php:2178 +#: application/views/view_log/qso.php:42 +msgid "eQSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2180 +msgid "eQSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2353 +#: application/views/interface_assets/footer.php:2392 +#: application/views/view_log/qso.php:604 +msgid "QSL image file" +msgstr "" + +#: application/views/interface_assets/footer.php:2372 +msgid "Front QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2410 +msgid "Back QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2421 +#: application/views/interface_assets/footer.php:2446 +msgid "Add additional QSOs to a QSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2457 +msgid "Something went wrong. Please try again!" +msgstr "" + #: application/views/interface_assets/header.php:86 msgid "Developer Mode" msgstr "" @@ -6535,12 +6667,12 @@ msgstr "" #: application/views/qso/edit_ajax.php:495 #: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:190 -#: application/views/station_profile/create.php:198 +#: application/views/station_profile/create.php:209 #: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:256 -#: application/views/station_profile/create.php:267 -#: application/views/station_profile/create.php:274 +#: application/views/station_profile/create.php:236 +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/create.php:286 +#: application/views/station_profile/create.php:293 #: application/views/station_profile/edit.php:330 #: application/views/station_profile/edit.php:338 #: application/views/station_profile/edit.php:364 @@ -6573,12 +6705,12 @@ msgstr "Да" #: application/views/qso/edit_ajax.php:494 #: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/create.php:199 +#: application/views/station_profile/create.php:210 #: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/create.php:266 -#: application/views/station_profile/create.php:273 +#: application/views/station_profile/create.php:237 +#: application/views/station_profile/create.php:276 +#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:292 #: application/views/station_profile/edit.php:331 #: application/views/station_profile/edit.php:339 #: application/views/station_profile/edit.php:365 @@ -8181,7 +8313,7 @@ msgid "Search DXCluster for latest Spot" msgstr "" #: application/views/qso/index.php:196 application/views/qso/index.php:439 -#: application/views/station_profile/create.php:130 +#: application/views/station_profile/create.php:149 #: application/views/station_profile/edit.php:191 #: application/views/user/edit.php:583 application/views/view_log/qso.php:282 #: application/views/view_log/qso.php:549 @@ -8189,7 +8321,7 @@ msgid "IOTA Reference" msgstr "IOTA референция" #: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:146 +#: application/views/station_profile/create.php:165 #: application/views/station_profile/edit.php:219 #: application/views/user/edit.php:587 application/views/view_log/qso.php:289 #: application/views/view_log/qso.php:556 @@ -8449,26 +8581,14 @@ msgstr "" msgid "Save query" msgstr "" -#: application/views/search/filter.php:46 -msgid "Edit queries" -msgstr "" - #: application/views/search/filter.php:50 msgid "Stored queries" msgstr "" -#: application/views/search/filter.php:60 -msgid "Run Query" -msgstr "" - #: application/views/search/filter.php:69 msgid "search filter functions" msgstr "" -#: application/views/search/filter.php:79 -msgid "Export to ADIF" -msgstr "" - #: application/views/search/filter.php:79 msgid "Search Results" msgstr "" @@ -8786,115 +8906,115 @@ msgid "" "of our Wiki." msgstr "" -#: application/views/station_profile/create.php:32 +#: application/views/station_profile/create.php:51 #: application/views/station_profile/edit.php:40 msgid "Location Name" msgstr "" -#: application/views/station_profile/create.php:33 -#: application/views/station_profile/create.php:34 +#: application/views/station_profile/create.php:52 +#: application/views/station_profile/create.php:53 #: application/views/station_profile/edit.php:42 msgctxt "Station Location Setup" msgid "Home QTH" msgstr "" -#: application/views/station_profile/create.php:34 +#: application/views/station_profile/create.php:53 #: application/views/station_profile/edit.php:42 #, php-format msgid "Shortname for the station location. For example: %s" msgstr "" -#: application/views/station_profile/create.php:40 +#: application/views/station_profile/create.php:59 #: application/views/station_profile/edit.php:48 msgid "Station callsign. For example: 4W7EST/P" msgstr "" -#: application/views/station_profile/create.php:44 +#: application/views/station_profile/create.php:63 #: application/views/station_profile/edit.php:52 msgid "Station Power (W)" msgstr "" -#: application/views/station_profile/create.php:46 +#: application/views/station_profile/create.php:65 #: application/views/station_profile/edit.php:54 msgid "Default station power in Watt. Overwritten by CAT." msgstr "" -#: application/views/station_profile/create.php:49 +#: application/views/station_profile/create.php:68 #: application/views/station_profile/edit.php:69 msgid "Station DXCC" msgstr "" -#: application/views/station_profile/create.php:52 +#: application/views/station_profile/create.php:71 #: application/views/station_profile/edit.php:72 msgctxt "DXCC selection" msgid "None" msgstr "" -#: application/views/station_profile/create.php:59 +#: application/views/station_profile/create.php:78 #: application/views/station_profile/edit.php:85 msgid "Station DXCC entity. For example: Bolivia" msgstr "" -#: application/views/station_profile/create.php:64 +#: application/views/station_profile/create.php:83 #: application/views/station_profile/edit.php:91 msgid "Station City" msgstr "" -#: application/views/station_profile/create.php:66 +#: application/views/station_profile/create.php:85 #: application/views/station_profile/edit.php:93 msgid "Station city. For example: Oslo" msgstr "" -#: application/views/station_profile/create.php:75 +#: application/views/station_profile/create.php:94 #: application/views/station_profile/edit.php:105 msgid "Station state. Applies to certain countries only." msgstr "" -#: application/views/station_profile/create.php:80 +#: application/views/station_profile/create.php:99 #: application/views/station_profile/edit.php:110 msgid "Station County" msgstr "" -#: application/views/station_profile/create.php:82 +#: application/views/station_profile/create.php:101 #: application/views/station_profile/edit.php:112 msgid "Station County (Only used for USA/Alaska/Hawaii)." msgstr "" -#: application/views/station_profile/create.php:97 +#: application/views/station_profile/create.php:116 #: application/views/station_profile/edit.php:138 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your CQ Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:97 -#: application/views/station_profile/create.php:111 -#: application/views/station_profile/create.php:125 +#: application/views/station_profile/create.php:116 +#: application/views/station_profile/create.php:130 +#: application/views/station_profile/create.php:144 #: application/views/station_profile/edit.php:138 #: application/views/station_profile/edit.php:155 #: application/views/station_profile/edit.php:179 msgid "click here" msgstr "" -#: application/views/station_profile/create.php:111 +#: application/views/station_profile/create.php:130 #: application/views/station_profile/edit.php:155 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your ITU Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:116 +#: application/views/station_profile/create.php:135 #: application/views/station_profile/edit.php:167 #: application/views/station_profile/edit.php:170 msgid "Station Gridsquare" msgstr "" -#: application/views/station_profile/create.php:121 +#: application/views/station_profile/create.php:140 #: application/views/station_profile/edit.php:175 msgid "Get Gridsquare" msgstr "" -#: application/views/station_profile/create.php:125 +#: application/views/station_profile/create.php:144 #: application/views/station_profile/edit.php:179 #, php-format msgctxt "uses 'click here'" @@ -8903,57 +9023,57 @@ msgid "" "then %s!" msgstr "" -#: application/views/station_profile/create.php:126 +#: application/views/station_profile/create.php:145 #: application/views/station_profile/edit.php:180 msgid "" "If you are located on a grid line, enter multiple grid squares separated " "with commas. For example: IO77,IO78,IO87,IO88." msgstr "" -#: application/views/station_profile/create.php:141 +#: application/views/station_profile/create.php:160 #: application/views/station_profile/edit.php:205 msgid "Station IOTA reference. For example: EU-005" msgstr "" -#: application/views/station_profile/create.php:142 +#: application/views/station_profile/create.php:161 #: application/views/station_profile/edit.php:206 msgid "IOTA World website" msgstr "" -#: application/views/station_profile/create.php:142 +#: application/views/station_profile/create.php:161 #: application/views/station_profile/edit.php:206 #, php-format msgid "You can look up IOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:148 +#: application/views/station_profile/create.php:167 #: application/views/station_profile/edit.php:221 msgid "SOTA Maps website" msgstr "" -#: application/views/station_profile/create.php:148 +#: application/views/station_profile/create.php:167 #: application/views/station_profile/edit.php:221 #, php-format msgid "Station SOTA reference. You can look up SOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:154 +#: application/views/station_profile/create.php:173 #: application/views/station_profile/edit.php:234 msgid "GMA Map website" msgstr "" -#: application/views/station_profile/create.php:154 +#: application/views/station_profile/create.php:173 #: application/views/station_profile/edit.php:234 #, php-format msgid "Station WWFF reference. You can look up WWFF references at the %s." msgstr "" -#: application/views/station_profile/create.php:160 +#: application/views/station_profile/create.php:179 #: application/views/station_profile/edit.php:247 msgid "POTA Map website" msgstr "" -#: application/views/station_profile/create.php:160 +#: application/views/station_profile/create.php:179 #: application/views/station_profile/edit.php:247 #, php-format msgid "" @@ -8961,55 +9081,55 @@ msgid "" "look up POTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:164 +#: application/views/station_profile/create.php:183 #: application/views/station_profile/edit.php:260 msgid "Signature Name" msgstr "" -#: application/views/station_profile/create.php:166 +#: application/views/station_profile/create.php:185 #: application/views/station_profile/edit.php:262 msgid "Station Signature (e.g. GMA).." msgstr "" -#: application/views/station_profile/create.php:170 +#: application/views/station_profile/create.php:189 #: application/views/station_profile/edit.php:266 msgid "Signature Information" msgstr "" -#: application/views/station_profile/create.php:172 +#: application/views/station_profile/create.php:191 #: application/views/station_profile/edit.php:268 msgid "Station Signature Info (e.g. DA/NW-357)." msgstr "" -#: application/views/station_profile/create.php:176 +#: application/views/station_profile/create.php:195 #: application/views/station_profile/edit.php:281 msgctxt "Probably no translation needed" msgid "eQSL QTH Nickname" msgstr "" -#: application/views/station_profile/create.php:178 +#: application/views/station_profile/create.php:197 #: application/views/station_profile/edit.php:283 msgid "The QTH Nickname which is configured in your eQSL Profile" msgstr "" -#: application/views/station_profile/create.php:182 +#: application/views/station_profile/create.php:201 #: application/views/station_profile/edit.php:286 msgid "Default QSLMSG" msgstr "" -#: application/views/station_profile/create.php:185 +#: application/views/station_profile/create.php:204 #: application/views/station_profile/edit.php:289 msgid "" "Define a default message that will be populated and sent for each QSO for " "this station location." msgstr "" -#: application/views/station_profile/create.php:188 +#: application/views/station_profile/create.php:207 #: application/views/station_profile/edit.php:328 msgid "Ignore Clublog Upload" msgstr "" -#: application/views/station_profile/create.php:193 +#: application/views/station_profile/create.php:212 #: application/views/station_profile/edit.php:333 msgid "" "If enabled, the QSOs made from this location will not be uploaded to " @@ -9017,124 +9137,124 @@ msgid "" "properly configured at Clublog" msgstr "" -#: application/views/station_profile/create.php:196 +#: application/views/station_profile/create.php:215 #: application/views/station_profile/edit.php:336 msgid "ClubLog Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:205 +#: application/views/station_profile/create.php:224 #: application/views/station_profile/edit.php:352 msgid "HRDLog.net Username" msgstr "" -#: application/views/station_profile/create.php:207 +#: application/views/station_profile/create.php:226 #: application/views/station_profile/edit.php:354 msgid "" "The username you are registered with at HRDlog.net (usually your callsign)." msgstr "" -#: application/views/station_profile/create.php:210 +#: application/views/station_profile/create.php:229 #: application/views/station_profile/edit.php:357 msgid "HRDLog.net API Key" msgstr "" -#: application/views/station_profile/create.php:212 +#: application/views/station_profile/create.php:231 #: application/views/station_profile/edit.php:359 #, php-format msgctxt "HRDLog.net Userprofile page" msgid "Create your API Code on your %s" msgstr "" -#: application/views/station_profile/create.php:212 +#: application/views/station_profile/create.php:231 #: application/views/station_profile/edit.php:359 msgid "HRDLog.net Userprofile page" msgstr "" -#: application/views/station_profile/create.php:215 +#: application/views/station_profile/create.php:234 #: application/views/station_profile/edit.php:362 msgid "HRDLog.net Logbook Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:224 +#: application/views/station_profile/create.php:243 #: application/views/station_profile/edit.php:297 msgid "Subscription Required" msgstr "" -#: application/views/station_profile/create.php:229 +#: application/views/station_profile/create.php:248 msgctxt "Probably no translation needed" msgid "QRZ.com Logbook API Key" msgstr "" -#: application/views/station_profile/create.php:232 +#: application/views/station_profile/create.php:251 msgid "Test API-Key" msgstr "" -#: application/views/station_profile/create.php:235 +#: application/views/station_profile/create.php:254 #: application/views/station_profile/edit.php:306 #, php-format msgctxt "the QRZ.com Logbook settings page" msgid "Find your API key on %s" msgstr "" -#: application/views/station_profile/create.php:235 +#: application/views/station_profile/create.php:254 #: application/views/station_profile/edit.php:306 msgid "the QRZ.com Logbook settings page" msgstr "" -#: application/views/station_profile/create.php:238 +#: application/views/station_profile/create.php:257 #: application/views/station_profile/edit.php:310 msgid "QRZ.com Logbook Upload" msgstr "" -#: application/views/station_profile/create.php:241 +#: application/views/station_profile/create.php:260 #: application/views/station_profile/edit.php:313 msgid "Realtime" msgstr "" -#: application/views/station_profile/create.php:249 +#: application/views/station_profile/create.php:268 #: application/views/station_profile/edit.php:378 msgctxt "Probably no translation needed" msgid "QO-100 Dx Club API Key" msgstr "" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:270 #: application/views/station_profile/edit.php:380 #, php-format msgctxt "QO-100 Dx Club's profile page" msgid "Create your API key on your %s" msgstr "" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:270 #: application/views/station_profile/edit.php:380 msgid "QO-100 Dx Club's profile page" msgstr "" -#: application/views/station_profile/create.php:254 +#: application/views/station_profile/create.php:273 #: application/views/station_profile/edit.php:383 msgid "QO-100 Dx Club Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:264 +#: application/views/station_profile/create.php:283 #: application/views/station_profile/edit.php:401 msgid "OQRS Enabled" msgstr "" -#: application/views/station_profile/create.php:271 +#: application/views/station_profile/create.php:290 #: application/views/station_profile/edit.php:408 msgid "OQRS Email alert" msgstr "" -#: application/views/station_profile/create.php:276 +#: application/views/station_profile/create.php:295 #: application/views/station_profile/edit.php:413 msgid "Make sure email is set up under admin and global options." msgstr "" -#: application/views/station_profile/create.php:279 +#: application/views/station_profile/create.php:298 #: application/views/station_profile/edit.php:416 msgid "OQRS Text" msgstr "" -#: application/views/station_profile/create.php:281 +#: application/views/station_profile/create.php:300 #: application/views/station_profile/edit.php:418 msgid "Some info you want to add regarding QSL'ing." msgstr "" @@ -10170,10 +10290,6 @@ msgstr "Подробности за QSO" msgid "QSL Management" msgstr "Управление на QSL" -#: application/views/view_log/qso.php:42 -msgid "eQSL Card" -msgstr "" - #: application/views/view_log/qso.php:128 msgid "Total Distance" msgstr "Общо разстояние" @@ -10245,10 +10361,6 @@ msgstr "" msgid "Details" msgstr "" -#: application/views/view_log/qso.php:604 -msgid "QSL image file" -msgstr "" - #: application/views/view_log/qso.php:630 msgid "Uploaded QSL Card front image" msgstr "Качване на лице на QSL картичка" diff --git a/application/locale/cs_CZ/LC_MESSAGES/messages.mo b/application/locale/cs_CZ/LC_MESSAGES/messages.mo index 1f1e46ad0..297637b92 100644 Binary files a/application/locale/cs_CZ/LC_MESSAGES/messages.mo and b/application/locale/cs_CZ/LC_MESSAGES/messages.mo differ diff --git a/application/locale/cs_CZ/LC_MESSAGES/messages.po b/application/locale/cs_CZ/LC_MESSAGES/messages.po index bfb3392c0..5bf927c83 100644 --- a/application/locale/cs_CZ/LC_MESSAGES/messages.po +++ b/application/locale/cs_CZ/LC_MESSAGES/messages.po @@ -3,12 +3,13 @@ # This file is distributed under the MIT licence. # # Ondřej Koloničný , 2024. +# Michal Šiman , 2024. msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-01 15:48+0000\n" -"PO-Revision-Date: 2024-07-22 07:07+0000\n" -"Last-Translator: Ondřej Koloničný \n" +"POT-Creation-Date: 2024-08-06 18:03+0000\n" +"PO-Revision-Date: 2024-08-06 09:50+0000\n" +"Last-Translator: Michal Šiman \n" "Language-Team: Czech \n" "Language: cs_CZ\n" @@ -66,11 +67,11 @@ msgstr "" #: application/controllers/Adif.php:18 msgid "valid date" -msgstr "" +msgstr "platné datum" #: application/controllers/Adif.php:20 msgid "date incorrect" -msgstr "" +msgstr "špatné datum" #: application/controllers/Adif.php:29 application/views/adif/import.php:24 msgid "ADIF Export" @@ -143,7 +144,7 @@ msgstr "Klíč nebyl nalezen" #: application/controllers/Api.php:120 msgid "Key Invalid - either not found or disabled" -msgstr "" +msgstr "Neplatný klíč - nebyl nalezen nebo je zakázán" #: application/controllers/Api.php:124 #: application/views/lotw_views/index.php:95 @@ -237,7 +238,7 @@ msgstr "" #: application/controllers/Timeline.php:104 #: application/controllers/Timeline.php:107 msgid "Log View" -msgstr "" +msgstr "Zobrazení deníku" #: application/controllers/Awards.php:457 msgid " and sat " @@ -459,17 +460,17 @@ msgstr "" msgid "Contest Calendar" msgstr "" -#: application/controllers/Contesting.php:36 +#: application/controllers/Contesting.php:46 #: application/views/contesting/index.php:3 msgid "Contest Logging" msgstr "Závodní deník" -#: application/controllers/Contesting.php:101 +#: application/controllers/Contesting.php:111 #: application/views/interface_assets/header.php:268 msgid "Contests" msgstr "Závody" -#: application/controllers/Contesting.php:115 +#: application/controllers/Contesting.php:125 msgid "Update Contest" msgstr "" @@ -503,42 +504,42 @@ msgstr "" msgid "Number of days with QSOs each year" msgstr "" -#: application/controllers/Debug.php:91 +#: application/controllers/Debug.php:93 msgid "Debug" msgstr "" -#: application/controllers/Debug.php:130 +#: application/controllers/Debug.php:132 msgid "Migrate data now" msgstr "" -#: application/controllers/Debug.php:133 +#: application/controllers/Debug.php:135 msgid "Migration already done. Run again?" msgstr "" -#: application/controllers/Debug.php:137 +#: application/controllers/Debug.php:139 msgid "No data to migrate" msgstr "" -#: application/controllers/Debug.php:141 application/controllers/Debug.php:146 +#: application/controllers/Debug.php:143 application/controllers/Debug.php:148 msgid "No migration possible" msgstr "" -#: application/controllers/Debug.php:211 +#: application/controllers/Debug.php:213 msgid "Wavelog was updated successfully!" msgstr "" -#: application/controllers/Debug.php:229 +#: application/controllers/Debug.php:231 msgid "Selfupdate() not available. Check the Error Log." msgstr "" -#: application/controllers/Debug.php:273 +#: application/controllers/Debug.php:275 msgid "" "File Migration was successfull, but please check also manually. If " "everything seems right you can delete the folders 'assets/qslcard' and " "'images/eqsl_card_images'." msgstr "" -#: application/controllers/Debug.php:276 +#: application/controllers/Debug.php:278 msgid "File Migration failed. Please check the Error Log." msgstr "" @@ -912,7 +913,7 @@ msgstr "" #: application/views/contesting/index.php:203 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:547 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:548 application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 #: application/views/eqsl/download.php:39 application/views/eqsl/result.php:36 #: application/views/eqslcard/index.php:29 @@ -1186,7 +1187,7 @@ msgstr "Vzdálenost" #: application/views/contesting/index.php:202 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:548 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:549 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 @@ -1289,7 +1290,7 @@ msgstr "Operátor" #: application/views/lotw_views/index.php:56 #: application/views/qso/components/previous_contacts.php:59 #: application/views/qso/edit_ajax.php:230 application/views/qso/index.php:368 -#: application/views/station_profile/create.php:54 +#: application/views/station_profile/create.php:73 #: application/views/station_profile/edit.php:78 #: application/views/station_profile/index.php:65 #: application/views/stationsetup/linkedlocations.php:17 @@ -1534,7 +1535,7 @@ msgstr "" msgid "Print Requested QSLs" msgstr "Tisk žádaných QSL" -#: application/controllers/Qso.php:91 +#: application/controllers/Qso.php:101 msgid "Add QSO" msgstr "" @@ -1617,7 +1618,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:18 #: application/views/qslprint/index.php:20 application/views/qso/index.php:300 #: application/views/search/search_result_ajax.php:18 -#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:304 #: application/views/station_profile/edit.php:427 #: application/views/user/edit.php:331 #: application/views/view_log/partial/log_ajax.php:18 @@ -1692,7 +1693,7 @@ msgstr "" #: application/views/options/appearance.php:92 #: application/views/options/appearance.php:101 #: application/views/options/version_dialog.php:66 -#: application/views/station_profile/create.php:240 +#: application/views/station_profile/create.php:259 #: application/views/station_profile/edit.php:312 #: application/views/stationsetup/stationsetup.php:76 #: application/views/user/edit.php:451 application/views/user/edit.php:460 @@ -1758,8 +1759,10 @@ msgstr "" #: application/controllers/Stationsetup.php:359 #: application/views/api/help.php:57 application/views/contesting/add.php:59 -#: application/views/cron/index.php:56 application/views/labels/index.php:47 -#: application/views/labels/index.php:83 +#: application/views/cron/index.php:56 +#: application/views/interface_assets/footer.php:535 +#: application/views/interface_assets/footer.php:544 +#: application/views/labels/index.php:47 application/views/labels/index.php:83 #: application/views/logbookadvanced/index.php:513 #: application/views/mode/index.php:52 application/views/satellite/edit.php:39 #: application/views/satellite/index.php:25 @@ -1805,6 +1808,10 @@ msgstr "" #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 +#: application/views/interface_assets/footer.php:2341 +#: application/views/interface_assets/footer.php:2359 +#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2398 #: application/views/labels/index.php:48 application/views/labels/index.php:84 #: application/views/logbookadvanced/index.php:514 #: application/views/lotw_views/index.php:118 @@ -2205,9 +2212,12 @@ msgstr "" #: application/views/gridmap/index.php:28 #: application/views/gridmap/index.php:41 #: application/views/gridmap/index.php:70 -#: application/views/gridmap/index.php:83 application/views/kml/index.php:21 -#: application/views/kml/index.php:33 application/views/kml/index.php:49 -#: application/views/kml/index.php:67 application/views/kml/index.php:79 +#: application/views/gridmap/index.php:83 +#: application/views/interface_assets/footer.php:1453 +#: application/views/interface_assets/footer.php:1592 +#: application/views/kml/index.php:21 application/views/kml/index.php:33 +#: application/views/kml/index.php:49 application/views/kml/index.php:67 +#: application/views/kml/index.php:79 #: application/views/logbookadvanced/index.php:172 #: application/views/logbookadvanced/index.php:183 #: application/views/logbookadvanced/index.php:194 @@ -2514,7 +2524,7 @@ msgstr "" #: application/views/contesting/index.php:42 #: application/views/contesting/index.php:200 #: application/views/dashboard/index.php:147 -#: application/views/debug/index.php:544 application/views/eqsl/analysis.php:36 +#: application/views/debug/index.php:545 application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 #: application/views/eqslcard/index.php:30 #: application/views/hamsat/index.php:28 @@ -2556,7 +2566,7 @@ msgstr "Datum" #: application/views/contesting/index.php:47 #: application/views/contesting/index.php:200 #: application/views/dashboard/index.php:150 -#: application/views/debug/index.php:545 application/views/eqsl/analysis.php:37 +#: application/views/debug/index.php:546 application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 #: application/views/eqslcard/index.php:31 #: application/views/hamsat/index.php:29 application/views/oqrs/qsolist.php:8 @@ -2582,7 +2592,7 @@ msgstr "Čas" #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 #: application/views/contesting/index.php:201 -#: application/views/debug/index.php:546 application/views/debug/index.php:581 +#: application/views/debug/index.php:547 application/views/debug/index.php:582 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -2633,8 +2643,8 @@ msgid "Maximum file upload size is " msgstr "" #: application/views/adif/import.php:56 application/views/adif/import.php:220 -#: application/views/adif/import.php:258 application/views/debug/index.php:174 -#: application/views/debug/index.php:191 application/views/debug/index.php:536 +#: application/views/adif/import.php:258 application/views/debug/index.php:175 +#: application/views/debug/index.php:192 application/views/debug/index.php:537 #: application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:34 @@ -2708,6 +2718,8 @@ msgstr "" #: application/views/adif/import.php:152 #: application/views/interface_assets/footer.php:32 +#: application/views/interface_assets/footer.php:495 +#: application/views/interface_assets/footer.php:2137 msgid "DANGER" msgstr "" @@ -2880,6 +2892,7 @@ msgstr "" #: application/views/bands/create.php:49 application/views/bands/edit.php:31 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 #: application/views/interface_assets/footer.php:43 +#: application/views/interface_assets/footer.php:530 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:107 #: application/views/options/dxcluster.php:67 @@ -3216,6 +3229,7 @@ msgstr "" #: application/views/awards/cq/index.php:54 #: application/views/awards/itu/index.php:54 +#: application/views/interface_assets/footer.php:2116 #: application/views/qso/edit_ajax.php:378 #: application/views/view_log/qso.php:25 msgid "QSL Card" @@ -3280,7 +3294,7 @@ msgstr "" #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:272 #: application/views/qso/index.php:390 #: application/views/search/cqzones_result.php:13 -#: application/views/station_profile/create.php:87 +#: application/views/station_profile/create.php:106 #: application/views/station_profile/edit.php:126 #: application/views/timeline/index.php:231 #: application/views/timeplotter/index.php:44 @@ -3703,7 +3717,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:246 #: application/views/logbookadvanced/index.php:589 #: application/views/logbookadvanced/useroptions.php:94 -#: application/views/station_profile/create.php:101 +#: application/views/station_profile/create.php:120 #: application/views/station_profile/edit.php:143 msgid "ITU Zone" msgstr "" @@ -3788,7 +3802,7 @@ msgstr "" #: application/views/awards/pota/index.php:31 #: application/views/qso/index.php:236 application/views/qso/index.php:482 -#: application/views/station_profile/create.php:158 +#: application/views/station_profile/create.php:177 #: application/views/station_profile/edit.php:245 #: application/views/user/edit.php:595 application/views/view_log/qso.php:303 #: application/views/view_log/qso.php:570 @@ -4019,7 +4033,7 @@ msgstr "" #: application/views/awards/wwff/index.php:31 #: application/views/qso/index.php:224 application/views/qso/index.php:469 -#: application/views/station_profile/create.php:152 +#: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:232 #: application/views/user/edit.php:591 application/views/view_log/qso.php:296 #: application/views/view_log/qso.php:563 @@ -4537,7 +4551,7 @@ msgid "Name of Contest in ADIF-specification" msgstr "" #: application/views/contesting/create.php:35 -#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:304 #: application/views/station_profile/edit.php:28 msgid "Create" msgstr "" @@ -4682,7 +4696,7 @@ msgstr "" #: application/views/options/appearance.php:82 #: application/views/options/appearance.php:91 #: application/views/options/appearance.php:100 -#: application/views/station_profile/create.php:242 +#: application/views/station_profile/create.php:261 #: application/views/station_profile/edit.php:314 #: application/views/stationsetup/stationsetup.php:73 #: application/views/user/edit.php:452 application/views/user/edit.php:461 @@ -4801,10 +4815,10 @@ msgid "disabled" msgstr "" #: application/views/cron/index.php:79 application/views/cron/index.php:81 -#: application/views/cron/index.php:83 application/views/debug/index.php:493 -#: application/views/debug/index.php:499 application/views/debug/index.php:504 -#: application/views/debug/index.php:509 application/views/debug/index.php:514 -#: application/views/debug/index.php:519 application/views/debug/index.php:524 +#: application/views/cron/index.php:83 application/views/debug/index.php:494 +#: application/views/debug/index.php:500 application/views/debug/index.php:505 +#: application/views/debug/index.php:510 application/views/debug/index.php:515 +#: application/views/debug/index.php:520 application/views/debug/index.php:525 msgid "never" msgstr "" @@ -5258,242 +5272,249 @@ msgstr "" #, php-format msgid "" "The current migration is not the version it is supposed to be. Reload this " -"page. If this warning persists, your migration is probably locked due to a " -"past failed process. Check the folder %s for a file called %s and remove " -"this file to force the migration to run again." +"page after %s seconds. If this warning persists, your migration is likely " +"locked due to a previously failed process. Delete the file %s to force the " +"migration to run again." msgstr "" #: application/views/debug/index.php:47 #, php-format -msgid "Current migration is %s" +msgid "" +"Check this wiki article here for " +"more information." msgstr "" #: application/views/debug/index.php:48 #, php-format +msgid "Current migration is %s" +msgstr "" + +#: application/views/debug/index.php:49 +#, php-format msgid "Migration should be %s" msgstr "" -#: application/views/debug/index.php:53 +#: application/views/debug/index.php:54 msgid "Environment" msgstr "" -#: application/views/debug/index.php:61 +#: application/views/debug/index.php:62 msgid "Total QSO on this instance" msgstr "" -#: application/views/debug/index.php:69 +#: application/views/debug/index.php:70 msgid "Server Information" msgstr "" -#: application/views/debug/index.php:73 +#: application/views/debug/index.php:74 msgid "Server Software" msgstr "" -#: application/views/debug/index.php:78 +#: application/views/debug/index.php:79 msgid "PHP Version" msgstr "" -#: application/views/debug/index.php:84 +#: application/views/debug/index.php:85 msgid "Deprecated" msgstr "" -#: application/views/debug/index.php:91 +#: application/views/debug/index.php:92 msgid "MySQL Version" msgstr "" -#: application/views/debug/index.php:95 +#: application/views/debug/index.php:96 msgid "Codeigniter Version" msgstr "" -#: application/views/debug/index.php:103 +#: application/views/debug/index.php:104 msgid "Folder Permissions" msgstr "" -#: application/views/debug/index.php:105 +#: application/views/debug/index.php:106 msgid "" "This verifies that the folders used by Wavelog have read and write " "permissions by PHP." msgstr "" -#: application/views/debug/index.php:111 application/views/debug/index.php:122 -#: application/views/debug/index.php:133 application/views/debug/index.php:144 -#: application/views/debug/index.php:156 +#: application/views/debug/index.php:112 application/views/debug/index.php:123 +#: application/views/debug/index.php:134 application/views/debug/index.php:145 +#: application/views/debug/index.php:157 msgid "Success" msgstr "" -#: application/views/debug/index.php:113 application/views/debug/index.php:124 -#: application/views/debug/index.php:135 application/views/debug/index.php:146 -#: application/views/debug/index.php:158 +#: application/views/debug/index.php:114 application/views/debug/index.php:125 +#: application/views/debug/index.php:136 application/views/debug/index.php:147 +#: application/views/debug/index.php:159 msgid "Failed" msgstr "" -#: application/views/debug/index.php:168 +#: application/views/debug/index.php:169 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:174 +#: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" -#: application/views/debug/index.php:176 application/views/debug/index.php:193 +#: application/views/debug/index.php:177 application/views/debug/index.php:194 #, php-format msgid "Please edit your %s File:" msgstr "" -#: application/views/debug/index.php:177 +#: application/views/debug/index.php:178 msgid "" "Go to your application/config Folder and compare config.sample.php with your " "config.php" msgstr "" -#: application/views/debug/index.php:178 +#: application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:184 +#: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" msgstr "" -#: application/views/debug/index.php:184 application/views/debug/index.php:201 +#: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" msgstr "" -#: application/views/debug/index.php:191 +#: application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "" -#: application/views/debug/index.php:194 +#: application/views/debug/index.php:195 msgid "This will also enable the 'Keep me logged in' feature." msgstr "" -#: application/views/debug/index.php:195 +#: application/views/debug/index.php:196 #, php-format msgid "" "Change the value of %s to a new encryption key other then " "'flossie1234555541'. Choose a safe and long password. (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:201 +#: application/views/debug/index.php:202 msgid "You do not use the default encryption key" msgstr "" -#: application/views/debug/index.php:208 +#: application/views/debug/index.php:209 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:210 +#: application/views/debug/index.php:211 msgid "" "Here you can migrate existing QSL cards and eQSL cards to the new userdata " "folder." msgstr "" -#: application/views/debug/index.php:223 +#: application/views/debug/index.php:224 msgid "Modules" msgstr "" -#: application/views/debug/index.php:229 application/views/debug/index.php:240 -#: application/views/debug/index.php:251 application/views/debug/index.php:262 -#: application/views/debug/index.php:273 +#: application/views/debug/index.php:230 application/views/debug/index.php:241 +#: application/views/debug/index.php:252 application/views/debug/index.php:263 +#: application/views/debug/index.php:274 msgid "Installed" msgstr "" -#: application/views/debug/index.php:231 application/views/debug/index.php:242 -#: application/views/debug/index.php:253 application/views/debug/index.php:264 -#: application/views/debug/index.php:275 +#: application/views/debug/index.php:232 application/views/debug/index.php:243 +#: application/views/debug/index.php:254 application/views/debug/index.php:265 +#: application/views/debug/index.php:276 msgid "Not Installed" msgstr "" -#: application/views/debug/index.php:282 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:654 msgid "Settings" msgstr "" -#: application/views/debug/index.php:411 +#: application/views/debug/index.php:412 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:415 +#: application/views/debug/index.php:416 msgid "Branch" msgstr "" -#: application/views/debug/index.php:426 application/views/debug/index.php:437 -#: application/views/debug/index.php:447 +#: application/views/debug/index.php:427 application/views/debug/index.php:438 +#: application/views/debug/index.php:448 msgid "n/a" msgstr "" -#: application/views/debug/index.php:432 +#: application/views/debug/index.php:433 msgid "Commit" msgstr "" -#: application/views/debug/index.php:442 +#: application/views/debug/index.php:443 msgid "Tag" msgstr "" -#: application/views/debug/index.php:452 +#: application/views/debug/index.php:453 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:464 +#: application/views/debug/index.php:465 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:466 msgid "Update now" msgstr "" -#: application/views/debug/index.php:483 +#: application/views/debug/index.php:484 msgid "File download date" msgstr "" -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:488 msgid "File" msgstr "" -#: application/views/debug/index.php:488 +#: application/views/debug/index.php:489 msgid "Last update" msgstr "" -#: application/views/debug/index.php:492 +#: application/views/debug/index.php:493 msgid "DXCC update from Club Log" msgstr "" -#: application/views/debug/index.php:494 application/views/debug/index.php:500 -#: application/views/debug/index.php:505 application/views/debug/index.php:510 -#: application/views/debug/index.php:515 application/views/debug/index.php:520 -#: application/views/debug/index.php:525 +#: application/views/debug/index.php:495 application/views/debug/index.php:501 +#: application/views/debug/index.php:506 application/views/debug/index.php:511 +#: application/views/debug/index.php:516 application/views/debug/index.php:521 +#: application/views/debug/index.php:526 #: application/views/station_profile/edit.php:22 msgid "Update" msgstr "" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:499 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:503 +#: application/views/debug/index.php:504 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:508 +#: application/views/debug/index.php:509 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:513 +#: application/views/debug/index.php:514 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:518 +#: application/views/debug/index.php:519 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:523 +#: application/views/debug/index.php:524 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:532 +#: application/views/debug/index.php:533 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:537 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -5502,9 +5523,9 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: application/views/debug/index.php:549 +#: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:38 +#: application/views/station_profile/create.php:57 #: application/views/station_profile/edit.php:46 #: application/views/station_profile/index.php:42 #: application/views/stationsetup/linkedlocations.php:32 @@ -5512,88 +5533,88 @@ msgstr[2] "" msgid "Station Callsign" msgstr "" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:582 +#: application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:583 application/views/debug/index.php:594 +#: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:628 +#: application/views/debug/index.php:629 msgid "Bulgarian" msgstr "" -#: application/views/debug/index.php:629 +#: application/views/debug/index.php:630 msgid "Chinese (Simplified)" msgstr "" -#: application/views/debug/index.php:630 +#: application/views/debug/index.php:631 msgid "Czech" msgstr "" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:632 msgid "Dutch" msgstr "" -#: application/views/debug/index.php:632 +#: application/views/debug/index.php:633 msgid "English" msgstr "" -#: application/views/debug/index.php:633 +#: application/views/debug/index.php:634 msgid "Finnish" msgstr "" -#: application/views/debug/index.php:634 +#: application/views/debug/index.php:635 msgid "French" msgstr "" -#: application/views/debug/index.php:635 +#: application/views/debug/index.php:636 msgid "German" msgstr "" -#: application/views/debug/index.php:636 +#: application/views/debug/index.php:637 msgid "Greek" msgstr "" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:638 msgid "Italian" msgstr "" -#: application/views/debug/index.php:638 +#: application/views/debug/index.php:639 msgid "Polish" msgstr "" -#: application/views/debug/index.php:639 +#: application/views/debug/index.php:640 msgid "Portuguese" msgstr "" -#: application/views/debug/index.php:640 +#: application/views/debug/index.php:641 msgid "Russian" msgstr "" -#: application/views/debug/index.php:641 +#: application/views/debug/index.php:642 msgid "Spanish" msgstr "" -#: application/views/debug/index.php:642 +#: application/views/debug/index.php:643 msgid "Swedish" msgstr "" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:644 msgid "Turkish" msgstr "" @@ -5812,6 +5833,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:60 +#: application/views/interface_assets/footer.php:2342 +#: application/views/interface_assets/footer.php:2360 +#: application/views/interface_assets/footer.php:2381 +#: application/views/interface_assets/footer.php:2399 #: application/views/qslcard/index.php:66 #: application/views/view_log/qso.php:614 msgid "View" @@ -5972,6 +5997,69 @@ msgstr "" msgid "Version Info" msgstr "" +#: application/views/interface_assets/footer.php:392 +msgid "Description:" +msgstr "" + +#: application/views/interface_assets/footer.php:395 +msgid "Query description" +msgstr "" + +#: application/views/interface_assets/footer.php:411 +msgid "Your query has been saved!" +msgstr "" + +#: application/views/interface_assets/footer.php:413 +#: application/views/search/filter.php:46 +msgid "Edit queries" +msgstr "" + +#: application/views/interface_assets/footer.php:415 +msgid "Stored queries:" +msgstr "" + +#: application/views/interface_assets/footer.php:420 +#: application/views/search/filter.php:60 +msgid "Run Query" +msgstr "" + +#: application/views/interface_assets/footer.php:432 +#: application/views/interface_assets/footer.php:561 +#: application/views/interface_assets/footer.php:625 +msgid "Stored Queries" +msgstr "" + +#: application/views/interface_assets/footer.php:437 +#: application/views/interface_assets/footer.php:630 +msgid "You need to make a query before you search!" +msgstr "" + +#: application/views/interface_assets/footer.php:458 +#: application/views/interface_assets/footer.php:589 +#: application/views/search/filter.php:79 +msgid "Export to ADIF" +msgstr "" + +#: application/views/interface_assets/footer.php:496 +msgid "Warning! Are you sure you want delete this stored query?" +msgstr "" + +#: application/views/interface_assets/footer.php:510 +msgid "The stored query has been deleted!" +msgstr "" + +#: application/views/interface_assets/footer.php:519 +msgid "The stored query could not be deleted. Please try again!" +msgstr "" + +#: application/views/interface_assets/footer.php:545 +msgid "The query description has been updated!" +msgstr "" + +#: application/views/interface_assets/footer.php:549 +msgid "Something went wrong with the save. Please try again!" +msgstr "" + #: application/views/interface_assets/footer.php:672 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " @@ -5979,20 +6067,65 @@ msgid "" "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:1374 -#: application/views/interface_assets/footer.php:1378 -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1518 -#: application/views/interface_assets/footer.php:1522 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1174 +#, php-format +msgid "You're not logged it. Please login" +msgstr "" + +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1384 +#: application/views/interface_assets/footer.php:1387 +#: application/views/interface_assets/footer.php:1524 +#: application/views/interface_assets/footer.php:1528 +#: application/views/interface_assets/footer.php:1531 msgid "grid square" msgstr "lokátor" -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1387 +#: application/views/interface_assets/footer.php:1531 msgid "Total count" msgstr "Celkový počet" +#: application/views/interface_assets/footer.php:2118 +msgid "QSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2138 +msgid "Warning! Are you sure you want to delete this QSL card?" +msgstr "" + +#: application/views/interface_assets/footer.php:2178 +#: application/views/view_log/qso.php:42 +msgid "eQSL Card" +msgstr "eQSL karta" + +#: application/views/interface_assets/footer.php:2180 +msgid "eQSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2353 +#: application/views/interface_assets/footer.php:2392 +#: application/views/view_log/qso.php:604 +msgid "QSL image file" +msgstr "" + +#: application/views/interface_assets/footer.php:2372 +msgid "Front QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2410 +msgid "Back QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2421 +#: application/views/interface_assets/footer.php:2446 +msgid "Add additional QSOs to a QSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2457 +msgid "Something went wrong. Please try again!" +msgstr "" + #: application/views/interface_assets/header.php:86 msgid "Developer Mode" msgstr "Režim vývojáře" @@ -6540,12 +6673,12 @@ msgstr "" #: application/views/qso/edit_ajax.php:495 #: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:190 -#: application/views/station_profile/create.php:198 +#: application/views/station_profile/create.php:209 #: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:256 -#: application/views/station_profile/create.php:267 -#: application/views/station_profile/create.php:274 +#: application/views/station_profile/create.php:236 +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/create.php:286 +#: application/views/station_profile/create.php:293 #: application/views/station_profile/edit.php:330 #: application/views/station_profile/edit.php:338 #: application/views/station_profile/edit.php:364 @@ -6578,12 +6711,12 @@ msgstr "Ano" #: application/views/qso/edit_ajax.php:494 #: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/create.php:199 +#: application/views/station_profile/create.php:210 #: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/create.php:266 -#: application/views/station_profile/create.php:273 +#: application/views/station_profile/create.php:237 +#: application/views/station_profile/create.php:276 +#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:292 #: application/views/station_profile/edit.php:331 #: application/views/station_profile/edit.php:339 #: application/views/station_profile/edit.php:365 @@ -8200,7 +8333,7 @@ msgid "Search DXCluster for latest Spot" msgstr "" #: application/views/qso/index.php:196 application/views/qso/index.php:439 -#: application/views/station_profile/create.php:130 +#: application/views/station_profile/create.php:149 #: application/views/station_profile/edit.php:191 #: application/views/user/edit.php:583 application/views/view_log/qso.php:282 #: application/views/view_log/qso.php:549 @@ -8208,7 +8341,7 @@ msgid "IOTA Reference" msgstr "IOTA označení" #: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:146 +#: application/views/station_profile/create.php:165 #: application/views/station_profile/edit.php:219 #: application/views/user/edit.php:587 application/views/view_log/qso.php:289 #: application/views/view_log/qso.php:556 @@ -8466,26 +8599,14 @@ msgstr "" msgid "Save query" msgstr "" -#: application/views/search/filter.php:46 -msgid "Edit queries" -msgstr "" - #: application/views/search/filter.php:50 msgid "Stored queries" msgstr "" -#: application/views/search/filter.php:60 -msgid "Run Query" -msgstr "" - #: application/views/search/filter.php:69 msgid "search filter functions" msgstr "" -#: application/views/search/filter.php:79 -msgid "Export to ADIF" -msgstr "" - #: application/views/search/filter.php:79 msgid "Search Results" msgstr "" @@ -8803,115 +8924,115 @@ msgid "" "of our Wiki." msgstr "" -#: application/views/station_profile/create.php:32 +#: application/views/station_profile/create.php:51 #: application/views/station_profile/edit.php:40 msgid "Location Name" msgstr "" -#: application/views/station_profile/create.php:33 -#: application/views/station_profile/create.php:34 +#: application/views/station_profile/create.php:52 +#: application/views/station_profile/create.php:53 #: application/views/station_profile/edit.php:42 msgctxt "Station Location Setup" msgid "Home QTH" msgstr "" -#: application/views/station_profile/create.php:34 +#: application/views/station_profile/create.php:53 #: application/views/station_profile/edit.php:42 #, php-format msgid "Shortname for the station location. For example: %s" msgstr "" -#: application/views/station_profile/create.php:40 +#: application/views/station_profile/create.php:59 #: application/views/station_profile/edit.php:48 msgid "Station callsign. For example: 4W7EST/P" msgstr "" -#: application/views/station_profile/create.php:44 +#: application/views/station_profile/create.php:63 #: application/views/station_profile/edit.php:52 msgid "Station Power (W)" msgstr "" -#: application/views/station_profile/create.php:46 +#: application/views/station_profile/create.php:65 #: application/views/station_profile/edit.php:54 msgid "Default station power in Watt. Overwritten by CAT." msgstr "" -#: application/views/station_profile/create.php:49 +#: application/views/station_profile/create.php:68 #: application/views/station_profile/edit.php:69 msgid "Station DXCC" msgstr "" -#: application/views/station_profile/create.php:52 +#: application/views/station_profile/create.php:71 #: application/views/station_profile/edit.php:72 msgctxt "DXCC selection" msgid "None" msgstr "" -#: application/views/station_profile/create.php:59 +#: application/views/station_profile/create.php:78 #: application/views/station_profile/edit.php:85 msgid "Station DXCC entity. For example: Bolivia" msgstr "" -#: application/views/station_profile/create.php:64 +#: application/views/station_profile/create.php:83 #: application/views/station_profile/edit.php:91 msgid "Station City" msgstr "" -#: application/views/station_profile/create.php:66 +#: application/views/station_profile/create.php:85 #: application/views/station_profile/edit.php:93 msgid "Station city. For example: Oslo" msgstr "" -#: application/views/station_profile/create.php:75 +#: application/views/station_profile/create.php:94 #: application/views/station_profile/edit.php:105 msgid "Station state. Applies to certain countries only." msgstr "" -#: application/views/station_profile/create.php:80 +#: application/views/station_profile/create.php:99 #: application/views/station_profile/edit.php:110 msgid "Station County" msgstr "" -#: application/views/station_profile/create.php:82 +#: application/views/station_profile/create.php:101 #: application/views/station_profile/edit.php:112 msgid "Station County (Only used for USA/Alaska/Hawaii)." msgstr "" -#: application/views/station_profile/create.php:97 +#: application/views/station_profile/create.php:116 #: application/views/station_profile/edit.php:138 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your CQ Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:97 -#: application/views/station_profile/create.php:111 -#: application/views/station_profile/create.php:125 +#: application/views/station_profile/create.php:116 +#: application/views/station_profile/create.php:130 +#: application/views/station_profile/create.php:144 #: application/views/station_profile/edit.php:138 #: application/views/station_profile/edit.php:155 #: application/views/station_profile/edit.php:179 msgid "click here" msgstr "" -#: application/views/station_profile/create.php:111 +#: application/views/station_profile/create.php:130 #: application/views/station_profile/edit.php:155 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your ITU Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:116 +#: application/views/station_profile/create.php:135 #: application/views/station_profile/edit.php:167 #: application/views/station_profile/edit.php:170 msgid "Station Gridsquare" msgstr "" -#: application/views/station_profile/create.php:121 +#: application/views/station_profile/create.php:140 #: application/views/station_profile/edit.php:175 msgid "Get Gridsquare" msgstr "" -#: application/views/station_profile/create.php:125 +#: application/views/station_profile/create.php:144 #: application/views/station_profile/edit.php:179 #, php-format msgctxt "uses 'click here'" @@ -8920,57 +9041,57 @@ msgid "" "then %s!" msgstr "" -#: application/views/station_profile/create.php:126 +#: application/views/station_profile/create.php:145 #: application/views/station_profile/edit.php:180 msgid "" "If you are located on a grid line, enter multiple grid squares separated " "with commas. For example: IO77,IO78,IO87,IO88." msgstr "" -#: application/views/station_profile/create.php:141 +#: application/views/station_profile/create.php:160 #: application/views/station_profile/edit.php:205 msgid "Station IOTA reference. For example: EU-005" msgstr "" -#: application/views/station_profile/create.php:142 +#: application/views/station_profile/create.php:161 #: application/views/station_profile/edit.php:206 msgid "IOTA World website" msgstr "" -#: application/views/station_profile/create.php:142 +#: application/views/station_profile/create.php:161 #: application/views/station_profile/edit.php:206 #, php-format msgid "You can look up IOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:148 +#: application/views/station_profile/create.php:167 #: application/views/station_profile/edit.php:221 msgid "SOTA Maps website" msgstr "" -#: application/views/station_profile/create.php:148 +#: application/views/station_profile/create.php:167 #: application/views/station_profile/edit.php:221 #, php-format msgid "Station SOTA reference. You can look up SOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:154 +#: application/views/station_profile/create.php:173 #: application/views/station_profile/edit.php:234 msgid "GMA Map website" msgstr "" -#: application/views/station_profile/create.php:154 +#: application/views/station_profile/create.php:173 #: application/views/station_profile/edit.php:234 #, php-format msgid "Station WWFF reference. You can look up WWFF references at the %s." msgstr "" -#: application/views/station_profile/create.php:160 +#: application/views/station_profile/create.php:179 #: application/views/station_profile/edit.php:247 msgid "POTA Map website" msgstr "" -#: application/views/station_profile/create.php:160 +#: application/views/station_profile/create.php:179 #: application/views/station_profile/edit.php:247 #, php-format msgid "" @@ -8978,55 +9099,55 @@ msgid "" "look up POTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:164 +#: application/views/station_profile/create.php:183 #: application/views/station_profile/edit.php:260 msgid "Signature Name" msgstr "" -#: application/views/station_profile/create.php:166 +#: application/views/station_profile/create.php:185 #: application/views/station_profile/edit.php:262 msgid "Station Signature (e.g. GMA).." msgstr "" -#: application/views/station_profile/create.php:170 +#: application/views/station_profile/create.php:189 #: application/views/station_profile/edit.php:266 msgid "Signature Information" msgstr "" -#: application/views/station_profile/create.php:172 +#: application/views/station_profile/create.php:191 #: application/views/station_profile/edit.php:268 msgid "Station Signature Info (e.g. DA/NW-357)." msgstr "" -#: application/views/station_profile/create.php:176 +#: application/views/station_profile/create.php:195 #: application/views/station_profile/edit.php:281 msgctxt "Probably no translation needed" msgid "eQSL QTH Nickname" msgstr "" -#: application/views/station_profile/create.php:178 +#: application/views/station_profile/create.php:197 #: application/views/station_profile/edit.php:283 msgid "The QTH Nickname which is configured in your eQSL Profile" msgstr "" -#: application/views/station_profile/create.php:182 +#: application/views/station_profile/create.php:201 #: application/views/station_profile/edit.php:286 msgid "Default QSLMSG" msgstr "" -#: application/views/station_profile/create.php:185 +#: application/views/station_profile/create.php:204 #: application/views/station_profile/edit.php:289 msgid "" "Define a default message that will be populated and sent for each QSO for " "this station location." msgstr "" -#: application/views/station_profile/create.php:188 +#: application/views/station_profile/create.php:207 #: application/views/station_profile/edit.php:328 msgid "Ignore Clublog Upload" msgstr "" -#: application/views/station_profile/create.php:193 +#: application/views/station_profile/create.php:212 #: application/views/station_profile/edit.php:333 msgid "" "If enabled, the QSOs made from this location will not be uploaded to " @@ -9034,124 +9155,124 @@ msgid "" "properly configured at Clublog" msgstr "" -#: application/views/station_profile/create.php:196 +#: application/views/station_profile/create.php:215 #: application/views/station_profile/edit.php:336 msgid "ClubLog Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:205 +#: application/views/station_profile/create.php:224 #: application/views/station_profile/edit.php:352 msgid "HRDLog.net Username" msgstr "" -#: application/views/station_profile/create.php:207 +#: application/views/station_profile/create.php:226 #: application/views/station_profile/edit.php:354 msgid "" "The username you are registered with at HRDlog.net (usually your callsign)." msgstr "" -#: application/views/station_profile/create.php:210 +#: application/views/station_profile/create.php:229 #: application/views/station_profile/edit.php:357 msgid "HRDLog.net API Key" msgstr "" -#: application/views/station_profile/create.php:212 +#: application/views/station_profile/create.php:231 #: application/views/station_profile/edit.php:359 #, php-format msgctxt "HRDLog.net Userprofile page" msgid "Create your API Code on your %s" msgstr "" -#: application/views/station_profile/create.php:212 +#: application/views/station_profile/create.php:231 #: application/views/station_profile/edit.php:359 msgid "HRDLog.net Userprofile page" msgstr "" -#: application/views/station_profile/create.php:215 +#: application/views/station_profile/create.php:234 #: application/views/station_profile/edit.php:362 msgid "HRDLog.net Logbook Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:224 +#: application/views/station_profile/create.php:243 #: application/views/station_profile/edit.php:297 msgid "Subscription Required" msgstr "" -#: application/views/station_profile/create.php:229 +#: application/views/station_profile/create.php:248 msgctxt "Probably no translation needed" msgid "QRZ.com Logbook API Key" msgstr "" -#: application/views/station_profile/create.php:232 +#: application/views/station_profile/create.php:251 msgid "Test API-Key" msgstr "" -#: application/views/station_profile/create.php:235 +#: application/views/station_profile/create.php:254 #: application/views/station_profile/edit.php:306 #, php-format msgctxt "the QRZ.com Logbook settings page" msgid "Find your API key on %s" msgstr "" -#: application/views/station_profile/create.php:235 +#: application/views/station_profile/create.php:254 #: application/views/station_profile/edit.php:306 msgid "the QRZ.com Logbook settings page" msgstr "" -#: application/views/station_profile/create.php:238 +#: application/views/station_profile/create.php:257 #: application/views/station_profile/edit.php:310 msgid "QRZ.com Logbook Upload" msgstr "" -#: application/views/station_profile/create.php:241 +#: application/views/station_profile/create.php:260 #: application/views/station_profile/edit.php:313 msgid "Realtime" msgstr "" -#: application/views/station_profile/create.php:249 +#: application/views/station_profile/create.php:268 #: application/views/station_profile/edit.php:378 msgctxt "Probably no translation needed" msgid "QO-100 Dx Club API Key" msgstr "" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:270 #: application/views/station_profile/edit.php:380 #, php-format msgctxt "QO-100 Dx Club's profile page" msgid "Create your API key on your %s" msgstr "" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:270 #: application/views/station_profile/edit.php:380 msgid "QO-100 Dx Club's profile page" msgstr "" -#: application/views/station_profile/create.php:254 +#: application/views/station_profile/create.php:273 #: application/views/station_profile/edit.php:383 msgid "QO-100 Dx Club Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:264 +#: application/views/station_profile/create.php:283 #: application/views/station_profile/edit.php:401 msgid "OQRS Enabled" msgstr "" -#: application/views/station_profile/create.php:271 +#: application/views/station_profile/create.php:290 #: application/views/station_profile/edit.php:408 msgid "OQRS Email alert" msgstr "" -#: application/views/station_profile/create.php:276 +#: application/views/station_profile/create.php:295 #: application/views/station_profile/edit.php:413 msgid "Make sure email is set up under admin and global options." msgstr "" -#: application/views/station_profile/create.php:279 +#: application/views/station_profile/create.php:298 #: application/views/station_profile/edit.php:416 msgid "OQRS Text" msgstr "" -#: application/views/station_profile/create.php:281 +#: application/views/station_profile/create.php:300 #: application/views/station_profile/edit.php:418 msgid "Some info you want to add regarding QSL'ing." msgstr "" @@ -10200,10 +10321,6 @@ msgstr "Detail spojení" msgid "QSL Management" msgstr "Správa QSL" -#: application/views/view_log/qso.php:42 -msgid "eQSL Card" -msgstr "eQSL karta" - #: application/views/view_log/qso.php:128 msgid "Total Distance" msgstr "Celková vzdálenost" @@ -10275,10 +10392,6 @@ msgstr "Více QSO" msgid "Details" msgstr "Detaily" -#: application/views/view_log/qso.php:604 -msgid "QSL image file" -msgstr "" - #: application/views/view_log/qso.php:630 msgid "Uploaded QSL Card front image" msgstr "" diff --git a/application/locale/de_DE/LC_MESSAGES/messages.mo b/application/locale/de_DE/LC_MESSAGES/messages.mo index 492e9e0e8..6c221fd16 100644 Binary files a/application/locale/de_DE/LC_MESSAGES/messages.mo and b/application/locale/de_DE/LC_MESSAGES/messages.mo differ diff --git a/application/locale/de_DE/LC_MESSAGES/messages.po b/application/locale/de_DE/LC_MESSAGES/messages.po index 9786896ef..cae9e3aff 100644 --- a/application/locale/de_DE/LC_MESSAGES/messages.po +++ b/application/locale/de_DE/LC_MESSAGES/messages.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-01 15:48+0000\n" -"PO-Revision-Date: 2024-08-01 15:51+0000\n" +"POT-Creation-Date: 2024-08-06 18:03+0000\n" +"PO-Revision-Date: 2024-08-07 06:28+0000\n" "Last-Translator: Fabian Berg <80885850+HB9HIL@users.noreply.github.com>\n" "Language-Team: German \n" @@ -466,17 +466,17 @@ msgstr "Kein Benutzer hat Clublog konfiguriert." msgid "Contest Calendar" msgstr "Contest-Kalender" -#: application/controllers/Contesting.php:36 +#: application/controllers/Contesting.php:46 #: application/views/contesting/index.php:3 msgid "Contest Logging" msgstr "Contest-Logging" -#: application/controllers/Contesting.php:101 +#: application/controllers/Contesting.php:111 #: application/views/interface_assets/header.php:268 msgid "Contests" msgstr "Conteste" -#: application/controllers/Contesting.php:115 +#: application/controllers/Contesting.php:125 msgid "Update Contest" msgstr "Aktualisiere Contest" @@ -510,35 +510,35 @@ msgstr "Dashboard" msgid "Number of days with QSOs each year" msgstr "Anzahl der Tage mit QSOs pro Jahr" -#: application/controllers/Debug.php:91 +#: application/controllers/Debug.php:93 msgid "Debug" msgstr "Debug" -#: application/controllers/Debug.php:130 +#: application/controllers/Debug.php:132 msgid "Migrate data now" msgstr "Daten jetzt migrieren" -#: application/controllers/Debug.php:133 +#: application/controllers/Debug.php:135 msgid "Migration already done. Run again?" msgstr "Migration wurde bereits durchgeführt. Nochmal ausführen?" -#: application/controllers/Debug.php:137 +#: application/controllers/Debug.php:139 msgid "No data to migrate" msgstr "Keine Daten die migriert werden müssen" -#: application/controllers/Debug.php:141 application/controllers/Debug.php:146 +#: application/controllers/Debug.php:143 application/controllers/Debug.php:148 msgid "No migration possible" msgstr "Migration nicht möglich" -#: application/controllers/Debug.php:211 +#: application/controllers/Debug.php:213 msgid "Wavelog was updated successfully!" msgstr "Wavelog wurde erfolgreich aktualisiert!" -#: application/controllers/Debug.php:229 +#: application/controllers/Debug.php:231 msgid "Selfupdate() not available. Check the Error Log." msgstr "Selfupdate() nicht verfügbar. Überprüfe das Fehlerprotokoll." -#: application/controllers/Debug.php:273 +#: application/controllers/Debug.php:275 msgid "" "File Migration was successfull, but please check also manually. If " "everything seems right you can delete the folders 'assets/qslcard' and " @@ -548,7 +548,7 @@ msgstr "" "Sofern keine Probleme ersichtlich sind, kannst du die beiden Ordner 'assets/" "qslcard' und 'images/eqsl_card_images' löschen." -#: application/controllers/Debug.php:276 +#: application/controllers/Debug.php:278 msgid "File Migration failed. Please check the Error Log." msgstr "Datenmigration fehlgeschlagen! Bitte das Fehlerprotokoll prüfen." @@ -926,7 +926,7 @@ msgstr "Clublog" #: application/views/contesting/index.php:203 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:547 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:548 application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 #: application/views/eqsl/download.php:39 application/views/eqsl/result.php:36 #: application/views/eqslcard/index.php:29 @@ -1200,7 +1200,7 @@ msgstr "Distanz" #: application/views/contesting/index.php:202 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:548 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:549 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 @@ -1303,7 +1303,7 @@ msgstr "Operator" #: application/views/lotw_views/index.php:56 #: application/views/qso/components/previous_contacts.php:59 #: application/views/qso/edit_ajax.php:230 application/views/qso/index.php:368 -#: application/views/station_profile/create.php:54 +#: application/views/station_profile/create.php:73 #: application/views/station_profile/edit.php:78 #: application/views/station_profile/index.php:65 #: application/views/stationsetup/linkedlocations.php:17 @@ -1548,7 +1548,7 @@ msgstr "QSL-Karten Management" msgid "Print Requested QSLs" msgstr "Druck angeforderter QSLs" -#: application/controllers/Qso.php:91 +#: application/controllers/Qso.php:101 msgid "Add QSO" msgstr "Logge QSO" @@ -1633,7 +1633,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:18 #: application/views/qslprint/index.php:20 application/views/qso/index.php:300 #: application/views/search/search_result_ajax.php:18 -#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:304 #: application/views/station_profile/edit.php:427 #: application/views/user/edit.php:331 #: application/views/view_log/partial/log_ajax.php:18 @@ -1708,7 +1708,7 @@ msgstr "Fehler. Link existiert bereits!" #: application/views/options/appearance.php:92 #: application/views/options/appearance.php:101 #: application/views/options/version_dialog.php:66 -#: application/views/station_profile/create.php:240 +#: application/views/station_profile/create.php:259 #: application/views/station_profile/edit.php:312 #: application/views/stationsetup/stationsetup.php:76 #: application/views/user/edit.php:451 application/views/user/edit.php:460 @@ -1779,8 +1779,10 @@ msgstr "QSO" #: application/controllers/Stationsetup.php:359 #: application/views/api/help.php:57 application/views/contesting/add.php:59 -#: application/views/cron/index.php:56 application/views/labels/index.php:47 -#: application/views/labels/index.php:83 +#: application/views/cron/index.php:56 +#: application/views/interface_assets/footer.php:535 +#: application/views/interface_assets/footer.php:544 +#: application/views/labels/index.php:47 application/views/labels/index.php:83 #: application/views/logbookadvanced/index.php:513 #: application/views/mode/index.php:52 application/views/satellite/edit.php:39 #: application/views/satellite/index.php:25 @@ -1798,7 +1800,8 @@ msgstr "Bearbeiten" #: application/views/stationsetup/stationsetup.php:185 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "" -"Bist du sicher, dass du alle QSOs an diesem Stationsstandort löschen möchtest?" +"Bist du sicher, dass du alle QSOs an diesem Stationsstandort löschen " +"möchtest?" #: application/controllers/Stationsetup.php:363 #: application/views/station_profile/index.php:54 @@ -1829,6 +1832,10 @@ msgstr "" #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 +#: application/views/interface_assets/footer.php:2341 +#: application/views/interface_assets/footer.php:2359 +#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2398 #: application/views/labels/index.php:48 application/views/labels/index.php:84 #: application/views/logbookadvanced/index.php:514 #: application/views/lotw_views/index.php:118 @@ -2243,9 +2250,12 @@ msgstr "Differenz" #: application/views/gridmap/index.php:28 #: application/views/gridmap/index.php:41 #: application/views/gridmap/index.php:70 -#: application/views/gridmap/index.php:83 application/views/kml/index.php:21 -#: application/views/kml/index.php:33 application/views/kml/index.php:49 -#: application/views/kml/index.php:67 application/views/kml/index.php:79 +#: application/views/gridmap/index.php:83 +#: application/views/interface_assets/footer.php:1453 +#: application/views/interface_assets/footer.php:1592 +#: application/views/kml/index.php:21 application/views/kml/index.php:33 +#: application/views/kml/index.php:49 application/views/kml/index.php:67 +#: application/views/kml/index.php:79 #: application/views/logbookadvanced/index.php:172 #: application/views/logbookadvanced/index.php:183 #: application/views/logbookadvanced/index.php:194 @@ -2552,7 +2562,7 @@ msgstr "Die Informationen zum DOK im Logbuch weichen von denen im DCL ab" #: application/views/contesting/index.php:42 #: application/views/contesting/index.php:200 #: application/views/dashboard/index.php:147 -#: application/views/debug/index.php:544 application/views/eqsl/analysis.php:36 +#: application/views/debug/index.php:545 application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 #: application/views/eqslcard/index.php:30 #: application/views/hamsat/index.php:28 @@ -2594,7 +2604,7 @@ msgstr "Datum" #: application/views/contesting/index.php:47 #: application/views/contesting/index.php:200 #: application/views/dashboard/index.php:150 -#: application/views/debug/index.php:545 application/views/eqsl/analysis.php:37 +#: application/views/debug/index.php:546 application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 #: application/views/eqslcard/index.php:31 #: application/views/hamsat/index.php:29 application/views/oqrs/qsolist.php:8 @@ -2620,7 +2630,7 @@ msgstr "Zeit" #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 #: application/views/contesting/index.php:201 -#: application/views/debug/index.php:546 application/views/debug/index.php:581 +#: application/views/debug/index.php:547 application/views/debug/index.php:582 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -2671,8 +2681,8 @@ msgid "Maximum file upload size is " msgstr "Die max. Dateigröße für Uploads beträgt " #: application/views/adif/import.php:56 application/views/adif/import.php:220 -#: application/views/adif/import.php:258 application/views/debug/index.php:174 -#: application/views/debug/index.php:191 application/views/debug/index.php:536 +#: application/views/adif/import.php:258 application/views/debug/index.php:175 +#: application/views/debug/index.php:192 application/views/debug/index.php:537 #: application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:34 @@ -2751,6 +2761,8 @@ msgstr "" #: application/views/adif/import.php:152 #: application/views/interface_assets/footer.php:32 +#: application/views/interface_assets/footer.php:495 +#: application/views/interface_assets/footer.php:2137 msgid "DANGER" msgstr "GEFAHR" @@ -2852,7 +2864,8 @@ msgstr "" #: application/views/adif/import.php:249 msgid "Only import DOK data from QSOs confirmed on DCL." -msgstr "Importiere Informationen zum DOK nur von QSOs, die auf DCL bestätigt sind." +msgstr "" +"Importiere Informationen zum DOK nur von QSOs, die auf DCL bestätigt sind." #: application/views/adif/import.php:251 msgid "" @@ -2864,7 +2877,9 @@ msgstr "" #: application/views/adif/import.php:258 msgid "Overwrites exisiting DOK in log by DCL (if different)." -msgstr "Überschreibt vorhandenen DOK im Log mit Information aus DCL (falls verschieden)." +msgstr "" +"Überschreibt vorhandenen DOK im Log mit Information aus DCL (falls " +"verschieden)." #: application/views/adif/import.php:260 msgid "" @@ -2888,7 +2903,7 @@ msgstr "" #: application/views/adif/import_success.php:15 msgid "Yay, its imported!" -msgstr "Datei importiert!" +msgstr "Yay, Datei importiert!" #: application/views/adif/import_success.php:16 msgid "The ADIF File has been imported." @@ -2911,8 +2926,8 @@ msgid "" "You have ADIF errors, the QSOs have still been added but these fields have " "not been populated." msgstr "" -"Es gibt Fehler in der ADIF-Datei. Die QSO wurden hinzugefügt, jedoch wurden die " -"fehlerhaften Felder nicht ausgefüllt." +"Es gibt Fehler in der ADIF-Datei. Die QSO wurden hinzugefügt, jedoch wurden " +"die fehlerhaften Felder nicht ausgefüllt." #: application/views/adif/mark_lotw.php:12 #: application/views/hrdlog/mark_hrdlog.php:12 @@ -2941,6 +2956,7 @@ msgstr "Einfacher Name, um zu beschreiben, wofür Sie diese API verwenden." #: application/views/bands/create.php:49 application/views/bands/edit.php:31 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 #: application/views/interface_assets/footer.php:43 +#: application/views/interface_assets/footer.php:530 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:107 #: application/views/options/dxcluster.php:67 @@ -3300,6 +3316,7 @@ msgstr "QSO mit QSL-Typ anzeigen" #: application/views/awards/cq/index.php:54 #: application/views/awards/itu/index.php:54 +#: application/views/interface_assets/footer.php:2116 #: application/views/qso/edit_ajax.php:378 #: application/views/view_log/qso.php:25 msgid "QSL Card" @@ -3364,7 +3381,7 @@ msgstr "Karte" #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:272 #: application/views/qso/index.php:390 #: application/views/search/cqzones_result.php:13 -#: application/views/station_profile/create.php:87 +#: application/views/station_profile/create.php:106 #: application/views/station_profile/edit.php:126 #: application/views/timeline/index.php:231 #: application/views/timeplotter/index.php:44 @@ -3855,7 +3872,7 @@ msgstr "Zeige Karte der ITU-Zonen" #: application/views/logbookadvanced/index.php:246 #: application/views/logbookadvanced/index.php:589 #: application/views/logbookadvanced/useroptions.php:94 -#: application/views/station_profile/create.php:101 +#: application/views/station_profile/create.php:120 #: application/views/station_profile/edit.php:143 msgid "ITU Zone" msgstr "ITU Zone" @@ -3957,7 +3974,7 @@ msgstr "" #: application/views/awards/pota/index.php:31 #: application/views/qso/index.php:236 application/views/qso/index.php:482 -#: application/views/station_profile/create.php:158 +#: application/views/station_profile/create.php:177 #: application/views/station_profile/edit.php:245 #: application/views/user/edit.php:595 application/views/view_log/qso.php:303 #: application/views/view_log/qso.php:570 @@ -4237,7 +4254,7 @@ msgstr "" #: application/views/awards/wwff/index.php:31 #: application/views/qso/index.php:224 application/views/qso/index.php:469 -#: application/views/station_profile/create.php:152 +#: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:232 #: application/views/user/edit.php:591 application/views/view_log/qso.php:296 #: application/views/view_log/qso.php:563 @@ -4781,7 +4798,7 @@ msgid "Name of Contest in ADIF-specification" msgstr "Der Name des Contests in ADIF-Spezifikation" #: application/views/contesting/create.php:35 -#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:304 #: application/views/station_profile/edit.php:28 msgid "Create" msgstr "Erstelle" @@ -4927,7 +4944,7 @@ msgstr "Identifikator" #: application/views/options/appearance.php:82 #: application/views/options/appearance.php:91 #: application/views/options/appearance.php:100 -#: application/views/station_profile/create.php:242 +#: application/views/station_profile/create.php:261 #: application/views/station_profile/edit.php:314 #: application/views/stationsetup/stationsetup.php:73 #: application/views/user/edit.php:452 application/views/user/edit.php:461 @@ -5050,10 +5067,10 @@ msgid "disabled" msgstr "ausgeschaltet" #: application/views/cron/index.php:79 application/views/cron/index.php:81 -#: application/views/cron/index.php:83 application/views/debug/index.php:493 -#: application/views/debug/index.php:499 application/views/debug/index.php:504 -#: application/views/debug/index.php:509 application/views/debug/index.php:514 -#: application/views/debug/index.php:519 application/views/debug/index.php:524 +#: application/views/cron/index.php:83 application/views/debug/index.php:494 +#: application/views/debug/index.php:500 application/views/debug/index.php:505 +#: application/views/debug/index.php:510 application/views/debug/index.php:515 +#: application/views/debug/index.php:520 application/views/debug/index.php:525 msgid "never" msgstr "nie" @@ -5519,63 +5536,71 @@ msgstr "Migration ist veraltet und gesperrt!" #, php-format msgid "" "The current migration is not the version it is supposed to be. Reload this " -"page. If this warning persists, your migration is probably locked due to a " -"past failed process. Check the folder %s for a file called %s and remove " -"this file to force the migration to run again." +"page after %s seconds. If this warning persists, your migration is likely " +"locked due to a previously failed process. Delete the file %s to force the " +"migration to run again." msgstr "" -"Die aktuelle Migration ist nicht die Version, die sie sein sollte. Lade " -"diese Seite neu. Wenn diese Warnung weiterhin besteht, ist deine Migration " -"wahrscheinlich aufgrund eines früheren fehlgeschlagenen Prozesses gesperrt. " -"Überprüfe den Ordner %s auf eine Datei namens %s und entferne diese Datei, " -"um die Migration erneut zu erzwingen." +"Die aktuelle Migration ist nicht die Version, welche sie sein sollte. Lade " +"diese Seite nach %s Sekunden neu. Wenn diese Warnung weiterhin besteht, ist " +"deine Migration wahrscheinlich aufgrund eines vorherigen Fehlers gesperrt. " +"Lösche die Datei %s, um die Migration erneut zu erzwingen." #: application/views/debug/index.php:47 #, php-format +msgid "" +"Check this wiki article here for " +"more information." +msgstr "" +"Schau dir diesen Wiki-Artikel hier " +"an um mehr Informationen zu erhalten." + +#: application/views/debug/index.php:48 +#, php-format msgid "Current migration is %s" msgstr "Aktuelle Migration ist %s" -#: application/views/debug/index.php:48 +#: application/views/debug/index.php:49 #, php-format msgid "Migration should be %s" msgstr "Migration sollte sein %s" -#: application/views/debug/index.php:53 +#: application/views/debug/index.php:54 msgid "Environment" msgstr "Umgebung" -#: application/views/debug/index.php:61 +#: application/views/debug/index.php:62 msgid "Total QSO on this instance" msgstr "QSOs auf dieser Instanz" -#: application/views/debug/index.php:69 +#: application/views/debug/index.php:70 msgid "Server Information" msgstr "Server-Information" -#: application/views/debug/index.php:73 +#: application/views/debug/index.php:74 msgid "Server Software" msgstr "Server-Software" -#: application/views/debug/index.php:78 +#: application/views/debug/index.php:79 msgid "PHP Version" msgstr "PHP-Version" -#: application/views/debug/index.php:84 +#: application/views/debug/index.php:85 msgid "Deprecated" msgstr "Veraltet" -#: application/views/debug/index.php:91 +#: application/views/debug/index.php:92 msgid "MySQL Version" msgstr "MySQL-Version" -#: application/views/debug/index.php:95 +#: application/views/debug/index.php:96 msgid "Codeigniter Version" msgstr "Codeigniter Version" -#: application/views/debug/index.php:103 +#: application/views/debug/index.php:104 msgid "Folder Permissions" msgstr "Ordnerberechtigungen" -#: application/views/debug/index.php:105 +#: application/views/debug/index.php:106 msgid "" "This verifies that the folders used by Wavelog have read and write " "permissions by PHP." @@ -5583,32 +5608,32 @@ msgstr "" "Dies verifiziert, dass die von Wavelog verwendeten Ordner Schreib- und Lese-" "Rechte durch PHP haben." -#: application/views/debug/index.php:111 application/views/debug/index.php:122 -#: application/views/debug/index.php:133 application/views/debug/index.php:144 -#: application/views/debug/index.php:156 +#: application/views/debug/index.php:112 application/views/debug/index.php:123 +#: application/views/debug/index.php:134 application/views/debug/index.php:145 +#: application/views/debug/index.php:157 msgid "Success" msgstr "Erfolgreich" -#: application/views/debug/index.php:113 application/views/debug/index.php:124 -#: application/views/debug/index.php:135 application/views/debug/index.php:146 -#: application/views/debug/index.php:158 +#: application/views/debug/index.php:114 application/views/debug/index.php:125 +#: application/views/debug/index.php:136 application/views/debug/index.php:147 +#: application/views/debug/index.php:159 msgid "Failed" msgstr "Fehlgeschlagen" -#: application/views/debug/index.php:168 +#: application/views/debug/index.php:169 msgid "Config Maintenance" msgstr "Konfigurations-Wartung" -#: application/views/debug/index.php:174 +#: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "Dein Authentifizierungsmodus ist veraltet und möglicherweise unsicher" -#: application/views/debug/index.php:176 application/views/debug/index.php:193 +#: application/views/debug/index.php:177 application/views/debug/index.php:194 #, php-format msgid "Please edit your %s File:" msgstr "Bitte bearbeite deine %s Datei:" -#: application/views/debug/index.php:177 +#: application/views/debug/index.php:178 msgid "" "Go to your application/config Folder and compare config.sample.php with your " "config.php" @@ -5616,30 +5641,30 @@ msgstr "" "Gehe in den application/config Ordner und vergleiche die config.sample.php " "mit deiner config.php" -#: application/views/debug/index.php:178 +#: application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "Ändere %s zu dem Wert %s (Stark empfohlen)" -#: application/views/debug/index.php:184 +#: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" msgstr "Der Authentifizierungsmodus ist korrekt eingestellt" -#: application/views/debug/index.php:184 application/views/debug/index.php:201 +#: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" msgstr "OK" -#: application/views/debug/index.php:191 +#: application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "" "Du verwendest den Standardschlüssel zur Verschlüsselung. Du solltest ihn " "ändern!" -#: application/views/debug/index.php:194 +#: application/views/debug/index.php:195 msgid "This will also enable the 'Keep me logged in' feature." msgstr "Dies wird auch die Funktion 'Angemeldet bleiben' aktivieren." -#: application/views/debug/index.php:195 +#: application/views/debug/index.php:196 #, php-format msgid "" "Change the value of %s to a new encryption key other then " @@ -5649,15 +5674,15 @@ msgstr "" "'flossie1234555541' ist. Es wird dringend empfohlen ein sicheres und langes " "Passwort zu wählen." -#: application/views/debug/index.php:201 +#: application/views/debug/index.php:202 msgid "You do not use the default encryption key" msgstr "Du verwendest nicht den Standardschlüssel für die Verschlüsselung" -#: application/views/debug/index.php:208 +#: application/views/debug/index.php:209 msgid "Migrate Userdata" msgstr "Benutzerdaten migrieren" -#: application/views/debug/index.php:210 +#: application/views/debug/index.php:211 msgid "" "Here you can migrate existing QSL cards and eQSL cards to the new userdata " "folder." @@ -5665,112 +5690,112 @@ msgstr "" "Hier kannst du bestehende QSL-Karten und eQSL-Karten in den neuen " "Benutzerdaten-Ordner migrieren." -#: application/views/debug/index.php:223 +#: application/views/debug/index.php:224 msgid "Modules" msgstr "Module" -#: application/views/debug/index.php:229 application/views/debug/index.php:240 -#: application/views/debug/index.php:251 application/views/debug/index.php:262 -#: application/views/debug/index.php:273 +#: application/views/debug/index.php:230 application/views/debug/index.php:241 +#: application/views/debug/index.php:252 application/views/debug/index.php:263 +#: application/views/debug/index.php:274 msgid "Installed" msgstr "Installiert" -#: application/views/debug/index.php:231 application/views/debug/index.php:242 -#: application/views/debug/index.php:253 application/views/debug/index.php:264 -#: application/views/debug/index.php:275 +#: application/views/debug/index.php:232 application/views/debug/index.php:243 +#: application/views/debug/index.php:254 application/views/debug/index.php:265 +#: application/views/debug/index.php:276 msgid "Not Installed" msgstr "Nicht installiert" -#: application/views/debug/index.php:282 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:654 msgid "Settings" msgstr "Einstellungen" -#: application/views/debug/index.php:411 +#: application/views/debug/index.php:412 msgid "Git Information" msgstr "Git Informationen" -#: application/views/debug/index.php:415 +#: application/views/debug/index.php:416 msgid "Branch" msgstr "Branch" -#: application/views/debug/index.php:426 application/views/debug/index.php:437 -#: application/views/debug/index.php:447 +#: application/views/debug/index.php:427 application/views/debug/index.php:438 +#: application/views/debug/index.php:448 msgid "n/a" msgstr "n/a" -#: application/views/debug/index.php:432 +#: application/views/debug/index.php:433 msgid "Commit" msgstr "Commit" -#: application/views/debug/index.php:442 +#: application/views/debug/index.php:443 msgid "Tag" msgstr "Tag" -#: application/views/debug/index.php:452 +#: application/views/debug/index.php:453 msgid "Last Fetch" msgstr "Letzter Abruf" -#: application/views/debug/index.php:464 +#: application/views/debug/index.php:465 msgid "Check for new version" msgstr "Nach neuer Version suchen" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:466 msgid "Update now" msgstr "Jetzt aktualisieren" -#: application/views/debug/index.php:483 +#: application/views/debug/index.php:484 msgid "File download date" msgstr "Datum des Datei-Downloads" -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:488 msgid "File" msgstr "Datei" -#: application/views/debug/index.php:488 +#: application/views/debug/index.php:489 msgid "Last update" msgstr "Letzte Aktualisierung" -#: application/views/debug/index.php:492 +#: application/views/debug/index.php:493 msgid "DXCC update from Club Log" msgstr "DXCC-Update von Club Log" -#: application/views/debug/index.php:494 application/views/debug/index.php:500 -#: application/views/debug/index.php:505 application/views/debug/index.php:510 -#: application/views/debug/index.php:515 application/views/debug/index.php:520 -#: application/views/debug/index.php:525 +#: application/views/debug/index.php:495 application/views/debug/index.php:501 +#: application/views/debug/index.php:506 application/views/debug/index.php:511 +#: application/views/debug/index.php:516 application/views/debug/index.php:521 +#: application/views/debug/index.php:526 #: application/views/station_profile/edit.php:22 msgid "Update" msgstr "Aktualisierung" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:499 msgid "DOK file download" msgstr "DOK-Datei Download" -#: application/views/debug/index.php:503 +#: application/views/debug/index.php:504 msgid "LoTW users download" msgstr "LoTW-Benutzer Download" -#: application/views/debug/index.php:508 +#: application/views/debug/index.php:509 msgid "POTA file download" msgstr "POTA-Datei Download" -#: application/views/debug/index.php:513 +#: application/views/debug/index.php:514 msgid "SCP file download" msgstr "SCP-Datei Download" -#: application/views/debug/index.php:518 +#: application/views/debug/index.php:519 msgid "SOTA file download" msgstr "SOTA-Datei Download" -#: application/views/debug/index.php:523 +#: application/views/debug/index.php:524 msgid "WWFF file download" msgstr "WWFF-Datei Download" -#: application/views/debug/index.php:532 +#: application/views/debug/index.php:533 msgid "QSO-DB Maintenance" msgstr "QSO-DB Wartung" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:537 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -5778,9 +5803,9 @@ msgid_plural "" msgstr[0] "Die Datenbank enthält %d QSO ohne Stationsprofil (Standort)" msgstr[1] "Die Datenbank enthält %d QSOs ohne Stationsprofil (Standort)" -#: application/views/debug/index.php:549 +#: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:38 +#: application/views/station_profile/create.php:57 #: application/views/station_profile/edit.php:46 #: application/views/station_profile/index.php:42 #: application/views/stationsetup/linkedlocations.php:32 @@ -5788,90 +5813,90 @@ msgstr[1] "Die Datenbank enthält %d QSOs ohne Stationsprofil (Standort)" msgid "Station Callsign" msgstr "Stationsrufzeichen" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" "Bitte markiere die QSOs und weise sie einem vorhandenen Stationsstandort zu:" -#: application/views/debug/index.php:582 +#: application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" msgstr "Zielstandort" -#: application/views/debug/index.php:583 application/views/debug/index.php:594 +#: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" msgstr "Neu zuweisen" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" "Jedes QSO in deiner Datenbank ist einem Stationsprofil (Standort) zugeordnet" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Everything ok" msgstr "Alles in Ordnung" -#: application/views/debug/index.php:628 +#: application/views/debug/index.php:629 msgid "Bulgarian" msgstr "Bulgarisch" -#: application/views/debug/index.php:629 +#: application/views/debug/index.php:630 msgid "Chinese (Simplified)" msgstr "Chinesisch (Vereinfacht)" -#: application/views/debug/index.php:630 +#: application/views/debug/index.php:631 msgid "Czech" msgstr "Tschechisch" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:632 msgid "Dutch" msgstr "Niederländisch" -#: application/views/debug/index.php:632 +#: application/views/debug/index.php:633 msgid "English" msgstr "Englisch" -#: application/views/debug/index.php:633 +#: application/views/debug/index.php:634 msgid "Finnish" msgstr "Finnisch" -#: application/views/debug/index.php:634 +#: application/views/debug/index.php:635 msgid "French" msgstr "Französisch" -#: application/views/debug/index.php:635 +#: application/views/debug/index.php:636 msgid "German" msgstr "Deutsch" -#: application/views/debug/index.php:636 +#: application/views/debug/index.php:637 msgid "Greek" msgstr "Griechisch" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:638 msgid "Italian" msgstr "Italienisch" -#: application/views/debug/index.php:638 +#: application/views/debug/index.php:639 msgid "Polish" msgstr "Polnisch" -#: application/views/debug/index.php:639 +#: application/views/debug/index.php:640 msgid "Portuguese" msgstr "Portugiesisch" -#: application/views/debug/index.php:640 +#: application/views/debug/index.php:641 msgid "Russian" msgstr "Russisch" -#: application/views/debug/index.php:641 +#: application/views/debug/index.php:642 msgid "Spanish" msgstr "Spanisch" -#: application/views/debug/index.php:642 +#: application/views/debug/index.php:643 msgid "Swedish" msgstr "Schwedisch" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:644 msgid "Turkish" msgstr "Türkisch" @@ -6119,6 +6144,10 @@ msgid "QSL Date" msgstr "QSL-Datum" #: application/views/eqslcard/index.php:60 +#: application/views/interface_assets/footer.php:2342 +#: application/views/interface_assets/footer.php:2360 +#: application/views/interface_assets/footer.php:2381 +#: application/views/interface_assets/footer.php:2399 #: application/views/qslcard/index.php:66 #: application/views/view_log/qso.php:614 msgid "View" @@ -6185,8 +6214,7 @@ msgstr "Der Code kann unter %s angefordert werden" #: application/views/hrdlog/export.php:25 #: application/views/webadif/export.php:34 msgid "This might take a while as QSO uploads are processed sequentially." -msgstr "" -"Dies kann etwas länger dauern, da die QSOs einzeln verarbeitet werden." +msgstr "Dies kann etwas länger dauern, da die QSOs einzeln verarbeitet werden." #: application/views/hrdlog/export.php:34 application/views/qrz/export.php:38 #: application/views/webadif/export.php:41 @@ -6287,6 +6315,73 @@ msgstr "" msgid "Version Info" msgstr "Versionsinfo" +#: application/views/interface_assets/footer.php:392 +msgid "Description:" +msgstr "Beschreibung:" + +#: application/views/interface_assets/footer.php:395 +msgid "Query description" +msgstr "Suchmuster-Beschreibung" + +#: application/views/interface_assets/footer.php:411 +msgid "Your query has been saved!" +msgstr "Dein Suchmuster wurde gespeichert!" + +#: application/views/interface_assets/footer.php:413 +#: application/views/search/filter.php:46 +msgid "Edit queries" +msgstr "Suchmuster bearbeiten" + +#: application/views/interface_assets/footer.php:415 +msgid "Stored queries:" +msgstr "Gespeicherte Suchmuster:" + +#: application/views/interface_assets/footer.php:420 +#: application/views/search/filter.php:60 +msgid "Run Query" +msgstr "Suchmuster ausführen" + +#: application/views/interface_assets/footer.php:432 +#: application/views/interface_assets/footer.php:561 +#: application/views/interface_assets/footer.php:625 +msgid "Stored Queries" +msgstr "Gespeicherte Suchmuster" + +#: application/views/interface_assets/footer.php:437 +#: application/views/interface_assets/footer.php:630 +msgid "You need to make a query before you search!" +msgstr "Du musst ein Suchmuster erstellen, bevor du suchst!" + +#: application/views/interface_assets/footer.php:458 +#: application/views/interface_assets/footer.php:589 +#: application/views/search/filter.php:79 +msgid "Export to ADIF" +msgstr "Nach ADIF exportieren" + +#: application/views/interface_assets/footer.php:496 +msgid "Warning! Are you sure you want delete this stored query?" +msgstr "" +"Warnung! Bist du sicher, dass du dieses gespeicherte Suchmuster löschen " +"willst?" + +#: application/views/interface_assets/footer.php:510 +msgid "The stored query has been deleted!" +msgstr "Das gespeicherte Suchmuster wurde gelöscht!" + +#: application/views/interface_assets/footer.php:519 +msgid "The stored query could not be deleted. Please try again!" +msgstr "" +"Das gespeicherte Suchmuster konnte nicht gelöscht werden. Bitte versuche es " +"erneut!" + +#: application/views/interface_assets/footer.php:545 +msgid "The query description has been updated!" +msgstr "Die Beschreibung des Suchmusters wurde aktualisiert!" + +#: application/views/interface_assets/footer.php:549 +msgid "Something went wrong with the save. Please try again!" +msgstr "Etwas ist beim Speichern schiefgelaufen. Bitte versuche es erneut!" + #: application/views/interface_assets/footer.php:672 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " @@ -6299,20 +6394,65 @@ msgstr "" "'Federal Republic of Germany'. Wenn du dir sicher bist, ignoriere diese " "Warnung." -#: application/views/interface_assets/footer.php:1374 -#: application/views/interface_assets/footer.php:1378 -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1518 -#: application/views/interface_assets/footer.php:1522 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1174 +#, php-format +msgid "You're not logged it. Please login" +msgstr "Du bist nicht eingeloggt. Bitte logge dich ein" + +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1384 +#: application/views/interface_assets/footer.php:1387 +#: application/views/interface_assets/footer.php:1524 +#: application/views/interface_assets/footer.php:1528 +#: application/views/interface_assets/footer.php:1531 msgid "grid square" msgstr "Planquadrate" -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1387 +#: application/views/interface_assets/footer.php:1531 msgid "Total count" msgstr "Summe" +#: application/views/interface_assets/footer.php:2118 +msgid "QSL Card for " +msgstr "QSL-Karte für " + +#: application/views/interface_assets/footer.php:2138 +msgid "Warning! Are you sure you want to delete this QSL card?" +msgstr "Warnung! Bist du sicher, dass du diese QSL-Karte löschen möchtest?" + +#: application/views/interface_assets/footer.php:2178 +#: application/views/view_log/qso.php:42 +msgid "eQSL Card" +msgstr "eQSL-Karte" + +#: application/views/interface_assets/footer.php:2180 +msgid "eQSL Card for " +msgstr "eQSL-Karte für " + +#: application/views/interface_assets/footer.php:2353 +#: application/views/interface_assets/footer.php:2392 +#: application/views/view_log/qso.php:604 +msgid "QSL image file" +msgstr "QSL-Bilddatei" + +#: application/views/interface_assets/footer.php:2372 +msgid "Front QSL Card:" +msgstr "Vorderseite QSL-Karte:" + +#: application/views/interface_assets/footer.php:2410 +msgid "Back QSL Card:" +msgstr "Rückseite QSL-Karte:" + +#: application/views/interface_assets/footer.php:2421 +#: application/views/interface_assets/footer.php:2446 +msgid "Add additional QSOs to a QSL Card" +msgstr "Weitere QSOs zu einer QSL-Karte hinzufügen" + +#: application/views/interface_assets/footer.php:2457 +msgid "Something went wrong. Please try again!" +msgstr "Etwas ist schiefgelaufen. Bitte versuche es erneut!" + #: application/views/interface_assets/header.php:86 msgid "Developer Mode" msgstr "Entwickler-Modus" @@ -6652,8 +6792,7 @@ msgstr "Papier-Typ Name" #: application/views/labels/createpaper.php:39 #: application/views/labels/editpaper.php:39 msgid "Paper name used for display purposes, so pick something meaningful." -msgstr "" -"Angezeiger Papiername. Verwende also etwas aussagekräftiges." +msgstr "Angezeiger Papiername. Verwende also etwas aussagekräftiges." #: application/views/labels/createpaper.php:51 #: application/views/labels/editpaper.php:51 @@ -6706,8 +6845,8 @@ msgid "" "Label name used for display purposes so pick something meaningful perhaps " "the label style." msgstr "" -"Angezeigter Etikettenname. Verwende also etwas " -"aussagekräftiges, vielleicht den Etiketten-Stil." +"Angezeigter Etikettenname. Verwende also etwas aussagekräftiges, vielleicht " +"den Etiketten-Stil." #: application/views/labels/index.php:2 #: application/views/logbookadvanced/startatform.php:27 @@ -6868,12 +7007,12 @@ msgstr "QSL gesendet" #: application/views/qso/edit_ajax.php:495 #: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:190 -#: application/views/station_profile/create.php:198 +#: application/views/station_profile/create.php:209 #: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:256 -#: application/views/station_profile/create.php:267 -#: application/views/station_profile/create.php:274 +#: application/views/station_profile/create.php:236 +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/create.php:286 +#: application/views/station_profile/create.php:293 #: application/views/station_profile/edit.php:330 #: application/views/station_profile/edit.php:338 #: application/views/station_profile/edit.php:364 @@ -6906,12 +7045,12 @@ msgstr "Ja" #: application/views/qso/edit_ajax.php:494 #: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/create.php:199 +#: application/views/station_profile/create.php:210 #: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/create.php:266 -#: application/views/station_profile/create.php:273 +#: application/views/station_profile/create.php:237 +#: application/views/station_profile/create.php:276 +#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:292 #: application/views/station_profile/edit.php:331 #: application/views/station_profile/edit.php:339 #: application/views/station_profile/edit.php:365 @@ -8594,7 +8733,7 @@ msgid "Search DXCluster for latest Spot" msgstr "Suche im DX-Cluster nach letztem Spot" #: application/views/qso/index.php:196 application/views/qso/index.php:439 -#: application/views/station_profile/create.php:130 +#: application/views/station_profile/create.php:149 #: application/views/station_profile/edit.php:191 #: application/views/user/edit.php:583 application/views/view_log/qso.php:282 #: application/views/view_log/qso.php:549 @@ -8602,7 +8741,7 @@ msgid "IOTA Reference" msgstr "IOTA-Referenznummer" #: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:146 +#: application/views/station_profile/create.php:165 #: application/views/station_profile/edit.php:219 #: application/views/user/edit.php:587 application/views/view_log/qso.php:289 #: application/views/view_log/qso.php:556 @@ -8873,26 +9012,14 @@ msgstr "Es wurden keine falschen CQ-Zonen gefunden." msgid "Save query" msgstr "Suchmuster speichern" -#: application/views/search/filter.php:46 -msgid "Edit queries" -msgstr "Suchmuster bearbeiten" - #: application/views/search/filter.php:50 msgid "Stored queries" msgstr "Gespeicherte Suchmuster" -#: application/views/search/filter.php:60 -msgid "Run Query" -msgstr "Suchmuster ausführen" - #: application/views/search/filter.php:69 msgid "search filter functions" msgstr "Suchfilter-Funktionen" -#: application/views/search/filter.php:79 -msgid "Export to ADIF" -msgstr "Nach ADIF exportieren" - #: application/views/search/filter.php:79 msgid "Search Results" msgstr "Suchergebnisse" @@ -9255,117 +9382,117 @@ msgstr "" "Eine vollständige Zusammenfassung aller Kommandos und der notwendigen Syntax " "findest du in %s unseres Wikis." -#: application/views/station_profile/create.php:32 +#: application/views/station_profile/create.php:51 #: application/views/station_profile/edit.php:40 msgid "Location Name" msgstr "Name des Standorts" -#: application/views/station_profile/create.php:33 -#: application/views/station_profile/create.php:34 +#: application/views/station_profile/create.php:52 +#: application/views/station_profile/create.php:53 #: application/views/station_profile/edit.php:42 msgctxt "Station Location Setup" msgid "Home QTH" msgstr "Heimat-QTH" -#: application/views/station_profile/create.php:34 +#: application/views/station_profile/create.php:53 #: application/views/station_profile/edit.php:42 #, php-format msgid "Shortname for the station location. For example: %s" msgstr "Kurzbezeichnung für den Stationsstandort. Zum Beispiel: %s" -#: application/views/station_profile/create.php:40 +#: application/views/station_profile/create.php:59 #: application/views/station_profile/edit.php:48 msgid "Station callsign. For example: 4W7EST/P" msgstr "Stationsrufzeichen. Zum Beispiel: HB9HIL/P" -#: application/views/station_profile/create.php:44 +#: application/views/station_profile/create.php:63 #: application/views/station_profile/edit.php:52 msgid "Station Power (W)" msgstr "Sendeleistung der Station (W)" -#: application/views/station_profile/create.php:46 +#: application/views/station_profile/create.php:65 #: application/views/station_profile/edit.php:54 msgid "Default station power in Watt. Overwritten by CAT." msgstr "" "Standardmässig eingestellte Sendeleistung in Watt. Wird von CAT-Daten " "überschrieben." -#: application/views/station_profile/create.php:49 +#: application/views/station_profile/create.php:68 #: application/views/station_profile/edit.php:69 msgid "Station DXCC" msgstr "Stations-DXCC" -#: application/views/station_profile/create.php:52 +#: application/views/station_profile/create.php:71 #: application/views/station_profile/edit.php:72 msgctxt "DXCC selection" msgid "None" msgstr "Nichts" -#: application/views/station_profile/create.php:59 +#: application/views/station_profile/create.php:78 #: application/views/station_profile/edit.php:85 msgid "Station DXCC entity. For example: Bolivia" msgstr "Stations DXCC-Entität. Zum Beispiel: Bolivien" -#: application/views/station_profile/create.php:64 +#: application/views/station_profile/create.php:83 #: application/views/station_profile/edit.php:91 msgid "Station City" msgstr "Station Stadt" -#: application/views/station_profile/create.php:66 +#: application/views/station_profile/create.php:85 #: application/views/station_profile/edit.php:93 msgid "Station city. For example: Oslo" msgstr "Stations Stadt. Zum Beispiel: Oslo" -#: application/views/station_profile/create.php:75 +#: application/views/station_profile/create.php:94 #: application/views/station_profile/edit.php:105 msgid "Station state. Applies to certain countries only." msgstr "Stations Staat. Ist nur für ausgewählte Länder verfügbar." -#: application/views/station_profile/create.php:80 +#: application/views/station_profile/create.php:99 #: application/views/station_profile/edit.php:110 msgid "Station County" msgstr "Stations County" -#: application/views/station_profile/create.php:82 +#: application/views/station_profile/create.php:101 #: application/views/station_profile/edit.php:112 msgid "Station County (Only used for USA/Alaska/Hawaii)." msgstr "Station County (Nur für USA/Alaska/Hawaii)." -#: application/views/station_profile/create.php:97 +#: application/views/station_profile/create.php:116 #: application/views/station_profile/edit.php:138 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your CQ Zone then %s to find it!" msgstr "Falls du deine CQ Zone nicht kennst %s um es herauszufinden!" -#: application/views/station_profile/create.php:97 -#: application/views/station_profile/create.php:111 -#: application/views/station_profile/create.php:125 +#: application/views/station_profile/create.php:116 +#: application/views/station_profile/create.php:130 +#: application/views/station_profile/create.php:144 #: application/views/station_profile/edit.php:138 #: application/views/station_profile/edit.php:155 #: application/views/station_profile/edit.php:179 msgid "click here" msgstr "klicke hier" -#: application/views/station_profile/create.php:111 +#: application/views/station_profile/create.php:130 #: application/views/station_profile/edit.php:155 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your ITU Zone then %s to find it!" msgstr "Falls du deine ITU-Zone nicht kennst %s um es herauszufinden!" -#: application/views/station_profile/create.php:116 +#: application/views/station_profile/create.php:135 #: application/views/station_profile/edit.php:167 #: application/views/station_profile/edit.php:170 msgid "Station Gridsquare" msgstr "Planquadrat der Station" -#: application/views/station_profile/create.php:121 +#: application/views/station_profile/create.php:140 #: application/views/station_profile/edit.php:175 msgid "Get Gridsquare" msgstr "Orte mein Planquadrat" -#: application/views/station_profile/create.php:125 +#: application/views/station_profile/create.php:144 #: application/views/station_profile/edit.php:179 #, php-format msgctxt "uses 'click here'" @@ -9376,7 +9503,7 @@ msgstr "" "Stations Planquadrat. Zum Beispiel: HM45AP. Falls du deinen Locator nicht " "kennst %s!" -#: application/views/station_profile/create.php:126 +#: application/views/station_profile/create.php:145 #: application/views/station_profile/edit.php:180 msgid "" "If you are located on a grid line, enter multiple grid squares separated " @@ -9385,52 +9512,52 @@ msgstr "" "Wenn du genau auf der Linie eines Planquadrates bist kannst du mehrere " "Planquadrate mit Kommas getrennt eingeben. Zum Beispiel: IO77,IO78,IO87,IO88." -#: application/views/station_profile/create.php:141 +#: application/views/station_profile/create.php:160 #: application/views/station_profile/edit.php:205 msgid "Station IOTA reference. For example: EU-005" msgstr "IOTA Referenznummer der Station. Zum Beispiel: EU-005" -#: application/views/station_profile/create.php:142 +#: application/views/station_profile/create.php:161 #: application/views/station_profile/edit.php:206 msgid "IOTA World website" msgstr "IOTA World Webseite" -#: application/views/station_profile/create.php:142 +#: application/views/station_profile/create.php:161 #: application/views/station_profile/edit.php:206 #, php-format msgid "You can look up IOTA references at the %s." msgstr "Du kannst IOTA-Referenzen auf der %s nachschauen." -#: application/views/station_profile/create.php:148 +#: application/views/station_profile/create.php:167 #: application/views/station_profile/edit.php:221 msgid "SOTA Maps website" msgstr "SOTA Karten Webseite" -#: application/views/station_profile/create.php:148 +#: application/views/station_profile/create.php:167 #: application/views/station_profile/edit.php:221 #, php-format msgid "Station SOTA reference. You can look up SOTA references at the %s." msgstr "" "Stations-SOTA-Referenz. Du kannst SOTA-Referenzen auf der %s nachschauen." -#: application/views/station_profile/create.php:154 +#: application/views/station_profile/create.php:173 #: application/views/station_profile/edit.php:234 msgid "GMA Map website" msgstr "GMA-Kartenseite" -#: application/views/station_profile/create.php:154 +#: application/views/station_profile/create.php:173 #: application/views/station_profile/edit.php:234 #, php-format msgid "Station WWFF reference. You can look up WWFF references at the %s." msgstr "" "Stations-WWFF-Referenz. Du kannst WWFF Referenzen auf der %s nachschauen." -#: application/views/station_profile/create.php:160 +#: application/views/station_profile/create.php:179 #: application/views/station_profile/edit.php:247 msgid "POTA Map website" msgstr "POTA-Karten-Webseite" -#: application/views/station_profile/create.php:160 +#: application/views/station_profile/create.php:179 #: application/views/station_profile/edit.php:247 #, php-format msgid "" @@ -9440,43 +9567,43 @@ msgstr "" "Stations-POTA-Referenzen. Es sind mehrere Referenzen durch Komma separiert " "erlaubt. Du kannst POTA Referenzen auf der %s nachschauen." -#: application/views/station_profile/create.php:164 +#: application/views/station_profile/create.php:183 #: application/views/station_profile/edit.php:260 msgid "Signature Name" msgstr "Signatur-Bezeichnung" -#: application/views/station_profile/create.php:166 +#: application/views/station_profile/create.php:185 #: application/views/station_profile/edit.php:262 msgid "Station Signature (e.g. GMA).." msgstr "Signatur/Referenz der Station (z.B. GMA).." -#: application/views/station_profile/create.php:170 +#: application/views/station_profile/create.php:189 #: application/views/station_profile/edit.php:266 msgid "Signature Information" msgstr "Signatur-Information" -#: application/views/station_profile/create.php:172 +#: application/views/station_profile/create.php:191 #: application/views/station_profile/edit.php:268 msgid "Station Signature Info (e.g. DA/NW-357)." msgstr "Signatur/Referenz-Information der Station (z.B. DA/NW-357)." -#: application/views/station_profile/create.php:176 +#: application/views/station_profile/create.php:195 #: application/views/station_profile/edit.php:281 msgctxt "Probably no translation needed" msgid "eQSL QTH Nickname" msgstr "eQSL-QTH-Nickname" -#: application/views/station_profile/create.php:178 +#: application/views/station_profile/create.php:197 #: application/views/station_profile/edit.php:283 msgid "The QTH Nickname which is configured in your eQSL Profile" msgstr "Der 'QTH-Nickname' wie er in deinem eQSL Profil konfiguriert ist" -#: application/views/station_profile/create.php:182 +#: application/views/station_profile/create.php:201 #: application/views/station_profile/edit.php:286 msgid "Default QSLMSG" msgstr "Standard-QSLMSG" -#: application/views/station_profile/create.php:185 +#: application/views/station_profile/create.php:204 #: application/views/station_profile/edit.php:289 msgid "" "Define a default message that will be populated and sent for each QSO for " @@ -9485,12 +9612,12 @@ msgstr "" "Definiere eine Standard-Nachricht, welche für jedes QSO in diesem " "Stationsstandort an eQSL übertragen wird." -#: application/views/station_profile/create.php:188 +#: application/views/station_profile/create.php:207 #: application/views/station_profile/edit.php:328 msgid "Ignore Clublog Upload" msgstr "Ignoriere Clublog-Upload" -#: application/views/station_profile/create.php:193 +#: application/views/station_profile/create.php:212 #: application/views/station_profile/edit.php:333 msgid "" "If enabled, the QSOs made from this location will not be uploaded to " @@ -9502,17 +9629,17 @@ msgstr "" "deaktiviert springt, bitte bei Clublog die Einstellungen für diesen Call " "überprüfen" -#: application/views/station_profile/create.php:196 +#: application/views/station_profile/create.php:215 #: application/views/station_profile/edit.php:336 msgid "ClubLog Realtime Upload" msgstr "Clublog-Echtzeit-Upload" -#: application/views/station_profile/create.php:205 +#: application/views/station_profile/create.php:224 #: application/views/station_profile/edit.php:352 msgid "HRDLog.net Username" msgstr "HRDLog.net Benutzername" -#: application/views/station_profile/create.php:207 +#: application/views/station_profile/create.php:226 #: application/views/station_profile/edit.php:354 msgid "" "The username you are registered with at HRDlog.net (usually your callsign)." @@ -9520,109 +9647,109 @@ msgstr "" "Der Benutzername mit dem du bei HRDlog.net registriert bist (normalerweise " "dein Rufzeichen)." -#: application/views/station_profile/create.php:210 +#: application/views/station_profile/create.php:229 #: application/views/station_profile/edit.php:357 msgid "HRDLog.net API Key" msgstr "HRDLog.net API-Schlüssel" -#: application/views/station_profile/create.php:212 +#: application/views/station_profile/create.php:231 #: application/views/station_profile/edit.php:359 #, php-format msgctxt "HRDLog.net Userprofile page" msgid "Create your API Code on your %s" msgstr "Erstelle deinen API-Code auf deiner %s" -#: application/views/station_profile/create.php:212 +#: application/views/station_profile/create.php:231 #: application/views/station_profile/edit.php:359 msgid "HRDLog.net Userprofile page" msgstr "HRDlog.net Benutzerprofil-Seite" -#: application/views/station_profile/create.php:215 +#: application/views/station_profile/create.php:234 #: application/views/station_profile/edit.php:362 msgid "HRDLog.net Logbook Realtime Upload" msgstr "HRDLog.net Logbuch-Echtzeit-Upload" -#: application/views/station_profile/create.php:224 +#: application/views/station_profile/create.php:243 #: application/views/station_profile/edit.php:297 msgid "Subscription Required" msgstr "Abonnement erforderlich" -#: application/views/station_profile/create.php:229 +#: application/views/station_profile/create.php:248 msgctxt "Probably no translation needed" msgid "QRZ.com Logbook API Key" msgstr "QRZ.com-Logbuch API-Schlüssel" -#: application/views/station_profile/create.php:232 +#: application/views/station_profile/create.php:251 msgid "Test API-Key" msgstr "Teste API-Schlüssel" -#: application/views/station_profile/create.php:235 +#: application/views/station_profile/create.php:254 #: application/views/station_profile/edit.php:306 #, php-format msgctxt "the QRZ.com Logbook settings page" msgid "Find your API key on %s" msgstr "Finde deinen API-Schlüssel auf %s" -#: application/views/station_profile/create.php:235 +#: application/views/station_profile/create.php:254 #: application/views/station_profile/edit.php:306 msgid "the QRZ.com Logbook settings page" msgstr "der QRZ.com Logbuch-Einstellungen Seite" -#: application/views/station_profile/create.php:238 +#: application/views/station_profile/create.php:257 #: application/views/station_profile/edit.php:310 msgid "QRZ.com Logbook Upload" msgstr "QRZ.com Logbuch-Upload" -#: application/views/station_profile/create.php:241 +#: application/views/station_profile/create.php:260 #: application/views/station_profile/edit.php:313 msgid "Realtime" msgstr "Echtzeit" -#: application/views/station_profile/create.php:249 +#: application/views/station_profile/create.php:268 #: application/views/station_profile/edit.php:378 msgctxt "Probably no translation needed" msgid "QO-100 Dx Club API Key" msgstr "QO-100 Dx Club API-Schlüssel" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:270 #: application/views/station_profile/edit.php:380 #, php-format msgctxt "QO-100 Dx Club's profile page" msgid "Create your API key on your %s" msgstr "Erstelle deinen API-Schlüssel auf deiner %s" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:270 #: application/views/station_profile/edit.php:380 msgid "QO-100 Dx Club's profile page" msgstr "QO-100 Dx Club Profil-Seite" -#: application/views/station_profile/create.php:254 +#: application/views/station_profile/create.php:273 #: application/views/station_profile/edit.php:383 msgid "QO-100 Dx Club Realtime Upload" msgstr "QO-100 Dx Club Echtzeit-Upload" -#: application/views/station_profile/create.php:264 +#: application/views/station_profile/create.php:283 #: application/views/station_profile/edit.php:401 msgid "OQRS Enabled" msgstr "OQRS aktivieren" -#: application/views/station_profile/create.php:271 +#: application/views/station_profile/create.php:290 #: application/views/station_profile/edit.php:408 msgid "OQRS Email alert" msgstr "OQRS Email-Benachrichtigung" -#: application/views/station_profile/create.php:276 +#: application/views/station_profile/create.php:295 #: application/views/station_profile/edit.php:413 msgid "Make sure email is set up under admin and global options." msgstr "" "Stelle sicher, dass du E-Mail unter Admin/Globale Optionen konfiguriert hast." -#: application/views/station_profile/create.php:279 +#: application/views/station_profile/create.php:298 #: application/views/station_profile/edit.php:416 msgid "OQRS Text" msgstr "OQRS-Text" -#: application/views/station_profile/create.php:281 +#: application/views/station_profile/create.php:300 #: application/views/station_profile/edit.php:418 msgid "Some info you want to add regarding QSL'ing." msgstr "Einige Informationen, die du zum QSL-Vorgang hinzufügen möchtest." @@ -10613,7 +10740,8 @@ msgstr "Angemeldet bleiben" #: application/views/user/main.php:2 msgid "Do you really want to send this user a password-reset link?" -msgstr "Willst du wirklich diesem Benutzer eine E-Mail zum Passwort-Reset senden?" +msgstr "" +"Willst du wirklich diesem Benutzer eine E-Mail zum Passwort-Reset senden?" #: application/views/user/main.php:6 msgid "Please Wait ..." @@ -10752,10 +10880,6 @@ msgstr "QSO Details" msgid "QSL Management" msgstr "QSL Verwaltung" -#: application/views/view_log/qso.php:42 -msgid "eQSL Card" -msgstr "eQSL-Karte" - #: application/views/view_log/qso.php:128 msgid "Total Distance" msgstr "Entfernung" @@ -10827,10 +10951,6 @@ msgstr "Mehr QSOs" msgid "Details" msgstr "Details" -#: application/views/view_log/qso.php:604 -msgid "QSL image file" -msgstr "QSL-Bilddatei" - #: application/views/view_log/qso.php:630 msgid "Uploaded QSL Card front image" msgstr "QSL-Kartenfront hochgeladen" @@ -10974,6 +11094,19 @@ msgstr "Dein Rufzeichen:" msgid "Submit Request" msgstr "Anfrage senden" +#, php-format +#~ msgid "" +#~ "The current migration is not the version it is supposed to be. Reload " +#~ "this page. If this warning persists, your migration is probably locked " +#~ "due to a past failed process. Check the folder %s for a file called %s " +#~ "and remove this file to force the migration to run again." +#~ msgstr "" +#~ "Die aktuelle Migration ist nicht die Version, die sie sein sollte. Lade " +#~ "diese Seite neu. Wenn diese Warnung weiterhin besteht, ist deine " +#~ "Migration wahrscheinlich aufgrund eines früheren fehlgeschlagenen " +#~ "Prozesses gesperrt. Überprüfe den Ordner %s auf eine Datei namens %s und " +#~ "entferne diese Datei, um die Migration erneut zu erzwingen." + #~ msgid "VHF/UHF Century Club (VUCC)" #~ msgstr "VHF/UHF Century Club (VUCC)" diff --git a/application/locale/el_GR/LC_MESSAGES/messages.po b/application/locale/el_GR/LC_MESSAGES/messages.po index 4dbac9385..a71943c9a 100644 --- a/application/locale/el_GR/LC_MESSAGES/messages.po +++ b/application/locale/el_GR/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-01 15:48+0000\n" +"POT-Creation-Date: 2024-08-06 18:03+0000\n" "PO-Revision-Date: 2024-07-09 13:25+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: Greek here for " +"more information." msgstr "" #: application/views/debug/index.php:48 #, php-format +msgid "Current migration is %s" +msgstr "" + +#: application/views/debug/index.php:49 +#, php-format msgid "Migration should be %s" msgstr "" -#: application/views/debug/index.php:53 +#: application/views/debug/index.php:54 msgid "Environment" msgstr "" -#: application/views/debug/index.php:61 +#: application/views/debug/index.php:62 msgid "Total QSO on this instance" msgstr "" -#: application/views/debug/index.php:69 +#: application/views/debug/index.php:70 msgid "Server Information" msgstr "" -#: application/views/debug/index.php:73 +#: application/views/debug/index.php:74 msgid "Server Software" msgstr "" -#: application/views/debug/index.php:78 +#: application/views/debug/index.php:79 msgid "PHP Version" msgstr "" -#: application/views/debug/index.php:84 +#: application/views/debug/index.php:85 msgid "Deprecated" msgstr "" -#: application/views/debug/index.php:91 +#: application/views/debug/index.php:92 msgid "MySQL Version" msgstr "" -#: application/views/debug/index.php:95 +#: application/views/debug/index.php:96 msgid "Codeigniter Version" msgstr "" -#: application/views/debug/index.php:103 +#: application/views/debug/index.php:104 msgid "Folder Permissions" msgstr "" -#: application/views/debug/index.php:105 +#: application/views/debug/index.php:106 msgid "" "This verifies that the folders used by Wavelog have read and write " "permissions by PHP." msgstr "" -#: application/views/debug/index.php:111 application/views/debug/index.php:122 -#: application/views/debug/index.php:133 application/views/debug/index.php:144 -#: application/views/debug/index.php:156 +#: application/views/debug/index.php:112 application/views/debug/index.php:123 +#: application/views/debug/index.php:134 application/views/debug/index.php:145 +#: application/views/debug/index.php:157 msgid "Success" msgstr "" -#: application/views/debug/index.php:113 application/views/debug/index.php:124 -#: application/views/debug/index.php:135 application/views/debug/index.php:146 -#: application/views/debug/index.php:158 +#: application/views/debug/index.php:114 application/views/debug/index.php:125 +#: application/views/debug/index.php:136 application/views/debug/index.php:147 +#: application/views/debug/index.php:159 msgid "Failed" msgstr "" -#: application/views/debug/index.php:168 +#: application/views/debug/index.php:169 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:174 +#: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" -#: application/views/debug/index.php:176 application/views/debug/index.php:193 +#: application/views/debug/index.php:177 application/views/debug/index.php:194 #, php-format msgid "Please edit your %s File:" msgstr "" -#: application/views/debug/index.php:177 +#: application/views/debug/index.php:178 msgid "" "Go to your application/config Folder and compare config.sample.php with your " "config.php" msgstr "" -#: application/views/debug/index.php:178 +#: application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:184 +#: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" msgstr "" -#: application/views/debug/index.php:184 application/views/debug/index.php:201 +#: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" msgstr "" -#: application/views/debug/index.php:191 +#: application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "" -#: application/views/debug/index.php:194 +#: application/views/debug/index.php:195 msgid "This will also enable the 'Keep me logged in' feature." msgstr "" -#: application/views/debug/index.php:195 +#: application/views/debug/index.php:196 #, php-format msgid "" "Change the value of %s to a new encryption key other then " "'flossie1234555541'. Choose a safe and long password. (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:201 +#: application/views/debug/index.php:202 msgid "You do not use the default encryption key" msgstr "" -#: application/views/debug/index.php:208 +#: application/views/debug/index.php:209 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:210 +#: application/views/debug/index.php:211 msgid "" "Here you can migrate existing QSL cards and eQSL cards to the new userdata " "folder." msgstr "" -#: application/views/debug/index.php:223 +#: application/views/debug/index.php:224 msgid "Modules" msgstr "" -#: application/views/debug/index.php:229 application/views/debug/index.php:240 -#: application/views/debug/index.php:251 application/views/debug/index.php:262 -#: application/views/debug/index.php:273 +#: application/views/debug/index.php:230 application/views/debug/index.php:241 +#: application/views/debug/index.php:252 application/views/debug/index.php:263 +#: application/views/debug/index.php:274 msgid "Installed" msgstr "" -#: application/views/debug/index.php:231 application/views/debug/index.php:242 -#: application/views/debug/index.php:253 application/views/debug/index.php:264 -#: application/views/debug/index.php:275 +#: application/views/debug/index.php:232 application/views/debug/index.php:243 +#: application/views/debug/index.php:254 application/views/debug/index.php:265 +#: application/views/debug/index.php:276 msgid "Not Installed" msgstr "" -#: application/views/debug/index.php:282 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:654 msgid "Settings" msgstr "" -#: application/views/debug/index.php:411 +#: application/views/debug/index.php:412 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:415 +#: application/views/debug/index.php:416 msgid "Branch" msgstr "" -#: application/views/debug/index.php:426 application/views/debug/index.php:437 -#: application/views/debug/index.php:447 +#: application/views/debug/index.php:427 application/views/debug/index.php:438 +#: application/views/debug/index.php:448 msgid "n/a" msgstr "" -#: application/views/debug/index.php:432 +#: application/views/debug/index.php:433 msgid "Commit" msgstr "" -#: application/views/debug/index.php:442 +#: application/views/debug/index.php:443 msgid "Tag" msgstr "" -#: application/views/debug/index.php:452 +#: application/views/debug/index.php:453 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:464 +#: application/views/debug/index.php:465 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:466 msgid "Update now" msgstr "" -#: application/views/debug/index.php:483 +#: application/views/debug/index.php:484 msgid "File download date" msgstr "" -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:488 msgid "File" msgstr "" -#: application/views/debug/index.php:488 +#: application/views/debug/index.php:489 msgid "Last update" msgstr "" -#: application/views/debug/index.php:492 +#: application/views/debug/index.php:493 msgid "DXCC update from Club Log" msgstr "" -#: application/views/debug/index.php:494 application/views/debug/index.php:500 -#: application/views/debug/index.php:505 application/views/debug/index.php:510 -#: application/views/debug/index.php:515 application/views/debug/index.php:520 -#: application/views/debug/index.php:525 +#: application/views/debug/index.php:495 application/views/debug/index.php:501 +#: application/views/debug/index.php:506 application/views/debug/index.php:511 +#: application/views/debug/index.php:516 application/views/debug/index.php:521 +#: application/views/debug/index.php:526 #: application/views/station_profile/edit.php:22 msgid "Update" msgstr "" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:499 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:503 +#: application/views/debug/index.php:504 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:508 +#: application/views/debug/index.php:509 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:513 +#: application/views/debug/index.php:514 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:518 +#: application/views/debug/index.php:519 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:523 +#: application/views/debug/index.php:524 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:532 +#: application/views/debug/index.php:533 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:537 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -5500,9 +5520,9 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:549 +#: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:38 +#: application/views/station_profile/create.php:57 #: application/views/station_profile/edit.php:46 #: application/views/station_profile/index.php:42 #: application/views/stationsetup/linkedlocations.php:32 @@ -5510,88 +5530,88 @@ msgstr[1] "" msgid "Station Callsign" msgstr "" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:582 +#: application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:583 application/views/debug/index.php:594 +#: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:628 +#: application/views/debug/index.php:629 msgid "Bulgarian" msgstr "" -#: application/views/debug/index.php:629 +#: application/views/debug/index.php:630 msgid "Chinese (Simplified)" msgstr "" -#: application/views/debug/index.php:630 +#: application/views/debug/index.php:631 msgid "Czech" msgstr "" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:632 msgid "Dutch" msgstr "" -#: application/views/debug/index.php:632 +#: application/views/debug/index.php:633 msgid "English" msgstr "" -#: application/views/debug/index.php:633 +#: application/views/debug/index.php:634 msgid "Finnish" msgstr "" -#: application/views/debug/index.php:634 +#: application/views/debug/index.php:635 msgid "French" msgstr "" -#: application/views/debug/index.php:635 +#: application/views/debug/index.php:636 msgid "German" msgstr "" -#: application/views/debug/index.php:636 +#: application/views/debug/index.php:637 msgid "Greek" msgstr "" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:638 msgid "Italian" msgstr "" -#: application/views/debug/index.php:638 +#: application/views/debug/index.php:639 msgid "Polish" msgstr "" -#: application/views/debug/index.php:639 +#: application/views/debug/index.php:640 msgid "Portuguese" msgstr "" -#: application/views/debug/index.php:640 +#: application/views/debug/index.php:641 msgid "Russian" msgstr "" -#: application/views/debug/index.php:641 +#: application/views/debug/index.php:642 msgid "Spanish" msgstr "" -#: application/views/debug/index.php:642 +#: application/views/debug/index.php:643 msgid "Swedish" msgstr "" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:644 msgid "Turkish" msgstr "" @@ -5810,6 +5830,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:60 +#: application/views/interface_assets/footer.php:2342 +#: application/views/interface_assets/footer.php:2360 +#: application/views/interface_assets/footer.php:2381 +#: application/views/interface_assets/footer.php:2399 #: application/views/qslcard/index.php:66 #: application/views/view_log/qso.php:614 msgid "View" @@ -5970,6 +5994,69 @@ msgstr "" msgid "Version Info" msgstr "" +#: application/views/interface_assets/footer.php:392 +msgid "Description:" +msgstr "" + +#: application/views/interface_assets/footer.php:395 +msgid "Query description" +msgstr "" + +#: application/views/interface_assets/footer.php:411 +msgid "Your query has been saved!" +msgstr "" + +#: application/views/interface_assets/footer.php:413 +#: application/views/search/filter.php:46 +msgid "Edit queries" +msgstr "" + +#: application/views/interface_assets/footer.php:415 +msgid "Stored queries:" +msgstr "" + +#: application/views/interface_assets/footer.php:420 +#: application/views/search/filter.php:60 +msgid "Run Query" +msgstr "" + +#: application/views/interface_assets/footer.php:432 +#: application/views/interface_assets/footer.php:561 +#: application/views/interface_assets/footer.php:625 +msgid "Stored Queries" +msgstr "" + +#: application/views/interface_assets/footer.php:437 +#: application/views/interface_assets/footer.php:630 +msgid "You need to make a query before you search!" +msgstr "" + +#: application/views/interface_assets/footer.php:458 +#: application/views/interface_assets/footer.php:589 +#: application/views/search/filter.php:79 +msgid "Export to ADIF" +msgstr "" + +#: application/views/interface_assets/footer.php:496 +msgid "Warning! Are you sure you want delete this stored query?" +msgstr "" + +#: application/views/interface_assets/footer.php:510 +msgid "The stored query has been deleted!" +msgstr "" + +#: application/views/interface_assets/footer.php:519 +msgid "The stored query could not be deleted. Please try again!" +msgstr "" + +#: application/views/interface_assets/footer.php:545 +msgid "The query description has been updated!" +msgstr "" + +#: application/views/interface_assets/footer.php:549 +msgid "Something went wrong with the save. Please try again!" +msgstr "" + #: application/views/interface_assets/footer.php:672 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " @@ -5977,20 +6064,65 @@ msgid "" "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:1374 -#: application/views/interface_assets/footer.php:1378 -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1518 -#: application/views/interface_assets/footer.php:1522 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1174 +#, php-format +msgid "You're not logged it. Please login" +msgstr "" + +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1384 +#: application/views/interface_assets/footer.php:1387 +#: application/views/interface_assets/footer.php:1524 +#: application/views/interface_assets/footer.php:1528 +#: application/views/interface_assets/footer.php:1531 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1387 +#: application/views/interface_assets/footer.php:1531 msgid "Total count" msgstr "" +#: application/views/interface_assets/footer.php:2118 +msgid "QSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2138 +msgid "Warning! Are you sure you want to delete this QSL card?" +msgstr "" + +#: application/views/interface_assets/footer.php:2178 +#: application/views/view_log/qso.php:42 +msgid "eQSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2180 +msgid "eQSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2353 +#: application/views/interface_assets/footer.php:2392 +#: application/views/view_log/qso.php:604 +msgid "QSL image file" +msgstr "" + +#: application/views/interface_assets/footer.php:2372 +msgid "Front QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2410 +msgid "Back QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2421 +#: application/views/interface_assets/footer.php:2446 +msgid "Add additional QSOs to a QSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2457 +msgid "Something went wrong. Please try again!" +msgstr "" + #: application/views/interface_assets/header.php:86 msgid "Developer Mode" msgstr "" @@ -6538,12 +6670,12 @@ msgstr "" #: application/views/qso/edit_ajax.php:495 #: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:190 -#: application/views/station_profile/create.php:198 +#: application/views/station_profile/create.php:209 #: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:256 -#: application/views/station_profile/create.php:267 -#: application/views/station_profile/create.php:274 +#: application/views/station_profile/create.php:236 +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/create.php:286 +#: application/views/station_profile/create.php:293 #: application/views/station_profile/edit.php:330 #: application/views/station_profile/edit.php:338 #: application/views/station_profile/edit.php:364 @@ -6576,12 +6708,12 @@ msgstr "Ναι" #: application/views/qso/edit_ajax.php:494 #: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/create.php:199 +#: application/views/station_profile/create.php:210 #: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/create.php:266 -#: application/views/station_profile/create.php:273 +#: application/views/station_profile/create.php:237 +#: application/views/station_profile/create.php:276 +#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:292 #: application/views/station_profile/edit.php:331 #: application/views/station_profile/edit.php:339 #: application/views/station_profile/edit.php:365 @@ -8192,7 +8324,7 @@ msgid "Search DXCluster for latest Spot" msgstr "" #: application/views/qso/index.php:196 application/views/qso/index.php:439 -#: application/views/station_profile/create.php:130 +#: application/views/station_profile/create.php:149 #: application/views/station_profile/edit.php:191 #: application/views/user/edit.php:583 application/views/view_log/qso.php:282 #: application/views/view_log/qso.php:549 @@ -8200,7 +8332,7 @@ msgid "IOTA Reference" msgstr "Παραπομπή IOTA" #: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:146 +#: application/views/station_profile/create.php:165 #: application/views/station_profile/edit.php:219 #: application/views/user/edit.php:587 application/views/view_log/qso.php:289 #: application/views/view_log/qso.php:556 @@ -8460,26 +8592,14 @@ msgstr "" msgid "Save query" msgstr "" -#: application/views/search/filter.php:46 -msgid "Edit queries" -msgstr "" - #: application/views/search/filter.php:50 msgid "Stored queries" msgstr "" -#: application/views/search/filter.php:60 -msgid "Run Query" -msgstr "" - #: application/views/search/filter.php:69 msgid "search filter functions" msgstr "" -#: application/views/search/filter.php:79 -msgid "Export to ADIF" -msgstr "" - #: application/views/search/filter.php:79 msgid "Search Results" msgstr "" @@ -8797,115 +8917,115 @@ msgid "" "of our Wiki." msgstr "" -#: application/views/station_profile/create.php:32 +#: application/views/station_profile/create.php:51 #: application/views/station_profile/edit.php:40 msgid "Location Name" msgstr "" -#: application/views/station_profile/create.php:33 -#: application/views/station_profile/create.php:34 +#: application/views/station_profile/create.php:52 +#: application/views/station_profile/create.php:53 #: application/views/station_profile/edit.php:42 msgctxt "Station Location Setup" msgid "Home QTH" msgstr "" -#: application/views/station_profile/create.php:34 +#: application/views/station_profile/create.php:53 #: application/views/station_profile/edit.php:42 #, php-format msgid "Shortname for the station location. For example: %s" msgstr "" -#: application/views/station_profile/create.php:40 +#: application/views/station_profile/create.php:59 #: application/views/station_profile/edit.php:48 msgid "Station callsign. For example: 4W7EST/P" msgstr "" -#: application/views/station_profile/create.php:44 +#: application/views/station_profile/create.php:63 #: application/views/station_profile/edit.php:52 msgid "Station Power (W)" msgstr "" -#: application/views/station_profile/create.php:46 +#: application/views/station_profile/create.php:65 #: application/views/station_profile/edit.php:54 msgid "Default station power in Watt. Overwritten by CAT." msgstr "" -#: application/views/station_profile/create.php:49 +#: application/views/station_profile/create.php:68 #: application/views/station_profile/edit.php:69 msgid "Station DXCC" msgstr "" -#: application/views/station_profile/create.php:52 +#: application/views/station_profile/create.php:71 #: application/views/station_profile/edit.php:72 msgctxt "DXCC selection" msgid "None" msgstr "" -#: application/views/station_profile/create.php:59 +#: application/views/station_profile/create.php:78 #: application/views/station_profile/edit.php:85 msgid "Station DXCC entity. For example: Bolivia" msgstr "" -#: application/views/station_profile/create.php:64 +#: application/views/station_profile/create.php:83 #: application/views/station_profile/edit.php:91 msgid "Station City" msgstr "" -#: application/views/station_profile/create.php:66 +#: application/views/station_profile/create.php:85 #: application/views/station_profile/edit.php:93 msgid "Station city. For example: Oslo" msgstr "" -#: application/views/station_profile/create.php:75 +#: application/views/station_profile/create.php:94 #: application/views/station_profile/edit.php:105 msgid "Station state. Applies to certain countries only." msgstr "" -#: application/views/station_profile/create.php:80 +#: application/views/station_profile/create.php:99 #: application/views/station_profile/edit.php:110 msgid "Station County" msgstr "" -#: application/views/station_profile/create.php:82 +#: application/views/station_profile/create.php:101 #: application/views/station_profile/edit.php:112 msgid "Station County (Only used for USA/Alaska/Hawaii)." msgstr "" -#: application/views/station_profile/create.php:97 +#: application/views/station_profile/create.php:116 #: application/views/station_profile/edit.php:138 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your CQ Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:97 -#: application/views/station_profile/create.php:111 -#: application/views/station_profile/create.php:125 +#: application/views/station_profile/create.php:116 +#: application/views/station_profile/create.php:130 +#: application/views/station_profile/create.php:144 #: application/views/station_profile/edit.php:138 #: application/views/station_profile/edit.php:155 #: application/views/station_profile/edit.php:179 msgid "click here" msgstr "" -#: application/views/station_profile/create.php:111 +#: application/views/station_profile/create.php:130 #: application/views/station_profile/edit.php:155 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your ITU Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:116 +#: application/views/station_profile/create.php:135 #: application/views/station_profile/edit.php:167 #: application/views/station_profile/edit.php:170 msgid "Station Gridsquare" msgstr "" -#: application/views/station_profile/create.php:121 +#: application/views/station_profile/create.php:140 #: application/views/station_profile/edit.php:175 msgid "Get Gridsquare" msgstr "" -#: application/views/station_profile/create.php:125 +#: application/views/station_profile/create.php:144 #: application/views/station_profile/edit.php:179 #, php-format msgctxt "uses 'click here'" @@ -8914,57 +9034,57 @@ msgid "" "then %s!" msgstr "" -#: application/views/station_profile/create.php:126 +#: application/views/station_profile/create.php:145 #: application/views/station_profile/edit.php:180 msgid "" "If you are located on a grid line, enter multiple grid squares separated " "with commas. For example: IO77,IO78,IO87,IO88." msgstr "" -#: application/views/station_profile/create.php:141 +#: application/views/station_profile/create.php:160 #: application/views/station_profile/edit.php:205 msgid "Station IOTA reference. For example: EU-005" msgstr "" -#: application/views/station_profile/create.php:142 +#: application/views/station_profile/create.php:161 #: application/views/station_profile/edit.php:206 msgid "IOTA World website" msgstr "" -#: application/views/station_profile/create.php:142 +#: application/views/station_profile/create.php:161 #: application/views/station_profile/edit.php:206 #, php-format msgid "You can look up IOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:148 +#: application/views/station_profile/create.php:167 #: application/views/station_profile/edit.php:221 msgid "SOTA Maps website" msgstr "" -#: application/views/station_profile/create.php:148 +#: application/views/station_profile/create.php:167 #: application/views/station_profile/edit.php:221 #, php-format msgid "Station SOTA reference. You can look up SOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:154 +#: application/views/station_profile/create.php:173 #: application/views/station_profile/edit.php:234 msgid "GMA Map website" msgstr "" -#: application/views/station_profile/create.php:154 +#: application/views/station_profile/create.php:173 #: application/views/station_profile/edit.php:234 #, php-format msgid "Station WWFF reference. You can look up WWFF references at the %s." msgstr "" -#: application/views/station_profile/create.php:160 +#: application/views/station_profile/create.php:179 #: application/views/station_profile/edit.php:247 msgid "POTA Map website" msgstr "" -#: application/views/station_profile/create.php:160 +#: application/views/station_profile/create.php:179 #: application/views/station_profile/edit.php:247 #, php-format msgid "" @@ -8972,55 +9092,55 @@ msgid "" "look up POTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:164 +#: application/views/station_profile/create.php:183 #: application/views/station_profile/edit.php:260 msgid "Signature Name" msgstr "" -#: application/views/station_profile/create.php:166 +#: application/views/station_profile/create.php:185 #: application/views/station_profile/edit.php:262 msgid "Station Signature (e.g. GMA).." msgstr "" -#: application/views/station_profile/create.php:170 +#: application/views/station_profile/create.php:189 #: application/views/station_profile/edit.php:266 msgid "Signature Information" msgstr "" -#: application/views/station_profile/create.php:172 +#: application/views/station_profile/create.php:191 #: application/views/station_profile/edit.php:268 msgid "Station Signature Info (e.g. DA/NW-357)." msgstr "" -#: application/views/station_profile/create.php:176 +#: application/views/station_profile/create.php:195 #: application/views/station_profile/edit.php:281 msgctxt "Probably no translation needed" msgid "eQSL QTH Nickname" msgstr "" -#: application/views/station_profile/create.php:178 +#: application/views/station_profile/create.php:197 #: application/views/station_profile/edit.php:283 msgid "The QTH Nickname which is configured in your eQSL Profile" msgstr "" -#: application/views/station_profile/create.php:182 +#: application/views/station_profile/create.php:201 #: application/views/station_profile/edit.php:286 msgid "Default QSLMSG" msgstr "" -#: application/views/station_profile/create.php:185 +#: application/views/station_profile/create.php:204 #: application/views/station_profile/edit.php:289 msgid "" "Define a default message that will be populated and sent for each QSO for " "this station location." msgstr "" -#: application/views/station_profile/create.php:188 +#: application/views/station_profile/create.php:207 #: application/views/station_profile/edit.php:328 msgid "Ignore Clublog Upload" msgstr "" -#: application/views/station_profile/create.php:193 +#: application/views/station_profile/create.php:212 #: application/views/station_profile/edit.php:333 msgid "" "If enabled, the QSOs made from this location will not be uploaded to " @@ -9028,124 +9148,124 @@ msgid "" "properly configured at Clublog" msgstr "" -#: application/views/station_profile/create.php:196 +#: application/views/station_profile/create.php:215 #: application/views/station_profile/edit.php:336 msgid "ClubLog Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:205 +#: application/views/station_profile/create.php:224 #: application/views/station_profile/edit.php:352 msgid "HRDLog.net Username" msgstr "" -#: application/views/station_profile/create.php:207 +#: application/views/station_profile/create.php:226 #: application/views/station_profile/edit.php:354 msgid "" "The username you are registered with at HRDlog.net (usually your callsign)." msgstr "" -#: application/views/station_profile/create.php:210 +#: application/views/station_profile/create.php:229 #: application/views/station_profile/edit.php:357 msgid "HRDLog.net API Key" msgstr "" -#: application/views/station_profile/create.php:212 +#: application/views/station_profile/create.php:231 #: application/views/station_profile/edit.php:359 #, php-format msgctxt "HRDLog.net Userprofile page" msgid "Create your API Code on your %s" msgstr "" -#: application/views/station_profile/create.php:212 +#: application/views/station_profile/create.php:231 #: application/views/station_profile/edit.php:359 msgid "HRDLog.net Userprofile page" msgstr "" -#: application/views/station_profile/create.php:215 +#: application/views/station_profile/create.php:234 #: application/views/station_profile/edit.php:362 msgid "HRDLog.net Logbook Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:224 +#: application/views/station_profile/create.php:243 #: application/views/station_profile/edit.php:297 msgid "Subscription Required" msgstr "" -#: application/views/station_profile/create.php:229 +#: application/views/station_profile/create.php:248 msgctxt "Probably no translation needed" msgid "QRZ.com Logbook API Key" msgstr "" -#: application/views/station_profile/create.php:232 +#: application/views/station_profile/create.php:251 msgid "Test API-Key" msgstr "" -#: application/views/station_profile/create.php:235 +#: application/views/station_profile/create.php:254 #: application/views/station_profile/edit.php:306 #, php-format msgctxt "the QRZ.com Logbook settings page" msgid "Find your API key on %s" msgstr "" -#: application/views/station_profile/create.php:235 +#: application/views/station_profile/create.php:254 #: application/views/station_profile/edit.php:306 msgid "the QRZ.com Logbook settings page" msgstr "" -#: application/views/station_profile/create.php:238 +#: application/views/station_profile/create.php:257 #: application/views/station_profile/edit.php:310 msgid "QRZ.com Logbook Upload" msgstr "" -#: application/views/station_profile/create.php:241 +#: application/views/station_profile/create.php:260 #: application/views/station_profile/edit.php:313 msgid "Realtime" msgstr "" -#: application/views/station_profile/create.php:249 +#: application/views/station_profile/create.php:268 #: application/views/station_profile/edit.php:378 msgctxt "Probably no translation needed" msgid "QO-100 Dx Club API Key" msgstr "" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:270 #: application/views/station_profile/edit.php:380 #, php-format msgctxt "QO-100 Dx Club's profile page" msgid "Create your API key on your %s" msgstr "" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:270 #: application/views/station_profile/edit.php:380 msgid "QO-100 Dx Club's profile page" msgstr "" -#: application/views/station_profile/create.php:254 +#: application/views/station_profile/create.php:273 #: application/views/station_profile/edit.php:383 msgid "QO-100 Dx Club Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:264 +#: application/views/station_profile/create.php:283 #: application/views/station_profile/edit.php:401 msgid "OQRS Enabled" msgstr "" -#: application/views/station_profile/create.php:271 +#: application/views/station_profile/create.php:290 #: application/views/station_profile/edit.php:408 msgid "OQRS Email alert" msgstr "" -#: application/views/station_profile/create.php:276 +#: application/views/station_profile/create.php:295 #: application/views/station_profile/edit.php:413 msgid "Make sure email is set up under admin and global options." msgstr "" -#: application/views/station_profile/create.php:279 +#: application/views/station_profile/create.php:298 #: application/views/station_profile/edit.php:416 msgid "OQRS Text" msgstr "" -#: application/views/station_profile/create.php:281 +#: application/views/station_profile/create.php:300 #: application/views/station_profile/edit.php:418 msgid "Some info you want to add regarding QSL'ing." msgstr "" @@ -10181,10 +10301,6 @@ msgstr "Στοιχεία QSO" msgid "QSL Management" msgstr "" -#: application/views/view_log/qso.php:42 -msgid "eQSL Card" -msgstr "" - #: application/views/view_log/qso.php:128 msgid "Total Distance" msgstr "Συνολική Απόσταση" @@ -10256,10 +10372,6 @@ msgstr "" msgid "Details" msgstr "" -#: application/views/view_log/qso.php:604 -msgid "QSL image file" -msgstr "" - #: application/views/view_log/qso.php:630 msgid "Uploaded QSL Card front image" msgstr "Μεταφορτώθηκε η μπροστινή εικόνα της κάρτας QSL" diff --git a/application/locale/es_ES/LC_MESSAGES/messages.po b/application/locale/es_ES/LC_MESSAGES/messages.po index 88fa00af9..faaf8fec9 100644 --- a/application/locale/es_ES/LC_MESSAGES/messages.po +++ b/application/locale/es_ES/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-01 15:48+0000\n" +"POT-Creation-Date: 2024-08-06 18:03+0000\n" "PO-Revision-Date: 2024-07-09 13:25+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Spanish here for " +"more information." msgstr "" #: application/views/debug/index.php:48 #, php-format +msgid "Current migration is %s" +msgstr "" + +#: application/views/debug/index.php:49 +#, php-format msgid "Migration should be %s" msgstr "" -#: application/views/debug/index.php:53 +#: application/views/debug/index.php:54 msgid "Environment" msgstr "" -#: application/views/debug/index.php:61 +#: application/views/debug/index.php:62 msgid "Total QSO on this instance" msgstr "" -#: application/views/debug/index.php:69 +#: application/views/debug/index.php:70 msgid "Server Information" msgstr "" -#: application/views/debug/index.php:73 +#: application/views/debug/index.php:74 msgid "Server Software" msgstr "" -#: application/views/debug/index.php:78 +#: application/views/debug/index.php:79 msgid "PHP Version" msgstr "" -#: application/views/debug/index.php:84 +#: application/views/debug/index.php:85 msgid "Deprecated" msgstr "" -#: application/views/debug/index.php:91 +#: application/views/debug/index.php:92 msgid "MySQL Version" msgstr "" -#: application/views/debug/index.php:95 +#: application/views/debug/index.php:96 msgid "Codeigniter Version" msgstr "" -#: application/views/debug/index.php:103 +#: application/views/debug/index.php:104 msgid "Folder Permissions" msgstr "" -#: application/views/debug/index.php:105 +#: application/views/debug/index.php:106 msgid "" "This verifies that the folders used by Wavelog have read and write " "permissions by PHP." msgstr "" -#: application/views/debug/index.php:111 application/views/debug/index.php:122 -#: application/views/debug/index.php:133 application/views/debug/index.php:144 -#: application/views/debug/index.php:156 +#: application/views/debug/index.php:112 application/views/debug/index.php:123 +#: application/views/debug/index.php:134 application/views/debug/index.php:145 +#: application/views/debug/index.php:157 msgid "Success" msgstr "" -#: application/views/debug/index.php:113 application/views/debug/index.php:124 -#: application/views/debug/index.php:135 application/views/debug/index.php:146 -#: application/views/debug/index.php:158 +#: application/views/debug/index.php:114 application/views/debug/index.php:125 +#: application/views/debug/index.php:136 application/views/debug/index.php:147 +#: application/views/debug/index.php:159 msgid "Failed" msgstr "" -#: application/views/debug/index.php:168 +#: application/views/debug/index.php:169 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:174 +#: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" -#: application/views/debug/index.php:176 application/views/debug/index.php:193 +#: application/views/debug/index.php:177 application/views/debug/index.php:194 #, php-format msgid "Please edit your %s File:" msgstr "" -#: application/views/debug/index.php:177 +#: application/views/debug/index.php:178 msgid "" "Go to your application/config Folder and compare config.sample.php with your " "config.php" msgstr "" -#: application/views/debug/index.php:178 +#: application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:184 +#: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" msgstr "" -#: application/views/debug/index.php:184 application/views/debug/index.php:201 +#: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" msgstr "" -#: application/views/debug/index.php:191 +#: application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "" -#: application/views/debug/index.php:194 +#: application/views/debug/index.php:195 msgid "This will also enable the 'Keep me logged in' feature." msgstr "" -#: application/views/debug/index.php:195 +#: application/views/debug/index.php:196 #, php-format msgid "" "Change the value of %s to a new encryption key other then " "'flossie1234555541'. Choose a safe and long password. (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:201 +#: application/views/debug/index.php:202 msgid "You do not use the default encryption key" msgstr "" -#: application/views/debug/index.php:208 +#: application/views/debug/index.php:209 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:210 +#: application/views/debug/index.php:211 msgid "" "Here you can migrate existing QSL cards and eQSL cards to the new userdata " "folder." msgstr "" -#: application/views/debug/index.php:223 +#: application/views/debug/index.php:224 msgid "Modules" msgstr "" -#: application/views/debug/index.php:229 application/views/debug/index.php:240 -#: application/views/debug/index.php:251 application/views/debug/index.php:262 -#: application/views/debug/index.php:273 +#: application/views/debug/index.php:230 application/views/debug/index.php:241 +#: application/views/debug/index.php:252 application/views/debug/index.php:263 +#: application/views/debug/index.php:274 msgid "Installed" msgstr "" -#: application/views/debug/index.php:231 application/views/debug/index.php:242 -#: application/views/debug/index.php:253 application/views/debug/index.php:264 -#: application/views/debug/index.php:275 +#: application/views/debug/index.php:232 application/views/debug/index.php:243 +#: application/views/debug/index.php:254 application/views/debug/index.php:265 +#: application/views/debug/index.php:276 msgid "Not Installed" msgstr "" -#: application/views/debug/index.php:282 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:654 msgid "Settings" msgstr "" -#: application/views/debug/index.php:411 +#: application/views/debug/index.php:412 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:415 +#: application/views/debug/index.php:416 msgid "Branch" msgstr "" -#: application/views/debug/index.php:426 application/views/debug/index.php:437 -#: application/views/debug/index.php:447 +#: application/views/debug/index.php:427 application/views/debug/index.php:438 +#: application/views/debug/index.php:448 msgid "n/a" msgstr "" -#: application/views/debug/index.php:432 +#: application/views/debug/index.php:433 msgid "Commit" msgstr "" -#: application/views/debug/index.php:442 +#: application/views/debug/index.php:443 msgid "Tag" msgstr "" -#: application/views/debug/index.php:452 +#: application/views/debug/index.php:453 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:464 +#: application/views/debug/index.php:465 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:466 msgid "Update now" msgstr "" -#: application/views/debug/index.php:483 +#: application/views/debug/index.php:484 msgid "File download date" msgstr "" -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:488 msgid "File" msgstr "" -#: application/views/debug/index.php:488 +#: application/views/debug/index.php:489 msgid "Last update" msgstr "" -#: application/views/debug/index.php:492 +#: application/views/debug/index.php:493 msgid "DXCC update from Club Log" msgstr "" -#: application/views/debug/index.php:494 application/views/debug/index.php:500 -#: application/views/debug/index.php:505 application/views/debug/index.php:510 -#: application/views/debug/index.php:515 application/views/debug/index.php:520 -#: application/views/debug/index.php:525 +#: application/views/debug/index.php:495 application/views/debug/index.php:501 +#: application/views/debug/index.php:506 application/views/debug/index.php:511 +#: application/views/debug/index.php:516 application/views/debug/index.php:521 +#: application/views/debug/index.php:526 #: application/views/station_profile/edit.php:22 msgid "Update" msgstr "Actualizar" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:499 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:503 +#: application/views/debug/index.php:504 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:508 +#: application/views/debug/index.php:509 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:513 +#: application/views/debug/index.php:514 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:518 +#: application/views/debug/index.php:519 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:523 +#: application/views/debug/index.php:524 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:532 +#: application/views/debug/index.php:533 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:537 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -5535,9 +5555,9 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:549 +#: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:38 +#: application/views/station_profile/create.php:57 #: application/views/station_profile/edit.php:46 #: application/views/station_profile/index.php:42 #: application/views/stationsetup/linkedlocations.php:32 @@ -5545,88 +5565,88 @@ msgstr[1] "" msgid "Station Callsign" msgstr "Indicativo de la Estación" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:582 +#: application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:583 application/views/debug/index.php:594 +#: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:628 +#: application/views/debug/index.php:629 msgid "Bulgarian" msgstr "" -#: application/views/debug/index.php:629 +#: application/views/debug/index.php:630 msgid "Chinese (Simplified)" msgstr "" -#: application/views/debug/index.php:630 +#: application/views/debug/index.php:631 msgid "Czech" msgstr "" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:632 msgid "Dutch" msgstr "" -#: application/views/debug/index.php:632 +#: application/views/debug/index.php:633 msgid "English" msgstr "" -#: application/views/debug/index.php:633 +#: application/views/debug/index.php:634 msgid "Finnish" msgstr "" -#: application/views/debug/index.php:634 +#: application/views/debug/index.php:635 msgid "French" msgstr "" -#: application/views/debug/index.php:635 +#: application/views/debug/index.php:636 msgid "German" msgstr "" -#: application/views/debug/index.php:636 +#: application/views/debug/index.php:637 msgid "Greek" msgstr "" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:638 msgid "Italian" msgstr "" -#: application/views/debug/index.php:638 +#: application/views/debug/index.php:639 msgid "Polish" msgstr "" -#: application/views/debug/index.php:639 +#: application/views/debug/index.php:640 msgid "Portuguese" msgstr "" -#: application/views/debug/index.php:640 +#: application/views/debug/index.php:641 msgid "Russian" msgstr "" -#: application/views/debug/index.php:641 +#: application/views/debug/index.php:642 msgid "Spanish" msgstr "" -#: application/views/debug/index.php:642 +#: application/views/debug/index.php:643 msgid "Swedish" msgstr "" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:644 msgid "Turkish" msgstr "" @@ -5847,6 +5867,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:60 +#: application/views/interface_assets/footer.php:2342 +#: application/views/interface_assets/footer.php:2360 +#: application/views/interface_assets/footer.php:2381 +#: application/views/interface_assets/footer.php:2399 #: application/views/qslcard/index.php:66 #: application/views/view_log/qso.php:614 msgid "View" @@ -6007,6 +6031,69 @@ msgstr "" msgid "Version Info" msgstr "Información de Versión" +#: application/views/interface_assets/footer.php:392 +msgid "Description:" +msgstr "" + +#: application/views/interface_assets/footer.php:395 +msgid "Query description" +msgstr "" + +#: application/views/interface_assets/footer.php:411 +msgid "Your query has been saved!" +msgstr "" + +#: application/views/interface_assets/footer.php:413 +#: application/views/search/filter.php:46 +msgid "Edit queries" +msgstr "" + +#: application/views/interface_assets/footer.php:415 +msgid "Stored queries:" +msgstr "" + +#: application/views/interface_assets/footer.php:420 +#: application/views/search/filter.php:60 +msgid "Run Query" +msgstr "" + +#: application/views/interface_assets/footer.php:432 +#: application/views/interface_assets/footer.php:561 +#: application/views/interface_assets/footer.php:625 +msgid "Stored Queries" +msgstr "" + +#: application/views/interface_assets/footer.php:437 +#: application/views/interface_assets/footer.php:630 +msgid "You need to make a query before you search!" +msgstr "" + +#: application/views/interface_assets/footer.php:458 +#: application/views/interface_assets/footer.php:589 +#: application/views/search/filter.php:79 +msgid "Export to ADIF" +msgstr "" + +#: application/views/interface_assets/footer.php:496 +msgid "Warning! Are you sure you want delete this stored query?" +msgstr "" + +#: application/views/interface_assets/footer.php:510 +msgid "The stored query has been deleted!" +msgstr "" + +#: application/views/interface_assets/footer.php:519 +msgid "The stored query could not be deleted. Please try again!" +msgstr "" + +#: application/views/interface_assets/footer.php:545 +msgid "The query description has been updated!" +msgstr "" + +#: application/views/interface_assets/footer.php:549 +msgid "Something went wrong with the save. Please try again!" +msgstr "" + #: application/views/interface_assets/footer.php:672 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " @@ -6017,20 +6104,65 @@ msgstr "" "válido. Revise cuál DXCC es el correcto para su localización particular. Si " "está totalmente seguro, ignore esta advertencia." -#: application/views/interface_assets/footer.php:1374 -#: application/views/interface_assets/footer.php:1378 -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1518 -#: application/views/interface_assets/footer.php:1522 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1174 +#, php-format +msgid "You're not logged it. Please login" +msgstr "" + +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1384 +#: application/views/interface_assets/footer.php:1387 +#: application/views/interface_assets/footer.php:1524 +#: application/views/interface_assets/footer.php:1528 +#: application/views/interface_assets/footer.php:1531 msgid "grid square" msgstr "grid squares" -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1387 +#: application/views/interface_assets/footer.php:1531 msgid "Total count" msgstr "Cuenta total" +#: application/views/interface_assets/footer.php:2118 +msgid "QSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2138 +msgid "Warning! Are you sure you want to delete this QSL card?" +msgstr "" + +#: application/views/interface_assets/footer.php:2178 +#: application/views/view_log/qso.php:42 +msgid "eQSL Card" +msgstr "Tarjeta eQSL" + +#: application/views/interface_assets/footer.php:2180 +msgid "eQSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2353 +#: application/views/interface_assets/footer.php:2392 +#: application/views/view_log/qso.php:604 +msgid "QSL image file" +msgstr "" + +#: application/views/interface_assets/footer.php:2372 +msgid "Front QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2410 +msgid "Back QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2421 +#: application/views/interface_assets/footer.php:2446 +msgid "Add additional QSOs to a QSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2457 +msgid "Something went wrong. Please try again!" +msgstr "" + #: application/views/interface_assets/header.php:86 msgid "Developer Mode" msgstr "Modo Desarrollador" @@ -6579,12 +6711,12 @@ msgstr "QSL enviadas" #: application/views/qso/edit_ajax.php:495 #: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:190 -#: application/views/station_profile/create.php:198 +#: application/views/station_profile/create.php:209 #: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:256 -#: application/views/station_profile/create.php:267 -#: application/views/station_profile/create.php:274 +#: application/views/station_profile/create.php:236 +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/create.php:286 +#: application/views/station_profile/create.php:293 #: application/views/station_profile/edit.php:330 #: application/views/station_profile/edit.php:338 #: application/views/station_profile/edit.php:364 @@ -6617,12 +6749,12 @@ msgstr "Si" #: application/views/qso/edit_ajax.php:494 #: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/create.php:199 +#: application/views/station_profile/create.php:210 #: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/create.php:266 -#: application/views/station_profile/create.php:273 +#: application/views/station_profile/create.php:237 +#: application/views/station_profile/create.php:276 +#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:292 #: application/views/station_profile/edit.php:331 #: application/views/station_profile/edit.php:339 #: application/views/station_profile/edit.php:365 @@ -8272,7 +8404,7 @@ msgid "Search DXCluster for latest Spot" msgstr "" #: application/views/qso/index.php:196 application/views/qso/index.php:439 -#: application/views/station_profile/create.php:130 +#: application/views/station_profile/create.php:149 #: application/views/station_profile/edit.php:191 #: application/views/user/edit.php:583 application/views/view_log/qso.php:282 #: application/views/view_log/qso.php:549 @@ -8280,7 +8412,7 @@ msgid "IOTA Reference" msgstr "Referencia IOTA" #: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:146 +#: application/views/station_profile/create.php:165 #: application/views/station_profile/edit.php:219 #: application/views/user/edit.php:587 application/views/view_log/qso.php:289 #: application/views/view_log/qso.php:556 @@ -8540,26 +8672,14 @@ msgstr "" msgid "Save query" msgstr "" -#: application/views/search/filter.php:46 -msgid "Edit queries" -msgstr "" - #: application/views/search/filter.php:50 msgid "Stored queries" msgstr "" -#: application/views/search/filter.php:60 -msgid "Run Query" -msgstr "" - #: application/views/search/filter.php:69 msgid "search filter functions" msgstr "" -#: application/views/search/filter.php:79 -msgid "Export to ADIF" -msgstr "" - #: application/views/search/filter.php:79 msgid "Search Results" msgstr "" @@ -8911,117 +9031,117 @@ msgid "" "of our Wiki." msgstr "" -#: application/views/station_profile/create.php:32 +#: application/views/station_profile/create.php:51 #: application/views/station_profile/edit.php:40 msgid "Location Name" msgstr "" -#: application/views/station_profile/create.php:33 -#: application/views/station_profile/create.php:34 +#: application/views/station_profile/create.php:52 +#: application/views/station_profile/create.php:53 #: application/views/station_profile/edit.php:42 msgctxt "Station Location Setup" msgid "Home QTH" msgstr "" -#: application/views/station_profile/create.php:34 +#: application/views/station_profile/create.php:53 #: application/views/station_profile/edit.php:42 #, php-format msgid "Shortname for the station location. For example: %s" msgstr "" -#: application/views/station_profile/create.php:40 +#: application/views/station_profile/create.php:59 #: application/views/station_profile/edit.php:48 msgid "Station callsign. For example: 4W7EST/P" msgstr "Indicativo de llamada de la Estación. Ejemplo: 4W7EST/P" -#: application/views/station_profile/create.php:44 +#: application/views/station_profile/create.php:63 #: application/views/station_profile/edit.php:52 msgid "Station Power (W)" msgstr "Potencia de la Estación (W)" -#: application/views/station_profile/create.php:46 +#: application/views/station_profile/create.php:65 #: application/views/station_profile/edit.php:54 msgid "Default station power in Watt. Overwritten by CAT." msgstr "" "Potencia de la estación por defecto en Vatios. Puede ser sobreescrito por " "CAT." -#: application/views/station_profile/create.php:49 +#: application/views/station_profile/create.php:68 #: application/views/station_profile/edit.php:69 msgid "Station DXCC" msgstr "DXCC de la Estación" -#: application/views/station_profile/create.php:52 +#: application/views/station_profile/create.php:71 #: application/views/station_profile/edit.php:72 msgctxt "DXCC selection" msgid "None" msgstr "Ninguno" -#: application/views/station_profile/create.php:59 +#: application/views/station_profile/create.php:78 #: application/views/station_profile/edit.php:85 msgid "Station DXCC entity. For example: Bolivia" msgstr "" -#: application/views/station_profile/create.php:64 +#: application/views/station_profile/create.php:83 #: application/views/station_profile/edit.php:91 msgid "Station City" msgstr "Ciudad de la Estación" -#: application/views/station_profile/create.php:66 +#: application/views/station_profile/create.php:85 #: application/views/station_profile/edit.php:93 msgid "Station city. For example: Oslo" msgstr "" -#: application/views/station_profile/create.php:75 +#: application/views/station_profile/create.php:94 #: application/views/station_profile/edit.php:105 msgid "Station state. Applies to certain countries only." msgstr "" -#: application/views/station_profile/create.php:80 +#: application/views/station_profile/create.php:99 #: application/views/station_profile/edit.php:110 msgid "Station County" msgstr "Condado de la Estación" -#: application/views/station_profile/create.php:82 +#: application/views/station_profile/create.php:101 #: application/views/station_profile/edit.php:112 msgid "Station County (Only used for USA/Alaska/Hawaii)." msgstr "Condado de la Estación (Solo se usa en USA/Alaska/Hawaii)." -#: application/views/station_profile/create.php:97 +#: application/views/station_profile/create.php:116 #: application/views/station_profile/edit.php:138 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your CQ Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:97 -#: application/views/station_profile/create.php:111 -#: application/views/station_profile/create.php:125 +#: application/views/station_profile/create.php:116 +#: application/views/station_profile/create.php:130 +#: application/views/station_profile/create.php:144 #: application/views/station_profile/edit.php:138 #: application/views/station_profile/edit.php:155 #: application/views/station_profile/edit.php:179 msgid "click here" msgstr "haga clic aquí" -#: application/views/station_profile/create.php:111 +#: application/views/station_profile/create.php:130 #: application/views/station_profile/edit.php:155 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your ITU Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:116 +#: application/views/station_profile/create.php:135 #: application/views/station_profile/edit.php:167 #: application/views/station_profile/edit.php:170 msgid "Station Gridsquare" msgstr "Gridsquare de la Estación" -#: application/views/station_profile/create.php:121 +#: application/views/station_profile/create.php:140 #: application/views/station_profile/edit.php:175 msgid "Get Gridsquare" msgstr "Obtener Gridsquare" -#: application/views/station_profile/create.php:125 +#: application/views/station_profile/create.php:144 #: application/views/station_profile/edit.php:179 #, php-format msgctxt "uses 'click here'" @@ -9030,7 +9150,7 @@ msgid "" "then %s!" msgstr "" -#: application/views/station_profile/create.php:126 +#: application/views/station_profile/create.php:145 #: application/views/station_profile/edit.php:180 msgid "" "If you are located on a grid line, enter multiple grid squares separated " @@ -9039,50 +9159,50 @@ msgstr "" "Si está localizado justo en una línea de la malla, introduzca múltiples " "gridsquares separados con comas. por ejemplo: IO77,IO78,IO87,IO88." -#: application/views/station_profile/create.php:141 +#: application/views/station_profile/create.php:160 #: application/views/station_profile/edit.php:205 msgid "Station IOTA reference. For example: EU-005" msgstr "Referencia IOTA de la Estación. Ejemplo: EU-005" -#: application/views/station_profile/create.php:142 +#: application/views/station_profile/create.php:161 #: application/views/station_profile/edit.php:206 msgid "IOTA World website" msgstr "" -#: application/views/station_profile/create.php:142 +#: application/views/station_profile/create.php:161 #: application/views/station_profile/edit.php:206 #, php-format msgid "You can look up IOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:148 +#: application/views/station_profile/create.php:167 #: application/views/station_profile/edit.php:221 msgid "SOTA Maps website" msgstr "" -#: application/views/station_profile/create.php:148 +#: application/views/station_profile/create.php:167 #: application/views/station_profile/edit.php:221 #, php-format msgid "Station SOTA reference. You can look up SOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:154 +#: application/views/station_profile/create.php:173 #: application/views/station_profile/edit.php:234 msgid "GMA Map website" msgstr "" -#: application/views/station_profile/create.php:154 +#: application/views/station_profile/create.php:173 #: application/views/station_profile/edit.php:234 #, php-format msgid "Station WWFF reference. You can look up WWFF references at the %s." msgstr "" -#: application/views/station_profile/create.php:160 +#: application/views/station_profile/create.php:179 #: application/views/station_profile/edit.php:247 msgid "POTA Map website" msgstr "" -#: application/views/station_profile/create.php:160 +#: application/views/station_profile/create.php:179 #: application/views/station_profile/edit.php:247 #, php-format msgid "" @@ -9090,43 +9210,43 @@ msgid "" "look up POTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:164 +#: application/views/station_profile/create.php:183 #: application/views/station_profile/edit.php:260 msgid "Signature Name" msgstr "Nombre de la Firma" -#: application/views/station_profile/create.php:166 +#: application/views/station_profile/create.php:185 #: application/views/station_profile/edit.php:262 msgid "Station Signature (e.g. GMA).." msgstr "Firma de la Estación (ej. GMA)." -#: application/views/station_profile/create.php:170 +#: application/views/station_profile/create.php:189 #: application/views/station_profile/edit.php:266 msgid "Signature Information" msgstr "Información de la Firma" -#: application/views/station_profile/create.php:172 +#: application/views/station_profile/create.php:191 #: application/views/station_profile/edit.php:268 msgid "Station Signature Info (e.g. DA/NW-357)." msgstr "Información de la Firma de la Estación (ej. DA/NW-357)." -#: application/views/station_profile/create.php:176 +#: application/views/station_profile/create.php:195 #: application/views/station_profile/edit.php:281 msgctxt "Probably no translation needed" msgid "eQSL QTH Nickname" msgstr "" -#: application/views/station_profile/create.php:178 +#: application/views/station_profile/create.php:197 #: application/views/station_profile/edit.php:283 msgid "The QTH Nickname which is configured in your eQSL Profile" msgstr "El Apodo del QTH como está configurado en su perfil de eQSL" -#: application/views/station_profile/create.php:182 +#: application/views/station_profile/create.php:201 #: application/views/station_profile/edit.php:286 msgid "Default QSLMSG" msgstr "QSLMSG por Defecto" -#: application/views/station_profile/create.php:185 +#: application/views/station_profile/create.php:204 #: application/views/station_profile/edit.php:289 msgid "" "Define a default message that will be populated and sent for each QSO for " @@ -9135,12 +9255,12 @@ msgstr "" "Defina un mensaje por defecto que será añadido y enviado para cada QSO para " "esta localización de estación." -#: application/views/station_profile/create.php:188 +#: application/views/station_profile/create.php:207 #: application/views/station_profile/edit.php:328 msgid "Ignore Clublog Upload" msgstr "" -#: application/views/station_profile/create.php:193 +#: application/views/station_profile/create.php:212 #: application/views/station_profile/edit.php:333 msgid "" "If enabled, the QSOs made from this location will not be uploaded to " @@ -9148,17 +9268,17 @@ msgid "" "properly configured at Clublog" msgstr "" -#: application/views/station_profile/create.php:196 +#: application/views/station_profile/create.php:215 #: application/views/station_profile/edit.php:336 msgid "ClubLog Realtime Upload" msgstr "Subida en Tiempo Real en ClubLog" -#: application/views/station_profile/create.php:205 +#: application/views/station_profile/create.php:224 #: application/views/station_profile/edit.php:352 msgid "HRDLog.net Username" msgstr "Nombre de Usuario de HRDLog.net" -#: application/views/station_profile/create.php:207 +#: application/views/station_profile/create.php:226 #: application/views/station_profile/edit.php:354 msgid "" "The username you are registered with at HRDlog.net (usually your callsign)." @@ -9166,110 +9286,110 @@ msgstr "" "El nombre de usuario con el que se registró en HRDlog.net (usualmente su " "indicativo)." -#: application/views/station_profile/create.php:210 +#: application/views/station_profile/create.php:229 #: application/views/station_profile/edit.php:357 msgid "HRDLog.net API Key" msgstr "Código API de HRDLog.net" -#: application/views/station_profile/create.php:212 +#: application/views/station_profile/create.php:231 #: application/views/station_profile/edit.php:359 #, php-format msgctxt "HRDLog.net Userprofile page" msgid "Create your API Code on your %s" msgstr "" -#: application/views/station_profile/create.php:212 +#: application/views/station_profile/create.php:231 #: application/views/station_profile/edit.php:359 msgid "HRDLog.net Userprofile page" msgstr "" -#: application/views/station_profile/create.php:215 +#: application/views/station_profile/create.php:234 #: application/views/station_profile/edit.php:362 msgid "HRDLog.net Logbook Realtime Upload" msgstr "Subida en Tiempo Real del Libro de Guardia a HRDLog.net" -#: application/views/station_profile/create.php:224 +#: application/views/station_profile/create.php:243 #: application/views/station_profile/edit.php:297 msgid "Subscription Required" msgstr "Requiere Suscripción" -#: application/views/station_profile/create.php:229 +#: application/views/station_profile/create.php:248 msgctxt "Probably no translation needed" msgid "QRZ.com Logbook API Key" msgstr "" -#: application/views/station_profile/create.php:232 +#: application/views/station_profile/create.php:251 msgid "Test API-Key" msgstr "" -#: application/views/station_profile/create.php:235 +#: application/views/station_profile/create.php:254 #: application/views/station_profile/edit.php:306 #, php-format msgctxt "the QRZ.com Logbook settings page" msgid "Find your API key on %s" msgstr "" -#: application/views/station_profile/create.php:235 +#: application/views/station_profile/create.php:254 #: application/views/station_profile/edit.php:306 msgid "the QRZ.com Logbook settings page" msgstr "" -#: application/views/station_profile/create.php:238 +#: application/views/station_profile/create.php:257 #: application/views/station_profile/edit.php:310 msgid "QRZ.com Logbook Upload" msgstr "Subida del Libro de Guardia a QRZ.com" -#: application/views/station_profile/create.php:241 +#: application/views/station_profile/create.php:260 #: application/views/station_profile/edit.php:313 msgid "Realtime" msgstr "" -#: application/views/station_profile/create.php:249 +#: application/views/station_profile/create.php:268 #: application/views/station_profile/edit.php:378 msgctxt "Probably no translation needed" msgid "QO-100 Dx Club API Key" msgstr "" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:270 #: application/views/station_profile/edit.php:380 #, php-format msgctxt "QO-100 Dx Club's profile page" msgid "Create your API key on your %s" msgstr "" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:270 #: application/views/station_profile/edit.php:380 msgid "QO-100 Dx Club's profile page" msgstr "" -#: application/views/station_profile/create.php:254 +#: application/views/station_profile/create.php:273 #: application/views/station_profile/edit.php:383 msgid "QO-100 Dx Club Realtime Upload" msgstr "Subida en Tiempo Real del Libro de Guardia a QO-100 Dx Club" -#: application/views/station_profile/create.php:264 +#: application/views/station_profile/create.php:283 #: application/views/station_profile/edit.php:401 msgid "OQRS Enabled" msgstr "Activar OQRS" -#: application/views/station_profile/create.php:271 +#: application/views/station_profile/create.php:290 #: application/views/station_profile/edit.php:408 msgid "OQRS Email alert" msgstr "Alerta de Email de OQRS" -#: application/views/station_profile/create.php:276 +#: application/views/station_profile/create.php:295 #: application/views/station_profile/edit.php:413 msgid "Make sure email is set up under admin and global options." msgstr "" "Asegúrese que su correo está bien configurado en las opciones globales y de " "administrador." -#: application/views/station_profile/create.php:279 +#: application/views/station_profile/create.php:298 #: application/views/station_profile/edit.php:416 msgid "OQRS Text" msgstr "Texto OQRS" -#: application/views/station_profile/create.php:281 +#: application/views/station_profile/create.php:300 #: application/views/station_profile/edit.php:418 msgid "Some info you want to add regarding QSL'ing." msgstr "Algúna información que desee agregar acerca de su forma de hacer QSL." @@ -10345,10 +10465,6 @@ msgstr "Detalles de QSO" msgid "QSL Management" msgstr "Gestión de QSL" -#: application/views/view_log/qso.php:42 -msgid "eQSL Card" -msgstr "Tarjeta eQSL" - #: application/views/view_log/qso.php:128 msgid "Total Distance" msgstr "Distancia total" @@ -10420,10 +10536,6 @@ msgstr "Más QSOs" msgid "Details" msgstr "Detalles" -#: application/views/view_log/qso.php:604 -msgid "QSL image file" -msgstr "" - #: application/views/view_log/qso.php:630 msgid "Uploaded QSL Card front image" msgstr "Imagen delantera de la QSL subida" diff --git a/application/locale/fi_FI/LC_MESSAGES/messages.po b/application/locale/fi_FI/LC_MESSAGES/messages.po index 336c390a3..6cfe978a3 100644 --- a/application/locale/fi_FI/LC_MESSAGES/messages.po +++ b/application/locale/fi_FI/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-01 15:48+0000\n" +"POT-Creation-Date: 2024-08-06 18:03+0000\n" "PO-Revision-Date: 2024-07-09 13:25+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Finnish here for " +"more information." msgstr "" #: application/views/debug/index.php:48 #, php-format +msgid "Current migration is %s" +msgstr "" + +#: application/views/debug/index.php:49 +#, php-format msgid "Migration should be %s" msgstr "" -#: application/views/debug/index.php:53 +#: application/views/debug/index.php:54 msgid "Environment" msgstr "" -#: application/views/debug/index.php:61 +#: application/views/debug/index.php:62 msgid "Total QSO on this instance" msgstr "" -#: application/views/debug/index.php:69 +#: application/views/debug/index.php:70 msgid "Server Information" msgstr "" -#: application/views/debug/index.php:73 +#: application/views/debug/index.php:74 msgid "Server Software" msgstr "" -#: application/views/debug/index.php:78 +#: application/views/debug/index.php:79 msgid "PHP Version" msgstr "" -#: application/views/debug/index.php:84 +#: application/views/debug/index.php:85 msgid "Deprecated" msgstr "" -#: application/views/debug/index.php:91 +#: application/views/debug/index.php:92 msgid "MySQL Version" msgstr "" -#: application/views/debug/index.php:95 +#: application/views/debug/index.php:96 msgid "Codeigniter Version" msgstr "" -#: application/views/debug/index.php:103 +#: application/views/debug/index.php:104 msgid "Folder Permissions" msgstr "" -#: application/views/debug/index.php:105 +#: application/views/debug/index.php:106 msgid "" "This verifies that the folders used by Wavelog have read and write " "permissions by PHP." msgstr "" -#: application/views/debug/index.php:111 application/views/debug/index.php:122 -#: application/views/debug/index.php:133 application/views/debug/index.php:144 -#: application/views/debug/index.php:156 +#: application/views/debug/index.php:112 application/views/debug/index.php:123 +#: application/views/debug/index.php:134 application/views/debug/index.php:145 +#: application/views/debug/index.php:157 msgid "Success" msgstr "" -#: application/views/debug/index.php:113 application/views/debug/index.php:124 -#: application/views/debug/index.php:135 application/views/debug/index.php:146 -#: application/views/debug/index.php:158 +#: application/views/debug/index.php:114 application/views/debug/index.php:125 +#: application/views/debug/index.php:136 application/views/debug/index.php:147 +#: application/views/debug/index.php:159 msgid "Failed" msgstr "" -#: application/views/debug/index.php:168 +#: application/views/debug/index.php:169 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:174 +#: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" -#: application/views/debug/index.php:176 application/views/debug/index.php:193 +#: application/views/debug/index.php:177 application/views/debug/index.php:194 #, php-format msgid "Please edit your %s File:" msgstr "" -#: application/views/debug/index.php:177 +#: application/views/debug/index.php:178 msgid "" "Go to your application/config Folder and compare config.sample.php with your " "config.php" msgstr "" -#: application/views/debug/index.php:178 +#: application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:184 +#: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" msgstr "" -#: application/views/debug/index.php:184 application/views/debug/index.php:201 +#: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" msgstr "" -#: application/views/debug/index.php:191 +#: application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "" -#: application/views/debug/index.php:194 +#: application/views/debug/index.php:195 msgid "This will also enable the 'Keep me logged in' feature." msgstr "" -#: application/views/debug/index.php:195 +#: application/views/debug/index.php:196 #, php-format msgid "" "Change the value of %s to a new encryption key other then " "'flossie1234555541'. Choose a safe and long password. (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:201 +#: application/views/debug/index.php:202 msgid "You do not use the default encryption key" msgstr "" -#: application/views/debug/index.php:208 +#: application/views/debug/index.php:209 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:210 +#: application/views/debug/index.php:211 msgid "" "Here you can migrate existing QSL cards and eQSL cards to the new userdata " "folder." msgstr "" -#: application/views/debug/index.php:223 +#: application/views/debug/index.php:224 msgid "Modules" msgstr "" -#: application/views/debug/index.php:229 application/views/debug/index.php:240 -#: application/views/debug/index.php:251 application/views/debug/index.php:262 -#: application/views/debug/index.php:273 +#: application/views/debug/index.php:230 application/views/debug/index.php:241 +#: application/views/debug/index.php:252 application/views/debug/index.php:263 +#: application/views/debug/index.php:274 msgid "Installed" msgstr "" -#: application/views/debug/index.php:231 application/views/debug/index.php:242 -#: application/views/debug/index.php:253 application/views/debug/index.php:264 -#: application/views/debug/index.php:275 +#: application/views/debug/index.php:232 application/views/debug/index.php:243 +#: application/views/debug/index.php:254 application/views/debug/index.php:265 +#: application/views/debug/index.php:276 msgid "Not Installed" msgstr "" -#: application/views/debug/index.php:282 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:654 msgid "Settings" msgstr "" -#: application/views/debug/index.php:411 +#: application/views/debug/index.php:412 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:415 +#: application/views/debug/index.php:416 msgid "Branch" msgstr "" -#: application/views/debug/index.php:426 application/views/debug/index.php:437 -#: application/views/debug/index.php:447 +#: application/views/debug/index.php:427 application/views/debug/index.php:438 +#: application/views/debug/index.php:448 msgid "n/a" msgstr "" -#: application/views/debug/index.php:432 +#: application/views/debug/index.php:433 msgid "Commit" msgstr "" -#: application/views/debug/index.php:442 +#: application/views/debug/index.php:443 msgid "Tag" msgstr "" -#: application/views/debug/index.php:452 +#: application/views/debug/index.php:453 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:464 +#: application/views/debug/index.php:465 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:466 msgid "Update now" msgstr "" -#: application/views/debug/index.php:483 +#: application/views/debug/index.php:484 msgid "File download date" msgstr "" -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:488 msgid "File" msgstr "" -#: application/views/debug/index.php:488 +#: application/views/debug/index.php:489 msgid "Last update" msgstr "" -#: application/views/debug/index.php:492 +#: application/views/debug/index.php:493 msgid "DXCC update from Club Log" msgstr "" -#: application/views/debug/index.php:494 application/views/debug/index.php:500 -#: application/views/debug/index.php:505 application/views/debug/index.php:510 -#: application/views/debug/index.php:515 application/views/debug/index.php:520 -#: application/views/debug/index.php:525 +#: application/views/debug/index.php:495 application/views/debug/index.php:501 +#: application/views/debug/index.php:506 application/views/debug/index.php:511 +#: application/views/debug/index.php:516 application/views/debug/index.php:521 +#: application/views/debug/index.php:526 #: application/views/station_profile/edit.php:22 msgid "Update" msgstr "" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:499 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:503 +#: application/views/debug/index.php:504 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:508 +#: application/views/debug/index.php:509 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:513 +#: application/views/debug/index.php:514 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:518 +#: application/views/debug/index.php:519 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:523 +#: application/views/debug/index.php:524 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:532 +#: application/views/debug/index.php:533 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:537 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -5497,9 +5517,9 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:549 +#: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:38 +#: application/views/station_profile/create.php:57 #: application/views/station_profile/edit.php:46 #: application/views/station_profile/index.php:42 #: application/views/stationsetup/linkedlocations.php:32 @@ -5507,88 +5527,88 @@ msgstr[1] "" msgid "Station Callsign" msgstr "" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:582 +#: application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:583 application/views/debug/index.php:594 +#: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:628 +#: application/views/debug/index.php:629 msgid "Bulgarian" msgstr "" -#: application/views/debug/index.php:629 +#: application/views/debug/index.php:630 msgid "Chinese (Simplified)" msgstr "" -#: application/views/debug/index.php:630 +#: application/views/debug/index.php:631 msgid "Czech" msgstr "" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:632 msgid "Dutch" msgstr "" -#: application/views/debug/index.php:632 +#: application/views/debug/index.php:633 msgid "English" msgstr "" -#: application/views/debug/index.php:633 +#: application/views/debug/index.php:634 msgid "Finnish" msgstr "" -#: application/views/debug/index.php:634 +#: application/views/debug/index.php:635 msgid "French" msgstr "" -#: application/views/debug/index.php:635 +#: application/views/debug/index.php:636 msgid "German" msgstr "" -#: application/views/debug/index.php:636 +#: application/views/debug/index.php:637 msgid "Greek" msgstr "" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:638 msgid "Italian" msgstr "" -#: application/views/debug/index.php:638 +#: application/views/debug/index.php:639 msgid "Polish" msgstr "" -#: application/views/debug/index.php:639 +#: application/views/debug/index.php:640 msgid "Portuguese" msgstr "" -#: application/views/debug/index.php:640 +#: application/views/debug/index.php:641 msgid "Russian" msgstr "" -#: application/views/debug/index.php:641 +#: application/views/debug/index.php:642 msgid "Spanish" msgstr "" -#: application/views/debug/index.php:642 +#: application/views/debug/index.php:643 msgid "Swedish" msgstr "" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:644 msgid "Turkish" msgstr "" @@ -5807,6 +5827,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:60 +#: application/views/interface_assets/footer.php:2342 +#: application/views/interface_assets/footer.php:2360 +#: application/views/interface_assets/footer.php:2381 +#: application/views/interface_assets/footer.php:2399 #: application/views/qslcard/index.php:66 #: application/views/view_log/qso.php:614 msgid "View" @@ -5967,6 +5991,69 @@ msgstr "" msgid "Version Info" msgstr "" +#: application/views/interface_assets/footer.php:392 +msgid "Description:" +msgstr "" + +#: application/views/interface_assets/footer.php:395 +msgid "Query description" +msgstr "" + +#: application/views/interface_assets/footer.php:411 +msgid "Your query has been saved!" +msgstr "" + +#: application/views/interface_assets/footer.php:413 +#: application/views/search/filter.php:46 +msgid "Edit queries" +msgstr "" + +#: application/views/interface_assets/footer.php:415 +msgid "Stored queries:" +msgstr "" + +#: application/views/interface_assets/footer.php:420 +#: application/views/search/filter.php:60 +msgid "Run Query" +msgstr "" + +#: application/views/interface_assets/footer.php:432 +#: application/views/interface_assets/footer.php:561 +#: application/views/interface_assets/footer.php:625 +msgid "Stored Queries" +msgstr "" + +#: application/views/interface_assets/footer.php:437 +#: application/views/interface_assets/footer.php:630 +msgid "You need to make a query before you search!" +msgstr "" + +#: application/views/interface_assets/footer.php:458 +#: application/views/interface_assets/footer.php:589 +#: application/views/search/filter.php:79 +msgid "Export to ADIF" +msgstr "" + +#: application/views/interface_assets/footer.php:496 +msgid "Warning! Are you sure you want delete this stored query?" +msgstr "" + +#: application/views/interface_assets/footer.php:510 +msgid "The stored query has been deleted!" +msgstr "" + +#: application/views/interface_assets/footer.php:519 +msgid "The stored query could not be deleted. Please try again!" +msgstr "" + +#: application/views/interface_assets/footer.php:545 +msgid "The query description has been updated!" +msgstr "" + +#: application/views/interface_assets/footer.php:549 +msgid "Something went wrong with the save. Please try again!" +msgstr "" + #: application/views/interface_assets/footer.php:672 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " @@ -5974,20 +6061,65 @@ msgid "" "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:1374 -#: application/views/interface_assets/footer.php:1378 -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1518 -#: application/views/interface_assets/footer.php:1522 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1174 +#, php-format +msgid "You're not logged it. Please login" +msgstr "" + +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1384 +#: application/views/interface_assets/footer.php:1387 +#: application/views/interface_assets/footer.php:1524 +#: application/views/interface_assets/footer.php:1528 +#: application/views/interface_assets/footer.php:1531 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1387 +#: application/views/interface_assets/footer.php:1531 msgid "Total count" msgstr "" +#: application/views/interface_assets/footer.php:2118 +msgid "QSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2138 +msgid "Warning! Are you sure you want to delete this QSL card?" +msgstr "" + +#: application/views/interface_assets/footer.php:2178 +#: application/views/view_log/qso.php:42 +msgid "eQSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2180 +msgid "eQSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2353 +#: application/views/interface_assets/footer.php:2392 +#: application/views/view_log/qso.php:604 +msgid "QSL image file" +msgstr "" + +#: application/views/interface_assets/footer.php:2372 +msgid "Front QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2410 +msgid "Back QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2421 +#: application/views/interface_assets/footer.php:2446 +msgid "Add additional QSOs to a QSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2457 +msgid "Something went wrong. Please try again!" +msgstr "" + #: application/views/interface_assets/header.php:86 msgid "Developer Mode" msgstr "Kehittäjätila" @@ -6535,12 +6667,12 @@ msgstr "" #: application/views/qso/edit_ajax.php:495 #: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:190 -#: application/views/station_profile/create.php:198 +#: application/views/station_profile/create.php:209 #: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:256 -#: application/views/station_profile/create.php:267 -#: application/views/station_profile/create.php:274 +#: application/views/station_profile/create.php:236 +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/create.php:286 +#: application/views/station_profile/create.php:293 #: application/views/station_profile/edit.php:330 #: application/views/station_profile/edit.php:338 #: application/views/station_profile/edit.php:364 @@ -6573,12 +6705,12 @@ msgstr "Kyllä" #: application/views/qso/edit_ajax.php:494 #: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/create.php:199 +#: application/views/station_profile/create.php:210 #: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/create.php:266 -#: application/views/station_profile/create.php:273 +#: application/views/station_profile/create.php:237 +#: application/views/station_profile/create.php:276 +#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:292 #: application/views/station_profile/edit.php:331 #: application/views/station_profile/edit.php:339 #: application/views/station_profile/edit.php:365 @@ -8189,7 +8321,7 @@ msgid "Search DXCluster for latest Spot" msgstr "" #: application/views/qso/index.php:196 application/views/qso/index.php:439 -#: application/views/station_profile/create.php:130 +#: application/views/station_profile/create.php:149 #: application/views/station_profile/edit.php:191 #: application/views/user/edit.php:583 application/views/view_log/qso.php:282 #: application/views/view_log/qso.php:549 @@ -8197,7 +8329,7 @@ msgid "IOTA Reference" msgstr "IOTA ref.nro" #: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:146 +#: application/views/station_profile/create.php:165 #: application/views/station_profile/edit.php:219 #: application/views/user/edit.php:587 application/views/view_log/qso.php:289 #: application/views/view_log/qso.php:556 @@ -8457,26 +8589,14 @@ msgstr "" msgid "Save query" msgstr "" -#: application/views/search/filter.php:46 -msgid "Edit queries" -msgstr "" - #: application/views/search/filter.php:50 msgid "Stored queries" msgstr "" -#: application/views/search/filter.php:60 -msgid "Run Query" -msgstr "" - #: application/views/search/filter.php:69 msgid "search filter functions" msgstr "" -#: application/views/search/filter.php:79 -msgid "Export to ADIF" -msgstr "" - #: application/views/search/filter.php:79 msgid "Search Results" msgstr "" @@ -8794,115 +8914,115 @@ msgid "" "of our Wiki." msgstr "" -#: application/views/station_profile/create.php:32 +#: application/views/station_profile/create.php:51 #: application/views/station_profile/edit.php:40 msgid "Location Name" msgstr "" -#: application/views/station_profile/create.php:33 -#: application/views/station_profile/create.php:34 +#: application/views/station_profile/create.php:52 +#: application/views/station_profile/create.php:53 #: application/views/station_profile/edit.php:42 msgctxt "Station Location Setup" msgid "Home QTH" msgstr "" -#: application/views/station_profile/create.php:34 +#: application/views/station_profile/create.php:53 #: application/views/station_profile/edit.php:42 #, php-format msgid "Shortname for the station location. For example: %s" msgstr "" -#: application/views/station_profile/create.php:40 +#: application/views/station_profile/create.php:59 #: application/views/station_profile/edit.php:48 msgid "Station callsign. For example: 4W7EST/P" msgstr "" -#: application/views/station_profile/create.php:44 +#: application/views/station_profile/create.php:63 #: application/views/station_profile/edit.php:52 msgid "Station Power (W)" msgstr "" -#: application/views/station_profile/create.php:46 +#: application/views/station_profile/create.php:65 #: application/views/station_profile/edit.php:54 msgid "Default station power in Watt. Overwritten by CAT." msgstr "" -#: application/views/station_profile/create.php:49 +#: application/views/station_profile/create.php:68 #: application/views/station_profile/edit.php:69 msgid "Station DXCC" msgstr "" -#: application/views/station_profile/create.php:52 +#: application/views/station_profile/create.php:71 #: application/views/station_profile/edit.php:72 msgctxt "DXCC selection" msgid "None" msgstr "" -#: application/views/station_profile/create.php:59 +#: application/views/station_profile/create.php:78 #: application/views/station_profile/edit.php:85 msgid "Station DXCC entity. For example: Bolivia" msgstr "" -#: application/views/station_profile/create.php:64 +#: application/views/station_profile/create.php:83 #: application/views/station_profile/edit.php:91 msgid "Station City" msgstr "" -#: application/views/station_profile/create.php:66 +#: application/views/station_profile/create.php:85 #: application/views/station_profile/edit.php:93 msgid "Station city. For example: Oslo" msgstr "" -#: application/views/station_profile/create.php:75 +#: application/views/station_profile/create.php:94 #: application/views/station_profile/edit.php:105 msgid "Station state. Applies to certain countries only." msgstr "" -#: application/views/station_profile/create.php:80 +#: application/views/station_profile/create.php:99 #: application/views/station_profile/edit.php:110 msgid "Station County" msgstr "" -#: application/views/station_profile/create.php:82 +#: application/views/station_profile/create.php:101 #: application/views/station_profile/edit.php:112 msgid "Station County (Only used for USA/Alaska/Hawaii)." msgstr "" -#: application/views/station_profile/create.php:97 +#: application/views/station_profile/create.php:116 #: application/views/station_profile/edit.php:138 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your CQ Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:97 -#: application/views/station_profile/create.php:111 -#: application/views/station_profile/create.php:125 +#: application/views/station_profile/create.php:116 +#: application/views/station_profile/create.php:130 +#: application/views/station_profile/create.php:144 #: application/views/station_profile/edit.php:138 #: application/views/station_profile/edit.php:155 #: application/views/station_profile/edit.php:179 msgid "click here" msgstr "" -#: application/views/station_profile/create.php:111 +#: application/views/station_profile/create.php:130 #: application/views/station_profile/edit.php:155 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your ITU Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:116 +#: application/views/station_profile/create.php:135 #: application/views/station_profile/edit.php:167 #: application/views/station_profile/edit.php:170 msgid "Station Gridsquare" msgstr "" -#: application/views/station_profile/create.php:121 +#: application/views/station_profile/create.php:140 #: application/views/station_profile/edit.php:175 msgid "Get Gridsquare" msgstr "" -#: application/views/station_profile/create.php:125 +#: application/views/station_profile/create.php:144 #: application/views/station_profile/edit.php:179 #, php-format msgctxt "uses 'click here'" @@ -8911,57 +9031,57 @@ msgid "" "then %s!" msgstr "" -#: application/views/station_profile/create.php:126 +#: application/views/station_profile/create.php:145 #: application/views/station_profile/edit.php:180 msgid "" "If you are located on a grid line, enter multiple grid squares separated " "with commas. For example: IO77,IO78,IO87,IO88." msgstr "" -#: application/views/station_profile/create.php:141 +#: application/views/station_profile/create.php:160 #: application/views/station_profile/edit.php:205 msgid "Station IOTA reference. For example: EU-005" msgstr "" -#: application/views/station_profile/create.php:142 +#: application/views/station_profile/create.php:161 #: application/views/station_profile/edit.php:206 msgid "IOTA World website" msgstr "" -#: application/views/station_profile/create.php:142 +#: application/views/station_profile/create.php:161 #: application/views/station_profile/edit.php:206 #, php-format msgid "You can look up IOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:148 +#: application/views/station_profile/create.php:167 #: application/views/station_profile/edit.php:221 msgid "SOTA Maps website" msgstr "" -#: application/views/station_profile/create.php:148 +#: application/views/station_profile/create.php:167 #: application/views/station_profile/edit.php:221 #, php-format msgid "Station SOTA reference. You can look up SOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:154 +#: application/views/station_profile/create.php:173 #: application/views/station_profile/edit.php:234 msgid "GMA Map website" msgstr "" -#: application/views/station_profile/create.php:154 +#: application/views/station_profile/create.php:173 #: application/views/station_profile/edit.php:234 #, php-format msgid "Station WWFF reference. You can look up WWFF references at the %s." msgstr "" -#: application/views/station_profile/create.php:160 +#: application/views/station_profile/create.php:179 #: application/views/station_profile/edit.php:247 msgid "POTA Map website" msgstr "" -#: application/views/station_profile/create.php:160 +#: application/views/station_profile/create.php:179 #: application/views/station_profile/edit.php:247 #, php-format msgid "" @@ -8969,55 +9089,55 @@ msgid "" "look up POTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:164 +#: application/views/station_profile/create.php:183 #: application/views/station_profile/edit.php:260 msgid "Signature Name" msgstr "" -#: application/views/station_profile/create.php:166 +#: application/views/station_profile/create.php:185 #: application/views/station_profile/edit.php:262 msgid "Station Signature (e.g. GMA).." msgstr "" -#: application/views/station_profile/create.php:170 +#: application/views/station_profile/create.php:189 #: application/views/station_profile/edit.php:266 msgid "Signature Information" msgstr "" -#: application/views/station_profile/create.php:172 +#: application/views/station_profile/create.php:191 #: application/views/station_profile/edit.php:268 msgid "Station Signature Info (e.g. DA/NW-357)." msgstr "" -#: application/views/station_profile/create.php:176 +#: application/views/station_profile/create.php:195 #: application/views/station_profile/edit.php:281 msgctxt "Probably no translation needed" msgid "eQSL QTH Nickname" msgstr "" -#: application/views/station_profile/create.php:178 +#: application/views/station_profile/create.php:197 #: application/views/station_profile/edit.php:283 msgid "The QTH Nickname which is configured in your eQSL Profile" msgstr "" -#: application/views/station_profile/create.php:182 +#: application/views/station_profile/create.php:201 #: application/views/station_profile/edit.php:286 msgid "Default QSLMSG" msgstr "" -#: application/views/station_profile/create.php:185 +#: application/views/station_profile/create.php:204 #: application/views/station_profile/edit.php:289 msgid "" "Define a default message that will be populated and sent for each QSO for " "this station location." msgstr "" -#: application/views/station_profile/create.php:188 +#: application/views/station_profile/create.php:207 #: application/views/station_profile/edit.php:328 msgid "Ignore Clublog Upload" msgstr "" -#: application/views/station_profile/create.php:193 +#: application/views/station_profile/create.php:212 #: application/views/station_profile/edit.php:333 msgid "" "If enabled, the QSOs made from this location will not be uploaded to " @@ -9025,124 +9145,124 @@ msgid "" "properly configured at Clublog" msgstr "" -#: application/views/station_profile/create.php:196 +#: application/views/station_profile/create.php:215 #: application/views/station_profile/edit.php:336 msgid "ClubLog Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:205 +#: application/views/station_profile/create.php:224 #: application/views/station_profile/edit.php:352 msgid "HRDLog.net Username" msgstr "" -#: application/views/station_profile/create.php:207 +#: application/views/station_profile/create.php:226 #: application/views/station_profile/edit.php:354 msgid "" "The username you are registered with at HRDlog.net (usually your callsign)." msgstr "" -#: application/views/station_profile/create.php:210 +#: application/views/station_profile/create.php:229 #: application/views/station_profile/edit.php:357 msgid "HRDLog.net API Key" msgstr "" -#: application/views/station_profile/create.php:212 +#: application/views/station_profile/create.php:231 #: application/views/station_profile/edit.php:359 #, php-format msgctxt "HRDLog.net Userprofile page" msgid "Create your API Code on your %s" msgstr "" -#: application/views/station_profile/create.php:212 +#: application/views/station_profile/create.php:231 #: application/views/station_profile/edit.php:359 msgid "HRDLog.net Userprofile page" msgstr "" -#: application/views/station_profile/create.php:215 +#: application/views/station_profile/create.php:234 #: application/views/station_profile/edit.php:362 msgid "HRDLog.net Logbook Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:224 +#: application/views/station_profile/create.php:243 #: application/views/station_profile/edit.php:297 msgid "Subscription Required" msgstr "" -#: application/views/station_profile/create.php:229 +#: application/views/station_profile/create.php:248 msgctxt "Probably no translation needed" msgid "QRZ.com Logbook API Key" msgstr "" -#: application/views/station_profile/create.php:232 +#: application/views/station_profile/create.php:251 msgid "Test API-Key" msgstr "" -#: application/views/station_profile/create.php:235 +#: application/views/station_profile/create.php:254 #: application/views/station_profile/edit.php:306 #, php-format msgctxt "the QRZ.com Logbook settings page" msgid "Find your API key on %s" msgstr "" -#: application/views/station_profile/create.php:235 +#: application/views/station_profile/create.php:254 #: application/views/station_profile/edit.php:306 msgid "the QRZ.com Logbook settings page" msgstr "" -#: application/views/station_profile/create.php:238 +#: application/views/station_profile/create.php:257 #: application/views/station_profile/edit.php:310 msgid "QRZ.com Logbook Upload" msgstr "" -#: application/views/station_profile/create.php:241 +#: application/views/station_profile/create.php:260 #: application/views/station_profile/edit.php:313 msgid "Realtime" msgstr "" -#: application/views/station_profile/create.php:249 +#: application/views/station_profile/create.php:268 #: application/views/station_profile/edit.php:378 msgctxt "Probably no translation needed" msgid "QO-100 Dx Club API Key" msgstr "" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:270 #: application/views/station_profile/edit.php:380 #, php-format msgctxt "QO-100 Dx Club's profile page" msgid "Create your API key on your %s" msgstr "" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:270 #: application/views/station_profile/edit.php:380 msgid "QO-100 Dx Club's profile page" msgstr "" -#: application/views/station_profile/create.php:254 +#: application/views/station_profile/create.php:273 #: application/views/station_profile/edit.php:383 msgid "QO-100 Dx Club Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:264 +#: application/views/station_profile/create.php:283 #: application/views/station_profile/edit.php:401 msgid "OQRS Enabled" msgstr "" -#: application/views/station_profile/create.php:271 +#: application/views/station_profile/create.php:290 #: application/views/station_profile/edit.php:408 msgid "OQRS Email alert" msgstr "" -#: application/views/station_profile/create.php:276 +#: application/views/station_profile/create.php:295 #: application/views/station_profile/edit.php:413 msgid "Make sure email is set up under admin and global options." msgstr "" -#: application/views/station_profile/create.php:279 +#: application/views/station_profile/create.php:298 #: application/views/station_profile/edit.php:416 msgid "OQRS Text" msgstr "" -#: application/views/station_profile/create.php:281 +#: application/views/station_profile/create.php:300 #: application/views/station_profile/edit.php:418 msgid "Some info you want to add regarding QSL'ing." msgstr "" @@ -10186,10 +10306,6 @@ msgstr "QSO:n tiedot" msgid "QSL Management" msgstr "QSL-manageri" -#: application/views/view_log/qso.php:42 -msgid "eQSL Card" -msgstr "" - #: application/views/view_log/qso.php:128 msgid "Total Distance" msgstr "Kokonaismatka" @@ -10261,10 +10377,6 @@ msgstr "" msgid "Details" msgstr "" -#: application/views/view_log/qso.php:604 -msgid "QSL image file" -msgstr "" - #: application/views/view_log/qso.php:630 msgid "Uploaded QSL Card front image" msgstr "QSL-kortin ladattu etukuva" diff --git a/application/locale/fr_FR/LC_MESSAGES/messages.po b/application/locale/fr_FR/LC_MESSAGES/messages.po index 238b0299f..b061908b9 100644 --- a/application/locale/fr_FR/LC_MESSAGES/messages.po +++ b/application/locale/fr_FR/LC_MESSAGES/messages.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-01 15:48+0000\n" +"POT-Creation-Date: 2024-08-06 18:03+0000\n" "PO-Revision-Date: 2024-07-29 12:05+0000\n" "Last-Translator: \"Francisco (F4VSE)\" \n" "Language-Team: French here for " +"more information." msgstr "" #: application/views/debug/index.php:48 #, php-format +msgid "Current migration is %s" +msgstr "" + +#: application/views/debug/index.php:49 +#, php-format msgid "Migration should be %s" msgstr "" -#: application/views/debug/index.php:53 +#: application/views/debug/index.php:54 msgid "Environment" msgstr "" -#: application/views/debug/index.php:61 +#: application/views/debug/index.php:62 msgid "Total QSO on this instance" msgstr "" -#: application/views/debug/index.php:69 +#: application/views/debug/index.php:70 msgid "Server Information" msgstr "" -#: application/views/debug/index.php:73 +#: application/views/debug/index.php:74 msgid "Server Software" msgstr "" -#: application/views/debug/index.php:78 +#: application/views/debug/index.php:79 msgid "PHP Version" msgstr "" -#: application/views/debug/index.php:84 +#: application/views/debug/index.php:85 msgid "Deprecated" msgstr "" -#: application/views/debug/index.php:91 +#: application/views/debug/index.php:92 msgid "MySQL Version" msgstr "" -#: application/views/debug/index.php:95 +#: application/views/debug/index.php:96 msgid "Codeigniter Version" msgstr "" -#: application/views/debug/index.php:103 +#: application/views/debug/index.php:104 msgid "Folder Permissions" msgstr "" -#: application/views/debug/index.php:105 +#: application/views/debug/index.php:106 msgid "" "This verifies that the folders used by Wavelog have read and write " "permissions by PHP." msgstr "" -#: application/views/debug/index.php:111 application/views/debug/index.php:122 -#: application/views/debug/index.php:133 application/views/debug/index.php:144 -#: application/views/debug/index.php:156 +#: application/views/debug/index.php:112 application/views/debug/index.php:123 +#: application/views/debug/index.php:134 application/views/debug/index.php:145 +#: application/views/debug/index.php:157 msgid "Success" msgstr "" -#: application/views/debug/index.php:113 application/views/debug/index.php:124 -#: application/views/debug/index.php:135 application/views/debug/index.php:146 -#: application/views/debug/index.php:158 +#: application/views/debug/index.php:114 application/views/debug/index.php:125 +#: application/views/debug/index.php:136 application/views/debug/index.php:147 +#: application/views/debug/index.php:159 msgid "Failed" msgstr "" -#: application/views/debug/index.php:168 +#: application/views/debug/index.php:169 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:174 +#: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" -#: application/views/debug/index.php:176 application/views/debug/index.php:193 +#: application/views/debug/index.php:177 application/views/debug/index.php:194 #, php-format msgid "Please edit your %s File:" msgstr "" -#: application/views/debug/index.php:177 +#: application/views/debug/index.php:178 msgid "" "Go to your application/config Folder and compare config.sample.php with your " "config.php" msgstr "" -#: application/views/debug/index.php:178 +#: application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:184 +#: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" msgstr "" -#: application/views/debug/index.php:184 application/views/debug/index.php:201 +#: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" msgstr "" -#: application/views/debug/index.php:191 +#: application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "" -#: application/views/debug/index.php:194 +#: application/views/debug/index.php:195 msgid "This will also enable the 'Keep me logged in' feature." msgstr "" -#: application/views/debug/index.php:195 +#: application/views/debug/index.php:196 #, php-format msgid "" "Change the value of %s to a new encryption key other then " "'flossie1234555541'. Choose a safe and long password. (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:201 +#: application/views/debug/index.php:202 msgid "You do not use the default encryption key" msgstr "" -#: application/views/debug/index.php:208 +#: application/views/debug/index.php:209 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:210 +#: application/views/debug/index.php:211 msgid "" "Here you can migrate existing QSL cards and eQSL cards to the new userdata " "folder." msgstr "" -#: application/views/debug/index.php:223 +#: application/views/debug/index.php:224 msgid "Modules" msgstr "" -#: application/views/debug/index.php:229 application/views/debug/index.php:240 -#: application/views/debug/index.php:251 application/views/debug/index.php:262 -#: application/views/debug/index.php:273 +#: application/views/debug/index.php:230 application/views/debug/index.php:241 +#: application/views/debug/index.php:252 application/views/debug/index.php:263 +#: application/views/debug/index.php:274 msgid "Installed" msgstr "" -#: application/views/debug/index.php:231 application/views/debug/index.php:242 -#: application/views/debug/index.php:253 application/views/debug/index.php:264 -#: application/views/debug/index.php:275 +#: application/views/debug/index.php:232 application/views/debug/index.php:243 +#: application/views/debug/index.php:254 application/views/debug/index.php:265 +#: application/views/debug/index.php:276 msgid "Not Installed" msgstr "" -#: application/views/debug/index.php:282 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:654 msgid "Settings" msgstr "" -#: application/views/debug/index.php:411 +#: application/views/debug/index.php:412 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:415 +#: application/views/debug/index.php:416 msgid "Branch" msgstr "" -#: application/views/debug/index.php:426 application/views/debug/index.php:437 -#: application/views/debug/index.php:447 +#: application/views/debug/index.php:427 application/views/debug/index.php:438 +#: application/views/debug/index.php:448 msgid "n/a" msgstr "" -#: application/views/debug/index.php:432 +#: application/views/debug/index.php:433 msgid "Commit" msgstr "" -#: application/views/debug/index.php:442 +#: application/views/debug/index.php:443 msgid "Tag" msgstr "" -#: application/views/debug/index.php:452 +#: application/views/debug/index.php:453 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:464 +#: application/views/debug/index.php:465 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:466 msgid "Update now" msgstr "" -#: application/views/debug/index.php:483 +#: application/views/debug/index.php:484 msgid "File download date" msgstr "" -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:488 msgid "File" msgstr "" -#: application/views/debug/index.php:488 +#: application/views/debug/index.php:489 msgid "Last update" msgstr "" -#: application/views/debug/index.php:492 +#: application/views/debug/index.php:493 msgid "DXCC update from Club Log" msgstr "" -#: application/views/debug/index.php:494 application/views/debug/index.php:500 -#: application/views/debug/index.php:505 application/views/debug/index.php:510 -#: application/views/debug/index.php:515 application/views/debug/index.php:520 -#: application/views/debug/index.php:525 +#: application/views/debug/index.php:495 application/views/debug/index.php:501 +#: application/views/debug/index.php:506 application/views/debug/index.php:511 +#: application/views/debug/index.php:516 application/views/debug/index.php:521 +#: application/views/debug/index.php:526 #: application/views/station_profile/edit.php:22 msgid "Update" msgstr "Mettre à jour" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:499 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:503 +#: application/views/debug/index.php:504 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:508 +#: application/views/debug/index.php:509 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:513 +#: application/views/debug/index.php:514 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:518 +#: application/views/debug/index.php:519 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:523 +#: application/views/debug/index.php:524 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:532 +#: application/views/debug/index.php:533 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:537 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -5558,9 +5578,9 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:549 +#: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:38 +#: application/views/station_profile/create.php:57 #: application/views/station_profile/edit.php:46 #: application/views/station_profile/index.php:42 #: application/views/stationsetup/linkedlocations.php:32 @@ -5568,88 +5588,88 @@ msgstr[1] "" msgid "Station Callsign" msgstr "" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:582 +#: application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:583 application/views/debug/index.php:594 +#: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:628 +#: application/views/debug/index.php:629 msgid "Bulgarian" msgstr "" -#: application/views/debug/index.php:629 +#: application/views/debug/index.php:630 msgid "Chinese (Simplified)" msgstr "" -#: application/views/debug/index.php:630 +#: application/views/debug/index.php:631 msgid "Czech" msgstr "" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:632 msgid "Dutch" msgstr "" -#: application/views/debug/index.php:632 +#: application/views/debug/index.php:633 msgid "English" msgstr "" -#: application/views/debug/index.php:633 +#: application/views/debug/index.php:634 msgid "Finnish" msgstr "" -#: application/views/debug/index.php:634 +#: application/views/debug/index.php:635 msgid "French" msgstr "" -#: application/views/debug/index.php:635 +#: application/views/debug/index.php:636 msgid "German" msgstr "" -#: application/views/debug/index.php:636 +#: application/views/debug/index.php:637 msgid "Greek" msgstr "" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:638 msgid "Italian" msgstr "" -#: application/views/debug/index.php:638 +#: application/views/debug/index.php:639 msgid "Polish" msgstr "" -#: application/views/debug/index.php:639 +#: application/views/debug/index.php:640 msgid "Portuguese" msgstr "" -#: application/views/debug/index.php:640 +#: application/views/debug/index.php:641 msgid "Russian" msgstr "" -#: application/views/debug/index.php:641 +#: application/views/debug/index.php:642 msgid "Spanish" msgstr "" -#: application/views/debug/index.php:642 +#: application/views/debug/index.php:643 msgid "Swedish" msgstr "" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:644 msgid "Turkish" msgstr "" @@ -5873,6 +5893,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:60 +#: application/views/interface_assets/footer.php:2342 +#: application/views/interface_assets/footer.php:2360 +#: application/views/interface_assets/footer.php:2381 +#: application/views/interface_assets/footer.php:2399 #: application/views/qslcard/index.php:66 #: application/views/view_log/qso.php:614 msgid "View" @@ -6033,6 +6057,69 @@ msgstr "" msgid "Version Info" msgstr "" +#: application/views/interface_assets/footer.php:392 +msgid "Description:" +msgstr "" + +#: application/views/interface_assets/footer.php:395 +msgid "Query description" +msgstr "" + +#: application/views/interface_assets/footer.php:411 +msgid "Your query has been saved!" +msgstr "" + +#: application/views/interface_assets/footer.php:413 +#: application/views/search/filter.php:46 +msgid "Edit queries" +msgstr "" + +#: application/views/interface_assets/footer.php:415 +msgid "Stored queries:" +msgstr "" + +#: application/views/interface_assets/footer.php:420 +#: application/views/search/filter.php:60 +msgid "Run Query" +msgstr "" + +#: application/views/interface_assets/footer.php:432 +#: application/views/interface_assets/footer.php:561 +#: application/views/interface_assets/footer.php:625 +msgid "Stored Queries" +msgstr "" + +#: application/views/interface_assets/footer.php:437 +#: application/views/interface_assets/footer.php:630 +msgid "You need to make a query before you search!" +msgstr "" + +#: application/views/interface_assets/footer.php:458 +#: application/views/interface_assets/footer.php:589 +#: application/views/search/filter.php:79 +msgid "Export to ADIF" +msgstr "" + +#: application/views/interface_assets/footer.php:496 +msgid "Warning! Are you sure you want delete this stored query?" +msgstr "" + +#: application/views/interface_assets/footer.php:510 +msgid "The stored query has been deleted!" +msgstr "" + +#: application/views/interface_assets/footer.php:519 +msgid "The stored query could not be deleted. Please try again!" +msgstr "" + +#: application/views/interface_assets/footer.php:545 +msgid "The query description has been updated!" +msgstr "" + +#: application/views/interface_assets/footer.php:549 +msgid "Something went wrong with the save. Please try again!" +msgstr "" + #: application/views/interface_assets/footer.php:672 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " @@ -6040,20 +6127,65 @@ msgid "" "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:1374 -#: application/views/interface_assets/footer.php:1378 -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1518 -#: application/views/interface_assets/footer.php:1522 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1174 +#, php-format +msgid "You're not logged it. Please login" +msgstr "" + +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1384 +#: application/views/interface_assets/footer.php:1387 +#: application/views/interface_assets/footer.php:1524 +#: application/views/interface_assets/footer.php:1528 +#: application/views/interface_assets/footer.php:1531 msgid "grid square" msgstr "Grilles des Locators" -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1387 +#: application/views/interface_assets/footer.php:1531 msgid "Total count" msgstr "Total" +#: application/views/interface_assets/footer.php:2118 +msgid "QSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2138 +msgid "Warning! Are you sure you want to delete this QSL card?" +msgstr "" + +#: application/views/interface_assets/footer.php:2178 +#: application/views/view_log/qso.php:42 +msgid "eQSL Card" +msgstr "Carte eQSL" + +#: application/views/interface_assets/footer.php:2180 +msgid "eQSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2353 +#: application/views/interface_assets/footer.php:2392 +#: application/views/view_log/qso.php:604 +msgid "QSL image file" +msgstr "" + +#: application/views/interface_assets/footer.php:2372 +msgid "Front QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2410 +msgid "Back QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2421 +#: application/views/interface_assets/footer.php:2446 +msgid "Add additional QSOs to a QSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2457 +msgid "Something went wrong. Please try again!" +msgstr "" + #: application/views/interface_assets/header.php:86 msgid "Developer Mode" msgstr "" @@ -6603,12 +6735,12 @@ msgstr "QSL Envoyée" #: application/views/qso/edit_ajax.php:495 #: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:190 -#: application/views/station_profile/create.php:198 +#: application/views/station_profile/create.php:209 #: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:256 -#: application/views/station_profile/create.php:267 -#: application/views/station_profile/create.php:274 +#: application/views/station_profile/create.php:236 +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/create.php:286 +#: application/views/station_profile/create.php:293 #: application/views/station_profile/edit.php:330 #: application/views/station_profile/edit.php:338 #: application/views/station_profile/edit.php:364 @@ -6641,12 +6773,12 @@ msgstr "Oui" #: application/views/qso/edit_ajax.php:494 #: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/create.php:199 +#: application/views/station_profile/create.php:210 #: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/create.php:266 -#: application/views/station_profile/create.php:273 +#: application/views/station_profile/create.php:237 +#: application/views/station_profile/create.php:276 +#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:292 #: application/views/station_profile/edit.php:331 #: application/views/station_profile/edit.php:339 #: application/views/station_profile/edit.php:365 @@ -8256,7 +8388,7 @@ msgid "Search DXCluster for latest Spot" msgstr "" #: application/views/qso/index.php:196 application/views/qso/index.php:439 -#: application/views/station_profile/create.php:130 +#: application/views/station_profile/create.php:149 #: application/views/station_profile/edit.php:191 #: application/views/user/edit.php:583 application/views/view_log/qso.php:282 #: application/views/view_log/qso.php:549 @@ -8264,7 +8396,7 @@ msgid "IOTA Reference" msgstr "Référence IOTA" #: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:146 +#: application/views/station_profile/create.php:165 #: application/views/station_profile/edit.php:219 #: application/views/user/edit.php:587 application/views/view_log/qso.php:289 #: application/views/view_log/qso.php:556 @@ -8524,26 +8656,14 @@ msgstr "" msgid "Save query" msgstr "" -#: application/views/search/filter.php:46 -msgid "Edit queries" -msgstr "" - #: application/views/search/filter.php:50 msgid "Stored queries" msgstr "" -#: application/views/search/filter.php:60 -msgid "Run Query" -msgstr "" - #: application/views/search/filter.php:69 msgid "search filter functions" msgstr "" -#: application/views/search/filter.php:79 -msgid "Export to ADIF" -msgstr "" - #: application/views/search/filter.php:79 msgid "Search Results" msgstr "" @@ -8861,115 +8981,115 @@ msgid "" "of our Wiki." msgstr "" -#: application/views/station_profile/create.php:32 +#: application/views/station_profile/create.php:51 #: application/views/station_profile/edit.php:40 msgid "Location Name" msgstr "" -#: application/views/station_profile/create.php:33 -#: application/views/station_profile/create.php:34 +#: application/views/station_profile/create.php:52 +#: application/views/station_profile/create.php:53 #: application/views/station_profile/edit.php:42 msgctxt "Station Location Setup" msgid "Home QTH" msgstr "" -#: application/views/station_profile/create.php:34 +#: application/views/station_profile/create.php:53 #: application/views/station_profile/edit.php:42 #, php-format msgid "Shortname for the station location. For example: %s" msgstr "" -#: application/views/station_profile/create.php:40 +#: application/views/station_profile/create.php:59 #: application/views/station_profile/edit.php:48 msgid "Station callsign. For example: 4W7EST/P" msgstr "" -#: application/views/station_profile/create.php:44 +#: application/views/station_profile/create.php:63 #: application/views/station_profile/edit.php:52 msgid "Station Power (W)" msgstr "" -#: application/views/station_profile/create.php:46 +#: application/views/station_profile/create.php:65 #: application/views/station_profile/edit.php:54 msgid "Default station power in Watt. Overwritten by CAT." msgstr "" -#: application/views/station_profile/create.php:49 +#: application/views/station_profile/create.php:68 #: application/views/station_profile/edit.php:69 msgid "Station DXCC" msgstr "" -#: application/views/station_profile/create.php:52 +#: application/views/station_profile/create.php:71 #: application/views/station_profile/edit.php:72 msgctxt "DXCC selection" msgid "None" msgstr "Aucun" -#: application/views/station_profile/create.php:59 +#: application/views/station_profile/create.php:78 #: application/views/station_profile/edit.php:85 msgid "Station DXCC entity. For example: Bolivia" msgstr "" -#: application/views/station_profile/create.php:64 +#: application/views/station_profile/create.php:83 #: application/views/station_profile/edit.php:91 msgid "Station City" msgstr "" -#: application/views/station_profile/create.php:66 +#: application/views/station_profile/create.php:85 #: application/views/station_profile/edit.php:93 msgid "Station city. For example: Oslo" msgstr "" -#: application/views/station_profile/create.php:75 +#: application/views/station_profile/create.php:94 #: application/views/station_profile/edit.php:105 msgid "Station state. Applies to certain countries only." msgstr "" -#: application/views/station_profile/create.php:80 +#: application/views/station_profile/create.php:99 #: application/views/station_profile/edit.php:110 msgid "Station County" msgstr "" -#: application/views/station_profile/create.php:82 +#: application/views/station_profile/create.php:101 #: application/views/station_profile/edit.php:112 msgid "Station County (Only used for USA/Alaska/Hawaii)." msgstr "" -#: application/views/station_profile/create.php:97 +#: application/views/station_profile/create.php:116 #: application/views/station_profile/edit.php:138 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your CQ Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:97 -#: application/views/station_profile/create.php:111 -#: application/views/station_profile/create.php:125 +#: application/views/station_profile/create.php:116 +#: application/views/station_profile/create.php:130 +#: application/views/station_profile/create.php:144 #: application/views/station_profile/edit.php:138 #: application/views/station_profile/edit.php:155 #: application/views/station_profile/edit.php:179 msgid "click here" msgstr "cliquer ici" -#: application/views/station_profile/create.php:111 +#: application/views/station_profile/create.php:130 #: application/views/station_profile/edit.php:155 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your ITU Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:116 +#: application/views/station_profile/create.php:135 #: application/views/station_profile/edit.php:167 #: application/views/station_profile/edit.php:170 msgid "Station Gridsquare" msgstr "" -#: application/views/station_profile/create.php:121 +#: application/views/station_profile/create.php:140 #: application/views/station_profile/edit.php:175 msgid "Get Gridsquare" msgstr "Trouver le Locator" -#: application/views/station_profile/create.php:125 +#: application/views/station_profile/create.php:144 #: application/views/station_profile/edit.php:179 #, php-format msgctxt "uses 'click here'" @@ -8978,57 +9098,57 @@ msgid "" "then %s!" msgstr "" -#: application/views/station_profile/create.php:126 +#: application/views/station_profile/create.php:145 #: application/views/station_profile/edit.php:180 msgid "" "If you are located on a grid line, enter multiple grid squares separated " "with commas. For example: IO77,IO78,IO87,IO88." msgstr "" -#: application/views/station_profile/create.php:141 +#: application/views/station_profile/create.php:160 #: application/views/station_profile/edit.php:205 msgid "Station IOTA reference. For example: EU-005" msgstr "" -#: application/views/station_profile/create.php:142 +#: application/views/station_profile/create.php:161 #: application/views/station_profile/edit.php:206 msgid "IOTA World website" msgstr "" -#: application/views/station_profile/create.php:142 +#: application/views/station_profile/create.php:161 #: application/views/station_profile/edit.php:206 #, php-format msgid "You can look up IOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:148 +#: application/views/station_profile/create.php:167 #: application/views/station_profile/edit.php:221 msgid "SOTA Maps website" msgstr "" -#: application/views/station_profile/create.php:148 +#: application/views/station_profile/create.php:167 #: application/views/station_profile/edit.php:221 #, php-format msgid "Station SOTA reference. You can look up SOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:154 +#: application/views/station_profile/create.php:173 #: application/views/station_profile/edit.php:234 msgid "GMA Map website" msgstr "" -#: application/views/station_profile/create.php:154 +#: application/views/station_profile/create.php:173 #: application/views/station_profile/edit.php:234 #, php-format msgid "Station WWFF reference. You can look up WWFF references at the %s." msgstr "" -#: application/views/station_profile/create.php:160 +#: application/views/station_profile/create.php:179 #: application/views/station_profile/edit.php:247 msgid "POTA Map website" msgstr "" -#: application/views/station_profile/create.php:160 +#: application/views/station_profile/create.php:179 #: application/views/station_profile/edit.php:247 #, php-format msgid "" @@ -9036,43 +9156,43 @@ msgid "" "look up POTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:164 +#: application/views/station_profile/create.php:183 #: application/views/station_profile/edit.php:260 msgid "Signature Name" msgstr "" -#: application/views/station_profile/create.php:166 +#: application/views/station_profile/create.php:185 #: application/views/station_profile/edit.php:262 msgid "Station Signature (e.g. GMA).." msgstr "" -#: application/views/station_profile/create.php:170 +#: application/views/station_profile/create.php:189 #: application/views/station_profile/edit.php:266 msgid "Signature Information" msgstr "" -#: application/views/station_profile/create.php:172 +#: application/views/station_profile/create.php:191 #: application/views/station_profile/edit.php:268 msgid "Station Signature Info (e.g. DA/NW-357)." msgstr "" -#: application/views/station_profile/create.php:176 +#: application/views/station_profile/create.php:195 #: application/views/station_profile/edit.php:281 msgctxt "Probably no translation needed" msgid "eQSL QTH Nickname" msgstr "" -#: application/views/station_profile/create.php:178 +#: application/views/station_profile/create.php:197 #: application/views/station_profile/edit.php:283 msgid "The QTH Nickname which is configured in your eQSL Profile" msgstr "" -#: application/views/station_profile/create.php:182 +#: application/views/station_profile/create.php:201 #: application/views/station_profile/edit.php:286 msgid "Default QSLMSG" msgstr "Message (QSLMSG) par défaut" -#: application/views/station_profile/create.php:185 +#: application/views/station_profile/create.php:204 #: application/views/station_profile/edit.php:289 msgid "" "Define a default message that will be populated and sent for each QSO for " @@ -9081,12 +9201,12 @@ msgstr "" "Vous pouvez définir un message par défaut qui sera renseigné et envoyé pour " "chaque QSO pour ce lieu station." -#: application/views/station_profile/create.php:188 +#: application/views/station_profile/create.php:207 #: application/views/station_profile/edit.php:328 msgid "Ignore Clublog Upload" msgstr "" -#: application/views/station_profile/create.php:193 +#: application/views/station_profile/create.php:212 #: application/views/station_profile/edit.php:333 msgid "" "If enabled, the QSOs made from this location will not be uploaded to " @@ -9094,124 +9214,124 @@ msgid "" "properly configured at Clublog" msgstr "" -#: application/views/station_profile/create.php:196 +#: application/views/station_profile/create.php:215 #: application/views/station_profile/edit.php:336 msgid "ClubLog Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:205 +#: application/views/station_profile/create.php:224 #: application/views/station_profile/edit.php:352 msgid "HRDLog.net Username" msgstr "" -#: application/views/station_profile/create.php:207 +#: application/views/station_profile/create.php:226 #: application/views/station_profile/edit.php:354 msgid "" "The username you are registered with at HRDlog.net (usually your callsign)." msgstr "" -#: application/views/station_profile/create.php:210 +#: application/views/station_profile/create.php:229 #: application/views/station_profile/edit.php:357 msgid "HRDLog.net API Key" msgstr "" -#: application/views/station_profile/create.php:212 +#: application/views/station_profile/create.php:231 #: application/views/station_profile/edit.php:359 #, php-format msgctxt "HRDLog.net Userprofile page" msgid "Create your API Code on your %s" msgstr "" -#: application/views/station_profile/create.php:212 +#: application/views/station_profile/create.php:231 #: application/views/station_profile/edit.php:359 msgid "HRDLog.net Userprofile page" msgstr "" -#: application/views/station_profile/create.php:215 +#: application/views/station_profile/create.php:234 #: application/views/station_profile/edit.php:362 msgid "HRDLog.net Logbook Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:224 +#: application/views/station_profile/create.php:243 #: application/views/station_profile/edit.php:297 msgid "Subscription Required" msgstr "" -#: application/views/station_profile/create.php:229 +#: application/views/station_profile/create.php:248 msgctxt "Probably no translation needed" msgid "QRZ.com Logbook API Key" msgstr "" -#: application/views/station_profile/create.php:232 +#: application/views/station_profile/create.php:251 msgid "Test API-Key" msgstr "" -#: application/views/station_profile/create.php:235 +#: application/views/station_profile/create.php:254 #: application/views/station_profile/edit.php:306 #, php-format msgctxt "the QRZ.com Logbook settings page" msgid "Find your API key on %s" msgstr "" -#: application/views/station_profile/create.php:235 +#: application/views/station_profile/create.php:254 #: application/views/station_profile/edit.php:306 msgid "the QRZ.com Logbook settings page" msgstr "" -#: application/views/station_profile/create.php:238 +#: application/views/station_profile/create.php:257 #: application/views/station_profile/edit.php:310 msgid "QRZ.com Logbook Upload" msgstr "" -#: application/views/station_profile/create.php:241 +#: application/views/station_profile/create.php:260 #: application/views/station_profile/edit.php:313 msgid "Realtime" msgstr "" -#: application/views/station_profile/create.php:249 +#: application/views/station_profile/create.php:268 #: application/views/station_profile/edit.php:378 msgctxt "Probably no translation needed" msgid "QO-100 Dx Club API Key" msgstr "" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:270 #: application/views/station_profile/edit.php:380 #, php-format msgctxt "QO-100 Dx Club's profile page" msgid "Create your API key on your %s" msgstr "" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:270 #: application/views/station_profile/edit.php:380 msgid "QO-100 Dx Club's profile page" msgstr "" -#: application/views/station_profile/create.php:254 +#: application/views/station_profile/create.php:273 #: application/views/station_profile/edit.php:383 msgid "QO-100 Dx Club Realtime Upload" msgstr "QO-100 Dx Club Téléchargement en temps réel" -#: application/views/station_profile/create.php:264 +#: application/views/station_profile/create.php:283 #: application/views/station_profile/edit.php:401 msgid "OQRS Enabled" msgstr "OQRS activé" -#: application/views/station_profile/create.php:271 +#: application/views/station_profile/create.php:290 #: application/views/station_profile/edit.php:408 msgid "OQRS Email alert" msgstr "OQRS Alerte par email" -#: application/views/station_profile/create.php:276 +#: application/views/station_profile/create.php:295 #: application/views/station_profile/edit.php:413 msgid "Make sure email is set up under admin and global options." msgstr "" -#: application/views/station_profile/create.php:279 +#: application/views/station_profile/create.php:298 #: application/views/station_profile/edit.php:416 msgid "OQRS Text" msgstr "" -#: application/views/station_profile/create.php:281 +#: application/views/station_profile/create.php:300 #: application/views/station_profile/edit.php:418 msgid "Some info you want to add regarding QSL'ing." msgstr "" @@ -10271,10 +10391,6 @@ msgstr "" msgid "QSL Management" msgstr "Gestionnaire de QSL" -#: application/views/view_log/qso.php:42 -msgid "eQSL Card" -msgstr "Carte eQSL" - #: application/views/view_log/qso.php:128 msgid "Total Distance" msgstr "Distance Totale" @@ -10346,10 +10462,6 @@ msgstr "Autres QSO" msgid "Details" msgstr "Détails" -#: application/views/view_log/qso.php:604 -msgid "QSL image file" -msgstr "" - #: application/views/view_log/qso.php:630 msgid "Uploaded QSL Card front image" msgstr "Sélectionner l'image 'recto' de la QSL" diff --git a/application/locale/it_IT/LC_MESSAGES/messages.po b/application/locale/it_IT/LC_MESSAGES/messages.po index 30fef5026..23d39631d 100644 --- a/application/locale/it_IT/LC_MESSAGES/messages.po +++ b/application/locale/it_IT/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-01 15:48+0000\n" +"POT-Creation-Date: 2024-08-06 18:03+0000\n" "PO-Revision-Date: 2024-07-09 13:26+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Italian here for " +"more information." msgstr "" #: application/views/debug/index.php:48 #, php-format +msgid "Current migration is %s" +msgstr "" + +#: application/views/debug/index.php:49 +#, php-format msgid "Migration should be %s" msgstr "" -#: application/views/debug/index.php:53 +#: application/views/debug/index.php:54 msgid "Environment" msgstr "" -#: application/views/debug/index.php:61 +#: application/views/debug/index.php:62 msgid "Total QSO on this instance" msgstr "" -#: application/views/debug/index.php:69 +#: application/views/debug/index.php:70 msgid "Server Information" msgstr "" -#: application/views/debug/index.php:73 +#: application/views/debug/index.php:74 msgid "Server Software" msgstr "" -#: application/views/debug/index.php:78 +#: application/views/debug/index.php:79 msgid "PHP Version" msgstr "" -#: application/views/debug/index.php:84 +#: application/views/debug/index.php:85 msgid "Deprecated" msgstr "" -#: application/views/debug/index.php:91 +#: application/views/debug/index.php:92 msgid "MySQL Version" msgstr "" -#: application/views/debug/index.php:95 +#: application/views/debug/index.php:96 msgid "Codeigniter Version" msgstr "" -#: application/views/debug/index.php:103 +#: application/views/debug/index.php:104 msgid "Folder Permissions" msgstr "" -#: application/views/debug/index.php:105 +#: application/views/debug/index.php:106 msgid "" "This verifies that the folders used by Wavelog have read and write " "permissions by PHP." msgstr "" -#: application/views/debug/index.php:111 application/views/debug/index.php:122 -#: application/views/debug/index.php:133 application/views/debug/index.php:144 -#: application/views/debug/index.php:156 +#: application/views/debug/index.php:112 application/views/debug/index.php:123 +#: application/views/debug/index.php:134 application/views/debug/index.php:145 +#: application/views/debug/index.php:157 msgid "Success" msgstr "" -#: application/views/debug/index.php:113 application/views/debug/index.php:124 -#: application/views/debug/index.php:135 application/views/debug/index.php:146 -#: application/views/debug/index.php:158 +#: application/views/debug/index.php:114 application/views/debug/index.php:125 +#: application/views/debug/index.php:136 application/views/debug/index.php:147 +#: application/views/debug/index.php:159 msgid "Failed" msgstr "" -#: application/views/debug/index.php:168 +#: application/views/debug/index.php:169 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:174 +#: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" -#: application/views/debug/index.php:176 application/views/debug/index.php:193 +#: application/views/debug/index.php:177 application/views/debug/index.php:194 #, php-format msgid "Please edit your %s File:" msgstr "" -#: application/views/debug/index.php:177 +#: application/views/debug/index.php:178 msgid "" "Go to your application/config Folder and compare config.sample.php with your " "config.php" msgstr "" -#: application/views/debug/index.php:178 +#: application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:184 +#: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" msgstr "" -#: application/views/debug/index.php:184 application/views/debug/index.php:201 +#: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" msgstr "" -#: application/views/debug/index.php:191 +#: application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "" -#: application/views/debug/index.php:194 +#: application/views/debug/index.php:195 msgid "This will also enable the 'Keep me logged in' feature." msgstr "" -#: application/views/debug/index.php:195 +#: application/views/debug/index.php:196 #, php-format msgid "" "Change the value of %s to a new encryption key other then " "'flossie1234555541'. Choose a safe and long password. (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:201 +#: application/views/debug/index.php:202 msgid "You do not use the default encryption key" msgstr "" -#: application/views/debug/index.php:208 +#: application/views/debug/index.php:209 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:210 +#: application/views/debug/index.php:211 msgid "" "Here you can migrate existing QSL cards and eQSL cards to the new userdata " "folder." msgstr "" -#: application/views/debug/index.php:223 +#: application/views/debug/index.php:224 msgid "Modules" msgstr "" -#: application/views/debug/index.php:229 application/views/debug/index.php:240 -#: application/views/debug/index.php:251 application/views/debug/index.php:262 -#: application/views/debug/index.php:273 +#: application/views/debug/index.php:230 application/views/debug/index.php:241 +#: application/views/debug/index.php:252 application/views/debug/index.php:263 +#: application/views/debug/index.php:274 msgid "Installed" msgstr "" -#: application/views/debug/index.php:231 application/views/debug/index.php:242 -#: application/views/debug/index.php:253 application/views/debug/index.php:264 -#: application/views/debug/index.php:275 +#: application/views/debug/index.php:232 application/views/debug/index.php:243 +#: application/views/debug/index.php:254 application/views/debug/index.php:265 +#: application/views/debug/index.php:276 msgid "Not Installed" msgstr "" -#: application/views/debug/index.php:282 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:654 msgid "Settings" msgstr "" -#: application/views/debug/index.php:411 +#: application/views/debug/index.php:412 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:415 +#: application/views/debug/index.php:416 msgid "Branch" msgstr "" -#: application/views/debug/index.php:426 application/views/debug/index.php:437 -#: application/views/debug/index.php:447 +#: application/views/debug/index.php:427 application/views/debug/index.php:438 +#: application/views/debug/index.php:448 msgid "n/a" msgstr "" -#: application/views/debug/index.php:432 +#: application/views/debug/index.php:433 msgid "Commit" msgstr "" -#: application/views/debug/index.php:442 +#: application/views/debug/index.php:443 msgid "Tag" msgstr "" -#: application/views/debug/index.php:452 +#: application/views/debug/index.php:453 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:464 +#: application/views/debug/index.php:465 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:466 msgid "Update now" msgstr "" -#: application/views/debug/index.php:483 +#: application/views/debug/index.php:484 msgid "File download date" msgstr "" -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:488 msgid "File" msgstr "" -#: application/views/debug/index.php:488 +#: application/views/debug/index.php:489 msgid "Last update" msgstr "" -#: application/views/debug/index.php:492 +#: application/views/debug/index.php:493 msgid "DXCC update from Club Log" msgstr "" -#: application/views/debug/index.php:494 application/views/debug/index.php:500 -#: application/views/debug/index.php:505 application/views/debug/index.php:510 -#: application/views/debug/index.php:515 application/views/debug/index.php:520 -#: application/views/debug/index.php:525 +#: application/views/debug/index.php:495 application/views/debug/index.php:501 +#: application/views/debug/index.php:506 application/views/debug/index.php:511 +#: application/views/debug/index.php:516 application/views/debug/index.php:521 +#: application/views/debug/index.php:526 #: application/views/station_profile/edit.php:22 msgid "Update" msgstr "" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:499 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:503 +#: application/views/debug/index.php:504 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:508 +#: application/views/debug/index.php:509 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:513 +#: application/views/debug/index.php:514 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:518 +#: application/views/debug/index.php:519 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:523 +#: application/views/debug/index.php:524 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:532 +#: application/views/debug/index.php:533 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:537 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -5499,9 +5519,9 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:549 +#: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:38 +#: application/views/station_profile/create.php:57 #: application/views/station_profile/edit.php:46 #: application/views/station_profile/index.php:42 #: application/views/stationsetup/linkedlocations.php:32 @@ -5509,88 +5529,88 @@ msgstr[1] "" msgid "Station Callsign" msgstr "" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:582 +#: application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:583 application/views/debug/index.php:594 +#: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:628 +#: application/views/debug/index.php:629 msgid "Bulgarian" msgstr "" -#: application/views/debug/index.php:629 +#: application/views/debug/index.php:630 msgid "Chinese (Simplified)" msgstr "" -#: application/views/debug/index.php:630 +#: application/views/debug/index.php:631 msgid "Czech" msgstr "" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:632 msgid "Dutch" msgstr "" -#: application/views/debug/index.php:632 +#: application/views/debug/index.php:633 msgid "English" msgstr "" -#: application/views/debug/index.php:633 +#: application/views/debug/index.php:634 msgid "Finnish" msgstr "" -#: application/views/debug/index.php:634 +#: application/views/debug/index.php:635 msgid "French" msgstr "" -#: application/views/debug/index.php:635 +#: application/views/debug/index.php:636 msgid "German" msgstr "" -#: application/views/debug/index.php:636 +#: application/views/debug/index.php:637 msgid "Greek" msgstr "" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:638 msgid "Italian" msgstr "" -#: application/views/debug/index.php:638 +#: application/views/debug/index.php:639 msgid "Polish" msgstr "" -#: application/views/debug/index.php:639 +#: application/views/debug/index.php:640 msgid "Portuguese" msgstr "" -#: application/views/debug/index.php:640 +#: application/views/debug/index.php:641 msgid "Russian" msgstr "" -#: application/views/debug/index.php:641 +#: application/views/debug/index.php:642 msgid "Spanish" msgstr "" -#: application/views/debug/index.php:642 +#: application/views/debug/index.php:643 msgid "Swedish" msgstr "" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:644 msgid "Turkish" msgstr "" @@ -5809,6 +5829,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:60 +#: application/views/interface_assets/footer.php:2342 +#: application/views/interface_assets/footer.php:2360 +#: application/views/interface_assets/footer.php:2381 +#: application/views/interface_assets/footer.php:2399 #: application/views/qslcard/index.php:66 #: application/views/view_log/qso.php:614 msgid "View" @@ -5969,6 +5993,69 @@ msgstr "" msgid "Version Info" msgstr "" +#: application/views/interface_assets/footer.php:392 +msgid "Description:" +msgstr "" + +#: application/views/interface_assets/footer.php:395 +msgid "Query description" +msgstr "" + +#: application/views/interface_assets/footer.php:411 +msgid "Your query has been saved!" +msgstr "" + +#: application/views/interface_assets/footer.php:413 +#: application/views/search/filter.php:46 +msgid "Edit queries" +msgstr "" + +#: application/views/interface_assets/footer.php:415 +msgid "Stored queries:" +msgstr "" + +#: application/views/interface_assets/footer.php:420 +#: application/views/search/filter.php:60 +msgid "Run Query" +msgstr "" + +#: application/views/interface_assets/footer.php:432 +#: application/views/interface_assets/footer.php:561 +#: application/views/interface_assets/footer.php:625 +msgid "Stored Queries" +msgstr "" + +#: application/views/interface_assets/footer.php:437 +#: application/views/interface_assets/footer.php:630 +msgid "You need to make a query before you search!" +msgstr "" + +#: application/views/interface_assets/footer.php:458 +#: application/views/interface_assets/footer.php:589 +#: application/views/search/filter.php:79 +msgid "Export to ADIF" +msgstr "" + +#: application/views/interface_assets/footer.php:496 +msgid "Warning! Are you sure you want delete this stored query?" +msgstr "" + +#: application/views/interface_assets/footer.php:510 +msgid "The stored query has been deleted!" +msgstr "" + +#: application/views/interface_assets/footer.php:519 +msgid "The stored query could not be deleted. Please try again!" +msgstr "" + +#: application/views/interface_assets/footer.php:545 +msgid "The query description has been updated!" +msgstr "" + +#: application/views/interface_assets/footer.php:549 +msgid "Something went wrong with the save. Please try again!" +msgstr "" + #: application/views/interface_assets/footer.php:672 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " @@ -5976,20 +6063,65 @@ msgid "" "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:1374 -#: application/views/interface_assets/footer.php:1378 -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1518 -#: application/views/interface_assets/footer.php:1522 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1174 +#, php-format +msgid "You're not logged it. Please login" +msgstr "" + +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1384 +#: application/views/interface_assets/footer.php:1387 +#: application/views/interface_assets/footer.php:1524 +#: application/views/interface_assets/footer.php:1528 +#: application/views/interface_assets/footer.php:1531 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1387 +#: application/views/interface_assets/footer.php:1531 msgid "Total count" msgstr "" +#: application/views/interface_assets/footer.php:2118 +msgid "QSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2138 +msgid "Warning! Are you sure you want to delete this QSL card?" +msgstr "" + +#: application/views/interface_assets/footer.php:2178 +#: application/views/view_log/qso.php:42 +msgid "eQSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2180 +msgid "eQSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2353 +#: application/views/interface_assets/footer.php:2392 +#: application/views/view_log/qso.php:604 +msgid "QSL image file" +msgstr "" + +#: application/views/interface_assets/footer.php:2372 +msgid "Front QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2410 +msgid "Back QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2421 +#: application/views/interface_assets/footer.php:2446 +msgid "Add additional QSOs to a QSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2457 +msgid "Something went wrong. Please try again!" +msgstr "" + #: application/views/interface_assets/header.php:86 msgid "Developer Mode" msgstr "" @@ -6537,12 +6669,12 @@ msgstr "" #: application/views/qso/edit_ajax.php:495 #: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:190 -#: application/views/station_profile/create.php:198 +#: application/views/station_profile/create.php:209 #: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:256 -#: application/views/station_profile/create.php:267 -#: application/views/station_profile/create.php:274 +#: application/views/station_profile/create.php:236 +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/create.php:286 +#: application/views/station_profile/create.php:293 #: application/views/station_profile/edit.php:330 #: application/views/station_profile/edit.php:338 #: application/views/station_profile/edit.php:364 @@ -6575,12 +6707,12 @@ msgstr "Si" #: application/views/qso/edit_ajax.php:494 #: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/create.php:199 +#: application/views/station_profile/create.php:210 #: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/create.php:266 -#: application/views/station_profile/create.php:273 +#: application/views/station_profile/create.php:237 +#: application/views/station_profile/create.php:276 +#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:292 #: application/views/station_profile/edit.php:331 #: application/views/station_profile/edit.php:339 #: application/views/station_profile/edit.php:365 @@ -8186,7 +8318,7 @@ msgid "Search DXCluster for latest Spot" msgstr "" #: application/views/qso/index.php:196 application/views/qso/index.php:439 -#: application/views/station_profile/create.php:130 +#: application/views/station_profile/create.php:149 #: application/views/station_profile/edit.php:191 #: application/views/user/edit.php:583 application/views/view_log/qso.php:282 #: application/views/view_log/qso.php:549 @@ -8194,7 +8326,7 @@ msgid "IOTA Reference" msgstr "Referenza IOTA" #: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:146 +#: application/views/station_profile/create.php:165 #: application/views/station_profile/edit.php:219 #: application/views/user/edit.php:587 application/views/view_log/qso.php:289 #: application/views/view_log/qso.php:556 @@ -8454,26 +8586,14 @@ msgstr "" msgid "Save query" msgstr "" -#: application/views/search/filter.php:46 -msgid "Edit queries" -msgstr "" - #: application/views/search/filter.php:50 msgid "Stored queries" msgstr "" -#: application/views/search/filter.php:60 -msgid "Run Query" -msgstr "" - #: application/views/search/filter.php:69 msgid "search filter functions" msgstr "" -#: application/views/search/filter.php:79 -msgid "Export to ADIF" -msgstr "" - #: application/views/search/filter.php:79 msgid "Search Results" msgstr "" @@ -8791,115 +8911,115 @@ msgid "" "of our Wiki." msgstr "" -#: application/views/station_profile/create.php:32 +#: application/views/station_profile/create.php:51 #: application/views/station_profile/edit.php:40 msgid "Location Name" msgstr "" -#: application/views/station_profile/create.php:33 -#: application/views/station_profile/create.php:34 +#: application/views/station_profile/create.php:52 +#: application/views/station_profile/create.php:53 #: application/views/station_profile/edit.php:42 msgctxt "Station Location Setup" msgid "Home QTH" msgstr "" -#: application/views/station_profile/create.php:34 +#: application/views/station_profile/create.php:53 #: application/views/station_profile/edit.php:42 #, php-format msgid "Shortname for the station location. For example: %s" msgstr "" -#: application/views/station_profile/create.php:40 +#: application/views/station_profile/create.php:59 #: application/views/station_profile/edit.php:48 msgid "Station callsign. For example: 4W7EST/P" msgstr "" -#: application/views/station_profile/create.php:44 +#: application/views/station_profile/create.php:63 #: application/views/station_profile/edit.php:52 msgid "Station Power (W)" msgstr "" -#: application/views/station_profile/create.php:46 +#: application/views/station_profile/create.php:65 #: application/views/station_profile/edit.php:54 msgid "Default station power in Watt. Overwritten by CAT." msgstr "" -#: application/views/station_profile/create.php:49 +#: application/views/station_profile/create.php:68 #: application/views/station_profile/edit.php:69 msgid "Station DXCC" msgstr "" -#: application/views/station_profile/create.php:52 +#: application/views/station_profile/create.php:71 #: application/views/station_profile/edit.php:72 msgctxt "DXCC selection" msgid "None" msgstr "" -#: application/views/station_profile/create.php:59 +#: application/views/station_profile/create.php:78 #: application/views/station_profile/edit.php:85 msgid "Station DXCC entity. For example: Bolivia" msgstr "" -#: application/views/station_profile/create.php:64 +#: application/views/station_profile/create.php:83 #: application/views/station_profile/edit.php:91 msgid "Station City" msgstr "" -#: application/views/station_profile/create.php:66 +#: application/views/station_profile/create.php:85 #: application/views/station_profile/edit.php:93 msgid "Station city. For example: Oslo" msgstr "" -#: application/views/station_profile/create.php:75 +#: application/views/station_profile/create.php:94 #: application/views/station_profile/edit.php:105 msgid "Station state. Applies to certain countries only." msgstr "" -#: application/views/station_profile/create.php:80 +#: application/views/station_profile/create.php:99 #: application/views/station_profile/edit.php:110 msgid "Station County" msgstr "" -#: application/views/station_profile/create.php:82 +#: application/views/station_profile/create.php:101 #: application/views/station_profile/edit.php:112 msgid "Station County (Only used for USA/Alaska/Hawaii)." msgstr "" -#: application/views/station_profile/create.php:97 +#: application/views/station_profile/create.php:116 #: application/views/station_profile/edit.php:138 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your CQ Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:97 -#: application/views/station_profile/create.php:111 -#: application/views/station_profile/create.php:125 +#: application/views/station_profile/create.php:116 +#: application/views/station_profile/create.php:130 +#: application/views/station_profile/create.php:144 #: application/views/station_profile/edit.php:138 #: application/views/station_profile/edit.php:155 #: application/views/station_profile/edit.php:179 msgid "click here" msgstr "" -#: application/views/station_profile/create.php:111 +#: application/views/station_profile/create.php:130 #: application/views/station_profile/edit.php:155 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your ITU Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:116 +#: application/views/station_profile/create.php:135 #: application/views/station_profile/edit.php:167 #: application/views/station_profile/edit.php:170 msgid "Station Gridsquare" msgstr "" -#: application/views/station_profile/create.php:121 +#: application/views/station_profile/create.php:140 #: application/views/station_profile/edit.php:175 msgid "Get Gridsquare" msgstr "" -#: application/views/station_profile/create.php:125 +#: application/views/station_profile/create.php:144 #: application/views/station_profile/edit.php:179 #, php-format msgctxt "uses 'click here'" @@ -8908,57 +9028,57 @@ msgid "" "then %s!" msgstr "" -#: application/views/station_profile/create.php:126 +#: application/views/station_profile/create.php:145 #: application/views/station_profile/edit.php:180 msgid "" "If you are located on a grid line, enter multiple grid squares separated " "with commas. For example: IO77,IO78,IO87,IO88." msgstr "" -#: application/views/station_profile/create.php:141 +#: application/views/station_profile/create.php:160 #: application/views/station_profile/edit.php:205 msgid "Station IOTA reference. For example: EU-005" msgstr "" -#: application/views/station_profile/create.php:142 +#: application/views/station_profile/create.php:161 #: application/views/station_profile/edit.php:206 msgid "IOTA World website" msgstr "" -#: application/views/station_profile/create.php:142 +#: application/views/station_profile/create.php:161 #: application/views/station_profile/edit.php:206 #, php-format msgid "You can look up IOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:148 +#: application/views/station_profile/create.php:167 #: application/views/station_profile/edit.php:221 msgid "SOTA Maps website" msgstr "" -#: application/views/station_profile/create.php:148 +#: application/views/station_profile/create.php:167 #: application/views/station_profile/edit.php:221 #, php-format msgid "Station SOTA reference. You can look up SOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:154 +#: application/views/station_profile/create.php:173 #: application/views/station_profile/edit.php:234 msgid "GMA Map website" msgstr "" -#: application/views/station_profile/create.php:154 +#: application/views/station_profile/create.php:173 #: application/views/station_profile/edit.php:234 #, php-format msgid "Station WWFF reference. You can look up WWFF references at the %s." msgstr "" -#: application/views/station_profile/create.php:160 +#: application/views/station_profile/create.php:179 #: application/views/station_profile/edit.php:247 msgid "POTA Map website" msgstr "" -#: application/views/station_profile/create.php:160 +#: application/views/station_profile/create.php:179 #: application/views/station_profile/edit.php:247 #, php-format msgid "" @@ -8966,55 +9086,55 @@ msgid "" "look up POTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:164 +#: application/views/station_profile/create.php:183 #: application/views/station_profile/edit.php:260 msgid "Signature Name" msgstr "" -#: application/views/station_profile/create.php:166 +#: application/views/station_profile/create.php:185 #: application/views/station_profile/edit.php:262 msgid "Station Signature (e.g. GMA).." msgstr "" -#: application/views/station_profile/create.php:170 +#: application/views/station_profile/create.php:189 #: application/views/station_profile/edit.php:266 msgid "Signature Information" msgstr "" -#: application/views/station_profile/create.php:172 +#: application/views/station_profile/create.php:191 #: application/views/station_profile/edit.php:268 msgid "Station Signature Info (e.g. DA/NW-357)." msgstr "" -#: application/views/station_profile/create.php:176 +#: application/views/station_profile/create.php:195 #: application/views/station_profile/edit.php:281 msgctxt "Probably no translation needed" msgid "eQSL QTH Nickname" msgstr "" -#: application/views/station_profile/create.php:178 +#: application/views/station_profile/create.php:197 #: application/views/station_profile/edit.php:283 msgid "The QTH Nickname which is configured in your eQSL Profile" msgstr "" -#: application/views/station_profile/create.php:182 +#: application/views/station_profile/create.php:201 #: application/views/station_profile/edit.php:286 msgid "Default QSLMSG" msgstr "" -#: application/views/station_profile/create.php:185 +#: application/views/station_profile/create.php:204 #: application/views/station_profile/edit.php:289 msgid "" "Define a default message that will be populated and sent for each QSO for " "this station location." msgstr "" -#: application/views/station_profile/create.php:188 +#: application/views/station_profile/create.php:207 #: application/views/station_profile/edit.php:328 msgid "Ignore Clublog Upload" msgstr "" -#: application/views/station_profile/create.php:193 +#: application/views/station_profile/create.php:212 #: application/views/station_profile/edit.php:333 msgid "" "If enabled, the QSOs made from this location will not be uploaded to " @@ -9022,124 +9142,124 @@ msgid "" "properly configured at Clublog" msgstr "" -#: application/views/station_profile/create.php:196 +#: application/views/station_profile/create.php:215 #: application/views/station_profile/edit.php:336 msgid "ClubLog Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:205 +#: application/views/station_profile/create.php:224 #: application/views/station_profile/edit.php:352 msgid "HRDLog.net Username" msgstr "" -#: application/views/station_profile/create.php:207 +#: application/views/station_profile/create.php:226 #: application/views/station_profile/edit.php:354 msgid "" "The username you are registered with at HRDlog.net (usually your callsign)." msgstr "" -#: application/views/station_profile/create.php:210 +#: application/views/station_profile/create.php:229 #: application/views/station_profile/edit.php:357 msgid "HRDLog.net API Key" msgstr "" -#: application/views/station_profile/create.php:212 +#: application/views/station_profile/create.php:231 #: application/views/station_profile/edit.php:359 #, php-format msgctxt "HRDLog.net Userprofile page" msgid "Create your API Code on your %s" msgstr "" -#: application/views/station_profile/create.php:212 +#: application/views/station_profile/create.php:231 #: application/views/station_profile/edit.php:359 msgid "HRDLog.net Userprofile page" msgstr "" -#: application/views/station_profile/create.php:215 +#: application/views/station_profile/create.php:234 #: application/views/station_profile/edit.php:362 msgid "HRDLog.net Logbook Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:224 +#: application/views/station_profile/create.php:243 #: application/views/station_profile/edit.php:297 msgid "Subscription Required" msgstr "" -#: application/views/station_profile/create.php:229 +#: application/views/station_profile/create.php:248 msgctxt "Probably no translation needed" msgid "QRZ.com Logbook API Key" msgstr "" -#: application/views/station_profile/create.php:232 +#: application/views/station_profile/create.php:251 msgid "Test API-Key" msgstr "" -#: application/views/station_profile/create.php:235 +#: application/views/station_profile/create.php:254 #: application/views/station_profile/edit.php:306 #, php-format msgctxt "the QRZ.com Logbook settings page" msgid "Find your API key on %s" msgstr "" -#: application/views/station_profile/create.php:235 +#: application/views/station_profile/create.php:254 #: application/views/station_profile/edit.php:306 msgid "the QRZ.com Logbook settings page" msgstr "" -#: application/views/station_profile/create.php:238 +#: application/views/station_profile/create.php:257 #: application/views/station_profile/edit.php:310 msgid "QRZ.com Logbook Upload" msgstr "" -#: application/views/station_profile/create.php:241 +#: application/views/station_profile/create.php:260 #: application/views/station_profile/edit.php:313 msgid "Realtime" msgstr "" -#: application/views/station_profile/create.php:249 +#: application/views/station_profile/create.php:268 #: application/views/station_profile/edit.php:378 msgctxt "Probably no translation needed" msgid "QO-100 Dx Club API Key" msgstr "" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:270 #: application/views/station_profile/edit.php:380 #, php-format msgctxt "QO-100 Dx Club's profile page" msgid "Create your API key on your %s" msgstr "" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:270 #: application/views/station_profile/edit.php:380 msgid "QO-100 Dx Club's profile page" msgstr "" -#: application/views/station_profile/create.php:254 +#: application/views/station_profile/create.php:273 #: application/views/station_profile/edit.php:383 msgid "QO-100 Dx Club Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:264 +#: application/views/station_profile/create.php:283 #: application/views/station_profile/edit.php:401 msgid "OQRS Enabled" msgstr "" -#: application/views/station_profile/create.php:271 +#: application/views/station_profile/create.php:290 #: application/views/station_profile/edit.php:408 msgid "OQRS Email alert" msgstr "" -#: application/views/station_profile/create.php:276 +#: application/views/station_profile/create.php:295 #: application/views/station_profile/edit.php:413 msgid "Make sure email is set up under admin and global options." msgstr "" -#: application/views/station_profile/create.php:279 +#: application/views/station_profile/create.php:298 #: application/views/station_profile/edit.php:416 msgid "OQRS Text" msgstr "" -#: application/views/station_profile/create.php:281 +#: application/views/station_profile/create.php:300 #: application/views/station_profile/edit.php:418 msgid "Some info you want to add regarding QSL'ing." msgstr "" @@ -10175,10 +10295,6 @@ msgstr "Dettagli QSO" msgid "QSL Management" msgstr "Gestione QSL" -#: application/views/view_log/qso.php:42 -msgid "eQSL Card" -msgstr "" - #: application/views/view_log/qso.php:128 msgid "Total Distance" msgstr "Distanza Totale" @@ -10250,10 +10366,6 @@ msgstr "" msgid "Details" msgstr "" -#: application/views/view_log/qso.php:604 -msgid "QSL image file" -msgstr "" - #: application/views/view_log/qso.php:630 msgid "Uploaded QSL Card front image" msgstr "Carica immagine fronte cartolina QSL" diff --git a/application/locale/nl_NL/LC_MESSAGES/messages.po b/application/locale/nl_NL/LC_MESSAGES/messages.po index e5f24229e..9d9c8199e 100644 --- a/application/locale/nl_NL/LC_MESSAGES/messages.po +++ b/application/locale/nl_NL/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-01 15:48+0000\n" +"POT-Creation-Date: 2024-08-06 18:03+0000\n" "PO-Revision-Date: 2024-07-25 07:32+0000\n" "Last-Translator: Casper van Lieburg \n" "Language-Team: Dutch here for " +"more information." msgstr "" #: application/views/debug/index.php:48 #, php-format +msgid "Current migration is %s" +msgstr "" + +#: application/views/debug/index.php:49 +#, php-format msgid "Migration should be %s" msgstr "" -#: application/views/debug/index.php:53 +#: application/views/debug/index.php:54 msgid "Environment" msgstr "" -#: application/views/debug/index.php:61 +#: application/views/debug/index.php:62 msgid "Total QSO on this instance" msgstr "" -#: application/views/debug/index.php:69 +#: application/views/debug/index.php:70 msgid "Server Information" msgstr "" -#: application/views/debug/index.php:73 +#: application/views/debug/index.php:74 msgid "Server Software" msgstr "" -#: application/views/debug/index.php:78 +#: application/views/debug/index.php:79 msgid "PHP Version" msgstr "" -#: application/views/debug/index.php:84 +#: application/views/debug/index.php:85 msgid "Deprecated" msgstr "" -#: application/views/debug/index.php:91 +#: application/views/debug/index.php:92 msgid "MySQL Version" msgstr "" -#: application/views/debug/index.php:95 +#: application/views/debug/index.php:96 msgid "Codeigniter Version" msgstr "" -#: application/views/debug/index.php:103 +#: application/views/debug/index.php:104 msgid "Folder Permissions" msgstr "" -#: application/views/debug/index.php:105 +#: application/views/debug/index.php:106 msgid "" "This verifies that the folders used by Wavelog have read and write " "permissions by PHP." msgstr "" -#: application/views/debug/index.php:111 application/views/debug/index.php:122 -#: application/views/debug/index.php:133 application/views/debug/index.php:144 -#: application/views/debug/index.php:156 +#: application/views/debug/index.php:112 application/views/debug/index.php:123 +#: application/views/debug/index.php:134 application/views/debug/index.php:145 +#: application/views/debug/index.php:157 msgid "Success" msgstr "" -#: application/views/debug/index.php:113 application/views/debug/index.php:124 -#: application/views/debug/index.php:135 application/views/debug/index.php:146 -#: application/views/debug/index.php:158 +#: application/views/debug/index.php:114 application/views/debug/index.php:125 +#: application/views/debug/index.php:136 application/views/debug/index.php:147 +#: application/views/debug/index.php:159 msgid "Failed" msgstr "" -#: application/views/debug/index.php:168 +#: application/views/debug/index.php:169 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:174 +#: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" -#: application/views/debug/index.php:176 application/views/debug/index.php:193 +#: application/views/debug/index.php:177 application/views/debug/index.php:194 #, php-format msgid "Please edit your %s File:" msgstr "" -#: application/views/debug/index.php:177 +#: application/views/debug/index.php:178 msgid "" "Go to your application/config Folder and compare config.sample.php with your " "config.php" msgstr "" -#: application/views/debug/index.php:178 +#: application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:184 +#: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" msgstr "" -#: application/views/debug/index.php:184 application/views/debug/index.php:201 +#: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" msgstr "" -#: application/views/debug/index.php:191 +#: application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "" -#: application/views/debug/index.php:194 +#: application/views/debug/index.php:195 msgid "This will also enable the 'Keep me logged in' feature." msgstr "" -#: application/views/debug/index.php:195 +#: application/views/debug/index.php:196 #, php-format msgid "" "Change the value of %s to a new encryption key other then " "'flossie1234555541'. Choose a safe and long password. (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:201 +#: application/views/debug/index.php:202 msgid "You do not use the default encryption key" msgstr "" -#: application/views/debug/index.php:208 +#: application/views/debug/index.php:209 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:210 +#: application/views/debug/index.php:211 msgid "" "Here you can migrate existing QSL cards and eQSL cards to the new userdata " "folder." msgstr "" -#: application/views/debug/index.php:223 +#: application/views/debug/index.php:224 msgid "Modules" msgstr "" -#: application/views/debug/index.php:229 application/views/debug/index.php:240 -#: application/views/debug/index.php:251 application/views/debug/index.php:262 -#: application/views/debug/index.php:273 +#: application/views/debug/index.php:230 application/views/debug/index.php:241 +#: application/views/debug/index.php:252 application/views/debug/index.php:263 +#: application/views/debug/index.php:274 msgid "Installed" msgstr "" -#: application/views/debug/index.php:231 application/views/debug/index.php:242 -#: application/views/debug/index.php:253 application/views/debug/index.php:264 -#: application/views/debug/index.php:275 +#: application/views/debug/index.php:232 application/views/debug/index.php:243 +#: application/views/debug/index.php:254 application/views/debug/index.php:265 +#: application/views/debug/index.php:276 msgid "Not Installed" msgstr "" -#: application/views/debug/index.php:282 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:654 msgid "Settings" msgstr "" -#: application/views/debug/index.php:411 +#: application/views/debug/index.php:412 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:415 +#: application/views/debug/index.php:416 msgid "Branch" msgstr "" -#: application/views/debug/index.php:426 application/views/debug/index.php:437 -#: application/views/debug/index.php:447 +#: application/views/debug/index.php:427 application/views/debug/index.php:438 +#: application/views/debug/index.php:448 msgid "n/a" msgstr "" -#: application/views/debug/index.php:432 +#: application/views/debug/index.php:433 msgid "Commit" msgstr "" -#: application/views/debug/index.php:442 +#: application/views/debug/index.php:443 msgid "Tag" msgstr "" -#: application/views/debug/index.php:452 +#: application/views/debug/index.php:453 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:464 +#: application/views/debug/index.php:465 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:466 msgid "Update now" msgstr "" -#: application/views/debug/index.php:483 +#: application/views/debug/index.php:484 msgid "File download date" msgstr "" -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:488 msgid "File" msgstr "" -#: application/views/debug/index.php:488 +#: application/views/debug/index.php:489 msgid "Last update" msgstr "" -#: application/views/debug/index.php:492 +#: application/views/debug/index.php:493 msgid "DXCC update from Club Log" msgstr "" -#: application/views/debug/index.php:494 application/views/debug/index.php:500 -#: application/views/debug/index.php:505 application/views/debug/index.php:510 -#: application/views/debug/index.php:515 application/views/debug/index.php:520 -#: application/views/debug/index.php:525 +#: application/views/debug/index.php:495 application/views/debug/index.php:501 +#: application/views/debug/index.php:506 application/views/debug/index.php:511 +#: application/views/debug/index.php:516 application/views/debug/index.php:521 +#: application/views/debug/index.php:526 #: application/views/station_profile/edit.php:22 msgid "Update" msgstr "" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:499 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:503 +#: application/views/debug/index.php:504 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:508 +#: application/views/debug/index.php:509 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:513 +#: application/views/debug/index.php:514 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:518 +#: application/views/debug/index.php:519 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:523 +#: application/views/debug/index.php:524 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:532 +#: application/views/debug/index.php:533 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:537 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -5498,9 +5518,9 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:549 +#: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:38 +#: application/views/station_profile/create.php:57 #: application/views/station_profile/edit.php:46 #: application/views/station_profile/index.php:42 #: application/views/stationsetup/linkedlocations.php:32 @@ -5508,88 +5528,88 @@ msgstr[1] "" msgid "Station Callsign" msgstr "" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:582 +#: application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:583 application/views/debug/index.php:594 +#: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:628 +#: application/views/debug/index.php:629 msgid "Bulgarian" msgstr "" -#: application/views/debug/index.php:629 +#: application/views/debug/index.php:630 msgid "Chinese (Simplified)" msgstr "" -#: application/views/debug/index.php:630 +#: application/views/debug/index.php:631 msgid "Czech" msgstr "" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:632 msgid "Dutch" msgstr "" -#: application/views/debug/index.php:632 +#: application/views/debug/index.php:633 msgid "English" msgstr "" -#: application/views/debug/index.php:633 +#: application/views/debug/index.php:634 msgid "Finnish" msgstr "" -#: application/views/debug/index.php:634 +#: application/views/debug/index.php:635 msgid "French" msgstr "" -#: application/views/debug/index.php:635 +#: application/views/debug/index.php:636 msgid "German" msgstr "" -#: application/views/debug/index.php:636 +#: application/views/debug/index.php:637 msgid "Greek" msgstr "" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:638 msgid "Italian" msgstr "" -#: application/views/debug/index.php:638 +#: application/views/debug/index.php:639 msgid "Polish" msgstr "" -#: application/views/debug/index.php:639 +#: application/views/debug/index.php:640 msgid "Portuguese" msgstr "" -#: application/views/debug/index.php:640 +#: application/views/debug/index.php:641 msgid "Russian" msgstr "" -#: application/views/debug/index.php:641 +#: application/views/debug/index.php:642 msgid "Spanish" msgstr "" -#: application/views/debug/index.php:642 +#: application/views/debug/index.php:643 msgid "Swedish" msgstr "" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:644 msgid "Turkish" msgstr "" @@ -5808,6 +5828,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:60 +#: application/views/interface_assets/footer.php:2342 +#: application/views/interface_assets/footer.php:2360 +#: application/views/interface_assets/footer.php:2381 +#: application/views/interface_assets/footer.php:2399 #: application/views/qslcard/index.php:66 #: application/views/view_log/qso.php:614 msgid "View" @@ -5968,6 +5992,69 @@ msgstr "" msgid "Version Info" msgstr "" +#: application/views/interface_assets/footer.php:392 +msgid "Description:" +msgstr "" + +#: application/views/interface_assets/footer.php:395 +msgid "Query description" +msgstr "" + +#: application/views/interface_assets/footer.php:411 +msgid "Your query has been saved!" +msgstr "" + +#: application/views/interface_assets/footer.php:413 +#: application/views/search/filter.php:46 +msgid "Edit queries" +msgstr "" + +#: application/views/interface_assets/footer.php:415 +msgid "Stored queries:" +msgstr "" + +#: application/views/interface_assets/footer.php:420 +#: application/views/search/filter.php:60 +msgid "Run Query" +msgstr "" + +#: application/views/interface_assets/footer.php:432 +#: application/views/interface_assets/footer.php:561 +#: application/views/interface_assets/footer.php:625 +msgid "Stored Queries" +msgstr "" + +#: application/views/interface_assets/footer.php:437 +#: application/views/interface_assets/footer.php:630 +msgid "You need to make a query before you search!" +msgstr "" + +#: application/views/interface_assets/footer.php:458 +#: application/views/interface_assets/footer.php:589 +#: application/views/search/filter.php:79 +msgid "Export to ADIF" +msgstr "" + +#: application/views/interface_assets/footer.php:496 +msgid "Warning! Are you sure you want delete this stored query?" +msgstr "" + +#: application/views/interface_assets/footer.php:510 +msgid "The stored query has been deleted!" +msgstr "" + +#: application/views/interface_assets/footer.php:519 +msgid "The stored query could not be deleted. Please try again!" +msgstr "" + +#: application/views/interface_assets/footer.php:545 +msgid "The query description has been updated!" +msgstr "" + +#: application/views/interface_assets/footer.php:549 +msgid "Something went wrong with the save. Please try again!" +msgstr "" + #: application/views/interface_assets/footer.php:672 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " @@ -5975,20 +6062,65 @@ msgid "" "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:1374 -#: application/views/interface_assets/footer.php:1378 -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1518 -#: application/views/interface_assets/footer.php:1522 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1174 +#, php-format +msgid "You're not logged it. Please login" +msgstr "" + +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1384 +#: application/views/interface_assets/footer.php:1387 +#: application/views/interface_assets/footer.php:1524 +#: application/views/interface_assets/footer.php:1528 +#: application/views/interface_assets/footer.php:1531 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1387 +#: application/views/interface_assets/footer.php:1531 msgid "Total count" msgstr "" +#: application/views/interface_assets/footer.php:2118 +msgid "QSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2138 +msgid "Warning! Are you sure you want to delete this QSL card?" +msgstr "" + +#: application/views/interface_assets/footer.php:2178 +#: application/views/view_log/qso.php:42 +msgid "eQSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2180 +msgid "eQSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2353 +#: application/views/interface_assets/footer.php:2392 +#: application/views/view_log/qso.php:604 +msgid "QSL image file" +msgstr "" + +#: application/views/interface_assets/footer.php:2372 +msgid "Front QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2410 +msgid "Back QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2421 +#: application/views/interface_assets/footer.php:2446 +msgid "Add additional QSOs to a QSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2457 +msgid "Something went wrong. Please try again!" +msgstr "" + #: application/views/interface_assets/header.php:86 msgid "Developer Mode" msgstr "" @@ -6536,12 +6668,12 @@ msgstr "" #: application/views/qso/edit_ajax.php:495 #: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:190 -#: application/views/station_profile/create.php:198 +#: application/views/station_profile/create.php:209 #: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:256 -#: application/views/station_profile/create.php:267 -#: application/views/station_profile/create.php:274 +#: application/views/station_profile/create.php:236 +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/create.php:286 +#: application/views/station_profile/create.php:293 #: application/views/station_profile/edit.php:330 #: application/views/station_profile/edit.php:338 #: application/views/station_profile/edit.php:364 @@ -6574,12 +6706,12 @@ msgstr "" #: application/views/qso/edit_ajax.php:494 #: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/create.php:199 +#: application/views/station_profile/create.php:210 #: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/create.php:266 -#: application/views/station_profile/create.php:273 +#: application/views/station_profile/create.php:237 +#: application/views/station_profile/create.php:276 +#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:292 #: application/views/station_profile/edit.php:331 #: application/views/station_profile/edit.php:339 #: application/views/station_profile/edit.php:365 @@ -8178,7 +8310,7 @@ msgid "Search DXCluster for latest Spot" msgstr "" #: application/views/qso/index.php:196 application/views/qso/index.php:439 -#: application/views/station_profile/create.php:130 +#: application/views/station_profile/create.php:149 #: application/views/station_profile/edit.php:191 #: application/views/user/edit.php:583 application/views/view_log/qso.php:282 #: application/views/view_log/qso.php:549 @@ -8186,7 +8318,7 @@ msgid "IOTA Reference" msgstr "IOTA Referentie" #: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:146 +#: application/views/station_profile/create.php:165 #: application/views/station_profile/edit.php:219 #: application/views/user/edit.php:587 application/views/view_log/qso.php:289 #: application/views/view_log/qso.php:556 @@ -8446,26 +8578,14 @@ msgstr "" msgid "Save query" msgstr "" -#: application/views/search/filter.php:46 -msgid "Edit queries" -msgstr "" - #: application/views/search/filter.php:50 msgid "Stored queries" msgstr "" -#: application/views/search/filter.php:60 -msgid "Run Query" -msgstr "" - #: application/views/search/filter.php:69 msgid "search filter functions" msgstr "" -#: application/views/search/filter.php:79 -msgid "Export to ADIF" -msgstr "" - #: application/views/search/filter.php:79 msgid "Search Results" msgstr "" @@ -8783,115 +8903,115 @@ msgid "" "of our Wiki." msgstr "" -#: application/views/station_profile/create.php:32 +#: application/views/station_profile/create.php:51 #: application/views/station_profile/edit.php:40 msgid "Location Name" msgstr "" -#: application/views/station_profile/create.php:33 -#: application/views/station_profile/create.php:34 +#: application/views/station_profile/create.php:52 +#: application/views/station_profile/create.php:53 #: application/views/station_profile/edit.php:42 msgctxt "Station Location Setup" msgid "Home QTH" msgstr "" -#: application/views/station_profile/create.php:34 +#: application/views/station_profile/create.php:53 #: application/views/station_profile/edit.php:42 #, php-format msgid "Shortname for the station location. For example: %s" msgstr "" -#: application/views/station_profile/create.php:40 +#: application/views/station_profile/create.php:59 #: application/views/station_profile/edit.php:48 msgid "Station callsign. For example: 4W7EST/P" msgstr "" -#: application/views/station_profile/create.php:44 +#: application/views/station_profile/create.php:63 #: application/views/station_profile/edit.php:52 msgid "Station Power (W)" msgstr "" -#: application/views/station_profile/create.php:46 +#: application/views/station_profile/create.php:65 #: application/views/station_profile/edit.php:54 msgid "Default station power in Watt. Overwritten by CAT." msgstr "" -#: application/views/station_profile/create.php:49 +#: application/views/station_profile/create.php:68 #: application/views/station_profile/edit.php:69 msgid "Station DXCC" msgstr "" -#: application/views/station_profile/create.php:52 +#: application/views/station_profile/create.php:71 #: application/views/station_profile/edit.php:72 msgctxt "DXCC selection" msgid "None" msgstr "" -#: application/views/station_profile/create.php:59 +#: application/views/station_profile/create.php:78 #: application/views/station_profile/edit.php:85 msgid "Station DXCC entity. For example: Bolivia" msgstr "" -#: application/views/station_profile/create.php:64 +#: application/views/station_profile/create.php:83 #: application/views/station_profile/edit.php:91 msgid "Station City" msgstr "" -#: application/views/station_profile/create.php:66 +#: application/views/station_profile/create.php:85 #: application/views/station_profile/edit.php:93 msgid "Station city. For example: Oslo" msgstr "" -#: application/views/station_profile/create.php:75 +#: application/views/station_profile/create.php:94 #: application/views/station_profile/edit.php:105 msgid "Station state. Applies to certain countries only." msgstr "" -#: application/views/station_profile/create.php:80 +#: application/views/station_profile/create.php:99 #: application/views/station_profile/edit.php:110 msgid "Station County" msgstr "" -#: application/views/station_profile/create.php:82 +#: application/views/station_profile/create.php:101 #: application/views/station_profile/edit.php:112 msgid "Station County (Only used for USA/Alaska/Hawaii)." msgstr "" -#: application/views/station_profile/create.php:97 +#: application/views/station_profile/create.php:116 #: application/views/station_profile/edit.php:138 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your CQ Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:97 -#: application/views/station_profile/create.php:111 -#: application/views/station_profile/create.php:125 +#: application/views/station_profile/create.php:116 +#: application/views/station_profile/create.php:130 +#: application/views/station_profile/create.php:144 #: application/views/station_profile/edit.php:138 #: application/views/station_profile/edit.php:155 #: application/views/station_profile/edit.php:179 msgid "click here" msgstr "" -#: application/views/station_profile/create.php:111 +#: application/views/station_profile/create.php:130 #: application/views/station_profile/edit.php:155 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your ITU Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:116 +#: application/views/station_profile/create.php:135 #: application/views/station_profile/edit.php:167 #: application/views/station_profile/edit.php:170 msgid "Station Gridsquare" msgstr "" -#: application/views/station_profile/create.php:121 +#: application/views/station_profile/create.php:140 #: application/views/station_profile/edit.php:175 msgid "Get Gridsquare" msgstr "" -#: application/views/station_profile/create.php:125 +#: application/views/station_profile/create.php:144 #: application/views/station_profile/edit.php:179 #, php-format msgctxt "uses 'click here'" @@ -8900,57 +9020,57 @@ msgid "" "then %s!" msgstr "" -#: application/views/station_profile/create.php:126 +#: application/views/station_profile/create.php:145 #: application/views/station_profile/edit.php:180 msgid "" "If you are located on a grid line, enter multiple grid squares separated " "with commas. For example: IO77,IO78,IO87,IO88." msgstr "" -#: application/views/station_profile/create.php:141 +#: application/views/station_profile/create.php:160 #: application/views/station_profile/edit.php:205 msgid "Station IOTA reference. For example: EU-005" msgstr "" -#: application/views/station_profile/create.php:142 +#: application/views/station_profile/create.php:161 #: application/views/station_profile/edit.php:206 msgid "IOTA World website" msgstr "" -#: application/views/station_profile/create.php:142 +#: application/views/station_profile/create.php:161 #: application/views/station_profile/edit.php:206 #, php-format msgid "You can look up IOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:148 +#: application/views/station_profile/create.php:167 #: application/views/station_profile/edit.php:221 msgid "SOTA Maps website" msgstr "" -#: application/views/station_profile/create.php:148 +#: application/views/station_profile/create.php:167 #: application/views/station_profile/edit.php:221 #, php-format msgid "Station SOTA reference. You can look up SOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:154 +#: application/views/station_profile/create.php:173 #: application/views/station_profile/edit.php:234 msgid "GMA Map website" msgstr "" -#: application/views/station_profile/create.php:154 +#: application/views/station_profile/create.php:173 #: application/views/station_profile/edit.php:234 #, php-format msgid "Station WWFF reference. You can look up WWFF references at the %s." msgstr "" -#: application/views/station_profile/create.php:160 +#: application/views/station_profile/create.php:179 #: application/views/station_profile/edit.php:247 msgid "POTA Map website" msgstr "" -#: application/views/station_profile/create.php:160 +#: application/views/station_profile/create.php:179 #: application/views/station_profile/edit.php:247 #, php-format msgid "" @@ -8958,55 +9078,55 @@ msgid "" "look up POTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:164 +#: application/views/station_profile/create.php:183 #: application/views/station_profile/edit.php:260 msgid "Signature Name" msgstr "" -#: application/views/station_profile/create.php:166 +#: application/views/station_profile/create.php:185 #: application/views/station_profile/edit.php:262 msgid "Station Signature (e.g. GMA).." msgstr "" -#: application/views/station_profile/create.php:170 +#: application/views/station_profile/create.php:189 #: application/views/station_profile/edit.php:266 msgid "Signature Information" msgstr "" -#: application/views/station_profile/create.php:172 +#: application/views/station_profile/create.php:191 #: application/views/station_profile/edit.php:268 msgid "Station Signature Info (e.g. DA/NW-357)." msgstr "" -#: application/views/station_profile/create.php:176 +#: application/views/station_profile/create.php:195 #: application/views/station_profile/edit.php:281 msgctxt "Probably no translation needed" msgid "eQSL QTH Nickname" msgstr "" -#: application/views/station_profile/create.php:178 +#: application/views/station_profile/create.php:197 #: application/views/station_profile/edit.php:283 msgid "The QTH Nickname which is configured in your eQSL Profile" msgstr "" -#: application/views/station_profile/create.php:182 +#: application/views/station_profile/create.php:201 #: application/views/station_profile/edit.php:286 msgid "Default QSLMSG" msgstr "" -#: application/views/station_profile/create.php:185 +#: application/views/station_profile/create.php:204 #: application/views/station_profile/edit.php:289 msgid "" "Define a default message that will be populated and sent for each QSO for " "this station location." msgstr "" -#: application/views/station_profile/create.php:188 +#: application/views/station_profile/create.php:207 #: application/views/station_profile/edit.php:328 msgid "Ignore Clublog Upload" msgstr "" -#: application/views/station_profile/create.php:193 +#: application/views/station_profile/create.php:212 #: application/views/station_profile/edit.php:333 msgid "" "If enabled, the QSOs made from this location will not be uploaded to " @@ -9014,124 +9134,124 @@ msgid "" "properly configured at Clublog" msgstr "" -#: application/views/station_profile/create.php:196 +#: application/views/station_profile/create.php:215 #: application/views/station_profile/edit.php:336 msgid "ClubLog Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:205 +#: application/views/station_profile/create.php:224 #: application/views/station_profile/edit.php:352 msgid "HRDLog.net Username" msgstr "" -#: application/views/station_profile/create.php:207 +#: application/views/station_profile/create.php:226 #: application/views/station_profile/edit.php:354 msgid "" "The username you are registered with at HRDlog.net (usually your callsign)." msgstr "" -#: application/views/station_profile/create.php:210 +#: application/views/station_profile/create.php:229 #: application/views/station_profile/edit.php:357 msgid "HRDLog.net API Key" msgstr "" -#: application/views/station_profile/create.php:212 +#: application/views/station_profile/create.php:231 #: application/views/station_profile/edit.php:359 #, php-format msgctxt "HRDLog.net Userprofile page" msgid "Create your API Code on your %s" msgstr "" -#: application/views/station_profile/create.php:212 +#: application/views/station_profile/create.php:231 #: application/views/station_profile/edit.php:359 msgid "HRDLog.net Userprofile page" msgstr "" -#: application/views/station_profile/create.php:215 +#: application/views/station_profile/create.php:234 #: application/views/station_profile/edit.php:362 msgid "HRDLog.net Logbook Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:224 +#: application/views/station_profile/create.php:243 #: application/views/station_profile/edit.php:297 msgid "Subscription Required" msgstr "" -#: application/views/station_profile/create.php:229 +#: application/views/station_profile/create.php:248 msgctxt "Probably no translation needed" msgid "QRZ.com Logbook API Key" msgstr "" -#: application/views/station_profile/create.php:232 +#: application/views/station_profile/create.php:251 msgid "Test API-Key" msgstr "" -#: application/views/station_profile/create.php:235 +#: application/views/station_profile/create.php:254 #: application/views/station_profile/edit.php:306 #, php-format msgctxt "the QRZ.com Logbook settings page" msgid "Find your API key on %s" msgstr "" -#: application/views/station_profile/create.php:235 +#: application/views/station_profile/create.php:254 #: application/views/station_profile/edit.php:306 msgid "the QRZ.com Logbook settings page" msgstr "" -#: application/views/station_profile/create.php:238 +#: application/views/station_profile/create.php:257 #: application/views/station_profile/edit.php:310 msgid "QRZ.com Logbook Upload" msgstr "" -#: application/views/station_profile/create.php:241 +#: application/views/station_profile/create.php:260 #: application/views/station_profile/edit.php:313 msgid "Realtime" msgstr "" -#: application/views/station_profile/create.php:249 +#: application/views/station_profile/create.php:268 #: application/views/station_profile/edit.php:378 msgctxt "Probably no translation needed" msgid "QO-100 Dx Club API Key" msgstr "" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:270 #: application/views/station_profile/edit.php:380 #, php-format msgctxt "QO-100 Dx Club's profile page" msgid "Create your API key on your %s" msgstr "" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:270 #: application/views/station_profile/edit.php:380 msgid "QO-100 Dx Club's profile page" msgstr "" -#: application/views/station_profile/create.php:254 +#: application/views/station_profile/create.php:273 #: application/views/station_profile/edit.php:383 msgid "QO-100 Dx Club Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:264 +#: application/views/station_profile/create.php:283 #: application/views/station_profile/edit.php:401 msgid "OQRS Enabled" msgstr "" -#: application/views/station_profile/create.php:271 +#: application/views/station_profile/create.php:290 #: application/views/station_profile/edit.php:408 msgid "OQRS Email alert" msgstr "" -#: application/views/station_profile/create.php:276 +#: application/views/station_profile/create.php:295 #: application/views/station_profile/edit.php:413 msgid "Make sure email is set up under admin and global options." msgstr "" -#: application/views/station_profile/create.php:279 +#: application/views/station_profile/create.php:298 #: application/views/station_profile/edit.php:416 msgid "OQRS Text" msgstr "" -#: application/views/station_profile/create.php:281 +#: application/views/station_profile/create.php:300 #: application/views/station_profile/edit.php:418 msgid "Some info you want to add regarding QSL'ing." msgstr "" @@ -10167,10 +10287,6 @@ msgstr "" msgid "QSL Management" msgstr "" -#: application/views/view_log/qso.php:42 -msgid "eQSL Card" -msgstr "" - #: application/views/view_log/qso.php:128 msgid "Total Distance" msgstr "" @@ -10242,10 +10358,6 @@ msgstr "" msgid "Details" msgstr "" -#: application/views/view_log/qso.php:604 -msgid "QSL image file" -msgstr "" - #: application/views/view_log/qso.php:630 msgid "Uploaded QSL Card front image" msgstr "" diff --git a/application/locale/pl_PL/LC_MESSAGES/messages.po b/application/locale/pl_PL/LC_MESSAGES/messages.po index f5e4b48dc..5a9ae0ee4 100644 --- a/application/locale/pl_PL/LC_MESSAGES/messages.po +++ b/application/locale/pl_PL/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-01 15:48+0000\n" +"POT-Creation-Date: 2024-08-06 18:03+0000\n" "PO-Revision-Date: 2024-07-09 13:26+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Polish here for " +"more information." msgstr "" #: application/views/debug/index.php:48 #, php-format +msgid "Current migration is %s" +msgstr "" + +#: application/views/debug/index.php:49 +#, php-format msgid "Migration should be %s" msgstr "" -#: application/views/debug/index.php:53 +#: application/views/debug/index.php:54 msgid "Environment" msgstr "" -#: application/views/debug/index.php:61 +#: application/views/debug/index.php:62 msgid "Total QSO on this instance" msgstr "" -#: application/views/debug/index.php:69 +#: application/views/debug/index.php:70 msgid "Server Information" msgstr "" -#: application/views/debug/index.php:73 +#: application/views/debug/index.php:74 msgid "Server Software" msgstr "" -#: application/views/debug/index.php:78 +#: application/views/debug/index.php:79 msgid "PHP Version" msgstr "" -#: application/views/debug/index.php:84 +#: application/views/debug/index.php:85 msgid "Deprecated" msgstr "" -#: application/views/debug/index.php:91 +#: application/views/debug/index.php:92 msgid "MySQL Version" msgstr "" -#: application/views/debug/index.php:95 +#: application/views/debug/index.php:96 msgid "Codeigniter Version" msgstr "" -#: application/views/debug/index.php:103 +#: application/views/debug/index.php:104 msgid "Folder Permissions" msgstr "" -#: application/views/debug/index.php:105 +#: application/views/debug/index.php:106 msgid "" "This verifies that the folders used by Wavelog have read and write " "permissions by PHP." msgstr "" -#: application/views/debug/index.php:111 application/views/debug/index.php:122 -#: application/views/debug/index.php:133 application/views/debug/index.php:144 -#: application/views/debug/index.php:156 +#: application/views/debug/index.php:112 application/views/debug/index.php:123 +#: application/views/debug/index.php:134 application/views/debug/index.php:145 +#: application/views/debug/index.php:157 msgid "Success" msgstr "" -#: application/views/debug/index.php:113 application/views/debug/index.php:124 -#: application/views/debug/index.php:135 application/views/debug/index.php:146 -#: application/views/debug/index.php:158 +#: application/views/debug/index.php:114 application/views/debug/index.php:125 +#: application/views/debug/index.php:136 application/views/debug/index.php:147 +#: application/views/debug/index.php:159 msgid "Failed" msgstr "" -#: application/views/debug/index.php:168 +#: application/views/debug/index.php:169 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:174 +#: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" -#: application/views/debug/index.php:176 application/views/debug/index.php:193 +#: application/views/debug/index.php:177 application/views/debug/index.php:194 #, php-format msgid "Please edit your %s File:" msgstr "" -#: application/views/debug/index.php:177 +#: application/views/debug/index.php:178 msgid "" "Go to your application/config Folder and compare config.sample.php with your " "config.php" msgstr "" -#: application/views/debug/index.php:178 +#: application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:184 +#: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" msgstr "" -#: application/views/debug/index.php:184 application/views/debug/index.php:201 +#: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" msgstr "" -#: application/views/debug/index.php:191 +#: application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "" -#: application/views/debug/index.php:194 +#: application/views/debug/index.php:195 msgid "This will also enable the 'Keep me logged in' feature." msgstr "" -#: application/views/debug/index.php:195 +#: application/views/debug/index.php:196 #, php-format msgid "" "Change the value of %s to a new encryption key other then " "'flossie1234555541'. Choose a safe and long password. (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:201 +#: application/views/debug/index.php:202 msgid "You do not use the default encryption key" msgstr "" -#: application/views/debug/index.php:208 +#: application/views/debug/index.php:209 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:210 +#: application/views/debug/index.php:211 msgid "" "Here you can migrate existing QSL cards and eQSL cards to the new userdata " "folder." msgstr "" -#: application/views/debug/index.php:223 +#: application/views/debug/index.php:224 msgid "Modules" msgstr "" -#: application/views/debug/index.php:229 application/views/debug/index.php:240 -#: application/views/debug/index.php:251 application/views/debug/index.php:262 -#: application/views/debug/index.php:273 +#: application/views/debug/index.php:230 application/views/debug/index.php:241 +#: application/views/debug/index.php:252 application/views/debug/index.php:263 +#: application/views/debug/index.php:274 msgid "Installed" msgstr "" -#: application/views/debug/index.php:231 application/views/debug/index.php:242 -#: application/views/debug/index.php:253 application/views/debug/index.php:264 -#: application/views/debug/index.php:275 +#: application/views/debug/index.php:232 application/views/debug/index.php:243 +#: application/views/debug/index.php:254 application/views/debug/index.php:265 +#: application/views/debug/index.php:276 msgid "Not Installed" msgstr "" -#: application/views/debug/index.php:282 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:654 msgid "Settings" msgstr "" -#: application/views/debug/index.php:411 +#: application/views/debug/index.php:412 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:415 +#: application/views/debug/index.php:416 msgid "Branch" msgstr "" -#: application/views/debug/index.php:426 application/views/debug/index.php:437 -#: application/views/debug/index.php:447 +#: application/views/debug/index.php:427 application/views/debug/index.php:438 +#: application/views/debug/index.php:448 msgid "n/a" msgstr "" -#: application/views/debug/index.php:432 +#: application/views/debug/index.php:433 msgid "Commit" msgstr "" -#: application/views/debug/index.php:442 +#: application/views/debug/index.php:443 msgid "Tag" msgstr "" -#: application/views/debug/index.php:452 +#: application/views/debug/index.php:453 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:464 +#: application/views/debug/index.php:465 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:466 msgid "Update now" msgstr "" -#: application/views/debug/index.php:483 +#: application/views/debug/index.php:484 msgid "File download date" msgstr "" -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:488 msgid "File" msgstr "" -#: application/views/debug/index.php:488 +#: application/views/debug/index.php:489 msgid "Last update" msgstr "" -#: application/views/debug/index.php:492 +#: application/views/debug/index.php:493 msgid "DXCC update from Club Log" msgstr "" -#: application/views/debug/index.php:494 application/views/debug/index.php:500 -#: application/views/debug/index.php:505 application/views/debug/index.php:510 -#: application/views/debug/index.php:515 application/views/debug/index.php:520 -#: application/views/debug/index.php:525 +#: application/views/debug/index.php:495 application/views/debug/index.php:501 +#: application/views/debug/index.php:506 application/views/debug/index.php:511 +#: application/views/debug/index.php:516 application/views/debug/index.php:521 +#: application/views/debug/index.php:526 #: application/views/station_profile/edit.php:22 msgid "Update" msgstr "" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:499 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:503 +#: application/views/debug/index.php:504 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:508 +#: application/views/debug/index.php:509 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:513 +#: application/views/debug/index.php:514 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:518 +#: application/views/debug/index.php:519 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:523 +#: application/views/debug/index.php:524 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:532 +#: application/views/debug/index.php:533 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:537 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -5501,9 +5521,9 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: application/views/debug/index.php:549 +#: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:38 +#: application/views/station_profile/create.php:57 #: application/views/station_profile/edit.php:46 #: application/views/station_profile/index.php:42 #: application/views/stationsetup/linkedlocations.php:32 @@ -5511,88 +5531,88 @@ msgstr[2] "" msgid "Station Callsign" msgstr "" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:582 +#: application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:583 application/views/debug/index.php:594 +#: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:628 +#: application/views/debug/index.php:629 msgid "Bulgarian" msgstr "" -#: application/views/debug/index.php:629 +#: application/views/debug/index.php:630 msgid "Chinese (Simplified)" msgstr "" -#: application/views/debug/index.php:630 +#: application/views/debug/index.php:631 msgid "Czech" msgstr "" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:632 msgid "Dutch" msgstr "" -#: application/views/debug/index.php:632 +#: application/views/debug/index.php:633 msgid "English" msgstr "" -#: application/views/debug/index.php:633 +#: application/views/debug/index.php:634 msgid "Finnish" msgstr "" -#: application/views/debug/index.php:634 +#: application/views/debug/index.php:635 msgid "French" msgstr "" -#: application/views/debug/index.php:635 +#: application/views/debug/index.php:636 msgid "German" msgstr "" -#: application/views/debug/index.php:636 +#: application/views/debug/index.php:637 msgid "Greek" msgstr "" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:638 msgid "Italian" msgstr "" -#: application/views/debug/index.php:638 +#: application/views/debug/index.php:639 msgid "Polish" msgstr "" -#: application/views/debug/index.php:639 +#: application/views/debug/index.php:640 msgid "Portuguese" msgstr "" -#: application/views/debug/index.php:640 +#: application/views/debug/index.php:641 msgid "Russian" msgstr "" -#: application/views/debug/index.php:641 +#: application/views/debug/index.php:642 msgid "Spanish" msgstr "" -#: application/views/debug/index.php:642 +#: application/views/debug/index.php:643 msgid "Swedish" msgstr "" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:644 msgid "Turkish" msgstr "" @@ -5811,6 +5831,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:60 +#: application/views/interface_assets/footer.php:2342 +#: application/views/interface_assets/footer.php:2360 +#: application/views/interface_assets/footer.php:2381 +#: application/views/interface_assets/footer.php:2399 #: application/views/qslcard/index.php:66 #: application/views/view_log/qso.php:614 msgid "View" @@ -5971,6 +5995,69 @@ msgstr "" msgid "Version Info" msgstr "" +#: application/views/interface_assets/footer.php:392 +msgid "Description:" +msgstr "" + +#: application/views/interface_assets/footer.php:395 +msgid "Query description" +msgstr "" + +#: application/views/interface_assets/footer.php:411 +msgid "Your query has been saved!" +msgstr "" + +#: application/views/interface_assets/footer.php:413 +#: application/views/search/filter.php:46 +msgid "Edit queries" +msgstr "" + +#: application/views/interface_assets/footer.php:415 +msgid "Stored queries:" +msgstr "" + +#: application/views/interface_assets/footer.php:420 +#: application/views/search/filter.php:60 +msgid "Run Query" +msgstr "" + +#: application/views/interface_assets/footer.php:432 +#: application/views/interface_assets/footer.php:561 +#: application/views/interface_assets/footer.php:625 +msgid "Stored Queries" +msgstr "" + +#: application/views/interface_assets/footer.php:437 +#: application/views/interface_assets/footer.php:630 +msgid "You need to make a query before you search!" +msgstr "" + +#: application/views/interface_assets/footer.php:458 +#: application/views/interface_assets/footer.php:589 +#: application/views/search/filter.php:79 +msgid "Export to ADIF" +msgstr "" + +#: application/views/interface_assets/footer.php:496 +msgid "Warning! Are you sure you want delete this stored query?" +msgstr "" + +#: application/views/interface_assets/footer.php:510 +msgid "The stored query has been deleted!" +msgstr "" + +#: application/views/interface_assets/footer.php:519 +msgid "The stored query could not be deleted. Please try again!" +msgstr "" + +#: application/views/interface_assets/footer.php:545 +msgid "The query description has been updated!" +msgstr "" + +#: application/views/interface_assets/footer.php:549 +msgid "Something went wrong with the save. Please try again!" +msgstr "" + #: application/views/interface_assets/footer.php:672 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " @@ -5978,20 +6065,65 @@ msgid "" "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:1374 -#: application/views/interface_assets/footer.php:1378 -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1518 -#: application/views/interface_assets/footer.php:1522 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1174 +#, php-format +msgid "You're not logged it. Please login" +msgstr "" + +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1384 +#: application/views/interface_assets/footer.php:1387 +#: application/views/interface_assets/footer.php:1524 +#: application/views/interface_assets/footer.php:1528 +#: application/views/interface_assets/footer.php:1531 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1387 +#: application/views/interface_assets/footer.php:1531 msgid "Total count" msgstr "" +#: application/views/interface_assets/footer.php:2118 +msgid "QSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2138 +msgid "Warning! Are you sure you want to delete this QSL card?" +msgstr "" + +#: application/views/interface_assets/footer.php:2178 +#: application/views/view_log/qso.php:42 +msgid "eQSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2180 +msgid "eQSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2353 +#: application/views/interface_assets/footer.php:2392 +#: application/views/view_log/qso.php:604 +msgid "QSL image file" +msgstr "" + +#: application/views/interface_assets/footer.php:2372 +msgid "Front QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2410 +msgid "Back QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2421 +#: application/views/interface_assets/footer.php:2446 +msgid "Add additional QSOs to a QSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2457 +msgid "Something went wrong. Please try again!" +msgstr "" + #: application/views/interface_assets/header.php:86 msgid "Developer Mode" msgstr "" @@ -6539,12 +6671,12 @@ msgstr "" #: application/views/qso/edit_ajax.php:495 #: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:190 -#: application/views/station_profile/create.php:198 +#: application/views/station_profile/create.php:209 #: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:256 -#: application/views/station_profile/create.php:267 -#: application/views/station_profile/create.php:274 +#: application/views/station_profile/create.php:236 +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/create.php:286 +#: application/views/station_profile/create.php:293 #: application/views/station_profile/edit.php:330 #: application/views/station_profile/edit.php:338 #: application/views/station_profile/edit.php:364 @@ -6577,12 +6709,12 @@ msgstr "Tak" #: application/views/qso/edit_ajax.php:494 #: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/create.php:199 +#: application/views/station_profile/create.php:210 #: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/create.php:266 -#: application/views/station_profile/create.php:273 +#: application/views/station_profile/create.php:237 +#: application/views/station_profile/create.php:276 +#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:292 #: application/views/station_profile/edit.php:331 #: application/views/station_profile/edit.php:339 #: application/views/station_profile/edit.php:365 @@ -8191,7 +8323,7 @@ msgid "Search DXCluster for latest Spot" msgstr "" #: application/views/qso/index.php:196 application/views/qso/index.php:439 -#: application/views/station_profile/create.php:130 +#: application/views/station_profile/create.php:149 #: application/views/station_profile/edit.php:191 #: application/views/user/edit.php:583 application/views/view_log/qso.php:282 #: application/views/view_log/qso.php:549 @@ -8199,7 +8331,7 @@ msgid "IOTA Reference" msgstr "Podmiot IOTA" #: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:146 +#: application/views/station_profile/create.php:165 #: application/views/station_profile/edit.php:219 #: application/views/user/edit.php:587 application/views/view_log/qso.php:289 #: application/views/view_log/qso.php:556 @@ -8458,26 +8590,14 @@ msgstr "" msgid "Save query" msgstr "" -#: application/views/search/filter.php:46 -msgid "Edit queries" -msgstr "" - #: application/views/search/filter.php:50 msgid "Stored queries" msgstr "" -#: application/views/search/filter.php:60 -msgid "Run Query" -msgstr "" - #: application/views/search/filter.php:69 msgid "search filter functions" msgstr "" -#: application/views/search/filter.php:79 -msgid "Export to ADIF" -msgstr "" - #: application/views/search/filter.php:79 msgid "Search Results" msgstr "" @@ -8795,115 +8915,115 @@ msgid "" "of our Wiki." msgstr "" -#: application/views/station_profile/create.php:32 +#: application/views/station_profile/create.php:51 #: application/views/station_profile/edit.php:40 msgid "Location Name" msgstr "" -#: application/views/station_profile/create.php:33 -#: application/views/station_profile/create.php:34 +#: application/views/station_profile/create.php:52 +#: application/views/station_profile/create.php:53 #: application/views/station_profile/edit.php:42 msgctxt "Station Location Setup" msgid "Home QTH" msgstr "" -#: application/views/station_profile/create.php:34 +#: application/views/station_profile/create.php:53 #: application/views/station_profile/edit.php:42 #, php-format msgid "Shortname for the station location. For example: %s" msgstr "" -#: application/views/station_profile/create.php:40 +#: application/views/station_profile/create.php:59 #: application/views/station_profile/edit.php:48 msgid "Station callsign. For example: 4W7EST/P" msgstr "" -#: application/views/station_profile/create.php:44 +#: application/views/station_profile/create.php:63 #: application/views/station_profile/edit.php:52 msgid "Station Power (W)" msgstr "" -#: application/views/station_profile/create.php:46 +#: application/views/station_profile/create.php:65 #: application/views/station_profile/edit.php:54 msgid "Default station power in Watt. Overwritten by CAT." msgstr "" -#: application/views/station_profile/create.php:49 +#: application/views/station_profile/create.php:68 #: application/views/station_profile/edit.php:69 msgid "Station DXCC" msgstr "" -#: application/views/station_profile/create.php:52 +#: application/views/station_profile/create.php:71 #: application/views/station_profile/edit.php:72 msgctxt "DXCC selection" msgid "None" msgstr "" -#: application/views/station_profile/create.php:59 +#: application/views/station_profile/create.php:78 #: application/views/station_profile/edit.php:85 msgid "Station DXCC entity. For example: Bolivia" msgstr "" -#: application/views/station_profile/create.php:64 +#: application/views/station_profile/create.php:83 #: application/views/station_profile/edit.php:91 msgid "Station City" msgstr "" -#: application/views/station_profile/create.php:66 +#: application/views/station_profile/create.php:85 #: application/views/station_profile/edit.php:93 msgid "Station city. For example: Oslo" msgstr "" -#: application/views/station_profile/create.php:75 +#: application/views/station_profile/create.php:94 #: application/views/station_profile/edit.php:105 msgid "Station state. Applies to certain countries only." msgstr "" -#: application/views/station_profile/create.php:80 +#: application/views/station_profile/create.php:99 #: application/views/station_profile/edit.php:110 msgid "Station County" msgstr "" -#: application/views/station_profile/create.php:82 +#: application/views/station_profile/create.php:101 #: application/views/station_profile/edit.php:112 msgid "Station County (Only used for USA/Alaska/Hawaii)." msgstr "" -#: application/views/station_profile/create.php:97 +#: application/views/station_profile/create.php:116 #: application/views/station_profile/edit.php:138 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your CQ Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:97 -#: application/views/station_profile/create.php:111 -#: application/views/station_profile/create.php:125 +#: application/views/station_profile/create.php:116 +#: application/views/station_profile/create.php:130 +#: application/views/station_profile/create.php:144 #: application/views/station_profile/edit.php:138 #: application/views/station_profile/edit.php:155 #: application/views/station_profile/edit.php:179 msgid "click here" msgstr "" -#: application/views/station_profile/create.php:111 +#: application/views/station_profile/create.php:130 #: application/views/station_profile/edit.php:155 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your ITU Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:116 +#: application/views/station_profile/create.php:135 #: application/views/station_profile/edit.php:167 #: application/views/station_profile/edit.php:170 msgid "Station Gridsquare" msgstr "" -#: application/views/station_profile/create.php:121 +#: application/views/station_profile/create.php:140 #: application/views/station_profile/edit.php:175 msgid "Get Gridsquare" msgstr "" -#: application/views/station_profile/create.php:125 +#: application/views/station_profile/create.php:144 #: application/views/station_profile/edit.php:179 #, php-format msgctxt "uses 'click here'" @@ -8912,57 +9032,57 @@ msgid "" "then %s!" msgstr "" -#: application/views/station_profile/create.php:126 +#: application/views/station_profile/create.php:145 #: application/views/station_profile/edit.php:180 msgid "" "If you are located on a grid line, enter multiple grid squares separated " "with commas. For example: IO77,IO78,IO87,IO88." msgstr "" -#: application/views/station_profile/create.php:141 +#: application/views/station_profile/create.php:160 #: application/views/station_profile/edit.php:205 msgid "Station IOTA reference. For example: EU-005" msgstr "" -#: application/views/station_profile/create.php:142 +#: application/views/station_profile/create.php:161 #: application/views/station_profile/edit.php:206 msgid "IOTA World website" msgstr "" -#: application/views/station_profile/create.php:142 +#: application/views/station_profile/create.php:161 #: application/views/station_profile/edit.php:206 #, php-format msgid "You can look up IOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:148 +#: application/views/station_profile/create.php:167 #: application/views/station_profile/edit.php:221 msgid "SOTA Maps website" msgstr "" -#: application/views/station_profile/create.php:148 +#: application/views/station_profile/create.php:167 #: application/views/station_profile/edit.php:221 #, php-format msgid "Station SOTA reference. You can look up SOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:154 +#: application/views/station_profile/create.php:173 #: application/views/station_profile/edit.php:234 msgid "GMA Map website" msgstr "" -#: application/views/station_profile/create.php:154 +#: application/views/station_profile/create.php:173 #: application/views/station_profile/edit.php:234 #, php-format msgid "Station WWFF reference. You can look up WWFF references at the %s." msgstr "" -#: application/views/station_profile/create.php:160 +#: application/views/station_profile/create.php:179 #: application/views/station_profile/edit.php:247 msgid "POTA Map website" msgstr "" -#: application/views/station_profile/create.php:160 +#: application/views/station_profile/create.php:179 #: application/views/station_profile/edit.php:247 #, php-format msgid "" @@ -8970,55 +9090,55 @@ msgid "" "look up POTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:164 +#: application/views/station_profile/create.php:183 #: application/views/station_profile/edit.php:260 msgid "Signature Name" msgstr "" -#: application/views/station_profile/create.php:166 +#: application/views/station_profile/create.php:185 #: application/views/station_profile/edit.php:262 msgid "Station Signature (e.g. GMA).." msgstr "" -#: application/views/station_profile/create.php:170 +#: application/views/station_profile/create.php:189 #: application/views/station_profile/edit.php:266 msgid "Signature Information" msgstr "" -#: application/views/station_profile/create.php:172 +#: application/views/station_profile/create.php:191 #: application/views/station_profile/edit.php:268 msgid "Station Signature Info (e.g. DA/NW-357)." msgstr "" -#: application/views/station_profile/create.php:176 +#: application/views/station_profile/create.php:195 #: application/views/station_profile/edit.php:281 msgctxt "Probably no translation needed" msgid "eQSL QTH Nickname" msgstr "" -#: application/views/station_profile/create.php:178 +#: application/views/station_profile/create.php:197 #: application/views/station_profile/edit.php:283 msgid "The QTH Nickname which is configured in your eQSL Profile" msgstr "" -#: application/views/station_profile/create.php:182 +#: application/views/station_profile/create.php:201 #: application/views/station_profile/edit.php:286 msgid "Default QSLMSG" msgstr "" -#: application/views/station_profile/create.php:185 +#: application/views/station_profile/create.php:204 #: application/views/station_profile/edit.php:289 msgid "" "Define a default message that will be populated and sent for each QSO for " "this station location." msgstr "" -#: application/views/station_profile/create.php:188 +#: application/views/station_profile/create.php:207 #: application/views/station_profile/edit.php:328 msgid "Ignore Clublog Upload" msgstr "" -#: application/views/station_profile/create.php:193 +#: application/views/station_profile/create.php:212 #: application/views/station_profile/edit.php:333 msgid "" "If enabled, the QSOs made from this location will not be uploaded to " @@ -9026,124 +9146,124 @@ msgid "" "properly configured at Clublog" msgstr "" -#: application/views/station_profile/create.php:196 +#: application/views/station_profile/create.php:215 #: application/views/station_profile/edit.php:336 msgid "ClubLog Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:205 +#: application/views/station_profile/create.php:224 #: application/views/station_profile/edit.php:352 msgid "HRDLog.net Username" msgstr "" -#: application/views/station_profile/create.php:207 +#: application/views/station_profile/create.php:226 #: application/views/station_profile/edit.php:354 msgid "" "The username you are registered with at HRDlog.net (usually your callsign)." msgstr "" -#: application/views/station_profile/create.php:210 +#: application/views/station_profile/create.php:229 #: application/views/station_profile/edit.php:357 msgid "HRDLog.net API Key" msgstr "" -#: application/views/station_profile/create.php:212 +#: application/views/station_profile/create.php:231 #: application/views/station_profile/edit.php:359 #, php-format msgctxt "HRDLog.net Userprofile page" msgid "Create your API Code on your %s" msgstr "" -#: application/views/station_profile/create.php:212 +#: application/views/station_profile/create.php:231 #: application/views/station_profile/edit.php:359 msgid "HRDLog.net Userprofile page" msgstr "" -#: application/views/station_profile/create.php:215 +#: application/views/station_profile/create.php:234 #: application/views/station_profile/edit.php:362 msgid "HRDLog.net Logbook Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:224 +#: application/views/station_profile/create.php:243 #: application/views/station_profile/edit.php:297 msgid "Subscription Required" msgstr "" -#: application/views/station_profile/create.php:229 +#: application/views/station_profile/create.php:248 msgctxt "Probably no translation needed" msgid "QRZ.com Logbook API Key" msgstr "" -#: application/views/station_profile/create.php:232 +#: application/views/station_profile/create.php:251 msgid "Test API-Key" msgstr "" -#: application/views/station_profile/create.php:235 +#: application/views/station_profile/create.php:254 #: application/views/station_profile/edit.php:306 #, php-format msgctxt "the QRZ.com Logbook settings page" msgid "Find your API key on %s" msgstr "" -#: application/views/station_profile/create.php:235 +#: application/views/station_profile/create.php:254 #: application/views/station_profile/edit.php:306 msgid "the QRZ.com Logbook settings page" msgstr "" -#: application/views/station_profile/create.php:238 +#: application/views/station_profile/create.php:257 #: application/views/station_profile/edit.php:310 msgid "QRZ.com Logbook Upload" msgstr "" -#: application/views/station_profile/create.php:241 +#: application/views/station_profile/create.php:260 #: application/views/station_profile/edit.php:313 msgid "Realtime" msgstr "" -#: application/views/station_profile/create.php:249 +#: application/views/station_profile/create.php:268 #: application/views/station_profile/edit.php:378 msgctxt "Probably no translation needed" msgid "QO-100 Dx Club API Key" msgstr "" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:270 #: application/views/station_profile/edit.php:380 #, php-format msgctxt "QO-100 Dx Club's profile page" msgid "Create your API key on your %s" msgstr "" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:270 #: application/views/station_profile/edit.php:380 msgid "QO-100 Dx Club's profile page" msgstr "" -#: application/views/station_profile/create.php:254 +#: application/views/station_profile/create.php:273 #: application/views/station_profile/edit.php:383 msgid "QO-100 Dx Club Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:264 +#: application/views/station_profile/create.php:283 #: application/views/station_profile/edit.php:401 msgid "OQRS Enabled" msgstr "" -#: application/views/station_profile/create.php:271 +#: application/views/station_profile/create.php:290 #: application/views/station_profile/edit.php:408 msgid "OQRS Email alert" msgstr "" -#: application/views/station_profile/create.php:276 +#: application/views/station_profile/create.php:295 #: application/views/station_profile/edit.php:413 msgid "Make sure email is set up under admin and global options." msgstr "" -#: application/views/station_profile/create.php:279 +#: application/views/station_profile/create.php:298 #: application/views/station_profile/edit.php:416 msgid "OQRS Text" msgstr "" -#: application/views/station_profile/create.php:281 +#: application/views/station_profile/create.php:300 #: application/views/station_profile/edit.php:418 msgid "Some info you want to add regarding QSL'ing." msgstr "" @@ -10179,10 +10299,6 @@ msgstr "Szczegóły QSO" msgid "QSL Management" msgstr "Zarządzanie kartami" -#: application/views/view_log/qso.php:42 -msgid "eQSL Card" -msgstr "" - #: application/views/view_log/qso.php:128 msgid "Total Distance" msgstr "Suma odległości" @@ -10254,10 +10370,6 @@ msgstr "" msgid "Details" msgstr "" -#: application/views/view_log/qso.php:604 -msgid "QSL image file" -msgstr "" - #: application/views/view_log/qso.php:630 msgid "Uploaded QSL Card front image" msgstr "Wyślij awers karty QSL" diff --git a/application/locale/pt_PT/LC_MESSAGES/messages.mo b/application/locale/pt_PT/LC_MESSAGES/messages.mo index 7085948dd..629fe1a89 100644 Binary files a/application/locale/pt_PT/LC_MESSAGES/messages.mo and b/application/locale/pt_PT/LC_MESSAGES/messages.mo differ diff --git a/application/locale/pt_PT/LC_MESSAGES/messages.po b/application/locale/pt_PT/LC_MESSAGES/messages.po index b8e8783e8..21d74bdc6 100644 --- a/application/locale/pt_PT/LC_MESSAGES/messages.po +++ b/application/locale/pt_PT/LC_MESSAGES/messages.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-01 15:48+0000\n" -"PO-Revision-Date: 2024-08-02 07:38+0000\n" +"POT-Creation-Date: 2024-08-06 18:03+0000\n" +"PO-Revision-Date: 2024-08-07 06:28+0000\n" "Last-Translator: \"Francisco (F4VSE)\" \n" "Language-Team: Portuguese (Portugal) \n" @@ -461,17 +461,17 @@ msgstr "Nenhum utilizador configurou o Clublog." msgid "Contest Calendar" msgstr "Calendário de concursos" -#: application/controllers/Contesting.php:36 +#: application/controllers/Contesting.php:46 #: application/views/contesting/index.php:3 msgid "Contest Logging" msgstr "Registo de concurso" -#: application/controllers/Contesting.php:101 +#: application/controllers/Contesting.php:111 #: application/views/interface_assets/header.php:268 msgid "Contests" msgstr "Concursos" -#: application/controllers/Contesting.php:115 +#: application/controllers/Contesting.php:125 msgid "Update Contest" msgstr "Actualizar Concurso" @@ -505,35 +505,35 @@ msgstr "Dashboard" msgid "Number of days with QSOs each year" msgstr "Número de dias com QSOs por ano" -#: application/controllers/Debug.php:91 +#: application/controllers/Debug.php:93 msgid "Debug" msgstr "Debug" -#: application/controllers/Debug.php:130 +#: application/controllers/Debug.php:132 msgid "Migrate data now" msgstr "Migrar dados agora" -#: application/controllers/Debug.php:133 +#: application/controllers/Debug.php:135 msgid "Migration already done. Run again?" msgstr "A migração já foi efectuada. Executar novamente?" -#: application/controllers/Debug.php:137 +#: application/controllers/Debug.php:139 msgid "No data to migrate" msgstr "Não há dados a migrar" -#: application/controllers/Debug.php:141 application/controllers/Debug.php:146 +#: application/controllers/Debug.php:143 application/controllers/Debug.php:148 msgid "No migration possible" msgstr "Não é possível efetuar a migração" -#: application/controllers/Debug.php:211 +#: application/controllers/Debug.php:213 msgid "Wavelog was updated successfully!" msgstr "Wavelog foi atualizado com sucesso!" -#: application/controllers/Debug.php:229 +#: application/controllers/Debug.php:231 msgid "Selfupdate() not available. Check the Error Log." msgstr "Selfupdate() não disponível. Verifique o log de Erros." -#: application/controllers/Debug.php:273 +#: application/controllers/Debug.php:275 msgid "" "File Migration was successfull, but please check also manually. If " "everything seems right you can delete the folders 'assets/qslcard' and " @@ -543,7 +543,7 @@ msgstr "" "Se tudo parecer correto, pode apagar as pastas 'assets/qslcard' e 'images/" "eqsl_card_images'." -#: application/controllers/Debug.php:276 +#: application/controllers/Debug.php:278 msgid "File Migration failed. Please check the Error Log." msgstr "A migração de ficheiros falhou. Verifique o registo de erros." @@ -922,7 +922,7 @@ msgstr "Clublog" #: application/views/contesting/index.php:203 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:547 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:548 application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 #: application/views/eqsl/download.php:39 application/views/eqsl/result.php:36 #: application/views/eqslcard/index.php:29 @@ -1196,7 +1196,7 @@ msgstr "Distância" #: application/views/contesting/index.php:202 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:548 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:549 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 @@ -1299,7 +1299,7 @@ msgstr "Operador" #: application/views/lotw_views/index.php:56 #: application/views/qso/components/previous_contacts.php:59 #: application/views/qso/edit_ajax.php:230 application/views/qso/index.php:368 -#: application/views/station_profile/create.php:54 +#: application/views/station_profile/create.php:73 #: application/views/station_profile/edit.php:78 #: application/views/station_profile/index.php:65 #: application/views/stationsetup/linkedlocations.php:17 @@ -1546,7 +1546,7 @@ msgstr "Gestão de cartões QSL" msgid "Print Requested QSLs" msgstr "Imprimir QSLs solicitadas" -#: application/controllers/Qso.php:91 +#: application/controllers/Qso.php:101 msgid "Add QSO" msgstr "Adicionar contacto" @@ -1631,7 +1631,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:18 #: application/views/qslprint/index.php:20 application/views/qso/index.php:300 #: application/views/search/search_result_ajax.php:18 -#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:304 #: application/views/station_profile/edit.php:427 #: application/views/user/edit.php:331 #: application/views/view_log/partial/log_ajax.php:18 @@ -1706,7 +1706,7 @@ msgstr "Erro. A ligação já está a ser utilizada!" #: application/views/options/appearance.php:92 #: application/views/options/appearance.php:101 #: application/views/options/version_dialog.php:66 -#: application/views/station_profile/create.php:240 +#: application/views/station_profile/create.php:259 #: application/views/station_profile/edit.php:312 #: application/views/stationsetup/stationsetup.php:76 #: application/views/user/edit.php:451 application/views/user/edit.php:460 @@ -1776,8 +1776,10 @@ msgstr "Contacto" #: application/controllers/Stationsetup.php:359 #: application/views/api/help.php:57 application/views/contesting/add.php:59 -#: application/views/cron/index.php:56 application/views/labels/index.php:47 -#: application/views/labels/index.php:83 +#: application/views/cron/index.php:56 +#: application/views/interface_assets/footer.php:535 +#: application/views/interface_assets/footer.php:544 +#: application/views/labels/index.php:47 application/views/labels/index.php:83 #: application/views/logbookadvanced/index.php:513 #: application/views/mode/index.php:52 application/views/satellite/edit.php:39 #: application/views/satellite/index.php:25 @@ -1827,6 +1829,10 @@ msgstr "" #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 +#: application/views/interface_assets/footer.php:2341 +#: application/views/interface_assets/footer.php:2359 +#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2398 #: application/views/labels/index.php:48 application/views/labels/index.php:84 #: application/views/logbookadvanced/index.php:514 #: application/views/lotw_views/index.php:118 @@ -2243,9 +2249,12 @@ msgstr "Diferença" #: application/views/gridmap/index.php:28 #: application/views/gridmap/index.php:41 #: application/views/gridmap/index.php:70 -#: application/views/gridmap/index.php:83 application/views/kml/index.php:21 -#: application/views/kml/index.php:33 application/views/kml/index.php:49 -#: application/views/kml/index.php:67 application/views/kml/index.php:79 +#: application/views/gridmap/index.php:83 +#: application/views/interface_assets/footer.php:1453 +#: application/views/interface_assets/footer.php:1592 +#: application/views/kml/index.php:21 application/views/kml/index.php:33 +#: application/views/kml/index.php:49 application/views/kml/index.php:67 +#: application/views/kml/index.php:79 #: application/views/logbookadvanced/index.php:172 #: application/views/logbookadvanced/index.php:183 #: application/views/logbookadvanced/index.php:194 @@ -2552,7 +2561,7 @@ msgstr "Há dados diferentes para DOK no teu log em comparação com DCL." #: application/views/contesting/index.php:42 #: application/views/contesting/index.php:200 #: application/views/dashboard/index.php:147 -#: application/views/debug/index.php:544 application/views/eqsl/analysis.php:36 +#: application/views/debug/index.php:545 application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 #: application/views/eqslcard/index.php:30 #: application/views/hamsat/index.php:28 @@ -2594,7 +2603,7 @@ msgstr "Data" #: application/views/contesting/index.php:47 #: application/views/contesting/index.php:200 #: application/views/dashboard/index.php:150 -#: application/views/debug/index.php:545 application/views/eqsl/analysis.php:37 +#: application/views/debug/index.php:546 application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 #: application/views/eqslcard/index.php:31 #: application/views/hamsat/index.php:29 application/views/oqrs/qsolist.php:8 @@ -2620,7 +2629,7 @@ msgstr "Tempo" #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 #: application/views/contesting/index.php:201 -#: application/views/debug/index.php:546 application/views/debug/index.php:581 +#: application/views/debug/index.php:547 application/views/debug/index.php:582 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -2671,8 +2680,8 @@ msgid "Maximum file upload size is " msgstr "O tamanho máximo de upload de ficheiro é " #: application/views/adif/import.php:56 application/views/adif/import.php:220 -#: application/views/adif/import.php:258 application/views/debug/index.php:174 -#: application/views/debug/index.php:191 application/views/debug/index.php:536 +#: application/views/adif/import.php:258 application/views/debug/index.php:175 +#: application/views/debug/index.php:192 application/views/debug/index.php:537 #: application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:34 @@ -2748,6 +2757,8 @@ msgstr "Usar sempre o indicativo de login como nome do operador na importação" #: application/views/adif/import.php:152 #: application/views/interface_assets/footer.php:32 +#: application/views/interface_assets/footer.php:495 +#: application/views/interface_assets/footer.php:2137 msgid "DANGER" msgstr "PERIGO" @@ -2938,6 +2949,7 @@ msgstr "Nome simples para descrever a utilização desta API." #: application/views/bands/create.php:49 application/views/bands/edit.php:31 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 #: application/views/interface_assets/footer.php:43 +#: application/views/interface_assets/footer.php:530 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:107 #: application/views/options/dxcluster.php:67 @@ -3298,6 +3310,7 @@ msgstr "Mostrar contactos com tipo de QSL" #: application/views/awards/cq/index.php:54 #: application/views/awards/itu/index.php:54 +#: application/views/interface_assets/footer.php:2116 #: application/views/qso/edit_ajax.php:378 #: application/views/view_log/qso.php:25 msgid "QSL Card" @@ -3362,7 +3375,7 @@ msgstr "Mapa" #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:272 #: application/views/qso/index.php:390 #: application/views/search/cqzones_result.php:13 -#: application/views/station_profile/create.php:87 +#: application/views/station_profile/create.php:106 #: application/views/station_profile/edit.php:126 #: application/views/timeline/index.php:231 #: application/views/timeplotter/index.php:44 @@ -3851,7 +3864,7 @@ msgstr "Mostra o mapa das zonas ITU" #: application/views/logbookadvanced/index.php:246 #: application/views/logbookadvanced/index.php:589 #: application/views/logbookadvanced/useroptions.php:94 -#: application/views/station_profile/create.php:101 +#: application/views/station_profile/create.php:120 #: application/views/station_profile/edit.php:143 msgid "ITU Zone" msgstr "Zona ITU" @@ -3953,7 +3966,7 @@ msgstr "" #: application/views/awards/pota/index.php:31 #: application/views/qso/index.php:236 application/views/qso/index.php:482 -#: application/views/station_profile/create.php:158 +#: application/views/station_profile/create.php:177 #: application/views/station_profile/edit.php:245 #: application/views/user/edit.php:595 application/views/view_log/qso.php:303 #: application/views/view_log/qso.php:570 @@ -4234,7 +4247,7 @@ msgstr "" #: application/views/awards/wwff/index.php:31 #: application/views/qso/index.php:224 application/views/qso/index.php:469 -#: application/views/station_profile/create.php:152 +#: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:232 #: application/views/user/edit.php:591 application/views/view_log/qso.php:296 #: application/views/view_log/qso.php:563 @@ -4773,7 +4786,7 @@ msgid "Name of Contest in ADIF-specification" msgstr "Nome do Concurso na especificação ADIF" #: application/views/contesting/create.php:35 -#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:304 #: application/views/station_profile/edit.php:28 msgid "Create" msgstr "Criar" @@ -4919,7 +4932,7 @@ msgstr "Identificador" #: application/views/options/appearance.php:82 #: application/views/options/appearance.php:91 #: application/views/options/appearance.php:100 -#: application/views/station_profile/create.php:242 +#: application/views/station_profile/create.php:261 #: application/views/station_profile/edit.php:314 #: application/views/stationsetup/stationsetup.php:73 #: application/views/user/edit.php:452 application/views/user/edit.php:461 @@ -5042,10 +5055,10 @@ msgid "disabled" msgstr "desativado" #: application/views/cron/index.php:79 application/views/cron/index.php:81 -#: application/views/cron/index.php:83 application/views/debug/index.php:493 -#: application/views/debug/index.php:499 application/views/debug/index.php:504 -#: application/views/debug/index.php:509 application/views/debug/index.php:514 -#: application/views/debug/index.php:519 application/views/debug/index.php:524 +#: application/views/cron/index.php:83 application/views/debug/index.php:494 +#: application/views/debug/index.php:500 application/views/debug/index.php:505 +#: application/views/debug/index.php:510 application/views/debug/index.php:515 +#: application/views/debug/index.php:520 application/views/debug/index.php:525 msgid "never" msgstr "nunca" @@ -5509,62 +5522,71 @@ msgstr "A migração está desatualizada e bloqueada!" #, php-format msgid "" "The current migration is not the version it is supposed to be. Reload this " -"page. If this warning persists, your migration is probably locked due to a " -"past failed process. Check the folder %s for a file called %s and remove " -"this file to force the migration to run again." +"page after %s seconds. If this warning persists, your migration is likely " +"locked due to a previously failed process. Delete the file %s to force the " +"migration to run again." msgstr "" -"A migração atual não é a versão que deveria ser. Recarrege esta página. Se " -"este aviso persistir, a sua migração provavelmente está bloqueada devido a " -"um processo anteriormente falhado. Verifique a pasta %s para um ficheiro " -"chamado %s e remova este ficheiro para forçar a migração a correr novamente." +"A migração atual não é a versão que deveria ser. Recarregue esta página após " +"%s segundos. Se este aviso persistir, é provável que a migração esteja " +"bloqueada devido a um processo anteriormente falhado. Apague o ficheiro %s " +"para forçar a migração a decorrer novamente." #: application/views/debug/index.php:47 #, php-format +msgid "" +"Check this wiki article here for " +"more information." +msgstr "" +"Verifique este artigo da wiki aqui " +"para mais informações." + +#: application/views/debug/index.php:48 +#, php-format msgid "Current migration is %s" msgstr "A migração atual é %s" -#: application/views/debug/index.php:48 +#: application/views/debug/index.php:49 #, php-format msgid "Migration should be %s" msgstr "A migração deveria ser %s" -#: application/views/debug/index.php:53 +#: application/views/debug/index.php:54 msgid "Environment" msgstr "Ambiente" -#: application/views/debug/index.php:61 +#: application/views/debug/index.php:62 msgid "Total QSO on this instance" msgstr "Total de QSO nesta instância" -#: application/views/debug/index.php:69 +#: application/views/debug/index.php:70 msgid "Server Information" msgstr "Informação do Servidor" -#: application/views/debug/index.php:73 +#: application/views/debug/index.php:74 msgid "Server Software" msgstr "Software do Servidor" -#: application/views/debug/index.php:78 +#: application/views/debug/index.php:79 msgid "PHP Version" msgstr "Versão PHP" -#: application/views/debug/index.php:84 +#: application/views/debug/index.php:85 msgid "Deprecated" msgstr "Obsoleto" -#: application/views/debug/index.php:91 +#: application/views/debug/index.php:92 msgid "MySQL Version" msgstr "Versão do MySQL" -#: application/views/debug/index.php:95 +#: application/views/debug/index.php:96 msgid "Codeigniter Version" msgstr "Versão do Codeigniter" -#: application/views/debug/index.php:103 +#: application/views/debug/index.php:104 msgid "Folder Permissions" msgstr "Permissões das Pastas" -#: application/views/debug/index.php:105 +#: application/views/debug/index.php:106 msgid "" "This verifies that the folders used by Wavelog have read and write " "permissions by PHP." @@ -5572,33 +5594,33 @@ msgstr "" "Isto verifica se as pastas usadas pelo Wavelog têm permissões de leitura e " "gravação pelo PHP." -#: application/views/debug/index.php:111 application/views/debug/index.php:122 -#: application/views/debug/index.php:133 application/views/debug/index.php:144 -#: application/views/debug/index.php:156 +#: application/views/debug/index.php:112 application/views/debug/index.php:123 +#: application/views/debug/index.php:134 application/views/debug/index.php:145 +#: application/views/debug/index.php:157 msgid "Success" msgstr "Sucesso" -#: application/views/debug/index.php:113 application/views/debug/index.php:124 -#: application/views/debug/index.php:135 application/views/debug/index.php:146 -#: application/views/debug/index.php:158 +#: application/views/debug/index.php:114 application/views/debug/index.php:125 +#: application/views/debug/index.php:136 application/views/debug/index.php:147 +#: application/views/debug/index.php:159 msgid "Failed" msgstr "Falhou" -#: application/views/debug/index.php:168 +#: application/views/debug/index.php:169 msgid "Config Maintenance" msgstr "Manutenção da Configuração" -#: application/views/debug/index.php:174 +#: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" "O seu modo de autenticação está desatualizado e possivelmente não é seguro" -#: application/views/debug/index.php:176 application/views/debug/index.php:193 +#: application/views/debug/index.php:177 application/views/debug/index.php:194 #, php-format msgid "Please edit your %s File:" msgstr "Por favor, edite o seu ficheiro %s:" -#: application/views/debug/index.php:177 +#: application/views/debug/index.php:178 msgid "" "Go to your application/config Folder and compare config.sample.php with your " "config.php" @@ -5606,28 +5628,28 @@ msgstr "" "Vá para sua pasta application/config e compare config.sample.php com seu " "config.php" -#: application/views/debug/index.php:178 +#: application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "Alterar %s para o valor %s (fortemente recomendado)" -#: application/views/debug/index.php:184 +#: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" msgstr "O modo de autenticação está definido corretamente" -#: application/views/debug/index.php:184 application/views/debug/index.php:201 +#: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" msgstr "Ok" -#: application/views/debug/index.php:191 +#: application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "Está a utilizar a chave de encriptação predefinida. Deveria alterá-la!" -#: application/views/debug/index.php:194 +#: application/views/debug/index.php:195 msgid "This will also enable the 'Keep me logged in' feature." msgstr "Isto também activará a funcionalidade “Manter-me conectado”." -#: application/views/debug/index.php:195 +#: application/views/debug/index.php:196 #, php-format msgid "" "Change the value of %s to a new encryption key other then " @@ -5637,15 +5659,15 @@ msgstr "" "'flossie1234555541'. Escolha uma palavra-passe segura e longa. (Fortemente " "recomendado)" -#: application/views/debug/index.php:201 +#: application/views/debug/index.php:202 msgid "You do not use the default encryption key" msgstr "Você não utiliza a chave de encriptação predefinida" -#: application/views/debug/index.php:208 +#: application/views/debug/index.php:209 msgid "Migrate Userdata" msgstr "Migrar dados dos utilizadores" -#: application/views/debug/index.php:210 +#: application/views/debug/index.php:211 msgid "" "Here you can migrate existing QSL cards and eQSL cards to the new userdata " "folder." @@ -5653,112 +5675,112 @@ msgstr "" "Aqui pode migrar os cartões QSL e os cartões eQSL existentes para a nova " "pasta userdata." -#: application/views/debug/index.php:223 +#: application/views/debug/index.php:224 msgid "Modules" msgstr "Módulos" -#: application/views/debug/index.php:229 application/views/debug/index.php:240 -#: application/views/debug/index.php:251 application/views/debug/index.php:262 -#: application/views/debug/index.php:273 +#: application/views/debug/index.php:230 application/views/debug/index.php:241 +#: application/views/debug/index.php:252 application/views/debug/index.php:263 +#: application/views/debug/index.php:274 msgid "Installed" msgstr "Instalado" -#: application/views/debug/index.php:231 application/views/debug/index.php:242 -#: application/views/debug/index.php:253 application/views/debug/index.php:264 -#: application/views/debug/index.php:275 +#: application/views/debug/index.php:232 application/views/debug/index.php:243 +#: application/views/debug/index.php:254 application/views/debug/index.php:265 +#: application/views/debug/index.php:276 msgid "Not Installed" msgstr "Não instalado" -#: application/views/debug/index.php:282 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:654 msgid "Settings" msgstr "Configurações" -#: application/views/debug/index.php:411 +#: application/views/debug/index.php:412 msgid "Git Information" msgstr "Informação do Git" -#: application/views/debug/index.php:415 +#: application/views/debug/index.php:416 msgid "Branch" msgstr "Ramo" -#: application/views/debug/index.php:426 application/views/debug/index.php:437 -#: application/views/debug/index.php:447 +#: application/views/debug/index.php:427 application/views/debug/index.php:438 +#: application/views/debug/index.php:448 msgid "n/a" msgstr "n/d" -#: application/views/debug/index.php:432 +#: application/views/debug/index.php:433 msgid "Commit" msgstr "Commit" -#: application/views/debug/index.php:442 +#: application/views/debug/index.php:443 msgid "Tag" msgstr "Tag" -#: application/views/debug/index.php:452 +#: application/views/debug/index.php:453 msgid "Last Fetch" msgstr "Último Fetch" -#: application/views/debug/index.php:464 +#: application/views/debug/index.php:465 msgid "Check for new version" msgstr "Verifica se há uma nova versão" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:466 msgid "Update now" msgstr "Atualizar agora" -#: application/views/debug/index.php:483 +#: application/views/debug/index.php:484 msgid "File download date" msgstr "Data de transferência do ficheiro" -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:488 msgid "File" msgstr "Ficheiro" -#: application/views/debug/index.php:488 +#: application/views/debug/index.php:489 msgid "Last update" msgstr "Última atualização" -#: application/views/debug/index.php:492 +#: application/views/debug/index.php:493 msgid "DXCC update from Club Log" msgstr "Atualização do DXCC via Club Log" -#: application/views/debug/index.php:494 application/views/debug/index.php:500 -#: application/views/debug/index.php:505 application/views/debug/index.php:510 -#: application/views/debug/index.php:515 application/views/debug/index.php:520 -#: application/views/debug/index.php:525 +#: application/views/debug/index.php:495 application/views/debug/index.php:501 +#: application/views/debug/index.php:506 application/views/debug/index.php:511 +#: application/views/debug/index.php:516 application/views/debug/index.php:521 +#: application/views/debug/index.php:526 #: application/views/station_profile/edit.php:22 msgid "Update" msgstr "Atualização" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:499 msgid "DOK file download" msgstr "Descarregar ficheiro DOK" -#: application/views/debug/index.php:503 +#: application/views/debug/index.php:504 msgid "LoTW users download" msgstr "Descarregamento dos utilizadores de LoTW" -#: application/views/debug/index.php:508 +#: application/views/debug/index.php:509 msgid "POTA file download" msgstr "Descarregamento do ficheiro POTA" -#: application/views/debug/index.php:513 +#: application/views/debug/index.php:514 msgid "SCP file download" msgstr "Descarregamento de ficheiros SCP" -#: application/views/debug/index.php:518 +#: application/views/debug/index.php:519 msgid "SOTA file download" msgstr "Descarregamento do ficheiro SOTA" -#: application/views/debug/index.php:523 +#: application/views/debug/index.php:524 msgid "WWFF file download" msgstr "Descarregamento do ficheiro WWFF" -#: application/views/debug/index.php:532 +#: application/views/debug/index.php:533 msgid "QSO-DB Maintenance" msgstr "Manutenção da QSO-DB" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:537 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -5768,9 +5790,9 @@ msgstr[0] "" msgstr[1] "" "A base de dados contém %d contactos sem um perfil de estação (localização)" -#: application/views/debug/index.php:549 +#: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:38 +#: application/views/station_profile/create.php:57 #: application/views/station_profile/edit.php:46 #: application/views/station_profile/index.php:42 #: application/views/stationsetup/linkedlocations.php:32 @@ -5778,92 +5800,92 @@ msgstr[1] "" msgid "Station Callsign" msgstr "Indicativo da Estação" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" "Por favor marque os contactos e reatribua-os a uma localização de estação " "existente:" -#: application/views/debug/index.php:582 +#: application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" msgstr "Localização do objetivo" -#: application/views/debug/index.php:583 application/views/debug/index.php:594 +#: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" msgstr "Reatribuir" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" "Cada contacto na sua base de dados é atribuído a um perfil de estação " "(localização)" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Everything ok" msgstr "Tudo ok" -#: application/views/debug/index.php:628 +#: application/views/debug/index.php:629 msgid "Bulgarian" msgstr "Búlgaro" -#: application/views/debug/index.php:629 +#: application/views/debug/index.php:630 msgid "Chinese (Simplified)" msgstr "Chinês (simplificado)" -#: application/views/debug/index.php:630 +#: application/views/debug/index.php:631 msgid "Czech" msgstr "Checo" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:632 msgid "Dutch" msgstr "Holandês" -#: application/views/debug/index.php:632 +#: application/views/debug/index.php:633 msgid "English" msgstr "Inglês" -#: application/views/debug/index.php:633 +#: application/views/debug/index.php:634 msgid "Finnish" msgstr "Finlandês" -#: application/views/debug/index.php:634 +#: application/views/debug/index.php:635 msgid "French" msgstr "Francês" -#: application/views/debug/index.php:635 +#: application/views/debug/index.php:636 msgid "German" msgstr "Alemão" -#: application/views/debug/index.php:636 +#: application/views/debug/index.php:637 msgid "Greek" msgstr "Grego" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:638 msgid "Italian" msgstr "Italiano" -#: application/views/debug/index.php:638 +#: application/views/debug/index.php:639 msgid "Polish" msgstr "Polaco" -#: application/views/debug/index.php:639 +#: application/views/debug/index.php:640 msgid "Portuguese" msgstr "Português" -#: application/views/debug/index.php:640 +#: application/views/debug/index.php:641 msgid "Russian" msgstr "Russo" -#: application/views/debug/index.php:641 +#: application/views/debug/index.php:642 msgid "Spanish" msgstr "Espanhol" -#: application/views/debug/index.php:642 +#: application/views/debug/index.php:643 msgid "Swedish" msgstr "Sueco" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:644 msgid "Turkish" msgstr "Turco" @@ -6109,6 +6131,10 @@ msgid "QSL Date" msgstr "Data QSL" #: application/views/eqslcard/index.php:60 +#: application/views/interface_assets/footer.php:2342 +#: application/views/interface_assets/footer.php:2360 +#: application/views/interface_assets/footer.php:2381 +#: application/views/interface_assets/footer.php:2399 #: application/views/qslcard/index.php:66 #: application/views/view_log/qso.php:614 msgid "View" @@ -6282,6 +6308,70 @@ msgstr "" msgid "Version Info" msgstr "Informação da Versão" +#: application/views/interface_assets/footer.php:392 +msgid "Description:" +msgstr "Descrição:" + +#: application/views/interface_assets/footer.php:395 +msgid "Query description" +msgstr "Descrição da consulta" + +#: application/views/interface_assets/footer.php:411 +msgid "Your query has been saved!" +msgstr "A sua consulta foi guardada!" + +#: application/views/interface_assets/footer.php:413 +#: application/views/search/filter.php:46 +msgid "Edit queries" +msgstr "Editar consultas" + +#: application/views/interface_assets/footer.php:415 +msgid "Stored queries:" +msgstr "Consultas guardadas:" + +#: application/views/interface_assets/footer.php:420 +#: application/views/search/filter.php:60 +msgid "Run Query" +msgstr "Executar Consulta" + +#: application/views/interface_assets/footer.php:432 +#: application/views/interface_assets/footer.php:561 +#: application/views/interface_assets/footer.php:625 +msgid "Stored Queries" +msgstr "Consultas Guardadas" + +#: application/views/interface_assets/footer.php:437 +#: application/views/interface_assets/footer.php:630 +msgid "You need to make a query before you search!" +msgstr "Tens de fazer uma consulta antes de pesquisar!" + +#: application/views/interface_assets/footer.php:458 +#: application/views/interface_assets/footer.php:589 +#: application/views/search/filter.php:79 +msgid "Export to ADIF" +msgstr "Exportar para ADIF" + +#: application/views/interface_assets/footer.php:496 +msgid "Warning! Are you sure you want delete this stored query?" +msgstr "Aviso! Tem a certeza de que quer eliminar esta consulta guardada?" + +#: application/views/interface_assets/footer.php:510 +msgid "The stored query has been deleted!" +msgstr "A consulta armazenada foi eliminada!" + +#: application/views/interface_assets/footer.php:519 +msgid "The stored query could not be deleted. Please try again!" +msgstr "" +"A consulta armazenada não pôde ser eliminada. Por favor, tente novamente!" + +#: application/views/interface_assets/footer.php:545 +msgid "The query description has been updated!" +msgstr "A descrição da consulta foi atualizada!" + +#: application/views/interface_assets/footer.php:549 +msgid "Something went wrong with the save. Please try again!" +msgstr "Algo correu mal com a gravação. Por favor, tente novamente!" + #: application/views/interface_assets/footer.php:672 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " @@ -6292,20 +6382,65 @@ msgstr "" "qual é o DXCC correto para o local em questão. Se tiver a certeza, ignore " "este aviso." -#: application/views/interface_assets/footer.php:1374 -#: application/views/interface_assets/footer.php:1378 -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1518 -#: application/views/interface_assets/footer.php:1522 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1174 +#, php-format +msgid "You're not logged it. Please login" +msgstr "Não estás autenticado. Por favor inicia sessão" + +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1384 +#: application/views/interface_assets/footer.php:1387 +#: application/views/interface_assets/footer.php:1524 +#: application/views/interface_assets/footer.php:1528 +#: application/views/interface_assets/footer.php:1531 msgid "grid square" msgstr "quadrícula" -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1387 +#: application/views/interface_assets/footer.php:1531 msgid "Total count" msgstr "Número total" +#: application/views/interface_assets/footer.php:2118 +msgid "QSL Card for " +msgstr "Cartão QSL para " + +#: application/views/interface_assets/footer.php:2138 +msgid "Warning! Are you sure you want to delete this QSL card?" +msgstr "Aviso! Tem a certeza de que quer eliminar este cartão QSL?" + +#: application/views/interface_assets/footer.php:2178 +#: application/views/view_log/qso.php:42 +msgid "eQSL Card" +msgstr "Cartão eQSL" + +#: application/views/interface_assets/footer.php:2180 +msgid "eQSL Card for " +msgstr "Cartão eQSL para " + +#: application/views/interface_assets/footer.php:2353 +#: application/views/interface_assets/footer.php:2392 +#: application/views/view_log/qso.php:604 +msgid "QSL image file" +msgstr "Ficheiro de imagem QSL" + +#: application/views/interface_assets/footer.php:2372 +msgid "Front QSL Card:" +msgstr "Frente do Cartão QSL:" + +#: application/views/interface_assets/footer.php:2410 +msgid "Back QSL Card:" +msgstr "Parte traseira do Cartão QSL:" + +#: application/views/interface_assets/footer.php:2421 +#: application/views/interface_assets/footer.php:2446 +msgid "Add additional QSOs to a QSL Card" +msgstr "Adicionar QSOs adicionais a um Cartão QSL" + +#: application/views/interface_assets/footer.php:2457 +msgid "Something went wrong. Please try again!" +msgstr "Algo correu mal. Por favor, tente novamente!" + #: application/views/interface_assets/header.php:86 msgid "Developer Mode" msgstr "Modo de Desenvolvedor" @@ -6861,12 +6996,12 @@ msgstr "QSL enviada" #: application/views/qso/edit_ajax.php:495 #: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:190 -#: application/views/station_profile/create.php:198 +#: application/views/station_profile/create.php:209 #: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:256 -#: application/views/station_profile/create.php:267 -#: application/views/station_profile/create.php:274 +#: application/views/station_profile/create.php:236 +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/create.php:286 +#: application/views/station_profile/create.php:293 #: application/views/station_profile/edit.php:330 #: application/views/station_profile/edit.php:338 #: application/views/station_profile/edit.php:364 @@ -6899,12 +7034,12 @@ msgstr "Sim" #: application/views/qso/edit_ajax.php:494 #: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/create.php:199 +#: application/views/station_profile/create.php:210 #: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/create.php:266 -#: application/views/station_profile/create.php:273 +#: application/views/station_profile/create.php:237 +#: application/views/station_profile/create.php:276 +#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:292 #: application/views/station_profile/edit.php:331 #: application/views/station_profile/edit.php:339 #: application/views/station_profile/edit.php:365 @@ -8596,7 +8731,7 @@ msgid "Search DXCluster for latest Spot" msgstr "Pesquisar DXCluster para o spot mais recente" #: application/views/qso/index.php:196 application/views/qso/index.php:439 -#: application/views/station_profile/create.php:130 +#: application/views/station_profile/create.php:149 #: application/views/station_profile/edit.php:191 #: application/views/user/edit.php:583 application/views/view_log/qso.php:282 #: application/views/view_log/qso.php:549 @@ -8604,7 +8739,7 @@ msgid "IOTA Reference" msgstr "Referência IOTA" #: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:146 +#: application/views/station_profile/create.php:165 #: application/views/station_profile/edit.php:219 #: application/views/user/edit.php:587 application/views/view_log/qso.php:289 #: application/views/view_log/qso.php:556 @@ -8871,26 +9006,14 @@ msgstr "Não foram encontradas Zonas CQ incorretas." msgid "Save query" msgstr "Guardar consulta" -#: application/views/search/filter.php:46 -msgid "Edit queries" -msgstr "Editar consultas" - #: application/views/search/filter.php:50 msgid "Stored queries" msgstr "Consultas armazenadas" -#: application/views/search/filter.php:60 -msgid "Run Query" -msgstr "Executar Consulta" - #: application/views/search/filter.php:69 msgid "search filter functions" msgstr "funções de filtro de pesquisa" -#: application/views/search/filter.php:79 -msgid "Export to ADIF" -msgstr "Exportar para ADIF" - #: application/views/search/filter.php:79 msgid "Search Results" msgstr "Resultados da Pesquisa" @@ -9255,115 +9378,115 @@ msgstr "" "Um resumo completo de todos os comandos e da sintaxe necessária pode ser " "encontrado em %s da nossa Wiki." -#: application/views/station_profile/create.php:32 +#: application/views/station_profile/create.php:51 #: application/views/station_profile/edit.php:40 msgid "Location Name" msgstr "Nome da localização" -#: application/views/station_profile/create.php:33 -#: application/views/station_profile/create.php:34 +#: application/views/station_profile/create.php:52 +#: application/views/station_profile/create.php:53 #: application/views/station_profile/edit.php:42 msgctxt "Station Location Setup" msgid "Home QTH" msgstr "QTH de origem" -#: application/views/station_profile/create.php:34 +#: application/views/station_profile/create.php:53 #: application/views/station_profile/edit.php:42 #, php-format msgid "Shortname for the station location. For example: %s" msgstr "Nome abreviado para a localização da estação. Por exemplo: %s" -#: application/views/station_profile/create.php:40 +#: application/views/station_profile/create.php:59 #: application/views/station_profile/edit.php:48 msgid "Station callsign. For example: 4W7EST/P" msgstr "Indicativo de chamada da estação. Por exemplo: 4W7EST/P" -#: application/views/station_profile/create.php:44 +#: application/views/station_profile/create.php:63 #: application/views/station_profile/edit.php:52 msgid "Station Power (W)" msgstr "Potência da Estação (W)" -#: application/views/station_profile/create.php:46 +#: application/views/station_profile/create.php:65 #: application/views/station_profile/edit.php:54 msgid "Default station power in Watt. Overwritten by CAT." msgstr "Potência por defeito da estação em Watt. Substituída pelo CAT." -#: application/views/station_profile/create.php:49 +#: application/views/station_profile/create.php:68 #: application/views/station_profile/edit.php:69 msgid "Station DXCC" msgstr "Estação DXCC" -#: application/views/station_profile/create.php:52 +#: application/views/station_profile/create.php:71 #: application/views/station_profile/edit.php:72 msgctxt "DXCC selection" msgid "None" msgstr "Nenhum" -#: application/views/station_profile/create.php:59 +#: application/views/station_profile/create.php:78 #: application/views/station_profile/edit.php:85 msgid "Station DXCC entity. For example: Bolivia" msgstr "Entidade DXCC da estação. Por exemplo: Bolívia" -#: application/views/station_profile/create.php:64 +#: application/views/station_profile/create.php:83 #: application/views/station_profile/edit.php:91 msgid "Station City" msgstr "Cidade da Estação" -#: application/views/station_profile/create.php:66 +#: application/views/station_profile/create.php:85 #: application/views/station_profile/edit.php:93 msgid "Station city. For example: Oslo" msgstr "Cidade da estação. Por exemplo: Oslo" -#: application/views/station_profile/create.php:75 +#: application/views/station_profile/create.php:94 #: application/views/station_profile/edit.php:105 msgid "Station state. Applies to certain countries only." msgstr "Estado da estação. Aplica-se apenas a certos países." -#: application/views/station_profile/create.php:80 +#: application/views/station_profile/create.php:99 #: application/views/station_profile/edit.php:110 msgid "Station County" msgstr "Condado da Estação" -#: application/views/station_profile/create.php:82 +#: application/views/station_profile/create.php:101 #: application/views/station_profile/edit.php:112 msgid "Station County (Only used for USA/Alaska/Hawaii)." msgstr "Condado da Estação (usado apenas para EUA/Alasca/Havai)." -#: application/views/station_profile/create.php:97 +#: application/views/station_profile/create.php:116 #: application/views/station_profile/edit.php:138 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your CQ Zone then %s to find it!" msgstr "Se não souberes a tua zona CQ, então %s para a encontrares!" -#: application/views/station_profile/create.php:97 -#: application/views/station_profile/create.php:111 -#: application/views/station_profile/create.php:125 +#: application/views/station_profile/create.php:116 +#: application/views/station_profile/create.php:130 +#: application/views/station_profile/create.php:144 #: application/views/station_profile/edit.php:138 #: application/views/station_profile/edit.php:155 #: application/views/station_profile/edit.php:179 msgid "click here" msgstr "clique aqui" -#: application/views/station_profile/create.php:111 +#: application/views/station_profile/create.php:130 #: application/views/station_profile/edit.php:155 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your ITU Zone then %s to find it!" msgstr "Se não sabe a sua zona ITU, então %s para a encontrar!" -#: application/views/station_profile/create.php:116 +#: application/views/station_profile/create.php:135 #: application/views/station_profile/edit.php:167 #: application/views/station_profile/edit.php:170 msgid "Station Gridsquare" msgstr "Quadrícula da Estação" -#: application/views/station_profile/create.php:121 +#: application/views/station_profile/create.php:140 #: application/views/station_profile/edit.php:175 msgid "Get Gridsquare" msgstr "Obter quadrícula" -#: application/views/station_profile/create.php:125 +#: application/views/station_profile/create.php:144 #: application/views/station_profile/edit.php:179 #, php-format msgctxt "uses 'click here'" @@ -9374,7 +9497,7 @@ msgstr "" "Quadrícula da estação. Por exemplo: HM54AP. Se não souber o quadrado do seu " "locator, então %s!" -#: application/views/station_profile/create.php:126 +#: application/views/station_profile/create.php:145 #: application/views/station_profile/edit.php:180 msgid "" "If you are located on a grid line, enter multiple grid squares separated " @@ -9383,52 +9506,52 @@ msgstr "" "Se estiver localizado numa linha de grelha, introduza vários quadrados de " "grelha separados por vírgulas. Por exemplo: IO77,IO78,IO87,IO88." -#: application/views/station_profile/create.php:141 +#: application/views/station_profile/create.php:160 #: application/views/station_profile/edit.php:205 msgid "Station IOTA reference. For example: EU-005" msgstr "Referência IOTA da estação. Por exemplo: EU-005" -#: application/views/station_profile/create.php:142 +#: application/views/station_profile/create.php:161 #: application/views/station_profile/edit.php:206 msgid "IOTA World website" msgstr "Site IOTA World" -#: application/views/station_profile/create.php:142 +#: application/views/station_profile/create.php:161 #: application/views/station_profile/edit.php:206 #, php-format msgid "You can look up IOTA references at the %s." msgstr "Pode consultar as referências da IOTA no %s." -#: application/views/station_profile/create.php:148 +#: application/views/station_profile/create.php:167 #: application/views/station_profile/edit.php:221 msgid "SOTA Maps website" msgstr "Site SOTA Maps" -#: application/views/station_profile/create.php:148 +#: application/views/station_profile/create.php:167 #: application/views/station_profile/edit.php:221 #, php-format msgid "Station SOTA reference. You can look up SOTA references at the %s." msgstr "" "Referência SOTA da estação. Pode consultar as referências SOTA no site %s." -#: application/views/station_profile/create.php:154 +#: application/views/station_profile/create.php:173 #: application/views/station_profile/edit.php:234 msgid "GMA Map website" msgstr "Site GMA Map" -#: application/views/station_profile/create.php:154 +#: application/views/station_profile/create.php:173 #: application/views/station_profile/edit.php:234 #, php-format msgid "Station WWFF reference. You can look up WWFF references at the %s." msgstr "" "Referência WWFF da estação. Pode consultar as referências WWFF no site %s." -#: application/views/station_profile/create.php:160 +#: application/views/station_profile/create.php:179 #: application/views/station_profile/edit.php:247 msgid "POTA Map website" msgstr "Site POTA Map" -#: application/views/station_profile/create.php:160 +#: application/views/station_profile/create.php:179 #: application/views/station_profile/edit.php:247 #, php-format msgid "" @@ -9438,43 +9561,43 @@ msgstr "" "Referência(s) POTA da estação. São permitidos vários valores separados por " "vírgulas. Pode consultar as referências POTA no site %s." -#: application/views/station_profile/create.php:164 +#: application/views/station_profile/create.php:183 #: application/views/station_profile/edit.php:260 msgid "Signature Name" msgstr "Nome de Assinatura" -#: application/views/station_profile/create.php:166 +#: application/views/station_profile/create.php:185 #: application/views/station_profile/edit.php:262 msgid "Station Signature (e.g. GMA).." msgstr "Assinatura da Estação (por exemplo, GMA).." -#: application/views/station_profile/create.php:170 +#: application/views/station_profile/create.php:189 #: application/views/station_profile/edit.php:266 msgid "Signature Information" msgstr "Informação de Assinatura" -#: application/views/station_profile/create.php:172 +#: application/views/station_profile/create.php:191 #: application/views/station_profile/edit.php:268 msgid "Station Signature Info (e.g. DA/NW-357)." msgstr "Informação sobre a assinatura da estação (por exemplo, DA/NW-357)." -#: application/views/station_profile/create.php:176 +#: application/views/station_profile/create.php:195 #: application/views/station_profile/edit.php:281 msgctxt "Probably no translation needed" msgid "eQSL QTH Nickname" msgstr "Apelido do QTH no eQSL" -#: application/views/station_profile/create.php:178 +#: application/views/station_profile/create.php:197 #: application/views/station_profile/edit.php:283 msgid "The QTH Nickname which is configured in your eQSL Profile" msgstr "O apelido QTH que está configurado no seu perfil eQSL" -#: application/views/station_profile/create.php:182 +#: application/views/station_profile/create.php:201 #: application/views/station_profile/edit.php:286 msgid "Default QSLMSG" msgstr "Mensagem padrão QSLMSG" -#: application/views/station_profile/create.php:185 +#: application/views/station_profile/create.php:204 #: application/views/station_profile/edit.php:289 msgid "" "Define a default message that will be populated and sent for each QSO for " @@ -9483,12 +9606,12 @@ msgstr "" "Definir uma mensagem predefinida que será preenchida e enviada para cada " "contacto para esta localização de estação." -#: application/views/station_profile/create.php:188 +#: application/views/station_profile/create.php:207 #: application/views/station_profile/edit.php:328 msgid "Ignore Clublog Upload" msgstr "Ignorar envio para o Clublog" -#: application/views/station_profile/create.php:193 +#: application/views/station_profile/create.php:212 #: application/views/station_profile/edit.php:333 msgid "" "If enabled, the QSOs made from this location will not be uploaded to " @@ -9499,17 +9622,17 @@ msgstr "" "enviados parar o Clublog. Se isto estiver desativado por si só, por favor " "verifique se o indicativo está corretamente configurado no Clublog" -#: application/views/station_profile/create.php:196 +#: application/views/station_profile/create.php:215 #: application/views/station_profile/edit.php:336 msgid "ClubLog Realtime Upload" msgstr "Envio em tempo real para o ClubLog" -#: application/views/station_profile/create.php:205 +#: application/views/station_profile/create.php:224 #: application/views/station_profile/edit.php:352 msgid "HRDLog.net Username" msgstr "Nome de utilizador do HRDLog.net" -#: application/views/station_profile/create.php:207 +#: application/views/station_profile/create.php:226 #: application/views/station_profile/edit.php:354 msgid "" "The username you are registered with at HRDlog.net (usually your callsign)." @@ -9517,110 +9640,110 @@ msgstr "" "O nome de utilizador com que está registado no HRDlog.net (normalmente o seu " "indicativo)." -#: application/views/station_profile/create.php:210 +#: application/views/station_profile/create.php:229 #: application/views/station_profile/edit.php:357 msgid "HRDLog.net API Key" msgstr "Chave API do HRDLog.net" -#: application/views/station_profile/create.php:212 +#: application/views/station_profile/create.php:231 #: application/views/station_profile/edit.php:359 #, php-format msgctxt "HRDLog.net Userprofile page" msgid "Create your API Code on your %s" msgstr "Crie o seu código API no seu %s" -#: application/views/station_profile/create.php:212 +#: application/views/station_profile/create.php:231 #: application/views/station_profile/edit.php:359 msgid "HRDLog.net Userprofile page" msgstr "Página de perfil do utilizador HRDLog.net" -#: application/views/station_profile/create.php:215 +#: application/views/station_profile/create.php:234 #: application/views/station_profile/edit.php:362 msgid "HRDLog.net Logbook Realtime Upload" msgstr "Envio em tempo real para o Logbook do HRDLog.net" -#: application/views/station_profile/create.php:224 +#: application/views/station_profile/create.php:243 #: application/views/station_profile/edit.php:297 msgid "Subscription Required" msgstr "Subscrição obrigatória" -#: application/views/station_profile/create.php:229 +#: application/views/station_profile/create.php:248 msgctxt "Probably no translation needed" msgid "QRZ.com Logbook API Key" msgstr "Chave API do Logbook do QRZ.com" -#: application/views/station_profile/create.php:232 +#: application/views/station_profile/create.php:251 msgid "Test API-Key" msgstr "Chave API de testes" -#: application/views/station_profile/create.php:235 +#: application/views/station_profile/create.php:254 #: application/views/station_profile/edit.php:306 #, php-format msgctxt "the QRZ.com Logbook settings page" msgid "Find your API key on %s" msgstr "Pode encontrar a sua chave API em %s" -#: application/views/station_profile/create.php:235 +#: application/views/station_profile/create.php:254 #: application/views/station_profile/edit.php:306 msgid "the QRZ.com Logbook settings page" msgstr "a página de definições do logbook do QRZ.com" -#: application/views/station_profile/create.php:238 +#: application/views/station_profile/create.php:257 #: application/views/station_profile/edit.php:310 msgid "QRZ.com Logbook Upload" msgstr "Envio do log para o Logbook do QRZ.com" -#: application/views/station_profile/create.php:241 +#: application/views/station_profile/create.php:260 #: application/views/station_profile/edit.php:313 msgid "Realtime" msgstr "Tempo real" -#: application/views/station_profile/create.php:249 +#: application/views/station_profile/create.php:268 #: application/views/station_profile/edit.php:378 msgctxt "Probably no translation needed" msgid "QO-100 Dx Club API Key" msgstr "Chave API do QO-100 Dx Club" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:270 #: application/views/station_profile/edit.php:380 #, php-format msgctxt "QO-100 Dx Club's profile page" msgid "Create your API key on your %s" msgstr "Crie a sua chave API em %s" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:270 #: application/views/station_profile/edit.php:380 msgid "QO-100 Dx Club's profile page" msgstr "Página de perfil do QO-100 Dx Club" -#: application/views/station_profile/create.php:254 +#: application/views/station_profile/create.php:273 #: application/views/station_profile/edit.php:383 msgid "QO-100 Dx Club Realtime Upload" msgstr "Envio em tempo real do log para o QO-100 Dx Club" -#: application/views/station_profile/create.php:264 +#: application/views/station_profile/create.php:283 #: application/views/station_profile/edit.php:401 msgid "OQRS Enabled" msgstr "OQRS ativado" -#: application/views/station_profile/create.php:271 +#: application/views/station_profile/create.php:290 #: application/views/station_profile/edit.php:408 msgid "OQRS Email alert" msgstr "Alerta de email OQRS" -#: application/views/station_profile/create.php:276 +#: application/views/station_profile/create.php:295 #: application/views/station_profile/edit.php:413 msgid "Make sure email is set up under admin and global options." msgstr "" "Certifique-se de que o correio eletrónico está configurado nas opções de " "administração e globais." -#: application/views/station_profile/create.php:279 +#: application/views/station_profile/create.php:298 #: application/views/station_profile/edit.php:416 msgid "OQRS Text" msgstr "Texto OQRS" -#: application/views/station_profile/create.php:281 +#: application/views/station_profile/create.php:300 #: application/views/station_profile/edit.php:418 msgid "Some info you want to add regarding QSL'ing." msgstr "Alguma informação que queira acrescentar sobre as QSL's." @@ -10748,10 +10871,6 @@ msgstr "Detalhes do contacto" msgid "QSL Management" msgstr "Gestão de QSLs" -#: application/views/view_log/qso.php:42 -msgid "eQSL Card" -msgstr "Cartão eQSL" - #: application/views/view_log/qso.php:128 msgid "Total Distance" msgstr "Distância total" @@ -10823,10 +10942,6 @@ msgstr "Mais contactos" msgid "Details" msgstr "Detailes" -#: application/views/view_log/qso.php:604 -msgid "QSL image file" -msgstr "Ficheiro de imagem QSL" - #: application/views/view_log/qso.php:630 msgid "Uploaded QSL Card front image" msgstr "Imagem da frente do cartão QSL transferida" @@ -10970,5 +11085,18 @@ msgstr "O seu indicativo:" msgid "Submit Request" msgstr "Submeter pedido" +#, php-format +#~ msgid "" +#~ "The current migration is not the version it is supposed to be. Reload " +#~ "this page. If this warning persists, your migration is probably locked " +#~ "due to a past failed process. Check the folder %s for a file called %s " +#~ "and remove this file to force the migration to run again." +#~ msgstr "" +#~ "A migração atual não é a versão que deveria ser. Recarrege esta página. " +#~ "Se este aviso persistir, a sua migração provavelmente está bloqueada " +#~ "devido a um processo anteriormente falhado. Verifique a pasta %s para um " +#~ "ficheiro chamado %s e remova este ficheiro para forçar a migração a " +#~ "correr novamente." + #~ msgid "VHF/UHF Century Club (VUCC)" #~ msgstr "VHF/UHF Century Club (VUCC)" diff --git a/application/locale/ru_RU/LC_MESSAGES/messages.mo b/application/locale/ru_RU/LC_MESSAGES/messages.mo index 175c2bc5a..797547500 100644 Binary files a/application/locale/ru_RU/LC_MESSAGES/messages.mo and b/application/locale/ru_RU/LC_MESSAGES/messages.mo differ diff --git a/application/locale/ru_RU/LC_MESSAGES/messages.po b/application/locale/ru_RU/LC_MESSAGES/messages.po index f4ed9e636..b743166c1 100644 --- a/application/locale/ru_RU/LC_MESSAGES/messages.po +++ b/application/locale/ru_RU/LC_MESSAGES/messages.po @@ -8,11 +8,11 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-01 15:48+0000\n" +"POT-Creation-Date: 2024-08-06 18:03+0000\n" "PO-Revision-Date: 2024-08-02 19:03+0000\n" "Last-Translator: Michael Skolsky \n" -"Language-Team: Russian \n" +"Language-Team: Russian \n" "Language: ru_RU\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -462,17 +462,17 @@ msgstr "Ни один пользователь не сконфигурирова msgid "Contest Calendar" msgstr "Календарь контестов" -#: application/controllers/Contesting.php:36 +#: application/controllers/Contesting.php:46 #: application/views/contesting/index.php:3 msgid "Contest Logging" msgstr "Журнал контеста" -#: application/controllers/Contesting.php:101 +#: application/controllers/Contesting.php:111 #: application/views/interface_assets/header.php:268 msgid "Contests" msgstr "Контесты" -#: application/controllers/Contesting.php:115 +#: application/controllers/Contesting.php:125 msgid "Update Contest" msgstr "Обновить контест" @@ -506,35 +506,35 @@ msgstr "Панель управления" msgid "Number of days with QSOs each year" msgstr "Количество дней с QSO в каждом году" -#: application/controllers/Debug.php:91 +#: application/controllers/Debug.php:93 msgid "Debug" msgstr "Отладка" -#: application/controllers/Debug.php:130 +#: application/controllers/Debug.php:132 msgid "Migrate data now" msgstr "Переносите данные сейчас" -#: application/controllers/Debug.php:133 +#: application/controllers/Debug.php:135 msgid "Migration already done. Run again?" msgstr "Миграция уже выполнена. Запустить снова?" -#: application/controllers/Debug.php:137 +#: application/controllers/Debug.php:139 msgid "No data to migrate" msgstr "Нет данных для миграции" -#: application/controllers/Debug.php:141 application/controllers/Debug.php:146 +#: application/controllers/Debug.php:143 application/controllers/Debug.php:148 msgid "No migration possible" msgstr "Миграция невозможна" -#: application/controllers/Debug.php:211 +#: application/controllers/Debug.php:213 msgid "Wavelog was updated successfully!" msgstr "Wavelog был успешно обновлен!" -#: application/controllers/Debug.php:229 +#: application/controllers/Debug.php:231 msgid "Selfupdate() not available. Check the Error Log." msgstr "Selfupdate() недоступен. Проверьте журнал ошибок." -#: application/controllers/Debug.php:273 +#: application/controllers/Debug.php:275 msgid "" "File Migration was successfull, but please check also manually. If " "everything seems right you can delete the folders 'assets/qslcard' and " @@ -544,7 +544,7 @@ msgstr "" "Если все в порядке, можете удалить папки 'assets/qslcard' и 'images/" "eqsl_card_images'." -#: application/controllers/Debug.php:276 +#: application/controllers/Debug.php:278 msgid "File Migration failed. Please check the Error Log." msgstr "" "Не удалось выполнить миграцию файлов. Пожалуйста, проверьте журнал ошибок." @@ -924,7 +924,7 @@ msgstr "Clublog" #: application/views/contesting/index.php:203 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:547 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:548 application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 #: application/views/eqsl/download.php:39 application/views/eqsl/result.php:36 #: application/views/eqslcard/index.php:29 @@ -1198,7 +1198,7 @@ msgstr "Дистанция" #: application/views/contesting/index.php:202 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:548 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:549 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 @@ -1301,7 +1301,7 @@ msgstr "Оператор" #: application/views/lotw_views/index.php:56 #: application/views/qso/components/previous_contacts.php:59 #: application/views/qso/edit_ajax.php:230 application/views/qso/index.php:368 -#: application/views/station_profile/create.php:54 +#: application/views/station_profile/create.php:73 #: application/views/station_profile/edit.php:78 #: application/views/station_profile/index.php:65 #: application/views/stationsetup/linkedlocations.php:17 @@ -1546,7 +1546,7 @@ msgstr "Управление QSL карточками" msgid "Print Requested QSLs" msgstr "Распечатать запрошенные QSL" -#: application/controllers/Qso.php:91 +#: application/controllers/Qso.php:101 msgid "Add QSO" msgstr "Добавить QSO" @@ -1631,7 +1631,7 @@ msgstr "" #: application/views/logbookadvanced/edit.php:18 #: application/views/qslprint/index.php:20 application/views/qso/index.php:300 #: application/views/search/search_result_ajax.php:18 -#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:304 #: application/views/station_profile/edit.php:427 #: application/views/user/edit.php:331 #: application/views/view_log/partial/log_ajax.php:18 @@ -1706,7 +1706,7 @@ msgstr "Ошибка. Ссылка уже используется!" #: application/views/options/appearance.php:92 #: application/views/options/appearance.php:101 #: application/views/options/version_dialog.php:66 -#: application/views/station_profile/create.php:240 +#: application/views/station_profile/create.php:259 #: application/views/station_profile/edit.php:312 #: application/views/stationsetup/stationsetup.php:76 #: application/views/user/edit.php:451 application/views/user/edit.php:460 @@ -1774,8 +1774,10 @@ msgstr "QSO" #: application/controllers/Stationsetup.php:359 #: application/views/api/help.php:57 application/views/contesting/add.php:59 -#: application/views/cron/index.php:56 application/views/labels/index.php:47 -#: application/views/labels/index.php:83 +#: application/views/cron/index.php:56 +#: application/views/interface_assets/footer.php:535 +#: application/views/interface_assets/footer.php:544 +#: application/views/labels/index.php:47 application/views/labels/index.php:83 #: application/views/logbookadvanced/index.php:513 #: application/views/mode/index.php:52 application/views/satellite/edit.php:39 #: application/views/satellite/index.php:25 @@ -1823,6 +1825,10 @@ msgstr "" #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 +#: application/views/interface_assets/footer.php:2341 +#: application/views/interface_assets/footer.php:2359 +#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2398 #: application/views/labels/index.php:48 application/views/labels/index.php:84 #: application/views/logbookadvanced/index.php:514 #: application/views/lotw_views/index.php:118 @@ -2236,9 +2242,12 @@ msgstr "Разница" #: application/views/gridmap/index.php:28 #: application/views/gridmap/index.php:41 #: application/views/gridmap/index.php:70 -#: application/views/gridmap/index.php:83 application/views/kml/index.php:21 -#: application/views/kml/index.php:33 application/views/kml/index.php:49 -#: application/views/kml/index.php:67 application/views/kml/index.php:79 +#: application/views/gridmap/index.php:83 +#: application/views/interface_assets/footer.php:1453 +#: application/views/interface_assets/footer.php:1592 +#: application/views/kml/index.php:21 application/views/kml/index.php:33 +#: application/views/kml/index.php:49 application/views/kml/index.php:67 +#: application/views/kml/index.php:79 #: application/views/logbookadvanced/index.php:172 #: application/views/logbookadvanced/index.php:183 #: application/views/logbookadvanced/index.php:194 @@ -2545,7 +2554,7 @@ msgstr "Данные DOK в вашем логе отличаются от DCL" #: application/views/contesting/index.php:42 #: application/views/contesting/index.php:200 #: application/views/dashboard/index.php:147 -#: application/views/debug/index.php:544 application/views/eqsl/analysis.php:36 +#: application/views/debug/index.php:545 application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 #: application/views/eqslcard/index.php:30 #: application/views/hamsat/index.php:28 @@ -2587,7 +2596,7 @@ msgstr "Дата" #: application/views/contesting/index.php:47 #: application/views/contesting/index.php:200 #: application/views/dashboard/index.php:150 -#: application/views/debug/index.php:545 application/views/eqsl/analysis.php:37 +#: application/views/debug/index.php:546 application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 #: application/views/eqslcard/index.php:31 #: application/views/hamsat/index.php:29 application/views/oqrs/qsolist.php:8 @@ -2613,7 +2622,7 @@ msgstr "Время" #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 #: application/views/contesting/index.php:201 -#: application/views/debug/index.php:546 application/views/debug/index.php:581 +#: application/views/debug/index.php:547 application/views/debug/index.php:582 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -2664,8 +2673,8 @@ msgid "Maximum file upload size is " msgstr "Максимальный размер загружаемого файла " #: application/views/adif/import.php:56 application/views/adif/import.php:220 -#: application/views/adif/import.php:258 application/views/debug/index.php:174 -#: application/views/debug/index.php:191 application/views/debug/index.php:536 +#: application/views/adif/import.php:258 application/views/debug/index.php:175 +#: application/views/debug/index.php:192 application/views/debug/index.php:537 #: application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:34 @@ -2741,6 +2750,8 @@ msgstr "Всегда использовать позывной (логин) ка #: application/views/adif/import.php:152 #: application/views/interface_assets/footer.php:32 +#: application/views/interface_assets/footer.php:495 +#: application/views/interface_assets/footer.php:2137 msgid "DANGER" msgstr "ОПАСНО" @@ -2929,6 +2940,7 @@ msgstr "Простое название, описывающее назначен #: application/views/bands/create.php:49 application/views/bands/edit.php:31 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 #: application/views/interface_assets/footer.php:43 +#: application/views/interface_assets/footer.php:530 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:107 #: application/views/options/dxcluster.php:67 @@ -3287,6 +3299,7 @@ msgstr "Отобразить QSO с типом QSL" #: application/views/awards/cq/index.php:54 #: application/views/awards/itu/index.php:54 +#: application/views/interface_assets/footer.php:2116 #: application/views/qso/edit_ajax.php:378 #: application/views/view_log/qso.php:25 msgid "QSL Card" @@ -3351,7 +3364,7 @@ msgstr "Карта" #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:272 #: application/views/qso/index.php:390 #: application/views/search/cqzones_result.php:13 -#: application/views/station_profile/create.php:87 +#: application/views/station_profile/create.php:106 #: application/views/station_profile/edit.php:126 #: application/views/timeline/index.php:231 #: application/views/timeplotter/index.php:44 @@ -3843,7 +3856,7 @@ msgstr "Показать карту зон ITU" #: application/views/logbookadvanced/index.php:246 #: application/views/logbookadvanced/index.php:589 #: application/views/logbookadvanced/useroptions.php:94 -#: application/views/station_profile/create.php:101 +#: application/views/station_profile/create.php:120 #: application/views/station_profile/edit.php:143 msgid "ITU Zone" msgstr "Зона ITU" @@ -3943,7 +3956,7 @@ msgstr "" #: application/views/awards/pota/index.php:31 #: application/views/qso/index.php:236 application/views/qso/index.php:482 -#: application/views/station_profile/create.php:158 +#: application/views/station_profile/create.php:177 #: application/views/station_profile/edit.php:245 #: application/views/user/edit.php:595 application/views/view_log/qso.php:303 #: application/views/view_log/qso.php:570 @@ -4220,7 +4233,7 @@ msgstr "" #: application/views/awards/wwff/index.php:31 #: application/views/qso/index.php:224 application/views/qso/index.php:469 -#: application/views/station_profile/create.php:152 +#: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:232 #: application/views/user/edit.php:591 application/views/view_log/qso.php:296 #: application/views/view_log/qso.php:563 @@ -4763,7 +4776,7 @@ msgid "Name of Contest in ADIF-specification" msgstr "Название контеста в спецификации ADIF" #: application/views/contesting/create.php:35 -#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:304 #: application/views/station_profile/edit.php:28 msgid "Create" msgstr "Создать" @@ -4910,7 +4923,7 @@ msgstr "Идентификатор" #: application/views/options/appearance.php:82 #: application/views/options/appearance.php:91 #: application/views/options/appearance.php:100 -#: application/views/station_profile/create.php:242 +#: application/views/station_profile/create.php:261 #: application/views/station_profile/edit.php:314 #: application/views/stationsetup/stationsetup.php:73 #: application/views/user/edit.php:452 application/views/user/edit.php:461 @@ -5033,10 +5046,10 @@ msgid "disabled" msgstr "отключено" #: application/views/cron/index.php:79 application/views/cron/index.php:81 -#: application/views/cron/index.php:83 application/views/debug/index.php:493 -#: application/views/debug/index.php:499 application/views/debug/index.php:504 -#: application/views/debug/index.php:509 application/views/debug/index.php:514 -#: application/views/debug/index.php:519 application/views/debug/index.php:524 +#: application/views/cron/index.php:83 application/views/debug/index.php:494 +#: application/views/debug/index.php:500 application/views/debug/index.php:505 +#: application/views/debug/index.php:510 application/views/debug/index.php:515 +#: application/views/debug/index.php:520 application/views/debug/index.php:525 msgid "never" msgstr "никогда" @@ -5501,63 +5514,65 @@ msgstr "Миграция устарела и заблокирована!" #, php-format msgid "" "The current migration is not the version it is supposed to be. Reload this " -"page. If this warning persists, your migration is probably locked due to a " -"past failed process. Check the folder %s for a file called %s and remove " -"this file to force the migration to run again." +"page after %s seconds. If this warning persists, your migration is likely " +"locked due to a previously failed process. Delete the file %s to force the " +"migration to run again." msgstr "" -"Текущая версия миграции не является той, которой она должна быть. " -"Перезагрузите эту страницу. Если это предупреждение сохраняется, ваша " -"миграция, вероятно, заблокирована из-за предыдущего неудачного процесса. " -"Проверьте папку %s на наличие файла с именем %s и удалите этот файл, чтобы " -"принудительно запустить миграцию снова." #: application/views/debug/index.php:47 #, php-format +msgid "" +"Check this wiki article here for " +"more information." +msgstr "" + +#: application/views/debug/index.php:48 +#, php-format msgid "Current migration is %s" msgstr "Текущая миграция - %s" -#: application/views/debug/index.php:48 +#: application/views/debug/index.php:49 #, php-format msgid "Migration should be %s" msgstr "Миграция должна быть %s" -#: application/views/debug/index.php:53 +#: application/views/debug/index.php:54 msgid "Environment" msgstr "Окружение" -#: application/views/debug/index.php:61 +#: application/views/debug/index.php:62 msgid "Total QSO on this instance" msgstr "Всего QSO на этом инстансе" -#: application/views/debug/index.php:69 +#: application/views/debug/index.php:70 msgid "Server Information" msgstr "Информация о сервере" -#: application/views/debug/index.php:73 +#: application/views/debug/index.php:74 msgid "Server Software" msgstr "ПО сервера" -#: application/views/debug/index.php:78 +#: application/views/debug/index.php:79 msgid "PHP Version" msgstr "Версия PHP" -#: application/views/debug/index.php:84 +#: application/views/debug/index.php:85 msgid "Deprecated" msgstr "Устарело" -#: application/views/debug/index.php:91 +#: application/views/debug/index.php:92 msgid "MySQL Version" msgstr "Версия MySQL" -#: application/views/debug/index.php:95 +#: application/views/debug/index.php:96 msgid "Codeigniter Version" msgstr "Версия Codeigniter" -#: application/views/debug/index.php:103 +#: application/views/debug/index.php:104 msgid "Folder Permissions" msgstr "Права доступа к каталогам" -#: application/views/debug/index.php:105 +#: application/views/debug/index.php:106 msgid "" "This verifies that the folders used by Wavelog have read and write " "permissions by PHP." @@ -5565,32 +5580,32 @@ msgstr "" "Это проверяет, что папки, используемые Wavelog, имеют права на чтение и " "запись в PHP." -#: application/views/debug/index.php:111 application/views/debug/index.php:122 -#: application/views/debug/index.php:133 application/views/debug/index.php:144 -#: application/views/debug/index.php:156 +#: application/views/debug/index.php:112 application/views/debug/index.php:123 +#: application/views/debug/index.php:134 application/views/debug/index.php:145 +#: application/views/debug/index.php:157 msgid "Success" msgstr "Успешно" -#: application/views/debug/index.php:113 application/views/debug/index.php:124 -#: application/views/debug/index.php:135 application/views/debug/index.php:146 -#: application/views/debug/index.php:158 +#: application/views/debug/index.php:114 application/views/debug/index.php:125 +#: application/views/debug/index.php:136 application/views/debug/index.php:147 +#: application/views/debug/index.php:159 msgid "Failed" msgstr "Ошибка" -#: application/views/debug/index.php:168 +#: application/views/debug/index.php:169 msgid "Config Maintenance" msgstr "Настройка режима обслуживания" -#: application/views/debug/index.php:174 +#: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "Ваш режим аутентификации устарел и, возможно, небезопасен" -#: application/views/debug/index.php:176 application/views/debug/index.php:193 +#: application/views/debug/index.php:177 application/views/debug/index.php:194 #, php-format msgid "Please edit your %s File:" msgstr "Пожалуйста, отредактируйте ваш %s файл:" -#: application/views/debug/index.php:177 +#: application/views/debug/index.php:178 msgid "" "Go to your application/config Folder and compare config.sample.php with your " "config.php" @@ -5598,28 +5613,28 @@ msgstr "" "Перейдите в папку application/config и сравните config.sample.php с вашим " "config.php" -#: application/views/debug/index.php:178 +#: application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "Замените %s на значение %s (настоятельно рекомендуется)" -#: application/views/debug/index.php:184 +#: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" msgstr "Режим аутентификации установлен правильно" -#: application/views/debug/index.php:184 application/views/debug/index.php:201 +#: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" msgstr "ОК" -#: application/views/debug/index.php:191 +#: application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "Вы используете ключ шифрования по умолчанию. Вам следует его изменить!" -#: application/views/debug/index.php:194 +#: application/views/debug/index.php:195 msgid "This will also enable the 'Keep me logged in' feature." msgstr "Это также включит функцию «Оставаться в системе»." -#: application/views/debug/index.php:195 +#: application/views/debug/index.php:196 #, php-format msgid "" "Change the value of %s to a new encryption key other then " @@ -5629,15 +5644,15 @@ msgstr "" "'flossie1234555541'. Выберите безопасный и длинный пароль. (Настоятельно " "рекомендуется)" -#: application/views/debug/index.php:201 +#: application/views/debug/index.php:202 msgid "You do not use the default encryption key" msgstr "Вы не используете ключ шифрования по умолчанию" -#: application/views/debug/index.php:208 +#: application/views/debug/index.php:209 msgid "Migrate Userdata" msgstr "Перенести пользовательский данные" -#: application/views/debug/index.php:210 +#: application/views/debug/index.php:211 msgid "" "Here you can migrate existing QSL cards and eQSL cards to the new userdata " "folder." @@ -5645,112 +5660,112 @@ msgstr "" "Здесь вы можете перенести существующие QSL-карточки и eQSL-карточки в новую " "папку userdata." -#: application/views/debug/index.php:223 +#: application/views/debug/index.php:224 msgid "Modules" msgstr "Модули" -#: application/views/debug/index.php:229 application/views/debug/index.php:240 -#: application/views/debug/index.php:251 application/views/debug/index.php:262 -#: application/views/debug/index.php:273 +#: application/views/debug/index.php:230 application/views/debug/index.php:241 +#: application/views/debug/index.php:252 application/views/debug/index.php:263 +#: application/views/debug/index.php:274 msgid "Installed" msgstr "Установленные" -#: application/views/debug/index.php:231 application/views/debug/index.php:242 -#: application/views/debug/index.php:253 application/views/debug/index.php:264 -#: application/views/debug/index.php:275 +#: application/views/debug/index.php:232 application/views/debug/index.php:243 +#: application/views/debug/index.php:254 application/views/debug/index.php:265 +#: application/views/debug/index.php:276 msgid "Not Installed" msgstr "Не установленные" -#: application/views/debug/index.php:282 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:654 msgid "Settings" msgstr "Настройки" -#: application/views/debug/index.php:411 +#: application/views/debug/index.php:412 msgid "Git Information" msgstr "Информация Git" -#: application/views/debug/index.php:415 +#: application/views/debug/index.php:416 msgid "Branch" msgstr "Ветка" -#: application/views/debug/index.php:426 application/views/debug/index.php:437 -#: application/views/debug/index.php:447 +#: application/views/debug/index.php:427 application/views/debug/index.php:438 +#: application/views/debug/index.php:448 msgid "n/a" msgstr "недоступно" -#: application/views/debug/index.php:432 +#: application/views/debug/index.php:433 msgid "Commit" msgstr "Коммит" -#: application/views/debug/index.php:442 +#: application/views/debug/index.php:443 msgid "Tag" msgstr "Тэг" -#: application/views/debug/index.php:452 +#: application/views/debug/index.php:453 msgid "Last Fetch" msgstr "Последнее обновление" -#: application/views/debug/index.php:464 +#: application/views/debug/index.php:465 msgid "Check for new version" msgstr "Проверить наличие новой версии" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:466 msgid "Update now" msgstr "Обновить сейчас" -#: application/views/debug/index.php:483 +#: application/views/debug/index.php:484 msgid "File download date" msgstr "Дата скачивания файла" -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:488 msgid "File" msgstr "Файл" -#: application/views/debug/index.php:488 +#: application/views/debug/index.php:489 msgid "Last update" msgstr "Последнее обновление" -#: application/views/debug/index.php:492 +#: application/views/debug/index.php:493 msgid "DXCC update from Club Log" msgstr "Обновление DXCC из Clublog" -#: application/views/debug/index.php:494 application/views/debug/index.php:500 -#: application/views/debug/index.php:505 application/views/debug/index.php:510 -#: application/views/debug/index.php:515 application/views/debug/index.php:520 -#: application/views/debug/index.php:525 +#: application/views/debug/index.php:495 application/views/debug/index.php:501 +#: application/views/debug/index.php:506 application/views/debug/index.php:511 +#: application/views/debug/index.php:516 application/views/debug/index.php:521 +#: application/views/debug/index.php:526 #: application/views/station_profile/edit.php:22 msgid "Update" msgstr "Обновить" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:499 msgid "DOK file download" msgstr "Скачать файл DOK" -#: application/views/debug/index.php:503 +#: application/views/debug/index.php:504 msgid "LoTW users download" msgstr "Скачать список пользователей LoTW" -#: application/views/debug/index.php:508 +#: application/views/debug/index.php:509 msgid "POTA file download" msgstr "Скачать файл POTA" -#: application/views/debug/index.php:513 +#: application/views/debug/index.php:514 msgid "SCP file download" msgstr "Скачать файл SCP" -#: application/views/debug/index.php:518 +#: application/views/debug/index.php:519 msgid "SOTA file download" msgstr "Скачать файл SOTA" -#: application/views/debug/index.php:523 +#: application/views/debug/index.php:524 msgid "WWFF file download" msgstr "Скачать файл WWFF" -#: application/views/debug/index.php:532 +#: application/views/debug/index.php:533 msgid "QSO-DB Maintenance" msgstr "Обслуживание БД QSO" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:537 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -5759,9 +5774,9 @@ msgstr[0] "База данных содержит %d QSO без привязан msgstr[1] "База данных содержит %d QSO без привязанного профиля QTH" msgstr[2] "База данных содержит %d QSO без привязанного профиля QTH" -#: application/views/debug/index.php:549 +#: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:38 +#: application/views/station_profile/create.php:57 #: application/views/station_profile/edit.php:46 #: application/views/station_profile/index.php:42 #: application/views/stationsetup/linkedlocations.php:32 @@ -5769,89 +5784,89 @@ msgstr[2] "База данных содержит %d QSO без привязан msgid "Station Callsign" msgstr "Позывной" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "Пожалуйста, отметьте QSO и привяжите их к существующему профилю QTH:" -#: application/views/debug/index.php:582 +#: application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" msgstr "Целевой профиль QTH" -#: application/views/debug/index.php:583 application/views/debug/index.php:594 +#: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" msgstr "Переназначить" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" "Каждое QSO в вашей базе данных привязано к соответствующему профилю QTH" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Everything ok" msgstr "Всё ОК" -#: application/views/debug/index.php:628 +#: application/views/debug/index.php:629 msgid "Bulgarian" msgstr "Болгарский" -#: application/views/debug/index.php:629 +#: application/views/debug/index.php:630 msgid "Chinese (Simplified)" msgstr "Китайский (упрощённый)" -#: application/views/debug/index.php:630 +#: application/views/debug/index.php:631 msgid "Czech" msgstr "Чешский" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:632 msgid "Dutch" msgstr "Голландский" -#: application/views/debug/index.php:632 +#: application/views/debug/index.php:633 msgid "English" msgstr "Английский" -#: application/views/debug/index.php:633 +#: application/views/debug/index.php:634 msgid "Finnish" msgstr "Финский" -#: application/views/debug/index.php:634 +#: application/views/debug/index.php:635 msgid "French" msgstr "Французский" -#: application/views/debug/index.php:635 +#: application/views/debug/index.php:636 msgid "German" msgstr "Немецкий" -#: application/views/debug/index.php:636 +#: application/views/debug/index.php:637 msgid "Greek" msgstr "Греческий" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:638 msgid "Italian" msgstr "Итальянский" -#: application/views/debug/index.php:638 +#: application/views/debug/index.php:639 msgid "Polish" msgstr "Польский" -#: application/views/debug/index.php:639 +#: application/views/debug/index.php:640 msgid "Portuguese" msgstr "Португальский" -#: application/views/debug/index.php:640 +#: application/views/debug/index.php:641 msgid "Russian" msgstr "Русский" -#: application/views/debug/index.php:641 +#: application/views/debug/index.php:642 msgid "Spanish" msgstr "Испанский" -#: application/views/debug/index.php:642 +#: application/views/debug/index.php:643 msgid "Swedish" msgstr "Шведский" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:644 msgid "Turkish" msgstr "Турецкий" @@ -6096,6 +6111,10 @@ msgid "QSL Date" msgstr "Дата QSL" #: application/views/eqslcard/index.php:60 +#: application/views/interface_assets/footer.php:2342 +#: application/views/interface_assets/footer.php:2360 +#: application/views/interface_assets/footer.php:2381 +#: application/views/interface_assets/footer.php:2399 #: application/views/qslcard/index.php:66 #: application/views/view_log/qso.php:614 msgid "View" @@ -6266,6 +6285,69 @@ msgstr "Режим распространения не поддерживает msgid "Version Info" msgstr "Информация о версии" +#: application/views/interface_assets/footer.php:392 +msgid "Description:" +msgstr "" + +#: application/views/interface_assets/footer.php:395 +msgid "Query description" +msgstr "" + +#: application/views/interface_assets/footer.php:411 +msgid "Your query has been saved!" +msgstr "" + +#: application/views/interface_assets/footer.php:413 +#: application/views/search/filter.php:46 +msgid "Edit queries" +msgstr "Редактировать запросы" + +#: application/views/interface_assets/footer.php:415 +msgid "Stored queries:" +msgstr "" + +#: application/views/interface_assets/footer.php:420 +#: application/views/search/filter.php:60 +msgid "Run Query" +msgstr "Выполнить запрос" + +#: application/views/interface_assets/footer.php:432 +#: application/views/interface_assets/footer.php:561 +#: application/views/interface_assets/footer.php:625 +msgid "Stored Queries" +msgstr "" + +#: application/views/interface_assets/footer.php:437 +#: application/views/interface_assets/footer.php:630 +msgid "You need to make a query before you search!" +msgstr "" + +#: application/views/interface_assets/footer.php:458 +#: application/views/interface_assets/footer.php:589 +#: application/views/search/filter.php:79 +msgid "Export to ADIF" +msgstr "Экспортировать в ADIF" + +#: application/views/interface_assets/footer.php:496 +msgid "Warning! Are you sure you want delete this stored query?" +msgstr "" + +#: application/views/interface_assets/footer.php:510 +msgid "The stored query has been deleted!" +msgstr "" + +#: application/views/interface_assets/footer.php:519 +msgid "The stored query could not be deleted. Please try again!" +msgstr "" + +#: application/views/interface_assets/footer.php:545 +msgid "The query description has been updated!" +msgstr "" + +#: application/views/interface_assets/footer.php:549 +msgid "Something went wrong with the save. Please try again!" +msgstr "" + #: application/views/interface_assets/footer.php:672 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " @@ -6276,20 +6358,65 @@ msgstr "" "действителен. Проверьте, какой DXCC для данного конкретного места является " "правильным. Если вы уверены, проигнорируйте это предупреждение." -#: application/views/interface_assets/footer.php:1374 -#: application/views/interface_assets/footer.php:1378 -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1518 -#: application/views/interface_assets/footer.php:1522 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1174 +#, php-format +msgid "You're not logged it. Please login" +msgstr "" + +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1384 +#: application/views/interface_assets/footer.php:1387 +#: application/views/interface_assets/footer.php:1524 +#: application/views/interface_assets/footer.php:1528 +#: application/views/interface_assets/footer.php:1531 msgid "grid square" msgstr "квадрат(/-а/-ов)" -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1387 +#: application/views/interface_assets/footer.php:1531 msgid "Total count" msgstr "Всего" +#: application/views/interface_assets/footer.php:2118 +msgid "QSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2138 +msgid "Warning! Are you sure you want to delete this QSL card?" +msgstr "" + +#: application/views/interface_assets/footer.php:2178 +#: application/views/view_log/qso.php:42 +msgid "eQSL Card" +msgstr "eQSL-карточка" + +#: application/views/interface_assets/footer.php:2180 +msgid "eQSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2353 +#: application/views/interface_assets/footer.php:2392 +#: application/views/view_log/qso.php:604 +msgid "QSL image file" +msgstr "Изображение QSL-карточки" + +#: application/views/interface_assets/footer.php:2372 +msgid "Front QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2410 +msgid "Back QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2421 +#: application/views/interface_assets/footer.php:2446 +msgid "Add additional QSOs to a QSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2457 +msgid "Something went wrong. Please try again!" +msgstr "" + #: application/views/interface_assets/header.php:86 msgid "Developer Mode" msgstr "Режим разработчика" @@ -6844,12 +6971,12 @@ msgstr "QSL отправлено" #: application/views/qso/edit_ajax.php:495 #: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:190 -#: application/views/station_profile/create.php:198 +#: application/views/station_profile/create.php:209 #: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:256 -#: application/views/station_profile/create.php:267 -#: application/views/station_profile/create.php:274 +#: application/views/station_profile/create.php:236 +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/create.php:286 +#: application/views/station_profile/create.php:293 #: application/views/station_profile/edit.php:330 #: application/views/station_profile/edit.php:338 #: application/views/station_profile/edit.php:364 @@ -6882,12 +7009,12 @@ msgstr "Да" #: application/views/qso/edit_ajax.php:494 #: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/create.php:199 +#: application/views/station_profile/create.php:210 #: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/create.php:266 -#: application/views/station_profile/create.php:273 +#: application/views/station_profile/create.php:237 +#: application/views/station_profile/create.php:276 +#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:292 #: application/views/station_profile/edit.php:331 #: application/views/station_profile/edit.php:339 #: application/views/station_profile/edit.php:365 @@ -8569,7 +8696,7 @@ msgid "Search DXCluster for latest Spot" msgstr "Поиск в DX кластере последнего спота" #: application/views/qso/index.php:196 application/views/qso/index.php:439 -#: application/views/station_profile/create.php:130 +#: application/views/station_profile/create.php:149 #: application/views/station_profile/edit.php:191 #: application/views/user/edit.php:583 application/views/view_log/qso.php:282 #: application/views/view_log/qso.php:549 @@ -8577,7 +8704,7 @@ msgid "IOTA Reference" msgstr "Справочник IOTA" #: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:146 +#: application/views/station_profile/create.php:165 #: application/views/station_profile/edit.php:219 #: application/views/user/edit.php:587 application/views/view_log/qso.php:289 #: application/views/view_log/qso.php:556 @@ -8843,26 +8970,14 @@ msgstr "Некорректных зон CQ не найдено." msgid "Save query" msgstr "Сохранить запрос" -#: application/views/search/filter.php:46 -msgid "Edit queries" -msgstr "Редактировать запросы" - #: application/views/search/filter.php:50 msgid "Stored queries" msgstr "Сохранённые запросы" -#: application/views/search/filter.php:60 -msgid "Run Query" -msgstr "Выполнить запрос" - #: application/views/search/filter.php:69 msgid "search filter functions" msgstr "функции фильтров поиска" -#: application/views/search/filter.php:79 -msgid "Export to ADIF" -msgstr "Экспортировать в ADIF" - #: application/views/search/filter.php:79 msgid "Search Results" msgstr "Результат поиска" @@ -9221,115 +9336,115 @@ msgstr "" "Полное описание всех команд и необходимый синтаксис можно найти в %s нашей " "Вики." -#: application/views/station_profile/create.php:32 +#: application/views/station_profile/create.php:51 #: application/views/station_profile/edit.php:40 msgid "Location Name" msgstr "Название профиля QTH" -#: application/views/station_profile/create.php:33 -#: application/views/station_profile/create.php:34 +#: application/views/station_profile/create.php:52 +#: application/views/station_profile/create.php:53 #: application/views/station_profile/edit.php:42 msgctxt "Station Location Setup" msgid "Home QTH" msgstr "Домашний QTH" -#: application/views/station_profile/create.php:34 +#: application/views/station_profile/create.php:53 #: application/views/station_profile/edit.php:42 #, php-format msgid "Shortname for the station location. For example: %s" msgstr "Короткое название профиля QTH. К примеру: %s" -#: application/views/station_profile/create.php:40 +#: application/views/station_profile/create.php:59 #: application/views/station_profile/edit.php:48 msgid "Station callsign. For example: 4W7EST/P" msgstr "Позывной станции, например: 4W7EST/P" -#: application/views/station_profile/create.php:44 +#: application/views/station_profile/create.php:63 #: application/views/station_profile/edit.php:52 msgid "Station Power (W)" msgstr "Мощность станции (Вт)" -#: application/views/station_profile/create.php:46 +#: application/views/station_profile/create.php:65 #: application/views/station_profile/edit.php:54 msgid "Default station power in Watt. Overwritten by CAT." msgstr "Мощность станции по умолчанию в Вт. Перезаписывается данными из CAT." -#: application/views/station_profile/create.php:49 +#: application/views/station_profile/create.php:68 #: application/views/station_profile/edit.php:69 msgid "Station DXCC" msgstr "DXCC станции" -#: application/views/station_profile/create.php:52 +#: application/views/station_profile/create.php:71 #: application/views/station_profile/edit.php:72 msgctxt "DXCC selection" msgid "None" msgstr "нет" -#: application/views/station_profile/create.php:59 +#: application/views/station_profile/create.php:78 #: application/views/station_profile/edit.php:85 msgid "Station DXCC entity. For example: Bolivia" msgstr "Субъект DXCC станции. Например: Боливия" -#: application/views/station_profile/create.php:64 +#: application/views/station_profile/create.php:83 #: application/views/station_profile/edit.php:91 msgid "Station City" msgstr "город" -#: application/views/station_profile/create.php:66 +#: application/views/station_profile/create.php:85 #: application/views/station_profile/edit.php:93 msgid "Station city. For example: Oslo" msgstr "Город станции. К примеру, Осло" -#: application/views/station_profile/create.php:75 +#: application/views/station_profile/create.php:94 #: application/views/station_profile/edit.php:105 msgid "Station state. Applies to certain countries only." msgstr "Штат/область станции. Применимо только к некоторым странам." -#: application/views/station_profile/create.php:80 +#: application/views/station_profile/create.php:99 #: application/views/station_profile/edit.php:110 msgid "Station County" msgstr "Графство/район" -#: application/views/station_profile/create.php:82 +#: application/views/station_profile/create.php:101 #: application/views/station_profile/edit.php:112 msgid "Station County (Only used for USA/Alaska/Hawaii)." msgstr "Графство/район станции. (Используется только для некоторых стран)." -#: application/views/station_profile/create.php:97 +#: application/views/station_profile/create.php:116 #: application/views/station_profile/edit.php:138 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your CQ Zone then %s to find it!" msgstr "Если вы не знаете свою зону CQ, то %s, чтобы найти ее!" -#: application/views/station_profile/create.php:97 -#: application/views/station_profile/create.php:111 -#: application/views/station_profile/create.php:125 +#: application/views/station_profile/create.php:116 +#: application/views/station_profile/create.php:130 +#: application/views/station_profile/create.php:144 #: application/views/station_profile/edit.php:138 #: application/views/station_profile/edit.php:155 #: application/views/station_profile/edit.php:179 msgid "click here" msgstr "кликните здесь" -#: application/views/station_profile/create.php:111 +#: application/views/station_profile/create.php:130 #: application/views/station_profile/edit.php:155 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your ITU Zone then %s to find it!" msgstr "Если вы не знаете свою зону ITU, то %s, чтобы найти ее!" -#: application/views/station_profile/create.php:116 +#: application/views/station_profile/create.php:135 #: application/views/station_profile/edit.php:167 #: application/views/station_profile/edit.php:170 msgid "Station Gridsquare" msgstr "Квадрат" -#: application/views/station_profile/create.php:121 +#: application/views/station_profile/create.php:140 #: application/views/station_profile/edit.php:175 msgid "Get Gridsquare" msgstr "Получить квадрат" -#: application/views/station_profile/create.php:125 +#: application/views/station_profile/create.php:144 #: application/views/station_profile/edit.php:179 #, php-format msgctxt "uses 'click here'" @@ -9339,7 +9454,7 @@ msgid "" msgstr "" "Квадрат станции, например: HM54AP. Если вы не знаете свой квадрат, то %s!" -#: application/views/station_profile/create.php:126 +#: application/views/station_profile/create.php:145 #: application/views/station_profile/edit.php:180 msgid "" "If you are located on a grid line, enter multiple grid squares separated " @@ -9348,50 +9463,50 @@ msgstr "" "Если вы располагаетесь на границе квадратов, то укажите квадраты через " "запятую, к примеру: IO77,IO78,IO87,IO88." -#: application/views/station_profile/create.php:141 +#: application/views/station_profile/create.php:160 #: application/views/station_profile/edit.php:205 msgid "Station IOTA reference. For example: EU-005" msgstr "Референция IOTA станции, к примеру: EU-005" -#: application/views/station_profile/create.php:142 +#: application/views/station_profile/create.php:161 #: application/views/station_profile/edit.php:206 msgid "IOTA World website" msgstr "Веб-сайт IOTA" -#: application/views/station_profile/create.php:142 +#: application/views/station_profile/create.php:161 #: application/views/station_profile/edit.php:206 #, php-format msgid "You can look up IOTA references at the %s." msgstr "Референции IOTA можно найти на сайте %s." -#: application/views/station_profile/create.php:148 +#: application/views/station_profile/create.php:167 #: application/views/station_profile/edit.php:221 msgid "SOTA Maps website" msgstr "Веб-сайт карт SOTA" -#: application/views/station_profile/create.php:148 +#: application/views/station_profile/create.php:167 #: application/views/station_profile/edit.php:221 #, php-format msgid "Station SOTA reference. You can look up SOTA references at the %s." msgstr "Референция SOTA станции. Ссылки на референции SOTA можно найти на %s." -#: application/views/station_profile/create.php:154 +#: application/views/station_profile/create.php:173 #: application/views/station_profile/edit.php:234 msgid "GMA Map website" msgstr "Веб-сайт карт GMA" -#: application/views/station_profile/create.php:154 +#: application/views/station_profile/create.php:173 #: application/views/station_profile/edit.php:234 #, php-format msgid "Station WWFF reference. You can look up WWFF references at the %s." msgstr "Референция WWFF станции. Ссылки на референции WWFF можно найти на %s." -#: application/views/station_profile/create.php:160 +#: application/views/station_profile/create.php:179 #: application/views/station_profile/edit.php:247 msgid "POTA Map website" msgstr "Веб-сайт карт POTA" -#: application/views/station_profile/create.php:160 +#: application/views/station_profile/create.php:179 #: application/views/station_profile/edit.php:247 #, php-format msgid "" @@ -9399,43 +9514,43 @@ msgid "" "look up POTA references at the %s." msgstr "Референция POTA станции. Ссылки на референции POTA можно найти на %s." -#: application/views/station_profile/create.php:164 +#: application/views/station_profile/create.php:183 #: application/views/station_profile/edit.php:260 msgid "Signature Name" msgstr "Имя подписи" -#: application/views/station_profile/create.php:166 +#: application/views/station_profile/create.php:185 #: application/views/station_profile/edit.php:262 msgid "Station Signature (e.g. GMA).." msgstr "Подпись станции (т.е. GMA).." -#: application/views/station_profile/create.php:170 +#: application/views/station_profile/create.php:189 #: application/views/station_profile/edit.php:266 msgid "Signature Information" msgstr "Информация о подписи" -#: application/views/station_profile/create.php:172 +#: application/views/station_profile/create.php:191 #: application/views/station_profile/edit.php:268 msgid "Station Signature Info (e.g. DA/NW-357)." msgstr "Информация о подписис станции (т.е. DA/NW-357)." -#: application/views/station_profile/create.php:176 +#: application/views/station_profile/create.php:195 #: application/views/station_profile/edit.php:281 msgctxt "Probably no translation needed" msgid "eQSL QTH Nickname" msgstr "eQSL QTH Nickname" -#: application/views/station_profile/create.php:178 +#: application/views/station_profile/create.php:197 #: application/views/station_profile/edit.php:283 msgid "The QTH Nickname which is configured in your eQSL Profile" msgstr "Название профиля, который сконфигурирован в eQSL для данного QTH" -#: application/views/station_profile/create.php:182 +#: application/views/station_profile/create.php:201 #: application/views/station_profile/edit.php:286 msgid "Default QSLMSG" msgstr "Сообщение в QSL (QSLMSG) по умолчанию" -#: application/views/station_profile/create.php:185 +#: application/views/station_profile/create.php:204 #: application/views/station_profile/edit.php:289 msgid "" "Define a default message that will be populated and sent for each QSO for " @@ -9444,12 +9559,12 @@ msgstr "" "Определите сообщение по умолчанию, которое будет заполняться и отправляться " "при каждом QSO для данного профиля QTH." -#: application/views/station_profile/create.php:188 +#: application/views/station_profile/create.php:207 #: application/views/station_profile/edit.php:328 msgid "Ignore Clublog Upload" msgstr "Игнорировать загрузку в Clublog" -#: application/views/station_profile/create.php:193 +#: application/views/station_profile/create.php:212 #: application/views/station_profile/edit.php:333 msgid "" "If enabled, the QSOs made from this location will not be uploaded to " @@ -9460,17 +9575,17 @@ msgstr "" "загружаться в Clublog. Если эта функция отключилась самостоятельно, " "проверьте, правильно ли настроен позыной в Clublog" -#: application/views/station_profile/create.php:196 +#: application/views/station_profile/create.php:215 #: application/views/station_profile/edit.php:336 msgid "ClubLog Realtime Upload" msgstr "Загрузка в Clublog в реальном времени" -#: application/views/station_profile/create.php:205 +#: application/views/station_profile/create.php:224 #: application/views/station_profile/edit.php:352 msgid "HRDLog.net Username" msgstr "Имя пользователя в HRDLog.net" -#: application/views/station_profile/create.php:207 +#: application/views/station_profile/create.php:226 #: application/views/station_profile/edit.php:354 msgid "" "The username you are registered with at HRDlog.net (usually your callsign)." @@ -9478,109 +9593,109 @@ msgstr "" "Имя пользователя, под которым вы зарегистрированы на сайте HRDlog.net " "(обычно это ваш позывной)." -#: application/views/station_profile/create.php:210 +#: application/views/station_profile/create.php:229 #: application/views/station_profile/edit.php:357 msgid "HRDLog.net API Key" msgstr "Ключ API HRDLog.net" -#: application/views/station_profile/create.php:212 +#: application/views/station_profile/create.php:231 #: application/views/station_profile/edit.php:359 #, php-format msgctxt "HRDLog.net Userprofile page" msgid "Create your API Code on your %s" msgstr "Создайте код API на вашей %s" -#: application/views/station_profile/create.php:212 +#: application/views/station_profile/create.php:231 #: application/views/station_profile/edit.php:359 msgid "HRDLog.net Userprofile page" msgstr "странице профиля пользователя на HRDLog.net" -#: application/views/station_profile/create.php:215 +#: application/views/station_profile/create.php:234 #: application/views/station_profile/edit.php:362 msgid "HRDLog.net Logbook Realtime Upload" msgstr "Загрузка в журнал HRDLog.net в реальном времени" -#: application/views/station_profile/create.php:224 +#: application/views/station_profile/create.php:243 #: application/views/station_profile/edit.php:297 msgid "Subscription Required" msgstr "Требуется подписка" -#: application/views/station_profile/create.php:229 +#: application/views/station_profile/create.php:248 msgctxt "Probably no translation needed" msgid "QRZ.com Logbook API Key" msgstr "Ключ API QRZ.com Logbook" -#: application/views/station_profile/create.php:232 +#: application/views/station_profile/create.php:251 msgid "Test API-Key" msgstr "Проверить ключ API" -#: application/views/station_profile/create.php:235 +#: application/views/station_profile/create.php:254 #: application/views/station_profile/edit.php:306 #, php-format msgctxt "the QRZ.com Logbook settings page" msgid "Find your API key on %s" msgstr "Ваши ключи API находятся на %s" -#: application/views/station_profile/create.php:235 +#: application/views/station_profile/create.php:254 #: application/views/station_profile/edit.php:306 msgid "the QRZ.com Logbook settings page" msgstr "странице настроек QRZ.com Logbook" -#: application/views/station_profile/create.php:238 +#: application/views/station_profile/create.php:257 #: application/views/station_profile/edit.php:310 msgid "QRZ.com Logbook Upload" msgstr "Загрузка в QRZ.com Logbook" -#: application/views/station_profile/create.php:241 +#: application/views/station_profile/create.php:260 #: application/views/station_profile/edit.php:313 msgid "Realtime" msgstr "В реальном времени" -#: application/views/station_profile/create.php:249 +#: application/views/station_profile/create.php:268 #: application/views/station_profile/edit.php:378 msgctxt "Probably no translation needed" msgid "QO-100 Dx Club API Key" msgstr "Ключ API QO-100 Dx Club" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:270 #: application/views/station_profile/edit.php:380 #, php-format msgctxt "QO-100 Dx Club's profile page" msgid "Create your API key on your %s" msgstr "Создайте ключ API на своей %s" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:270 #: application/views/station_profile/edit.php:380 msgid "QO-100 Dx Club's profile page" msgstr "странице профиля в QO-100 Dx Club" -#: application/views/station_profile/create.php:254 +#: application/views/station_profile/create.php:273 #: application/views/station_profile/edit.php:383 msgid "QO-100 Dx Club Realtime Upload" msgstr "Загрузка QO-100 Dx Club в реальном времени" -#: application/views/station_profile/create.php:264 +#: application/views/station_profile/create.php:283 #: application/views/station_profile/edit.php:401 msgid "OQRS Enabled" msgstr "OQRS включен" -#: application/views/station_profile/create.php:271 +#: application/views/station_profile/create.php:290 #: application/views/station_profile/edit.php:408 msgid "OQRS Email alert" msgstr "Оповещение о OQRS о емэйл" -#: application/views/station_profile/create.php:276 +#: application/views/station_profile/create.php:295 #: application/views/station_profile/edit.php:413 msgid "Make sure email is set up under admin and global options." msgstr "" "Убедитесь, что емэйл сконфигурирован администратором в общих настройках." -#: application/views/station_profile/create.php:279 +#: application/views/station_profile/create.php:298 #: application/views/station_profile/edit.php:416 msgid "OQRS Text" msgstr "Текст OQRS" -#: application/views/station_profile/create.php:281 +#: application/views/station_profile/create.php:300 #: application/views/station_profile/edit.php:418 msgid "Some info you want to add regarding QSL'ing." msgstr "Информация, которую вы хотите добавить, касающаяся QSL." @@ -10699,10 +10814,6 @@ msgstr "Детали QSO" msgid "QSL Management" msgstr "QSL менеджемент" -#: application/views/view_log/qso.php:42 -msgid "eQSL Card" -msgstr "eQSL-карточка" - #: application/views/view_log/qso.php:128 msgid "Total Distance" msgstr "Суммарная дистанция" @@ -10774,10 +10885,6 @@ msgstr "Больше QSO" msgid "Details" msgstr "Подробно" -#: application/views/view_log/qso.php:604 -msgid "QSL image file" -msgstr "Изображение QSL-карточки" - #: application/views/view_log/qso.php:630 msgid "Uploaded QSL Card front image" msgstr "Загруженное изображение лицевой стороны QSL карточки" @@ -10919,6 +11026,19 @@ msgstr "Ваш позывной:" msgid "Submit Request" msgstr "Отправить запрос" +#, php-format +#~ msgid "" +#~ "The current migration is not the version it is supposed to be. Reload " +#~ "this page. If this warning persists, your migration is probably locked " +#~ "due to a past failed process. Check the folder %s for a file called %s " +#~ "and remove this file to force the migration to run again." +#~ msgstr "" +#~ "Текущая версия миграции не является той, которой она должна быть. " +#~ "Перезагрузите эту страницу. Если это предупреждение сохраняется, ваша " +#~ "миграция, вероятно, заблокирована из-за предыдущего неудачного процесса. " +#~ "Проверьте папку %s на наличие файла с именем %s и удалите этот файл, " +#~ "чтобы принудительно запустить миграцию снова." + #~ msgid "VHF/UHF Century Club (VUCC)" #~ msgstr "VHF / UHF Century Club (VUCC)" diff --git a/application/locale/sv_SE/LC_MESSAGES/messages.po b/application/locale/sv_SE/LC_MESSAGES/messages.po index 0d6b5de5b..41dccd4ac 100644 --- a/application/locale/sv_SE/LC_MESSAGES/messages.po +++ b/application/locale/sv_SE/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-01 15:48+0000\n" +"POT-Creation-Date: 2024-08-06 18:03+0000\n" "PO-Revision-Date: 2024-07-09 13:26+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Swedish here for " +"more information." msgstr "" #: application/views/debug/index.php:48 #, php-format +msgid "Current migration is %s" +msgstr "" + +#: application/views/debug/index.php:49 +#, php-format msgid "Migration should be %s" msgstr "" -#: application/views/debug/index.php:53 +#: application/views/debug/index.php:54 msgid "Environment" msgstr "" -#: application/views/debug/index.php:61 +#: application/views/debug/index.php:62 msgid "Total QSO on this instance" msgstr "" -#: application/views/debug/index.php:69 +#: application/views/debug/index.php:70 msgid "Server Information" msgstr "" -#: application/views/debug/index.php:73 +#: application/views/debug/index.php:74 msgid "Server Software" msgstr "" -#: application/views/debug/index.php:78 +#: application/views/debug/index.php:79 msgid "PHP Version" msgstr "" -#: application/views/debug/index.php:84 +#: application/views/debug/index.php:85 msgid "Deprecated" msgstr "" -#: application/views/debug/index.php:91 +#: application/views/debug/index.php:92 msgid "MySQL Version" msgstr "" -#: application/views/debug/index.php:95 +#: application/views/debug/index.php:96 msgid "Codeigniter Version" msgstr "" -#: application/views/debug/index.php:103 +#: application/views/debug/index.php:104 msgid "Folder Permissions" msgstr "" -#: application/views/debug/index.php:105 +#: application/views/debug/index.php:106 msgid "" "This verifies that the folders used by Wavelog have read and write " "permissions by PHP." msgstr "" -#: application/views/debug/index.php:111 application/views/debug/index.php:122 -#: application/views/debug/index.php:133 application/views/debug/index.php:144 -#: application/views/debug/index.php:156 +#: application/views/debug/index.php:112 application/views/debug/index.php:123 +#: application/views/debug/index.php:134 application/views/debug/index.php:145 +#: application/views/debug/index.php:157 msgid "Success" msgstr "" -#: application/views/debug/index.php:113 application/views/debug/index.php:124 -#: application/views/debug/index.php:135 application/views/debug/index.php:146 -#: application/views/debug/index.php:158 +#: application/views/debug/index.php:114 application/views/debug/index.php:125 +#: application/views/debug/index.php:136 application/views/debug/index.php:147 +#: application/views/debug/index.php:159 msgid "Failed" msgstr "" -#: application/views/debug/index.php:168 +#: application/views/debug/index.php:169 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:174 +#: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" -#: application/views/debug/index.php:176 application/views/debug/index.php:193 +#: application/views/debug/index.php:177 application/views/debug/index.php:194 #, php-format msgid "Please edit your %s File:" msgstr "" -#: application/views/debug/index.php:177 +#: application/views/debug/index.php:178 msgid "" "Go to your application/config Folder and compare config.sample.php with your " "config.php" msgstr "" -#: application/views/debug/index.php:178 +#: application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:184 +#: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" msgstr "" -#: application/views/debug/index.php:184 application/views/debug/index.php:201 +#: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" msgstr "" -#: application/views/debug/index.php:191 +#: application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "" -#: application/views/debug/index.php:194 +#: application/views/debug/index.php:195 msgid "This will also enable the 'Keep me logged in' feature." msgstr "" -#: application/views/debug/index.php:195 +#: application/views/debug/index.php:196 #, php-format msgid "" "Change the value of %s to a new encryption key other then " "'flossie1234555541'. Choose a safe and long password. (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:201 +#: application/views/debug/index.php:202 msgid "You do not use the default encryption key" msgstr "" -#: application/views/debug/index.php:208 +#: application/views/debug/index.php:209 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:210 +#: application/views/debug/index.php:211 msgid "" "Here you can migrate existing QSL cards and eQSL cards to the new userdata " "folder." msgstr "" -#: application/views/debug/index.php:223 +#: application/views/debug/index.php:224 msgid "Modules" msgstr "" -#: application/views/debug/index.php:229 application/views/debug/index.php:240 -#: application/views/debug/index.php:251 application/views/debug/index.php:262 -#: application/views/debug/index.php:273 +#: application/views/debug/index.php:230 application/views/debug/index.php:241 +#: application/views/debug/index.php:252 application/views/debug/index.php:263 +#: application/views/debug/index.php:274 msgid "Installed" msgstr "" -#: application/views/debug/index.php:231 application/views/debug/index.php:242 -#: application/views/debug/index.php:253 application/views/debug/index.php:264 -#: application/views/debug/index.php:275 +#: application/views/debug/index.php:232 application/views/debug/index.php:243 +#: application/views/debug/index.php:254 application/views/debug/index.php:265 +#: application/views/debug/index.php:276 msgid "Not Installed" msgstr "" -#: application/views/debug/index.php:282 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:654 msgid "Settings" msgstr "" -#: application/views/debug/index.php:411 +#: application/views/debug/index.php:412 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:415 +#: application/views/debug/index.php:416 msgid "Branch" msgstr "" -#: application/views/debug/index.php:426 application/views/debug/index.php:437 -#: application/views/debug/index.php:447 +#: application/views/debug/index.php:427 application/views/debug/index.php:438 +#: application/views/debug/index.php:448 msgid "n/a" msgstr "" -#: application/views/debug/index.php:432 +#: application/views/debug/index.php:433 msgid "Commit" msgstr "" -#: application/views/debug/index.php:442 +#: application/views/debug/index.php:443 msgid "Tag" msgstr "" -#: application/views/debug/index.php:452 +#: application/views/debug/index.php:453 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:464 +#: application/views/debug/index.php:465 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:466 msgid "Update now" msgstr "" -#: application/views/debug/index.php:483 +#: application/views/debug/index.php:484 msgid "File download date" msgstr "" -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:488 msgid "File" msgstr "" -#: application/views/debug/index.php:488 +#: application/views/debug/index.php:489 msgid "Last update" msgstr "" -#: application/views/debug/index.php:492 +#: application/views/debug/index.php:493 msgid "DXCC update from Club Log" msgstr "" -#: application/views/debug/index.php:494 application/views/debug/index.php:500 -#: application/views/debug/index.php:505 application/views/debug/index.php:510 -#: application/views/debug/index.php:515 application/views/debug/index.php:520 -#: application/views/debug/index.php:525 +#: application/views/debug/index.php:495 application/views/debug/index.php:501 +#: application/views/debug/index.php:506 application/views/debug/index.php:511 +#: application/views/debug/index.php:516 application/views/debug/index.php:521 +#: application/views/debug/index.php:526 #: application/views/station_profile/edit.php:22 msgid "Update" msgstr "" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:499 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:503 +#: application/views/debug/index.php:504 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:508 +#: application/views/debug/index.php:509 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:513 +#: application/views/debug/index.php:514 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:518 +#: application/views/debug/index.php:519 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:523 +#: application/views/debug/index.php:524 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:532 +#: application/views/debug/index.php:533 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:537 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -5499,9 +5519,9 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:549 +#: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:38 +#: application/views/station_profile/create.php:57 #: application/views/station_profile/edit.php:46 #: application/views/station_profile/index.php:42 #: application/views/stationsetup/linkedlocations.php:32 @@ -5509,88 +5529,88 @@ msgstr[1] "" msgid "Station Callsign" msgstr "" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:582 +#: application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:583 application/views/debug/index.php:594 +#: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:628 +#: application/views/debug/index.php:629 msgid "Bulgarian" msgstr "" -#: application/views/debug/index.php:629 +#: application/views/debug/index.php:630 msgid "Chinese (Simplified)" msgstr "" -#: application/views/debug/index.php:630 +#: application/views/debug/index.php:631 msgid "Czech" msgstr "" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:632 msgid "Dutch" msgstr "" -#: application/views/debug/index.php:632 +#: application/views/debug/index.php:633 msgid "English" msgstr "" -#: application/views/debug/index.php:633 +#: application/views/debug/index.php:634 msgid "Finnish" msgstr "" -#: application/views/debug/index.php:634 +#: application/views/debug/index.php:635 msgid "French" msgstr "" -#: application/views/debug/index.php:635 +#: application/views/debug/index.php:636 msgid "German" msgstr "" -#: application/views/debug/index.php:636 +#: application/views/debug/index.php:637 msgid "Greek" msgstr "" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:638 msgid "Italian" msgstr "" -#: application/views/debug/index.php:638 +#: application/views/debug/index.php:639 msgid "Polish" msgstr "" -#: application/views/debug/index.php:639 +#: application/views/debug/index.php:640 msgid "Portuguese" msgstr "" -#: application/views/debug/index.php:640 +#: application/views/debug/index.php:641 msgid "Russian" msgstr "" -#: application/views/debug/index.php:641 +#: application/views/debug/index.php:642 msgid "Spanish" msgstr "" -#: application/views/debug/index.php:642 +#: application/views/debug/index.php:643 msgid "Swedish" msgstr "" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:644 msgid "Turkish" msgstr "" @@ -5809,6 +5829,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:60 +#: application/views/interface_assets/footer.php:2342 +#: application/views/interface_assets/footer.php:2360 +#: application/views/interface_assets/footer.php:2381 +#: application/views/interface_assets/footer.php:2399 #: application/views/qslcard/index.php:66 #: application/views/view_log/qso.php:614 msgid "View" @@ -5969,6 +5993,69 @@ msgstr "" msgid "Version Info" msgstr "" +#: application/views/interface_assets/footer.php:392 +msgid "Description:" +msgstr "" + +#: application/views/interface_assets/footer.php:395 +msgid "Query description" +msgstr "" + +#: application/views/interface_assets/footer.php:411 +msgid "Your query has been saved!" +msgstr "" + +#: application/views/interface_assets/footer.php:413 +#: application/views/search/filter.php:46 +msgid "Edit queries" +msgstr "" + +#: application/views/interface_assets/footer.php:415 +msgid "Stored queries:" +msgstr "" + +#: application/views/interface_assets/footer.php:420 +#: application/views/search/filter.php:60 +msgid "Run Query" +msgstr "" + +#: application/views/interface_assets/footer.php:432 +#: application/views/interface_assets/footer.php:561 +#: application/views/interface_assets/footer.php:625 +msgid "Stored Queries" +msgstr "" + +#: application/views/interface_assets/footer.php:437 +#: application/views/interface_assets/footer.php:630 +msgid "You need to make a query before you search!" +msgstr "" + +#: application/views/interface_assets/footer.php:458 +#: application/views/interface_assets/footer.php:589 +#: application/views/search/filter.php:79 +msgid "Export to ADIF" +msgstr "" + +#: application/views/interface_assets/footer.php:496 +msgid "Warning! Are you sure you want delete this stored query?" +msgstr "" + +#: application/views/interface_assets/footer.php:510 +msgid "The stored query has been deleted!" +msgstr "" + +#: application/views/interface_assets/footer.php:519 +msgid "The stored query could not be deleted. Please try again!" +msgstr "" + +#: application/views/interface_assets/footer.php:545 +msgid "The query description has been updated!" +msgstr "" + +#: application/views/interface_assets/footer.php:549 +msgid "Something went wrong with the save. Please try again!" +msgstr "" + #: application/views/interface_assets/footer.php:672 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " @@ -5976,20 +6063,65 @@ msgid "" "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:1374 -#: application/views/interface_assets/footer.php:1378 -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1518 -#: application/views/interface_assets/footer.php:1522 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1174 +#, php-format +msgid "You're not logged it. Please login" +msgstr "" + +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1384 +#: application/views/interface_assets/footer.php:1387 +#: application/views/interface_assets/footer.php:1524 +#: application/views/interface_assets/footer.php:1528 +#: application/views/interface_assets/footer.php:1531 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1387 +#: application/views/interface_assets/footer.php:1531 msgid "Total count" msgstr "Totalt antal" +#: application/views/interface_assets/footer.php:2118 +msgid "QSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2138 +msgid "Warning! Are you sure you want to delete this QSL card?" +msgstr "" + +#: application/views/interface_assets/footer.php:2178 +#: application/views/view_log/qso.php:42 +msgid "eQSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2180 +msgid "eQSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2353 +#: application/views/interface_assets/footer.php:2392 +#: application/views/view_log/qso.php:604 +msgid "QSL image file" +msgstr "" + +#: application/views/interface_assets/footer.php:2372 +msgid "Front QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2410 +msgid "Back QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2421 +#: application/views/interface_assets/footer.php:2446 +msgid "Add additional QSOs to a QSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2457 +msgid "Something went wrong. Please try again!" +msgstr "" + #: application/views/interface_assets/header.php:86 msgid "Developer Mode" msgstr "" @@ -6537,12 +6669,12 @@ msgstr "" #: application/views/qso/edit_ajax.php:495 #: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:190 -#: application/views/station_profile/create.php:198 +#: application/views/station_profile/create.php:209 #: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:256 -#: application/views/station_profile/create.php:267 -#: application/views/station_profile/create.php:274 +#: application/views/station_profile/create.php:236 +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/create.php:286 +#: application/views/station_profile/create.php:293 #: application/views/station_profile/edit.php:330 #: application/views/station_profile/edit.php:338 #: application/views/station_profile/edit.php:364 @@ -6575,12 +6707,12 @@ msgstr "Ja" #: application/views/qso/edit_ajax.php:494 #: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/create.php:199 +#: application/views/station_profile/create.php:210 #: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/create.php:266 -#: application/views/station_profile/create.php:273 +#: application/views/station_profile/create.php:237 +#: application/views/station_profile/create.php:276 +#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:292 #: application/views/station_profile/edit.php:331 #: application/views/station_profile/edit.php:339 #: application/views/station_profile/edit.php:365 @@ -8192,7 +8324,7 @@ msgid "Search DXCluster for latest Spot" msgstr "" #: application/views/qso/index.php:196 application/views/qso/index.php:439 -#: application/views/station_profile/create.php:130 +#: application/views/station_profile/create.php:149 #: application/views/station_profile/edit.php:191 #: application/views/user/edit.php:583 application/views/view_log/qso.php:282 #: application/views/view_log/qso.php:549 @@ -8200,7 +8332,7 @@ msgid "IOTA Reference" msgstr "" #: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:146 +#: application/views/station_profile/create.php:165 #: application/views/station_profile/edit.php:219 #: application/views/user/edit.php:587 application/views/view_log/qso.php:289 #: application/views/view_log/qso.php:556 @@ -8459,26 +8591,14 @@ msgstr "" msgid "Save query" msgstr "" -#: application/views/search/filter.php:46 -msgid "Edit queries" -msgstr "" - #: application/views/search/filter.php:50 msgid "Stored queries" msgstr "" -#: application/views/search/filter.php:60 -msgid "Run Query" -msgstr "" - #: application/views/search/filter.php:69 msgid "search filter functions" msgstr "" -#: application/views/search/filter.php:79 -msgid "Export to ADIF" -msgstr "" - #: application/views/search/filter.php:79 msgid "Search Results" msgstr "" @@ -8796,115 +8916,115 @@ msgid "" "of our Wiki." msgstr "" -#: application/views/station_profile/create.php:32 +#: application/views/station_profile/create.php:51 #: application/views/station_profile/edit.php:40 msgid "Location Name" msgstr "" -#: application/views/station_profile/create.php:33 -#: application/views/station_profile/create.php:34 +#: application/views/station_profile/create.php:52 +#: application/views/station_profile/create.php:53 #: application/views/station_profile/edit.php:42 msgctxt "Station Location Setup" msgid "Home QTH" msgstr "" -#: application/views/station_profile/create.php:34 +#: application/views/station_profile/create.php:53 #: application/views/station_profile/edit.php:42 #, php-format msgid "Shortname for the station location. For example: %s" msgstr "" -#: application/views/station_profile/create.php:40 +#: application/views/station_profile/create.php:59 #: application/views/station_profile/edit.php:48 msgid "Station callsign. For example: 4W7EST/P" msgstr "" -#: application/views/station_profile/create.php:44 +#: application/views/station_profile/create.php:63 #: application/views/station_profile/edit.php:52 msgid "Station Power (W)" msgstr "" -#: application/views/station_profile/create.php:46 +#: application/views/station_profile/create.php:65 #: application/views/station_profile/edit.php:54 msgid "Default station power in Watt. Overwritten by CAT." msgstr "" -#: application/views/station_profile/create.php:49 +#: application/views/station_profile/create.php:68 #: application/views/station_profile/edit.php:69 msgid "Station DXCC" msgstr "" -#: application/views/station_profile/create.php:52 +#: application/views/station_profile/create.php:71 #: application/views/station_profile/edit.php:72 msgctxt "DXCC selection" msgid "None" msgstr "" -#: application/views/station_profile/create.php:59 +#: application/views/station_profile/create.php:78 #: application/views/station_profile/edit.php:85 msgid "Station DXCC entity. For example: Bolivia" msgstr "" -#: application/views/station_profile/create.php:64 +#: application/views/station_profile/create.php:83 #: application/views/station_profile/edit.php:91 msgid "Station City" msgstr "" -#: application/views/station_profile/create.php:66 +#: application/views/station_profile/create.php:85 #: application/views/station_profile/edit.php:93 msgid "Station city. For example: Oslo" msgstr "" -#: application/views/station_profile/create.php:75 +#: application/views/station_profile/create.php:94 #: application/views/station_profile/edit.php:105 msgid "Station state. Applies to certain countries only." msgstr "" -#: application/views/station_profile/create.php:80 +#: application/views/station_profile/create.php:99 #: application/views/station_profile/edit.php:110 msgid "Station County" msgstr "" -#: application/views/station_profile/create.php:82 +#: application/views/station_profile/create.php:101 #: application/views/station_profile/edit.php:112 msgid "Station County (Only used for USA/Alaska/Hawaii)." msgstr "" -#: application/views/station_profile/create.php:97 +#: application/views/station_profile/create.php:116 #: application/views/station_profile/edit.php:138 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your CQ Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:97 -#: application/views/station_profile/create.php:111 -#: application/views/station_profile/create.php:125 +#: application/views/station_profile/create.php:116 +#: application/views/station_profile/create.php:130 +#: application/views/station_profile/create.php:144 #: application/views/station_profile/edit.php:138 #: application/views/station_profile/edit.php:155 #: application/views/station_profile/edit.php:179 msgid "click here" msgstr "" -#: application/views/station_profile/create.php:111 +#: application/views/station_profile/create.php:130 #: application/views/station_profile/edit.php:155 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your ITU Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:116 +#: application/views/station_profile/create.php:135 #: application/views/station_profile/edit.php:167 #: application/views/station_profile/edit.php:170 msgid "Station Gridsquare" msgstr "" -#: application/views/station_profile/create.php:121 +#: application/views/station_profile/create.php:140 #: application/views/station_profile/edit.php:175 msgid "Get Gridsquare" msgstr "" -#: application/views/station_profile/create.php:125 +#: application/views/station_profile/create.php:144 #: application/views/station_profile/edit.php:179 #, php-format msgctxt "uses 'click here'" @@ -8913,57 +9033,57 @@ msgid "" "then %s!" msgstr "" -#: application/views/station_profile/create.php:126 +#: application/views/station_profile/create.php:145 #: application/views/station_profile/edit.php:180 msgid "" "If you are located on a grid line, enter multiple grid squares separated " "with commas. For example: IO77,IO78,IO87,IO88." msgstr "" -#: application/views/station_profile/create.php:141 +#: application/views/station_profile/create.php:160 #: application/views/station_profile/edit.php:205 msgid "Station IOTA reference. For example: EU-005" msgstr "" -#: application/views/station_profile/create.php:142 +#: application/views/station_profile/create.php:161 #: application/views/station_profile/edit.php:206 msgid "IOTA World website" msgstr "" -#: application/views/station_profile/create.php:142 +#: application/views/station_profile/create.php:161 #: application/views/station_profile/edit.php:206 #, php-format msgid "You can look up IOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:148 +#: application/views/station_profile/create.php:167 #: application/views/station_profile/edit.php:221 msgid "SOTA Maps website" msgstr "" -#: application/views/station_profile/create.php:148 +#: application/views/station_profile/create.php:167 #: application/views/station_profile/edit.php:221 #, php-format msgid "Station SOTA reference. You can look up SOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:154 +#: application/views/station_profile/create.php:173 #: application/views/station_profile/edit.php:234 msgid "GMA Map website" msgstr "" -#: application/views/station_profile/create.php:154 +#: application/views/station_profile/create.php:173 #: application/views/station_profile/edit.php:234 #, php-format msgid "Station WWFF reference. You can look up WWFF references at the %s." msgstr "" -#: application/views/station_profile/create.php:160 +#: application/views/station_profile/create.php:179 #: application/views/station_profile/edit.php:247 msgid "POTA Map website" msgstr "" -#: application/views/station_profile/create.php:160 +#: application/views/station_profile/create.php:179 #: application/views/station_profile/edit.php:247 #, php-format msgid "" @@ -8971,55 +9091,55 @@ msgid "" "look up POTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:164 +#: application/views/station_profile/create.php:183 #: application/views/station_profile/edit.php:260 msgid "Signature Name" msgstr "" -#: application/views/station_profile/create.php:166 +#: application/views/station_profile/create.php:185 #: application/views/station_profile/edit.php:262 msgid "Station Signature (e.g. GMA).." msgstr "" -#: application/views/station_profile/create.php:170 +#: application/views/station_profile/create.php:189 #: application/views/station_profile/edit.php:266 msgid "Signature Information" msgstr "" -#: application/views/station_profile/create.php:172 +#: application/views/station_profile/create.php:191 #: application/views/station_profile/edit.php:268 msgid "Station Signature Info (e.g. DA/NW-357)." msgstr "" -#: application/views/station_profile/create.php:176 +#: application/views/station_profile/create.php:195 #: application/views/station_profile/edit.php:281 msgctxt "Probably no translation needed" msgid "eQSL QTH Nickname" msgstr "" -#: application/views/station_profile/create.php:178 +#: application/views/station_profile/create.php:197 #: application/views/station_profile/edit.php:283 msgid "The QTH Nickname which is configured in your eQSL Profile" msgstr "" -#: application/views/station_profile/create.php:182 +#: application/views/station_profile/create.php:201 #: application/views/station_profile/edit.php:286 msgid "Default QSLMSG" msgstr "" -#: application/views/station_profile/create.php:185 +#: application/views/station_profile/create.php:204 #: application/views/station_profile/edit.php:289 msgid "" "Define a default message that will be populated and sent for each QSO for " "this station location." msgstr "" -#: application/views/station_profile/create.php:188 +#: application/views/station_profile/create.php:207 #: application/views/station_profile/edit.php:328 msgid "Ignore Clublog Upload" msgstr "" -#: application/views/station_profile/create.php:193 +#: application/views/station_profile/create.php:212 #: application/views/station_profile/edit.php:333 msgid "" "If enabled, the QSOs made from this location will not be uploaded to " @@ -9027,124 +9147,124 @@ msgid "" "properly configured at Clublog" msgstr "" -#: application/views/station_profile/create.php:196 +#: application/views/station_profile/create.php:215 #: application/views/station_profile/edit.php:336 msgid "ClubLog Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:205 +#: application/views/station_profile/create.php:224 #: application/views/station_profile/edit.php:352 msgid "HRDLog.net Username" msgstr "" -#: application/views/station_profile/create.php:207 +#: application/views/station_profile/create.php:226 #: application/views/station_profile/edit.php:354 msgid "" "The username you are registered with at HRDlog.net (usually your callsign)." msgstr "" -#: application/views/station_profile/create.php:210 +#: application/views/station_profile/create.php:229 #: application/views/station_profile/edit.php:357 msgid "HRDLog.net API Key" msgstr "" -#: application/views/station_profile/create.php:212 +#: application/views/station_profile/create.php:231 #: application/views/station_profile/edit.php:359 #, php-format msgctxt "HRDLog.net Userprofile page" msgid "Create your API Code on your %s" msgstr "" -#: application/views/station_profile/create.php:212 +#: application/views/station_profile/create.php:231 #: application/views/station_profile/edit.php:359 msgid "HRDLog.net Userprofile page" msgstr "" -#: application/views/station_profile/create.php:215 +#: application/views/station_profile/create.php:234 #: application/views/station_profile/edit.php:362 msgid "HRDLog.net Logbook Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:224 +#: application/views/station_profile/create.php:243 #: application/views/station_profile/edit.php:297 msgid "Subscription Required" msgstr "" -#: application/views/station_profile/create.php:229 +#: application/views/station_profile/create.php:248 msgctxt "Probably no translation needed" msgid "QRZ.com Logbook API Key" msgstr "" -#: application/views/station_profile/create.php:232 +#: application/views/station_profile/create.php:251 msgid "Test API-Key" msgstr "" -#: application/views/station_profile/create.php:235 +#: application/views/station_profile/create.php:254 #: application/views/station_profile/edit.php:306 #, php-format msgctxt "the QRZ.com Logbook settings page" msgid "Find your API key on %s" msgstr "" -#: application/views/station_profile/create.php:235 +#: application/views/station_profile/create.php:254 #: application/views/station_profile/edit.php:306 msgid "the QRZ.com Logbook settings page" msgstr "" -#: application/views/station_profile/create.php:238 +#: application/views/station_profile/create.php:257 #: application/views/station_profile/edit.php:310 msgid "QRZ.com Logbook Upload" msgstr "" -#: application/views/station_profile/create.php:241 +#: application/views/station_profile/create.php:260 #: application/views/station_profile/edit.php:313 msgid "Realtime" msgstr "" -#: application/views/station_profile/create.php:249 +#: application/views/station_profile/create.php:268 #: application/views/station_profile/edit.php:378 msgctxt "Probably no translation needed" msgid "QO-100 Dx Club API Key" msgstr "" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:270 #: application/views/station_profile/edit.php:380 #, php-format msgctxt "QO-100 Dx Club's profile page" msgid "Create your API key on your %s" msgstr "" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:270 #: application/views/station_profile/edit.php:380 msgid "QO-100 Dx Club's profile page" msgstr "" -#: application/views/station_profile/create.php:254 +#: application/views/station_profile/create.php:273 #: application/views/station_profile/edit.php:383 msgid "QO-100 Dx Club Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:264 +#: application/views/station_profile/create.php:283 #: application/views/station_profile/edit.php:401 msgid "OQRS Enabled" msgstr "" -#: application/views/station_profile/create.php:271 +#: application/views/station_profile/create.php:290 #: application/views/station_profile/edit.php:408 msgid "OQRS Email alert" msgstr "" -#: application/views/station_profile/create.php:276 +#: application/views/station_profile/create.php:295 #: application/views/station_profile/edit.php:413 msgid "Make sure email is set up under admin and global options." msgstr "" -#: application/views/station_profile/create.php:279 +#: application/views/station_profile/create.php:298 #: application/views/station_profile/edit.php:416 msgid "OQRS Text" msgstr "" -#: application/views/station_profile/create.php:281 +#: application/views/station_profile/create.php:300 #: application/views/station_profile/edit.php:418 msgid "Some info you want to add regarding QSL'ing." msgstr "" @@ -10189,10 +10309,6 @@ msgstr "QSO-detaljer" msgid "QSL Management" msgstr "" -#: application/views/view_log/qso.php:42 -msgid "eQSL Card" -msgstr "" - #: application/views/view_log/qso.php:128 msgid "Total Distance" msgstr "Totalt avstånd" @@ -10264,10 +10380,6 @@ msgstr "" msgid "Details" msgstr "" -#: application/views/view_log/qso.php:604 -msgid "QSL image file" -msgstr "" - #: application/views/view_log/qso.php:630 msgid "Uploaded QSL Card front image" msgstr "Uppladdat QSL-kort bild framsida" diff --git a/application/locale/tr_TR/LC_MESSAGES/messages.po b/application/locale/tr_TR/LC_MESSAGES/messages.po index cb94505c4..da7bc6c3b 100644 --- a/application/locale/tr_TR/LC_MESSAGES/messages.po +++ b/application/locale/tr_TR/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-01 15:48+0000\n" +"POT-Creation-Date: 2024-08-06 18:03+0000\n" "PO-Revision-Date: 2024-07-26 14:02+0000\n" "Last-Translator: Halil AYYILDIZ \n" "Language-Team: Turkish here for " +"more information." msgstr "" #: application/views/debug/index.php:48 #, php-format +msgid "Current migration is %s" +msgstr "" + +#: application/views/debug/index.php:49 +#, php-format msgid "Migration should be %s" msgstr "" -#: application/views/debug/index.php:53 +#: application/views/debug/index.php:54 msgid "Environment" msgstr "" -#: application/views/debug/index.php:61 +#: application/views/debug/index.php:62 msgid "Total QSO on this instance" msgstr "" -#: application/views/debug/index.php:69 +#: application/views/debug/index.php:70 msgid "Server Information" msgstr "" -#: application/views/debug/index.php:73 +#: application/views/debug/index.php:74 msgid "Server Software" msgstr "" -#: application/views/debug/index.php:78 +#: application/views/debug/index.php:79 msgid "PHP Version" msgstr "" -#: application/views/debug/index.php:84 +#: application/views/debug/index.php:85 msgid "Deprecated" msgstr "" -#: application/views/debug/index.php:91 +#: application/views/debug/index.php:92 msgid "MySQL Version" msgstr "" -#: application/views/debug/index.php:95 +#: application/views/debug/index.php:96 msgid "Codeigniter Version" msgstr "" -#: application/views/debug/index.php:103 +#: application/views/debug/index.php:104 msgid "Folder Permissions" msgstr "" -#: application/views/debug/index.php:105 +#: application/views/debug/index.php:106 msgid "" "This verifies that the folders used by Wavelog have read and write " "permissions by PHP." msgstr "" -#: application/views/debug/index.php:111 application/views/debug/index.php:122 -#: application/views/debug/index.php:133 application/views/debug/index.php:144 -#: application/views/debug/index.php:156 +#: application/views/debug/index.php:112 application/views/debug/index.php:123 +#: application/views/debug/index.php:134 application/views/debug/index.php:145 +#: application/views/debug/index.php:157 msgid "Success" msgstr "" -#: application/views/debug/index.php:113 application/views/debug/index.php:124 -#: application/views/debug/index.php:135 application/views/debug/index.php:146 -#: application/views/debug/index.php:158 +#: application/views/debug/index.php:114 application/views/debug/index.php:125 +#: application/views/debug/index.php:136 application/views/debug/index.php:147 +#: application/views/debug/index.php:159 msgid "Failed" msgstr "" -#: application/views/debug/index.php:168 +#: application/views/debug/index.php:169 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:174 +#: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" -#: application/views/debug/index.php:176 application/views/debug/index.php:193 +#: application/views/debug/index.php:177 application/views/debug/index.php:194 #, php-format msgid "Please edit your %s File:" msgstr "" -#: application/views/debug/index.php:177 +#: application/views/debug/index.php:178 msgid "" "Go to your application/config Folder and compare config.sample.php with your " "config.php" msgstr "" -#: application/views/debug/index.php:178 +#: application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:184 +#: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" msgstr "" -#: application/views/debug/index.php:184 application/views/debug/index.php:201 +#: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" msgstr "" -#: application/views/debug/index.php:191 +#: application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "" -#: application/views/debug/index.php:194 +#: application/views/debug/index.php:195 msgid "This will also enable the 'Keep me logged in' feature." msgstr "" -#: application/views/debug/index.php:195 +#: application/views/debug/index.php:196 #, php-format msgid "" "Change the value of %s to a new encryption key other then " "'flossie1234555541'. Choose a safe and long password. (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:201 +#: application/views/debug/index.php:202 msgid "You do not use the default encryption key" msgstr "" -#: application/views/debug/index.php:208 +#: application/views/debug/index.php:209 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:210 +#: application/views/debug/index.php:211 msgid "" "Here you can migrate existing QSL cards and eQSL cards to the new userdata " "folder." msgstr "" -#: application/views/debug/index.php:223 +#: application/views/debug/index.php:224 msgid "Modules" msgstr "" -#: application/views/debug/index.php:229 application/views/debug/index.php:240 -#: application/views/debug/index.php:251 application/views/debug/index.php:262 -#: application/views/debug/index.php:273 +#: application/views/debug/index.php:230 application/views/debug/index.php:241 +#: application/views/debug/index.php:252 application/views/debug/index.php:263 +#: application/views/debug/index.php:274 msgid "Installed" msgstr "Kurulmuş" -#: application/views/debug/index.php:231 application/views/debug/index.php:242 -#: application/views/debug/index.php:253 application/views/debug/index.php:264 -#: application/views/debug/index.php:275 +#: application/views/debug/index.php:232 application/views/debug/index.php:243 +#: application/views/debug/index.php:254 application/views/debug/index.php:265 +#: application/views/debug/index.php:276 msgid "Not Installed" msgstr "Kurulu Değil" -#: application/views/debug/index.php:282 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:654 msgid "Settings" msgstr "" -#: application/views/debug/index.php:411 +#: application/views/debug/index.php:412 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:415 +#: application/views/debug/index.php:416 msgid "Branch" msgstr "" -#: application/views/debug/index.php:426 application/views/debug/index.php:437 -#: application/views/debug/index.php:447 +#: application/views/debug/index.php:427 application/views/debug/index.php:438 +#: application/views/debug/index.php:448 msgid "n/a" msgstr "" -#: application/views/debug/index.php:432 +#: application/views/debug/index.php:433 msgid "Commit" msgstr "" -#: application/views/debug/index.php:442 +#: application/views/debug/index.php:443 msgid "Tag" msgstr "" -#: application/views/debug/index.php:452 +#: application/views/debug/index.php:453 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:464 +#: application/views/debug/index.php:465 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:466 msgid "Update now" msgstr "" -#: application/views/debug/index.php:483 +#: application/views/debug/index.php:484 msgid "File download date" msgstr "" -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:488 msgid "File" msgstr "" -#: application/views/debug/index.php:488 +#: application/views/debug/index.php:489 msgid "Last update" msgstr "" -#: application/views/debug/index.php:492 +#: application/views/debug/index.php:493 msgid "DXCC update from Club Log" msgstr "" -#: application/views/debug/index.php:494 application/views/debug/index.php:500 -#: application/views/debug/index.php:505 application/views/debug/index.php:510 -#: application/views/debug/index.php:515 application/views/debug/index.php:520 -#: application/views/debug/index.php:525 +#: application/views/debug/index.php:495 application/views/debug/index.php:501 +#: application/views/debug/index.php:506 application/views/debug/index.php:511 +#: application/views/debug/index.php:516 application/views/debug/index.php:521 +#: application/views/debug/index.php:526 #: application/views/station_profile/edit.php:22 msgid "Update" msgstr "" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:499 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:503 +#: application/views/debug/index.php:504 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:508 +#: application/views/debug/index.php:509 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:513 +#: application/views/debug/index.php:514 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:518 +#: application/views/debug/index.php:519 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:523 +#: application/views/debug/index.php:524 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:532 +#: application/views/debug/index.php:533 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:537 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -5504,9 +5524,9 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:549 +#: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:38 +#: application/views/station_profile/create.php:57 #: application/views/station_profile/edit.php:46 #: application/views/station_profile/index.php:42 #: application/views/stationsetup/linkedlocations.php:32 @@ -5514,88 +5534,88 @@ msgstr[1] "" msgid "Station Callsign" msgstr "" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:582 +#: application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:583 application/views/debug/index.php:594 +#: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:628 +#: application/views/debug/index.php:629 msgid "Bulgarian" msgstr "Bulgarca" -#: application/views/debug/index.php:629 +#: application/views/debug/index.php:630 msgid "Chinese (Simplified)" msgstr "Çince (Basitleştirilmiş)" -#: application/views/debug/index.php:630 +#: application/views/debug/index.php:631 msgid "Czech" msgstr "Çek" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:632 msgid "Dutch" msgstr "Flemenkçe" -#: application/views/debug/index.php:632 +#: application/views/debug/index.php:633 msgid "English" msgstr "İngilizce" -#: application/views/debug/index.php:633 +#: application/views/debug/index.php:634 msgid "Finnish" msgstr "Fince" -#: application/views/debug/index.php:634 +#: application/views/debug/index.php:635 msgid "French" msgstr "Fransızca" -#: application/views/debug/index.php:635 +#: application/views/debug/index.php:636 msgid "German" msgstr "Almanca" -#: application/views/debug/index.php:636 +#: application/views/debug/index.php:637 msgid "Greek" msgstr "Yunanca" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:638 msgid "Italian" msgstr "İtalyanca" -#: application/views/debug/index.php:638 +#: application/views/debug/index.php:639 msgid "Polish" msgstr "Polonyaca" -#: application/views/debug/index.php:639 +#: application/views/debug/index.php:640 msgid "Portuguese" msgstr "Portekizce" -#: application/views/debug/index.php:640 +#: application/views/debug/index.php:641 msgid "Russian" msgstr "Rusça" -#: application/views/debug/index.php:641 +#: application/views/debug/index.php:642 msgid "Spanish" msgstr "İspanyolca" -#: application/views/debug/index.php:642 +#: application/views/debug/index.php:643 msgid "Swedish" msgstr "İsveççe" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:644 msgid "Turkish" msgstr "Türkçe" @@ -5814,6 +5834,10 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:60 +#: application/views/interface_assets/footer.php:2342 +#: application/views/interface_assets/footer.php:2360 +#: application/views/interface_assets/footer.php:2381 +#: application/views/interface_assets/footer.php:2399 #: application/views/qslcard/index.php:66 #: application/views/view_log/qso.php:614 msgid "View" @@ -5974,6 +5998,69 @@ msgstr "" msgid "Version Info" msgstr "" +#: application/views/interface_assets/footer.php:392 +msgid "Description:" +msgstr "" + +#: application/views/interface_assets/footer.php:395 +msgid "Query description" +msgstr "" + +#: application/views/interface_assets/footer.php:411 +msgid "Your query has been saved!" +msgstr "" + +#: application/views/interface_assets/footer.php:413 +#: application/views/search/filter.php:46 +msgid "Edit queries" +msgstr "" + +#: application/views/interface_assets/footer.php:415 +msgid "Stored queries:" +msgstr "" + +#: application/views/interface_assets/footer.php:420 +#: application/views/search/filter.php:60 +msgid "Run Query" +msgstr "" + +#: application/views/interface_assets/footer.php:432 +#: application/views/interface_assets/footer.php:561 +#: application/views/interface_assets/footer.php:625 +msgid "Stored Queries" +msgstr "" + +#: application/views/interface_assets/footer.php:437 +#: application/views/interface_assets/footer.php:630 +msgid "You need to make a query before you search!" +msgstr "" + +#: application/views/interface_assets/footer.php:458 +#: application/views/interface_assets/footer.php:589 +#: application/views/search/filter.php:79 +msgid "Export to ADIF" +msgstr "" + +#: application/views/interface_assets/footer.php:496 +msgid "Warning! Are you sure you want delete this stored query?" +msgstr "" + +#: application/views/interface_assets/footer.php:510 +msgid "The stored query has been deleted!" +msgstr "" + +#: application/views/interface_assets/footer.php:519 +msgid "The stored query could not be deleted. Please try again!" +msgstr "" + +#: application/views/interface_assets/footer.php:545 +msgid "The query description has been updated!" +msgstr "" + +#: application/views/interface_assets/footer.php:549 +msgid "Something went wrong with the save. Please try again!" +msgstr "" + #: application/views/interface_assets/footer.php:672 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " @@ -5981,20 +6068,65 @@ msgid "" "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:1374 -#: application/views/interface_assets/footer.php:1378 -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1518 -#: application/views/interface_assets/footer.php:1522 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1174 +#, php-format +msgid "You're not logged it. Please login" +msgstr "" + +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1384 +#: application/views/interface_assets/footer.php:1387 +#: application/views/interface_assets/footer.php:1524 +#: application/views/interface_assets/footer.php:1528 +#: application/views/interface_assets/footer.php:1531 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1387 +#: application/views/interface_assets/footer.php:1531 msgid "Total count" msgstr "" +#: application/views/interface_assets/footer.php:2118 +msgid "QSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2138 +msgid "Warning! Are you sure you want to delete this QSL card?" +msgstr "" + +#: application/views/interface_assets/footer.php:2178 +#: application/views/view_log/qso.php:42 +msgid "eQSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2180 +msgid "eQSL Card for " +msgstr "" + +#: application/views/interface_assets/footer.php:2353 +#: application/views/interface_assets/footer.php:2392 +#: application/views/view_log/qso.php:604 +msgid "QSL image file" +msgstr "" + +#: application/views/interface_assets/footer.php:2372 +msgid "Front QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2410 +msgid "Back QSL Card:" +msgstr "" + +#: application/views/interface_assets/footer.php:2421 +#: application/views/interface_assets/footer.php:2446 +msgid "Add additional QSOs to a QSL Card" +msgstr "" + +#: application/views/interface_assets/footer.php:2457 +msgid "Something went wrong. Please try again!" +msgstr "" + #: application/views/interface_assets/header.php:86 msgid "Developer Mode" msgstr "" @@ -6542,12 +6674,12 @@ msgstr "" #: application/views/qso/edit_ajax.php:495 #: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:190 -#: application/views/station_profile/create.php:198 +#: application/views/station_profile/create.php:209 #: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:256 -#: application/views/station_profile/create.php:267 -#: application/views/station_profile/create.php:274 +#: application/views/station_profile/create.php:236 +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/create.php:286 +#: application/views/station_profile/create.php:293 #: application/views/station_profile/edit.php:330 #: application/views/station_profile/edit.php:338 #: application/views/station_profile/edit.php:364 @@ -6580,12 +6712,12 @@ msgstr "Evet" #: application/views/qso/edit_ajax.php:494 #: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/create.php:199 +#: application/views/station_profile/create.php:210 #: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/create.php:266 -#: application/views/station_profile/create.php:273 +#: application/views/station_profile/create.php:237 +#: application/views/station_profile/create.php:276 +#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:292 #: application/views/station_profile/edit.php:331 #: application/views/station_profile/edit.php:339 #: application/views/station_profile/edit.php:365 @@ -8192,7 +8324,7 @@ msgid "Search DXCluster for latest Spot" msgstr "" #: application/views/qso/index.php:196 application/views/qso/index.php:439 -#: application/views/station_profile/create.php:130 +#: application/views/station_profile/create.php:149 #: application/views/station_profile/edit.php:191 #: application/views/user/edit.php:583 application/views/view_log/qso.php:282 #: application/views/view_log/qso.php:549 @@ -8200,7 +8332,7 @@ msgid "IOTA Reference" msgstr "IOTA Referansı" #: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:146 +#: application/views/station_profile/create.php:165 #: application/views/station_profile/edit.php:219 #: application/views/user/edit.php:587 application/views/view_log/qso.php:289 #: application/views/view_log/qso.php:556 @@ -8459,26 +8591,14 @@ msgstr "" msgid "Save query" msgstr "" -#: application/views/search/filter.php:46 -msgid "Edit queries" -msgstr "" - #: application/views/search/filter.php:50 msgid "Stored queries" msgstr "" -#: application/views/search/filter.php:60 -msgid "Run Query" -msgstr "" - #: application/views/search/filter.php:69 msgid "search filter functions" msgstr "" -#: application/views/search/filter.php:79 -msgid "Export to ADIF" -msgstr "" - #: application/views/search/filter.php:79 msgid "Search Results" msgstr "" @@ -8796,115 +8916,115 @@ msgid "" "of our Wiki." msgstr "" -#: application/views/station_profile/create.php:32 +#: application/views/station_profile/create.php:51 #: application/views/station_profile/edit.php:40 msgid "Location Name" msgstr "" -#: application/views/station_profile/create.php:33 -#: application/views/station_profile/create.php:34 +#: application/views/station_profile/create.php:52 +#: application/views/station_profile/create.php:53 #: application/views/station_profile/edit.php:42 msgctxt "Station Location Setup" msgid "Home QTH" msgstr "" -#: application/views/station_profile/create.php:34 +#: application/views/station_profile/create.php:53 #: application/views/station_profile/edit.php:42 #, php-format msgid "Shortname for the station location. For example: %s" msgstr "" -#: application/views/station_profile/create.php:40 +#: application/views/station_profile/create.php:59 #: application/views/station_profile/edit.php:48 msgid "Station callsign. For example: 4W7EST/P" msgstr "" -#: application/views/station_profile/create.php:44 +#: application/views/station_profile/create.php:63 #: application/views/station_profile/edit.php:52 msgid "Station Power (W)" msgstr "" -#: application/views/station_profile/create.php:46 +#: application/views/station_profile/create.php:65 #: application/views/station_profile/edit.php:54 msgid "Default station power in Watt. Overwritten by CAT." msgstr "" -#: application/views/station_profile/create.php:49 +#: application/views/station_profile/create.php:68 #: application/views/station_profile/edit.php:69 msgid "Station DXCC" msgstr "" -#: application/views/station_profile/create.php:52 +#: application/views/station_profile/create.php:71 #: application/views/station_profile/edit.php:72 msgctxt "DXCC selection" msgid "None" msgstr "" -#: application/views/station_profile/create.php:59 +#: application/views/station_profile/create.php:78 #: application/views/station_profile/edit.php:85 msgid "Station DXCC entity. For example: Bolivia" msgstr "" -#: application/views/station_profile/create.php:64 +#: application/views/station_profile/create.php:83 #: application/views/station_profile/edit.php:91 msgid "Station City" msgstr "" -#: application/views/station_profile/create.php:66 +#: application/views/station_profile/create.php:85 #: application/views/station_profile/edit.php:93 msgid "Station city. For example: Oslo" msgstr "" -#: application/views/station_profile/create.php:75 +#: application/views/station_profile/create.php:94 #: application/views/station_profile/edit.php:105 msgid "Station state. Applies to certain countries only." msgstr "" -#: application/views/station_profile/create.php:80 +#: application/views/station_profile/create.php:99 #: application/views/station_profile/edit.php:110 msgid "Station County" msgstr "" -#: application/views/station_profile/create.php:82 +#: application/views/station_profile/create.php:101 #: application/views/station_profile/edit.php:112 msgid "Station County (Only used for USA/Alaska/Hawaii)." msgstr "" -#: application/views/station_profile/create.php:97 +#: application/views/station_profile/create.php:116 #: application/views/station_profile/edit.php:138 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your CQ Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:97 -#: application/views/station_profile/create.php:111 -#: application/views/station_profile/create.php:125 +#: application/views/station_profile/create.php:116 +#: application/views/station_profile/create.php:130 +#: application/views/station_profile/create.php:144 #: application/views/station_profile/edit.php:138 #: application/views/station_profile/edit.php:155 #: application/views/station_profile/edit.php:179 msgid "click here" msgstr "" -#: application/views/station_profile/create.php:111 +#: application/views/station_profile/create.php:130 #: application/views/station_profile/edit.php:155 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your ITU Zone then %s to find it!" msgstr "" -#: application/views/station_profile/create.php:116 +#: application/views/station_profile/create.php:135 #: application/views/station_profile/edit.php:167 #: application/views/station_profile/edit.php:170 msgid "Station Gridsquare" msgstr "" -#: application/views/station_profile/create.php:121 +#: application/views/station_profile/create.php:140 #: application/views/station_profile/edit.php:175 msgid "Get Gridsquare" msgstr "" -#: application/views/station_profile/create.php:125 +#: application/views/station_profile/create.php:144 #: application/views/station_profile/edit.php:179 #, php-format msgctxt "uses 'click here'" @@ -8913,57 +9033,57 @@ msgid "" "then %s!" msgstr "" -#: application/views/station_profile/create.php:126 +#: application/views/station_profile/create.php:145 #: application/views/station_profile/edit.php:180 msgid "" "If you are located on a grid line, enter multiple grid squares separated " "with commas. For example: IO77,IO78,IO87,IO88." msgstr "" -#: application/views/station_profile/create.php:141 +#: application/views/station_profile/create.php:160 #: application/views/station_profile/edit.php:205 msgid "Station IOTA reference. For example: EU-005" msgstr "" -#: application/views/station_profile/create.php:142 +#: application/views/station_profile/create.php:161 #: application/views/station_profile/edit.php:206 msgid "IOTA World website" msgstr "" -#: application/views/station_profile/create.php:142 +#: application/views/station_profile/create.php:161 #: application/views/station_profile/edit.php:206 #, php-format msgid "You can look up IOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:148 +#: application/views/station_profile/create.php:167 #: application/views/station_profile/edit.php:221 msgid "SOTA Maps website" msgstr "" -#: application/views/station_profile/create.php:148 +#: application/views/station_profile/create.php:167 #: application/views/station_profile/edit.php:221 #, php-format msgid "Station SOTA reference. You can look up SOTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:154 +#: application/views/station_profile/create.php:173 #: application/views/station_profile/edit.php:234 msgid "GMA Map website" msgstr "" -#: application/views/station_profile/create.php:154 +#: application/views/station_profile/create.php:173 #: application/views/station_profile/edit.php:234 #, php-format msgid "Station WWFF reference. You can look up WWFF references at the %s." msgstr "" -#: application/views/station_profile/create.php:160 +#: application/views/station_profile/create.php:179 #: application/views/station_profile/edit.php:247 msgid "POTA Map website" msgstr "" -#: application/views/station_profile/create.php:160 +#: application/views/station_profile/create.php:179 #: application/views/station_profile/edit.php:247 #, php-format msgid "" @@ -8971,55 +9091,55 @@ msgid "" "look up POTA references at the %s." msgstr "" -#: application/views/station_profile/create.php:164 +#: application/views/station_profile/create.php:183 #: application/views/station_profile/edit.php:260 msgid "Signature Name" msgstr "" -#: application/views/station_profile/create.php:166 +#: application/views/station_profile/create.php:185 #: application/views/station_profile/edit.php:262 msgid "Station Signature (e.g. GMA).." msgstr "" -#: application/views/station_profile/create.php:170 +#: application/views/station_profile/create.php:189 #: application/views/station_profile/edit.php:266 msgid "Signature Information" msgstr "" -#: application/views/station_profile/create.php:172 +#: application/views/station_profile/create.php:191 #: application/views/station_profile/edit.php:268 msgid "Station Signature Info (e.g. DA/NW-357)." msgstr "" -#: application/views/station_profile/create.php:176 +#: application/views/station_profile/create.php:195 #: application/views/station_profile/edit.php:281 msgctxt "Probably no translation needed" msgid "eQSL QTH Nickname" msgstr "" -#: application/views/station_profile/create.php:178 +#: application/views/station_profile/create.php:197 #: application/views/station_profile/edit.php:283 msgid "The QTH Nickname which is configured in your eQSL Profile" msgstr "" -#: application/views/station_profile/create.php:182 +#: application/views/station_profile/create.php:201 #: application/views/station_profile/edit.php:286 msgid "Default QSLMSG" msgstr "" -#: application/views/station_profile/create.php:185 +#: application/views/station_profile/create.php:204 #: application/views/station_profile/edit.php:289 msgid "" "Define a default message that will be populated and sent for each QSO for " "this station location." msgstr "" -#: application/views/station_profile/create.php:188 +#: application/views/station_profile/create.php:207 #: application/views/station_profile/edit.php:328 msgid "Ignore Clublog Upload" msgstr "" -#: application/views/station_profile/create.php:193 +#: application/views/station_profile/create.php:212 #: application/views/station_profile/edit.php:333 msgid "" "If enabled, the QSOs made from this location will not be uploaded to " @@ -9027,124 +9147,124 @@ msgid "" "properly configured at Clublog" msgstr "" -#: application/views/station_profile/create.php:196 +#: application/views/station_profile/create.php:215 #: application/views/station_profile/edit.php:336 msgid "ClubLog Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:205 +#: application/views/station_profile/create.php:224 #: application/views/station_profile/edit.php:352 msgid "HRDLog.net Username" msgstr "" -#: application/views/station_profile/create.php:207 +#: application/views/station_profile/create.php:226 #: application/views/station_profile/edit.php:354 msgid "" "The username you are registered with at HRDlog.net (usually your callsign)." msgstr "" -#: application/views/station_profile/create.php:210 +#: application/views/station_profile/create.php:229 #: application/views/station_profile/edit.php:357 msgid "HRDLog.net API Key" msgstr "" -#: application/views/station_profile/create.php:212 +#: application/views/station_profile/create.php:231 #: application/views/station_profile/edit.php:359 #, php-format msgctxt "HRDLog.net Userprofile page" msgid "Create your API Code on your %s" msgstr "" -#: application/views/station_profile/create.php:212 +#: application/views/station_profile/create.php:231 #: application/views/station_profile/edit.php:359 msgid "HRDLog.net Userprofile page" msgstr "" -#: application/views/station_profile/create.php:215 +#: application/views/station_profile/create.php:234 #: application/views/station_profile/edit.php:362 msgid "HRDLog.net Logbook Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:224 +#: application/views/station_profile/create.php:243 #: application/views/station_profile/edit.php:297 msgid "Subscription Required" msgstr "" -#: application/views/station_profile/create.php:229 +#: application/views/station_profile/create.php:248 msgctxt "Probably no translation needed" msgid "QRZ.com Logbook API Key" msgstr "" -#: application/views/station_profile/create.php:232 +#: application/views/station_profile/create.php:251 msgid "Test API-Key" msgstr "" -#: application/views/station_profile/create.php:235 +#: application/views/station_profile/create.php:254 #: application/views/station_profile/edit.php:306 #, php-format msgctxt "the QRZ.com Logbook settings page" msgid "Find your API key on %s" msgstr "" -#: application/views/station_profile/create.php:235 +#: application/views/station_profile/create.php:254 #: application/views/station_profile/edit.php:306 msgid "the QRZ.com Logbook settings page" msgstr "" -#: application/views/station_profile/create.php:238 +#: application/views/station_profile/create.php:257 #: application/views/station_profile/edit.php:310 msgid "QRZ.com Logbook Upload" msgstr "" -#: application/views/station_profile/create.php:241 +#: application/views/station_profile/create.php:260 #: application/views/station_profile/edit.php:313 msgid "Realtime" msgstr "" -#: application/views/station_profile/create.php:249 +#: application/views/station_profile/create.php:268 #: application/views/station_profile/edit.php:378 msgctxt "Probably no translation needed" msgid "QO-100 Dx Club API Key" msgstr "" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:270 #: application/views/station_profile/edit.php:380 #, php-format msgctxt "QO-100 Dx Club's profile page" msgid "Create your API key on your %s" msgstr "" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:270 #: application/views/station_profile/edit.php:380 msgid "QO-100 Dx Club's profile page" msgstr "" -#: application/views/station_profile/create.php:254 +#: application/views/station_profile/create.php:273 #: application/views/station_profile/edit.php:383 msgid "QO-100 Dx Club Realtime Upload" msgstr "" -#: application/views/station_profile/create.php:264 +#: application/views/station_profile/create.php:283 #: application/views/station_profile/edit.php:401 msgid "OQRS Enabled" msgstr "" -#: application/views/station_profile/create.php:271 +#: application/views/station_profile/create.php:290 #: application/views/station_profile/edit.php:408 msgid "OQRS Email alert" msgstr "" -#: application/views/station_profile/create.php:276 +#: application/views/station_profile/create.php:295 #: application/views/station_profile/edit.php:413 msgid "Make sure email is set up under admin and global options." msgstr "" -#: application/views/station_profile/create.php:279 +#: application/views/station_profile/create.php:298 #: application/views/station_profile/edit.php:416 msgid "OQRS Text" msgstr "" -#: application/views/station_profile/create.php:281 +#: application/views/station_profile/create.php:300 #: application/views/station_profile/edit.php:418 msgid "Some info you want to add regarding QSL'ing." msgstr "" @@ -10180,10 +10300,6 @@ msgstr "QSO detayları" msgid "QSL Management" msgstr "QSL Yönetimi" -#: application/views/view_log/qso.php:42 -msgid "eQSL Card" -msgstr "" - #: application/views/view_log/qso.php:128 msgid "Total Distance" msgstr "Topam mesafe" @@ -10255,10 +10371,6 @@ msgstr "" msgid "Details" msgstr "" -#: application/views/view_log/qso.php:604 -msgid "QSL image file" -msgstr "" - #: application/views/view_log/qso.php:630 msgid "Uploaded QSL Card front image" msgstr "Yüklenen QSL kartının ön resmi" diff --git a/application/locale/zh_CN/LC_MESSAGES/messages.mo b/application/locale/zh_CN/LC_MESSAGES/messages.mo index 6060c7da0..4643e6c1c 100644 Binary files a/application/locale/zh_CN/LC_MESSAGES/messages.mo and b/application/locale/zh_CN/LC_MESSAGES/messages.mo differ diff --git a/application/locale/zh_CN/LC_MESSAGES/messages.po b/application/locale/zh_CN/LC_MESSAGES/messages.po index 14ac42549..6d0c03db5 100644 --- a/application/locale/zh_CN/LC_MESSAGES/messages.po +++ b/application/locale/zh_CN/LC_MESSAGES/messages.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-01 15:48+0000\n" -"PO-Revision-Date: 2024-08-04 19:40+0000\n" +"POT-Creation-Date: 2024-08-06 18:03+0000\n" +"PO-Revision-Date: 2024-08-07 06:28+0000\n" "Last-Translator: Karuru \n" "Language-Team: Chinese (Simplified) \n" @@ -460,17 +460,17 @@ msgstr "Clublog 未配置用户账户。" msgid "Contest Calendar" msgstr "竞赛日志" -#: application/controllers/Contesting.php:36 +#: application/controllers/Contesting.php:46 #: application/views/contesting/index.php:3 msgid "Contest Logging" msgstr "竞赛日志" -#: application/controllers/Contesting.php:101 +#: application/controllers/Contesting.php:111 #: application/views/interface_assets/header.php:268 msgid "Contests" msgstr "比赛" -#: application/controllers/Contesting.php:115 +#: application/controllers/Contesting.php:125 msgid "Update Contest" msgstr "更新竞赛" @@ -504,35 +504,35 @@ msgstr "仪表板" msgid "Number of days with QSOs each year" msgstr "本年QSO总数" -#: application/controllers/Debug.php:91 +#: application/controllers/Debug.php:93 msgid "Debug" msgstr "Debug" -#: application/controllers/Debug.php:130 +#: application/controllers/Debug.php:132 msgid "Migrate data now" msgstr "立即迁移数据" -#: application/controllers/Debug.php:133 +#: application/controllers/Debug.php:135 msgid "Migration already done. Run again?" msgstr "迁移已完成,是否重新迁移?" -#: application/controllers/Debug.php:137 +#: application/controllers/Debug.php:139 msgid "No data to migrate" msgstr "没有可迁移的数据" -#: application/controllers/Debug.php:141 application/controllers/Debug.php:146 +#: application/controllers/Debug.php:143 application/controllers/Debug.php:148 msgid "No migration possible" msgstr "无法迁移" -#: application/controllers/Debug.php:211 +#: application/controllers/Debug.php:213 msgid "Wavelog was updated successfully!" msgstr "Wavelog已更新成功!" -#: application/controllers/Debug.php:229 +#: application/controllers/Debug.php:231 msgid "Selfupdate() not available. Check the Error Log." msgstr "Selfupdate()不可用。请检查错误日志。" -#: application/controllers/Debug.php:273 +#: application/controllers/Debug.php:275 msgid "" "File Migration was successfull, but please check also manually. If " "everything seems right you can delete the folders 'assets/qslcard' and " @@ -541,7 +541,7 @@ msgstr "" "文件迁移成功,请手动检查是否完整。如果一切正常,您可以删除文件夹“assets/" "qslcard”和“images/eqsl_card_images”。" -#: application/controllers/Debug.php:276 +#: application/controllers/Debug.php:278 msgid "File Migration failed. Please check the Error Log." msgstr "文件迁移失败。请检查错误日志。" @@ -912,7 +912,7 @@ msgstr "Clublog" #: application/views/contesting/index.php:203 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:547 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:548 application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 #: application/views/eqsl/download.php:39 application/views/eqsl/result.php:36 #: application/views/eqslcard/index.php:29 @@ -1186,7 +1186,7 @@ msgstr "距离" #: application/views/contesting/index.php:202 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:548 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:549 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 @@ -1289,7 +1289,7 @@ msgstr "操作员" #: application/views/lotw_views/index.php:56 #: application/views/qso/components/previous_contacts.php:59 #: application/views/qso/edit_ajax.php:230 application/views/qso/index.php:368 -#: application/views/station_profile/create.php:54 +#: application/views/station_profile/create.php:73 #: application/views/station_profile/edit.php:78 #: application/views/station_profile/index.php:65 #: application/views/stationsetup/linkedlocations.php:17 @@ -1534,7 +1534,7 @@ msgstr "QSL 卡片管理" msgid "Print Requested QSLs" msgstr "打印请求的QSL卡片" -#: application/controllers/Qso.php:91 +#: application/controllers/Qso.php:101 msgid "Add QSO" msgstr "添加 QSO" @@ -1617,7 +1617,7 @@ msgstr "QSO 尚未在 LoTW 确认,但已在 QSO 日期后上传呼号" #: application/views/logbookadvanced/edit.php:18 #: application/views/qslprint/index.php:20 application/views/qso/index.php:300 #: application/views/search/search_result_ajax.php:18 -#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:304 #: application/views/station_profile/edit.php:427 #: application/views/user/edit.php:331 #: application/views/view_log/partial/log_ajax.php:18 @@ -1692,7 +1692,7 @@ msgstr "错误,链接已正在使用!" #: application/views/options/appearance.php:92 #: application/views/options/appearance.php:101 #: application/views/options/version_dialog.php:66 -#: application/views/station_profile/create.php:240 +#: application/views/station_profile/create.php:259 #: application/views/station_profile/edit.php:312 #: application/views/stationsetup/stationsetup.php:76 #: application/views/user/edit.php:451 application/views/user/edit.php:460 @@ -1758,8 +1758,10 @@ msgstr "QSO" #: application/controllers/Stationsetup.php:359 #: application/views/api/help.php:57 application/views/contesting/add.php:59 -#: application/views/cron/index.php:56 application/views/labels/index.php:47 -#: application/views/labels/index.php:83 +#: application/views/cron/index.php:56 +#: application/views/interface_assets/footer.php:535 +#: application/views/interface_assets/footer.php:544 +#: application/views/labels/index.php:47 application/views/labels/index.php:83 #: application/views/logbookadvanced/index.php:513 #: application/views/mode/index.php:52 application/views/satellite/edit.php:39 #: application/views/satellite/index.php:25 @@ -1805,6 +1807,10 @@ msgstr "确定要删除台站 '%s' 吗?这会删除此台站下的所有 QSO #: application/controllers/Stationsetup.php:372 #: application/views/api/help.php:61 application/views/contesting/add.php:62 +#: application/views/interface_assets/footer.php:2341 +#: application/views/interface_assets/footer.php:2359 +#: application/views/interface_assets/footer.php:2380 +#: application/views/interface_assets/footer.php:2398 #: application/views/labels/index.php:48 application/views/labels/index.php:84 #: application/views/logbookadvanced/index.php:514 #: application/views/lotw_views/index.php:118 @@ -2207,9 +2213,12 @@ msgstr "差异" #: application/views/gridmap/index.php:28 #: application/views/gridmap/index.php:41 #: application/views/gridmap/index.php:70 -#: application/views/gridmap/index.php:83 application/views/kml/index.php:21 -#: application/views/kml/index.php:33 application/views/kml/index.php:49 -#: application/views/kml/index.php:67 application/views/kml/index.php:79 +#: application/views/gridmap/index.php:83 +#: application/views/interface_assets/footer.php:1453 +#: application/views/interface_assets/footer.php:1592 +#: application/views/kml/index.php:21 application/views/kml/index.php:33 +#: application/views/kml/index.php:49 application/views/kml/index.php:67 +#: application/views/kml/index.php:79 #: application/views/logbookadvanced/index.php:172 #: application/views/logbookadvanced/index.php:183 #: application/views/logbookadvanced/index.php:194 @@ -2516,7 +2525,7 @@ msgstr "与 DCL 相比,日志中 DOK 的数据不同" #: application/views/contesting/index.php:42 #: application/views/contesting/index.php:200 #: application/views/dashboard/index.php:147 -#: application/views/debug/index.php:544 application/views/eqsl/analysis.php:36 +#: application/views/debug/index.php:545 application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 #: application/views/eqslcard/index.php:30 #: application/views/hamsat/index.php:28 @@ -2558,7 +2567,7 @@ msgstr "日期" #: application/views/contesting/index.php:47 #: application/views/contesting/index.php:200 #: application/views/dashboard/index.php:150 -#: application/views/debug/index.php:545 application/views/eqsl/analysis.php:37 +#: application/views/debug/index.php:546 application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 #: application/views/eqslcard/index.php:31 #: application/views/hamsat/index.php:29 application/views/oqrs/qsolist.php:8 @@ -2584,7 +2593,7 @@ msgstr "时间" #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 #: application/views/contesting/index.php:201 -#: application/views/debug/index.php:546 application/views/debug/index.php:581 +#: application/views/debug/index.php:547 application/views/debug/index.php:582 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -2635,8 +2644,8 @@ msgid "Maximum file upload size is " msgstr "最大上传文件大小是 " #: application/views/adif/import.php:56 application/views/adif/import.php:220 -#: application/views/adif/import.php:258 application/views/debug/index.php:174 -#: application/views/debug/index.php:191 application/views/debug/index.php:536 +#: application/views/adif/import.php:258 application/views/debug/index.php:175 +#: application/views/debug/index.php:192 application/views/debug/index.php:537 #: application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:34 @@ -2710,6 +2719,8 @@ msgstr "总是在导入时使用登录的呼号作为操作者名称" #: application/views/adif/import.php:152 #: application/views/interface_assets/footer.php:32 +#: application/views/interface_assets/footer.php:495 +#: application/views/interface_assets/footer.php:2137 msgid "DANGER" msgstr "警告" @@ -2886,6 +2897,7 @@ msgstr "如用于描述用途的名字。" #: application/views/bands/create.php:49 application/views/bands/edit.php:31 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 #: application/views/interface_assets/footer.php:43 +#: application/views/interface_assets/footer.php:530 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:107 #: application/views/options/dxcluster.php:67 @@ -3233,6 +3245,7 @@ msgstr "显示 QSL 分类下的 QSO" #: application/views/awards/cq/index.php:54 #: application/views/awards/itu/index.php:54 +#: application/views/interface_assets/footer.php:2116 #: application/views/qso/edit_ajax.php:378 #: application/views/view_log/qso.php:25 msgid "QSL Card" @@ -3297,7 +3310,7 @@ msgstr "地图" #: application/views/lookup/index.php:3 application/views/qso/edit_ajax.php:272 #: application/views/qso/index.php:390 #: application/views/search/cqzones_result.php:13 -#: application/views/station_profile/create.php:87 +#: application/views/station_profile/create.php:106 #: application/views/station_profile/edit.php:126 #: application/views/timeline/index.php:231 #: application/views/timeplotter/index.php:44 @@ -3755,7 +3768,7 @@ msgstr "显示 ITU 分区地图" #: application/views/logbookadvanced/index.php:246 #: application/views/logbookadvanced/index.php:589 #: application/views/logbookadvanced/useroptions.php:94 -#: application/views/station_profile/create.php:101 +#: application/views/station_profile/create.php:120 #: application/views/station_profile/edit.php:143 msgid "ITU Zone" msgstr "ITU 分区" @@ -3848,7 +3861,7 @@ msgstr "欲了解更多关于可用奖项和类别的信息,请访问%s。" #: application/views/awards/pota/index.php:31 #: application/views/qso/index.php:236 application/views/qso/index.php:482 -#: application/views/station_profile/create.php:158 +#: application/views/station_profile/create.php:177 #: application/views/station_profile/edit.php:245 #: application/views/user/edit.php:595 application/views/view_log/qso.php:303 #: application/views/view_log/qso.php:570 @@ -4106,7 +4119,7 @@ msgstr "" #: application/views/awards/wwff/index.php:31 #: application/views/qso/index.php:224 application/views/qso/index.php:469 -#: application/views/station_profile/create.php:152 +#: application/views/station_profile/create.php:171 #: application/views/station_profile/edit.php:232 #: application/views/user/edit.php:591 application/views/view_log/qso.php:296 #: application/views/view_log/qso.php:563 @@ -4627,7 +4640,7 @@ msgid "Name of Contest in ADIF-specification" msgstr "竞赛 在 ADIF 中的名称" #: application/views/contesting/create.php:35 -#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:304 #: application/views/station_profile/edit.php:28 msgid "Create" msgstr "创建" @@ -4772,7 +4785,7 @@ msgstr "标识符" #: application/views/options/appearance.php:82 #: application/views/options/appearance.php:91 #: application/views/options/appearance.php:100 -#: application/views/station_profile/create.php:242 +#: application/views/station_profile/create.php:261 #: application/views/station_profile/edit.php:314 #: application/views/stationsetup/stationsetup.php:73 #: application/views/user/edit.php:452 application/views/user/edit.php:461 @@ -4891,10 +4904,10 @@ msgid "disabled" msgstr "禁用的" #: application/views/cron/index.php:79 application/views/cron/index.php:81 -#: application/views/cron/index.php:83 application/views/debug/index.php:493 -#: application/views/debug/index.php:499 application/views/debug/index.php:504 -#: application/views/debug/index.php:509 application/views/debug/index.php:514 -#: application/views/debug/index.php:519 application/views/debug/index.php:524 +#: application/views/cron/index.php:83 application/views/debug/index.php:494 +#: application/views/debug/index.php:500 application/views/debug/index.php:505 +#: application/views/debug/index.php:510 application/views/debug/index.php:515 +#: application/views/debug/index.php:520 application/views/debug/index.php:525 msgid "never" msgstr "从不" @@ -5346,120 +5359,126 @@ msgstr "迁移已过时且已锁定!" #, php-format msgid "" "The current migration is not the version it is supposed to be. Reload this " -"page. If this warning persists, your migration is probably locked due to a " -"past failed process. Check the folder %s for a file called %s and remove " -"this file to force the migration to run again." +"page after %s seconds. If this warning persists, your migration is likely " +"locked due to a previously failed process. Delete the file %s to force the " +"migration to run again." msgstr "" -"当前的迁移版本不正确。请重新加载此页面。如果警告仍然存在,可能是由于之前的失" -"败进程导致迁移被锁定。请检查文件夹%s中的%s文件并删除该文件以强制迁移重新运行" -"。" +"迁移文件版本不匹配,%s 秒后刷新页面。如此提示持续出现,可能由于上次更新之中出" +"现了错误,请删除 %s 文件,强制重新迁移。" #: application/views/debug/index.php:47 #, php-format +msgid "" +"Check this wiki article here for " +"more information." +msgstr "请查看 Wiki。" + +#: application/views/debug/index.php:48 +#, php-format msgid "Current migration is %s" msgstr "当前迁移为 %s" -#: application/views/debug/index.php:48 +#: application/views/debug/index.php:49 #, php-format msgid "Migration should be %s" msgstr "迁移应该是 %s" -#: application/views/debug/index.php:53 +#: application/views/debug/index.php:54 msgid "Environment" msgstr "环境" -#: application/views/debug/index.php:61 +#: application/views/debug/index.php:62 msgid "Total QSO on this instance" msgstr "本站 QSO 总数量" -#: application/views/debug/index.php:69 +#: application/views/debug/index.php:70 msgid "Server Information" msgstr "服务器信息" -#: application/views/debug/index.php:73 +#: application/views/debug/index.php:74 msgid "Server Software" msgstr "服务器软件" -#: application/views/debug/index.php:78 +#: application/views/debug/index.php:79 msgid "PHP Version" msgstr "PHP版本" -#: application/views/debug/index.php:84 +#: application/views/debug/index.php:85 msgid "Deprecated" msgstr "已废弃" -#: application/views/debug/index.php:91 +#: application/views/debug/index.php:92 msgid "MySQL Version" msgstr "MySQL版本" -#: application/views/debug/index.php:95 +#: application/views/debug/index.php:96 msgid "Codeigniter Version" msgstr "Codeigniter 版本" -#: application/views/debug/index.php:103 +#: application/views/debug/index.php:104 msgid "Folder Permissions" msgstr "文件夹权限" -#: application/views/debug/index.php:105 +#: application/views/debug/index.php:106 msgid "" "This verifies that the folders used by Wavelog have read and write " "permissions by PHP." msgstr "这验证了Wavelog使用的文件夹是否具有PHP的读写权限。" -#: application/views/debug/index.php:111 application/views/debug/index.php:122 -#: application/views/debug/index.php:133 application/views/debug/index.php:144 -#: application/views/debug/index.php:156 +#: application/views/debug/index.php:112 application/views/debug/index.php:123 +#: application/views/debug/index.php:134 application/views/debug/index.php:145 +#: application/views/debug/index.php:157 msgid "Success" msgstr "成功" -#: application/views/debug/index.php:113 application/views/debug/index.php:124 -#: application/views/debug/index.php:135 application/views/debug/index.php:146 -#: application/views/debug/index.php:158 +#: application/views/debug/index.php:114 application/views/debug/index.php:125 +#: application/views/debug/index.php:136 application/views/debug/index.php:147 +#: application/views/debug/index.php:159 msgid "Failed" msgstr "失败" -#: application/views/debug/index.php:168 +#: application/views/debug/index.php:169 msgid "Config Maintenance" msgstr "维护配置" -#: application/views/debug/index.php:174 +#: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "您的认证方式已过时,可能存在风险隐患" -#: application/views/debug/index.php:176 application/views/debug/index.php:193 +#: application/views/debug/index.php:177 application/views/debug/index.php:194 #, php-format msgid "Please edit your %s File:" msgstr "请编辑您的%s文件:" -#: application/views/debug/index.php:177 +#: application/views/debug/index.php:178 msgid "" "Go to your application/config Folder and compare config.sample.php with your " "config.php" msgstr "" "请前往 application/config 文件夹,根据 config.sample.php 修改成 config.php" -#: application/views/debug/index.php:178 +#: application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "将%s改为%s(强烈建议)" -#: application/views/debug/index.php:184 +#: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" msgstr "认证方式设置正确" -#: application/views/debug/index.php:184 application/views/debug/index.php:201 +#: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" msgstr "好的" -#: application/views/debug/index.php:191 +#: application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "你使用了默认加密密钥。请修改它!" -#: application/views/debug/index.php:194 +#: application/views/debug/index.php:195 msgid "This will also enable the 'Keep me logged in' feature." msgstr "修改之后,“保持登录状态” 的功能将变为可用。" -#: application/views/debug/index.php:195 +#: application/views/debug/index.php:196 #, php-format msgid "" "Change the value of %s to a new encryption key other then " @@ -5468,135 +5487,135 @@ msgstr "" "将 %s 的值改为新的加密密钥,而非 “flossie1234555541”,选择一个安全的长密码。" "(强烈建议)" -#: application/views/debug/index.php:201 +#: application/views/debug/index.php:202 msgid "You do not use the default encryption key" msgstr "你没有使用默认加密密钥" -#: application/views/debug/index.php:208 +#: application/views/debug/index.php:209 msgid "Migrate Userdata" msgstr "迁移用户数据" -#: application/views/debug/index.php:210 +#: application/views/debug/index.php:211 msgid "" "Here you can migrate existing QSL cards and eQSL cards to the new userdata " "folder." msgstr "您可以在此将现有的QSL卡和eQSL卡迁移到新的用户数据文件夹。" -#: application/views/debug/index.php:223 +#: application/views/debug/index.php:224 msgid "Modules" msgstr "模块" -#: application/views/debug/index.php:229 application/views/debug/index.php:240 -#: application/views/debug/index.php:251 application/views/debug/index.php:262 -#: application/views/debug/index.php:273 +#: application/views/debug/index.php:230 application/views/debug/index.php:241 +#: application/views/debug/index.php:252 application/views/debug/index.php:263 +#: application/views/debug/index.php:274 msgid "Installed" msgstr "已安装" -#: application/views/debug/index.php:231 application/views/debug/index.php:242 -#: application/views/debug/index.php:253 application/views/debug/index.php:264 -#: application/views/debug/index.php:275 +#: application/views/debug/index.php:232 application/views/debug/index.php:243 +#: application/views/debug/index.php:254 application/views/debug/index.php:265 +#: application/views/debug/index.php:276 msgid "Not Installed" msgstr "未安装" -#: application/views/debug/index.php:282 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:654 msgid "Settings" msgstr "设置" -#: application/views/debug/index.php:411 +#: application/views/debug/index.php:412 msgid "Git Information" msgstr "Git信息" -#: application/views/debug/index.php:415 +#: application/views/debug/index.php:416 msgid "Branch" msgstr "分支" -#: application/views/debug/index.php:426 application/views/debug/index.php:437 -#: application/views/debug/index.php:447 +#: application/views/debug/index.php:427 application/views/debug/index.php:438 +#: application/views/debug/index.php:448 msgid "n/a" msgstr "n/a" -#: application/views/debug/index.php:432 +#: application/views/debug/index.php:433 msgid "Commit" msgstr "Commit" -#: application/views/debug/index.php:442 +#: application/views/debug/index.php:443 msgid "Tag" msgstr "标签" -#: application/views/debug/index.php:452 +#: application/views/debug/index.php:453 msgid "Last Fetch" msgstr "上次抓取" -#: application/views/debug/index.php:464 +#: application/views/debug/index.php:465 msgid "Check for new version" msgstr "检查新版本" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:466 msgid "Update now" msgstr "现在升级" -#: application/views/debug/index.php:483 +#: application/views/debug/index.php:484 msgid "File download date" msgstr "文件下载日期" -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:488 msgid "File" msgstr "文件" -#: application/views/debug/index.php:488 +#: application/views/debug/index.php:489 msgid "Last update" msgstr "上次更新" -#: application/views/debug/index.php:492 +#: application/views/debug/index.php:493 msgid "DXCC update from Club Log" msgstr "DXCC 更新(ClubLog)" -#: application/views/debug/index.php:494 application/views/debug/index.php:500 -#: application/views/debug/index.php:505 application/views/debug/index.php:510 -#: application/views/debug/index.php:515 application/views/debug/index.php:520 -#: application/views/debug/index.php:525 +#: application/views/debug/index.php:495 application/views/debug/index.php:501 +#: application/views/debug/index.php:506 application/views/debug/index.php:511 +#: application/views/debug/index.php:516 application/views/debug/index.php:521 +#: application/views/debug/index.php:526 #: application/views/station_profile/edit.php:22 msgid "Update" msgstr "更新" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:499 msgid "DOK file download" msgstr "下载 DOK 文件" -#: application/views/debug/index.php:503 +#: application/views/debug/index.php:504 msgid "LoTW users download" msgstr "下载 LoTW 用户状态" -#: application/views/debug/index.php:508 +#: application/views/debug/index.php:509 msgid "POTA file download" msgstr "下载 POTA 文件" -#: application/views/debug/index.php:513 +#: application/views/debug/index.php:514 msgid "SCP file download" msgstr "下载 SCP 文件" -#: application/views/debug/index.php:518 +#: application/views/debug/index.php:519 msgid "SOTA file download" msgstr "下载 SOTA 文件" -#: application/views/debug/index.php:523 +#: application/views/debug/index.php:524 msgid "WWFF file download" msgstr "下载 WWFF 文件" -#: application/views/debug/index.php:532 +#: application/views/debug/index.php:533 msgid "QSO-DB Maintenance" msgstr "QSO-DB 维护" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:537 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" "The Database contains %d QSOs without a station-profile (location)" msgstr[0] "数据库中共有%d个没有台站信息(位置)的QSO" -#: application/views/debug/index.php:549 +#: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 -#: application/views/station_profile/create.php:38 +#: application/views/station_profile/create.php:57 #: application/views/station_profile/edit.php:46 #: application/views/station_profile/index.php:42 #: application/views/stationsetup/linkedlocations.php:32 @@ -5604,88 +5623,88 @@ msgstr[0] "数据库中共有%d个没有台站信息(位置)的QSO" msgid "Station Callsign" msgstr "电台呼号" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "请标记 QSO 并将其重新分配到现有的电台位置:" -#: application/views/debug/index.php:582 +#: application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" msgstr "目标位置" -#: application/views/debug/index.php:583 application/views/debug/index.php:594 +#: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" msgstr "重新分配" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "数据库中的所有 QSO 都有台站相关联" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Everything ok" msgstr "一切正常" -#: application/views/debug/index.php:628 +#: application/views/debug/index.php:629 msgid "Bulgarian" msgstr "保加利亚语" -#: application/views/debug/index.php:629 +#: application/views/debug/index.php:630 msgid "Chinese (Simplified)" msgstr "简体中文" -#: application/views/debug/index.php:630 +#: application/views/debug/index.php:631 msgid "Czech" msgstr "捷克语" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:632 msgid "Dutch" msgstr "荷兰语" -#: application/views/debug/index.php:632 +#: application/views/debug/index.php:633 msgid "English" msgstr "英语" -#: application/views/debug/index.php:633 +#: application/views/debug/index.php:634 msgid "Finnish" msgstr "芬兰语" -#: application/views/debug/index.php:634 +#: application/views/debug/index.php:635 msgid "French" msgstr "法语" -#: application/views/debug/index.php:635 +#: application/views/debug/index.php:636 msgid "German" msgstr "德语" -#: application/views/debug/index.php:636 +#: application/views/debug/index.php:637 msgid "Greek" msgstr "希腊语" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:638 msgid "Italian" msgstr "意大利语" -#: application/views/debug/index.php:638 +#: application/views/debug/index.php:639 msgid "Polish" msgstr "波兰语" -#: application/views/debug/index.php:639 +#: application/views/debug/index.php:640 msgid "Portuguese" msgstr "葡萄牙语" -#: application/views/debug/index.php:640 +#: application/views/debug/index.php:641 msgid "Russian" msgstr "俄语" -#: application/views/debug/index.php:641 +#: application/views/debug/index.php:642 msgid "Spanish" msgstr "西班牙语" -#: application/views/debug/index.php:642 +#: application/views/debug/index.php:643 msgid "Swedish" msgstr "瑞典语" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:644 msgid "Turkish" msgstr "土耳其语" @@ -5914,6 +5933,10 @@ msgid "QSL Date" msgstr "QSL 日期" #: application/views/eqslcard/index.php:60 +#: application/views/interface_assets/footer.php:2342 +#: application/views/interface_assets/footer.php:2360 +#: application/views/interface_assets/footer.php:2381 +#: application/views/interface_assets/footer.php:2399 #: application/views/qslcard/index.php:66 #: application/views/view_log/qso.php:614 msgid "View" @@ -6076,6 +6099,69 @@ msgstr "传播方式不被 LoTW 支持,LoTW 字段已禁用。" msgid "Version Info" msgstr "版本信息" +#: application/views/interface_assets/footer.php:392 +msgid "Description:" +msgstr "说明:" + +#: application/views/interface_assets/footer.php:395 +msgid "Query description" +msgstr "查询说明" + +#: application/views/interface_assets/footer.php:411 +msgid "Your query has been saved!" +msgstr "查询已储存!" + +#: application/views/interface_assets/footer.php:413 +#: application/views/search/filter.php:46 +msgid "Edit queries" +msgstr "编辑查询" + +#: application/views/interface_assets/footer.php:415 +msgid "Stored queries:" +msgstr "存储的查询:" + +#: application/views/interface_assets/footer.php:420 +#: application/views/search/filter.php:60 +msgid "Run Query" +msgstr "执行查询" + +#: application/views/interface_assets/footer.php:432 +#: application/views/interface_assets/footer.php:561 +#: application/views/interface_assets/footer.php:625 +msgid "Stored Queries" +msgstr "存储的查询" + +#: application/views/interface_assets/footer.php:437 +#: application/views/interface_assets/footer.php:630 +msgid "You need to make a query before you search!" +msgstr "您需要创建查询来进行搜索!" + +#: application/views/interface_assets/footer.php:458 +#: application/views/interface_assets/footer.php:589 +#: application/views/search/filter.php:79 +msgid "Export to ADIF" +msgstr "导出 ADIF" + +#: application/views/interface_assets/footer.php:496 +msgid "Warning! Are you sure you want delete this stored query?" +msgstr "警告!确定要删除存储的查询?" + +#: application/views/interface_assets/footer.php:510 +msgid "The stored query has been deleted!" +msgstr "存储的查询已删除!" + +#: application/views/interface_assets/footer.php:519 +msgid "The stored query could not be deleted. Please try again!" +msgstr "无法删除存储的查询,请重试!" + +#: application/views/interface_assets/footer.php:545 +msgid "The query description has been updated!" +msgstr "查询说明已更新!" + +#: application/views/interface_assets/footer.php:549 +msgid "Something went wrong with the save. Please try again!" +msgstr "存储出错,请重试!" + #: application/views/interface_assets/footer.php:672 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " @@ -6085,20 +6171,65 @@ msgstr "" "请稍等,您选择的 DXCC 已经失效,请确认最新的 DXCC 实体,如果您十分确认,请忽" "略该警告。" -#: application/views/interface_assets/footer.php:1374 -#: application/views/interface_assets/footer.php:1378 -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1518 -#: application/views/interface_assets/footer.php:1522 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1174 +#, php-format +msgid "You're not logged it. Please login" +msgstr "未登录,请在 这里 登录" + +#: application/views/interface_assets/footer.php:1380 +#: application/views/interface_assets/footer.php:1384 +#: application/views/interface_assets/footer.php:1387 +#: application/views/interface_assets/footer.php:1524 +#: application/views/interface_assets/footer.php:1528 +#: application/views/interface_assets/footer.php:1531 msgid "grid square" msgstr "网格" -#: application/views/interface_assets/footer.php:1381 -#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1387 +#: application/views/interface_assets/footer.php:1531 msgid "Total count" msgstr "总数" +#: application/views/interface_assets/footer.php:2118 +msgid "QSL Card for " +msgstr "QSL 卡片至 " + +#: application/views/interface_assets/footer.php:2138 +msgid "Warning! Are you sure you want to delete this QSL card?" +msgstr "警告!确定要删除这个 QSL 卡片吗?" + +#: application/views/interface_assets/footer.php:2178 +#: application/views/view_log/qso.php:42 +msgid "eQSL Card" +msgstr "电子 QSL 卡片" + +#: application/views/interface_assets/footer.php:2180 +msgid "eQSL Card for " +msgstr "eQSL 卡片至 " + +#: application/views/interface_assets/footer.php:2353 +#: application/views/interface_assets/footer.php:2392 +#: application/views/view_log/qso.php:604 +msgid "QSL image file" +msgstr "QSL 图片文件" + +#: application/views/interface_assets/footer.php:2372 +msgid "Front QSL Card:" +msgstr "QSL 卡片正面:" + +#: application/views/interface_assets/footer.php:2410 +msgid "Back QSL Card:" +msgstr "QSL 卡片背面:" + +#: application/views/interface_assets/footer.php:2421 +#: application/views/interface_assets/footer.php:2446 +msgid "Add additional QSOs to a QSL Card" +msgstr "向一张卡片添加额外的 QSO" + +#: application/views/interface_assets/footer.php:2457 +msgid "Something went wrong. Please try again!" +msgstr "出现了错误,请重试!" + #: application/views/interface_assets/header.php:86 msgid "Developer Mode" msgstr "开发者模式" @@ -6646,12 +6777,12 @@ msgstr "QSL 发送" #: application/views/qso/edit_ajax.php:495 #: application/views/qso/edit_ajax.php:507 application/views/qso/index.php:554 #: application/views/search/result.php:58 -#: application/views/station_profile/create.php:190 -#: application/views/station_profile/create.php:198 +#: application/views/station_profile/create.php:209 #: application/views/station_profile/create.php:217 -#: application/views/station_profile/create.php:256 -#: application/views/station_profile/create.php:267 -#: application/views/station_profile/create.php:274 +#: application/views/station_profile/create.php:236 +#: application/views/station_profile/create.php:275 +#: application/views/station_profile/create.php:286 +#: application/views/station_profile/create.php:293 #: application/views/station_profile/edit.php:330 #: application/views/station_profile/edit.php:338 #: application/views/station_profile/edit.php:364 @@ -6684,12 +6815,12 @@ msgstr "是" #: application/views/qso/edit_ajax.php:494 #: application/views/qso/edit_ajax.php:506 application/views/qso/index.php:553 #: application/views/search/result.php:60 -#: application/views/station_profile/create.php:191 -#: application/views/station_profile/create.php:199 +#: application/views/station_profile/create.php:210 #: application/views/station_profile/create.php:218 -#: application/views/station_profile/create.php:257 -#: application/views/station_profile/create.php:266 -#: application/views/station_profile/create.php:273 +#: application/views/station_profile/create.php:237 +#: application/views/station_profile/create.php:276 +#: application/views/station_profile/create.php:285 +#: application/views/station_profile/create.php:292 #: application/views/station_profile/edit.php:331 #: application/views/station_profile/edit.php:339 #: application/views/station_profile/edit.php:365 @@ -8298,7 +8429,7 @@ msgid "Search DXCluster for latest Spot" msgstr "在 DXCluster 搜索最新 Spot" #: application/views/qso/index.php:196 application/views/qso/index.php:439 -#: application/views/station_profile/create.php:130 +#: application/views/station_profile/create.php:149 #: application/views/station_profile/edit.php:191 #: application/views/user/edit.php:583 application/views/view_log/qso.php:282 #: application/views/view_log/qso.php:549 @@ -8306,7 +8437,7 @@ msgid "IOTA Reference" msgstr "IOTA 编号" #: application/views/qso/index.php:212 application/views/qso/index.php:456 -#: application/views/station_profile/create.php:146 +#: application/views/station_profile/create.php:165 #: application/views/station_profile/edit.php:219 #: application/views/user/edit.php:587 application/views/view_log/qso.php:289 #: application/views/view_log/qso.php:556 @@ -8564,26 +8695,14 @@ msgstr "全部 CQ 分区填写正确。" msgid "Save query" msgstr "保存查询" -#: application/views/search/filter.php:46 -msgid "Edit queries" -msgstr "编辑查询" - #: application/views/search/filter.php:50 msgid "Stored queries" msgstr "存储的查询" -#: application/views/search/filter.php:60 -msgid "Run Query" -msgstr "执行查询" - #: application/views/search/filter.php:69 msgid "search filter functions" msgstr "搜索过滤器功能" -#: application/views/search/filter.php:79 -msgid "Export to ADIF" -msgstr "导出 ADIF" - #: application/views/search/filter.php:79 msgid "Search Results" msgstr "搜索结果" @@ -8926,115 +9045,115 @@ msgid "" "of our Wiki." msgstr "全部的指令可在 %s Wiki 查看。" -#: application/views/station_profile/create.php:32 +#: application/views/station_profile/create.php:51 #: application/views/station_profile/edit.php:40 msgid "Location Name" msgstr "地址名称" -#: application/views/station_profile/create.php:33 -#: application/views/station_profile/create.php:34 +#: application/views/station_profile/create.php:52 +#: application/views/station_profile/create.php:53 #: application/views/station_profile/edit.php:42 msgctxt "Station Location Setup" msgid "Home QTH" msgstr "基地台 QTH" -#: application/views/station_profile/create.php:34 +#: application/views/station_profile/create.php:53 #: application/views/station_profile/edit.php:42 #, php-format msgid "Shortname for the station location. For example: %s" msgstr "台站的地址简写,例如 %s" -#: application/views/station_profile/create.php:40 +#: application/views/station_profile/create.php:59 #: application/views/station_profile/edit.php:48 msgid "Station callsign. For example: 4W7EST/P" msgstr "电台呼号,例如:4W7EST/P" -#: application/views/station_profile/create.php:44 +#: application/views/station_profile/create.php:63 #: application/views/station_profile/edit.php:52 msgid "Station Power (W)" msgstr "电台功率 (W)" -#: application/views/station_profile/create.php:46 +#: application/views/station_profile/create.php:65 #: application/views/station_profile/edit.php:54 msgid "Default station power in Watt. Overwritten by CAT." msgstr "默认电台功率 (W),如有 CAT 信息会覆盖此设置。" -#: application/views/station_profile/create.php:49 +#: application/views/station_profile/create.php:68 #: application/views/station_profile/edit.php:69 msgid "Station DXCC" msgstr "台站 DXCC" -#: application/views/station_profile/create.php:52 +#: application/views/station_profile/create.php:71 #: application/views/station_profile/edit.php:72 msgctxt "DXCC selection" msgid "None" msgstr "无" -#: application/views/station_profile/create.php:59 +#: application/views/station_profile/create.php:78 #: application/views/station_profile/edit.php:85 msgid "Station DXCC entity. For example: Bolivia" msgstr "台站的 DXCC 实体名称,如 China" -#: application/views/station_profile/create.php:64 +#: application/views/station_profile/create.php:83 #: application/views/station_profile/edit.php:91 msgid "Station City" msgstr "台站城市" -#: application/views/station_profile/create.php:66 +#: application/views/station_profile/create.php:85 #: application/views/station_profile/edit.php:93 msgid "Station city. For example: Oslo" msgstr "台站坐落城市,如 Beijing" -#: application/views/station_profile/create.php:75 +#: application/views/station_profile/create.php:94 #: application/views/station_profile/edit.php:105 msgid "Station state. Applies to certain countries only." msgstr "台站州(特定国家可用)。" -#: application/views/station_profile/create.php:80 +#: application/views/station_profile/create.php:99 #: application/views/station_profile/edit.php:110 msgid "Station County" msgstr "台站县" -#: application/views/station_profile/create.php:82 +#: application/views/station_profile/create.php:101 #: application/views/station_profile/edit.php:112 msgid "Station County (Only used for USA/Alaska/Hawaii)." msgstr "台站的县 (仅用于 美国本土/阿拉斯加/夏威夷)。" -#: application/views/station_profile/create.php:97 +#: application/views/station_profile/create.php:116 #: application/views/station_profile/edit.php:138 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your CQ Zone then %s to find it!" msgstr "如果您不清楚自己的 CQ 分区,在这里查看 %s!" -#: application/views/station_profile/create.php:97 -#: application/views/station_profile/create.php:111 -#: application/views/station_profile/create.php:125 +#: application/views/station_profile/create.php:116 +#: application/views/station_profile/create.php:130 +#: application/views/station_profile/create.php:144 #: application/views/station_profile/edit.php:138 #: application/views/station_profile/edit.php:155 #: application/views/station_profile/edit.php:179 msgid "click here" msgstr "点击此处" -#: application/views/station_profile/create.php:111 +#: application/views/station_profile/create.php:130 #: application/views/station_profile/edit.php:155 #, php-format msgctxt "uses 'click here'" msgid "If you don't know your ITU Zone then %s to find it!" msgstr "如果您不清楚自己的 ITU 分区,在这里查看 %s!" -#: application/views/station_profile/create.php:116 +#: application/views/station_profile/create.php:135 #: application/views/station_profile/edit.php:167 #: application/views/station_profile/edit.php:170 msgid "Station Gridsquare" msgstr "台站网格地址" -#: application/views/station_profile/create.php:121 +#: application/views/station_profile/create.php:140 #: application/views/station_profile/edit.php:175 msgid "Get Gridsquare" msgstr "获取网格座标" -#: application/views/station_profile/create.php:125 +#: application/views/station_profile/create.php:144 #: application/views/station_profile/edit.php:179 #, php-format msgctxt "uses 'click here'" @@ -9043,7 +9162,7 @@ msgid "" "then %s!" msgstr "台站的网格,如 HM54AP,如果不知道自己的网格,在这里查询 %s!" -#: application/views/station_profile/create.php:126 +#: application/views/station_profile/create.php:145 #: application/views/station_profile/edit.php:180 msgid "" "If you are located on a grid line, enter multiple grid squares separated " @@ -9051,50 +9170,50 @@ msgid "" msgstr "" "如果处在网格线上,请输入逗号分隔的多个网格,例如:IO77,IO78,IO87,IO88。" -#: application/views/station_profile/create.php:141 +#: application/views/station_profile/create.php:160 #: application/views/station_profile/edit.php:205 msgid "Station IOTA reference. For example: EU-005" msgstr "台站 IOTA 标识代码,例如 EU-005" -#: application/views/station_profile/create.php:142 +#: application/views/station_profile/create.php:161 #: application/views/station_profile/edit.php:206 msgid "IOTA World website" msgstr "IOTA World 网站" -#: application/views/station_profile/create.php:142 +#: application/views/station_profile/create.php:161 #: application/views/station_profile/edit.php:206 #, php-format msgid "You can look up IOTA references at the %s." msgstr "您可以在 %s 查看 IOTA 目录。" -#: application/views/station_profile/create.php:148 +#: application/views/station_profile/create.php:167 #: application/views/station_profile/edit.php:221 msgid "SOTA Maps website" msgstr "SOTA Maps 网站" -#: application/views/station_profile/create.php:148 +#: application/views/station_profile/create.php:167 #: application/views/station_profile/edit.php:221 #, php-format msgid "Station SOTA reference. You can look up SOTA references at the %s." msgstr "台站的 SOTA 标识符,您可在这里 %s 查看 SOTA 标识符。" -#: application/views/station_profile/create.php:154 +#: application/views/station_profile/create.php:173 #: application/views/station_profile/edit.php:234 msgid "GMA Map website" msgstr "GMA Map 网站" -#: application/views/station_profile/create.php:154 +#: application/views/station_profile/create.php:173 #: application/views/station_profile/edit.php:234 #, php-format msgid "Station WWFF reference. You can look up WWFF references at the %s." msgstr "台站的 WWFF 标识符,您可在这里 %s 查看 WWFF 标识符。" -#: application/views/station_profile/create.php:160 +#: application/views/station_profile/create.php:179 #: application/views/station_profile/edit.php:247 msgid "POTA Map website" msgstr "POTA Map 网站" -#: application/views/station_profile/create.php:160 +#: application/views/station_profile/create.php:179 #: application/views/station_profile/edit.php:247 #, php-format msgid "" @@ -9103,55 +9222,55 @@ msgid "" msgstr "" "台站的 POTA 标识符,可以使用多个值(逗号分隔),可在 %s 查看 POTA 目录。" -#: application/views/station_profile/create.php:164 +#: application/views/station_profile/create.php:183 #: application/views/station_profile/edit.php:260 msgid "Signature Name" msgstr "签名名称" -#: application/views/station_profile/create.php:166 +#: application/views/station_profile/create.php:185 #: application/views/station_profile/edit.php:262 msgid "Station Signature (e.g. GMA).." msgstr "台站签名 (例如 TU 73)。" -#: application/views/station_profile/create.php:170 +#: application/views/station_profile/create.php:189 #: application/views/station_profile/edit.php:266 msgid "Signature Information" msgstr "签名信息" -#: application/views/station_profile/create.php:172 +#: application/views/station_profile/create.php:191 #: application/views/station_profile/edit.php:268 msgid "Station Signature Info (e.g. DA/NW-357)." msgstr "签名信息 (例如 DA/NW-357)." -#: application/views/station_profile/create.php:176 +#: application/views/station_profile/create.php:195 #: application/views/station_profile/edit.php:281 msgctxt "Probably no translation needed" msgid "eQSL QTH Nickname" msgstr "eQSL QTH Nickname" -#: application/views/station_profile/create.php:178 +#: application/views/station_profile/create.php:197 #: application/views/station_profile/edit.php:283 msgid "The QTH Nickname which is configured in your eQSL Profile" msgstr "eQSL 中设置过的 QTH Nichname" -#: application/views/station_profile/create.php:182 +#: application/views/station_profile/create.php:201 #: application/views/station_profile/edit.php:286 msgid "Default QSLMSG" msgstr "默认 QSL 消息" -#: application/views/station_profile/create.php:185 +#: application/views/station_profile/create.php:204 #: application/views/station_profile/edit.php:289 msgid "" "Define a default message that will be populated and sent for each QSO for " "this station location." msgstr "定义一个发送给对方的 QSO 默认消息(适用于 eQSL 等)。" -#: application/views/station_profile/create.php:188 +#: application/views/station_profile/create.php:207 #: application/views/station_profile/edit.php:328 msgid "Ignore Clublog Upload" msgstr "忽略 Clublog 上传" -#: application/views/station_profile/create.php:193 +#: application/views/station_profile/create.php:212 #: application/views/station_profile/edit.php:333 msgid "" "If enabled, the QSOs made from this location will not be uploaded to " @@ -9161,124 +9280,124 @@ msgstr "" "如启用,台站下的 QSO 不会上传至 Clublog。如这个选项自动关闭了,请查看 " "Clublog 上的呼号是否配置正确" -#: application/views/station_profile/create.php:196 +#: application/views/station_profile/create.php:215 #: application/views/station_profile/edit.php:336 msgid "ClubLog Realtime Upload" msgstr "ClubLog 实时上传" -#: application/views/station_profile/create.php:205 +#: application/views/station_profile/create.php:224 #: application/views/station_profile/edit.php:352 msgid "HRDLog.net Username" msgstr "HRDLog.net 用户名" -#: application/views/station_profile/create.php:207 +#: application/views/station_profile/create.php:226 #: application/views/station_profile/edit.php:354 msgid "" "The username you are registered with at HRDlog.net (usually your callsign)." msgstr "HRDlog.net 注册用户名,通常为呼号。" -#: application/views/station_profile/create.php:210 +#: application/views/station_profile/create.php:229 #: application/views/station_profile/edit.php:357 msgid "HRDLog.net API Key" msgstr "HRDLog.net API Key" -#: application/views/station_profile/create.php:212 +#: application/views/station_profile/create.php:231 #: application/views/station_profile/edit.php:359 #, php-format msgctxt "HRDLog.net Userprofile page" msgid "Create your API Code on your %s" msgstr "为 %s 创建 API Code" -#: application/views/station_profile/create.php:212 +#: application/views/station_profile/create.php:231 #: application/views/station_profile/edit.php:359 msgid "HRDLog.net Userprofile page" msgstr "HRDLog.net 个人页面" -#: application/views/station_profile/create.php:215 +#: application/views/station_profile/create.php:234 #: application/views/station_profile/edit.php:362 msgid "HRDLog.net Logbook Realtime Upload" msgstr "HRDLog.net Logbook 实时上传" -#: application/views/station_profile/create.php:224 +#: application/views/station_profile/create.php:243 #: application/views/station_profile/edit.php:297 msgid "Subscription Required" msgstr "需要付费订阅" -#: application/views/station_profile/create.php:229 +#: application/views/station_profile/create.php:248 msgctxt "Probably no translation needed" msgid "QRZ.com Logbook API Key" msgstr "QRZ.com Logbook API Key" -#: application/views/station_profile/create.php:232 +#: application/views/station_profile/create.php:251 msgid "Test API-Key" msgstr "Test API-Key" -#: application/views/station_profile/create.php:235 +#: application/views/station_profile/create.php:254 #: application/views/station_profile/edit.php:306 #, php-format msgctxt "the QRZ.com Logbook settings page" msgid "Find your API key on %s" msgstr "在 %s 这里查看 API Key" -#: application/views/station_profile/create.php:235 +#: application/views/station_profile/create.php:254 #: application/views/station_profile/edit.php:306 msgid "the QRZ.com Logbook settings page" msgstr "QRZ.com Logbook 设置页面" -#: application/views/station_profile/create.php:238 +#: application/views/station_profile/create.php:257 #: application/views/station_profile/edit.php:310 msgid "QRZ.com Logbook Upload" msgstr "QRZ.com Logbook 上传" -#: application/views/station_profile/create.php:241 +#: application/views/station_profile/create.php:260 #: application/views/station_profile/edit.php:313 msgid "Realtime" msgstr "实时" -#: application/views/station_profile/create.php:249 +#: application/views/station_profile/create.php:268 #: application/views/station_profile/edit.php:378 msgctxt "Probably no translation needed" msgid "QO-100 Dx Club API Key" msgstr "QO-100 Dx Club API Key" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:270 #: application/views/station_profile/edit.php:380 #, php-format msgctxt "QO-100 Dx Club's profile page" msgid "Create your API key on your %s" msgstr "为 %s 创建 API Key" -#: application/views/station_profile/create.php:251 +#: application/views/station_profile/create.php:270 #: application/views/station_profile/edit.php:380 msgid "QO-100 Dx Club's profile page" msgstr "QO-100 Dx Club 个人页面" -#: application/views/station_profile/create.php:254 +#: application/views/station_profile/create.php:273 #: application/views/station_profile/edit.php:383 msgid "QO-100 Dx Club Realtime Upload" msgstr "QO-100 Dx Club 实时上传" -#: application/views/station_profile/create.php:264 +#: application/views/station_profile/create.php:283 #: application/views/station_profile/edit.php:401 msgid "OQRS Enabled" msgstr "OQRS 已启用" -#: application/views/station_profile/create.php:271 +#: application/views/station_profile/create.php:290 #: application/views/station_profile/edit.php:408 msgid "OQRS Email alert" msgstr "OQRS 邮件提醒" -#: application/views/station_profile/create.php:276 +#: application/views/station_profile/create.php:295 #: application/views/station_profile/edit.php:413 msgid "Make sure email is set up under admin and global options." msgstr "确认邮件功能在站点设置中已配置。" -#: application/views/station_profile/create.php:279 +#: application/views/station_profile/create.php:298 #: application/views/station_profile/edit.php:416 msgid "OQRS Text" msgstr "OQRS 文本" -#: application/views/station_profile/create.php:281 +#: application/views/station_profile/create.php:300 #: application/views/station_profile/edit.php:418 msgid "Some info you want to add regarding QSL'ing." msgstr "QSL 的额外信息。" @@ -9320,8 +9439,9 @@ msgstr "创建一个台站地址" msgid "" "Attention: You need to set an active station location. Go to Callsign-" ">Station Location to select one." -msgstr "警告:应事先设置一个 “启用” 中的台站地址,请在右上角 “您的呼号” -> “台站地址”" -" 中选择一个。" +msgstr "" +"警告:应事先设置一个 “启用” 中的台站地址,请在右上角 “您的呼号” -> “台站地" +"址” 中选择一个。" #: application/views/station_profile/index.php:31 #: application/views/stationsetup/stationsetup.php:111 @@ -9403,8 +9523,9 @@ msgid "" "see all the locations across one session from the logbook areas to the " "analytics. Great for when your operating in multiple locations but they are " "part of the same DXCC or VUCC Circle." -msgstr "使用多个日志簿可以对日志进行分组管理,例如您的电台想在多个 DXCC 或 VUCC " -"下通联。您可让一个日志簿关联到多个不同的台站地址。" +msgstr "" +"使用多个日志簿可以对日志进行分组管理,例如您的电台想在多个 DXCC 或 VUCC 下通" +"联。您可让一个日志簿关联到多个不同的台站地址。" #: application/views/stationsetup/stationsetup.php:32 msgid "Linked locations" @@ -10338,10 +10459,6 @@ msgstr "QSO 详情" msgid "QSL Management" msgstr "QSL 管理" -#: application/views/view_log/qso.php:42 -msgid "eQSL Card" -msgstr "电子 QSL 卡片" - #: application/views/view_log/qso.php:128 msgid "Total Distance" msgstr "总计距离" @@ -10413,10 +10530,6 @@ msgstr "更多 QSO" msgid "Details" msgstr "详细" -#: application/views/view_log/qso.php:604 -msgid "QSL image file" -msgstr "QSL 图片文件" - #: application/views/view_log/qso.php:630 msgid "Uploaded QSL Card front image" msgstr "上传 QSL 卡片正面图像" @@ -10548,6 +10661,17 @@ msgstr "您的呼号:" msgid "Submit Request" msgstr "提交请求" +#, php-format +#~ msgid "" +#~ "The current migration is not the version it is supposed to be. Reload " +#~ "this page. If this warning persists, your migration is probably locked " +#~ "due to a past failed process. Check the folder %s for a file called %s " +#~ "and remove this file to force the migration to run again." +#~ msgstr "" +#~ "当前的迁移版本不正确。请重新加载此页面。如果警告仍然存在,可能是由于之前的" +#~ "失败进程导致迁移被锁定。请检查文件夹%s中的%s文件并删除该文件以强制迁移重新" +#~ "运行。" + #~ msgid "VHF/UHF Century Club (VUCC)" #~ msgstr "VHF/UHF Century Club (VUCC)" diff --git a/application/migrations/208_tag_1_7.php b/application/migrations/208_tag_1_7.php index 492456ce1..93d433d3b 100644 --- a/application/migrations/208_tag_1_7.php +++ b/application/migrations/208_tag_1_7.php @@ -35,8 +35,5 @@ class Migration_tag_1_7 extends CI_Migration { { $this->db->where('option_name', 'version'); $this->db->update('options', array('option_value' => '1.6.1')); - - // Revert the DB adjustment - $this->db->query("ALTER TABLE ".$this->config->item('table_name')." MODIFY COLUMN `COL_QTH` VARCHAR(64) DEFAULT NULL;"); } } diff --git a/application/migrations/212_tag_1_8_1.php b/application/migrations/212_tag_1_8_1.php new file mode 100644 index 000000000..2ca2b3a1c --- /dev/null +++ b/application/migrations/212_tag_1_8_1.php @@ -0,0 +1,40 @@ +db->where('option_name', 'version'); + $this->db->update('options', array('option_value' => '1.8.1')); + + // Trigger Version Info Dialog + $this->db->where('option_type', 'version_dialog'); + $this->db->where('option_name', 'confirmed'); + $this->db->update('user_options', array('option_value' => 'false')); + + // Also set Version Dialog to "both" if only custom text is applied + $this->db->where('option_name', 'version_dialog'); + $this->db->where('option_value', 'custom_text'); + $this->db->update('options', array('option_value' => 'both')); + + // small DB adjustment in this release to save mig versions + // see: https://github.com/wavelog/wavelog/issues/698 + $this->db->query("ALTER TABLE ".$this->config->item('table_name')." MODIFY COLUMN `COL_POTA_REF` VARCHAR(128) DEFAULT NULL;"); + $this->db->query("ALTER TABLE ".$this->config->item('table_name')." MODIFY COLUMN `COL_MY_POTA_REF` VARCHAR(128) DEFAULT NULL;"); + + } + + public function down() + { + $this->db->where('option_name', 'version'); + $this->db->update('options', array('option_value' => '1.8')); + } +} diff --git a/application/models/Eqslmethods_model.php b/application/models/Eqslmethods_model.php index 5e9030d63..a1e89d39d 100644 --- a/application/models/Eqslmethods_model.php +++ b/application/models/Eqslmethods_model.php @@ -41,7 +41,7 @@ class Eqslmethods_model extends CI_Model { function uploadUser($userid, $username, $password) { $data['user_eqsl_name'] = $this->security->xss_clean($username); - $data['user_eqsl_password'] = $this->security->xss_clean($password); + $data['user_eqsl_password'] = html_entity_decode($this->security->xss_clean($password)); $clean_userid = $this->security->xss_clean($userid); $qslsnotsent = $this->eqsl_not_yet_sent($clean_userid); diff --git a/application/models/User_model.php b/application/models/User_model.php index 5b75a4526..db91e661e 100644 --- a/application/models/User_model.php +++ b/application/models/User_model.php @@ -305,11 +305,14 @@ class User_Model extends CI_Model { // Hash password if($fields['user_password'] != NULL) { - if ($fields['user_password'] !== $pwd_placeholder) { - $decoded_password = htmlspecialchars_decode($fields['user_password']); - $data['user_password'] = $this->_hash($decoded_password); - if($data['user_password'] == EPASSWORDINVALID) { - return EPASSWORDINVALID; + if (!file_exists('.demo') || (file_exists('.demo') && $this->session->userdata('user_type') == 99)) { + + if ($fields['user_password'] !== $pwd_placeholder) { + $decoded_password = htmlspecialchars_decode($fields['user_password']); + $data['user_password'] = $this->_hash($decoded_password); + if($data['user_password'] == EPASSWORDINVALID) { + return EPASSWORDINVALID; + } } } } diff --git a/application/views/contesting/index.php b/application/views/contesting/index.php index c218376bf..ceb522319 100644 --- a/application/views/contesting/index.php +++ b/application/views/contesting/index.php @@ -1,6 +1,6 @@
-

LIVE" : " POST"); ?> +

LIVE" : " POST"); ?>
@@ -40,15 +40,15 @@
- > + >
- > + >
- + diff --git a/application/views/debug/index.php b/application/views/debug/index.php index 22ec83cce..9e0642e2e 100644 --- a/application/views/debug/index.php +++ b/application/views/debug/index.php @@ -40,14 +40,15 @@ ". __("There is something wrong with your Migration in Database!") . ""); ?> - -
-
-

-


-

-
- +
+
+
+

+

here for more information."), "https://github.com/wavelog/wavelog/wiki/Migration-is-locked"); ?>

+


+

+
+ diff --git a/application/views/interface_assets/footer.php b/application/views/interface_assets/footer.php index c38c60219..749708f0a 100644 --- a/application/views/interface_assets/footer.php +++ b/application/views/interface_assets/footer.php @@ -389,17 +389,17 @@ $(function () { $('#btn-save').on('click', function() { var resultquery = $('#builder').queryBuilder('getRules'); if (!$.isEmptyObject(resultquery)) { - let message = 'Description: ' + let message = '' BootstrapDialog.confirm({ - title: 'Query description', + title: '', size: BootstrapDialog.SIZE_NORMAL, cssClass: 'description-dialog', closable: true, nl2br: false, message: message, - btnCancelLabel: 'Cancel', - btnOKLabel: 'Save', + btnCancelLabel: lang_general_word_cancel, + btnOKLabel: lang_admin_save, callback: function(result) { if (result) { $.post("", { @@ -408,16 +408,16 @@ $(function () { }) .done(function(data) { $(".alert").remove(); - $(".card-body.main").append('
Your query has been saved!
'); + $(".card-body.main").append('
'); if ($("#querydropdown option").length == 0) { - var dropdowninfo = '

' + + var dropdowninfo = '

' + '
' + - '' + + '' + '
' + '' + '
' + - '' + + '' + '
'; $("#btn-save").after(dropdowninfo); } @@ -429,12 +429,12 @@ $(function () { } else { BootstrapDialog.show({ - title: 'Stored Queries', + title: '', type: BootstrapDialog.TYPE_WARNING, size: BootstrapDialog.SIZE_NORMAL, cssClass: 'queries-dialog', nl2br: false, - message: 'You need to make a query before you search!', + message: '', buttons: [{ label: lang_admin_close, action: function(dialogItself) { @@ -455,7 +455,7 @@ $(function () { }) .done(function(data) { - $('.exportbutton').html(''); + $('.exportbutton').html(''); $('.card-body.result').empty(); $(".search-results-box").show(); @@ -492,8 +492,8 @@ $(function () { function delete_stored_query(id) { BootstrapDialog.confirm({ - title: 'DANGER', - message: 'Warning! Are you sure you want delete this stored query?', + title: '', + message: '', type: BootstrapDialog.TYPE_DANGER, closable: true, draggable: true, @@ -507,7 +507,7 @@ $(function () { 'id': id }, success: function(data) { - $(".bootstrap-dialog-message").prepend('
The stored query has been deleted!
'); + $(".bootstrap-dialog-message").prepend('
'); $("#query_" + id).remove(); // removes query from table in dialog $("#querydropdown option[value='" + id + "']").remove(); // removes query from dropdown if ($("#querydropdown option").length == 0) { @@ -516,7 +516,7 @@ $(function () { }; }, error: function() { - $(".bootstrap-dialog-message").prepend('
The stored query could not be deleted. Please try again!
'); + $(".bootstrap-dialog-message").prepend('
'); }, }); } @@ -527,12 +527,12 @@ $(function () { function edit_stored_query(id) { $('#description_' + id).attr('contenteditable', 'true'); $('#description_' + id).focus(); - $('#edit_' + id).html('Save'); // Change to save button + $('#edit_' + id).html(''); // Change to save button } function save_edited_query(id) { $('#description_' + id).attr('contenteditable', 'false'); - $('#edit_' + id).html('Edit'); + $('#edit_' + id).html(''); $.ajax({ url: base_url + 'index.php/search/save_edited_query', type: 'post', @@ -541,12 +541,12 @@ $(function () { description: $('#description_' + id).html(), }, success: function(html) { - $('#edit_' + id).html('Edit'); // Change to edit button - $(".bootstrap-dialog-message").prepend('
The query description has been updated!
'); + $('#edit_' + id).html(''); // Change to edit button + $(".bootstrap-dialog-message").prepend('
'); $("#querydropdown option[value='" + id + "']").text($('#description_' + id).html()); // Change text in dropdown }, error: function() { - $(".bootstrap-dialog-message").prepend('
Something went wrong with the save. Please try again!
'); + $(".bootstrap-dialog-message").prepend('
'); }, }); } @@ -558,7 +558,7 @@ $(function () { type: 'post', success: function(html) { BootstrapDialog.show({ - title: 'Stored Queries', + title: '', size: BootstrapDialog.SIZE_WIDE, cssClass: 'queries-dialog', nl2br: false, @@ -586,7 +586,7 @@ $(function () { temp: "testvar" }) .done(function(data) { - $('.exportbutton').html(''); + $('.exportbutton').html(''); $('.card-body.result').empty(); $(".search-results-box").show(); @@ -622,12 +622,12 @@ $(function () { }); } else { BootstrapDialog.show({ - title: 'Stored Queries', + title: '', type: BootstrapDialog.TYPE_WARNING, size: BootstrapDialog.SIZE_NORMAL, cssClass: 'queries-dialog', nl2br: false, - message: 'You need to make a query before you search!', + message: '', buttons: [{ label: lang_admin_close, action: function(dialogItself) { @@ -681,6 +681,12 @@ $('#dxcc_id').ready(function() { $('#dxcc_id').on('change', function() { printWarning(); + let dxccadif = $('#dxcc_id').val(); + let dxccinfo = dxccarray.filter(function(dxcc) { + return dxcc.adif == dxccadif; + }); + $("#stationCQZoneInput").val(dxccinfo[0].cq); + // $("#stationITUZoneInput").val(dxccinfo[0].itu); // Commented out, since we do not have itu data. }); @@ -975,7 +981,7 @@ $($('#callsign')).on('keypress',function(e) { uri->segment(1) == "contesting" && ($this->uri->segment(2) != "add" && $this->uri->segment(2) != "edit")) { ?> diff --git a/application/views/qso/index.php b/application/views/qso/index.php index b54384a2b..45d5ceb02 100644 --- a/application/views/qso/index.php +++ b/application/views/qso/index.php @@ -1,6 +1,6 @@
@@ -201,18 +220,18 @@
-
- +
+
-
+
".__("HRDLog.net Userprofile page").""); ?>
- +